[POWERPC] ARCH=ppc pt_regs fixes
[linux-2.6/zen-sources.git] / arch / ppc / syslib / ppc403_pic.c
blob607ebd111d44b6b0241b9e55acf6632ac198094c
1 /*
3 * Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
5 * Module name: ppc403_pic.c
7 * Description:
8 * Interrupt controller driver for PowerPC 403-based processors.
9 */
12 * The PowerPC 403 cores' Asynchronous Interrupt Controller (AIC) has
13 * 32 possible interrupts, a majority of which are not implemented on
14 * all cores. There are six configurable, external interrupt pins and
15 * there are eight internal interrupts for the on-chip serial port
16 * (SPU), DMA controller, and JTAG controller.
20 #include <linux/init.h>
21 #include <linux/sched.h>
22 #include <linux/signal.h>
23 #include <linux/stddef.h>
25 #include <asm/processor.h>
26 #include <asm/system.h>
27 #include <asm/irq.h>
28 #include <asm/ppc4xx_pic.h>
29 #include <asm/machdep.h>
31 /* Function Prototypes */
33 static void ppc403_aic_enable(unsigned int irq);
34 static void ppc403_aic_disable(unsigned int irq);
35 static void ppc403_aic_disable_and_ack(unsigned int irq);
37 static struct hw_interrupt_type ppc403_aic = {
38 .typename = "403GC AIC",
39 .enable = ppc403_aic_enable,
40 .disable = ppc403_aic_disable,
41 .ack = ppc403_aic_disable_and_ack,
44 int
45 ppc403_pic_get_irq(void)
47 int irq;
48 unsigned long bits;
51 * Only report the status of those interrupts that are actually
52 * enabled.
55 bits = mfdcr(DCRN_EXISR) & mfdcr(DCRN_EXIER);
58 * Walk through the interrupts from highest priority to lowest, and
59 * report the first pending interrupt found.
60 * We want PPC, not C bit numbering, so just subtract the ffs()
61 * result from 32.
63 irq = 32 - ffs(bits);
65 if (irq == NR_AIC_IRQS)
66 irq = -1;
68 return (irq);
71 static void
72 ppc403_aic_enable(unsigned int irq)
74 int bit, word;
76 bit = irq & 0x1f;
77 word = irq >> 5;
79 ppc_cached_irq_mask[word] |= (1 << (31 - bit));
80 mtdcr(DCRN_EXIER, ppc_cached_irq_mask[word]);
83 static void
84 ppc403_aic_disable(unsigned int irq)
86 int bit, word;
88 bit = irq & 0x1f;
89 word = irq >> 5;
91 ppc_cached_irq_mask[word] &= ~(1 << (31 - bit));
92 mtdcr(DCRN_EXIER, ppc_cached_irq_mask[word]);
95 static void
96 ppc403_aic_disable_and_ack(unsigned int irq)
98 int bit, word;
100 bit = irq & 0x1f;
101 word = irq >> 5;
103 ppc_cached_irq_mask[word] &= ~(1 << (31 - bit));
104 mtdcr(DCRN_EXIER, ppc_cached_irq_mask[word]);
105 mtdcr(DCRN_EXISR, (1 << (31 - bit)));
108 void __init
109 ppc4xx_pic_init(void)
111 int i;
114 * Disable all external interrupts until they are
115 * explicity requested.
117 ppc_cached_irq_mask[0] = 0;
119 mtdcr(DCRN_EXIER, ppc_cached_irq_mask[0]);
121 ppc_md.get_irq = ppc403_pic_get_irq;
123 for (i = 0; i < NR_IRQS; i++)
124 irq_desc[i].chip = &ppc403_aic;