Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | #ifndef _ASM_IRQ_H |
2 | #define _ASM_IRQ_H | |
3 | ||
4 | /* | |
5 | * linux/include/asm/irq.h | |
6 | * | |
7 | * (C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar | |
8 | * | |
9 | * IRQ/IPI changes taken from work by Thomas Radke | |
10 | * <tomsoft@informatik.tu-chemnitz.de> | |
11 | */ | |
12 | ||
13 | #include <linux/config.h> | |
14 | #include <linux/sched.h> | |
15 | /* include comes from machine specific directory */ | |
16 | #include "irq_vectors.h" | |
17 | #include <asm/thread_info.h> | |
18 | ||
19 | static __inline__ int irq_canonicalize(int irq) | |
20 | { | |
21 | return ((irq == 2) ? 9 : irq); | |
22 | } | |
23 | ||
1da177e4 LT |
24 | #ifdef CONFIG_X86_LOCAL_APIC |
25 | # define ARCH_HAS_NMI_WATCHDOG /* See include/linux/nmi.h */ | |
26 | #endif | |
27 | ||
28 | #ifdef CONFIG_4KSTACKS | |
29 | extern void irq_ctx_init(int cpu); | |
e1367daf | 30 | extern void irq_ctx_exit(int cpu); |
1da177e4 LT |
31 | # define __ARCH_HAS_DO_SOFTIRQ |
32 | #else | |
33 | # define irq_ctx_init(cpu) do { } while (0) | |
e1367daf | 34 | # define irq_ctx_exit(cpu) do { } while (0) |
1da177e4 LT |
35 | #endif |
36 | ||
37 | #ifdef CONFIG_IRQBALANCE | |
38 | extern int irqbalance_disable(char *str); | |
39 | #endif | |
40 | ||
f3705136 ZM |
41 | #ifdef CONFIG_HOTPLUG_CPU |
42 | extern void fixup_irqs(cpumask_t map); | |
43 | #endif | |
44 | ||
1da177e4 | 45 | #endif /* _ASM_IRQ_H */ |