hw_irq.h 4.1 KB
Newer Older
H
H. Peter Anvin 已提交
1 2
#ifndef _ASM_X86_HW_IRQ_H
#define _ASM_X86_HW_IRQ_H
3 4 5 6 7 8 9 10 11 12 13 14 15

/*
 * (C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar
 *
 * moved some of the old arch/i386/kernel/irq.h to here. VY
 *
 * IRQ/IPI changes taken from work by Thomas Radke
 * <tomsoft@informatik.tu-chemnitz.de>
 *
 * hacked by Andi Kleen for x86-64.
 * unified by tglx
 */

16
#include <asm/irq_vectors.h>
17 18 19 20 21 22 23 24 25 26 27 28 29

#ifndef __ASSEMBLY__

#include <linux/percpu.h>
#include <linux/profile.h>
#include <linux/smp.h>

#include <asm/atomic.h>
#include <asm/irq.h>
#include <asm/sections.h>

/* Interrupt handlers registered during init_IRQ */
extern void apic_timer_interrupt(void);
30
extern void x86_platform_ipi(void);
31
extern void error_interrupt(void);
32
extern void perf_pending_interrupt(void);
I
Ingo Molnar 已提交
33

34 35 36
extern void spurious_interrupt(void);
extern void thermal_interrupt(void);
extern void reschedule_interrupt(void);
37
extern void mce_self_interrupt(void);
38 39 40 41 42 43 44 45 46 47 48 49

extern void invalidate_interrupt(void);
extern void invalidate_interrupt0(void);
extern void invalidate_interrupt1(void);
extern void invalidate_interrupt2(void);
extern void invalidate_interrupt3(void);
extern void invalidate_interrupt4(void);
extern void invalidate_interrupt5(void);
extern void invalidate_interrupt6(void);
extern void invalidate_interrupt7(void);

extern void irq_move_cleanup_interrupt(void);
50
extern void reboot_interrupt(void);
51 52 53
extern void threshold_interrupt(void);

extern void call_function_interrupt(void);
54
extern void call_function_single_interrupt(void);
55 56

/* IOAPIC */
57
#define IO_APIC_IRQ(x) (((x) >= NR_IRQS_LEGACY) || ((1<<(x)) & io_apic_irqs))
58 59 60 61 62
extern unsigned long io_apic_irqs;

extern void init_VISWS_APIC_irqs(void);
extern void setup_IO_APIC(void);
extern void disable_IO_APIC(void);
63 64 65 66 67 68 69 70 71 72 73 74

struct io_apic_irq_attr {
	int ioapic;
	int ioapic_pin;
	int trigger;
	int polarity;
};

static inline void set_io_apic_irq_attr(struct io_apic_irq_attr *irq_attr,
					int ioapic, int ioapic_pin,
					int trigger, int polarity)
{
75 76 77 78
	irq_attr->ioapic	= ioapic;
	irq_attr->ioapic_pin	= ioapic_pin;
	irq_attr->trigger	= trigger;
	irq_attr->polarity	= polarity;
79 80
}

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
/*
 * This is performance-critical, we want to do it O(1)
 *
 * Most irqs are mapped 1:1 with pins.
 */
struct irq_cfg {
	struct irq_pin_list	*irq_2_pin;
	cpumask_var_t		domain;
	cpumask_var_t		old_domain;
	u8			vector;
	u8			move_in_progress : 1;
};

extern struct irq_cfg *irq_cfg(unsigned int);
extern int assign_irq_vector(int, struct irq_cfg *, const struct cpumask *);
extern void send_cleanup_vector(struct irq_cfg *);
I
Ingo Molnar 已提交
97 98

struct irq_desc;
99 100
extern unsigned int set_desc_affinity(struct irq_desc *, const struct cpumask *,
				      unsigned int *dest_id);
101
extern int IO_APIC_get_PCI_irq_vector(int bus, int devfn, int pin, struct io_apic_irq_attr *irq_attr);
102 103
extern void setup_ioapic_dest(void);

104 105
extern void enable_IO_APIC(void);

106 107 108 109
/* Statistics */
extern atomic_t irq_err_count;
extern atomic_t irq_mis_count;

110 111 112
/* EISA */
extern void eisa_set_level_irq(unsigned int irq);

113 114 115
/* SMP */
extern void smp_apic_timer_interrupt(struct pt_regs *);
extern void smp_spurious_interrupt(struct pt_regs *);
116
extern void smp_x86_platform_ipi(struct pt_regs *);
117
extern void smp_error_interrupt(struct pt_regs *);
118 119 120
#ifdef CONFIG_X86_IO_APIC
extern asmlinkage void smp_irq_move_cleanup_interrupt(void);
#endif
121
#ifdef CONFIG_SMP
122 123 124
extern void smp_reschedule_interrupt(struct pt_regs *);
extern void smp_call_function_interrupt(struct pt_regs *);
extern void smp_call_function_single_interrupt(struct pt_regs *);
125 126 127 128 129
#ifdef CONFIG_X86_32
extern void smp_invalidate_interrupt(struct pt_regs *);
#else
extern asmlinkage void smp_invalidate_interrupt(struct pt_regs *);
#endif
130
#endif
131

132
extern void (*__initconst interrupt[NR_VECTORS-FIRST_EXTERNAL_VECTOR])(void);
133

T
Thomas Gleixner 已提交
134 135
typedef int vector_irq_t[NR_VECTORS];
DECLARE_PER_CPU(vector_irq_t, vector_irq);
136
extern void setup_vector_irq(int cpu);
137

138
#ifdef CONFIG_X86_IO_APIC
139 140 141 142 143 144 145 146
extern void lock_vector_lock(void);
extern void unlock_vector_lock(void);
extern void __setup_vector_irq(int cpu);
#else
static inline void lock_vector_lock(void) {}
static inline void unlock_vector_lock(void) {}
static inline void __setup_vector_irq(int cpu) {}
#endif
147

T
Thomas Gleixner 已提交
148 149
#endif /* !ASSEMBLY_ */

H
H. Peter Anvin 已提交
150
#endif /* _ASM_X86_HW_IRQ_H */