8d2c6717a5c34d3c1c756fea5489910a03c390e8
[pandora-kernel.git] / arch / x86 / include / asm / irq.h
1 #ifndef _ASM_X86_IRQ_H
2 #define _ASM_X86_IRQ_H
3 /*
4  *      (C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar
5  *
6  *      IRQ/IPI changes taken from work by Thomas Radke
7  *      <tomsoft@informatik.tu-chemnitz.de>
8  */
9
10 #include <asm/apicdef.h>
11 #include <asm/irq_vectors.h>
12
13 /* Even though we don't support this, supply it to appease OF */
14 static inline void irq_dispose_mapping(unsigned int virq) { }
15
16 static inline int irq_canonicalize(int irq)
17 {
18         return ((irq == 2) ? 9 : irq);
19 }
20
21 #ifdef CONFIG_X86_LOCAL_APIC
22 # define ARCH_HAS_NMI_WATCHDOG
23 #endif
24
25 #ifdef CONFIG_X86_32
26 extern void irq_ctx_init(int cpu);
27 #else
28 # define irq_ctx_init(cpu) do { } while (0)
29 #endif
30
31 #define __ARCH_HAS_DO_SOFTIRQ
32
33 #ifdef CONFIG_HOTPLUG_CPU
34 #include <linux/cpumask.h>
35 extern void fixup_irqs(void);
36 extern void irq_force_complete_move(int);
37 #endif
38
39 extern void (*x86_platform_ipi_callback)(void);
40 extern void native_init_IRQ(void);
41 extern bool handle_irq(unsigned irq, struct pt_regs *regs);
42
43 extern unsigned int do_IRQ(struct pt_regs *regs);
44
45 /* Interrupt vector management */
46 extern DECLARE_BITMAP(used_vectors, NR_VECTORS);
47 extern int vector_used_by_percpu_irq(unsigned int vector);
48
49 extern void init_ISA_irqs(void);
50
51 #endif /* _ASM_X86_IRQ_H */