diff options
author | Mark A. Greer <mgreer@mvista.com> | 2009-04-15 15:40:35 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-05-28 18:16:30 -0400 |
commit | a994955cc091a8a51b7d7412174d9cf6de04d26b (patch) | |
tree | 14c62610ee3ec0aa59fa5df49d4bf5ac88c8eb4c /arch/arm/mach-davinci/dm355.c | |
parent | 951d6f6d703110790256abfce03ced117d2dcc6b (diff) |
davinci: Make GPIO code more generic
The current gpio code needs to know the number of
gpio irqs there are and what the bank irq number is.
To determine those values, it checks the SoC type.
It also assumes that the base address and the number
of irqs the interrupt controller uses is fixed.
To clean up the SoC checks and make it support
different base addresses and interrupt controllers,
have the SoC-specific code set those values in
the soc_info structure and have the gpio code
reference them there.
Signed-off-by: Mark A. Greer <mgreer@mvista.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm355.c')
-rw-r--r-- | arch/arm/mach-davinci/dm355.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/dm355.c b/arch/arm/mach-davinci/dm355.c index 1b7c16cd2672..757def752010 100644 --- a/arch/arm/mach-davinci/dm355.c +++ b/arch/arm/mach-davinci/dm355.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/clk.h> | 13 | #include <linux/clk.h> |
14 | #include <linux/platform_device.h> | 14 | #include <linux/platform_device.h> |
15 | #include <linux/dma-mapping.h> | 15 | #include <linux/dma-mapping.h> |
16 | #include <linux/gpio.h> | ||
16 | 17 | ||
17 | #include <linux/spi/spi.h> | 18 | #include <linux/spi/spi.h> |
18 | 19 | ||
@@ -647,6 +648,9 @@ static struct davinci_soc_info davinci_soc_info_dm355 = { | |||
647 | .intc_irq_num = DAVINCI_N_AINTC_IRQ, | 648 | .intc_irq_num = DAVINCI_N_AINTC_IRQ, |
648 | .timer_info = &dm355_timer_info, | 649 | .timer_info = &dm355_timer_info, |
649 | .wdt_base = IO_ADDRESS(DAVINCI_WDOG_BASE), | 650 | .wdt_base = IO_ADDRESS(DAVINCI_WDOG_BASE), |
651 | .gpio_base = IO_ADDRESS(DAVINCI_GPIO_BASE), | ||
652 | .gpio_num = 104, | ||
653 | .gpio_irq = IRQ_DM355_GPIOBNK0, | ||
650 | }; | 654 | }; |
651 | 655 | ||
652 | void __init dm355_init(void) | 656 | void __init dm355_init(void) |