diff options
author | Eric Anholt <eric@anholt.net> | 2015-08-06 16:00:33 -0700 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-08-20 22:38:42 +0200 |
commit | 1a15aaa998dc3b51f7f8b9a820bc7a192a0c2f76 (patch) | |
tree | fb68ae834b863a7668f4884f873c844c85e3bb9f /drivers/irqchip/Makefile | |
parent | 815e7a31c3f7929f371da9c7e9ee91cfd52ef453 (diff) | |
download | op-kernel-dev-1a15aaa998dc3b51f7f8b9a820bc7a192a0c2f76.zip op-kernel-dev-1a15aaa998dc3b51f7f8b9a820bc7a192a0c2f76.tar.gz |
irqchip: Add bcm2836 interrupt controller for Raspberry Pi 2
This interrupt controller is the new root interrupt controller with
the timer, PMU events, and IPIs, and the bcm2835's interrupt
controller is chained off of it to handle the peripherals.
I wrote the interrupt chip support, while Andrea Merello wrote the IPI
code.
Signed-off-by: Andrea Merello <andrea.merello@gmail.com>
Signed-off-by: Eric Anholt <eric@anholt.net>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Cc: linux-rpi-kernel@lists.infradead.org
Cc: Lee Jones <lee@kernel.org>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: linux-arm-kernel@lists.infradead.org
Link: http://lkml.kernel.org/r/1438902033-31477-5-git-send-email-eric@anholt.net
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/irqchip/Makefile')
-rw-r--r-- | drivers/irqchip/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/irqchip/Makefile b/drivers/irqchip/Makefile index d4c5e56..e5e0069 100644 --- a/drivers/irqchip/Makefile +++ b/drivers/irqchip/Makefile @@ -1,6 +1,7 @@ obj-$(CONFIG_IRQCHIP) += irqchip.o obj-$(CONFIG_ARCH_BCM2835) += irq-bcm2835.o +obj-$(CONFIG_ARCH_BCM2835) += irq-bcm2836.o obj-$(CONFIG_ARCH_EXYNOS) += exynos-combiner.o obj-$(CONFIG_ARCH_HIP04) += irq-hip04.o obj-$(CONFIG_ARCH_MMP) += irq-mmp.o |