diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2009-05-25 11:36:19 -0400 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2009-08-07 06:10:54 -0400 |
commit | c5aa0ad0c557c63dcaf8c8d75a3dd4c5e90724b3 (patch) | |
tree | 9750fbbf8e9c57e9cd9a948d8740fc65df93a5e6 /arch/arm/mach-mx1 | |
parent | 12308dfe3776ff5741fc675f2a352165e1628098 (diff) |
mxc: turn to soc specific init_irq functions
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx1')
-rw-r--r-- | arch/arm/mach-mx1/generic.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-mx1/mx1ads.c | 4 | ||||
-rw-r--r-- | arch/arm/mach-mx1/scb9328.c | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/arch/arm/mach-mx1/generic.c b/arch/arm/mach-mx1/generic.c index bbb6c7b87666..7f9fc1034c08 100644 --- a/arch/arm/mach-mx1/generic.c +++ b/arch/arm/mach-mx1/generic.c | |||
@@ -45,3 +45,9 @@ void __init mx1_map_io(void) | |||
45 | 45 | ||
46 | iotable_init(imx_io_desc, ARRAY_SIZE(imx_io_desc)); | 46 | iotable_init(imx_io_desc, ARRAY_SIZE(imx_io_desc)); |
47 | } | 47 | } |
48 | |||
49 | void __init mx1_init_irq(void) | ||
50 | { | ||
51 | mxc_init_irq(IO_ADDRESS(AVIC_BASE_ADDR)); | ||
52 | } | ||
53 | |||
diff --git a/arch/arm/mach-mx1/mx1ads.c b/arch/arm/mach-mx1/mx1ads.c index e5b0c0a83c3b..6af064d19b0f 100644 --- a/arch/arm/mach-mx1/mx1ads.c +++ b/arch/arm/mach-mx1/mx1ads.c | |||
@@ -151,7 +151,7 @@ MACHINE_START(MX1ADS, "Freescale MX1ADS") | |||
151 | .io_pg_offst = (IMX_IO_BASE >> 18) & 0xfffc, | 151 | .io_pg_offst = (IMX_IO_BASE >> 18) & 0xfffc, |
152 | .boot_params = PHYS_OFFSET + 0x100, | 152 | .boot_params = PHYS_OFFSET + 0x100, |
153 | .map_io = mx1_map_io, | 153 | .map_io = mx1_map_io, |
154 | .init_irq = mxc_init_irq, | 154 | .init_irq = mx1_init_irq, |
155 | .timer = &mx1ads_timer, | 155 | .timer = &mx1ads_timer, |
156 | .init_machine = mx1ads_init, | 156 | .init_machine = mx1ads_init, |
157 | MACHINE_END | 157 | MACHINE_END |
@@ -161,7 +161,7 @@ MACHINE_START(MXLADS, "Freescale MXLADS") | |||
161 | .io_pg_offst = (IMX_IO_BASE >> 18) & 0xfffc, | 161 | .io_pg_offst = (IMX_IO_BASE >> 18) & 0xfffc, |
162 | .boot_params = PHYS_OFFSET + 0x100, | 162 | .boot_params = PHYS_OFFSET + 0x100, |
163 | .map_io = mx1_map_io, | 163 | .map_io = mx1_map_io, |
164 | .init_irq = mxc_init_irq, | 164 | .init_irq = mx1_init_irq, |
165 | .timer = &mx1ads_timer, | 165 | .timer = &mx1ads_timer, |
166 | .init_machine = mx1ads_init, | 166 | .init_machine = mx1ads_init, |
167 | MACHINE_END | 167 | MACHINE_END |
diff --git a/arch/arm/mach-mx1/scb9328.c b/arch/arm/mach-mx1/scb9328.c index 20e0b5bcdffc..125d495e9c73 100644 --- a/arch/arm/mach-mx1/scb9328.c +++ b/arch/arm/mach-mx1/scb9328.c | |||
@@ -154,7 +154,7 @@ MACHINE_START(SCB9328, "Synertronixx scb9328") | |||
154 | .io_pg_offst = ((0xe0200000) >> 18) & 0xfffc, | 154 | .io_pg_offst = ((0xe0200000) >> 18) & 0xfffc, |
155 | .boot_params = 0x08000100, | 155 | .boot_params = 0x08000100, |
156 | .map_io = mx1_map_io, | 156 | .map_io = mx1_map_io, |
157 | .init_irq = mxc_init_irq, | 157 | .init_irq = mx1_init_irq, |
158 | .timer = &scb9328_timer, | 158 | .timer = &scb9328_timer, |
159 | .init_machine = scb9328_init, | 159 | .init_machine = scb9328_init, |
160 | MACHINE_END | 160 | MACHINE_END |