2 * Copyright (C) 1999, 2000, 2006 MIPS Technologies, Inc.
4 * Authors: Carsten Langgaard <carstenl@mips.com>
5 * Maciej W. Rozycki <macro@mips.com>
7 * ########################################################################
9 * This program is free software; you can distribute it and/or modify it
10 * under the terms of the GNU General Public License (Version 2) as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
22 * ########################################################################
24 * Routines for generic manipulation of the interrupts found on the MIPS
28 #include <linux/compiler.h>
29 #include <linux/init.h>
30 #include <linux/irq.h>
31 #include <linux/sched.h>
32 #include <linux/slab.h>
33 #include <linux/interrupt.h>
34 #include <linux/kernel_stat.h>
35 #include <linux/kernel.h>
37 #include <asm/gdb-stub.h>
39 #include <asm/irq_cpu.h>
40 #include <asm/msc01_ic.h>
42 #include <asm/mips-boards/atlas.h>
43 #include <asm/mips-boards/atlasint.h>
44 #include <asm/mips-boards/generic.h>
46 static struct atlas_ictrl_regs
*atlas_hw0_icregs
;
49 #define DEBUG_INT(x...) printk(x)
51 #define DEBUG_INT(x...)
54 void disable_atlas_irq(unsigned int irq_nr
)
56 atlas_hw0_icregs
->intrsten
= 1 << (irq_nr
- ATLAS_INT_BASE
);
60 void enable_atlas_irq(unsigned int irq_nr
)
62 atlas_hw0_icregs
->intseten
= 1 << (irq_nr
- ATLAS_INT_BASE
);
66 static void end_atlas_irq(unsigned int irq
)
68 if (!(irq_desc
[irq
].status
& (IRQ_DISABLED
|IRQ_INPROGRESS
)))
69 enable_atlas_irq(irq
);
72 static struct irq_chip atlas_irq_type
= {
74 .ack
= disable_atlas_irq
,
75 .mask
= disable_atlas_irq
,
76 .mask_ack
= disable_atlas_irq
,
77 .unmask
= enable_atlas_irq
,
78 .eoi
= enable_atlas_irq
,
82 static inline int ls1bit32(unsigned int x
)
86 s
= 16; if (x
<< 16 == 0) s
= 0; b
-= s
; x
<<= s
;
87 s
= 8; if (x
<< 8 == 0) s
= 0; b
-= s
; x
<<= s
;
88 s
= 4; if (x
<< 4 == 0) s
= 0; b
-= s
; x
<<= s
;
89 s
= 2; if (x
<< 2 == 0) s
= 0; b
-= s
; x
<<= s
;
90 s
= 1; if (x
<< 1 == 0) s
= 0; b
-= s
;
95 static inline void atlas_hw0_irqdispatch(void)
97 unsigned long int_status
;
100 int_status
= atlas_hw0_icregs
->intstatus
;
102 /* if int_status == 0, then the interrupt has already been cleared */
103 if (unlikely(int_status
== 0))
106 irq
= ATLAS_INT_BASE
+ ls1bit32(int_status
);
108 DEBUG_INT("atlas_hw0_irqdispatch: irq=%d\n", irq
);
113 static inline int clz(unsigned long x
)
127 * Version of ffs that only looks at bits 12..15.
129 static inline unsigned int irq_ffs(unsigned int pending
)
131 #if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
132 return -clz(pending
) + 31 - CAUSEB_IP
;
160 * IRQs on the Atlas board look basically like (all external interrupt
161 * sources are combined together on hardware interrupt 0 (MIPS IRQ 2)):
165 * 0 Software 0 (reschedule IPI on MT)
166 * 1 Software 1 (remote call IPI on MT)
167 * 2 Combined Atlas hardware interrupt (hw0)
168 * 3 Hardware (ignored)
169 * 4 Hardware (ignored)
170 * 5 Hardware (ignored)
171 * 6 Hardware (ignored)
172 * 7 R4k timer (what we use)
174 * We handle the IRQ according to _our_ priority which is:
176 * Highest ---- R4k Timer
177 * Lowest ---- Software 0
179 * then we just return, if multiple IRQs are pending then we will just take
180 * another exception, big deal.
182 asmlinkage
void plat_irq_dispatch(void)
184 unsigned int pending
= read_c0_cause() & read_c0_status() & ST0_IM
;
187 irq
= irq_ffs(pending
);
189 if (irq
== MIPSCPU_INT_ATLAS
)
190 atlas_hw0_irqdispatch();
192 do_IRQ(MIPS_CPU_IRQ_BASE
+ irq
);
194 spurious_interrupt();
197 static inline void init_atlas_irqs(int base
)
201 atlas_hw0_icregs
= (struct atlas_ictrl_regs
*)
202 ioremap(ATLAS_ICTRL_REGS_BASE
,
203 sizeof(struct atlas_ictrl_regs
*));
206 * Mask out all interrupt by writing "1" to all bit position in
207 * the interrupt reset reg.
209 atlas_hw0_icregs
->intrsten
= 0xffffffff;
211 for (i
= ATLAS_INT_BASE
; i
<= ATLAS_INT_END
; i
++)
212 set_irq_chip_and_handler(i
, &atlas_irq_type
, handle_level_irq
);
215 static struct irqaction atlasirq
= {
216 .handler
= no_action
,
217 .name
= "Atlas cascade"
220 msc_irqmap_t __initdata msc_irqmap
[] = {
221 {MSC01C_INT_TMR
, MSC01_IRQ_EDGE
, 0},
222 {MSC01C_INT_PCI
, MSC01_IRQ_LEVEL
, 0},
224 int __initdata msc_nr_irqs
= ARRAY_SIZE(msc_irqmap
);
226 msc_irqmap_t __initdata msc_eicirqmap
[] = {
227 {MSC01E_INT_SW0
, MSC01_IRQ_LEVEL
, 0},
228 {MSC01E_INT_SW1
, MSC01_IRQ_LEVEL
, 0},
229 {MSC01E_INT_ATLAS
, MSC01_IRQ_LEVEL
, 0},
230 {MSC01E_INT_TMR
, MSC01_IRQ_EDGE
, 0},
231 {MSC01E_INT_PCI
, MSC01_IRQ_LEVEL
, 0},
232 {MSC01E_INT_PERFCTR
, MSC01_IRQ_LEVEL
, 0},
233 {MSC01E_INT_CPUCTR
, MSC01_IRQ_LEVEL
, 0}
235 int __initdata msc_nr_eicirqs
= ARRAY_SIZE(msc_eicirqmap
);
237 void __init
arch_init_irq(void)
239 init_atlas_irqs(ATLAS_INT_BASE
);
244 switch(mips_revision_corid
) {
245 case MIPS_REVISION_CORID_CORE_MSC
:
246 case MIPS_REVISION_CORID_CORE_FPGA2
:
247 case MIPS_REVISION_CORID_CORE_FPGA3
:
248 case MIPS_REVISION_CORID_CORE_FPGA4
:
249 case MIPS_REVISION_CORID_CORE_24K
:
250 case MIPS_REVISION_CORID_CORE_EMUL_MSC
:
252 init_msc_irqs(MSC01E_INT_BASE
, MSC01E_INT_BASE
,
253 msc_eicirqmap
, msc_nr_eicirqs
);
255 init_msc_irqs(MSC01E_INT_BASE
, MSC01C_INT_BASE
,
256 msc_irqmap
, msc_nr_irqs
);
260 set_vi_handler(MSC01E_INT_ATLAS
, atlas_hw0_irqdispatch
);
261 setup_irq(MSC01E_INT_BASE
+ MSC01E_INT_ATLAS
, &atlasirq
);
262 } else if (cpu_has_vint
) {
263 set_vi_handler(MIPSCPU_INT_ATLAS
, atlas_hw0_irqdispatch
);
264 #ifdef CONFIG_MIPS_MT_SMTC
265 setup_irq_smtc(MIPS_CPU_IRQ_BASE
+ MIPSCPU_INT_ATLAS
,
266 &atlasirq
, (0x100 << MIPSCPU_INT_ATLAS
));
268 setup_irq(MIPS_CPU_IRQ_BASE
+ MIPSCPU_INT_ATLAS
, &atlasirq
);
269 #endif /* CONFIG_MIPS_MT_SMTC */
271 setup_irq(MIPS_CPU_IRQ_BASE
+ MIPSCPU_INT_ATLAS
, &atlasirq
);