]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
irqchip/stm32-exti: add missing DT IRQ flag translation
authorBen Wolsieffer <ben.wolsieffer@hefring.com>
Tue, 3 Oct 2023 16:20:03 +0000 (12:20 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 8 Nov 2023 10:21:08 +0000 (11:21 +0100)
[ Upstream commit 8554cba1d6dbd3c74e0549e28ddbaccbb1d6b30a ]

The STM32F4/7 EXTI driver was missing the xlate callback, so IRQ trigger
flags specified in the device tree were being ignored. This was
preventing the RTC alarm interrupt from working, because it must be set
to trigger on the rising edge to function correctly.

Signed-off-by: Ben Wolsieffer <ben.wolsieffer@hefring.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20231003162003.1649967-1-ben.wolsieffer@hefring.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/irqchip/irq-stm32-exti.c

index 45363ff8d06f0afb26c2b64d8bf5aa06d1f74aa3..1b55199ea1b4aa030ee572ff606a747c560db16b 100644 (file)
@@ -127,6 +127,7 @@ struct irq_domain_ops irq_exti_domain_ops = {
        .xlate  = irq_domain_xlate_onetwocell,
        .alloc  = stm32_exti_alloc,
        .free   = stm32_exti_free,
+       .xlate  = irq_domain_xlate_twocell,
 };
 
 static int __init stm32_exti_init(struct device_node *node,