]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/include/asm/hw_irq.h
x86: apic/x2apic_cluster.c x86_cpu_to_logical_apicid should be static
[mirror_ubuntu-artful-kernel.git] / arch / x86 / include / asm / hw_irq.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_HW_IRQ_H
2#define _ASM_X86_HW_IRQ_H
2e088436
TG
3
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
9b7dc567 16#include <asm/irq_vectors.h>
2e088436
TG
17
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
2e088436
TG
28/* Interrupt handlers registered during init_IRQ */
29extern void apic_timer_interrupt(void);
acaabe79 30extern void generic_interrupt(void);
2e088436
TG
31extern void error_interrupt(void);
32extern void spurious_interrupt(void);
33extern void thermal_interrupt(void);
34extern void reschedule_interrupt(void);
35
36extern void invalidate_interrupt(void);
37extern void invalidate_interrupt0(void);
38extern void invalidate_interrupt1(void);
39extern void invalidate_interrupt2(void);
40extern void invalidate_interrupt3(void);
41extern void invalidate_interrupt4(void);
42extern void invalidate_interrupt5(void);
43extern void invalidate_interrupt6(void);
44extern void invalidate_interrupt7(void);
45
46extern void irq_move_cleanup_interrupt(void);
47extern void threshold_interrupt(void);
48
49extern void call_function_interrupt(void);
1a781a77 50extern void call_function_single_interrupt(void);
2e088436
TG
51
52/* PIC specific functions */
53extern void disable_8259A_irq(unsigned int irq);
54extern void enable_8259A_irq(unsigned int irq);
55extern int i8259A_irq_pending(unsigned int irq);
56extern void make_8259A_irq(unsigned int irq);
57extern void init_8259A(int aeoi);
58
59/* IOAPIC */
abcaa2b8 60#define IO_APIC_IRQ(x) (((x) >= NR_IRQS_LEGACY) || ((1<<(x)) & io_apic_irqs))
2e088436
TG
61extern unsigned long io_apic_irqs;
62
63extern void init_VISWS_APIC_irqs(void);
64extern void setup_IO_APIC(void);
65extern void disable_IO_APIC(void);
2e088436
TG
66extern int IO_APIC_get_PCI_irq_vector(int bus, int slot, int fn);
67extern void setup_ioapic_dest(void);
68
97e7b6f5 69extern void enable_IO_APIC(void);
97e7b6f5 70
2e088436
TG
71/* Statistics */
72extern atomic_t irq_err_count;
73extern atomic_t irq_mis_count;
74
1a331957
TG
75/* EISA */
76extern void eisa_set_level_irq(unsigned int irq);
77
2b97df06
JS
78/* SMP */
79extern void smp_apic_timer_interrupt(struct pt_regs *);
2b97df06
JS
80extern void smp_spurious_interrupt(struct pt_regs *);
81extern void smp_error_interrupt(struct pt_regs *);
3e5095d1 82#ifdef CONFIG_SMP
e7f08dfd
JS
83extern void smp_reschedule_interrupt(struct pt_regs *);
84extern void smp_call_function_interrupt(struct pt_regs *);
85extern void smp_call_function_single_interrupt(struct pt_regs *);
b2139aa0
JS
86#ifdef CONFIG_X86_32
87extern void smp_invalidate_interrupt(struct pt_regs *);
88#else
89extern asmlinkage void smp_invalidate_interrupt(struct pt_regs *);
90#endif
e7f08dfd 91#endif
2b97df06 92
4687518c 93extern void (*__initconst interrupt[NR_VECTORS-FIRST_EXTERNAL_VECTOR])(void);
497c9a19 94
22dc12d1
TG
95typedef int vector_irq_t[NR_VECTORS];
96DECLARE_PER_CPU(vector_irq_t, vector_irq);
d388e5fd 97
497c9a19 98#ifdef CONFIG_X86_IO_APIC
d388e5fd
EB
99extern void lock_vector_lock(void);
100extern void unlock_vector_lock(void);
101extern void __setup_vector_irq(int cpu);
102#else
103static inline void lock_vector_lock(void) {}
104static inline void unlock_vector_lock(void) {}
105static inline void __setup_vector_irq(int cpu) {}
106#endif
2e088436 107
22dc12d1
TG
108#endif /* !ASSEMBLY_ */
109
1965aae3 110#endif /* _ASM_X86_HW_IRQ_H */