lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Sat, 07 Oct 2023 12:00:43 -0000
From:   "irqchip-bot for Ben Wolsieffer" <tip-bot2@...utronix.de>
To:     linux-kernel@...r.kernel.org
Cc:     Ben Wolsieffer <ben.wolsieffer@...ring.com>,
        Marc Zyngier <maz@...nel.org>, tglx@...utronix.de
Subject: [irqchip: irq/irqchip-fixes] irqchip/stm32-exti: add missing DT IRQ
 flag translation

The following commit has been merged into the irq/irqchip-fixes branch of irqchip:

Commit-ID:     8554cba1d6dbd3c74e0549e28ddbaccbb1d6b30a
Gitweb:        https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms/8554cba1d6dbd3c74e0549e28ddbaccbb1d6b30a
Author:        Ben Wolsieffer <ben.wolsieffer@...ring.com>
AuthorDate:    Tue, 03 Oct 2023 12:20:03 -04:00
Committer:     Marc Zyngier <maz@...nel.org>
CommitterDate: Sat, 07 Oct 2023 12:47:12 +01:00

irqchip/stm32-exti: add missing DT IRQ flag translation

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@...ring.com>
Signed-off-by: Marc Zyngier <maz@...nel.org>
Link: https://lore.kernel.org/r/20231003162003.1649967-1-ben.wolsieffer@hefring.com
---
 drivers/irqchip/irq-stm32-exti.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/irqchip/irq-stm32-exti.c b/drivers/irqchip/irq-stm32-exti.c
index d8ba5fb..971240e 100644
--- a/drivers/irqchip/irq-stm32-exti.c
+++ b/drivers/irqchip/irq-stm32-exti.c
@@ -460,6 +460,7 @@ static const struct irq_domain_ops irq_exti_domain_ops = {
 	.map	= irq_map_generic_chip,
 	.alloc  = stm32_exti_alloc,
 	.free	= stm32_exti_free,
+	.xlate	= irq_domain_xlate_twocell,
 };
 
 static void stm32_irq_ack(struct irq_data *d)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ