aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-versatile/Kconfig
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2012-04-28 09:33:47 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2012-05-04 11:53:37 -0400
commit3108e6ab21a9b9dbd88f0b2ff99f73e95b8b1580 (patch)
tree9e87e1e4196849090103317d109dc95ba9d159f8 /arch/arm/plat-versatile/Kconfig
parent69964ea4c7b68c9399f7977aa5b9aa6539a6a98a (diff)
ARM: 7389/2: plat-versatile: modernize FPGA IRQ controller
This does two things to the FPGA IRQ controller in the versatile family: - Convert to MULTI_IRQ_HANDLER so we can drop the entry macro from the Integrator. The C IRQ handler was inspired from arch/arm/common/vic.c, recent bug discovered in this handler was accounted for. - Convert to using IRQ domains so we can get rid of the NO_IRQ mess and proceed with device tree and such stuff. As part of the exercise, bump all the low IRQ numbers on the Integrator PIC to start from 1 rather than 0, since IRQ 0 is now NO_IRQ. The Linux IRQ numbers are thus entirely decoupled from the hardware IRQ numbers in this controller. I was unable to split this patch. The main reason is the half-done conversion to device tree in Versatile. Tested on Integrator/AP and Integrator/CP. Cc: Grant Likely <grant.likely@secretlab.ca> Acked-by: Rob Herring <rob.herring@calxeda.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/plat-versatile/Kconfig')
-rw-r--r--arch/arm/plat-versatile/Kconfig6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/plat-versatile/Kconfig b/arch/arm/plat-versatile/Kconfig
index 043f7b02a9e7..81ee7cc34457 100644
--- a/arch/arm/plat-versatile/Kconfig
+++ b/arch/arm/plat-versatile/Kconfig
@@ -5,6 +5,12 @@ config PLAT_VERSATILE_CLCD
5 5
6config PLAT_VERSATILE_FPGA_IRQ 6config PLAT_VERSATILE_FPGA_IRQ
7 bool 7 bool
8 select IRQ_DOMAIN
9
10config PLAT_VERSATILE_FPGA_IRQ_NR
11 int
12 default 4
13 depends on PLAT_VERSATILE_FPGA_IRQ
8 14
9config PLAT_VERSATILE_LEDS 15config PLAT_VERSATILE_LEDS
10 def_bool y if LEDS_CLASS 16 def_bool y if LEDS_CLASS