blob: ae80f64973e01c74d8381e2530a47fc88c16dab9 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_HW_IRQ_H
2#define _ASM_X86_HW_IRQ_H
Thomas Gleixner2e088432008-05-02 19:00:30 +02003
4/*
5 * (C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar
6 *
7 * moved some of the old arch/i386/kernel/irq.h to here. VY
8 *
9 * IRQ/IPI changes taken from work by Thomas Radke
10 * <tomsoft@informatik.tu-chemnitz.de>
11 *
12 * hacked by Andi Kleen for x86-64.
13 * unified by tglx
14 */
15
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020016#include <asm/irq_vectors.h>
Thomas Gleixner2e088432008-05-02 19:00:30 +020017
18#ifndef __ASSEMBLY__
19
20#include <linux/percpu.h>
21#include <linux/profile.h>
22#include <linux/smp.h>
23
24#include <asm/atomic.h>
25#include <asm/irq.h>
26#include <asm/sections.h>
27
Thomas Gleixner2e088432008-05-02 19:00:30 +020028/* Interrupt handlers registered during init_IRQ */
29extern void apic_timer_interrupt(void);
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060030extern void generic_interrupt(void);
Thomas Gleixner2e088432008-05-02 19:00:30 +020031extern void error_interrupt(void);
Ingo Molnar241771e2008-12-03 10:39:53 +010032extern void perf_counter_interrupt(void);
33
Thomas Gleixner2e088432008-05-02 19:00:30 +020034extern void spurious_interrupt(void);
35extern void thermal_interrupt(void);
36extern void reschedule_interrupt(void);
37
38extern void invalidate_interrupt(void);
39extern void invalidate_interrupt0(void);
40extern void invalidate_interrupt1(void);
41extern void invalidate_interrupt2(void);
42extern void invalidate_interrupt3(void);
43extern void invalidate_interrupt4(void);
44extern void invalidate_interrupt5(void);
45extern void invalidate_interrupt6(void);
46extern void invalidate_interrupt7(void);
47
48extern void irq_move_cleanup_interrupt(void);
49extern void threshold_interrupt(void);
50
51extern void call_function_interrupt(void);
Ingo Molnar1a781a72008-07-15 21:55:59 +020052extern void call_function_single_interrupt(void);
Thomas Gleixner2e088432008-05-02 19:00:30 +020053
54/* PIC specific functions */
55extern void disable_8259A_irq(unsigned int irq);
56extern void enable_8259A_irq(unsigned int irq);
57extern int i8259A_irq_pending(unsigned int irq);
58extern void make_8259A_irq(unsigned int irq);
59extern void init_8259A(int aeoi);
60
61/* IOAPIC */
Yinghai Luabcaa2b2009-02-08 16:18:03 -080062#define IO_APIC_IRQ(x) (((x) >= NR_IRQS_LEGACY) || ((1<<(x)) & io_apic_irqs))
Thomas Gleixner2e088432008-05-02 19:00:30 +020063extern unsigned long io_apic_irqs;
64
65extern void init_VISWS_APIC_irqs(void);
66extern void setup_IO_APIC(void);
67extern void disable_IO_APIC(void);
Thomas Gleixner2e088432008-05-02 19:00:30 +020068extern int IO_APIC_get_PCI_irq_vector(int bus, int slot, int fn);
69extern void setup_ioapic_dest(void);
70
Thomas Gleixner97e7b6f2008-05-02 22:02:25 +020071extern void enable_IO_APIC(void);
Thomas Gleixner2e088432008-05-02 19:00:30 +020072
73/* Statistics */
74extern atomic_t irq_err_count;
75extern atomic_t irq_mis_count;
76
Thomas Gleixner1a331952008-05-03 00:30:50 +020077/* EISA */
78extern void eisa_set_level_irq(unsigned int irq);
79
Jaswinder Singh2b97df02008-07-23 17:13:14 +053080/* SMP */
81extern void smp_apic_timer_interrupt(struct pt_regs *);
Jaswinder Singh2b97df02008-07-23 17:13:14 +053082extern void smp_spurious_interrupt(struct pt_regs *);
83extern void smp_error_interrupt(struct pt_regs *);
Ingo Molnar3e5095d2009-01-27 17:07:08 +010084#ifdef CONFIG_SMP
Jaswinder Singhe7f08df2008-07-25 10:42:26 +053085extern void smp_reschedule_interrupt(struct pt_regs *);
86extern void smp_call_function_interrupt(struct pt_regs *);
87extern void smp_call_function_single_interrupt(struct pt_regs *);
Jaswinder Singhb2139aa2008-07-25 11:32:38 +053088#ifdef CONFIG_X86_32
89extern void smp_invalidate_interrupt(struct pt_regs *);
90#else
91extern asmlinkage void smp_invalidate_interrupt(struct pt_regs *);
92#endif
Jaswinder Singhe7f08df2008-07-25 10:42:26 +053093#endif
Jaswinder Singh2b97df02008-07-23 17:13:14 +053094
H. Peter Anvin46875182008-11-11 13:03:07 -080095extern void (*__initconst interrupt[NR_VECTORS-FIRST_EXTERNAL_VECTOR])(void);
Eric W. Biedermand388e5f2008-08-09 15:09:02 -070096
Yinghai Lu497c9a12008-08-19 20:50:28 -070097typedef int vector_irq_t[NR_VECTORS];
98DECLARE_PER_CPU(vector_irq_t, vector_irq);
99
100#ifdef CONFIG_X86_IO_APIC
Eric W. Biedermand388e5f2008-08-09 15:09:02 -0700101extern void lock_vector_lock(void);
102extern void unlock_vector_lock(void);
103extern void __setup_vector_irq(int cpu);
104#else
105static inline void lock_vector_lock(void) {}
106static inline void unlock_vector_lock(void) {}
107static inline void __setup_vector_irq(int cpu) {}
108#endif
Thomas Gleixner2e088432008-05-02 19:00:30 +0200109
Thomas Gleixner22dc12d2008-05-02 22:10:39 +0200110#endif /* !ASSEMBLY_ */
111
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700112#endif /* _ASM_X86_HW_IRQ_H */