~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/mips/sgi-ip22/ip22-int.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/mips/sgi-ip22/ip22-int.c (Architecture alpha) and /arch/mips/sgi-ip22/ip22-int.c (Architecture mips)


  1 // SPDX-License-Identifier: GPL-2.0                 1 // SPDX-License-Identifier: GPL-2.0
  2 /*                                                  2 /*
  3  * ip22-int.c: Routines for generic manipulati      3  * ip22-int.c: Routines for generic manipulation of the INT[23] ASIC
  4  *             found on INDY and Indigo2 works      4  *             found on INDY and Indigo2 workstations.
  5  *                                                  5  *
  6  * Copyright (C) 1996 David S. Miller (davem@d      6  * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
  7  * Copyright (C) 1997, 1998 Ralf Baechle (ralf      7  * Copyright (C) 1997, 1998 Ralf Baechle (ralf@gnu.org)
  8  * Copyright (C) 1999 Andrew R. Baker (andrewb      8  * Copyright (C) 1999 Andrew R. Baker (andrewb@uab.edu)
  9  *                    - Indigo2 changes             9  *                    - Indigo2 changes
 10  *                    - Interrupt handling fix     10  *                    - Interrupt handling fixes
 11  * Copyright (C) 2001, 2003 Ladislav Michl (la     11  * Copyright (C) 2001, 2003 Ladislav Michl (ladis@linux-mips.org)
 12  */                                                12  */
 13 #include <linux/types.h>                           13 #include <linux/types.h>
 14 #include <linux/init.h>                            14 #include <linux/init.h>
 15 #include <linux/kernel_stat.h>                     15 #include <linux/kernel_stat.h>
 16 #include <linux/interrupt.h>                       16 #include <linux/interrupt.h>
 17 #include <linux/ftrace.h>                          17 #include <linux/ftrace.h>
 18                                                    18 
 19 #include <asm/irq_cpu.h>                           19 #include <asm/irq_cpu.h>
 20 #include <asm/sgi/hpc3.h>                          20 #include <asm/sgi/hpc3.h>
 21 #include <asm/sgi/ip22.h>                          21 #include <asm/sgi/ip22.h>
 22                                                    22 
 23 /* So far nothing hangs here */                    23 /* So far nothing hangs here */
 24 #undef USE_LIO3_IRQ                                24 #undef USE_LIO3_IRQ
 25                                                    25 
 26 struct sgint_regs *sgint;                          26 struct sgint_regs *sgint;
 27                                                    27 
 28 static char lc0msk_to_irqnr[256];                  28 static char lc0msk_to_irqnr[256];
 29 static char lc1msk_to_irqnr[256];                  29 static char lc1msk_to_irqnr[256];
 30 static char lc2msk_to_irqnr[256];                  30 static char lc2msk_to_irqnr[256];
 31 static char lc3msk_to_irqnr[256];                  31 static char lc3msk_to_irqnr[256];
 32                                                    32 
 33 extern int ip22_eisa_init(void);                   33 extern int ip22_eisa_init(void);
 34                                                    34 
 35 static void enable_local0_irq(struct irq_data      35 static void enable_local0_irq(struct irq_data *d)
 36 {                                                  36 {
 37         /* don't allow mappable interrupt to b     37         /* don't allow mappable interrupt to be enabled from setup_irq,
 38          * we have our own way to do so */         38          * we have our own way to do so */
 39         if (d->irq != SGI_MAP_0_IRQ)               39         if (d->irq != SGI_MAP_0_IRQ)
 40                 sgint->imask0 |= (1 << (d->irq     40                 sgint->imask0 |= (1 << (d->irq - SGINT_LOCAL0));
 41 }                                                  41 }
 42                                                    42 
 43 static void disable_local0_irq(struct irq_data     43 static void disable_local0_irq(struct irq_data *d)
 44 {                                                  44 {
 45         sgint->imask0 &= ~(1 << (d->irq - SGIN     45         sgint->imask0 &= ~(1 << (d->irq - SGINT_LOCAL0));
 46 }                                                  46 }
 47                                                    47 
 48 static struct irq_chip ip22_local0_irq_type =      48 static struct irq_chip ip22_local0_irq_type = {
 49         .name           = "IP22 local 0",          49         .name           = "IP22 local 0",
 50         .irq_mask       = disable_local0_irq,      50         .irq_mask       = disable_local0_irq,
 51         .irq_unmask     = enable_local0_irq,       51         .irq_unmask     = enable_local0_irq,
 52 };                                                 52 };
 53                                                    53 
 54 static void enable_local1_irq(struct irq_data      54 static void enable_local1_irq(struct irq_data *d)
 55 {                                                  55 {
 56         /* don't allow mappable interrupt to b     56         /* don't allow mappable interrupt to be enabled from setup_irq,
 57          * we have our own way to do so */         57          * we have our own way to do so */
 58         if (d->irq != SGI_MAP_1_IRQ)               58         if (d->irq != SGI_MAP_1_IRQ)
 59                 sgint->imask1 |= (1 << (d->irq     59                 sgint->imask1 |= (1 << (d->irq - SGINT_LOCAL1));
 60 }                                                  60 }
 61                                                    61 
 62 static void disable_local1_irq(struct irq_data     62 static void disable_local1_irq(struct irq_data *d)
 63 {                                                  63 {
 64         sgint->imask1 &= ~(1 << (d->irq - SGIN     64         sgint->imask1 &= ~(1 << (d->irq - SGINT_LOCAL1));
 65 }                                                  65 }
 66                                                    66 
 67 static struct irq_chip ip22_local1_irq_type =      67 static struct irq_chip ip22_local1_irq_type = {
 68         .name           = "IP22 local 1",          68         .name           = "IP22 local 1",
 69         .irq_mask       = disable_local1_irq,      69         .irq_mask       = disable_local1_irq,
 70         .irq_unmask     = enable_local1_irq,       70         .irq_unmask     = enable_local1_irq,
 71 };                                                 71 };
 72                                                    72 
 73 static void enable_local2_irq(struct irq_data      73 static void enable_local2_irq(struct irq_data *d)
 74 {                                                  74 {
 75         sgint->imask0 |= (1 << (SGI_MAP_0_IRQ      75         sgint->imask0 |= (1 << (SGI_MAP_0_IRQ - SGINT_LOCAL0));
 76         sgint->cmeimask0 |= (1 << (d->irq - SG     76         sgint->cmeimask0 |= (1 << (d->irq - SGINT_LOCAL2));
 77 }                                                  77 }
 78                                                    78 
 79 static void disable_local2_irq(struct irq_data     79 static void disable_local2_irq(struct irq_data *d)
 80 {                                                  80 {
 81         sgint->cmeimask0 &= ~(1 << (d->irq - S     81         sgint->cmeimask0 &= ~(1 << (d->irq - SGINT_LOCAL2));
 82         if (!sgint->cmeimask0)                     82         if (!sgint->cmeimask0)
 83                 sgint->imask0 &= ~(1 << (SGI_M     83                 sgint->imask0 &= ~(1 << (SGI_MAP_0_IRQ - SGINT_LOCAL0));
 84 }                                                  84 }
 85                                                    85 
 86 static struct irq_chip ip22_local2_irq_type =      86 static struct irq_chip ip22_local2_irq_type = {
 87         .name           = "IP22 local 2",          87         .name           = "IP22 local 2",
 88         .irq_mask       = disable_local2_irq,      88         .irq_mask       = disable_local2_irq,
 89         .irq_unmask     = enable_local2_irq,       89         .irq_unmask     = enable_local2_irq,
 90 };                                                 90 };
 91                                                    91 
 92 static void enable_local3_irq(struct irq_data      92 static void enable_local3_irq(struct irq_data *d)
 93 {                                                  93 {
 94         sgint->imask1 |= (1 << (SGI_MAP_1_IRQ      94         sgint->imask1 |= (1 << (SGI_MAP_1_IRQ - SGINT_LOCAL1));
 95         sgint->cmeimask1 |= (1 << (d->irq - SG     95         sgint->cmeimask1 |= (1 << (d->irq - SGINT_LOCAL3));
 96 }                                                  96 }
 97                                                    97 
 98 static void disable_local3_irq(struct irq_data     98 static void disable_local3_irq(struct irq_data *d)
 99 {                                                  99 {
100         sgint->cmeimask1 &= ~(1 << (d->irq - S    100         sgint->cmeimask1 &= ~(1 << (d->irq - SGINT_LOCAL3));
101         if (!sgint->cmeimask1)                    101         if (!sgint->cmeimask1)
102                 sgint->imask1 &= ~(1 << (SGI_M    102                 sgint->imask1 &= ~(1 << (SGI_MAP_1_IRQ - SGINT_LOCAL1));
103 }                                                 103 }
104                                                   104 
105 static struct irq_chip ip22_local3_irq_type =     105 static struct irq_chip ip22_local3_irq_type = {
106         .name           = "IP22 local 3",         106         .name           = "IP22 local 3",
107         .irq_mask       = disable_local3_irq,     107         .irq_mask       = disable_local3_irq,
108         .irq_unmask     = enable_local3_irq,      108         .irq_unmask     = enable_local3_irq,
109 };                                                109 };
110                                                   110 
111 static void indy_local0_irqdispatch(void)         111 static void indy_local0_irqdispatch(void)
112 {                                                 112 {
113         u8 mask = sgint->istat0 & sgint->imask    113         u8 mask = sgint->istat0 & sgint->imask0;
114         u8 mask2;                                 114         u8 mask2;
115         int irq;                                  115         int irq;
116                                                   116 
117         if (mask & SGINT_ISTAT0_LIO2) {           117         if (mask & SGINT_ISTAT0_LIO2) {
118                 mask2 = sgint->vmeistat & sgin    118                 mask2 = sgint->vmeistat & sgint->cmeimask0;
119                 irq = lc2msk_to_irqnr[mask2];     119                 irq = lc2msk_to_irqnr[mask2];
120         } else                                    120         } else
121                 irq = lc0msk_to_irqnr[mask];      121                 irq = lc0msk_to_irqnr[mask];
122                                                   122 
123         /*                                        123         /*
124          * workaround for INT2 bug; if irq ==     124          * workaround for INT2 bug; if irq == 0, INT2 has seen a fifo full
125          * irq, but failed to latch it into st    125          * irq, but failed to latch it into status register
126          */                                       126          */
127         if (irq)                                  127         if (irq)
128                 do_IRQ(irq);                      128                 do_IRQ(irq);
129         else                                      129         else
130                 do_IRQ(SGINT_LOCAL0 + 0);         130                 do_IRQ(SGINT_LOCAL0 + 0);
131 }                                                 131 }
132                                                   132 
133 static void indy_local1_irqdispatch(void)         133 static void indy_local1_irqdispatch(void)
134 {                                                 134 {
135         u8 mask = sgint->istat1 & sgint->imask    135         u8 mask = sgint->istat1 & sgint->imask1;
136         u8 mask2;                                 136         u8 mask2;
137         int irq;                                  137         int irq;
138                                                   138 
139         if (mask & SGINT_ISTAT1_LIO3) {           139         if (mask & SGINT_ISTAT1_LIO3) {
140                 mask2 = sgint->vmeistat & sgin    140                 mask2 = sgint->vmeistat & sgint->cmeimask1;
141                 irq = lc3msk_to_irqnr[mask2];     141                 irq = lc3msk_to_irqnr[mask2];
142         } else                                    142         } else
143                 irq = lc1msk_to_irqnr[mask];      143                 irq = lc1msk_to_irqnr[mask];
144                                                   144 
145         /* if irq == 0, then the interrupt has    145         /* if irq == 0, then the interrupt has already been cleared */
146         if (irq)                                  146         if (irq)
147                 do_IRQ(irq);                      147                 do_IRQ(irq);
148 }                                                 148 }
149                                                   149 
150 extern void ip22_be_interrupt(int irq);           150 extern void ip22_be_interrupt(int irq);
151                                                   151 
152 static void __irq_entry indy_buserror_irq(void    152 static void __irq_entry indy_buserror_irq(void)
153 {                                                 153 {
154         int irq = SGI_BUSERR_IRQ;                 154         int irq = SGI_BUSERR_IRQ;
155                                                   155 
156         irq_enter();                              156         irq_enter();
157         kstat_incr_irq_this_cpu(irq);             157         kstat_incr_irq_this_cpu(irq);
158         ip22_be_interrupt(irq);                   158         ip22_be_interrupt(irq);
159         irq_exit();                               159         irq_exit();
160 }                                                 160 }
161                                                   161 
162 #ifdef USE_LIO3_IRQ                               162 #ifdef USE_LIO3_IRQ
163 #define SGI_INTERRUPTS  SGINT_END                 163 #define SGI_INTERRUPTS  SGINT_END
164 #else                                             164 #else
165 #define SGI_INTERRUPTS  SGINT_LOCAL3              165 #define SGI_INTERRUPTS  SGINT_LOCAL3
166 #endif                                            166 #endif
167                                                   167 
168 /*                                                168 /*
169  * IRQs on the INDY look basically (barring so    169  * IRQs on the INDY look basically (barring software IRQs which we don't use
170  * at all) like:                                  170  * at all) like:
171  *                                                171  *
172  *      MIPS IRQ        Source                    172  *      MIPS IRQ        Source
173  *      --------        ------                    173  *      --------        ------
174  *             0        Software (ignored)        174  *             0        Software (ignored)
175  *             1        Software (ignored)        175  *             1        Software (ignored)
176  *             2        Local IRQ level zero      176  *             2        Local IRQ level zero
177  *             3        Local IRQ level one       177  *             3        Local IRQ level one
178  *             4        8254 Timer zero           178  *             4        8254 Timer zero
179  *             5        8254 Timer one            179  *             5        8254 Timer one
180  *             6        Bus Error                 180  *             6        Bus Error
181  *             7        R4k timer (what we use    181  *             7        R4k timer (what we use)
182  *                                                182  *
183  * We handle the IRQ according to _our_ priori    183  * We handle the IRQ according to _our_ priority which is:
184  *                                                184  *
185  * Highest ----     R4k Timer                     185  * Highest ----     R4k Timer
186  *                  Local IRQ zero                186  *                  Local IRQ zero
187  *                  Local IRQ one                 187  *                  Local IRQ one
188  *                  Bus Error                     188  *                  Bus Error
189  *                  8254 Timer zero               189  *                  8254 Timer zero
190  * Lowest  ----     8254 Timer one                190  * Lowest  ----     8254 Timer one
191  *                                                191  *
192  * then we just return, if multiple IRQs are p    192  * then we just return, if multiple IRQs are pending then we will just take
193  * another exception, big deal.                   193  * another exception, big deal.
194  */                                               194  */
195                                                   195 
196 asmlinkage void plat_irq_dispatch(void)           196 asmlinkage void plat_irq_dispatch(void)
197 {                                                 197 {
198         unsigned int pending = read_c0_status(    198         unsigned int pending = read_c0_status() & read_c0_cause();
199                                                   199 
200         /*                                        200         /*
201          * First we check for r4k counter/time    201          * First we check for r4k counter/timer IRQ.
202          */                                       202          */
203         if (pending & CAUSEF_IP7)                 203         if (pending & CAUSEF_IP7)
204                 do_IRQ(SGI_TIMER_IRQ);            204                 do_IRQ(SGI_TIMER_IRQ);
205         else if (pending & CAUSEF_IP2)            205         else if (pending & CAUSEF_IP2)
206                 indy_local0_irqdispatch();        206                 indy_local0_irqdispatch();
207         else if (pending & CAUSEF_IP3)            207         else if (pending & CAUSEF_IP3)
208                 indy_local1_irqdispatch();        208                 indy_local1_irqdispatch();
209         else if (pending & CAUSEF_IP6)            209         else if (pending & CAUSEF_IP6)
210                 indy_buserror_irq();              210                 indy_buserror_irq();
211         else if (pending & (CAUSEF_IP4 | CAUSE    211         else if (pending & (CAUSEF_IP4 | CAUSEF_IP5))
212                 indy_8254timer_irq();             212                 indy_8254timer_irq();
213 }                                                 213 }
214                                                   214 
215 void __init arch_init_irq(void)                   215 void __init arch_init_irq(void)
216 {                                                 216 {
217         int i;                                    217         int i;
218                                                   218 
219         /* Init local mask --> irq tables. */     219         /* Init local mask --> irq tables. */
220         for (i = 0; i < 256; i++) {               220         for (i = 0; i < 256; i++) {
221                 if (i & 0x80) {                   221                 if (i & 0x80) {
222                         lc0msk_to_irqnr[i] = S    222                         lc0msk_to_irqnr[i] = SGINT_LOCAL0 + 7;
223                         lc1msk_to_irqnr[i] = S    223                         lc1msk_to_irqnr[i] = SGINT_LOCAL1 + 7;
224                         lc2msk_to_irqnr[i] = S    224                         lc2msk_to_irqnr[i] = SGINT_LOCAL2 + 7;
225                         lc3msk_to_irqnr[i] = S    225                         lc3msk_to_irqnr[i] = SGINT_LOCAL3 + 7;
226                 } else if (i & 0x40) {            226                 } else if (i & 0x40) {
227                         lc0msk_to_irqnr[i] = S    227                         lc0msk_to_irqnr[i] = SGINT_LOCAL0 + 6;
228                         lc1msk_to_irqnr[i] = S    228                         lc1msk_to_irqnr[i] = SGINT_LOCAL1 + 6;
229                         lc2msk_to_irqnr[i] = S    229                         lc2msk_to_irqnr[i] = SGINT_LOCAL2 + 6;
230                         lc3msk_to_irqnr[i] = S    230                         lc3msk_to_irqnr[i] = SGINT_LOCAL3 + 6;
231                 } else if (i & 0x20) {            231                 } else if (i & 0x20) {
232                         lc0msk_to_irqnr[i] = S    232                         lc0msk_to_irqnr[i] = SGINT_LOCAL0 + 5;
233                         lc1msk_to_irqnr[i] = S    233                         lc1msk_to_irqnr[i] = SGINT_LOCAL1 + 5;
234                         lc2msk_to_irqnr[i] = S    234                         lc2msk_to_irqnr[i] = SGINT_LOCAL2 + 5;
235                         lc3msk_to_irqnr[i] = S    235                         lc3msk_to_irqnr[i] = SGINT_LOCAL3 + 5;
236                 } else if (i & 0x10) {            236                 } else if (i & 0x10) {
237                         lc0msk_to_irqnr[i] = S    237                         lc0msk_to_irqnr[i] = SGINT_LOCAL0 + 4;
238                         lc1msk_to_irqnr[i] = S    238                         lc1msk_to_irqnr[i] = SGINT_LOCAL1 + 4;
239                         lc2msk_to_irqnr[i] = S    239                         lc2msk_to_irqnr[i] = SGINT_LOCAL2 + 4;
240                         lc3msk_to_irqnr[i] = S    240                         lc3msk_to_irqnr[i] = SGINT_LOCAL3 + 4;
241                 } else if (i & 0x08) {            241                 } else if (i & 0x08) {
242                         lc0msk_to_irqnr[i] = S    242                         lc0msk_to_irqnr[i] = SGINT_LOCAL0 + 3;
243                         lc1msk_to_irqnr[i] = S    243                         lc1msk_to_irqnr[i] = SGINT_LOCAL1 + 3;
244                         lc2msk_to_irqnr[i] = S    244                         lc2msk_to_irqnr[i] = SGINT_LOCAL2 + 3;
245                         lc3msk_to_irqnr[i] = S    245                         lc3msk_to_irqnr[i] = SGINT_LOCAL3 + 3;
246                 } else if (i & 0x04) {            246                 } else if (i & 0x04) {
247                         lc0msk_to_irqnr[i] = S    247                         lc0msk_to_irqnr[i] = SGINT_LOCAL0 + 2;
248                         lc1msk_to_irqnr[i] = S    248                         lc1msk_to_irqnr[i] = SGINT_LOCAL1 + 2;
249                         lc2msk_to_irqnr[i] = S    249                         lc2msk_to_irqnr[i] = SGINT_LOCAL2 + 2;
250                         lc3msk_to_irqnr[i] = S    250                         lc3msk_to_irqnr[i] = SGINT_LOCAL3 + 2;
251                 } else if (i & 0x02) {            251                 } else if (i & 0x02) {
252                         lc0msk_to_irqnr[i] = S    252                         lc0msk_to_irqnr[i] = SGINT_LOCAL0 + 1;
253                         lc1msk_to_irqnr[i] = S    253                         lc1msk_to_irqnr[i] = SGINT_LOCAL1 + 1;
254                         lc2msk_to_irqnr[i] = S    254                         lc2msk_to_irqnr[i] = SGINT_LOCAL2 + 1;
255                         lc3msk_to_irqnr[i] = S    255                         lc3msk_to_irqnr[i] = SGINT_LOCAL3 + 1;
256                 } else if (i & 0x01) {            256                 } else if (i & 0x01) {
257                         lc0msk_to_irqnr[i] = S    257                         lc0msk_to_irqnr[i] = SGINT_LOCAL0 + 0;
258                         lc1msk_to_irqnr[i] = S    258                         lc1msk_to_irqnr[i] = SGINT_LOCAL1 + 0;
259                         lc2msk_to_irqnr[i] = S    259                         lc2msk_to_irqnr[i] = SGINT_LOCAL2 + 0;
260                         lc3msk_to_irqnr[i] = S    260                         lc3msk_to_irqnr[i] = SGINT_LOCAL3 + 0;
261                 } else {                          261                 } else {
262                         lc0msk_to_irqnr[i] = 0    262                         lc0msk_to_irqnr[i] = 0;
263                         lc1msk_to_irqnr[i] = 0    263                         lc1msk_to_irqnr[i] = 0;
264                         lc2msk_to_irqnr[i] = 0    264                         lc2msk_to_irqnr[i] = 0;
265                         lc3msk_to_irqnr[i] = 0    265                         lc3msk_to_irqnr[i] = 0;
266                 }                                 266                 }
267         }                                         267         }
268                                                   268 
269         /* Mask out all interrupts. */            269         /* Mask out all interrupts. */
270         sgint->imask0 = 0;                        270         sgint->imask0 = 0;
271         sgint->imask1 = 0;                        271         sgint->imask1 = 0;
272         sgint->cmeimask0 = 0;                     272         sgint->cmeimask0 = 0;
273         sgint->cmeimask1 = 0;                     273         sgint->cmeimask1 = 0;
274                                                   274 
275         /* init CPU irqs */                       275         /* init CPU irqs */
276         mips_cpu_irq_init();                      276         mips_cpu_irq_init();
277                                                   277 
278         for (i = SGINT_LOCAL0; i < SGI_INTERRU    278         for (i = SGINT_LOCAL0; i < SGI_INTERRUPTS; i++) {
279                 struct irq_chip *handler;         279                 struct irq_chip *handler;
280                                                   280 
281                 if (i < SGINT_LOCAL1)             281                 if (i < SGINT_LOCAL1)
282                         handler         = &ip2    282                         handler         = &ip22_local0_irq_type;
283                 else if (i < SGINT_LOCAL2)        283                 else if (i < SGINT_LOCAL2)
284                         handler         = &ip2    284                         handler         = &ip22_local1_irq_type;
285                 else if (i < SGINT_LOCAL3)        285                 else if (i < SGINT_LOCAL3)
286                         handler         = &ip2    286                         handler         = &ip22_local2_irq_type;
287                 else                              287                 else
288                         handler         = &ip2    288                         handler         = &ip22_local3_irq_type;
289                                                   289 
290                 irq_set_chip_and_handler(i, ha    290                 irq_set_chip_and_handler(i, handler, handle_level_irq);
291         }                                         291         }
292                                                   292 
293         /* vector handler. this register the I    293         /* vector handler. this register the IRQ as non-sharable */
294         if (request_irq(SGI_LOCAL_0_IRQ, no_ac    294         if (request_irq(SGI_LOCAL_0_IRQ, no_action, IRQF_NO_THREAD,
295                         "local0 cascade", NULL    295                         "local0 cascade", NULL))
296                 pr_err("Failed to register loc    296                 pr_err("Failed to register local0 cascade interrupt\n");
297         if (request_irq(SGI_LOCAL_1_IRQ, no_ac    297         if (request_irq(SGI_LOCAL_1_IRQ, no_action, IRQF_NO_THREAD,
298                         "local1 cascade", NULL    298                         "local1 cascade", NULL))
299                 pr_err("Failed to register loc    299                 pr_err("Failed to register local1 cascade interrupt\n");
300         if (request_irq(SGI_BUSERR_IRQ, no_act    300         if (request_irq(SGI_BUSERR_IRQ, no_action, IRQF_NO_THREAD,
301                         "Bus Error", NULL))       301                         "Bus Error", NULL))
302                 pr_err("Failed to register Bus    302                 pr_err("Failed to register Bus Error interrupt\n");
303                                                   303 
304         /* cascade in cascade. i love Indy ;-)    304         /* cascade in cascade. i love Indy ;-) */
305         if (request_irq(SGI_MAP_0_IRQ, no_acti    305         if (request_irq(SGI_MAP_0_IRQ, no_action, IRQF_NO_THREAD,
306                         "mapable0 cascade", NU    306                         "mapable0 cascade", NULL))
307                 pr_err("Failed to register map    307                 pr_err("Failed to register mapable0 cascade interrupt\n");
308 #ifdef USE_LIO3_IRQ                               308 #ifdef USE_LIO3_IRQ
309         if (request_irq(SGI_MAP_1_IRQ, no_acti    309         if (request_irq(SGI_MAP_1_IRQ, no_action, IRQF_NO_THREAD,
310                         "mapable1 cascade", NU    310                         "mapable1 cascade", NULL))
311                 pr_err("Failed to register map    311                 pr_err("Failed to register mapable1 cascade interrupt\n");
312 #endif                                            312 #endif
313                                                   313 
314 #ifdef CONFIG_EISA                                314 #ifdef CONFIG_EISA
315         if (ip22_is_fullhouse())        /* Onl    315         if (ip22_is_fullhouse())        /* Only Indigo-2 has EISA stuff */
316                 ip22_eisa_init();                 316                 ip22_eisa_init();
317 #endif                                            317 #endif
318 }                                                 318 }
319                                                   319 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php