ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-mips / irq.h
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * Copyright (C) 1994 by Waldorf GMBH, written by Ralf Baechle
7  * Copyright (C) 1995, 96, 97, 98, 99, 2000, 01, 02, 03 by Ralf Baechle
8  */
9 #ifndef _ASM_IRQ_H
10 #define _ASM_IRQ_H
11
12 #include <linux/config.h>
13 #include <linux/linkage.h>
14 #include <irq.h>
15
16 #ifdef CONFIG_I8259
17 static inline int irq_canonicalize(int irq)
18 {
19         return ((irq == 2) ? 9 : irq);
20 }
21 #else
22 #define irq_canonicalize(irq) (irq)     /* Sane hardware, sane code ... */
23 #endif
24
25 extern void disable_irq(unsigned int);
26 extern void disable_irq_nosync(unsigned int);
27 extern void enable_irq(unsigned int);
28
29 struct pt_regs;
30 extern asmlinkage unsigned int do_IRQ(int irq, struct pt_regs *regs);
31
32 extern void init_generic_irq(void);
33
34 struct irqaction;
35 int handle_IRQ_event(unsigned int, struct pt_regs *, struct irqaction *);
36
37 #endif /* _ASM_IRQ_H */