xref: /linux/arch/x86/kernel/idt.c (revision 5a2bafca1b0675a126143eea3610143130347783)
182c73e0aSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
2d8ed9d48SThomas Gleixner /*
3d8ed9d48SThomas Gleixner  * Interrupt descriptor table related code
4d8ed9d48SThomas Gleixner  */
5d8ed9d48SThomas Gleixner #include <linux/interrupt.h>
6d8ed9d48SThomas Gleixner 
73318e974SThomas Gleixner #include <asm/traps.h>
83318e974SThomas Gleixner #include <asm/proto.h>
9d8ed9d48SThomas Gleixner #include <asm/desc.h>
10447ae316SNicolai Stange #include <asm/hw_irq.h>
11d8ed9d48SThomas Gleixner 
123318e974SThomas Gleixner struct idt_data {
133318e974SThomas Gleixner 	unsigned int	vector;
143318e974SThomas Gleixner 	unsigned int	segment;
153318e974SThomas Gleixner 	struct idt_bits	bits;
163318e974SThomas Gleixner 	const void	*addr;
173318e974SThomas Gleixner };
183318e974SThomas Gleixner 
193318e974SThomas Gleixner #define DPL0		0x0
203318e974SThomas Gleixner #define DPL3		0x3
213318e974SThomas Gleixner 
223318e974SThomas Gleixner #define DEFAULT_STACK	0
233318e974SThomas Gleixner 
243318e974SThomas Gleixner #define G(_vector, _addr, _ist, _type, _dpl, _segment)	\
253318e974SThomas Gleixner 	{						\
263318e974SThomas Gleixner 		.vector		= _vector,		\
273318e974SThomas Gleixner 		.bits.ist	= _ist,			\
283318e974SThomas Gleixner 		.bits.type	= _type,		\
293318e974SThomas Gleixner 		.bits.dpl	= _dpl,			\
303318e974SThomas Gleixner 		.bits.p		= 1,			\
313318e974SThomas Gleixner 		.addr		= _addr,		\
323318e974SThomas Gleixner 		.segment	= _segment,		\
333318e974SThomas Gleixner 	}
343318e974SThomas Gleixner 
353318e974SThomas Gleixner /* Interrupt gate */
363318e974SThomas Gleixner #define INTG(_vector, _addr)				\
373318e974SThomas Gleixner 	G(_vector, _addr, DEFAULT_STACK, GATE_INTERRUPT, DPL0, __KERNEL_CS)
383318e974SThomas Gleixner 
393318e974SThomas Gleixner /* System interrupt gate */
403318e974SThomas Gleixner #define SYSG(_vector, _addr)				\
413318e974SThomas Gleixner 	G(_vector, _addr, DEFAULT_STACK, GATE_INTERRUPT, DPL3, __KERNEL_CS)
423318e974SThomas Gleixner 
438f34c5b5SThomas Gleixner /*
448f34c5b5SThomas Gleixner  * Interrupt gate with interrupt stack. The _ist index is the index in
458f34c5b5SThomas Gleixner  * the tss.ist[] array, but for the descriptor it needs to start at 1.
468f34c5b5SThomas Gleixner  */
473318e974SThomas Gleixner #define ISTG(_vector, _addr, _ist)			\
488f34c5b5SThomas Gleixner 	G(_vector, _addr, _ist + 1, GATE_INTERRUPT, DPL0, __KERNEL_CS)
493318e974SThomas Gleixner 
503318e974SThomas Gleixner /* Task gate */
513318e974SThomas Gleixner #define TSKG(_vector, _gdt)				\
523318e974SThomas Gleixner 	G(_vector, NULL, DEFAULT_STACK, GATE_TASK, DPL0, _gdt << 3)
533318e974SThomas Gleixner 
54*5a2bafcaSThomas Gleixner #define IDT_TABLE_SIZE		(IDT_ENTRIES * sizeof(gate_desc))
5506184325SVitaly Kuznetsov 
5606184325SVitaly Kuznetsov static bool idt_setup_done __initdata;
5706184325SVitaly Kuznetsov 
58433f8924SThomas Gleixner /*
59433f8924SThomas Gleixner  * Early traps running on the DEFAULT_STACK because the other interrupt
60433f8924SThomas Gleixner  * stacks work only after cpu_init().
61433f8924SThomas Gleixner  */
62327867faSAndi Kleen static const __initconst struct idt_data early_idts[] = {
632bbc68f8SThomas Gleixner 	INTG(X86_TRAP_DB,		asm_exc_debug),
648edd7e37SThomas Gleixner 	SYSG(X86_TRAP_BP,		asm_exc_int3),
6594438af4SThomas Gleixner 
66433f8924SThomas Gleixner #ifdef CONFIG_X86_32
6794438af4SThomas Gleixner 	/*
6894438af4SThomas Gleixner 	 * Not possible on 64-bit. See idt_setup_early_pf() for details.
6994438af4SThomas Gleixner 	 */
7091eeafeaSThomas Gleixner 	INTG(X86_TRAP_PF,		asm_exc_page_fault),
71433f8924SThomas Gleixner #endif
72433f8924SThomas Gleixner };
73433f8924SThomas Gleixner 
74b70543a0SThomas Gleixner /*
75b70543a0SThomas Gleixner  * The default IDT entries which are set up in trap_init() before
76b70543a0SThomas Gleixner  * cpu_init() is invoked. Interrupt stacks cannot be used at that point and
77b70543a0SThomas Gleixner  * the traps which use them are reinitialized with IST after cpu_init() has
78b70543a0SThomas Gleixner  * set up TSS.
79b70543a0SThomas Gleixner  */
80327867faSAndi Kleen static const __initconst struct idt_data def_idts[] = {
819d06c402SThomas Gleixner 	INTG(X86_TRAP_DE,		asm_exc_divide_error),
826271fef0SThomas Gleixner 	INTG(X86_TRAP_NMI,		asm_exc_nmi),
8358d9c81fSThomas Gleixner 	INTG(X86_TRAP_BR,		asm_exc_bounds),
8449893c5cSThomas Gleixner 	INTG(X86_TRAP_UD,		asm_exc_invalid_op),
85866ae2ccSThomas Gleixner 	INTG(X86_TRAP_NM,		asm_exc_device_not_available),
86f95658fdSThomas Gleixner 	INTG(X86_TRAP_OLD_MF,		asm_exc_coproc_segment_overrun),
8797b3d290SThomas Gleixner 	INTG(X86_TRAP_TS,		asm_exc_invalid_tss),
8899a3fb8dSThomas Gleixner 	INTG(X86_TRAP_NP,		asm_exc_segment_not_present),
89fd9689bfSThomas Gleixner 	INTG(X86_TRAP_SS,		asm_exc_stack_segment),
90be4c11afSThomas Gleixner 	INTG(X86_TRAP_GP,		asm_exc_general_protection),
91dad7106fSThomas Gleixner 	INTG(X86_TRAP_SPURIOUS,		asm_exc_spurious_interrupt_bug),
9214a8bd2aSThomas Gleixner 	INTG(X86_TRAP_MF,		asm_exc_coprocessor_error),
93436608bbSThomas Gleixner 	INTG(X86_TRAP_AC,		asm_exc_alignment_check),
9448227e21SThomas Gleixner 	INTG(X86_TRAP_XF,		asm_exc_simd_coprocessor_error),
95b70543a0SThomas Gleixner 
96b70543a0SThomas Gleixner #ifdef CONFIG_X86_32
97b70543a0SThomas Gleixner 	TSKG(X86_TRAP_DF,		GDT_ENTRY_DOUBLEFAULT_TSS),
98b70543a0SThomas Gleixner #else
99c29c775aSThomas Gleixner 	INTG(X86_TRAP_DF,		asm_exc_double_fault),
100b70543a0SThomas Gleixner #endif
1012bbc68f8SThomas Gleixner 	INTG(X86_TRAP_DB,		asm_exc_debug),
102b70543a0SThomas Gleixner 
103b70543a0SThomas Gleixner #ifdef CONFIG_X86_MCE
1048cd501c1SThomas Gleixner 	INTG(X86_TRAP_MC,		asm_exc_machine_check),
105b70543a0SThomas Gleixner #endif
106b70543a0SThomas Gleixner 
1074b6b9111SThomas Gleixner 	SYSG(X86_TRAP_OF,		asm_exc_overflow),
108b70543a0SThomas Gleixner #if defined(CONFIG_IA32_EMULATION)
109b70543a0SThomas Gleixner 	SYSG(IA32_SYSCALL_VECTOR,	entry_INT80_compat),
110b70543a0SThomas Gleixner #elif defined(CONFIG_X86_32)
111b70543a0SThomas Gleixner 	SYSG(IA32_SYSCALL_VECTOR,	entry_INT80_32),
112b70543a0SThomas Gleixner #endif
113b70543a0SThomas Gleixner };
114b70543a0SThomas Gleixner 
115636a7598SThomas Gleixner /*
116636a7598SThomas Gleixner  * The APIC and SMP idt entries
117636a7598SThomas Gleixner  */
118327867faSAndi Kleen static const __initconst struct idt_data apic_idts[] = {
119636a7598SThomas Gleixner #ifdef CONFIG_SMP
12013cad985SThomas Gleixner 	INTG(RESCHEDULE_VECTOR,			asm_sysvec_reschedule_ipi),
121582f9191SThomas Gleixner 	INTG(CALL_FUNCTION_VECTOR,		asm_sysvec_call_function),
122582f9191SThomas Gleixner 	INTG(CALL_FUNCTION_SINGLE_VECTOR,	asm_sysvec_call_function_single),
123582f9191SThomas Gleixner 	INTG(IRQ_MOVE_CLEANUP_VECTOR,		asm_sysvec_irq_move_cleanup),
124582f9191SThomas Gleixner 	INTG(REBOOT_VECTOR,			asm_sysvec_reboot),
125636a7598SThomas Gleixner #endif
126636a7598SThomas Gleixner 
127636a7598SThomas Gleixner #ifdef CONFIG_X86_THERMAL_VECTOR
128720909a7SThomas Gleixner 	INTG(THERMAL_APIC_VECTOR,		asm_sysvec_thermal),
129636a7598SThomas Gleixner #endif
130636a7598SThomas Gleixner 
131636a7598SThomas Gleixner #ifdef CONFIG_X86_MCE_THRESHOLD
132720909a7SThomas Gleixner 	INTG(THRESHOLD_APIC_VECTOR,		asm_sysvec_threshold),
133636a7598SThomas Gleixner #endif
134636a7598SThomas Gleixner 
135636a7598SThomas Gleixner #ifdef CONFIG_X86_MCE_AMD
136720909a7SThomas Gleixner 	INTG(DEFERRED_ERROR_VECTOR,		asm_sysvec_deferred_error),
137636a7598SThomas Gleixner #endif
138636a7598SThomas Gleixner 
139636a7598SThomas Gleixner #ifdef CONFIG_X86_LOCAL_APIC
140db0338eeSThomas Gleixner 	INTG(LOCAL_TIMER_VECTOR,		asm_sysvec_apic_timer_interrupt),
141db0338eeSThomas Gleixner 	INTG(X86_PLATFORM_IPI_VECTOR,		asm_sysvec_x86_platform_ipi),
142636a7598SThomas Gleixner # ifdef CONFIG_HAVE_KVM
1439c3b1f49SThomas Gleixner 	INTG(POSTED_INTR_VECTOR,		asm_sysvec_kvm_posted_intr_ipi),
1449c3b1f49SThomas Gleixner 	INTG(POSTED_INTR_WAKEUP_VECTOR,		asm_sysvec_kvm_posted_intr_wakeup_ipi),
1459c3b1f49SThomas Gleixner 	INTG(POSTED_INTR_NESTED_VECTOR,		asm_sysvec_kvm_posted_intr_nested_ipi),
146636a7598SThomas Gleixner # endif
147636a7598SThomas Gleixner # ifdef CONFIG_IRQ_WORK
148720909a7SThomas Gleixner 	INTG(IRQ_WORK_VECTOR,			asm_sysvec_irq_work),
149636a7598SThomas Gleixner # endif
150151ad17fSAndrew Banman # ifdef CONFIG_X86_UV
151720909a7SThomas Gleixner 	INTG(UV_BAU_MESSAGE,			asm_sysvec_uv_bau_message),
152151ad17fSAndrew Banman # endif
153db0338eeSThomas Gleixner 	INTG(SPURIOUS_APIC_VECTOR,		asm_sysvec_spurious_apic_interrupt),
154db0338eeSThomas Gleixner 	INTG(ERROR_APIC_VECTOR,			asm_sysvec_error_interrupt),
155636a7598SThomas Gleixner #endif
156636a7598SThomas Gleixner };
157636a7598SThomas Gleixner 
158433f8924SThomas Gleixner #ifdef CONFIG_X86_64
159433f8924SThomas Gleixner /*
160433f8924SThomas Gleixner  * Early traps running on the DEFAULT_STACK because the other interrupt
161433f8924SThomas Gleixner  * stacks work only after cpu_init().
162433f8924SThomas Gleixner  */
163327867faSAndi Kleen static const __initconst struct idt_data early_pf_idts[] = {
16491eeafeaSThomas Gleixner 	INTG(X86_TRAP_PF,		asm_exc_page_fault),
165433f8924SThomas Gleixner };
166433f8924SThomas Gleixner #endif
167433f8924SThomas Gleixner 
168d8ed9d48SThomas Gleixner /* Must be page-aligned because the real IDT is used in a fixmap. */
169d8ed9d48SThomas Gleixner gate_desc idt_table[IDT_ENTRIES] __page_aligned_bss;
170d8ed9d48SThomas Gleixner 
17116bc18d8SThomas Gleixner struct desc_ptr idt_descr __ro_after_init = {
172*5a2bafcaSThomas Gleixner 	.size		= IDT_TABLE_SIZE - 1,
17316bc18d8SThomas Gleixner 	.address	= (unsigned long) idt_table,
17416bc18d8SThomas Gleixner };
17516bc18d8SThomas Gleixner 
176d8ed9d48SThomas Gleixner #ifdef CONFIG_X86_64
1770a30908bSThomas Gleixner /*
17890f6225fSThomas Gleixner  * The exceptions which use Interrupt stacks. They are setup after
17990f6225fSThomas Gleixner  * cpu_init() when the TSS has been initialized.
18090f6225fSThomas Gleixner  */
181327867faSAndi Kleen static const __initconst struct idt_data ist_idts[] = {
1822bbc68f8SThomas Gleixner 	ISTG(X86_TRAP_DB,	asm_exc_debug,		IST_INDEX_DB),
1836271fef0SThomas Gleixner 	ISTG(X86_TRAP_NMI,	asm_exc_nmi,		IST_INDEX_NMI),
184c29c775aSThomas Gleixner 	ISTG(X86_TRAP_DF,	asm_exc_double_fault,	IST_INDEX_DF),
18590f6225fSThomas Gleixner #ifdef CONFIG_X86_MCE
1868cd501c1SThomas Gleixner 	ISTG(X86_TRAP_MC,	asm_exc_machine_check,	IST_INDEX_MCE),
18790f6225fSThomas Gleixner #endif
18890f6225fSThomas Gleixner };
189d8ed9d48SThomas Gleixner #endif
190e802a51eSThomas Gleixner 
1913318e974SThomas Gleixner static inline void idt_init_desc(gate_desc *gate, const struct idt_data *d)
1923318e974SThomas Gleixner {
1933318e974SThomas Gleixner 	unsigned long addr = (unsigned long) d->addr;
1943318e974SThomas Gleixner 
1953318e974SThomas Gleixner 	gate->offset_low	= (u16) addr;
1963318e974SThomas Gleixner 	gate->segment		= (u16) d->segment;
1973318e974SThomas Gleixner 	gate->bits		= d->bits;
1983318e974SThomas Gleixner 	gate->offset_middle	= (u16) (addr >> 16);
1993318e974SThomas Gleixner #ifdef CONFIG_X86_64
2003318e974SThomas Gleixner 	gate->offset_high	= (u32) (addr >> 32);
2013318e974SThomas Gleixner 	gate->reserved		= 0;
2023318e974SThomas Gleixner #endif
2033318e974SThomas Gleixner }
2043318e974SThomas Gleixner 
205bdf5bde8SThomas Gleixner static __init void
206db18da78SThomas Gleixner idt_setup_from_table(gate_desc *idt, const struct idt_data *t, int size, bool sys)
2073318e974SThomas Gleixner {
2083318e974SThomas Gleixner 	gate_desc desc;
2093318e974SThomas Gleixner 
2103318e974SThomas Gleixner 	for (; size > 0; t++, size--) {
2113318e974SThomas Gleixner 		idt_init_desc(&desc, t);
2123318e974SThomas Gleixner 		write_idt_entry(idt, t->vector, &desc);
213db18da78SThomas Gleixner 		if (sys)
2147854f822SThomas Gleixner 			set_bit(t->vector, system_vectors);
2153318e974SThomas Gleixner 	}
2163318e974SThomas Gleixner }
2173318e974SThomas Gleixner 
218bdf5bde8SThomas Gleixner static __init void set_intr_gate(unsigned int n, const void *addr)
219facaa3e3SThomas Gleixner {
220facaa3e3SThomas Gleixner 	struct idt_data data;
221facaa3e3SThomas Gleixner 
222facaa3e3SThomas Gleixner 	BUG_ON(n > 0xFF);
223facaa3e3SThomas Gleixner 
224facaa3e3SThomas Gleixner 	memset(&data, 0, sizeof(data));
225facaa3e3SThomas Gleixner 	data.vector	= n;
226facaa3e3SThomas Gleixner 	data.addr	= addr;
227facaa3e3SThomas Gleixner 	data.segment	= __KERNEL_CS;
228facaa3e3SThomas Gleixner 	data.bits.type	= GATE_INTERRUPT;
229facaa3e3SThomas Gleixner 	data.bits.p	= 1;
230facaa3e3SThomas Gleixner 
231facaa3e3SThomas Gleixner 	idt_setup_from_table(idt_table, &data, 1, false);
232facaa3e3SThomas Gleixner }
233facaa3e3SThomas Gleixner 
234e802a51eSThomas Gleixner /**
235433f8924SThomas Gleixner  * idt_setup_early_traps - Initialize the idt table with early traps
236433f8924SThomas Gleixner  *
237433f8924SThomas Gleixner  * On X8664 these traps do not use interrupt stacks as they can't work
238433f8924SThomas Gleixner  * before cpu_init() is invoked and sets up TSS. The IST variants are
239433f8924SThomas Gleixner  * installed after that.
240433f8924SThomas Gleixner  */
241433f8924SThomas Gleixner void __init idt_setup_early_traps(void)
242433f8924SThomas Gleixner {
243db18da78SThomas Gleixner 	idt_setup_from_table(idt_table, early_idts, ARRAY_SIZE(early_idts),
244db18da78SThomas Gleixner 			     true);
245433f8924SThomas Gleixner 	load_idt(&idt_descr);
246433f8924SThomas Gleixner }
247433f8924SThomas Gleixner 
248b70543a0SThomas Gleixner /**
249b70543a0SThomas Gleixner  * idt_setup_traps - Initialize the idt table with default traps
250b70543a0SThomas Gleixner  */
251b70543a0SThomas Gleixner void __init idt_setup_traps(void)
252b70543a0SThomas Gleixner {
253db18da78SThomas Gleixner 	idt_setup_from_table(idt_table, def_idts, ARRAY_SIZE(def_idts), true);
254b70543a0SThomas Gleixner }
255b70543a0SThomas Gleixner 
256433f8924SThomas Gleixner #ifdef CONFIG_X86_64
257433f8924SThomas Gleixner /**
258433f8924SThomas Gleixner  * idt_setup_early_pf - Initialize the idt table with early pagefault handler
259433f8924SThomas Gleixner  *
260433f8924SThomas Gleixner  * On X8664 this does not use interrupt stacks as they can't work before
261433f8924SThomas Gleixner  * cpu_init() is invoked and sets up TSS. The IST variant is installed
262433f8924SThomas Gleixner  * after that.
263433f8924SThomas Gleixner  *
26494438af4SThomas Gleixner  * Note, that X86_64 cannot install the real #PF handler in
26594438af4SThomas Gleixner  * idt_setup_early_traps() because the memory intialization needs the #PF
26694438af4SThomas Gleixner  * handler from the early_idt_handler_array to initialize the early page
26794438af4SThomas Gleixner  * tables.
268433f8924SThomas Gleixner  */
269433f8924SThomas Gleixner void __init idt_setup_early_pf(void)
270433f8924SThomas Gleixner {
271433f8924SThomas Gleixner 	idt_setup_from_table(idt_table, early_pf_idts,
272db18da78SThomas Gleixner 			     ARRAY_SIZE(early_pf_idts), true);
273433f8924SThomas Gleixner }
2740a30908bSThomas Gleixner 
2750a30908bSThomas Gleixner /**
27690f6225fSThomas Gleixner  * idt_setup_ist_traps - Initialize the idt table with traps using IST
27790f6225fSThomas Gleixner  */
27890f6225fSThomas Gleixner void __init idt_setup_ist_traps(void)
27990f6225fSThomas Gleixner {
280db18da78SThomas Gleixner 	idt_setup_from_table(idt_table, ist_idts, ARRAY_SIZE(ist_idts), true);
28190f6225fSThomas Gleixner }
282433f8924SThomas Gleixner #endif
283433f8924SThomas Gleixner 
284433f8924SThomas Gleixner /**
285636a7598SThomas Gleixner  * idt_setup_apic_and_irq_gates - Setup APIC/SMP and normal interrupt gates
286636a7598SThomas Gleixner  */
287636a7598SThomas Gleixner void __init idt_setup_apic_and_irq_gates(void)
288636a7598SThomas Gleixner {
289dc20b2d5SThomas Gleixner 	int i = FIRST_EXTERNAL_VECTOR;
290dc20b2d5SThomas Gleixner 	void *entry;
291dc20b2d5SThomas Gleixner 
292db18da78SThomas Gleixner 	idt_setup_from_table(idt_table, apic_idts, ARRAY_SIZE(apic_idts), true);
293dc20b2d5SThomas Gleixner 
2947854f822SThomas Gleixner 	for_each_clear_bit_from(i, system_vectors, FIRST_SYSTEM_VECTOR) {
295dc20b2d5SThomas Gleixner 		entry = irq_entries_start + 8 * (i - FIRST_EXTERNAL_VECTOR);
296dc20b2d5SThomas Gleixner 		set_intr_gate(i, entry);
297dc20b2d5SThomas Gleixner 	}
298dc20b2d5SThomas Gleixner 
299dc20b2d5SThomas Gleixner #ifdef CONFIG_X86_LOCAL_APIC
30033662812SDou Liyang 	for_each_clear_bit_from(i, system_vectors, NR_VECTORS) {
3011f1fbc70SVitaly Kuznetsov 		/*
3021f1fbc70SVitaly Kuznetsov 		 * Don't set the non assigned system vectors in the
3031f1fbc70SVitaly Kuznetsov 		 * system_vectors bitmap. Otherwise they show up in
3041f1fbc70SVitaly Kuznetsov 		 * /proc/interrupts.
3051f1fbc70SVitaly Kuznetsov 		 */
306f8a8fe61SThomas Gleixner 		entry = spurious_entries_start + 8 * (i - FIRST_SYSTEM_VECTOR);
307f8a8fe61SThomas Gleixner 		set_intr_gate(i, entry);
308dc20b2d5SThomas Gleixner 	}
30933662812SDou Liyang #endif
31006184325SVitaly Kuznetsov 	idt_setup_done = true;
311636a7598SThomas Gleixner }
312636a7598SThomas Gleixner 
313636a7598SThomas Gleixner /**
314588787fdSThomas Gleixner  * idt_setup_early_handler - Initializes the idt table with early handlers
315588787fdSThomas Gleixner  */
316588787fdSThomas Gleixner void __init idt_setup_early_handler(void)
317588787fdSThomas Gleixner {
318588787fdSThomas Gleixner 	int i;
319588787fdSThomas Gleixner 
320588787fdSThomas Gleixner 	for (i = 0; i < NUM_EXCEPTION_VECTORS; i++)
321588787fdSThomas Gleixner 		set_intr_gate(i, early_idt_handler_array[i]);
32287e81786SThomas Gleixner #ifdef CONFIG_X86_32
32387e81786SThomas Gleixner 	for ( ; i < NR_VECTORS; i++)
32487e81786SThomas Gleixner 		set_intr_gate(i, early_ignore_irq);
32587e81786SThomas Gleixner #endif
326588787fdSThomas Gleixner 	load_idt(&idt_descr);
327588787fdSThomas Gleixner }
328588787fdSThomas Gleixner 
329588787fdSThomas Gleixner /**
330e802a51eSThomas Gleixner  * idt_invalidate - Invalidate interrupt descriptor table
331e802a51eSThomas Gleixner  * @addr:	The virtual address of the 'invalid' IDT
332e802a51eSThomas Gleixner  */
333e802a51eSThomas Gleixner void idt_invalidate(void *addr)
334e802a51eSThomas Gleixner {
335e802a51eSThomas Gleixner 	struct desc_ptr idt = { .address = (unsigned long) addr, .size = 0 };
336e802a51eSThomas Gleixner 
337e802a51eSThomas Gleixner 	load_idt(&idt);
338e802a51eSThomas Gleixner }
339db18da78SThomas Gleixner 
34006184325SVitaly Kuznetsov void __init alloc_intr_gate(unsigned int n, const void *addr)
341db18da78SThomas Gleixner {
34206184325SVitaly Kuznetsov 	if (WARN_ON(n < FIRST_SYSTEM_VECTOR))
34306184325SVitaly Kuznetsov 		return;
34406184325SVitaly Kuznetsov 
34506184325SVitaly Kuznetsov 	if (WARN_ON(idt_setup_done))
34606184325SVitaly Kuznetsov 		return;
34706184325SVitaly Kuznetsov 
34806184325SVitaly Kuznetsov 	if (!WARN_ON(test_and_set_bit(n, system_vectors)))
349db18da78SThomas Gleixner 		set_intr_gate(n, addr);
350db18da78SThomas Gleixner }
351