blob: 0bf5b00836502fb6512609bbad05fbc3eaa96320 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_IRQ_H
2#define _ASM_X86_IRQ_H
Thomas Gleixner22067d42008-05-02 22:14:44 +02003/*
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
Thomas Gleixner96a388d2007-10-11 11:20:03 +020020#endif
Thomas Gleixner22067d42008-05-02 22:14:44 +020021
Christoph Hellwig79748912010-06-28 14:15:54 +020022#ifdef CONFIG_X86_32
23extern void irq_ctx_init(int cpu);
24extern void irq_ctx_exit(int cpu);
Thomas Gleixner22067d42008-05-02 22:14:44 +020025#else
26# define irq_ctx_init(cpu) do { } while (0)
27# define irq_ctx_exit(cpu) do { } while (0)
Thomas Gleixner22067d42008-05-02 22:14:44 +020028#endif
29
Christoph Hellwig79748912010-06-28 14:15:54 +020030#define __ARCH_HAS_DO_SOFTIRQ
31
Thomas Gleixner22067d42008-05-02 22:14:44 +020032#ifdef CONFIG_HOTPLUG_CPU
33#include <linux/cpumask.h>
Mike Travisd7b381b2008-12-16 17:33:58 -080034extern void fixup_irqs(void);
Suresh Siddhaa5e74b82009-10-26 14:24:34 -080035extern void irq_force_complete_move(int);
Thomas Gleixner22067d42008-05-02 22:14:44 +020036#endif
37
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -050038extern void (*x86_platform_ipi_callback)(void);
Thomas Gleixner22067d42008-05-02 22:14:44 +020039extern void native_init_IRQ(void);
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -080040extern bool handle_irq(unsigned irq, struct pt_regs *regs);
Thomas Gleixner22067d42008-05-02 22:14:44 +020041
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -080042extern unsigned int do_IRQ(struct pt_regs *regs);
43
Thomas Gleixner22067d42008-05-02 22:14:44 +020044/* Interrupt vector management */
45extern DECLARE_BITMAP(used_vectors, NR_VECTORS);
Yinghai Lub77b8812008-12-19 15:23:44 -080046extern int vector_used_by_percpu_irq(unsigned int vector);
Thomas Gleixner22067d42008-05-02 22:14:44 +020047
Thomas Gleixnerd9112f42009-08-20 09:41:38 +020048extern void init_ISA_irqs(void);
49
H. Peter Anvin1965aae2008-10-22 22:26:29 -070050#endif /* _ASM_X86_IRQ_H */