2 * arch/ppc/kernel/mv64360_pic.c
4 * Interrupt controller support for Marvell's MV64360.
6 * Author: Rabeeh Khoury <rabeeh@galileo.co.il>
7 * Based on MV64360 PIC written by
8 * Chris Zankel <chris@mvista.com>
9 * Mark A. Greer <mgreer@mvista.com>
11 * Copyright 2004 MontaVista Software, Inc.
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
20 * This file contains the specific functions to support the MV64360
21 * interrupt controller.
23 * The MV64360 has two main interrupt registers (high and low) that
24 * summarizes the interrupts generated by the units of the MV64360.
25 * Each bit is assigned to an interrupt number, where the low register
26 * are assigned from IRQ0 to IRQ31 and the high cause register
28 * The GPP (General Purpose Pins) interrupts are assigned from IRQ64 (GPP0)
30 * get_irq() returns the lowest interrupt number that is currently asserted.
33 * - This driver does not initialize the GPP when used as an interrupt
37 #include <linux/stddef.h>
38 #include <linux/init.h>
39 #include <linux/sched.h>
40 #include <linux/signal.h>
41 #include <linux/stddef.h>
42 #include <linux/delay.h>
43 #include <linux/irq.h>
44 #include <linux/interrupt.h>
47 #include <asm/processor.h>
48 #include <asm/system.h>
50 #include <asm/mv64x60.h>
52 #ifdef CONFIG_IRQ_ALL_CPUS
53 #error "The mv64360 does not support distribution of IRQs on all CPUs"
55 /* ========================== forward declaration ========================== */
57 static void mv64360_unmask_irq(unsigned int);
58 static void mv64360_mask_irq(unsigned int);
59 static irqreturn_t
mv64360_cpu_error_int_handler(int, void *, struct pt_regs
*);
60 static irqreturn_t
mv64360_sram_error_int_handler(int, void *,
62 static irqreturn_t
mv64360_pci_error_int_handler(int, void *, struct pt_regs
*);
64 /* ========================== local declarations =========================== */
66 struct hw_interrupt_type mv64360_pic
= {
67 .typename
= " mv64360 ",
68 .enable
= mv64360_unmask_irq
,
69 .disable
= mv64360_mask_irq
,
70 .ack
= mv64360_mask_irq
,
71 .end
= mv64360_unmask_irq
,
74 #define CPU_INTR_STR "mv64360 cpu interface error"
75 #define SRAM_INTR_STR "mv64360 internal sram error"
76 #define PCI0_INTR_STR "mv64360 pci 0 error"
77 #define PCI1_INTR_STR "mv64360 pci 1 error"
79 static struct mv64x60_handle bh
;
81 u32 mv64360_irq_base
= 0; /* MV64360 handles the next 96 IRQs from here */
85 * This function initializes the interrupt controller. It assigns
86 * all interrupts from IRQ0 to IRQ95 to the mv64360 interrupt controller.
98 * We register all GPP inputs as interrupt source, but disable them.
101 mv64360_init_irq(void)
106 ppc_md
.progress("mv64360_init_irq: enter", 0x0);
108 bh
.v_base
= mv64x60_get_bridge_vbase();
110 ppc_cached_irq_mask
[0] = 0;
111 ppc_cached_irq_mask
[1] = 0x0f000000; /* Enable GPP intrs */
112 ppc_cached_irq_mask
[2] = 0;
114 /* disable all interrupts and clear current interrupts */
115 mv64x60_write(&bh
, MV64x60_GPP_INTR_CAUSE
, 0);
116 mv64x60_write(&bh
, MV64x60_GPP_INTR_MASK
, ppc_cached_irq_mask
[2]);
117 mv64x60_write(&bh
, MV64360_IC_CPU0_INTR_MASK_LO
,ppc_cached_irq_mask
[0]);
118 mv64x60_write(&bh
, MV64360_IC_CPU0_INTR_MASK_HI
,ppc_cached_irq_mask
[1]);
120 /* All interrupts are level interrupts */
121 for (i
= mv64360_irq_base
; i
< (mv64360_irq_base
+ 96); i
++) {
122 irq_desc
[i
].status
|= IRQ_LEVEL
;
123 irq_desc
[i
].handler
= &mv64360_pic
;
127 ppc_md
.progress("mv64360_init_irq: exit", 0x0);
132 * This function returns the lowest interrupt number of all interrupts that
133 * are currently asserted.
136 * struct pt_regs* not used
138 * Output Variable(s):
142 * int <interrupt number> or -2 (bogus interrupt)
146 mv64360_get_irq(struct pt_regs
*regs
)
153 * Second CPU gets only doorbell (message) interrupts.
154 * The doorbell interrupt is BIT28 in the main interrupt low cause reg.
156 int cpu_nr
= smp_processor_id();
158 if (!(mv64x60_read(&bh
, MV64360_IC_MAIN_CAUSE_LO
) &
159 (1 << MV64x60_IRQ_DOORBELL
)))
161 return mv64360_irq_base
+ MV64x60_IRQ_DOORBELL
;
165 irq
= mv64x60_read(&bh
, MV64360_IC_MAIN_CAUSE_LO
);
166 irq
= __ilog2((irq
& 0x3dfffffe) & ppc_cached_irq_mask
[0]);
169 irq
= mv64x60_read(&bh
, MV64360_IC_MAIN_CAUSE_HI
);
170 irq
= __ilog2((irq
& 0x1f0003f7) & ppc_cached_irq_mask
[1]);
173 irq
= -2; /* bogus interrupt, should never happen */
175 if ((irq
>= 24) && (irq
< MV64x60_IRQ_DOORBELL
)) {
176 irq_gpp
= mv64x60_read(&bh
,
177 MV64x60_GPP_INTR_CAUSE
);
178 irq_gpp
= __ilog2(irq_gpp
&
179 ppc_cached_irq_mask
[2]);
186 MV64x60_GPP_INTR_CAUSE
,
195 (void)mv64x60_read(&bh
, MV64x60_GPP_INTR_CAUSE
);
200 return (mv64360_irq_base
+ irq
);
203 /* mv64360_unmask_irq()
205 * This function enables an interrupt.
208 * unsigned int interrupt number (IRQ0...IRQ95).
210 * Output Variable(s):
217 mv64360_unmask_irq(unsigned int irq
)
220 /* second CPU gets only doorbell interrupts */
221 if ((irq
- mv64360_irq_base
) == MV64x60_IRQ_DOORBELL
) {
222 mv64x60_set_bits(&bh
, MV64360_IC_CPU1_INTR_MASK_LO
,
223 (1 << MV64x60_IRQ_DOORBELL
));
227 irq
-= mv64360_irq_base
;
230 if (irq
> 63) /* unmask GPP irq */
231 mv64x60_write(&bh
, MV64x60_GPP_INTR_MASK
,
232 ppc_cached_irq_mask
[2] |= (1 << (irq
- 64)));
233 else /* mask high interrupt register */
234 mv64x60_write(&bh
, MV64360_IC_CPU0_INTR_MASK_HI
,
235 ppc_cached_irq_mask
[1] |= (1 << (irq
- 32)));
237 else /* mask low interrupt register */
238 mv64x60_write(&bh
, MV64360_IC_CPU0_INTR_MASK_LO
,
239 ppc_cached_irq_mask
[0] |= (1 << irq
));
241 (void)mv64x60_read(&bh
, MV64x60_GPP_INTR_MASK
);
245 /* mv64360_mask_irq()
247 * This function disables the requested interrupt.
250 * unsigned int interrupt number (IRQ0...IRQ95).
252 * Output Variable(s):
259 mv64360_mask_irq(unsigned int irq
)
262 if ((irq
- mv64360_irq_base
) == MV64x60_IRQ_DOORBELL
) {
263 mv64x60_clr_bits(&bh
, MV64360_IC_CPU1_INTR_MASK_LO
,
264 (1 << MV64x60_IRQ_DOORBELL
));
268 irq
-= mv64360_irq_base
;
271 if (irq
> 63) /* mask GPP irq */
272 mv64x60_write(&bh
, MV64x60_GPP_INTR_MASK
,
273 ppc_cached_irq_mask
[2] &= ~(1 << (irq
- 64)));
274 else /* mask high interrupt register */
275 mv64x60_write(&bh
, MV64360_IC_CPU0_INTR_MASK_HI
,
276 ppc_cached_irq_mask
[1] &= ~(1 << (irq
- 32)));
278 else /* mask low interrupt register */
279 mv64x60_write(&bh
, MV64360_IC_CPU0_INTR_MASK_LO
,
280 ppc_cached_irq_mask
[0] &= ~(1 << irq
));
282 (void)mv64x60_read(&bh
, MV64x60_GPP_INTR_MASK
);
287 mv64360_cpu_error_int_handler(int irq
, void *dev_id
, struct pt_regs
*regs
)
289 printk(KERN_ERR
"mv64360_cpu_error_int_handler: %s 0x%08x\n",
290 "Error on CPU interface - Cause regiser",
291 mv64x60_read(&bh
, MV64x60_CPU_ERR_CAUSE
));
292 printk(KERN_ERR
"\tCPU error register dump:\n");
293 printk(KERN_ERR
"\tAddress low 0x%08x\n",
294 mv64x60_read(&bh
, MV64x60_CPU_ERR_ADDR_LO
));
295 printk(KERN_ERR
"\tAddress high 0x%08x\n",
296 mv64x60_read(&bh
, MV64x60_CPU_ERR_ADDR_HI
));
297 printk(KERN_ERR
"\tData low 0x%08x\n",
298 mv64x60_read(&bh
, MV64x60_CPU_ERR_DATA_LO
));
299 printk(KERN_ERR
"\tData high 0x%08x\n",
300 mv64x60_read(&bh
, MV64x60_CPU_ERR_DATA_HI
));
301 printk(KERN_ERR
"\tParity 0x%08x\n",
302 mv64x60_read(&bh
, MV64x60_CPU_ERR_PARITY
));
303 mv64x60_write(&bh
, MV64x60_CPU_ERR_CAUSE
, 0);
308 mv64360_sram_error_int_handler(int irq
, void *dev_id
, struct pt_regs
*regs
)
310 printk(KERN_ERR
"mv64360_sram_error_int_handler: %s 0x%08x\n",
311 "Error in internal SRAM - Cause register",
312 mv64x60_read(&bh
, MV64360_SRAM_ERR_CAUSE
));
313 printk(KERN_ERR
"\tSRAM error register dump:\n");
314 printk(KERN_ERR
"\tAddress Low 0x%08x\n",
315 mv64x60_read(&bh
, MV64360_SRAM_ERR_ADDR_LO
));
316 printk(KERN_ERR
"\tAddress High 0x%08x\n",
317 mv64x60_read(&bh
, MV64360_SRAM_ERR_ADDR_HI
));
318 printk(KERN_ERR
"\tData Low 0x%08x\n",
319 mv64x60_read(&bh
, MV64360_SRAM_ERR_DATA_LO
));
320 printk(KERN_ERR
"\tData High 0x%08x\n",
321 mv64x60_read(&bh
, MV64360_SRAM_ERR_DATA_HI
));
322 printk(KERN_ERR
"\tParity 0x%08x\n",
323 mv64x60_read(&bh
, MV64360_SRAM_ERR_PARITY
));
324 mv64x60_write(&bh
, MV64360_SRAM_ERR_CAUSE
, 0);
329 mv64360_pci_error_int_handler(int irq
, void *dev_id
, struct pt_regs
*regs
)
332 unsigned int pci_bus
= (unsigned int)dev_id
;
334 if (pci_bus
== 0) { /* Error on PCI 0 */
335 val
= mv64x60_read(&bh
, MV64x60_PCI0_ERR_CAUSE
);
336 printk(KERN_ERR
"%s: Error in PCI %d Interface\n",
337 "mv64360_pci_error_int_handler", pci_bus
);
338 printk(KERN_ERR
"\tPCI %d error register dump:\n", pci_bus
);
339 printk(KERN_ERR
"\tCause register 0x%08x\n", val
);
340 printk(KERN_ERR
"\tAddress Low 0x%08x\n",
341 mv64x60_read(&bh
, MV64x60_PCI0_ERR_ADDR_LO
));
342 printk(KERN_ERR
"\tAddress High 0x%08x\n",
343 mv64x60_read(&bh
, MV64x60_PCI0_ERR_ADDR_HI
));
344 printk(KERN_ERR
"\tAttribute 0x%08x\n",
345 mv64x60_read(&bh
, MV64x60_PCI0_ERR_DATA_LO
));
346 printk(KERN_ERR
"\tCommand 0x%08x\n",
347 mv64x60_read(&bh
, MV64x60_PCI0_ERR_CMD
));
348 mv64x60_write(&bh
, MV64x60_PCI0_ERR_CAUSE
, ~val
);
350 if (pci_bus
== 1) { /* Error on PCI 1 */
351 val
= mv64x60_read(&bh
, MV64x60_PCI1_ERR_CAUSE
);
352 printk(KERN_ERR
"%s: Error in PCI %d Interface\n",
353 "mv64360_pci_error_int_handler", pci_bus
);
354 printk(KERN_ERR
"\tPCI %d error register dump:\n", pci_bus
);
355 printk(KERN_ERR
"\tCause register 0x%08x\n", val
);
356 printk(KERN_ERR
"\tAddress Low 0x%08x\n",
357 mv64x60_read(&bh
, MV64x60_PCI1_ERR_ADDR_LO
));
358 printk(KERN_ERR
"\tAddress High 0x%08x\n",
359 mv64x60_read(&bh
, MV64x60_PCI1_ERR_ADDR_HI
));
360 printk(KERN_ERR
"\tAttribute 0x%08x\n",
361 mv64x60_read(&bh
, MV64x60_PCI1_ERR_DATA_LO
));
362 printk(KERN_ERR
"\tCommand 0x%08x\n",
363 mv64x60_read(&bh
, MV64x60_PCI1_ERR_CMD
));
364 mv64x60_write(&bh
, MV64x60_PCI1_ERR_CAUSE
, ~val
);
370 mv64360_register_hdlrs(void)
375 /* Clear old errors and register CPU interface error intr handler */
376 mv64x60_write(&bh
, MV64x60_CPU_ERR_CAUSE
, 0);
377 if ((rc
= request_irq(MV64x60_IRQ_CPU_ERR
+ mv64360_irq_base
,
378 mv64360_cpu_error_int_handler
, SA_INTERRUPT
, CPU_INTR_STR
, 0)))
379 printk(KERN_WARNING
"Can't register cpu error handler: %d", rc
);
381 mv64x60_write(&bh
, MV64x60_CPU_ERR_MASK
, 0);
382 mv64x60_write(&bh
, MV64x60_CPU_ERR_MASK
, 0x000000ff);
384 /* Clear old errors and register internal SRAM error intr handler */
385 mv64x60_write(&bh
, MV64360_SRAM_ERR_CAUSE
, 0);
386 if ((rc
= request_irq(MV64360_IRQ_SRAM_PAR_ERR
+ mv64360_irq_base
,
387 mv64360_sram_error_int_handler
,SA_INTERRUPT
,SRAM_INTR_STR
, 0)))
388 printk(KERN_WARNING
"Can't register SRAM error handler: %d",rc
);
391 * Bit 0 reserved on 64360 and erratum FEr PCI-#11 (PCI internal
392 * data parity error set incorrectly) on rev 0 & 1 of 64460 requires
393 * bit 0 to be cleared.
397 if ((mv64x60_get_bridge_type() == MV64x60_TYPE_MV64460
) &&
398 (mv64x60_get_bridge_rev() > 1))
399 mask
|= 0x1; /* enable DPErr on 64460 */
401 /* Clear old errors and register PCI 0 error intr handler */
402 mv64x60_write(&bh
, MV64x60_PCI0_ERR_CAUSE
, 0);
403 if ((rc
= request_irq(MV64360_IRQ_PCI0
+ mv64360_irq_base
,
404 mv64360_pci_error_int_handler
,
405 SA_INTERRUPT
, PCI0_INTR_STR
, (void *)0)))
406 printk(KERN_WARNING
"Can't register pci 0 error handler: %d",
409 mv64x60_write(&bh
, MV64x60_PCI0_ERR_MASK
, 0);
410 mv64x60_write(&bh
, MV64x60_PCI0_ERR_MASK
, mask
);
412 /* Clear old errors and register PCI 1 error intr handler */
413 mv64x60_write(&bh
, MV64x60_PCI1_ERR_CAUSE
, 0);
414 if ((rc
= request_irq(MV64360_IRQ_PCI1
+ mv64360_irq_base
,
415 mv64360_pci_error_int_handler
,
416 SA_INTERRUPT
, PCI1_INTR_STR
, (void *)1)))
417 printk(KERN_WARNING
"Can't register pci 1 error handler: %d",
420 mv64x60_write(&bh
, MV64x60_PCI1_ERR_MASK
, 0);
421 mv64x60_write(&bh
, MV64x60_PCI1_ERR_MASK
, mask
);
426 arch_initcall(mv64360_register_hdlrs
);