hw_irq.h 3.8 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
H
H. Peter Anvin 已提交
2 3
#ifndef _ASM_X86_HW_IRQ_H
#define _ASM_X86_HW_IRQ_H
4 5 6 7 8 9 10 11 12 13 14 15 16

/*
 * (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
 */

17
#include <asm/irq_vectors.h>
18

19 20
#define IRQ_MATRIX_BITS		NR_VECTORS

21 22 23 24 25 26
#ifndef __ASSEMBLY__

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

A
Arun Sharma 已提交
27
#include <linux/atomic.h>
28 29 30 31
#include <asm/irq.h>
#include <asm/sections.h>

/* Interrupt handlers registered during init_IRQ */
32 33 34
extern asmlinkage void apic_timer_interrupt(void);
extern asmlinkage void x86_platform_ipi(void);
extern asmlinkage void kvm_posted_intr_ipi(void);
35
extern asmlinkage void kvm_posted_intr_wakeup_ipi(void);
36
extern asmlinkage void kvm_posted_intr_nested_ipi(void);
37 38
extern asmlinkage void error_interrupt(void);
extern asmlinkage void irq_work_interrupt(void);
39
extern asmlinkage void uv_bau_message_intr1(void);
40 41 42 43 44 45 46 47

extern asmlinkage void spurious_interrupt(void);
extern asmlinkage void thermal_interrupt(void);
extern asmlinkage void reschedule_interrupt(void);

extern asmlinkage void irq_move_cleanup_interrupt(void);
extern asmlinkage void reboot_interrupt(void);
extern asmlinkage void threshold_interrupt(void);
48
extern asmlinkage void deferred_error_interrupt(void);
49 50 51

extern asmlinkage void call_function_interrupt(void);
extern asmlinkage void call_function_single_interrupt(void);
52

53
#ifdef	CONFIG_X86_LOCAL_APIC
54
struct irq_data;
55 56 57 58 59 60 61 62
struct pci_dev;
struct msi_desc;

enum irq_alloc_type {
	X86_IRQ_ALLOC_TYPE_IOAPIC = 1,
	X86_IRQ_ALLOC_TYPE_HPET,
	X86_IRQ_ALLOC_TYPE_MSI,
	X86_IRQ_ALLOC_TYPE_MSIX,
63
	X86_IRQ_ALLOC_TYPE_DMAR,
64
	X86_IRQ_ALLOC_TYPE_UV,
65
};
66 67

struct irq_alloc_info {
68
	enum irq_alloc_type	type;
69 70
	u32			flags;
	const struct cpumask	*mask;	/* CPU mask for vector allocation */
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
	union {
		int		unused;
#ifdef	CONFIG_HPET_TIMER
		struct {
			int		hpet_id;
			int		hpet_index;
			void		*hpet_data;
		};
#endif
#ifdef	CONFIG_PCI_MSI
		struct {
			struct pci_dev	*msi_dev;
			irq_hw_number_t	msi_hwirq;
		};
#endif
#ifdef	CONFIG_X86_IO_APIC
		struct {
			int		ioapic_id;
			int		ioapic_pin;
			int		ioapic_node;
			u32		ioapic_trigger : 1;
			u32		ioapic_polarity : 1;
			u32		ioapic_valid : 1;
			struct IO_APIC_route_entry *ioapic_entry;
		};
96 97 98 99 100 101
#endif
#ifdef	CONFIG_DMAR_TABLE
		struct {
			int		dmar_id;
			void		*dmar_data;
		};
102
#endif
103 104 105 106 107 108 109
#ifdef	CONFIG_X86_UV
		struct {
			int		uv_limit;
			int		uv_blade;
			unsigned long	uv_offset;
			char		*uv_name;
		};
110 111 112 113 114
#endif
#if IS_ENABLED(CONFIG_VMD)
		struct {
			struct msi_desc *desc;
		};
115 116
#endif
	};
117 118
};

119
struct irq_cfg {
120
	unsigned int		dest_apicid;
121
	unsigned int		vector;
122 123
};

124 125
extern struct irq_cfg *irq_cfg(unsigned int irq);
extern struct irq_cfg *irqd_cfg(struct irq_data *irq_data);
126 127
extern void lock_vector_lock(void);
extern void unlock_vector_lock(void);
128
#ifdef CONFIG_SMP
129
extern void send_cleanup_vector(struct irq_cfg *);
130
extern void irq_complete_move(struct irq_cfg *cfg);
131 132
#else
static inline void send_cleanup_vector(struct irq_cfg *c) { }
133
static inline void irq_complete_move(struct irq_cfg *c) { }
134
#endif
I
Ingo Molnar 已提交
135

136 137
extern void apic_ack_edge(struct irq_data *data);
#else	/*  CONFIG_X86_LOCAL_APIC */
138 139
static inline void lock_vector_lock(void) {}
static inline void unlock_vector_lock(void) {}
140
#endif	/* CONFIG_X86_LOCAL_APIC */
141

142 143 144 145
/* Statistics */
extern atomic_t irq_err_count;
extern atomic_t irq_mis_count;

146
extern void elcr_set_level_irq(unsigned int irq);
147

148
extern char irq_entries_start[];
149
#ifdef CONFIG_TRACING
150
#define trace_irq_entries_start irq_entries_start
151
#endif
152

153 154
#define VECTOR_UNUSED		NULL
#define VECTOR_RETRIGGERED	((void *)~0UL)
155

156
typedef struct irq_desc* vector_irq_t[NR_VECTORS];
T
Thomas Gleixner 已提交
157
DECLARE_PER_CPU(vector_irq_t, vector_irq);
158

T
Thomas Gleixner 已提交
159 160
#endif /* !ASSEMBLY_ */

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