Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Carsten Langgaard, carstenl@mips.com |
| 3 | * Copyright (C) 2000, 2001, 2004 MIPS Technologies, Inc. |
| 4 | * Copyright (C) 2001 Ralf Baechle |
| 5 | * |
| 6 | * This program is free software; you can distribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License (Version 2) as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 13 | * for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License along |
| 16 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 17 | * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. |
| 18 | * |
| 19 | * Routines for generic manipulation of the interrupts found on the MIPS |
| 20 | * Malta board. |
| 21 | * The interrupt controller is located in the South Bridge a PIIX4 device |
| 22 | * with two internal 82C95 interrupt controllers. |
| 23 | */ |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/irq.h> |
| 26 | #include <linux/sched.h> |
| 27 | #include <linux/slab.h> |
| 28 | #include <linux/interrupt.h> |
| 29 | #include <linux/kernel_stat.h> |
Ahmed S. Darwish | 25b8ac3 | 2007-02-05 04:42:11 +0200 | [diff] [blame] | 30 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/random.h> |
| 32 | |
| 33 | #include <asm/i8259.h> |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 34 | #include <asm/irq_cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/io.h> |
Ralf Baechle | ba38cdf | 2006-10-15 09:17:43 +0100 | [diff] [blame] | 36 | #include <asm/irq_regs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/mips-boards/malta.h> |
| 38 | #include <asm/mips-boards/maltaint.h> |
| 39 | #include <asm/mips-boards/piix4.h> |
| 40 | #include <asm/gt64120.h> |
| 41 | #include <asm/mips-boards/generic.h> |
| 42 | #include <asm/mips-boards/msc01_pci.h> |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 43 | #include <asm/msc01_ic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | static DEFINE_SPINLOCK(mips_irq_lock); |
| 46 | |
| 47 | static inline int mips_pcibios_iack(void) |
| 48 | { |
| 49 | int irq; |
| 50 | u32 dummy; |
| 51 | |
| 52 | /* |
| 53 | * Determine highest priority pending interrupt by performing |
| 54 | * a PCI Interrupt Acknowledge cycle. |
| 55 | */ |
| 56 | switch(mips_revision_corid) { |
| 57 | case MIPS_REVISION_CORID_CORE_MSC: |
| 58 | case MIPS_REVISION_CORID_CORE_FPGA2: |
Ralf Baechle | 479a0e3 | 2005-08-16 15:44:06 +0000 | [diff] [blame] | 59 | case MIPS_REVISION_CORID_CORE_FPGA3: |
Chris Dearman | 7a83419 | 2006-04-15 00:31:16 +0100 | [diff] [blame] | 60 | case MIPS_REVISION_CORID_CORE_24K: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | case MIPS_REVISION_CORID_CORE_EMUL_MSC: |
| 62 | MSC_READ(MSC01_PCI_IACK, irq); |
| 63 | irq &= 0xff; |
| 64 | break; |
| 65 | case MIPS_REVISION_CORID_QED_RM5261: |
| 66 | case MIPS_REVISION_CORID_CORE_LV: |
| 67 | case MIPS_REVISION_CORID_CORE_FPGA: |
| 68 | case MIPS_REVISION_CORID_CORE_FPGAR2: |
| 69 | irq = GT_READ(GT_PCI0_IACK_OFS); |
| 70 | irq &= 0xff; |
| 71 | break; |
| 72 | case MIPS_REVISION_CORID_BONITO64: |
| 73 | case MIPS_REVISION_CORID_CORE_20K: |
| 74 | case MIPS_REVISION_CORID_CORE_EMUL_BON: |
| 75 | /* The following will generate a PCI IACK cycle on the |
| 76 | * Bonito controller. It's a little bit kludgy, but it |
| 77 | * was the easiest way to implement it in hardware at |
| 78 | * the given time. |
| 79 | */ |
| 80 | BONITO_PCIMAP_CFG = 0x20000; |
| 81 | |
| 82 | /* Flush Bonito register block */ |
| 83 | dummy = BONITO_PCIMAP_CFG; |
| 84 | iob(); /* sync */ |
| 85 | |
Ralf Baechle | f197465 | 2007-04-26 15:46:24 +0100 | [diff] [blame] | 86 | irq = readl((u32 *)_pcictrl_bonito_pcicfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | iob(); /* sync */ |
| 88 | irq &= 0xff; |
| 89 | BONITO_PCIMAP_CFG = 0; |
| 90 | break; |
| 91 | default: |
| 92 | printk("Unknown Core card, don't know the system controller.\n"); |
| 93 | return -1; |
| 94 | } |
| 95 | return irq; |
| 96 | } |
| 97 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 98 | static inline int get_int(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
| 100 | unsigned long flags; |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 101 | int irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | spin_lock_irqsave(&mips_irq_lock, flags); |
| 103 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 104 | irq = mips_pcibios_iack(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | /* |
Ralf Baechle | 479a0e3 | 2005-08-16 15:44:06 +0000 | [diff] [blame] | 107 | * The only way we can decide if an interrupt is spurious |
| 108 | * is by checking the 8259 registers. This needs a spinlock |
| 109 | * on an SMP system, so leave it up to the generic code... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | spin_unlock_irqrestore(&mips_irq_lock, flags); |
| 113 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 114 | return irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 117 | static void malta_hw0_irqdispatch(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { |
| 119 | int irq; |
| 120 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 121 | irq = get_int(); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 122 | if (irq < 0) { |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 123 | return; /* interrupt has already been cleared */ |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 124 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 126 | do_IRQ(MALTA_INT_BASE + irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | } |
| 128 | |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 129 | static void corehi_irqdispatch(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 131 | unsigned int intedge, intsteer, pcicmd, pcibadaddr; |
| 132 | unsigned int pcimstat, intisr, inten, intpol; |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 133 | unsigned int intrcause,datalo,datahi; |
Ralf Baechle | ba38cdf | 2006-10-15 09:17:43 +0100 | [diff] [blame] | 134 | struct pt_regs *regs = get_irq_regs(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
| 136 | printk("CoreHI interrupt, shouldn't happen, so we die here!!!\n"); |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 137 | printk("epc : %08lx\nStatus: %08lx\n" |
| 138 | "Cause : %08lx\nbadVaddr : %08lx\n", |
| 139 | regs->cp0_epc, regs->cp0_status, |
| 140 | regs->cp0_cause, regs->cp0_badvaddr); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 141 | |
| 142 | /* Read all the registers and then print them as there is a |
| 143 | problem with interspersed printk's upsetting the Bonito controller. |
| 144 | Do it for the others too. |
| 145 | */ |
| 146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | switch(mips_revision_corid) { |
| 148 | case MIPS_REVISION_CORID_CORE_MSC: |
| 149 | case MIPS_REVISION_CORID_CORE_FPGA2: |
Ralf Baechle | 479a0e3 | 2005-08-16 15:44:06 +0000 | [diff] [blame] | 150 | case MIPS_REVISION_CORID_CORE_FPGA3: |
Chris Dearman | 7a83419 | 2006-04-15 00:31:16 +0100 | [diff] [blame] | 151 | case MIPS_REVISION_CORID_CORE_24K: |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 152 | case MIPS_REVISION_CORID_CORE_EMUL_MSC: |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 153 | ll_msc_irq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | break; |
| 155 | case MIPS_REVISION_CORID_QED_RM5261: |
| 156 | case MIPS_REVISION_CORID_CORE_LV: |
| 157 | case MIPS_REVISION_CORID_CORE_FPGA: |
| 158 | case MIPS_REVISION_CORID_CORE_FPGAR2: |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 159 | intrcause = GT_READ(GT_INTRCAUSE_OFS); |
| 160 | datalo = GT_READ(GT_CPUERR_ADDRLO_OFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | datahi = GT_READ(GT_CPUERR_ADDRHI_OFS); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 162 | printk("GT_INTRCAUSE = %08x\n", intrcause); |
| 163 | printk("GT_CPUERR_ADDR = %02x%08x\n", datahi, datalo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | break; |
| 165 | case MIPS_REVISION_CORID_BONITO64: |
| 166 | case MIPS_REVISION_CORID_CORE_20K: |
| 167 | case MIPS_REVISION_CORID_CORE_EMUL_BON: |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 168 | pcibadaddr = BONITO_PCIBADADDR; |
| 169 | pcimstat = BONITO_PCIMSTAT; |
| 170 | intisr = BONITO_INTISR; |
| 171 | inten = BONITO_INTEN; |
| 172 | intpol = BONITO_INTPOL; |
| 173 | intedge = BONITO_INTEDGE; |
| 174 | intsteer = BONITO_INTSTEER; |
| 175 | pcicmd = BONITO_PCICMD; |
| 176 | printk("BONITO_INTISR = %08x\n", intisr); |
| 177 | printk("BONITO_INTEN = %08x\n", inten); |
| 178 | printk("BONITO_INTPOL = %08x\n", intpol); |
| 179 | printk("BONITO_INTEDGE = %08x\n", intedge); |
| 180 | printk("BONITO_INTSTEER = %08x\n", intsteer); |
| 181 | printk("BONITO_PCICMD = %08x\n", pcicmd); |
| 182 | printk("BONITO_PCIBADADDR = %08x\n", pcibadaddr); |
| 183 | printk("BONITO_PCIMSTAT = %08x\n", pcimstat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | break; |
| 185 | } |
| 186 | |
| 187 | /* We die here*/ |
| 188 | die("CoreHi interrupt", regs); |
| 189 | } |
| 190 | |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 191 | static inline int clz(unsigned long x) |
| 192 | { |
| 193 | __asm__ ( |
| 194 | " .set push \n" |
| 195 | " .set mips32 \n" |
| 196 | " clz %0, %1 \n" |
| 197 | " .set pop \n" |
| 198 | : "=r" (x) |
| 199 | : "r" (x)); |
| 200 | |
| 201 | return x; |
| 202 | } |
| 203 | |
| 204 | /* |
| 205 | * Version of ffs that only looks at bits 12..15. |
| 206 | */ |
| 207 | static inline unsigned int irq_ffs(unsigned int pending) |
| 208 | { |
| 209 | #if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) |
| 210 | return -clz(pending) + 31 - CAUSEB_IP; |
| 211 | #else |
| 212 | unsigned int a0 = 7; |
| 213 | unsigned int t0; |
| 214 | |
Ralf Baechle | 0118c3c | 2006-06-05 11:54:41 +0100 | [diff] [blame] | 215 | t0 = pending & 0xf000; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 216 | t0 = t0 < 1; |
| 217 | t0 = t0 << 2; |
| 218 | a0 = a0 - t0; |
Ralf Baechle | 0118c3c | 2006-06-05 11:54:41 +0100 | [diff] [blame] | 219 | pending = pending << t0; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 220 | |
Ralf Baechle | 0118c3c | 2006-06-05 11:54:41 +0100 | [diff] [blame] | 221 | t0 = pending & 0xc000; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 222 | t0 = t0 < 1; |
| 223 | t0 = t0 << 1; |
| 224 | a0 = a0 - t0; |
Ralf Baechle | 0118c3c | 2006-06-05 11:54:41 +0100 | [diff] [blame] | 225 | pending = pending << t0; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 226 | |
Ralf Baechle | 0118c3c | 2006-06-05 11:54:41 +0100 | [diff] [blame] | 227 | t0 = pending & 0x8000; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 228 | t0 = t0 < 1; |
| 229 | //t0 = t0 << 2; |
| 230 | a0 = a0 - t0; |
Ralf Baechle | 0118c3c | 2006-06-05 11:54:41 +0100 | [diff] [blame] | 231 | //pending = pending << t0; |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 232 | |
| 233 | return a0; |
| 234 | #endif |
| 235 | } |
| 236 | |
| 237 | /* |
| 238 | * IRQs on the Malta board look basically (barring software IRQs which we |
| 239 | * don't use at all and all external interrupt sources are combined together |
| 240 | * on hardware interrupt 0 (MIPS IRQ 2)) like: |
| 241 | * |
| 242 | * MIPS IRQ Source |
| 243 | * -------- ------ |
| 244 | * 0 Software (ignored) |
| 245 | * 1 Software (ignored) |
| 246 | * 2 Combined hardware interrupt (hw0) |
| 247 | * 3 Hardware (ignored) |
| 248 | * 4 Hardware (ignored) |
| 249 | * 5 Hardware (ignored) |
| 250 | * 6 Hardware (ignored) |
| 251 | * 7 R4k timer (what we use) |
| 252 | * |
| 253 | * We handle the IRQ according to _our_ priority which is: |
| 254 | * |
| 255 | * Highest ---- R4k Timer |
| 256 | * Lowest ---- Combined hardware interrupt |
| 257 | * |
| 258 | * then we just return, if multiple IRQs are pending then we will just take |
| 259 | * another exception, big deal. |
| 260 | */ |
| 261 | |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 262 | asmlinkage void plat_irq_dispatch(void) |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 263 | { |
| 264 | unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM; |
| 265 | int irq; |
| 266 | |
| 267 | irq = irq_ffs(pending); |
| 268 | |
| 269 | if (irq == MIPSCPU_INT_I8259A) |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 270 | malta_hw0_irqdispatch(); |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 271 | else if (irq > 0) |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 272 | do_IRQ(MIPSCPU_INT_BASE + irq); |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 273 | else |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 274 | spurious_interrupt(); |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 275 | } |
| 276 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 277 | static struct irqaction i8259irq = { |
| 278 | .handler = no_action, |
| 279 | .name = "XT-PIC cascade" |
| 280 | }; |
| 281 | |
| 282 | static struct irqaction corehi_irqaction = { |
| 283 | .handler = no_action, |
| 284 | .name = "CoreHi" |
| 285 | }; |
| 286 | |
| 287 | msc_irqmap_t __initdata msc_irqmap[] = { |
| 288 | {MSC01C_INT_TMR, MSC01_IRQ_EDGE, 0}, |
| 289 | {MSC01C_INT_PCI, MSC01_IRQ_LEVEL, 0}, |
| 290 | }; |
Ahmed S. Darwish | 25b8ac3 | 2007-02-05 04:42:11 +0200 | [diff] [blame] | 291 | int __initdata msc_nr_irqs = ARRAY_SIZE(msc_irqmap); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 292 | |
| 293 | msc_irqmap_t __initdata msc_eicirqmap[] = { |
| 294 | {MSC01E_INT_SW0, MSC01_IRQ_LEVEL, 0}, |
| 295 | {MSC01E_INT_SW1, MSC01_IRQ_LEVEL, 0}, |
| 296 | {MSC01E_INT_I8259A, MSC01_IRQ_LEVEL, 0}, |
| 297 | {MSC01E_INT_SMI, MSC01_IRQ_LEVEL, 0}, |
| 298 | {MSC01E_INT_COREHI, MSC01_IRQ_LEVEL, 0}, |
| 299 | {MSC01E_INT_CORELO, MSC01_IRQ_LEVEL, 0}, |
| 300 | {MSC01E_INT_TMR, MSC01_IRQ_EDGE, 0}, |
| 301 | {MSC01E_INT_PCI, MSC01_IRQ_LEVEL, 0}, |
| 302 | {MSC01E_INT_PERFCTR, MSC01_IRQ_LEVEL, 0}, |
| 303 | {MSC01E_INT_CPUCTR, MSC01_IRQ_LEVEL, 0} |
| 304 | }; |
Ahmed S. Darwish | 25b8ac3 | 2007-02-05 04:42:11 +0200 | [diff] [blame] | 305 | int __initdata msc_nr_eicirqs = ARRAY_SIZE(msc_eicirqmap); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | void __init arch_init_irq(void) |
| 308 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | init_i8259_irqs(); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 310 | |
| 311 | if (!cpu_has_veic) |
Atsushi Nemoto | 97dcb82 | 2007-01-08 02:14:29 +0900 | [diff] [blame] | 312 | mips_cpu_irq_init(); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 313 | |
Chris Dearman | d725cf3 | 2007-05-08 14:05:39 +0100 | [diff] [blame^] | 314 | switch(mips_revision_sconid) { |
| 315 | case MIPS_REVISION_SCON_SOCIT: |
| 316 | case MIPS_REVISION_SCON_ROCIT: |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 317 | if (cpu_has_veic) |
Chris Dearman | d725cf3 | 2007-05-08 14:05:39 +0100 | [diff] [blame^] | 318 | init_msc_irqs (MIPS_MSC01_IC_REG_BASE, MSC01E_INT_BASE, msc_eicirqmap, msc_nr_eicirqs); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 319 | else |
Chris Dearman | d725cf3 | 2007-05-08 14:05:39 +0100 | [diff] [blame^] | 320 | init_msc_irqs (MIPS_MSC01_IC_REG_BASE, MSC01C_INT_BASE, msc_irqmap, msc_nr_irqs); |
| 321 | break; |
| 322 | |
| 323 | case MIPS_REVISION_SCON_SOCITSC: |
| 324 | case MIPS_REVISION_SCON_SOCITSCP: |
| 325 | if (cpu_has_veic) |
| 326 | init_msc_irqs (MIPS_SOCITSC_IC_REG_BASE, MSC01E_INT_BASE, msc_eicirqmap, msc_nr_eicirqs); |
| 327 | else |
| 328 | init_msc_irqs (MIPS_SOCITSC_IC_REG_BASE, MSC01C_INT_BASE, msc_irqmap, msc_nr_irqs); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | if (cpu_has_veic) { |
| 332 | set_vi_handler (MSC01E_INT_I8259A, malta_hw0_irqdispatch); |
| 333 | set_vi_handler (MSC01E_INT_COREHI, corehi_irqdispatch); |
| 334 | setup_irq (MSC01E_INT_BASE+MSC01E_INT_I8259A, &i8259irq); |
| 335 | setup_irq (MSC01E_INT_BASE+MSC01E_INT_COREHI, &corehi_irqaction); |
| 336 | } |
| 337 | else if (cpu_has_vint) { |
| 338 | set_vi_handler (MIPSCPU_INT_I8259A, malta_hw0_irqdispatch); |
| 339 | set_vi_handler (MIPSCPU_INT_COREHI, corehi_irqdispatch); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 340 | #ifdef CONFIG_MIPS_MT_SMTC |
| 341 | setup_irq_smtc (MIPSCPU_INT_BASE+MIPSCPU_INT_I8259A, &i8259irq, |
| 342 | (0x100 << MIPSCPU_INT_I8259A)); |
| 343 | setup_irq_smtc (MIPSCPU_INT_BASE+MIPSCPU_INT_COREHI, |
| 344 | &corehi_irqaction, (0x100 << MIPSCPU_INT_COREHI)); |
| 345 | #else /* Not SMTC */ |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 346 | setup_irq (MIPSCPU_INT_BASE+MIPSCPU_INT_I8259A, &i8259irq); |
| 347 | setup_irq (MIPSCPU_INT_BASE+MIPSCPU_INT_COREHI, &corehi_irqaction); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 348 | #endif /* CONFIG_MIPS_MT_SMTC */ |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 349 | } |
| 350 | else { |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 351 | setup_irq (MIPSCPU_INT_BASE+MIPSCPU_INT_I8259A, &i8259irq); |
| 352 | setup_irq (MIPSCPU_INT_BASE+MIPSCPU_INT_COREHI, &corehi_irqaction); |
| 353 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | } |