]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/include/asm/irq.h
x86, irq: Don't block IRQ0_VECTOR..IRQ15_VECTOR's on all cpu's
[net-next-2.6.git] / arch / x86 / include / asm / irq.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_IRQ_H
2#define _ASM_X86_IRQ_H
22067d45
TG
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
13static inline int irq_canonicalize(int irq)
14{
15 return ((irq == 2) ? 9 : irq);
16}
17
18#ifdef CONFIG_X86_LOCAL_APIC
19# define ARCH_HAS_NMI_WATCHDOG
20#endif
21
22#ifdef CONFIG_4KSTACKS
23 extern void irq_ctx_init(int cpu);
24 extern void irq_ctx_exit(int cpu);
25# define __ARCH_HAS_DO_SOFTIRQ
96a388de 26#else
22067d45
TG
27# define irq_ctx_init(cpu) do { } while (0)
28# define irq_ctx_exit(cpu) do { } while (0)
29# ifdef CONFIG_X86_64
30# define __ARCH_HAS_DO_SOFTIRQ
31# endif
32#endif
33
22067d45
TG
34#ifdef CONFIG_HOTPLUG_CPU
35#include <linux/cpumask.h>
d7b381bb 36extern void fixup_irqs(void);
a5e74b84 37extern void irq_force_complete_move(int);
96a388de 38#endif
22067d45 39
4a4de9c7 40extern void (*x86_platform_ipi_callback)(void);
22067d45 41extern void native_init_IRQ(void);
9b2b76a3 42extern bool handle_irq(unsigned irq, struct pt_regs *regs);
22067d45 43
7c1d7cdc
JF
44extern unsigned int do_IRQ(struct pt_regs *regs);
45
22067d45
TG
46/* Interrupt vector management */
47extern DECLARE_BITMAP(used_vectors, NR_VECTORS);
b77b881f 48extern int vector_used_by_percpu_irq(unsigned int vector);
22067d45 49
d9112f43 50extern void init_ISA_irqs(void);
97943390 51extern int nr_legacy_irqs;
d9112f43 52
1965aae3 53#endif /* _ASM_X86_IRQ_H */