diff options
author | Andrew Victor <andrew@sanpeople.com> | 2006-09-27 08:23:00 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-09-28 06:53:47 -0400 |
commit | f21738341ca330ec83ef978ee63ffa5ecf13f082 (patch) | |
tree | be42abeb9ef2509a5a0c4187f4aa076d8f3c2dee /arch/arm/mach-at91rm9200/board-ek.c | |
parent | 2eeaaa21de68cb8869d3a54438a9224321d3dd03 (diff) |
[ARM] 3867/1: AT91 GPIO update
This patch makes the AT91 gpio.c support processor-generic (AT91RM9200
and AT91SAM9xxx). The GPIO controllers supported by a particular AT91
processor are defined in the processor-specific file and are registered
with gpio.c at startup.
Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-at91rm9200/board-ek.c')
-rw-r--r-- | arch/arm/mach-at91rm9200/board-ek.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/arch/arm/mach-at91rm9200/board-ek.c b/arch/arm/mach-at91rm9200/board-ek.c index 8cd83364cd80..830eb7932178 100644 --- a/arch/arm/mach-at91rm9200/board-ek.c +++ b/arch/arm/mach-at91rm9200/board-ek.c | |||
@@ -42,14 +42,6 @@ | |||
42 | 42 | ||
43 | #include "generic.h" | 43 | #include "generic.h" |
44 | 44 | ||
45 | static void __init ek_init_irq(void) | ||
46 | { | ||
47 | /* Initialize AIC controller */ | ||
48 | at91rm9200_init_irq(NULL); | ||
49 | |||
50 | /* Set up the GPIO interrupts */ | ||
51 | at91_gpio_irq_setup(BGA_GPIO_BANKS); | ||
52 | } | ||
53 | 45 | ||
54 | /* | 46 | /* |
55 | * Serial port configuration. | 47 | * Serial port configuration. |
@@ -65,7 +57,7 @@ static struct at91_uart_config __initdata ek_uart_config = { | |||
65 | static void __init ek_map_io(void) | 57 | static void __init ek_map_io(void) |
66 | { | 58 | { |
67 | /* Initialize processor: 18.432 MHz crystal */ | 59 | /* Initialize processor: 18.432 MHz crystal */ |
68 | at91rm9200_initialize(18432000); | 60 | at91rm9200_initialize(18432000, AT91RM9200_BGA); |
69 | 61 | ||
70 | /* Setup the LEDs */ | 62 | /* Setup the LEDs */ |
71 | at91_init_leds(AT91_PIN_PB1, AT91_PIN_PB2); | 63 | at91_init_leds(AT91_PIN_PB1, AT91_PIN_PB2); |
@@ -74,6 +66,11 @@ static void __init ek_map_io(void) | |||
74 | at91_init_serial(&ek_uart_config); | 66 | at91_init_serial(&ek_uart_config); |
75 | } | 67 | } |
76 | 68 | ||
69 | static void __init ek_init_irq(void) | ||
70 | { | ||
71 | at91rm9200_init_interrupts(NULL); | ||
72 | } | ||
73 | |||
77 | static struct at91_eth_data __initdata ek_eth_data = { | 74 | static struct at91_eth_data __initdata ek_eth_data = { |
78 | .phy_irq_pin = AT91_PIN_PC4, | 75 | .phy_irq_pin = AT91_PIN_PC4, |
79 | .is_rmii = 1, | 76 | .is_rmii = 1, |