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