2 * iop13xx IRQ handling / support functions
3 * Copyright (c) 2005-2006, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
19 #include <linux/init.h>
20 #include <linux/interrupt.h>
21 #include <linux/list.h>
22 #include <linux/sysctl.h>
23 #include <asm/uaccess.h>
24 #include <asm/mach/irq.h>
26 #include <asm/hardware.h>
27 #include <asm/mach-types.h>
28 #include <asm/arch/irqs.h>
29 #include <asm/arch/msi.h>
31 /* INTCTL0 CP6 R0 Page 4
33 static inline u32
read_intctl_0(void)
36 asm volatile("mrc p6, 0, %0, c0, c4, 0":"=r" (val
));
39 static inline void write_intctl_0(u32 val
)
41 asm volatile("mcr p6, 0, %0, c0, c4, 0"::"r" (val
));
44 /* INTCTL1 CP6 R1 Page 4
46 static inline u32
read_intctl_1(void)
49 asm volatile("mrc p6, 0, %0, c1, c4, 0":"=r" (val
));
52 static inline void write_intctl_1(u32 val
)
54 asm volatile("mcr p6, 0, %0, c1, c4, 0"::"r" (val
));
57 /* INTCTL2 CP6 R2 Page 4
59 static inline u32
read_intctl_2(void)
62 asm volatile("mrc p6, 0, %0, c2, c4, 0":"=r" (val
));
65 static inline void write_intctl_2(u32 val
)
67 asm volatile("mcr p6, 0, %0, c2, c4, 0"::"r" (val
));
70 /* INTCTL3 CP6 R3 Page 4
72 static inline u32
read_intctl_3(void)
75 asm volatile("mrc p6, 0, %0, c3, c4, 0":"=r" (val
));
78 static inline void write_intctl_3(u32 val
)
80 asm volatile("mcr p6, 0, %0, c3, c4, 0"::"r" (val
));
83 /* INTSTR0 CP6 R0 Page 5
85 static inline u32
read_intstr_0(void)
88 asm volatile("mrc p6, 0, %0, c0, c5, 0":"=r" (val
));
91 static inline void write_intstr_0(u32 val
)
93 asm volatile("mcr p6, 0, %0, c0, c5, 0"::"r" (val
));
96 /* INTSTR1 CP6 R1 Page 5
98 static inline u32
read_intstr_1(void)
101 asm volatile("mrc p6, 0, %0, c1, c5, 0":"=r" (val
));
104 static void write_intstr_1(u32 val
)
106 asm volatile("mcr p6, 0, %0, c1, c5, 0"::"r" (val
));
109 /* INTSTR2 CP6 R2 Page 5
111 static inline u32
read_intstr_2(void)
114 asm volatile("mrc p6, 0, %0, c2, c5, 0":"=r" (val
));
117 static void write_intstr_2(u32 val
)
119 asm volatile("mcr p6, 0, %0, c2, c5, 0"::"r" (val
));
122 /* INTSTR3 CP6 R3 Page 5
124 static inline u32
read_intstr_3(void)
127 asm volatile("mrc p6, 0, %0, c3, c5, 0":"=r" (val
));
130 static void write_intstr_3(u32 val
)
132 asm volatile("mcr p6, 0, %0, c3, c5, 0"::"r" (val
));
135 /* INTBASE CP6 R0 Page 2
137 static inline u32
read_intbase(void)
140 asm volatile("mrc p6, 0, %0, c0, c2, 0":"=r" (val
));
143 static void write_intbase(u32 val
)
145 asm volatile("mcr p6, 0, %0, c0, c2, 0"::"r" (val
));
148 /* INTSIZE CP6 R2 Page 2
150 static inline u32
read_intsize(void)
153 asm volatile("mrc p6, 0, %0, c2, c2, 0":"=r" (val
));
156 static void write_intsize(u32 val
)
158 asm volatile("mcr p6, 0, %0, c2, c2, 0"::"r" (val
));
161 /* 0 = Interrupt Masked and 1 = Interrupt not masked */
163 iop13xx_irq_mask0 (unsigned int irq
)
165 write_intctl_0(read_intctl_0() & ~(1 << (irq
- 0)));
169 iop13xx_irq_mask1 (unsigned int irq
)
171 write_intctl_1(read_intctl_1() & ~(1 << (irq
- 32)));
175 iop13xx_irq_mask2 (unsigned int irq
)
177 write_intctl_2(read_intctl_2() & ~(1 << (irq
- 64)));
181 iop13xx_irq_mask3 (unsigned int irq
)
183 write_intctl_3(read_intctl_3() & ~(1 << (irq
- 96)));
187 iop13xx_irq_unmask0(unsigned int irq
)
189 write_intctl_0(read_intctl_0() | (1 << (irq
- 0)));
193 iop13xx_irq_unmask1(unsigned int irq
)
195 write_intctl_1(read_intctl_1() | (1 << (irq
- 32)));
199 iop13xx_irq_unmask2(unsigned int irq
)
201 write_intctl_2(read_intctl_2() | (1 << (irq
- 64)));
205 iop13xx_irq_unmask3(unsigned int irq
)
207 write_intctl_3(read_intctl_3() | (1 << (irq
- 96)));
210 static struct irq_chip iop13xx_irqchip1
= {
212 .ack
= iop13xx_irq_mask0
,
213 .mask
= iop13xx_irq_mask0
,
214 .unmask
= iop13xx_irq_unmask0
,
217 static struct irq_chip iop13xx_irqchip2
= {
219 .ack
= iop13xx_irq_mask1
,
220 .mask
= iop13xx_irq_mask1
,
221 .unmask
= iop13xx_irq_unmask1
,
224 static struct irq_chip iop13xx_irqchip3
= {
226 .ack
= iop13xx_irq_mask2
,
227 .mask
= iop13xx_irq_mask2
,
228 .unmask
= iop13xx_irq_unmask2
,
231 static struct irq_chip iop13xx_irqchip4
= {
233 .ack
= iop13xx_irq_mask3
,
234 .mask
= iop13xx_irq_mask3
,
235 .unmask
= iop13xx_irq_unmask3
,
238 extern void iop_init_cp6_handler(void);
240 void __init
iop13xx_init_irq(void)
244 iop_init_cp6_handler();
246 /* disable all interrupts */
252 /* treat all as IRQ */
258 /* initialize the interrupt vector generator */
259 write_intbase(INTBASE
);
260 write_intsize(INTSIZE_4
);
262 for(i
= 0; i
<= IRQ_IOP13XX_HPI
; i
++) {
264 set_irq_chip(i
, &iop13xx_irqchip1
);
266 set_irq_chip(i
, &iop13xx_irqchip2
);
268 set_irq_chip(i
, &iop13xx_irqchip3
);
270 set_irq_chip(i
, &iop13xx_irqchip4
);
272 set_irq_handler(i
, handle_level_irq
);
273 set_irq_flags(i
, IRQF_VALID
| IRQF_PROBE
);