blob: 3b3bc1d9ebf91b0ec6273054f08641e3c7d69ef3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Steven J. Hill5792bf62014-01-01 16:35:32 +01002 * 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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Carsten Langgaard, carstenl@mips.com
7 * Copyright (C) 2000, 2001, 2004 MIPS Technologies, Inc.
8 * Copyright (C) 2001 Ralf Baechle
Deng-Cheng Zhu13361132013-10-30 15:52:10 -05009 * Copyright (C) 2013 Imagination Technologies Ltd.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Routines for generic manipulation of the interrupts found on the MIPS
Steven J. Hill5792bf62014-01-01 16:35:32 +010012 * Malta board. The interrupt controller is located in the South Bridge
13 * a PIIX4 device with two internal 82C95 interrupt controllers.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15#include <linux/init.h>
16#include <linux/irq.h>
17#include <linux/sched.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010018#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/interrupt.h>
Dmitri Vorobiev54bf0382008-01-24 19:52:49 +030020#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/kernel_stat.h>
Ahmed S. Darwish25b8ac32007-02-05 04:42:11 +020022#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/random.h>
24
Ralf Baechle39b8d522008-04-28 17:14:26 +010025#include <asm/traps.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/i8259.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000027#include <asm/irq_cpu.h>
Ralf Baechleba38cdf2006-10-15 09:17:43 +010028#include <asm/irq_regs.h>
Paul Burton237036d2014-01-15 10:31:54 +000029#include <asm/mips-cm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/mips-boards/malta.h>
31#include <asm/mips-boards/maltaint.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/gt64120.h>
33#include <asm/mips-boards/generic.h>
34#include <asm/mips-boards/msc01_pci.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000035#include <asm/msc01_ic.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010036#include <asm/gic.h>
David Howellsb81947c2012-03-28 18:30:02 +010037#include <asm/setup.h>
Deng-Cheng Zhu13361132013-10-30 15:52:10 -050038#include <asm/rtlx.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010039
Ralf Baechle39b8d522008-04-28 17:14:26 +010040static unsigned long _msc01_biu_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Ralf Baechlea963dc72010-02-27 12:53:32 +010042static DEFINE_RAW_SPINLOCK(mips_irq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44static inline int mips_pcibios_iack(void)
45{
46 int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48 /*
49 * Determine highest priority pending interrupt by performing
50 * a PCI Interrupt Acknowledge cycle.
51 */
Chris Dearmanb72c0522007-04-27 15:58:41 +010052 switch (mips_revision_sconid) {
53 case MIPS_REVISION_SCON_SOCIT:
54 case MIPS_REVISION_SCON_ROCIT:
55 case MIPS_REVISION_SCON_SOCITSC:
56 case MIPS_REVISION_SCON_SOCITSCP:
Dmitri Vorobievaf825582008-01-24 19:52:45 +030057 MSC_READ(MSC01_PCI_IACK, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 irq &= 0xff;
59 break;
Chris Dearmanb72c0522007-04-27 15:58:41 +010060 case MIPS_REVISION_SCON_GT64120:
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 irq = GT_READ(GT_PCI0_IACK_OFS);
62 irq &= 0xff;
63 break;
Chris Dearmanb72c0522007-04-27 15:58:41 +010064 case MIPS_REVISION_SCON_BONITO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 /* The following will generate a PCI IACK cycle on the
66 * Bonito controller. It's a little bit kludgy, but it
67 * was the easiest way to implement it in hardware at
68 * the given time.
69 */
70 BONITO_PCIMAP_CFG = 0x20000;
71
72 /* Flush Bonito register block */
Ralf Baechle6be63bb2011-03-29 11:48:22 +020073 (void) BONITO_PCIMAP_CFG;
Ralf Baechle70342282013-01-22 12:59:30 +010074 iob(); /* sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Chris Dearmanaccfd352009-07-10 01:53:54 -070076 irq = __raw_readl((u32 *)_pcictrl_bonito_pcicfg);
Ralf Baechle70342282013-01-22 12:59:30 +010077 iob(); /* sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 irq &= 0xff;
79 BONITO_PCIMAP_CFG = 0;
80 break;
81 default:
Steven J. Hill5792bf62014-01-01 16:35:32 +010082 pr_emerg("Unknown system controller.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return -1;
84 }
85 return irq;
86}
87
Ralf Baechlee01402b2005-07-14 15:57:16 +000088static inline int get_int(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 unsigned long flags;
Ralf Baechlee01402b2005-07-14 15:57:16 +000091 int irq;
Ralf Baechlea963dc72010-02-27 12:53:32 +010092 raw_spin_lock_irqsave(&mips_irq_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Ralf Baechlee01402b2005-07-14 15:57:16 +000094 irq = mips_pcibios_iack();
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 /*
Ralf Baechle479a0e32005-08-16 15:44:06 +000097 * The only way we can decide if an interrupt is spurious
98 * is by checking the 8259 registers. This needs a spinlock
99 * on an SMP system, so leave it up to the generic code...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Ralf Baechlea963dc72010-02-27 12:53:32 +0100102 raw_spin_unlock_irqrestore(&mips_irq_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Ralf Baechlee01402b2005-07-14 15:57:16 +0000104 return irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Ralf Baechle937a8012006-10-07 19:44:33 +0100107static void malta_hw0_irqdispatch(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 int irq;
110
Ralf Baechlee01402b2005-07-14 15:57:16 +0000111 irq = get_int();
Ralf Baechle41c594a2006-04-05 09:45:45 +0100112 if (irq < 0) {
Dmitri Vorobievcd80d542008-01-24 19:52:54 +0300113 /* interrupt has already been cleared */
114 return;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Ralf Baechle937a8012006-10-07 19:44:33 +0100117 do_IRQ(MALTA_INT_BASE + irq);
Deng-Cheng Zhu13361132013-10-30 15:52:10 -0500118
Deng-Cheng Zhu9c1f6e02014-02-28 10:23:01 -0800119#ifdef CONFIG_MIPS_VPE_APSP_API_MT
Deng-Cheng Zhu13361132013-10-30 15:52:10 -0500120 if (aprp_hook)
121 aprp_hook();
122#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Andrew Bresticker18743d22014-09-18 14:47:24 -0700125static irqreturn_t i8259_handler(int irq, void *dev_id)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100126{
Andrew Bresticker18743d22014-09-18 14:47:24 -0700127 malta_hw0_irqdispatch();
128 return IRQ_HANDLED;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100129}
130
Ralf Baechle937a8012006-10-07 19:44:33 +0100131static void corehi_irqdispatch(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Ralf Baechle937a8012006-10-07 19:44:33 +0100133 unsigned int intedge, intsteer, pcicmd, pcibadaddr;
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300134 unsigned int pcimstat, intisr, inten, intpol;
Ralf Baechle21a151d2007-10-11 23:46:15 +0100135 unsigned int intrcause, datalo, datahi;
Ralf Baechleba38cdf2006-10-15 09:17:43 +0100136 struct pt_regs *regs = get_irq_regs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Steven J. Hill5792bf62014-01-01 16:35:32 +0100138 pr_emerg("CoreHI interrupt, shouldn't happen, we die here!\n");
139 pr_emerg("epc : %08lx\nStatus: %08lx\n"
140 "Cause : %08lx\nbadVaddr : %08lx\n",
141 regs->cp0_epc, regs->cp0_status,
142 regs->cp0_cause, regs->cp0_badvaddr);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000143
144 /* Read all the registers and then print them as there is a
145 problem with interspersed printk's upsetting the Bonito controller.
146 Do it for the others too.
147 */
148
Chris Dearmanb72c0522007-04-27 15:58:41 +0100149 switch (mips_revision_sconid) {
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300150 case MIPS_REVISION_SCON_SOCIT:
Chris Dearmanb72c0522007-04-27 15:58:41 +0100151 case MIPS_REVISION_SCON_ROCIT:
152 case MIPS_REVISION_SCON_SOCITSC:
153 case MIPS_REVISION_SCON_SOCITSCP:
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300154 ll_msc_irq();
155 break;
156 case MIPS_REVISION_SCON_GT64120:
157 intrcause = GT_READ(GT_INTRCAUSE_OFS);
158 datalo = GT_READ(GT_CPUERR_ADDRLO_OFS);
159 datahi = GT_READ(GT_CPUERR_ADDRHI_OFS);
Steven J. Hill5792bf62014-01-01 16:35:32 +0100160 pr_emerg("GT_INTRCAUSE = %08x\n", intrcause);
161 pr_emerg("GT_CPUERR_ADDR = %02x%08x\n",
Dmitri Vorobiev8216d342008-01-24 19:52:42 +0300162 datahi, datalo);
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300163 break;
164 case MIPS_REVISION_SCON_BONITO:
165 pcibadaddr = BONITO_PCIBADADDR;
166 pcimstat = BONITO_PCIMSTAT;
167 intisr = BONITO_INTISR;
168 inten = BONITO_INTEN;
169 intpol = BONITO_INTPOL;
170 intedge = BONITO_INTEDGE;
171 intsteer = BONITO_INTSTEER;
172 pcicmd = BONITO_PCICMD;
Steven J. Hill5792bf62014-01-01 16:35:32 +0100173 pr_emerg("BONITO_INTISR = %08x\n", intisr);
174 pr_emerg("BONITO_INTEN = %08x\n", inten);
175 pr_emerg("BONITO_INTPOL = %08x\n", intpol);
176 pr_emerg("BONITO_INTEDGE = %08x\n", intedge);
177 pr_emerg("BONITO_INTSTEER = %08x\n", intsteer);
178 pr_emerg("BONITO_PCICMD = %08x\n", pcicmd);
179 pr_emerg("BONITO_PCIBADADDR = %08x\n", pcibadaddr);
180 pr_emerg("BONITO_PCIMSTAT = %08x\n", pcimstat);
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300181 break;
182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300184 die("CoreHi interrupt", regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Andrew Bresticker18743d22014-09-18 14:47:24 -0700187static irqreturn_t corehi_handler(int irq, void *dev_id)
188{
189 corehi_irqdispatch();
190 return IRQ_HANDLED;
191}
192
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100193static inline int clz(unsigned long x)
194{
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100195 __asm__(
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100196 " .set push \n"
197 " .set mips32 \n"
198 " clz %0, %1 \n"
199 " .set pop \n"
200 : "=r" (x)
201 : "r" (x));
202
203 return x;
204}
205
206/*
207 * Version of ffs that only looks at bits 12..15.
208 */
209static inline unsigned int irq_ffs(unsigned int pending)
210{
211#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
212 return -clz(pending) + 31 - CAUSEB_IP;
213#else
214 unsigned int a0 = 7;
215 unsigned int t0;
216
Ralf Baechle0118c3c2006-06-05 11:54:41 +0100217 t0 = pending & 0xf000;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100218 t0 = t0 < 1;
219 t0 = t0 << 2;
220 a0 = a0 - t0;
Ralf Baechle0118c3c2006-06-05 11:54:41 +0100221 pending = pending << t0;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100222
Ralf Baechle0118c3c2006-06-05 11:54:41 +0100223 t0 = pending & 0xc000;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100224 t0 = t0 < 1;
225 t0 = t0 << 1;
226 a0 = a0 - t0;
Ralf Baechle0118c3c2006-06-05 11:54:41 +0100227 pending = pending << t0;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100228
Ralf Baechle0118c3c2006-06-05 11:54:41 +0100229 t0 = pending & 0x8000;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100230 t0 = t0 < 1;
Dmitri Vorobievae9cef02008-01-24 19:52:52 +0300231 /* t0 = t0 << 2; */
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100232 a0 = a0 - t0;
Dmitri Vorobievae9cef02008-01-24 19:52:52 +0300233 /* pending = pending << t0; */
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100234
235 return a0;
236#endif
237}
238
239/*
240 * IRQs on the Malta board look basically (barring software IRQs which we
241 * don't use at all and all external interrupt sources are combined together
242 * on hardware interrupt 0 (MIPS IRQ 2)) like:
243 *
244 * MIPS IRQ Source
Ralf Baechle70342282013-01-22 12:59:30 +0100245 * -------- ------
246 * 0 Software (ignored)
247 * 1 Software (ignored)
248 * 2 Combined hardware interrupt (hw0)
249 * 3 Hardware (ignored)
250 * 4 Hardware (ignored)
251 * 5 Hardware (ignored)
252 * 6 Hardware (ignored)
253 * 7 R4k timer (what we use)
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100254 *
255 * We handle the IRQ according to _our_ priority which is:
256 *
Ralf Baechle70342282013-01-22 12:59:30 +0100257 * Highest ---- R4k Timer
258 * Lowest ---- Combined hardware interrupt
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100259 *
260 * then we just return, if multiple IRQs are pending then we will just take
261 * another exception, big deal.
262 */
263
Ralf Baechle937a8012006-10-07 19:44:33 +0100264asmlinkage void plat_irq_dispatch(void)
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100265{
266 unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM;
267 int irq;
268
Ralf Baechlee376fdf2012-09-17 01:23:21 +0200269 if (unlikely(!pending)) {
270 spurious_interrupt();
271 return;
272 }
273
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100274 irq = irq_ffs(pending);
275
Andrew Bresticker18743d22014-09-18 14:47:24 -0700276 /* HACK: GIC doesn't properly dispatch local interrupts yet */
277 if (gic_present && irq == MIPSCPU_INT_GIC && gic_compare_int())
278 do_IRQ(MIPS_GIC_IRQ_BASE);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100279 else
Ralf Baechlee376fdf2012-09-17 01:23:21 +0200280 do_IRQ(MIPS_CPU_IRQ_BASE + irq);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100281}
282
Ralf Baechle39b8d522008-04-28 17:14:26 +0100283#ifdef CONFIG_MIPS_MT_SMP
284
Ralf Baechle39b8d522008-04-28 17:14:26 +0100285#define MIPS_CPU_IPI_RESCHED_IRQ 0 /* SW int 0 for resched */
286#define C_RESCHED C_SW0
287#define MIPS_CPU_IPI_CALL_IRQ 1 /* SW int 1 for resched */
288#define C_CALL C_SW1
289static int cpu_ipi_resched_irq, cpu_ipi_call_irq;
290
291static void ipi_resched_dispatch(void)
292{
293 do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_RESCHED_IRQ);
294}
295
296static void ipi_call_dispatch(void)
297{
298 do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_CALL_IRQ);
299}
300
301static irqreturn_t ipi_resched_interrupt(int irq, void *dev_id)
302{
Deng-Cheng Zhu9c1f6e02014-02-28 10:23:01 -0800303#ifdef CONFIG_MIPS_VPE_APSP_API_CMP
Deng-Cheng Zhu13361132013-10-30 15:52:10 -0500304 if (aprp_hook)
305 aprp_hook();
306#endif
307
Peter Zijlstra184748c2011-04-05 17:23:39 +0200308 scheduler_ipi();
309
Ralf Baechle39b8d522008-04-28 17:14:26 +0100310 return IRQ_HANDLED;
311}
312
313static irqreturn_t ipi_call_interrupt(int irq, void *dev_id)
314{
315 smp_call_function_interrupt();
316
317 return IRQ_HANDLED;
318}
319
320static struct irqaction irq_resched = {
321 .handler = ipi_resched_interrupt,
Yong Zhang8b5690f2011-11-22 14:38:03 +0000322 .flags = IRQF_PERCPU,
Ralf Baechle39b8d522008-04-28 17:14:26 +0100323 .name = "IPI_resched"
324};
325
326static struct irqaction irq_call = {
327 .handler = ipi_call_interrupt,
Yong Zhang8b5690f2011-11-22 14:38:03 +0000328 .flags = IRQF_PERCPU,
Ralf Baechle39b8d522008-04-28 17:14:26 +0100329 .name = "IPI_call"
330};
Andrew Bresticker18743d22014-09-18 14:47:24 -0700331#endif /* CONFIG_MIPS_MT_SMP */
Ralf Baechle39b8d522008-04-28 17:14:26 +0100332
Ralf Baechlee01402b2005-07-14 15:57:16 +0000333static struct irqaction i8259irq = {
Andrew Bresticker18743d22014-09-18 14:47:24 -0700334 .handler = i8259_handler,
Wu Zhangjin5a4a4ad2011-07-23 12:41:24 +0000335 .name = "XT-PIC cascade",
336 .flags = IRQF_NO_THREAD,
Ralf Baechlee01402b2005-07-14 15:57:16 +0000337};
338
339static struct irqaction corehi_irqaction = {
Andrew Bresticker18743d22014-09-18 14:47:24 -0700340 .handler = corehi_handler,
Wu Zhangjin5a4a4ad2011-07-23 12:41:24 +0000341 .name = "CoreHi",
342 .flags = IRQF_NO_THREAD,
Ralf Baechlee01402b2005-07-14 15:57:16 +0000343};
344
Steven J. Hill5792bf62014-01-01 16:35:32 +0100345static msc_irqmap_t msc_irqmap[] __initdata = {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000346 {MSC01C_INT_TMR, MSC01_IRQ_EDGE, 0},
347 {MSC01C_INT_PCI, MSC01_IRQ_LEVEL, 0},
348};
Steven J. Hill5792bf62014-01-01 16:35:32 +0100349static int msc_nr_irqs __initdata = ARRAY_SIZE(msc_irqmap);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000350
Steven J. Hill5792bf62014-01-01 16:35:32 +0100351static msc_irqmap_t msc_eicirqmap[] __initdata = {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000352 {MSC01E_INT_SW0, MSC01_IRQ_LEVEL, 0},
353 {MSC01E_INT_SW1, MSC01_IRQ_LEVEL, 0},
354 {MSC01E_INT_I8259A, MSC01_IRQ_LEVEL, 0},
355 {MSC01E_INT_SMI, MSC01_IRQ_LEVEL, 0},
356 {MSC01E_INT_COREHI, MSC01_IRQ_LEVEL, 0},
357 {MSC01E_INT_CORELO, MSC01_IRQ_LEVEL, 0},
358 {MSC01E_INT_TMR, MSC01_IRQ_EDGE, 0},
359 {MSC01E_INT_PCI, MSC01_IRQ_LEVEL, 0},
360 {MSC01E_INT_PERFCTR, MSC01_IRQ_LEVEL, 0},
361 {MSC01E_INT_CPUCTR, MSC01_IRQ_LEVEL, 0}
362};
Ralf Baechle39b8d522008-04-28 17:14:26 +0100363
Steven J. Hill5792bf62014-01-01 16:35:32 +0100364static int msc_nr_eicirqs __initdata = ARRAY_SIZE(msc_eicirqmap);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000365
Chris Dearman7098f742009-07-10 01:54:09 -0700366void __init arch_init_ipiirq(int irq, struct irqaction *action)
367{
368 setup_irq(irq, action);
Thomas Gleixnere4ec7982011-03-27 15:19:28 +0200369 irq_set_handler(irq, handle_percpu_irq);
Chris Dearman7098f742009-07-10 01:54:09 -0700370}
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372void __init arch_init_irq(void)
373{
Andrew Bresticker18743d22014-09-18 14:47:24 -0700374 int corehi_irq, i8259_irq;
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 init_i8259_irqs();
Ralf Baechlee01402b2005-07-14 15:57:16 +0000377
378 if (!cpu_has_veic)
Atsushi Nemoto97dcb822007-01-08 02:14:29 +0900379 mips_cpu_irq_init();
Ralf Baechlee01402b2005-07-14 15:57:16 +0000380
Paul Burton237036d2014-01-15 10:31:54 +0000381 if (mips_cm_present()) {
382 write_gcr_gic_base(GIC_BASE_ADDR | CM_GCR_GIC_BASE_GICEN_MSK);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100383 gic_present = 1;
384 } else {
Jaidev Patwardhan05cf2072009-07-10 01:54:25 -0700385 if (mips_revision_sconid == MIPS_REVISION_SCON_ROCIT) {
386 _msc01_biu_base = (unsigned long)
387 ioremap_nocache(MSC01_BIU_REG_BASE,
388 MSC01_BIU_ADDRSPACE_SZ);
389 gic_present = (REG(_msc01_biu_base, MSC01_SC_CFG) &
390 MSC01_SC_CFG_GICPRES_MSK) >>
391 MSC01_SC_CFG_GICPRES_SHF;
392 }
Ralf Baechle39b8d522008-04-28 17:14:26 +0100393 }
394 if (gic_present)
Chris Dearman7098f742009-07-10 01:54:09 -0700395 pr_debug("GIC present\n");
Ralf Baechle39b8d522008-04-28 17:14:26 +0100396
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300397 switch (mips_revision_sconid) {
398 case MIPS_REVISION_SCON_SOCIT:
399 case MIPS_REVISION_SCON_ROCIT:
Ralf Baechlee01402b2005-07-14 15:57:16 +0000400 if (cpu_has_veic)
Dmitri Vorobievf8071492008-01-24 19:52:47 +0300401 init_msc_irqs(MIPS_MSC01_IC_REG_BASE,
402 MSC01E_INT_BASE, msc_eicirqmap,
403 msc_nr_eicirqs);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000404 else
Dmitri Vorobievf8071492008-01-24 19:52:47 +0300405 init_msc_irqs(MIPS_MSC01_IC_REG_BASE,
406 MSC01C_INT_BASE, msc_irqmap,
407 msc_nr_irqs);
Chris Dearmand725cf32007-05-08 14:05:39 +0100408 break;
409
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300410 case MIPS_REVISION_SCON_SOCITSC:
411 case MIPS_REVISION_SCON_SOCITSCP:
Chris Dearmand725cf32007-05-08 14:05:39 +0100412 if (cpu_has_veic)
Dmitri Vorobievf8071492008-01-24 19:52:47 +0300413 init_msc_irqs(MIPS_SOCITSC_IC_REG_BASE,
414 MSC01E_INT_BASE, msc_eicirqmap,
415 msc_nr_eicirqs);
Chris Dearmand725cf32007-05-08 14:05:39 +0100416 else
Dmitri Vorobievf8071492008-01-24 19:52:47 +0300417 init_msc_irqs(MIPS_SOCITSC_IC_REG_BASE,
418 MSC01C_INT_BASE, msc_irqmap,
419 msc_nr_irqs);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000420 }
421
Ralf Baechle39b8d522008-04-28 17:14:26 +0100422 if (gic_present) {
Ralf Baechle39b8d522008-04-28 17:14:26 +0100423 int i;
Andrew Bresticker18743d22014-09-18 14:47:24 -0700424
425 gic_init(GIC_BASE_ADDR, GIC_ADDRSPACE_SZ, MIPSCPU_INT_GIC,
426 MIPS_GIC_IRQ_BASE);
Paul Burton237036d2014-01-15 10:31:54 +0000427 if (!mips_cm_present()) {
Ralf Baechle39b8d522008-04-28 17:14:26 +0100428 /* Enable the GIC */
429 i = REG(_msc01_biu_base, MSC01_SC_CFG);
430 REG(_msc01_biu_base, MSC01_SC_CFG) =
431 (i | (0x1 << MSC01_SC_CFG_GICENA_SHF));
432 pr_debug("GIC Enabled\n");
433 }
Andrew Bresticker18743d22014-09-18 14:47:24 -0700434 i8259_irq = MIPS_GIC_IRQ_BASE + GIC_INT_I8259A;
435 corehi_irq = MIPS_CPU_IRQ_BASE + MIPSCPU_INT_COREHI;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100436 } else {
Chris Dearman7098f742009-07-10 01:54:09 -0700437#if defined(CONFIG_MIPS_MT_SMP)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100438 /* set up ipi interrupts */
439 if (cpu_has_veic) {
440 set_vi_handler (MSC01E_INT_SW0, ipi_resched_dispatch);
441 set_vi_handler (MSC01E_INT_SW1, ipi_call_dispatch);
442 cpu_ipi_resched_irq = MSC01E_INT_SW0;
443 cpu_ipi_call_irq = MSC01E_INT_SW1;
444 } else {
445 if (cpu_has_vint) {
Steven J. Hill5792bf62014-01-01 16:35:32 +0100446 set_vi_handler (MIPS_CPU_IPI_RESCHED_IRQ,
447 ipi_resched_dispatch);
448 set_vi_handler (MIPS_CPU_IPI_CALL_IRQ,
449 ipi_call_dispatch);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100450 }
Steven J. Hill5792bf62014-01-01 16:35:32 +0100451 cpu_ipi_resched_irq = MIPS_CPU_IRQ_BASE +
452 MIPS_CPU_IPI_RESCHED_IRQ;
453 cpu_ipi_call_irq = MIPS_CPU_IRQ_BASE +
454 MIPS_CPU_IPI_CALL_IRQ;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100455 }
Chris Dearman7098f742009-07-10 01:54:09 -0700456 arch_init_ipiirq(cpu_ipi_resched_irq, &irq_resched);
457 arch_init_ipiirq(cpu_ipi_call_irq, &irq_call);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100458#endif
Andrew Bresticker18743d22014-09-18 14:47:24 -0700459 if (cpu_has_veic) {
460 set_vi_handler(MSC01E_INT_I8259A,
461 malta_hw0_irqdispatch);
462 set_vi_handler(MSC01E_INT_COREHI,
463 corehi_irqdispatch);
464 i8259_irq = MSC01E_INT_BASE + MSC01E_INT_I8259A;
465 corehi_irq = MSC01E_INT_BASE + MSC01E_INT_COREHI;
466 } else {
467 i8259_irq = MIPS_CPU_IRQ_BASE + MIPSCPU_INT_I8259A;
468 corehi_irq = MIPS_CPU_IRQ_BASE + MIPSCPU_INT_COREHI;
469 }
Chris Dearman7098f742009-07-10 01:54:09 -0700470 }
Andrew Bresticker18743d22014-09-18 14:47:24 -0700471
472 setup_irq(i8259_irq, &i8259irq);
473 setup_irq(corehi_irq, &corehi_irqaction);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100474}
475
476void malta_be_init(void)
477{
Steven J. Hill5792bf62014-01-01 16:35:32 +0100478 /* Could change CM error mask register. */
Ralf Baechle39b8d522008-04-28 17:14:26 +0100479}
480
481
482static char *tr[8] = {
483 "mem", "gcr", "gic", "mmio",
Ralf Baechle70342282013-01-22 12:59:30 +0100484 "0x04", "0x05", "0x06", "0x07"
Ralf Baechle39b8d522008-04-28 17:14:26 +0100485};
486
487static char *mcmd[32] = {
488 [0x00] = "0x00",
489 [0x01] = "Legacy Write",
490 [0x02] = "Legacy Read",
491 [0x03] = "0x03",
492 [0x04] = "0x04",
493 [0x05] = "0x05",
494 [0x06] = "0x06",
495 [0x07] = "0x07",
496 [0x08] = "Coherent Read Own",
497 [0x09] = "Coherent Read Share",
498 [0x0a] = "Coherent Read Discard",
499 [0x0b] = "Coherent Ready Share Always",
500 [0x0c] = "Coherent Upgrade",
501 [0x0d] = "Coherent Writeback",
502 [0x0e] = "0x0e",
503 [0x0f] = "0x0f",
504 [0x10] = "Coherent Copyback",
505 [0x11] = "Coherent Copyback Invalidate",
506 [0x12] = "Coherent Invalidate",
507 [0x13] = "Coherent Write Invalidate",
508 [0x14] = "Coherent Completion Sync",
509 [0x15] = "0x15",
510 [0x16] = "0x16",
511 [0x17] = "0x17",
512 [0x18] = "0x18",
513 [0x19] = "0x19",
514 [0x1a] = "0x1a",
515 [0x1b] = "0x1b",
516 [0x1c] = "0x1c",
517 [0x1d] = "0x1d",
518 [0x1e] = "0x1e",
519 [0x1f] = "0x1f"
520};
521
522static char *core[8] = {
Ralf Baechle70342282013-01-22 12:59:30 +0100523 "Invalid/OK", "Invalid/Data",
Ralf Baechle39b8d522008-04-28 17:14:26 +0100524 "Shared/OK", "Shared/Data",
525 "Modified/OK", "Modified/Data",
Ralf Baechle70342282013-01-22 12:59:30 +0100526 "Exclusive/OK", "Exclusive/Data"
Ralf Baechle39b8d522008-04-28 17:14:26 +0100527};
528
529static char *causes[32] = {
530 "None", "GC_WR_ERR", "GC_RD_ERR", "COH_WR_ERR",
531 "COH_RD_ERR", "MMIO_WR_ERR", "MMIO_RD_ERR", "0x07",
532 "0x08", "0x09", "0x0a", "0x0b",
533 "0x0c", "0x0d", "0x0e", "0x0f",
534 "0x10", "0x11", "0x12", "0x13",
535 "0x14", "0x15", "0x16", "INTVN_WR_ERR",
536 "INTVN_RD_ERR", "0x19", "0x1a", "0x1b",
537 "0x1c", "0x1d", "0x1e", "0x1f"
538};
539
540int malta_be_handler(struct pt_regs *regs, int is_fixup)
541{
542 /* This duplicates the handling in do_be which seems wrong */
543 int retval = is_fixup ? MIPS_BE_FIXUP : MIPS_BE_FATAL;
544
Paul Burton237036d2014-01-15 10:31:54 +0000545 if (mips_cm_present()) {
546 unsigned long cm_error = read_gcr_error_cause();
547 unsigned long cm_addr = read_gcr_error_addr();
548 unsigned long cm_other = read_gcr_error_mult();
Ralf Baechle39b8d522008-04-28 17:14:26 +0100549 unsigned long cause, ocause;
550 char buf[256];
551
Paul Burton237036d2014-01-15 10:31:54 +0000552 cause = cm_error & CM_GCR_ERROR_CAUSE_ERRTYPE_MSK;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100553 if (cause != 0) {
Paul Burton237036d2014-01-15 10:31:54 +0000554 cause >>= CM_GCR_ERROR_CAUSE_ERRTYPE_SHF;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100555 if (cause < 16) {
556 unsigned long cca_bits = (cm_error >> 15) & 7;
557 unsigned long tr_bits = (cm_error >> 12) & 7;
Steven J. Hill5792bf62014-01-01 16:35:32 +0100558 unsigned long cmd_bits = (cm_error >> 7) & 0x1f;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100559 unsigned long stag_bits = (cm_error >> 3) & 15;
560 unsigned long sport_bits = (cm_error >> 0) & 7;
561
562 snprintf(buf, sizeof(buf),
563 "CCA=%lu TR=%s MCmd=%s STag=%lu "
564 "SPort=%lu\n",
Steven J. Hill5792bf62014-01-01 16:35:32 +0100565 cca_bits, tr[tr_bits], mcmd[cmd_bits],
Ralf Baechle39b8d522008-04-28 17:14:26 +0100566 stag_bits, sport_bits);
567 } else {
568 /* glob state & sresp together */
569 unsigned long c3_bits = (cm_error >> 18) & 7;
570 unsigned long c2_bits = (cm_error >> 15) & 7;
571 unsigned long c1_bits = (cm_error >> 12) & 7;
572 unsigned long c0_bits = (cm_error >> 9) & 7;
573 unsigned long sc_bit = (cm_error >> 8) & 1;
Steven J. Hill5792bf62014-01-01 16:35:32 +0100574 unsigned long cmd_bits = (cm_error >> 3) & 0x1f;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100575 unsigned long sport_bits = (cm_error >> 0) & 7;
576 snprintf(buf, sizeof(buf),
577 "C3=%s C2=%s C1=%s C0=%s SC=%s "
578 "MCmd=%s SPort=%lu\n",
579 core[c3_bits], core[c2_bits],
580 core[c1_bits], core[c0_bits],
581 sc_bit ? "True" : "False",
Steven J. Hill5792bf62014-01-01 16:35:32 +0100582 mcmd[cmd_bits], sport_bits);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100583 }
584
Paul Burton237036d2014-01-15 10:31:54 +0000585 ocause = (cm_other & CM_GCR_ERROR_MULT_ERR2ND_MSK) >>
586 CM_GCR_ERROR_MULT_ERR2ND_SHF;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100587
Steven J. Hill5792bf62014-01-01 16:35:32 +0100588 pr_err("CM_ERROR=%08lx %s <%s>\n", cm_error,
Ralf Baechle39b8d522008-04-28 17:14:26 +0100589 causes[cause], buf);
Steven J. Hill5792bf62014-01-01 16:35:32 +0100590 pr_err("CM_ADDR =%08lx\n", cm_addr);
591 pr_err("CM_OTHER=%08lx %s\n", cm_other, causes[ocause]);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100592
593 /* reprime cause register */
Paul Burton237036d2014-01-15 10:31:54 +0000594 write_gcr_error_cause(0);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100595 }
596 }
597
598 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}