1 /* 2 * This file is subject to the terms and conditions of the GNU General Public 3 * License. See the file "COPYING" in the main directory of this archive 4 * for more details. 5 * 6 * Carsten Langgaard, carstenl@mips.com 7 * Copyright (C) 2000, 2001, 2004 MIPS Technologies, Inc. 8 * Copyright (C) 2001 Ralf Baechle 9 * Copyright (C) 2013 Imagination Technologies Ltd. 10 * 11 * Routines for generic manipulation of the interrupts found on the MIPS 12 * Malta board. The interrupt controller is located in the South Bridge 13 * a PIIX4 device with two internal 82C95 interrupt controllers. 14 */ 15 #include <linux/init.h> 16 #include <linux/irq.h> 17 #include <linux/sched.h> 18 #include <linux/smp.h> 19 #include <linux/interrupt.h> 20 #include <linux/io.h> 21 #include <linux/kernel_stat.h> 22 #include <linux/kernel.h> 23 #include <linux/random.h> 24 25 #include <asm/traps.h> 26 #include <asm/i8259.h> 27 #include <asm/irq_cpu.h> 28 #include <asm/irq_regs.h> 29 #include <asm/mips-cm.h> 30 #include <asm/mips-boards/malta.h> 31 #include <asm/mips-boards/maltaint.h> 32 #include <asm/gt64120.h> 33 #include <asm/mips-boards/generic.h> 34 #include <asm/mips-boards/msc01_pci.h> 35 #include <asm/msc01_ic.h> 36 #include <asm/gic.h> 37 #include <asm/setup.h> 38 #include <asm/rtlx.h> 39 40 static unsigned long _msc01_biu_base; 41 static unsigned int ipi_map[NR_CPUS]; 42 43 static DEFINE_RAW_SPINLOCK(mips_irq_lock); 44 45 static inline int mips_pcibios_iack(void) 46 { 47 int irq; 48 49 /* 50 * Determine highest priority pending interrupt by performing 51 * a PCI Interrupt Acknowledge cycle. 52 */ 53 switch (mips_revision_sconid) { 54 case MIPS_REVISION_SCON_SOCIT: 55 case MIPS_REVISION_SCON_ROCIT: 56 case MIPS_REVISION_SCON_SOCITSC: 57 case MIPS_REVISION_SCON_SOCITSCP: 58 MSC_READ(MSC01_PCI_IACK, irq); 59 irq &= 0xff; 60 break; 61 case MIPS_REVISION_SCON_GT64120: 62 irq = GT_READ(GT_PCI0_IACK_OFS); 63 irq &= 0xff; 64 break; 65 case MIPS_REVISION_SCON_BONITO: 66 /* The following will generate a PCI IACK cycle on the 67 * Bonito controller. It's a little bit kludgy, but it 68 * was the easiest way to implement it in hardware at 69 * the given time. 70 */ 71 BONITO_PCIMAP_CFG = 0x20000; 72 73 /* Flush Bonito register block */ 74 (void) BONITO_PCIMAP_CFG; 75 iob(); /* sync */ 76 77 irq = __raw_readl((u32 *)_pcictrl_bonito_pcicfg); 78 iob(); /* sync */ 79 irq &= 0xff; 80 BONITO_PCIMAP_CFG = 0; 81 break; 82 default: 83 pr_emerg("Unknown system controller.\n"); 84 return -1; 85 } 86 return irq; 87 } 88 89 static inline int get_int(void) 90 { 91 unsigned long flags; 92 int irq; 93 raw_spin_lock_irqsave(&mips_irq_lock, flags); 94 95 irq = mips_pcibios_iack(); 96 97 /* 98 * The only way we can decide if an interrupt is spurious 99 * is by checking the 8259 registers. This needs a spinlock 100 * on an SMP system, so leave it up to the generic code... 101 */ 102 103 raw_spin_unlock_irqrestore(&mips_irq_lock, flags); 104 105 return irq; 106 } 107 108 static void malta_hw0_irqdispatch(void) 109 { 110 int irq; 111 112 irq = get_int(); 113 if (irq < 0) { 114 /* interrupt has already been cleared */ 115 return; 116 } 117 118 do_IRQ(MALTA_INT_BASE + irq); 119 120 #ifdef CONFIG_MIPS_VPE_APSP_API_MT 121 if (aprp_hook) 122 aprp_hook(); 123 #endif 124 } 125 126 static void malta_ipi_irqdispatch(void) 127 { 128 int irq; 129 130 if (gic_compare_int()) 131 do_IRQ(MIPS_GIC_IRQ_BASE); 132 133 irq = gic_get_int(); 134 if (irq < 0) 135 return; /* interrupt has already been cleared */ 136 137 do_IRQ(MIPS_GIC_IRQ_BASE + irq); 138 } 139 140 static void corehi_irqdispatch(void) 141 { 142 unsigned int intedge, intsteer, pcicmd, pcibadaddr; 143 unsigned int pcimstat, intisr, inten, intpol; 144 unsigned int intrcause, datalo, datahi; 145 struct pt_regs *regs = get_irq_regs(); 146 147 pr_emerg("CoreHI interrupt, shouldn't happen, we die here!\n"); 148 pr_emerg("epc : %08lx\nStatus: %08lx\n" 149 "Cause : %08lx\nbadVaddr : %08lx\n", 150 regs->cp0_epc, regs->cp0_status, 151 regs->cp0_cause, regs->cp0_badvaddr); 152 153 /* Read all the registers and then print them as there is a 154 problem with interspersed printk's upsetting the Bonito controller. 155 Do it for the others too. 156 */ 157 158 switch (mips_revision_sconid) { 159 case MIPS_REVISION_SCON_SOCIT: 160 case MIPS_REVISION_SCON_ROCIT: 161 case MIPS_REVISION_SCON_SOCITSC: 162 case MIPS_REVISION_SCON_SOCITSCP: 163 ll_msc_irq(); 164 break; 165 case MIPS_REVISION_SCON_GT64120: 166 intrcause = GT_READ(GT_INTRCAUSE_OFS); 167 datalo = GT_READ(GT_CPUERR_ADDRLO_OFS); 168 datahi = GT_READ(GT_CPUERR_ADDRHI_OFS); 169 pr_emerg("GT_INTRCAUSE = %08x\n", intrcause); 170 pr_emerg("GT_CPUERR_ADDR = %02x%08x\n", 171 datahi, datalo); 172 break; 173 case MIPS_REVISION_SCON_BONITO: 174 pcibadaddr = BONITO_PCIBADADDR; 175 pcimstat = BONITO_PCIMSTAT; 176 intisr = BONITO_INTISR; 177 inten = BONITO_INTEN; 178 intpol = BONITO_INTPOL; 179 intedge = BONITO_INTEDGE; 180 intsteer = BONITO_INTSTEER; 181 pcicmd = BONITO_PCICMD; 182 pr_emerg("BONITO_INTISR = %08x\n", intisr); 183 pr_emerg("BONITO_INTEN = %08x\n", inten); 184 pr_emerg("BONITO_INTPOL = %08x\n", intpol); 185 pr_emerg("BONITO_INTEDGE = %08x\n", intedge); 186 pr_emerg("BONITO_INTSTEER = %08x\n", intsteer); 187 pr_emerg("BONITO_PCICMD = %08x\n", pcicmd); 188 pr_emerg("BONITO_PCIBADADDR = %08x\n", pcibadaddr); 189 pr_emerg("BONITO_PCIMSTAT = %08x\n", pcimstat); 190 break; 191 } 192 193 die("CoreHi interrupt", regs); 194 } 195 196 static inline int clz(unsigned long x) 197 { 198 __asm__( 199 " .set push \n" 200 " .set mips32 \n" 201 " clz %0, %1 \n" 202 " .set pop \n" 203 : "=r" (x) 204 : "r" (x)); 205 206 return x; 207 } 208 209 /* 210 * Version of ffs that only looks at bits 12..15. 211 */ 212 static inline unsigned int irq_ffs(unsigned int pending) 213 { 214 #if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) 215 return -clz(pending) + 31 - CAUSEB_IP; 216 #else 217 unsigned int a0 = 7; 218 unsigned int t0; 219 220 t0 = pending & 0xf000; 221 t0 = t0 < 1; 222 t0 = t0 << 2; 223 a0 = a0 - t0; 224 pending = pending << t0; 225 226 t0 = pending & 0xc000; 227 t0 = t0 < 1; 228 t0 = t0 << 1; 229 a0 = a0 - t0; 230 pending = pending << t0; 231 232 t0 = pending & 0x8000; 233 t0 = t0 < 1; 234 /* t0 = t0 << 2; */ 235 a0 = a0 - t0; 236 /* pending = pending << t0; */ 237 238 return a0; 239 #endif 240 } 241 242 /* 243 * IRQs on the Malta board look basically (barring software IRQs which we 244 * don't use at all and all external interrupt sources are combined together 245 * on hardware interrupt 0 (MIPS IRQ 2)) like: 246 * 247 * MIPS IRQ Source 248 * -------- ------ 249 * 0 Software (ignored) 250 * 1 Software (ignored) 251 * 2 Combined hardware interrupt (hw0) 252 * 3 Hardware (ignored) 253 * 4 Hardware (ignored) 254 * 5 Hardware (ignored) 255 * 6 Hardware (ignored) 256 * 7 R4k timer (what we use) 257 * 258 * We handle the IRQ according to _our_ priority which is: 259 * 260 * Highest ---- R4k Timer 261 * Lowest ---- Combined hardware interrupt 262 * 263 * then we just return, if multiple IRQs are pending then we will just take 264 * another exception, big deal. 265 */ 266 267 asmlinkage void plat_irq_dispatch(void) 268 { 269 unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM; 270 int irq; 271 272 if (unlikely(!pending)) { 273 spurious_interrupt(); 274 return; 275 } 276 277 irq = irq_ffs(pending); 278 279 if (irq == MIPSCPU_INT_I8259A) 280 malta_hw0_irqdispatch(); 281 else if (gic_present && ((1 << irq) & ipi_map[smp_processor_id()])) 282 malta_ipi_irqdispatch(); 283 else 284 do_IRQ(MIPS_CPU_IRQ_BASE + irq); 285 } 286 287 #ifdef CONFIG_MIPS_MT_SMP 288 289 #define MIPS_CPU_IPI_RESCHED_IRQ 0 /* SW int 0 for resched */ 290 #define C_RESCHED C_SW0 291 #define MIPS_CPU_IPI_CALL_IRQ 1 /* SW int 1 for resched */ 292 #define C_CALL C_SW1 293 static int cpu_ipi_resched_irq, cpu_ipi_call_irq; 294 295 static void ipi_resched_dispatch(void) 296 { 297 do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_RESCHED_IRQ); 298 } 299 300 static void ipi_call_dispatch(void) 301 { 302 do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_CALL_IRQ); 303 } 304 305 #endif /* CONFIG_MIPS_MT_SMP */ 306 307 #ifdef CONFIG_MIPS_GIC_IPI 308 309 #define GIC_MIPS_CPU_IPI_RESCHED_IRQ 3 310 #define GIC_MIPS_CPU_IPI_CALL_IRQ 4 311 312 static irqreturn_t ipi_resched_interrupt(int irq, void *dev_id) 313 { 314 #ifdef CONFIG_MIPS_VPE_APSP_API_CMP 315 if (aprp_hook) 316 aprp_hook(); 317 #endif 318 319 scheduler_ipi(); 320 321 return IRQ_HANDLED; 322 } 323 324 static irqreturn_t ipi_call_interrupt(int irq, void *dev_id) 325 { 326 smp_call_function_interrupt(); 327 328 return IRQ_HANDLED; 329 } 330 331 static struct irqaction irq_resched = { 332 .handler = ipi_resched_interrupt, 333 .flags = IRQF_PERCPU, 334 .name = "IPI_resched" 335 }; 336 337 static struct irqaction irq_call = { 338 .handler = ipi_call_interrupt, 339 .flags = IRQF_PERCPU, 340 .name = "IPI_call" 341 }; 342 #endif /* CONFIG_MIPS_GIC_IPI */ 343 344 static int gic_resched_int_base; 345 static int gic_call_int_base; 346 #define GIC_RESCHED_INT(cpu) (gic_resched_int_base+(cpu)) 347 #define GIC_CALL_INT(cpu) (gic_call_int_base+(cpu)) 348 349 unsigned int plat_ipi_call_int_xlate(unsigned int cpu) 350 { 351 return GIC_CALL_INT(cpu); 352 } 353 354 unsigned int plat_ipi_resched_int_xlate(unsigned int cpu) 355 { 356 return GIC_RESCHED_INT(cpu); 357 } 358 359 static struct irqaction i8259irq = { 360 .handler = no_action, 361 .name = "XT-PIC cascade", 362 .flags = IRQF_NO_THREAD, 363 }; 364 365 static struct irqaction corehi_irqaction = { 366 .handler = no_action, 367 .name = "CoreHi", 368 .flags = IRQF_NO_THREAD, 369 }; 370 371 static msc_irqmap_t msc_irqmap[] __initdata = { 372 {MSC01C_INT_TMR, MSC01_IRQ_EDGE, 0}, 373 {MSC01C_INT_PCI, MSC01_IRQ_LEVEL, 0}, 374 }; 375 static int msc_nr_irqs __initdata = ARRAY_SIZE(msc_irqmap); 376 377 static msc_irqmap_t msc_eicirqmap[] __initdata = { 378 {MSC01E_INT_SW0, MSC01_IRQ_LEVEL, 0}, 379 {MSC01E_INT_SW1, MSC01_IRQ_LEVEL, 0}, 380 {MSC01E_INT_I8259A, MSC01_IRQ_LEVEL, 0}, 381 {MSC01E_INT_SMI, MSC01_IRQ_LEVEL, 0}, 382 {MSC01E_INT_COREHI, MSC01_IRQ_LEVEL, 0}, 383 {MSC01E_INT_CORELO, MSC01_IRQ_LEVEL, 0}, 384 {MSC01E_INT_TMR, MSC01_IRQ_EDGE, 0}, 385 {MSC01E_INT_PCI, MSC01_IRQ_LEVEL, 0}, 386 {MSC01E_INT_PERFCTR, MSC01_IRQ_LEVEL, 0}, 387 {MSC01E_INT_CPUCTR, MSC01_IRQ_LEVEL, 0} 388 }; 389 390 static int msc_nr_eicirqs __initdata = ARRAY_SIZE(msc_eicirqmap); 391 392 /* 393 * This GIC specific tabular array defines the association between External 394 * Interrupts and CPUs/Core Interrupts. The nature of the External 395 * Interrupts is also defined here - polarity/trigger. 396 */ 397 398 #define GIC_CPU_NMI GIC_MAP_TO_NMI_MSK 399 #define X GIC_UNUSED 400 401 static struct gic_intr_map gic_intr_map[GIC_NUM_INTRS] = { 402 { X, X, X, X, 0 }, 403 { X, X, X, X, 0 }, 404 { X, X, X, X, 0 }, 405 { 0, GIC_CPU_INT0, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, 406 { 0, GIC_CPU_INT1, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, 407 { 0, GIC_CPU_INT2, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, 408 { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, 409 { 0, GIC_CPU_INT4, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, 410 { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, 411 { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, 412 { X, X, X, X, 0 }, 413 { X, X, X, X, 0 }, 414 { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, 415 { 0, GIC_CPU_NMI, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, 416 { 0, GIC_CPU_NMI, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, 417 { X, X, X, X, 0 }, 418 /* The remainder of this table is initialised by fill_ipi_map */ 419 }; 420 #undef X 421 422 #ifdef CONFIG_MIPS_GIC_IPI 423 static void __init fill_ipi_map1(int baseintr, int cpu, int cpupin) 424 { 425 int intr = baseintr + cpu; 426 gic_intr_map[intr].cpunum = cpu; 427 gic_intr_map[intr].pin = cpupin; 428 gic_intr_map[intr].polarity = GIC_POL_POS; 429 gic_intr_map[intr].trigtype = GIC_TRIG_EDGE; 430 gic_intr_map[intr].flags = GIC_FLAG_IPI; 431 ipi_map[cpu] |= (1 << (cpupin + 2)); 432 } 433 434 static void __init fill_ipi_map(void) 435 { 436 int cpu; 437 438 for (cpu = 0; cpu < nr_cpu_ids; cpu++) { 439 fill_ipi_map1(gic_resched_int_base, cpu, GIC_CPU_INT1); 440 fill_ipi_map1(gic_call_int_base, cpu, GIC_CPU_INT2); 441 } 442 } 443 #endif 444 445 void __init arch_init_ipiirq(int irq, struct irqaction *action) 446 { 447 setup_irq(irq, action); 448 irq_set_handler(irq, handle_percpu_irq); 449 } 450 451 void __init arch_init_irq(void) 452 { 453 init_i8259_irqs(); 454 455 if (!cpu_has_veic) 456 mips_cpu_irq_init(); 457 458 if (mips_cm_present()) { 459 write_gcr_gic_base(GIC_BASE_ADDR | CM_GCR_GIC_BASE_GICEN_MSK); 460 gic_present = 1; 461 } else { 462 if (mips_revision_sconid == MIPS_REVISION_SCON_ROCIT) { 463 _msc01_biu_base = (unsigned long) 464 ioremap_nocache(MSC01_BIU_REG_BASE, 465 MSC01_BIU_ADDRSPACE_SZ); 466 gic_present = (REG(_msc01_biu_base, MSC01_SC_CFG) & 467 MSC01_SC_CFG_GICPRES_MSK) >> 468 MSC01_SC_CFG_GICPRES_SHF; 469 } 470 } 471 if (gic_present) 472 pr_debug("GIC present\n"); 473 474 switch (mips_revision_sconid) { 475 case MIPS_REVISION_SCON_SOCIT: 476 case MIPS_REVISION_SCON_ROCIT: 477 if (cpu_has_veic) 478 init_msc_irqs(MIPS_MSC01_IC_REG_BASE, 479 MSC01E_INT_BASE, msc_eicirqmap, 480 msc_nr_eicirqs); 481 else 482 init_msc_irqs(MIPS_MSC01_IC_REG_BASE, 483 MSC01C_INT_BASE, msc_irqmap, 484 msc_nr_irqs); 485 break; 486 487 case MIPS_REVISION_SCON_SOCITSC: 488 case MIPS_REVISION_SCON_SOCITSCP: 489 if (cpu_has_veic) 490 init_msc_irqs(MIPS_SOCITSC_IC_REG_BASE, 491 MSC01E_INT_BASE, msc_eicirqmap, 492 msc_nr_eicirqs); 493 else 494 init_msc_irqs(MIPS_SOCITSC_IC_REG_BASE, 495 MSC01C_INT_BASE, msc_irqmap, 496 msc_nr_irqs); 497 } 498 499 if (cpu_has_veic) { 500 set_vi_handler(MSC01E_INT_I8259A, malta_hw0_irqdispatch); 501 set_vi_handler(MSC01E_INT_COREHI, corehi_irqdispatch); 502 setup_irq(MSC01E_INT_BASE+MSC01E_INT_I8259A, &i8259irq); 503 setup_irq(MSC01E_INT_BASE+MSC01E_INT_COREHI, &corehi_irqaction); 504 } else if (cpu_has_vint) { 505 set_vi_handler(MIPSCPU_INT_I8259A, malta_hw0_irqdispatch); 506 set_vi_handler(MIPSCPU_INT_COREHI, corehi_irqdispatch); 507 #ifdef CONFIG_MIPS_MT_SMTC 508 setup_irq_smtc(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_I8259A, &i8259irq, 509 (0x100 << MIPSCPU_INT_I8259A)); 510 setup_irq_smtc(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_COREHI, 511 &corehi_irqaction, (0x100 << MIPSCPU_INT_COREHI)); 512 /* 513 * Temporary hack to ensure that the subsidiary device 514 * interrupts coing in via the i8259A, but associated 515 * with low IRQ numbers, will restore the Status.IM 516 * value associated with the i8259A. 517 */ 518 { 519 int i; 520 521 for (i = 0; i < 16; i++) 522 irq_hwmask[i] = (0x100 << MIPSCPU_INT_I8259A); 523 } 524 #else /* Not SMTC */ 525 setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_I8259A, &i8259irq); 526 setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_COREHI, 527 &corehi_irqaction); 528 #endif /* CONFIG_MIPS_MT_SMTC */ 529 } else { 530 setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_I8259A, &i8259irq); 531 setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_COREHI, 532 &corehi_irqaction); 533 } 534 535 if (gic_present) { 536 /* FIXME */ 537 int i; 538 #if defined(CONFIG_MIPS_GIC_IPI) 539 gic_call_int_base = GIC_NUM_INTRS - 540 (NR_CPUS - nr_cpu_ids) * 2 - nr_cpu_ids; 541 gic_resched_int_base = gic_call_int_base - nr_cpu_ids; 542 fill_ipi_map(); 543 #endif 544 gic_init(GIC_BASE_ADDR, GIC_ADDRSPACE_SZ, gic_intr_map, 545 ARRAY_SIZE(gic_intr_map), MIPS_GIC_IRQ_BASE); 546 if (!mips_cm_present()) { 547 /* Enable the GIC */ 548 i = REG(_msc01_biu_base, MSC01_SC_CFG); 549 REG(_msc01_biu_base, MSC01_SC_CFG) = 550 (i | (0x1 << MSC01_SC_CFG_GICENA_SHF)); 551 pr_debug("GIC Enabled\n"); 552 } 553 #if defined(CONFIG_MIPS_GIC_IPI) 554 /* set up ipi interrupts */ 555 if (cpu_has_vint) { 556 set_vi_handler(MIPSCPU_INT_IPI0, malta_ipi_irqdispatch); 557 set_vi_handler(MIPSCPU_INT_IPI1, malta_ipi_irqdispatch); 558 } 559 /* Argh.. this really needs sorting out.. */ 560 pr_info("CPU%d: status register was %08x\n", 561 smp_processor_id(), read_c0_status()); 562 write_c0_status(read_c0_status() | STATUSF_IP3 | STATUSF_IP4); 563 pr_info("CPU%d: status register now %08x\n", 564 smp_processor_id(), read_c0_status()); 565 write_c0_status(0x1100dc00); 566 pr_info("CPU%d: status register frc %08x\n", 567 smp_processor_id(), read_c0_status()); 568 for (i = 0; i < nr_cpu_ids; i++) { 569 arch_init_ipiirq(MIPS_GIC_IRQ_BASE + 570 GIC_RESCHED_INT(i), &irq_resched); 571 arch_init_ipiirq(MIPS_GIC_IRQ_BASE + 572 GIC_CALL_INT(i), &irq_call); 573 } 574 #endif 575 } else { 576 #if defined(CONFIG_MIPS_MT_SMP) 577 /* set up ipi interrupts */ 578 if (cpu_has_veic) { 579 set_vi_handler (MSC01E_INT_SW0, ipi_resched_dispatch); 580 set_vi_handler (MSC01E_INT_SW1, ipi_call_dispatch); 581 cpu_ipi_resched_irq = MSC01E_INT_SW0; 582 cpu_ipi_call_irq = MSC01E_INT_SW1; 583 } else { 584 if (cpu_has_vint) { 585 set_vi_handler (MIPS_CPU_IPI_RESCHED_IRQ, 586 ipi_resched_dispatch); 587 set_vi_handler (MIPS_CPU_IPI_CALL_IRQ, 588 ipi_call_dispatch); 589 } 590 cpu_ipi_resched_irq = MIPS_CPU_IRQ_BASE + 591 MIPS_CPU_IPI_RESCHED_IRQ; 592 cpu_ipi_call_irq = MIPS_CPU_IRQ_BASE + 593 MIPS_CPU_IPI_CALL_IRQ; 594 } 595 arch_init_ipiirq(cpu_ipi_resched_irq, &irq_resched); 596 arch_init_ipiirq(cpu_ipi_call_irq, &irq_call); 597 #endif 598 } 599 } 600 601 void malta_be_init(void) 602 { 603 /* Could change CM error mask register. */ 604 } 605 606 607 static char *tr[8] = { 608 "mem", "gcr", "gic", "mmio", 609 "0x04", "0x05", "0x06", "0x07" 610 }; 611 612 static char *mcmd[32] = { 613 [0x00] = "0x00", 614 [0x01] = "Legacy Write", 615 [0x02] = "Legacy Read", 616 [0x03] = "0x03", 617 [0x04] = "0x04", 618 [0x05] = "0x05", 619 [0x06] = "0x06", 620 [0x07] = "0x07", 621 [0x08] = "Coherent Read Own", 622 [0x09] = "Coherent Read Share", 623 [0x0a] = "Coherent Read Discard", 624 [0x0b] = "Coherent Ready Share Always", 625 [0x0c] = "Coherent Upgrade", 626 [0x0d] = "Coherent Writeback", 627 [0x0e] = "0x0e", 628 [0x0f] = "0x0f", 629 [0x10] = "Coherent Copyback", 630 [0x11] = "Coherent Copyback Invalidate", 631 [0x12] = "Coherent Invalidate", 632 [0x13] = "Coherent Write Invalidate", 633 [0x14] = "Coherent Completion Sync", 634 [0x15] = "0x15", 635 [0x16] = "0x16", 636 [0x17] = "0x17", 637 [0x18] = "0x18", 638 [0x19] = "0x19", 639 [0x1a] = "0x1a", 640 [0x1b] = "0x1b", 641 [0x1c] = "0x1c", 642 [0x1d] = "0x1d", 643 [0x1e] = "0x1e", 644 [0x1f] = "0x1f" 645 }; 646 647 static char *core[8] = { 648 "Invalid/OK", "Invalid/Data", 649 "Shared/OK", "Shared/Data", 650 "Modified/OK", "Modified/Data", 651 "Exclusive/OK", "Exclusive/Data" 652 }; 653 654 static char *causes[32] = { 655 "None", "GC_WR_ERR", "GC_RD_ERR", "COH_WR_ERR", 656 "COH_RD_ERR", "MMIO_WR_ERR", "MMIO_RD_ERR", "0x07", 657 "0x08", "0x09", "0x0a", "0x0b", 658 "0x0c", "0x0d", "0x0e", "0x0f", 659 "0x10", "0x11", "0x12", "0x13", 660 "0x14", "0x15", "0x16", "INTVN_WR_ERR", 661 "INTVN_RD_ERR", "0x19", "0x1a", "0x1b", 662 "0x1c", "0x1d", "0x1e", "0x1f" 663 }; 664 665 int malta_be_handler(struct pt_regs *regs, int is_fixup) 666 { 667 /* This duplicates the handling in do_be which seems wrong */ 668 int retval = is_fixup ? MIPS_BE_FIXUP : MIPS_BE_FATAL; 669 670 if (mips_cm_present()) { 671 unsigned long cm_error = read_gcr_error_cause(); 672 unsigned long cm_addr = read_gcr_error_addr(); 673 unsigned long cm_other = read_gcr_error_mult(); 674 unsigned long cause, ocause; 675 char buf[256]; 676 677 cause = cm_error & CM_GCR_ERROR_CAUSE_ERRTYPE_MSK; 678 if (cause != 0) { 679 cause >>= CM_GCR_ERROR_CAUSE_ERRTYPE_SHF; 680 if (cause < 16) { 681 unsigned long cca_bits = (cm_error >> 15) & 7; 682 unsigned long tr_bits = (cm_error >> 12) & 7; 683 unsigned long cmd_bits = (cm_error >> 7) & 0x1f; 684 unsigned long stag_bits = (cm_error >> 3) & 15; 685 unsigned long sport_bits = (cm_error >> 0) & 7; 686 687 snprintf(buf, sizeof(buf), 688 "CCA=%lu TR=%s MCmd=%s STag=%lu " 689 "SPort=%lu\n", 690 cca_bits, tr[tr_bits], mcmd[cmd_bits], 691 stag_bits, sport_bits); 692 } else { 693 /* glob state & sresp together */ 694 unsigned long c3_bits = (cm_error >> 18) & 7; 695 unsigned long c2_bits = (cm_error >> 15) & 7; 696 unsigned long c1_bits = (cm_error >> 12) & 7; 697 unsigned long c0_bits = (cm_error >> 9) & 7; 698 unsigned long sc_bit = (cm_error >> 8) & 1; 699 unsigned long cmd_bits = (cm_error >> 3) & 0x1f; 700 unsigned long sport_bits = (cm_error >> 0) & 7; 701 snprintf(buf, sizeof(buf), 702 "C3=%s C2=%s C1=%s C0=%s SC=%s " 703 "MCmd=%s SPort=%lu\n", 704 core[c3_bits], core[c2_bits], 705 core[c1_bits], core[c0_bits], 706 sc_bit ? "True" : "False", 707 mcmd[cmd_bits], sport_bits); 708 } 709 710 ocause = (cm_other & CM_GCR_ERROR_MULT_ERR2ND_MSK) >> 711 CM_GCR_ERROR_MULT_ERR2ND_SHF; 712 713 pr_err("CM_ERROR=%08lx %s <%s>\n", cm_error, 714 causes[cause], buf); 715 pr_err("CM_ADDR =%08lx\n", cm_addr); 716 pr_err("CM_OTHER=%08lx %s\n", cm_other, causes[ocause]); 717 718 /* reprime cause register */ 719 write_gcr_error_cause(0); 720 } 721 } 722 723 return retval; 724 } 725 726 void gic_enable_interrupt(int irq_vec) 727 { 728 GIC_SET_INTR_MASK(irq_vec); 729 } 730 731 void gic_disable_interrupt(int irq_vec) 732 { 733 GIC_CLR_INTR_MASK(irq_vec); 734 } 735 736 void gic_irq_ack(struct irq_data *d) 737 { 738 int irq = (d->irq - gic_irq_base); 739 740 GIC_CLR_INTR_MASK(irq); 741 742 if (gic_irq_flags[irq] & GIC_TRIG_EDGE) 743 GICWRITE(GIC_REG(SHARED, GIC_SH_WEDGE), irq); 744 } 745 746 void gic_finish_irq(struct irq_data *d) 747 { 748 /* Enable interrupts. */ 749 GIC_SET_INTR_MASK(d->irq - gic_irq_base); 750 } 751 752 void __init gic_platform_init(int irqs, struct irq_chip *irq_controller) 753 { 754 int i; 755 756 for (i = gic_irq_base; i < (gic_irq_base + irqs); i++) 757 irq_set_chip(i, irq_controller); 758 } 759