Skip to content

Commit 9b3ae50

Browse files
nullr0uteKAGA-KOKO
authored andcommitted
irqchip/irq-bcm2712-mip: Enable driver when ARCH_BCM2835 is enabled
The BCM2712 MIP driver is required for Raspberry PI5, but it's not automatically enabled when ARCH_BCM2835 is enabled and depends on ARCH_BRCMSTB. ARCH_BCM2835 shares drivers with ARCH_BRCMSTB platforms, but Raspberry PI5 does not require the BRCMSTB specific drivers, which are selected via ARCH_BRCMSTB. Enable the interrupt controller for both ARCH_BRCMSTB and ARCH_BCM2835. [ tglx: Massage changelog ] Fixes: 32c6c05 ("irqchip: Add Broadcom BCM2712 MSI-X interrupt controller") Signed-off-by: Peter Robinson <pbrobinson@gmail.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/all/20250416082523.179507-1-pbrobinson@gmail.com
1 parent 28e89cd commit 9b3ae50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/irqchip/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ config I8259
114114

115115
config BCM2712_MIP
116116
tristate "Broadcom BCM2712 MSI-X Interrupt Peripheral support"
117-
depends on ARCH_BRCMSTB || COMPILE_TEST
118-
default m if ARCH_BRCMSTB
117+
depends on ARCH_BRCMSTB || ARCH_BCM2835 || COMPILE_TEST
118+
default m if ARCH_BRCMSTB || ARCH_BCM2835
119119
depends on ARM_GIC
120120
select GENERIC_IRQ_CHIP
121121
select IRQ_DOMAIN_HIERARCHY

0 commit comments

Comments
 (0)