1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_HW_IRQ_H
3 #define _ASM_X86_HW_IRQ_H
6 * (C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar
8 * moved some of the old arch/i386/kernel/irq.h to here. VY
10 * IRQ/IPI changes taken from work by Thomas Radke
13 * hacked by Andi Kleen for x86-64.
17 #include <asm/irq_vectors.h>
19 #define IRQ_MATRIX_BITS NR_VECTORS
23 #include <linux/percpu.h>
24 #include <linux/profile.h>
25 #include <linux/smp.h>
27 #include <linux/atomic.h>
29 #include <asm/sections.h>
31 /* Interrupt handlers registered during init_IRQ */
32 extern asmlinkage void apic_timer_interrupt(void);
33 extern asmlinkage void x86_platform_ipi(void);
34 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 extern asmlinkage void error_interrupt(void);
38 extern asmlinkage void irq_work_interrupt(void);
39 extern asmlinkage void uv_bau_message_intr1(void);
41 extern asmlinkage void spurious_interrupt(void);
42 extern asmlinkage void thermal_interrupt(void);
43 extern asmlinkage void reschedule_interrupt(void);
45 extern asmlinkage void irq_move_cleanup_interrupt(void);
46 extern asmlinkage void reboot_interrupt(void);
47 extern asmlinkage void threshold_interrupt(void);
48 extern asmlinkage void deferred_error_interrupt(void);
50 extern asmlinkage void call_function_interrupt(void);
51 extern asmlinkage void call_function_single_interrupt(void);
53 #ifdef CONFIG_X86_LOCAL_APIC
59 X86_IRQ_ALLOC_TYPE_IOAPIC = 1,
60 X86_IRQ_ALLOC_TYPE_HPET,
61 X86_IRQ_ALLOC_TYPE_MSI,
62 X86_IRQ_ALLOC_TYPE_MSIX,
63 X86_IRQ_ALLOC_TYPE_DMAR,
64 X86_IRQ_ALLOC_TYPE_UV,
67 struct irq_alloc_info {
68 enum irq_alloc_type type;
70 const struct cpumask *mask; /* CPU mask for vector allocation */
73 #ifdef CONFIG_HPET_TIMER
82 struct pci_dev *msi_dev;
83 irq_hw_number_t msi_hwirq;
86 #ifdef CONFIG_X86_IO_APIC
91 u32 ioapic_trigger : 1;
92 u32 ioapic_polarity : 1;
94 struct IO_APIC_route_entry *ioapic_entry;
97 #ifdef CONFIG_DMAR_TABLE
107 unsigned long uv_offset;
111 #if IS_ENABLED(CONFIG_VMD)
113 struct msi_desc *desc;
120 unsigned int dest_apicid;
124 extern struct irq_cfg *irq_cfg(unsigned int irq);
125 extern struct irq_cfg *irqd_cfg(struct irq_data *irq_data);
126 extern void lock_vector_lock(void);
127 extern void unlock_vector_lock(void);
129 extern void send_cleanup_vector(struct irq_cfg *);
130 extern void irq_complete_move(struct irq_cfg *cfg);
132 static inline void send_cleanup_vector(struct irq_cfg *c) { }
133 static inline void irq_complete_move(struct irq_cfg *c) { }
136 extern void apic_ack_edge(struct irq_data *data);
137 #else /* CONFIG_X86_LOCAL_APIC */
138 static inline void lock_vector_lock(void) {}
139 static inline void unlock_vector_lock(void) {}
140 #endif /* CONFIG_X86_LOCAL_APIC */
143 extern atomic_t irq_err_count;
144 extern atomic_t irq_mis_count;
146 extern void elcr_set_level_irq(unsigned int irq);
148 extern char irq_entries_start[];
149 #ifdef CONFIG_TRACING
150 #define trace_irq_entries_start irq_entries_start
153 extern char spurious_entries_start[];
155 #define VECTOR_UNUSED NULL
156 #define VECTOR_SHUTDOWN ((void *)-1L)
157 #define VECTOR_RETRIGGERED ((void *)-2L)
159 typedef struct irq_desc* vector_irq_t[NR_VECTORS];
160 DECLARE_PER_CPU(vector_irq_t, vector_irq);
162 #endif /* !ASSEMBLY_ */
164 #endif /* _ASM_X86_HW_IRQ_H */