blob: 5b28e81d94a086ad8a080e727439ffb48fa22ac9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Ralf Baechle631330f2009-06-19 14:05:26 +010027#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/interrupt.h>
Dmitri Vorobiev54bf0382008-01-24 19:52:49 +030029#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kernel_stat.h>
Ahmed S. Darwish25b8ac32007-02-05 04:42:11 +020031#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/random.h>
33
Ralf Baechle39b8d522008-04-28 17:14:26 +010034#include <asm/traps.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/i8259.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000036#include <asm/irq_cpu.h>
Ralf Baechleba38cdf2006-10-15 09:17:43 +010037#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#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>
Ralf Baechlee01402b2005-07-14 15:57:16 +000044#include <asm/msc01_ic.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010045#include <asm/gic.h>
46#include <asm/gcmpregs.h>
David Howellsb81947c2012-03-28 18:30:02 +010047#include <asm/setup.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010048
49int gcmp_present = -1;
Ralf Baechle39b8d522008-04-28 17:14:26 +010050static unsigned long _msc01_biu_base;
51static unsigned long _gcmp_base;
52static unsigned int ipi_map[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Ralf Baechlea963dc72010-02-27 12:53:32 +010054static DEFINE_RAW_SPINLOCK(mips_irq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56static inline int mips_pcibios_iack(void)
57{
58 int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 /*
61 * Determine highest priority pending interrupt by performing
62 * a PCI Interrupt Acknowledge cycle.
63 */
Chris Dearmanb72c0522007-04-27 15:58:41 +010064 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:
Dmitri Vorobievaf825582008-01-24 19:52:45 +030069 MSC_READ(MSC01_PCI_IACK, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 irq &= 0xff;
71 break;
Chris Dearmanb72c0522007-04-27 15:58:41 +010072 case MIPS_REVISION_SCON_GT64120:
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 irq = GT_READ(GT_PCI0_IACK_OFS);
74 irq &= 0xff;
75 break;
Chris Dearmanb72c0522007-04-27 15:58:41 +010076 case MIPS_REVISION_SCON_BONITO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 /* 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 */
Ralf Baechle6be63bb2011-03-29 11:48:22 +020085 (void) BONITO_PCIMAP_CFG;
Ralf Baechle70342282013-01-22 12:59:30 +010086 iob(); /* sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Chris Dearmanaccfd352009-07-10 01:53:54 -070088 irq = __raw_readl((u32 *)_pcictrl_bonito_pcicfg);
Ralf Baechle70342282013-01-22 12:59:30 +010089 iob(); /* sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 irq &= 0xff;
91 BONITO_PCIMAP_CFG = 0;
92 break;
93 default:
Dmitri Vorobiev8216d342008-01-24 19:52:42 +030094 printk(KERN_WARNING "Unknown system controller.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return -1;
96 }
97 return irq;
98}
99
Ralf Baechlee01402b2005-07-14 15:57:16 +0000100static inline int get_int(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 unsigned long flags;
Ralf Baechlee01402b2005-07-14 15:57:16 +0000103 int irq;
Ralf Baechlea963dc72010-02-27 12:53:32 +0100104 raw_spin_lock_irqsave(&mips_irq_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Ralf Baechlee01402b2005-07-14 15:57:16 +0000106 irq = mips_pcibios_iack();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 /*
Ralf Baechle479a0e32005-08-16 15:44:06 +0000109 * 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...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Ralf Baechlea963dc72010-02-27 12:53:32 +0100114 raw_spin_unlock_irqrestore(&mips_irq_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Ralf Baechlee01402b2005-07-14 15:57:16 +0000116 return irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Ralf Baechle937a8012006-10-07 19:44:33 +0100119static void malta_hw0_irqdispatch(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 int irq;
122
Ralf Baechlee01402b2005-07-14 15:57:16 +0000123 irq = get_int();
Ralf Baechle41c594a2006-04-05 09:45:45 +0100124 if (irq < 0) {
Dmitri Vorobievcd80d542008-01-24 19:52:54 +0300125 /* interrupt has already been cleared */
126 return;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Ralf Baechle937a8012006-10-07 19:44:33 +0100129 do_IRQ(MALTA_INT_BASE + irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Ralf Baechle39b8d522008-04-28 17:14:26 +0100132static void malta_ipi_irqdispatch(void)
133{
134 int irq;
135
Raghu Gandham0ab2b7d2013-04-10 16:30:12 -0500136 if (gic_compare_int())
137 do_IRQ(MIPS_GIC_IRQ_BASE);
138
Ralf Baechle39b8d522008-04-28 17:14:26 +0100139 irq = gic_get_int();
140 if (irq < 0)
Ralf Baechle70342282013-01-22 12:59:30 +0100141 return; /* interrupt has already been cleared */
Ralf Baechle39b8d522008-04-28 17:14:26 +0100142
143 do_IRQ(MIPS_GIC_IRQ_BASE + irq);
144}
145
Ralf Baechle937a8012006-10-07 19:44:33 +0100146static void corehi_irqdispatch(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Ralf Baechle937a8012006-10-07 19:44:33 +0100148 unsigned int intedge, intsteer, pcicmd, pcibadaddr;
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300149 unsigned int pcimstat, intisr, inten, intpol;
Ralf Baechle21a151d2007-10-11 23:46:15 +0100150 unsigned int intrcause, datalo, datahi;
Ralf Baechleba38cdf2006-10-15 09:17:43 +0100151 struct pt_regs *regs = get_irq_regs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Dmitri Vorobiev8216d342008-01-24 19:52:42 +0300153 printk(KERN_EMERG "CoreHI interrupt, shouldn't happen, we die here!\n");
Ralf Baechle70342282013-01-22 12:59:30 +0100154 printk(KERN_EMERG "epc : %08lx\nStatus: %08lx\n"
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300155 "Cause : %08lx\nbadVaddr : %08lx\n",
156 regs->cp0_epc, regs->cp0_status,
157 regs->cp0_cause, regs->cp0_badvaddr);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000158
159 /* Read all the registers and then print them as there is a
160 problem with interspersed printk's upsetting the Bonito controller.
161 Do it for the others too.
162 */
163
Chris Dearmanb72c0522007-04-27 15:58:41 +0100164 switch (mips_revision_sconid) {
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300165 case MIPS_REVISION_SCON_SOCIT:
Chris Dearmanb72c0522007-04-27 15:58:41 +0100166 case MIPS_REVISION_SCON_ROCIT:
167 case MIPS_REVISION_SCON_SOCITSC:
168 case MIPS_REVISION_SCON_SOCITSCP:
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300169 ll_msc_irq();
170 break;
171 case MIPS_REVISION_SCON_GT64120:
172 intrcause = GT_READ(GT_INTRCAUSE_OFS);
173 datalo = GT_READ(GT_CPUERR_ADDRLO_OFS);
174 datahi = GT_READ(GT_CPUERR_ADDRHI_OFS);
Dmitri Vorobiev8216d342008-01-24 19:52:42 +0300175 printk(KERN_EMERG "GT_INTRCAUSE = %08x\n", intrcause);
176 printk(KERN_EMERG "GT_CPUERR_ADDR = %02x%08x\n",
177 datahi, datalo);
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300178 break;
179 case MIPS_REVISION_SCON_BONITO:
180 pcibadaddr = BONITO_PCIBADADDR;
181 pcimstat = BONITO_PCIMSTAT;
182 intisr = BONITO_INTISR;
183 inten = BONITO_INTEN;
184 intpol = BONITO_INTPOL;
185 intedge = BONITO_INTEDGE;
186 intsteer = BONITO_INTSTEER;
187 pcicmd = BONITO_PCICMD;
Dmitri Vorobiev8216d342008-01-24 19:52:42 +0300188 printk(KERN_EMERG "BONITO_INTISR = %08x\n", intisr);
189 printk(KERN_EMERG "BONITO_INTEN = %08x\n", inten);
190 printk(KERN_EMERG "BONITO_INTPOL = %08x\n", intpol);
191 printk(KERN_EMERG "BONITO_INTEDGE = %08x\n", intedge);
192 printk(KERN_EMERG "BONITO_INTSTEER = %08x\n", intsteer);
193 printk(KERN_EMERG "BONITO_PCICMD = %08x\n", pcicmd);
194 printk(KERN_EMERG "BONITO_PCIBADADDR = %08x\n", pcibadaddr);
195 printk(KERN_EMERG "BONITO_PCIMSTAT = %08x\n", pcimstat);
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300196 break;
197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300199 die("CoreHi interrupt", regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100202static inline int clz(unsigned long x)
203{
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100204 __asm__(
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100205 " .set push \n"
206 " .set mips32 \n"
207 " clz %0, %1 \n"
208 " .set pop \n"
209 : "=r" (x)
210 : "r" (x));
211
212 return x;
213}
214
215/*
216 * Version of ffs that only looks at bits 12..15.
217 */
218static inline unsigned int irq_ffs(unsigned int pending)
219{
220#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
221 return -clz(pending) + 31 - CAUSEB_IP;
222#else
223 unsigned int a0 = 7;
224 unsigned int t0;
225
Ralf Baechle0118c3c2006-06-05 11:54:41 +0100226 t0 = pending & 0xf000;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100227 t0 = t0 < 1;
228 t0 = t0 << 2;
229 a0 = a0 - t0;
Ralf Baechle0118c3c2006-06-05 11:54:41 +0100230 pending = pending << t0;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100231
Ralf Baechle0118c3c2006-06-05 11:54:41 +0100232 t0 = pending & 0xc000;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100233 t0 = t0 < 1;
234 t0 = t0 << 1;
235 a0 = a0 - t0;
Ralf Baechle0118c3c2006-06-05 11:54:41 +0100236 pending = pending << t0;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100237
Ralf Baechle0118c3c2006-06-05 11:54:41 +0100238 t0 = pending & 0x8000;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100239 t0 = t0 < 1;
Dmitri Vorobievae9cef02008-01-24 19:52:52 +0300240 /* t0 = t0 << 2; */
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100241 a0 = a0 - t0;
Dmitri Vorobievae9cef02008-01-24 19:52:52 +0300242 /* pending = pending << t0; */
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100243
244 return a0;
245#endif
246}
247
248/*
249 * IRQs on the Malta board look basically (barring software IRQs which we
250 * don't use at all and all external interrupt sources are combined together
251 * on hardware interrupt 0 (MIPS IRQ 2)) like:
252 *
253 * MIPS IRQ Source
Ralf Baechle70342282013-01-22 12:59:30 +0100254 * -------- ------
255 * 0 Software (ignored)
256 * 1 Software (ignored)
257 * 2 Combined hardware interrupt (hw0)
258 * 3 Hardware (ignored)
259 * 4 Hardware (ignored)
260 * 5 Hardware (ignored)
261 * 6 Hardware (ignored)
262 * 7 R4k timer (what we use)
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100263 *
264 * We handle the IRQ according to _our_ priority which is:
265 *
Ralf Baechle70342282013-01-22 12:59:30 +0100266 * Highest ---- R4k Timer
267 * Lowest ---- Combined hardware interrupt
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100268 *
269 * then we just return, if multiple IRQs are pending then we will just take
270 * another exception, big deal.
271 */
272
Ralf Baechle937a8012006-10-07 19:44:33 +0100273asmlinkage void plat_irq_dispatch(void)
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100274{
275 unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM;
276 int irq;
277
Ralf Baechlee376fdf2012-09-17 01:23:21 +0200278 if (unlikely(!pending)) {
279 spurious_interrupt();
280 return;
281 }
282
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100283 irq = irq_ffs(pending);
284
285 if (irq == MIPSCPU_INT_I8259A)
Ralf Baechle937a8012006-10-07 19:44:33 +0100286 malta_hw0_irqdispatch();
Ralf Baechle39b8d522008-04-28 17:14:26 +0100287 else if (gic_present && ((1 << irq) & ipi_map[smp_processor_id()]))
288 malta_ipi_irqdispatch();
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100289 else
Ralf Baechlee376fdf2012-09-17 01:23:21 +0200290 do_IRQ(MIPS_CPU_IRQ_BASE + irq);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100291}
292
Ralf Baechle39b8d522008-04-28 17:14:26 +0100293#ifdef CONFIG_MIPS_MT_SMP
294
295
296#define GIC_MIPS_CPU_IPI_RESCHED_IRQ 3
297#define GIC_MIPS_CPU_IPI_CALL_IRQ 4
298
299#define MIPS_CPU_IPI_RESCHED_IRQ 0 /* SW int 0 for resched */
300#define C_RESCHED C_SW0
301#define MIPS_CPU_IPI_CALL_IRQ 1 /* SW int 1 for resched */
302#define C_CALL C_SW1
303static int cpu_ipi_resched_irq, cpu_ipi_call_irq;
304
305static void ipi_resched_dispatch(void)
306{
307 do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_RESCHED_IRQ);
308}
309
310static void ipi_call_dispatch(void)
311{
312 do_IRQ(MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_CALL_IRQ);
313}
314
315static irqreturn_t ipi_resched_interrupt(int irq, void *dev_id)
316{
Peter Zijlstra184748c2011-04-05 17:23:39 +0200317 scheduler_ipi();
318
Ralf Baechle39b8d522008-04-28 17:14:26 +0100319 return IRQ_HANDLED;
320}
321
322static irqreturn_t ipi_call_interrupt(int irq, void *dev_id)
323{
324 smp_call_function_interrupt();
325
326 return IRQ_HANDLED;
327}
328
329static struct irqaction irq_resched = {
330 .handler = ipi_resched_interrupt,
Yong Zhang8b5690f2011-11-22 14:38:03 +0000331 .flags = IRQF_PERCPU,
Ralf Baechle39b8d522008-04-28 17:14:26 +0100332 .name = "IPI_resched"
333};
334
335static struct irqaction irq_call = {
336 .handler = ipi_call_interrupt,
Yong Zhang8b5690f2011-11-22 14:38:03 +0000337 .flags = IRQF_PERCPU,
Ralf Baechle39b8d522008-04-28 17:14:26 +0100338 .name = "IPI_call"
339};
Raghu Gandham008ee962009-07-08 17:00:44 -0700340#endif /* CONFIG_MIPS_MT_SMP */
Tim Andersona214cef2009-06-17 16:22:25 -0700341
342static int gic_resched_int_base;
343static int gic_call_int_base;
344#define GIC_RESCHED_INT(cpu) (gic_resched_int_base+(cpu))
345#define GIC_CALL_INT(cpu) (gic_call_int_base+(cpu))
Tim Anderson03650702009-06-17 16:22:53 -0700346
347unsigned int plat_ipi_call_int_xlate(unsigned int cpu)
348{
349 return GIC_CALL_INT(cpu);
350}
351
352unsigned int plat_ipi_resched_int_xlate(unsigned int cpu)
353{
354 return GIC_RESCHED_INT(cpu);
355}
Ralf Baechle39b8d522008-04-28 17:14:26 +0100356
Ralf Baechlee01402b2005-07-14 15:57:16 +0000357static struct irqaction i8259irq = {
358 .handler = no_action,
Wu Zhangjin5a4a4ad2011-07-23 12:41:24 +0000359 .name = "XT-PIC cascade",
360 .flags = IRQF_NO_THREAD,
Ralf Baechlee01402b2005-07-14 15:57:16 +0000361};
362
363static struct irqaction corehi_irqaction = {
364 .handler = no_action,
Wu Zhangjin5a4a4ad2011-07-23 12:41:24 +0000365 .name = "CoreHi",
366 .flags = IRQF_NO_THREAD,
Ralf Baechlee01402b2005-07-14 15:57:16 +0000367};
368
Dmitri Vorobievb57c1912008-04-01 02:03:25 +0400369static msc_irqmap_t __initdata msc_irqmap[] = {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000370 {MSC01C_INT_TMR, MSC01_IRQ_EDGE, 0},
371 {MSC01C_INT_PCI, MSC01_IRQ_LEVEL, 0},
372};
Dmitri Vorobievb57c1912008-04-01 02:03:25 +0400373static int __initdata msc_nr_irqs = ARRAY_SIZE(msc_irqmap);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000374
Dmitri Vorobievb57c1912008-04-01 02:03:25 +0400375static msc_irqmap_t __initdata msc_eicirqmap[] = {
Ralf Baechlee01402b2005-07-14 15:57:16 +0000376 {MSC01E_INT_SW0, MSC01_IRQ_LEVEL, 0},
377 {MSC01E_INT_SW1, MSC01_IRQ_LEVEL, 0},
378 {MSC01E_INT_I8259A, MSC01_IRQ_LEVEL, 0},
379 {MSC01E_INT_SMI, MSC01_IRQ_LEVEL, 0},
380 {MSC01E_INT_COREHI, MSC01_IRQ_LEVEL, 0},
381 {MSC01E_INT_CORELO, MSC01_IRQ_LEVEL, 0},
382 {MSC01E_INT_TMR, MSC01_IRQ_EDGE, 0},
383 {MSC01E_INT_PCI, MSC01_IRQ_LEVEL, 0},
384 {MSC01E_INT_PERFCTR, MSC01_IRQ_LEVEL, 0},
385 {MSC01E_INT_CPUCTR, MSC01_IRQ_LEVEL, 0}
386};
Ralf Baechle39b8d522008-04-28 17:14:26 +0100387
Dmitri Vorobievb57c1912008-04-01 02:03:25 +0400388static int __initdata msc_nr_eicirqs = ARRAY_SIZE(msc_eicirqmap);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000389
Ralf Baechle39b8d522008-04-28 17:14:26 +0100390/*
391 * This GIC specific tabular array defines the association between External
392 * Interrupts and CPUs/Core Interrupts. The nature of the External
393 * Interrupts is also defined here - polarity/trigger.
394 */
Chris Dearman7098f742009-07-10 01:54:09 -0700395
396#define GIC_CPU_NMI GIC_MAP_TO_NMI_MSK
Ralf Baechle863cb9b2010-09-17 17:07:48 +0100397#define X GIC_UNUSED
398
Tim Andersona214cef2009-06-17 16:22:25 -0700399static struct gic_intr_map gic_intr_map[GIC_NUM_INTRS] = {
Chris Dearman7098f742009-07-10 01:54:09 -0700400 { X, X, X, X, 0 },
Ralf Baechle70342282013-01-22 12:59:30 +0100401 { X, X, X, X, 0 },
Chris Dearman7098f742009-07-10 01:54:09 -0700402 { X, X, X, X, 0 },
403 { 0, GIC_CPU_INT0, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT },
404 { 0, GIC_CPU_INT1, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT },
405 { 0, GIC_CPU_INT2, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT },
406 { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT },
407 { 0, GIC_CPU_INT4, 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_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT },
410 { X, X, X, X, 0 },
411 { X, X, X, X, 0 },
412 { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT },
413 { 0, GIC_CPU_NMI, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT },
414 { 0, GIC_CPU_NMI, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT },
Ralf Baechle70342282013-01-22 12:59:30 +0100415 { X, X, X, X, 0 },
Chris Dearman7098f742009-07-10 01:54:09 -0700416 /* The remainder of this table is initialised by fill_ipi_map */
Ralf Baechle39b8d522008-04-28 17:14:26 +0100417};
Ralf Baechle863cb9b2010-09-17 17:07:48 +0100418#undef X
Ralf Baechle39b8d522008-04-28 17:14:26 +0100419
420/*
421 * GCMP needs to be detected before any SMP initialisation
422 */
Tim Anderson47b178b2009-06-17 16:25:18 -0700423int __init gcmp_probe(unsigned long addr, unsigned long size)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100424{
Leonid Yegoshin78276202013-06-20 14:36:42 +0000425 if ((mips_revision_sconid != MIPS_REVISION_SCON_ROCIT) &&
426 (mips_revision_sconid != MIPS_REVISION_SCON_GT64120)) {
Jaidev Patwardhan05cf2072009-07-10 01:54:25 -0700427 gcmp_present = 0;
Leonid Yegoshin78276202013-06-20 14:36:42 +0000428 pr_debug("GCMP NOT present\n");
Jaidev Patwardhan05cf2072009-07-10 01:54:25 -0700429 return gcmp_present;
430 }
431
Ralf Baechle39b8d522008-04-28 17:14:26 +0100432 if (gcmp_present >= 0)
433 return gcmp_present;
434
435 _gcmp_base = (unsigned long) ioremap_nocache(GCMP_BASE_ADDR, GCMP_ADDRSPACE_SZ);
436 _msc01_biu_base = (unsigned long) ioremap_nocache(MSC01_BIU_REG_BASE, MSC01_BIU_ADDRSPACE_SZ);
437 gcmp_present = (GCMPGCB(GCMPB) & GCMP_GCB_GCMPB_GCMPBASE_MSK) == GCMP_BASE_ADDR;
438
439 if (gcmp_present)
Chris Dearman7098f742009-07-10 01:54:09 -0700440 pr_debug("GCMP present\n");
Ralf Baechle39b8d522008-04-28 17:14:26 +0100441 return gcmp_present;
442}
443
Chris Dearman7098f742009-07-10 01:54:09 -0700444/* Return the number of IOCU's present */
445int __init gcmp_niocu(void)
446{
447 return gcmp_present ?
448 (GCMPGCB(GC) & GCMP_GCB_GC_NUMIOCU_MSK) >> GCMP_GCB_GC_NUMIOCU_SHF :
449 0;
450}
451
452/* Set GCMP region attributes */
453void __init gcmp_setregion(int region, unsigned long base,
454 unsigned long mask, int type)
455{
456 GCMPGCBn(CMxBASE, region) = base;
457 GCMPGCBn(CMxMASK, region) = mask | type;
458}
459
Dmitri Vorobiev7afed6a2008-06-18 10:18:21 +0300460#if defined(CONFIG_MIPS_MT_SMP)
Tim Andersona214cef2009-06-17 16:22:25 -0700461static void __init fill_ipi_map1(int baseintr, int cpu, int cpupin)
462{
463 int intr = baseintr + cpu;
Tim Andersona214cef2009-06-17 16:22:25 -0700464 gic_intr_map[intr].cpunum = cpu;
465 gic_intr_map[intr].pin = cpupin;
466 gic_intr_map[intr].polarity = GIC_POL_POS;
467 gic_intr_map[intr].trigtype = GIC_TRIG_EDGE;
Chris Dearman7098f742009-07-10 01:54:09 -0700468 gic_intr_map[intr].flags = GIC_FLAG_IPI;
Tim Andersona214cef2009-06-17 16:22:25 -0700469 ipi_map[cpu] |= (1 << (cpupin + 2));
470}
471
Dmitri Vorobiev7afed6a2008-06-18 10:18:21 +0300472static void __init fill_ipi_map(void)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100473{
Tim Andersona214cef2009-06-17 16:22:25 -0700474 int cpu;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100475
Markos Chandras13b7ea62013-10-30 14:27:48 +0000476 for (cpu = 0; cpu < nr_cpu_ids; cpu++) {
Tim Andersona214cef2009-06-17 16:22:25 -0700477 fill_ipi_map1(gic_resched_int_base, cpu, GIC_CPU_INT1);
478 fill_ipi_map1(gic_call_int_base, cpu, GIC_CPU_INT2);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100479 }
480}
Dmitri Vorobiev7afed6a2008-06-18 10:18:21 +0300481#endif
Ralf Baechle39b8d522008-04-28 17:14:26 +0100482
Chris Dearman7098f742009-07-10 01:54:09 -0700483void __init arch_init_ipiirq(int irq, struct irqaction *action)
484{
485 setup_irq(irq, action);
Thomas Gleixnere4ec7982011-03-27 15:19:28 +0200486 irq_set_handler(irq, handle_percpu_irq);
Chris Dearman7098f742009-07-10 01:54:09 -0700487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489void __init arch_init_irq(void)
490{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 init_i8259_irqs();
Ralf Baechlee01402b2005-07-14 15:57:16 +0000492
493 if (!cpu_has_veic)
Atsushi Nemoto97dcb822007-01-08 02:14:29 +0900494 mips_cpu_irq_init();
Ralf Baechlee01402b2005-07-14 15:57:16 +0000495
Ralf Baechle39b8d522008-04-28 17:14:26 +0100496 if (gcmp_present) {
497 GCMPGCB(GICBA) = GIC_BASE_ADDR | GCMP_GCB_GICBA_EN_MSK;
498 gic_present = 1;
499 } else {
Jaidev Patwardhan05cf2072009-07-10 01:54:25 -0700500 if (mips_revision_sconid == MIPS_REVISION_SCON_ROCIT) {
501 _msc01_biu_base = (unsigned long)
502 ioremap_nocache(MSC01_BIU_REG_BASE,
503 MSC01_BIU_ADDRSPACE_SZ);
504 gic_present = (REG(_msc01_biu_base, MSC01_SC_CFG) &
505 MSC01_SC_CFG_GICPRES_MSK) >>
506 MSC01_SC_CFG_GICPRES_SHF;
507 }
Ralf Baechle39b8d522008-04-28 17:14:26 +0100508 }
509 if (gic_present)
Chris Dearman7098f742009-07-10 01:54:09 -0700510 pr_debug("GIC present\n");
Ralf Baechle39b8d522008-04-28 17:14:26 +0100511
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300512 switch (mips_revision_sconid) {
513 case MIPS_REVISION_SCON_SOCIT:
514 case MIPS_REVISION_SCON_ROCIT:
Ralf Baechlee01402b2005-07-14 15:57:16 +0000515 if (cpu_has_veic)
Dmitri Vorobievf8071492008-01-24 19:52:47 +0300516 init_msc_irqs(MIPS_MSC01_IC_REG_BASE,
517 MSC01E_INT_BASE, msc_eicirqmap,
518 msc_nr_eicirqs);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000519 else
Dmitri Vorobievf8071492008-01-24 19:52:47 +0300520 init_msc_irqs(MIPS_MSC01_IC_REG_BASE,
521 MSC01C_INT_BASE, msc_irqmap,
522 msc_nr_irqs);
Chris Dearmand725cf32007-05-08 14:05:39 +0100523 break;
524
Dmitri Vorobievaf825582008-01-24 19:52:45 +0300525 case MIPS_REVISION_SCON_SOCITSC:
526 case MIPS_REVISION_SCON_SOCITSCP:
Chris Dearmand725cf32007-05-08 14:05:39 +0100527 if (cpu_has_veic)
Dmitri Vorobievf8071492008-01-24 19:52:47 +0300528 init_msc_irqs(MIPS_SOCITSC_IC_REG_BASE,
529 MSC01E_INT_BASE, msc_eicirqmap,
530 msc_nr_eicirqs);
Chris Dearmand725cf32007-05-08 14:05:39 +0100531 else
Dmitri Vorobievf8071492008-01-24 19:52:47 +0300532 init_msc_irqs(MIPS_SOCITSC_IC_REG_BASE,
533 MSC01C_INT_BASE, msc_irqmap,
534 msc_nr_irqs);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000535 }
536
537 if (cpu_has_veic) {
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100538 set_vi_handler(MSC01E_INT_I8259A, malta_hw0_irqdispatch);
539 set_vi_handler(MSC01E_INT_COREHI, corehi_irqdispatch);
540 setup_irq(MSC01E_INT_BASE+MSC01E_INT_I8259A, &i8259irq);
541 setup_irq(MSC01E_INT_BASE+MSC01E_INT_COREHI, &corehi_irqaction);
Dmitri Vorobiev52b3fc02008-01-24 19:52:51 +0300542 } else if (cpu_has_vint) {
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100543 set_vi_handler(MIPSCPU_INT_I8259A, malta_hw0_irqdispatch);
544 set_vi_handler(MIPSCPU_INT_COREHI, corehi_irqdispatch);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100545#ifdef CONFIG_MIPS_MT_SMTC
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100546 setup_irq_smtc(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_I8259A, &i8259irq,
Ralf Baechle41c594a2006-04-05 09:45:45 +0100547 (0x100 << MIPSCPU_INT_I8259A));
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100548 setup_irq_smtc(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_COREHI,
Ralf Baechle41c594a2006-04-05 09:45:45 +0100549 &corehi_irqaction, (0x100 << MIPSCPU_INT_COREHI));
Kevin D. Kissellc3a005f2007-07-27 18:45:25 +0100550 /*
551 * Temporary hack to ensure that the subsidiary device
552 * interrupts coing in via the i8259A, but associated
553 * with low IRQ numbers, will restore the Status.IM
554 * value associated with the i8259A.
555 */
556 {
557 int i;
558
559 for (i = 0; i < 16; i++)
560 irq_hwmask[i] = (0x100 << MIPSCPU_INT_I8259A);
561 }
Ralf Baechle41c594a2006-04-05 09:45:45 +0100562#else /* Not SMTC */
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100563 setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_I8259A, &i8259irq);
Dmitri Vorobievf8071492008-01-24 19:52:47 +0300564 setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_COREHI,
565 &corehi_irqaction);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100566#endif /* CONFIG_MIPS_MT_SMTC */
Dmitri Vorobiev52b3fc02008-01-24 19:52:51 +0300567 } else {
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100568 setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_I8259A, &i8259irq);
Dmitri Vorobievf8071492008-01-24 19:52:47 +0300569 setup_irq(MIPS_CPU_IRQ_BASE+MIPSCPU_INT_COREHI,
570 &corehi_irqaction);
Ralf Baechlee01402b2005-07-14 15:57:16 +0000571 }
Ralf Baechle39b8d522008-04-28 17:14:26 +0100572
Ralf Baechle39b8d522008-04-28 17:14:26 +0100573 if (gic_present) {
574 /* FIXME */
575 int i;
Chris Dearman7098f742009-07-10 01:54:09 -0700576#if defined(CONFIG_MIPS_MT_SMP)
Markos Chandras13b7ea62013-10-30 14:27:48 +0000577 gic_call_int_base = GIC_NUM_INTRS -
578 (NR_CPUS - nr_cpu_ids) * 2 - nr_cpu_ids;
579 gic_resched_int_base = gic_call_int_base - nr_cpu_ids;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100580 fill_ipi_map();
Chris Dearman7098f742009-07-10 01:54:09 -0700581#endif
582 gic_init(GIC_BASE_ADDR, GIC_ADDRSPACE_SZ, gic_intr_map,
583 ARRAY_SIZE(gic_intr_map), MIPS_GIC_IRQ_BASE);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100584 if (!gcmp_present) {
585 /* Enable the GIC */
586 i = REG(_msc01_biu_base, MSC01_SC_CFG);
587 REG(_msc01_biu_base, MSC01_SC_CFG) =
588 (i | (0x1 << MSC01_SC_CFG_GICENA_SHF));
589 pr_debug("GIC Enabled\n");
590 }
Chris Dearman7098f742009-07-10 01:54:09 -0700591#if defined(CONFIG_MIPS_MT_SMP)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100592 /* set up ipi interrupts */
593 if (cpu_has_vint) {
594 set_vi_handler(MIPSCPU_INT_IPI0, malta_ipi_irqdispatch);
595 set_vi_handler(MIPSCPU_INT_IPI1, malta_ipi_irqdispatch);
596 }
597 /* Argh.. this really needs sorting out.. */
598 printk("CPU%d: status register was %08x\n", smp_processor_id(), read_c0_status());
599 write_c0_status(read_c0_status() | STATUSF_IP3 | STATUSF_IP4);
600 printk("CPU%d: status register now %08x\n", smp_processor_id(), read_c0_status());
601 write_c0_status(0x1100dc00);
602 printk("CPU%d: status register frc %08x\n", smp_processor_id(), read_c0_status());
Markos Chandras13b7ea62013-10-30 14:27:48 +0000603 for (i = 0; i < nr_cpu_ids; i++) {
Chris Dearman7098f742009-07-10 01:54:09 -0700604 arch_init_ipiirq(MIPS_GIC_IRQ_BASE +
605 GIC_RESCHED_INT(i), &irq_resched);
606 arch_init_ipiirq(MIPS_GIC_IRQ_BASE +
607 GIC_CALL_INT(i), &irq_call);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100608 }
Chris Dearman7098f742009-07-10 01:54:09 -0700609#endif
Ralf Baechle39b8d522008-04-28 17:14:26 +0100610 } else {
Chris Dearman7098f742009-07-10 01:54:09 -0700611#if defined(CONFIG_MIPS_MT_SMP)
Ralf Baechle39b8d522008-04-28 17:14:26 +0100612 /* set up ipi interrupts */
613 if (cpu_has_veic) {
614 set_vi_handler (MSC01E_INT_SW0, ipi_resched_dispatch);
615 set_vi_handler (MSC01E_INT_SW1, ipi_call_dispatch);
616 cpu_ipi_resched_irq = MSC01E_INT_SW0;
617 cpu_ipi_call_irq = MSC01E_INT_SW1;
618 } else {
619 if (cpu_has_vint) {
620 set_vi_handler (MIPS_CPU_IPI_RESCHED_IRQ, ipi_resched_dispatch);
621 set_vi_handler (MIPS_CPU_IPI_CALL_IRQ, ipi_call_dispatch);
622 }
623 cpu_ipi_resched_irq = MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_RESCHED_IRQ;
624 cpu_ipi_call_irq = MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_CALL_IRQ;
625 }
Chris Dearman7098f742009-07-10 01:54:09 -0700626 arch_init_ipiirq(cpu_ipi_resched_irq, &irq_resched);
627 arch_init_ipiirq(cpu_ipi_call_irq, &irq_call);
Ralf Baechle39b8d522008-04-28 17:14:26 +0100628#endif
Chris Dearman7098f742009-07-10 01:54:09 -0700629 }
Ralf Baechle39b8d522008-04-28 17:14:26 +0100630}
631
632void malta_be_init(void)
633{
634 if (gcmp_present) {
635 /* Could change CM error mask register */
636 }
637}
638
639
640static char *tr[8] = {
641 "mem", "gcr", "gic", "mmio",
Ralf Baechle70342282013-01-22 12:59:30 +0100642 "0x04", "0x05", "0x06", "0x07"
Ralf Baechle39b8d522008-04-28 17:14:26 +0100643};
644
645static char *mcmd[32] = {
646 [0x00] = "0x00",
647 [0x01] = "Legacy Write",
648 [0x02] = "Legacy Read",
649 [0x03] = "0x03",
650 [0x04] = "0x04",
651 [0x05] = "0x05",
652 [0x06] = "0x06",
653 [0x07] = "0x07",
654 [0x08] = "Coherent Read Own",
655 [0x09] = "Coherent Read Share",
656 [0x0a] = "Coherent Read Discard",
657 [0x0b] = "Coherent Ready Share Always",
658 [0x0c] = "Coherent Upgrade",
659 [0x0d] = "Coherent Writeback",
660 [0x0e] = "0x0e",
661 [0x0f] = "0x0f",
662 [0x10] = "Coherent Copyback",
663 [0x11] = "Coherent Copyback Invalidate",
664 [0x12] = "Coherent Invalidate",
665 [0x13] = "Coherent Write Invalidate",
666 [0x14] = "Coherent Completion Sync",
667 [0x15] = "0x15",
668 [0x16] = "0x16",
669 [0x17] = "0x17",
670 [0x18] = "0x18",
671 [0x19] = "0x19",
672 [0x1a] = "0x1a",
673 [0x1b] = "0x1b",
674 [0x1c] = "0x1c",
675 [0x1d] = "0x1d",
676 [0x1e] = "0x1e",
677 [0x1f] = "0x1f"
678};
679
680static char *core[8] = {
Ralf Baechle70342282013-01-22 12:59:30 +0100681 "Invalid/OK", "Invalid/Data",
Ralf Baechle39b8d522008-04-28 17:14:26 +0100682 "Shared/OK", "Shared/Data",
683 "Modified/OK", "Modified/Data",
Ralf Baechle70342282013-01-22 12:59:30 +0100684 "Exclusive/OK", "Exclusive/Data"
Ralf Baechle39b8d522008-04-28 17:14:26 +0100685};
686
687static char *causes[32] = {
688 "None", "GC_WR_ERR", "GC_RD_ERR", "COH_WR_ERR",
689 "COH_RD_ERR", "MMIO_WR_ERR", "MMIO_RD_ERR", "0x07",
690 "0x08", "0x09", "0x0a", "0x0b",
691 "0x0c", "0x0d", "0x0e", "0x0f",
692 "0x10", "0x11", "0x12", "0x13",
693 "0x14", "0x15", "0x16", "INTVN_WR_ERR",
694 "INTVN_RD_ERR", "0x19", "0x1a", "0x1b",
695 "0x1c", "0x1d", "0x1e", "0x1f"
696};
697
698int malta_be_handler(struct pt_regs *regs, int is_fixup)
699{
700 /* This duplicates the handling in do_be which seems wrong */
701 int retval = is_fixup ? MIPS_BE_FIXUP : MIPS_BE_FATAL;
702
703 if (gcmp_present) {
704 unsigned long cm_error = GCMPGCB(GCMEC);
705 unsigned long cm_addr = GCMPGCB(GCMEA);
706 unsigned long cm_other = GCMPGCB(GCMEO);
707 unsigned long cause, ocause;
708 char buf[256];
709
710 cause = (cm_error & GCMP_GCB_GMEC_ERROR_TYPE_MSK);
711 if (cause != 0) {
712 cause >>= GCMP_GCB_GMEC_ERROR_TYPE_SHF;
713 if (cause < 16) {
714 unsigned long cca_bits = (cm_error >> 15) & 7;
715 unsigned long tr_bits = (cm_error >> 12) & 7;
716 unsigned long mcmd_bits = (cm_error >> 7) & 0x1f;
717 unsigned long stag_bits = (cm_error >> 3) & 15;
718 unsigned long sport_bits = (cm_error >> 0) & 7;
719
720 snprintf(buf, sizeof(buf),
721 "CCA=%lu TR=%s MCmd=%s STag=%lu "
722 "SPort=%lu\n",
723 cca_bits, tr[tr_bits], mcmd[mcmd_bits],
724 stag_bits, sport_bits);
725 } else {
726 /* glob state & sresp together */
727 unsigned long c3_bits = (cm_error >> 18) & 7;
728 unsigned long c2_bits = (cm_error >> 15) & 7;
729 unsigned long c1_bits = (cm_error >> 12) & 7;
730 unsigned long c0_bits = (cm_error >> 9) & 7;
731 unsigned long sc_bit = (cm_error >> 8) & 1;
732 unsigned long mcmd_bits = (cm_error >> 3) & 0x1f;
733 unsigned long sport_bits = (cm_error >> 0) & 7;
734 snprintf(buf, sizeof(buf),
735 "C3=%s C2=%s C1=%s C0=%s SC=%s "
736 "MCmd=%s SPort=%lu\n",
737 core[c3_bits], core[c2_bits],
738 core[c1_bits], core[c0_bits],
739 sc_bit ? "True" : "False",
740 mcmd[mcmd_bits], sport_bits);
741 }
742
743 ocause = (cm_other & GCMP_GCB_GMEO_ERROR_2ND_MSK) >>
744 GCMP_GCB_GMEO_ERROR_2ND_SHF;
745
746 printk("CM_ERROR=%08lx %s <%s>\n", cm_error,
747 causes[cause], buf);
748 printk("CM_ADDR =%08lx\n", cm_addr);
749 printk("CM_OTHER=%08lx %s\n", cm_other, causes[ocause]);
750
751 /* reprime cause register */
752 GCMPGCB(GCMEC) = 0;
753 }
754 }
755
756 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
Steven J. Hill0b271f52012-08-31 16:05:37 -0500758
759void gic_enable_interrupt(int irq_vec)
760{
761 GIC_SET_INTR_MASK(irq_vec);
762}
763
764void gic_disable_interrupt(int irq_vec)
765{
766 GIC_CLR_INTR_MASK(irq_vec);
767}
768
769void gic_irq_ack(struct irq_data *d)
770{
771 int irq = (d->irq - gic_irq_base);
772
773 GIC_CLR_INTR_MASK(irq);
774
775 if (gic_irq_flags[irq] & GIC_TRIG_EDGE)
776 GICWRITE(GIC_REG(SHARED, GIC_SH_WEDGE), irq);
777}
778
779void gic_finish_irq(struct irq_data *d)
780{
781 /* Enable interrupts. */
782 GIC_SET_INTR_MASK(d->irq - gic_irq_base);
783}
784
785void __init gic_platform_init(int irqs, struct irq_chip *irq_controller)
786{
787 int i;
788
789 for (i = gic_irq_base; i < (gic_irq_base + irqs); i++)
790 irq_set_chip(i, irq_controller);
791}