2 * Copyright 2001 MontaVista Software Inc.
3 * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
5 * Copyright (C) 2001 Ralf Baechle
6 * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved.
7 * Author: Maciej W. Rozycki <macro@mips.com>
9 * This file define the irq handler for MIPS CPU interrupts.
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
18 * Almost all MIPS CPUs define 8 interrupt sources. They are typically
19 * level triggered (i.e., cannot be cleared from CPU; must be cleared from
20 * device). The first two are software interrupts which we don't really
21 * use or support. The last one is usually the CPU timer interrupt if
22 * counter register is present or, for CPUs with an external FPU, by
23 * convention it's the FPU exception interrupt.
25 * Don't even think about using this on SMP. You have been warned.
27 * This file exports one global function:
28 * void mips_cpu_irq_init(int irq_base);
30 #include <linux/init.h>
31 #include <linux/interrupt.h>
32 #include <linux/kernel.h>
34 #include <asm/irq_cpu.h>
35 #include <asm/mipsregs.h>
36 #include <asm/system.h>
38 static int mips_cpu_irq_base;
40 static inline void unmask_mips_irq(unsigned int irq)
42 set_c0_status(0x100 << (irq - mips_cpu_irq_base));
46 static inline void mask_mips_irq(unsigned int irq)
48 clear_c0_status(0x100 << (irq - mips_cpu_irq_base));
52 static inline void mips_cpu_irq_enable(unsigned int irq)
56 local_irq_save(flags);
58 local_irq_restore(flags);
61 static void mips_cpu_irq_disable(unsigned int irq)
65 local_irq_save(flags);
67 local_irq_restore(flags);
70 static unsigned int mips_cpu_irq_startup(unsigned int irq)
72 mips_cpu_irq_enable(irq);
77 #define mips_cpu_irq_shutdown mips_cpu_irq_disable
80 * While we ack the interrupt interrupts are disabled and thus we don't need
81 * to deal with concurrency issues. Same for mips_cpu_irq_end.
83 static void mips_cpu_irq_ack(unsigned int irq)
85 /* Only necessary for soft interrupts */
86 clear_c0_cause(0x100 << (irq - mips_cpu_irq_base));
91 static void mips_cpu_irq_end(unsigned int irq)
93 if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS)))
97 static hw_irq_controller mips_cpu_irq_controller = {
99 .startup = mips_cpu_irq_startup,
100 .shutdown = mips_cpu_irq_shutdown,
101 .enable = mips_cpu_irq_enable,
102 .disable = mips_cpu_irq_disable,
103 .ack = mips_cpu_irq_ack,
104 .end = mips_cpu_irq_end,
108 void __init mips_cpu_irq_init(int irq_base)
112 /* Mask interrupts. */
113 clear_c0_status(ST0_IM);
114 clear_c0_cause(CAUSEF_IP);
116 for (i = irq_base; i < irq_base + 8; i++) {
117 irq_desc[i].status = IRQ_DISABLED;
118 irq_desc[i].action = NULL;
119 irq_desc[i].depth = 1;
120 irq_desc[i].handler = &mips_cpu_irq_controller;
123 mips_cpu_irq_base = irq_base;