* [PATCH] irqchip/irq-bcm2712-mip: Add ARCH_BCM2835 arch option
@ 2025-04-16 8:25 Peter Robinson
2025-04-16 12:56 ` [tip: irq/urgent] irqchip/irq-bcm2712-mip: Enable driver when ARCH_BCM2835 is enabled tip-bot2 for Peter Robinson
2025-05-01 11:39 ` [PATCH] irqchip/irq-bcm2712-mip: Add ARCH_BCM2835 arch option Stanimir Varbanov
0 siblings, 2 replies; 3+ messages in thread
From: Peter Robinson @ 2025-04-16 8:25 UTC (permalink / raw)
To: Thomas Gleixner, Stanimir Varbanov, Krzysztof Wilczyński,
linux-kernel, linux-arm-kernel
Cc: Peter Robinson
The ARCH_BCM2835 is used widely for platforms enabling
the Raspberry Pi and some drivers that make use of this
driver are enabled using this or the BRCMSTB option so
add this too so the users that want RPi5 without all the
other STB devices end up with the driver as well.
Fixes: 32c6c054661a ("irqchip: Add Broadcom BCM2712 MSI-X interrupt controller")
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
---
drivers/irqchip/Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig
index cec05e443083..08bb3b031f23 100644
--- a/drivers/irqchip/Kconfig
+++ b/drivers/irqchip/Kconfig
@@ -114,8 +114,8 @@ config I8259
config BCM2712_MIP
tristate "Broadcom BCM2712 MSI-X Interrupt Peripheral support"
- depends on ARCH_BRCMSTB || COMPILE_TEST
- default m if ARCH_BRCMSTB
+ depends on ARCH_BRCMSTB || ARCH_BCM2835 || COMPILE_TEST
+ default m if ARCH_BRCMSTB || ARCH_BCM2835
depends on ARM_GIC
select GENERIC_IRQ_CHIP
select IRQ_DOMAIN_HIERARCHY
--
2.49.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip: irq/urgent] irqchip/irq-bcm2712-mip: Enable driver when ARCH_BCM2835 is enabled
2025-04-16 8:25 [PATCH] irqchip/irq-bcm2712-mip: Add ARCH_BCM2835 arch option Peter Robinson
@ 2025-04-16 12:56 ` tip-bot2 for Peter Robinson
2025-05-01 11:39 ` [PATCH] irqchip/irq-bcm2712-mip: Add ARCH_BCM2835 arch option Stanimir Varbanov
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot2 for Peter Robinson @ 2025-04-16 12:56 UTC (permalink / raw)
To: linux-tip-commits; +Cc: Peter Robinson, Thomas Gleixner, x86, linux-kernel, maz
The following commit has been merged into the irq/urgent branch of tip:
Commit-ID: 9b3ae50cb902322a2b5922b9fcf8132d9b4c2a24
Gitweb: https://git.kernel.org/tip/9b3ae50cb902322a2b5922b9fcf8132d9b4c2a24
Author: Peter Robinson <pbrobinson@gmail.com>
AuthorDate: Wed, 16 Apr 2025 09:25:17 +01:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Wed, 16 Apr 2025 14:39:25 +02:00
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: 32c6c054661a ("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
---
drivers/irqchip/Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig
index cec05e4..08bb3b0 100644
--- a/drivers/irqchip/Kconfig
+++ b/drivers/irqchip/Kconfig
@@ -114,8 +114,8 @@ config I8259
config BCM2712_MIP
tristate "Broadcom BCM2712 MSI-X Interrupt Peripheral support"
- depends on ARCH_BRCMSTB || COMPILE_TEST
- default m if ARCH_BRCMSTB
+ depends on ARCH_BRCMSTB || ARCH_BCM2835 || COMPILE_TEST
+ default m if ARCH_BRCMSTB || ARCH_BCM2835
depends on ARM_GIC
select GENERIC_IRQ_CHIP
select IRQ_DOMAIN_HIERARCHY
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] irqchip/irq-bcm2712-mip: Add ARCH_BCM2835 arch option
2025-04-16 8:25 [PATCH] irqchip/irq-bcm2712-mip: Add ARCH_BCM2835 arch option Peter Robinson
2025-04-16 12:56 ` [tip: irq/urgent] irqchip/irq-bcm2712-mip: Enable driver when ARCH_BCM2835 is enabled tip-bot2 for Peter Robinson
@ 2025-05-01 11:39 ` Stanimir Varbanov
1 sibling, 0 replies; 3+ messages in thread
From: Stanimir Varbanov @ 2025-05-01 11:39 UTC (permalink / raw)
To: Peter Robinson, Thomas Gleixner, Stanimir Varbanov,
Krzysztof Wilczyński, linux-kernel, linux-arm-kernel
Hi Peter,
On 4/16/25 11:25 AM, Peter Robinson wrote:
> The ARCH_BCM2835 is used widely for platforms enabling
> the Raspberry Pi and some drivers that make use of this
> driver are enabled using this or the BRCMSTB option so
> add this too so the users that want RPi5 without all the
> other STB devices end up with the driver as well.
>
> Fixes: 32c6c054661a ("irqchip: Add Broadcom BCM2712 MSI-X interrupt controller")
> Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
> ---
> drivers/irqchip/Kconfig | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: Stanimir Varbanov <svarbanov@suse.de>
>
> diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig
> index cec05e443083..08bb3b031f23 100644
> --- a/drivers/irqchip/Kconfig
> +++ b/drivers/irqchip/Kconfig
> @@ -114,8 +114,8 @@ config I8259
>
> config BCM2712_MIP
> tristate "Broadcom BCM2712 MSI-X Interrupt Peripheral support"
> - depends on ARCH_BRCMSTB || COMPILE_TEST
> - default m if ARCH_BRCMSTB
> + depends on ARCH_BRCMSTB || ARCH_BCM2835 || COMPILE_TEST
> + default m if ARCH_BRCMSTB || ARCH_BCM2835
> depends on ARM_GIC
> select GENERIC_IRQ_CHIP
> select IRQ_DOMAIN_HIERARCHY
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-05-01 11:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-16 8:25 [PATCH] irqchip/irq-bcm2712-mip: Add ARCH_BCM2835 arch option Peter Robinson
2025-04-16 12:56 ` [tip: irq/urgent] irqchip/irq-bcm2712-mip: Enable driver when ARCH_BCM2835 is enabled tip-bot2 for Peter Robinson
2025-05-01 11:39 ` [PATCH] irqchip/irq-bcm2712-mip: Add ARCH_BCM2835 arch option Stanimir Varbanov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®