ARM: S5PV310: Limit the irqs which support cascade interrupt
authorChanghwan Youn <chaos.youn@samsung.com>
Mon, 29 Nov 2010 08:04:46 +0000 (17:04 +0900)
committerKukjin Kim <kgene.kim@samsung.com>
Wed, 8 Dec 2010 09:11:37 +0000 (18:11 +0900)
The irqs from SPI(0) to SPI(39) and SPI(51), SPI(53) are connected to the
interrupt combiner. This patch limits the irqs which should be initialized
to support cascade interrupt.

Signed-off-by: Changhwan Youn <chaos.youn@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
arch/arm/mach-s5pv310/cpu.c

index 82ce4aa6d61a5c07f004f26cc08e11d80f583b0d..3d0c1cb68d9ed061f512dfc39c1858728b7e7d64 100644 (file)
@@ -127,6 +127,15 @@ void __init s5pv310_init_irq(void)
        gic_cpu_init(0, S5P_VA_GIC_CPU);
 
        for (irq = 0; irq < MAX_COMBINER_NR; irq++) {
+
+               /*
+                * From SPI(0) to SPI(39) and SPI(51), SPI(53) are
+                * connected to the interrupt combiner. These irqs
+                * should be initialized to support cascade interrupt.
+                */
+               if ((irq >= 40) && !(irq == 51) && !(irq == 53))
+                       continue;
+
                combiner_init(irq, (void __iomem *)S5P_VA_COMBINER(irq),
                                COMBINER_IRQ(irq, 0));
                combiner_cascade_irq(irq, IRQ_SPI(irq));