aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2014-09-08 20:54:51 -0400
committerTony Lindgren <tony@atomide.com>2014-09-11 16:05:38 -0400
commita4d3c5d91fd109dd852351193781352f0512d0c3 (patch)
tree346e9df67587a373477f44ebaffdccfd760b9125
parentc2fb3b33f279a6f798b5bbb7fde7cfcdf9401039 (diff)
arm: omap: irq: move some more code around
We want .init_irq to call set_irq_handle() for legacy platforms. Note that this code will also be dropped once omap2/3 devices are completely moved to DT. Signed-off-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r--arch/arm/mach-omap2/irq.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c
index e70c26edc7fb..587def4ef0d7 100644
--- a/arch/arm/mach-omap2/irq.c
+++ b/arch/arm/mach-omap2/irq.c
@@ -234,21 +234,6 @@ static void __init omap_init_irq(u32 base, int nr_irqs,
234 omap_alloc_gc(omap_irq_base + j, j + irq_base, 32); 234 omap_alloc_gc(omap_irq_base + j, j + irq_base, 32);
235} 235}
236 236
237void __init omap2_init_irq(void)
238{
239 omap_init_irq(OMAP24XX_IC_BASE, 96, NULL);
240}
241
242void __init omap3_init_irq(void)
243{
244 omap_init_irq(OMAP34XX_IC_BASE, 96, NULL);
245}
246
247void __init ti81xx_init_irq(void)
248{
249 omap_init_irq(OMAP34XX_IC_BASE, 128, NULL);
250}
251
252static inline void omap_intc_handle_irq(struct pt_regs *regs) 237static inline void omap_intc_handle_irq(struct pt_regs *regs)
253{ 238{
254 u32 irqnr; 239 u32 irqnr;
@@ -296,6 +281,21 @@ asmlinkage void __exception_irq_entry omap2_intc_handle_irq(struct pt_regs *regs
296 omap_intc_handle_irq(regs); 281 omap_intc_handle_irq(regs);
297} 282}
298 283
284void __init omap2_init_irq(void)
285{
286 omap_init_irq(OMAP24XX_IC_BASE, 96, NULL);
287}
288
289void __init omap3_init_irq(void)
290{
291 omap_init_irq(OMAP34XX_IC_BASE, 96, NULL);
292}
293
294void __init ti81xx_init_irq(void)
295{
296 omap_init_irq(OMAP34XX_IC_BASE, 128, NULL);
297}
298
299static int __init intc_of_init(struct device_node *node, 299static int __init intc_of_init(struct device_node *node,
300 struct device_node *parent) 300 struct device_node *parent)
301{ 301{