Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / m68k / kernel / ints.c
blob2b412454cb419fb91d898df93fcd0ffe507b6c32
1 /*
2 * linux/arch/m68k/kernel/ints.c -- Linux/m68k general interrupt handling code
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file COPYING in the main directory of this archive
6 * for more details.
8 * 07/03/96: Timer initialization, and thus mach_sched_init(),
9 * removed from request_irq() and moved to init_time().
10 * We should therefore consider renaming our add_isr() and
11 * remove_isr() to request_irq() and free_irq()
12 * respectively, so they are compliant with the other
13 * architectures. /Jes
14 * 11/07/96: Changed all add_/remove_isr() to request_/free_irq() calls.
15 * Removed irq list support, if any machine needs an irq server
16 * it must implement this itself (as it's already done), instead
17 * only default handler are used with mach_default_handler.
18 * request_irq got some flags different from other architectures:
19 * - IRQ_FLG_REPLACE : Replace an existing handler (the default one
20 * can be replaced without this flag)
21 * - IRQ_FLG_LOCK : handler can't be replaced
22 * There are other machine depending flags, see there
23 * If you want to replace a default handler you should know what
24 * you're doing, since it might handle different other irq sources
25 * which must be served /Roman Zippel
28 #include <linux/module.h>
29 #include <linux/types.h>
30 #include <linux/sched.h>
31 #include <linux/interrupt.h>
32 #include <linux/kernel_stat.h>
33 #include <linux/errno.h>
34 #include <linux/init.h>
36 #include <asm/setup.h>
37 #include <asm/system.h>
38 #include <asm/irq.h>
39 #include <asm/traps.h>
40 #include <asm/page.h>
41 #include <asm/machdep.h>
42 #include <asm/cacheflush.h>
43 #include <asm/irq_regs.h>
45 #ifdef CONFIG_Q40
46 #include <asm/q40ints.h>
47 #endif
49 extern u32 auto_irqhandler_fixup[];
50 extern u32 user_irqhandler_fixup[];
51 extern u16 user_irqvec_fixup[];
53 /* table for system interrupt handlers */
54 static struct irq_node *irq_list[NR_IRQS];
55 static struct irq_controller *irq_controller[NR_IRQS];
56 static int irq_depth[NR_IRQS];
58 static int m68k_first_user_vec;
60 static struct irq_controller auto_irq_controller = {
61 .name = "auto",
62 .lock = __SPIN_LOCK_UNLOCKED(auto_irq_controller.lock),
63 .startup = m68k_irq_startup,
64 .shutdown = m68k_irq_shutdown,
67 static struct irq_controller user_irq_controller = {
68 .name = "user",
69 .lock = __SPIN_LOCK_UNLOCKED(user_irq_controller.lock),
70 .startup = m68k_irq_startup,
71 .shutdown = m68k_irq_shutdown,
74 #define NUM_IRQ_NODES 100
75 static irq_node_t nodes[NUM_IRQ_NODES];
78 * void init_IRQ(void)
80 * Parameters: None
82 * Returns: Nothing
84 * This function should be called during kernel startup to initialize
85 * the IRQ handling routines.
88 void __init init_IRQ(void)
90 int i;
92 /* assembly irq entry code relies on this... */
93 if (HARDIRQ_MASK != 0x00ff0000) {
94 extern void hardirq_mask_is_broken(void);
95 hardirq_mask_is_broken();
98 for (i = IRQ_AUTO_1; i <= IRQ_AUTO_7; i++)
99 irq_controller[i] = &auto_irq_controller;
101 mach_init_IRQ();
105 * m68k_setup_auto_interrupt
106 * @handler: called from auto vector interrupts
108 * setup the handler to be called from auto vector interrupts instead of the
109 * standard __m68k_handle_int(), it will be called with irq numbers in the range
110 * from IRQ_AUTO_1 - IRQ_AUTO_7.
112 void __init m68k_setup_auto_interrupt(void (*handler)(unsigned int, struct pt_regs *))
114 if (handler)
115 *auto_irqhandler_fixup = (u32)handler;
116 flush_icache();
120 * m68k_setup_user_interrupt
121 * @vec: first user vector interrupt to handle
122 * @cnt: number of active user vector interrupts
123 * @handler: called from user vector interrupts
125 * setup user vector interrupts, this includes activating the specified range
126 * of interrupts, only then these interrupts can be requested (note: this is
127 * different from auto vector interrupts). An optional handler can be installed
128 * to be called instead of the default __m68k_handle_int(), it will be called
129 * with irq numbers starting from IRQ_USER.
131 void __init m68k_setup_user_interrupt(unsigned int vec, unsigned int cnt,
132 void (*handler)(unsigned int, struct pt_regs *))
134 int i;
136 BUG_ON(IRQ_USER + cnt >= NR_IRQS);
137 m68k_first_user_vec = vec;
138 for (i = 0; i < cnt; i++)
139 irq_controller[IRQ_USER + i] = &user_irq_controller;
140 *user_irqvec_fixup = vec - IRQ_USER;
141 if (handler)
142 *user_irqhandler_fixup = (u32)handler;
143 flush_icache();
147 * m68k_setup_irq_controller
148 * @contr: irq controller which controls specified irq
149 * @irq: first irq to be managed by the controller
151 * Change the controller for the specified range of irq, which will be used to
152 * manage these irq. auto/user irq already have a default controller, which can
153 * be changed as well, but the controller probably should use m68k_irq_startup/
154 * m68k_irq_shutdown.
156 void m68k_setup_irq_controller(struct irq_controller *contr, unsigned int irq,
157 unsigned int cnt)
159 int i;
161 for (i = 0; i < cnt; i++)
162 irq_controller[irq + i] = contr;
165 irq_node_t *new_irq_node(void)
167 irq_node_t *node;
168 short i;
170 for (node = nodes, i = NUM_IRQ_NODES-1; i >= 0; node++, i--) {
171 if (!node->handler) {
172 memset(node, 0, sizeof(*node));
173 return node;
177 printk ("new_irq_node: out of nodes\n");
178 return NULL;
181 int setup_irq(unsigned int irq, struct irq_node *node)
183 struct irq_controller *contr;
184 struct irq_node **prev;
185 unsigned long flags;
187 if (irq >= NR_IRQS || !(contr = irq_controller[irq])) {
188 printk("%s: Incorrect IRQ %d from %s\n",
189 __FUNCTION__, irq, node->devname);
190 return -ENXIO;
193 spin_lock_irqsave(&contr->lock, flags);
195 prev = irq_list + irq;
196 if (*prev) {
197 /* Can't share interrupts unless both agree to */
198 if (!((*prev)->flags & node->flags & IRQF_SHARED)) {
199 spin_unlock_irqrestore(&contr->lock, flags);
200 return -EBUSY;
202 while (*prev)
203 prev = &(*prev)->next;
206 if (!irq_list[irq]) {
207 if (contr->startup)
208 contr->startup(irq);
209 else
210 contr->enable(irq);
212 node->next = NULL;
213 *prev = node;
215 spin_unlock_irqrestore(&contr->lock, flags);
217 return 0;
220 int request_irq(unsigned int irq,
221 irq_handler_t handler,
222 unsigned long flags, const char *devname, void *dev_id)
224 struct irq_node *node;
225 int res;
227 node = new_irq_node();
228 if (!node)
229 return -ENOMEM;
231 node->handler = handler;
232 node->flags = flags;
233 node->dev_id = dev_id;
234 node->devname = devname;
236 res = setup_irq(irq, node);
237 if (res)
238 node->handler = NULL;
240 return res;
243 EXPORT_SYMBOL(request_irq);
245 void free_irq(unsigned int irq, void *dev_id)
247 struct irq_controller *contr;
248 struct irq_node **p, *node;
249 unsigned long flags;
251 if (irq >= NR_IRQS || !(contr = irq_controller[irq])) {
252 printk("%s: Incorrect IRQ %d\n", __FUNCTION__, irq);
253 return;
256 spin_lock_irqsave(&contr->lock, flags);
258 p = irq_list + irq;
259 while ((node = *p)) {
260 if (node->dev_id == dev_id)
261 break;
262 p = &node->next;
265 if (node) {
266 *p = node->next;
267 node->handler = NULL;
268 } else
269 printk("%s: Removing probably wrong IRQ %d\n",
270 __FUNCTION__, irq);
272 if (!irq_list[irq]) {
273 if (contr->shutdown)
274 contr->shutdown(irq);
275 else
276 contr->disable(irq);
279 spin_unlock_irqrestore(&contr->lock, flags);
282 EXPORT_SYMBOL(free_irq);
284 void enable_irq(unsigned int irq)
286 struct irq_controller *contr;
287 unsigned long flags;
289 if (irq >= NR_IRQS || !(contr = irq_controller[irq])) {
290 printk("%s: Incorrect IRQ %d\n",
291 __FUNCTION__, irq);
292 return;
295 spin_lock_irqsave(&contr->lock, flags);
296 if (irq_depth[irq]) {
297 if (!--irq_depth[irq]) {
298 if (contr->enable)
299 contr->enable(irq);
301 } else
302 WARN_ON(1);
303 spin_unlock_irqrestore(&contr->lock, flags);
306 EXPORT_SYMBOL(enable_irq);
308 void disable_irq(unsigned int irq)
310 struct irq_controller *contr;
311 unsigned long flags;
313 if (irq >= NR_IRQS || !(contr = irq_controller[irq])) {
314 printk("%s: Incorrect IRQ %d\n",
315 __FUNCTION__, irq);
316 return;
319 spin_lock_irqsave(&contr->lock, flags);
320 if (!irq_depth[irq]++) {
321 if (contr->disable)
322 contr->disable(irq);
324 spin_unlock_irqrestore(&contr->lock, flags);
327 EXPORT_SYMBOL(disable_irq);
329 void disable_irq_nosync(unsigned int irq) __attribute__((alias("disable_irq")));
331 EXPORT_SYMBOL(disable_irq_nosync);
333 int m68k_irq_startup(unsigned int irq)
335 if (irq <= IRQ_AUTO_7)
336 vectors[VEC_SPUR + irq] = auto_inthandler;
337 else
338 vectors[m68k_first_user_vec + irq - IRQ_USER] = user_inthandler;
339 return 0;
342 void m68k_irq_shutdown(unsigned int irq)
344 if (irq <= IRQ_AUTO_7)
345 vectors[VEC_SPUR + irq] = bad_inthandler;
346 else
347 vectors[m68k_first_user_vec + irq - IRQ_USER] = bad_inthandler;
352 * Do we need these probe functions on the m68k?
354 * ... may be useful with ISA devices
356 unsigned long probe_irq_on (void)
358 #ifdef CONFIG_Q40
359 if (MACH_IS_Q40)
360 return q40_probe_irq_on();
361 #endif
362 return 0;
365 EXPORT_SYMBOL(probe_irq_on);
367 int probe_irq_off (unsigned long irqs)
369 #ifdef CONFIG_Q40
370 if (MACH_IS_Q40)
371 return q40_probe_irq_off(irqs);
372 #endif
373 return 0;
376 EXPORT_SYMBOL(probe_irq_off);
378 unsigned int irq_canonicalize(unsigned int irq)
380 #ifdef CONFIG_Q40
381 if (MACH_IS_Q40 && irq == 11)
382 irq = 10;
383 #endif
384 return irq;
387 EXPORT_SYMBOL(irq_canonicalize);
389 asmlinkage void m68k_handle_int(unsigned int irq)
391 struct irq_node *node;
392 kstat_cpu(0).irqs[irq]++;
393 node = irq_list[irq];
394 do {
395 node->handler(irq, node->dev_id);
396 node = node->next;
397 } while (node);
400 asmlinkage void __m68k_handle_int(unsigned int irq, struct pt_regs *regs)
402 struct pt_regs *old_regs;
403 old_regs = set_irq_regs(regs);
404 m68k_handle_int(irq);
405 set_irq_regs(old_regs);
408 asmlinkage void handle_badint(struct pt_regs *regs)
410 kstat_cpu(0).irqs[0]++;
411 printk("unexpected interrupt from %u\n", regs->vector);
414 int show_interrupts(struct seq_file *p, void *v)
416 struct irq_controller *contr;
417 struct irq_node *node;
418 int i = *(loff_t *) v;
420 /* autovector interrupts */
421 if (irq_list[i]) {
422 contr = irq_controller[i];
423 node = irq_list[i];
424 seq_printf(p, "%-8s %3u: %10u %s", contr->name, i, kstat_cpu(0).irqs[i], node->devname);
425 while ((node = node->next))
426 seq_printf(p, ", %s", node->devname);
427 seq_puts(p, "\n");
429 return 0;
432 void init_irq_proc(void)
434 /* Insert /proc/irq driver here */