diff options
author | Rob Herring <rob.herring@calxeda.com> | 2013-01-02 10:37:56 -0500 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2013-01-12 11:52:15 -0500 |
commit | e9c515589df7731591d15e506ba6d69713faae41 (patch) | |
tree | df392b914720ca1a23d701e980de746eca805208 /arch/arm/mach-spear3xx | |
parent | 44430ec068b207f985aa00b1d34bb5085dbc39d5 (diff) |
ARM: spear: use common irqchip_init function
Convert spear DT irq initialization over to use common irqchip_init
function.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Cc: Viresh Kumar <viresh.linux@gmail.com>
Cc: Shiraz Hashim <shiraz.hashim@st.com>
Cc: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Diffstat (limited to 'arch/arm/mach-spear3xx')
-rw-r--r-- | arch/arm/mach-spear3xx/include/mach/generic.h | 1 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/spear300.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/spear310.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/spear320.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-spear3xx/spear3xx.c | 16 |
5 files changed, 6 insertions, 20 deletions
diff --git a/arch/arm/mach-spear3xx/include/mach/generic.h b/arch/arm/mach-spear3xx/include/mach/generic.h index ce19113ca791..c26b7a4b1126 100644 --- a/arch/arm/mach-spear3xx/include/mach/generic.h +++ b/arch/arm/mach-spear3xx/include/mach/generic.h | |||
@@ -30,7 +30,6 @@ extern struct pl08x_platform_data pl080_plat_data; | |||
30 | void __init spear_setup_of_timer(void); | 30 | void __init spear_setup_of_timer(void); |
31 | void __init spear3xx_clk_init(void); | 31 | void __init spear3xx_clk_init(void); |
32 | void __init spear3xx_map_io(void); | 32 | void __init spear3xx_map_io(void); |
33 | void __init spear3xx_dt_init_irq(void); | ||
34 | 33 | ||
35 | void spear_restart(char, const char *); | 34 | void spear_restart(char, const char *); |
36 | 35 | ||
diff --git a/arch/arm/mach-spear3xx/spear300.c b/arch/arm/mach-spear3xx/spear300.c index 7a11d852d44a..499479bbbaf9 100644 --- a/arch/arm/mach-spear3xx/spear300.c +++ b/arch/arm/mach-spear3xx/spear300.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #define pr_fmt(fmt) "SPEAr300: " fmt | 14 | #define pr_fmt(fmt) "SPEAr300: " fmt |
15 | 15 | ||
16 | #include <linux/amba/pl08x.h> | 16 | #include <linux/amba/pl08x.h> |
17 | #include <linux/irqchip.h> | ||
17 | #include <linux/of_platform.h> | 18 | #include <linux/of_platform.h> |
18 | #include <asm/mach/arch.h> | 19 | #include <asm/mach/arch.h> |
19 | #include <mach/generic.h> | 20 | #include <mach/generic.h> |
@@ -211,7 +212,7 @@ static void __init spear300_map_io(void) | |||
211 | 212 | ||
212 | DT_MACHINE_START(SPEAR300_DT, "ST SPEAr300 SoC with Flattened Device Tree") | 213 | DT_MACHINE_START(SPEAR300_DT, "ST SPEAr300 SoC with Flattened Device Tree") |
213 | .map_io = spear300_map_io, | 214 | .map_io = spear300_map_io, |
214 | .init_irq = spear3xx_dt_init_irq, | 215 | .init_irq = irqchip_init, |
215 | .timer = &spear3xx_timer, | 216 | .timer = &spear3xx_timer, |
216 | .init_machine = spear300_dt_init, | 217 | .init_machine = spear300_dt_init, |
217 | .restart = spear_restart, | 218 | .restart = spear_restart, |
diff --git a/arch/arm/mach-spear3xx/spear310.c b/arch/arm/mach-spear3xx/spear310.c index 9719f835dbb3..367d9be40ec1 100644 --- a/arch/arm/mach-spear3xx/spear310.c +++ b/arch/arm/mach-spear3xx/spear310.c | |||
@@ -15,6 +15,7 @@ | |||
15 | 15 | ||
16 | #include <linux/amba/pl08x.h> | 16 | #include <linux/amba/pl08x.h> |
17 | #include <linux/amba/serial.h> | 17 | #include <linux/amba/serial.h> |
18 | #include <linux/irqchip.h> | ||
18 | #include <linux/of_platform.h> | 19 | #include <linux/of_platform.h> |
19 | #include <asm/mach/arch.h> | 20 | #include <asm/mach/arch.h> |
20 | #include <mach/generic.h> | 21 | #include <mach/generic.h> |
@@ -253,7 +254,7 @@ static void __init spear310_map_io(void) | |||
253 | 254 | ||
254 | DT_MACHINE_START(SPEAR310_DT, "ST SPEAr310 SoC with Flattened Device Tree") | 255 | DT_MACHINE_START(SPEAR310_DT, "ST SPEAr310 SoC with Flattened Device Tree") |
255 | .map_io = spear310_map_io, | 256 | .map_io = spear310_map_io, |
256 | .init_irq = spear3xx_dt_init_irq, | 257 | .init_irq = irqchip_init, |
257 | .timer = &spear3xx_timer, | 258 | .timer = &spear3xx_timer, |
258 | .init_machine = spear310_dt_init, | 259 | .init_machine = spear310_dt_init, |
259 | .restart = spear_restart, | 260 | .restart = spear_restart, |
diff --git a/arch/arm/mach-spear3xx/spear320.c b/arch/arm/mach-spear3xx/spear320.c index 3a22d8422976..34c212e6cbf6 100644 --- a/arch/arm/mach-spear3xx/spear320.c +++ b/arch/arm/mach-spear3xx/spear320.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/amba/pl022.h> | 16 | #include <linux/amba/pl022.h> |
17 | #include <linux/amba/pl08x.h> | 17 | #include <linux/amba/pl08x.h> |
18 | #include <linux/amba/serial.h> | 18 | #include <linux/amba/serial.h> |
19 | #include <linux/irqchip.h> | ||
19 | #include <linux/of_platform.h> | 20 | #include <linux/of_platform.h> |
20 | #include <asm/mach/arch.h> | 21 | #include <asm/mach/arch.h> |
21 | #include <mach/generic.h> | 22 | #include <mach/generic.h> |
@@ -267,7 +268,7 @@ static void __init spear320_map_io(void) | |||
267 | 268 | ||
268 | DT_MACHINE_START(SPEAR320_DT, "ST SPEAr320 SoC with Flattened Device Tree") | 269 | DT_MACHINE_START(SPEAR320_DT, "ST SPEAr320 SoC with Flattened Device Tree") |
269 | .map_io = spear320_map_io, | 270 | .map_io = spear320_map_io, |
270 | .init_irq = spear3xx_dt_init_irq, | 271 | .init_irq = irqchip_init, |
271 | .timer = &spear3xx_timer, | 272 | .timer = &spear3xx_timer, |
272 | .init_machine = spear320_dt_init, | 273 | .init_machine = spear320_dt_init, |
273 | .restart = spear_restart, | 274 | .restart = spear_restart, |
diff --git a/arch/arm/mach-spear3xx/spear3xx.c b/arch/arm/mach-spear3xx/spear3xx.c index 38fe95db31a7..c6003ef0c9f6 100644 --- a/arch/arm/mach-spear3xx/spear3xx.c +++ b/arch/arm/mach-spear3xx/spear3xx.c | |||
@@ -15,11 +15,8 @@ | |||
15 | 15 | ||
16 | #include <linux/amba/pl022.h> | 16 | #include <linux/amba/pl022.h> |
17 | #include <linux/amba/pl08x.h> | 17 | #include <linux/amba/pl08x.h> |
18 | #include <linux/irqchip/spear-shirq.h> | ||
19 | #include <linux/of_irq.h> | ||
20 | #include <linux/io.h> | 18 | #include <linux/io.h> |
21 | #include <asm/hardware/pl080.h> | 19 | #include <asm/hardware/pl080.h> |
22 | #include <asm/hardware/vic.h> | ||
23 | #include <plat/pl080.h> | 20 | #include <plat/pl080.h> |
24 | #include <mach/generic.h> | 21 | #include <mach/generic.h> |
25 | #include <mach/spear.h> | 22 | #include <mach/spear.h> |
@@ -119,16 +116,3 @@ static void __init spear3xx_timer_init(void) | |||
119 | struct sys_timer spear3xx_timer = { | 116 | struct sys_timer spear3xx_timer = { |
120 | .init = spear3xx_timer_init, | 117 | .init = spear3xx_timer_init, |
121 | }; | 118 | }; |
122 | |||
123 | static const struct of_device_id vic_of_match[] __initconst = { | ||
124 | { .compatible = "arm,pl190-vic", .data = vic_of_init, }, | ||
125 | { .compatible = "st,spear300-shirq", .data = spear300_shirq_of_init, }, | ||
126 | { .compatible = "st,spear310-shirq", .data = spear310_shirq_of_init, }, | ||
127 | { .compatible = "st,spear320-shirq", .data = spear320_shirq_of_init, }, | ||
128 | { /* Sentinel */ } | ||
129 | }; | ||
130 | |||
131 | void __init spear3xx_dt_init_irq(void) | ||
132 | { | ||
133 | of_irq_init(vic_of_match); | ||
134 | } | ||