sh: intc - add missing vectors for SH7707
authorMagnus Damm <damm@igel.co.jp>
Thu, 26 Jul 2007 01:12:50 +0000 (10:12 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Fri, 21 Sep 2007 02:57:46 +0000 (11:57 +0900)
This patch adds a few missing vectors for sh7707. The only interrupt
controller differences between sh7707 and sh7709 seem to be added
vectors for one LCD controller and two PCMCIA slots.

Signed-off-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/cpu/sh3/setup-sh770x.c

index 68fc037..43f8199 100644 (file)
@@ -29,6 +29,7 @@ enum {
        SCIF2_ERI, SCIF2_RXI, SCIF2_BRI, SCIF2_TXI,
        SCI_ERI, SCI_RXI, SCI_TXI, SCI_TEI,
        ADC_ADI,
+       LCDC, PCC0, PCC1,
        TMU0, TMU1, TMU2_TUNI, TMU2_TICPI,
        RTC_ATI, RTC_PRI, RTC_CUI,
        WDT,
@@ -64,6 +65,10 @@ static struct intc_vect vectors[] = {
        INTC_VECT(SCIF0_ERI, 0x880), INTC_VECT(SCIF0_RXI, 0x8a0),
        INTC_VECT(SCIF0_BRI, 0x8c0), INTC_VECT(SCIF0_TXI, 0x8e0),
 #endif
+#if defined(CONFIG_CPU_SUBTYPE_SH7707)
+       INTC_VECT(LCDC, 0x9a0),
+       INTC_VECT(PCC0, 0x9c0), INTC_VECT(PCC1, 0x9e0),
+#endif
 };
 
 static struct intc_group groups[] = {
@@ -98,6 +103,9 @@ static struct intc_prio_reg prio_registers[] = {
        { 0xa4000018, 16, 4, /* IPRD */ { PINT07, PINT815, } },
        { 0xa400001a, 16, 4, /* IPRE */ { 0, SCIF0 } },
 #endif
+#if defined(CONFIG_CPU_SUBTYPE_SH7707)
+       { 0xa400001c, 16, 4, /* IPRF */ { 0, LCDC, PCC0, PCC1, } },
+#endif
 };
 
 static DECLARE_INTC_DESC(intc_desc, "sh770x", vectors, groups,