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 700229a54SThomas Gleixner #include <asm/cpu_entry_area.h> 83e77abdaSThomas Gleixner #include <asm/set_memory.h> 93318e974SThomas Gleixner #include <asm/traps.h> 103318e974SThomas Gleixner #include <asm/proto.h> 11d8ed9d48SThomas Gleixner #include <asm/desc.h> 12447ae316SNicolai Stange #include <asm/hw_irq.h> 13d8ed9d48SThomas Gleixner 143318e974SThomas Gleixner struct idt_data { 153318e974SThomas Gleixner unsigned int vector; 163318e974SThomas Gleixner unsigned int segment; 173318e974SThomas Gleixner struct idt_bits bits; 183318e974SThomas Gleixner const void *addr; 193318e974SThomas Gleixner }; 203318e974SThomas Gleixner 213318e974SThomas Gleixner #define DPL0 0x0 223318e974SThomas Gleixner #define DPL3 0x3 233318e974SThomas Gleixner 243318e974SThomas Gleixner #define DEFAULT_STACK 0 253318e974SThomas Gleixner 263318e974SThomas Gleixner #define G(_vector, _addr, _ist, _type, _dpl, _segment) \ 273318e974SThomas Gleixner { \ 283318e974SThomas Gleixner .vector = _vector, \ 293318e974SThomas Gleixner .bits.ist = _ist, \ 303318e974SThomas Gleixner .bits.type = _type, \ 313318e974SThomas Gleixner .bits.dpl = _dpl, \ 323318e974SThomas Gleixner .bits.p = 1, \ 333318e974SThomas Gleixner .addr = _addr, \ 343318e974SThomas Gleixner .segment = _segment, \ 353318e974SThomas Gleixner } 363318e974SThomas Gleixner 373318e974SThomas Gleixner /* Interrupt gate */ 383318e974SThomas Gleixner #define INTG(_vector, _addr) \ 393318e974SThomas Gleixner G(_vector, _addr, DEFAULT_STACK, GATE_INTERRUPT, DPL0, __KERNEL_CS) 403318e974SThomas Gleixner 413318e974SThomas Gleixner /* System interrupt gate */ 423318e974SThomas Gleixner #define SYSG(_vector, _addr) \ 433318e974SThomas Gleixner G(_vector, _addr, DEFAULT_STACK, GATE_INTERRUPT, DPL3, __KERNEL_CS) 443318e974SThomas Gleixner 458f34c5b5SThomas Gleixner /* 468f34c5b5SThomas Gleixner * Interrupt gate with interrupt stack. The _ist index is the index in 478f34c5b5SThomas Gleixner * the tss.ist[] array, but for the descriptor it needs to start at 1. 488f34c5b5SThomas Gleixner */ 493318e974SThomas Gleixner #define ISTG(_vector, _addr, _ist) \ 508f34c5b5SThomas Gleixner G(_vector, _addr, _ist + 1, GATE_INTERRUPT, DPL0, __KERNEL_CS) 513318e974SThomas Gleixner 523318e974SThomas Gleixner /* Task gate */ 533318e974SThomas Gleixner #define TSKG(_vector, _gdt) \ 543318e974SThomas Gleixner G(_vector, NULL, DEFAULT_STACK, GATE_TASK, DPL0, _gdt << 3) 553318e974SThomas Gleixner 565a2bafcaSThomas Gleixner #define IDT_TABLE_SIZE (IDT_ENTRIES * sizeof(gate_desc)) 5706184325SVitaly Kuznetsov 5806184325SVitaly Kuznetsov static bool idt_setup_done __initdata; 5906184325SVitaly Kuznetsov 60433f8924SThomas Gleixner /* 61433f8924SThomas Gleixner * Early traps running on the DEFAULT_STACK because the other interrupt 62433f8924SThomas Gleixner * stacks work only after cpu_init(). 63433f8924SThomas Gleixner */ 64327867faSAndi Kleen static const __initconst struct idt_data early_idts[] = { 652bbc68f8SThomas Gleixner INTG(X86_TRAP_DB, asm_exc_debug), 668edd7e37SThomas Gleixner SYSG(X86_TRAP_BP, asm_exc_int3), 6794438af4SThomas Gleixner 68433f8924SThomas Gleixner #ifdef CONFIG_X86_32 6994438af4SThomas Gleixner /* 7094438af4SThomas Gleixner * Not possible on 64-bit. See idt_setup_early_pf() for details. 7194438af4SThomas Gleixner */ 7291eeafeaSThomas Gleixner INTG(X86_TRAP_PF, asm_exc_page_fault), 73433f8924SThomas Gleixner #endif 74433f8924SThomas Gleixner }; 75433f8924SThomas Gleixner 76b70543a0SThomas Gleixner /* 77b70543a0SThomas Gleixner * The default IDT entries which are set up in trap_init() before 78b70543a0SThomas Gleixner * cpu_init() is invoked. Interrupt stacks cannot be used at that point and 79b70543a0SThomas Gleixner * the traps which use them are reinitialized with IST after cpu_init() has 80b70543a0SThomas Gleixner * set up TSS. 81b70543a0SThomas Gleixner */ 82327867faSAndi Kleen static const __initconst struct idt_data def_idts[] = { 839d06c402SThomas Gleixner INTG(X86_TRAP_DE, asm_exc_divide_error), 846271fef0SThomas Gleixner INTG(X86_TRAP_NMI, asm_exc_nmi), 8558d9c81fSThomas Gleixner INTG(X86_TRAP_BR, asm_exc_bounds), 8649893c5cSThomas Gleixner INTG(X86_TRAP_UD, asm_exc_invalid_op), 87866ae2ccSThomas Gleixner INTG(X86_TRAP_NM, asm_exc_device_not_available), 88f95658fdSThomas Gleixner INTG(X86_TRAP_OLD_MF, asm_exc_coproc_segment_overrun), 8997b3d290SThomas Gleixner INTG(X86_TRAP_TS, asm_exc_invalid_tss), 9099a3fb8dSThomas Gleixner INTG(X86_TRAP_NP, asm_exc_segment_not_present), 91fd9689bfSThomas Gleixner INTG(X86_TRAP_SS, asm_exc_stack_segment), 92be4c11afSThomas Gleixner INTG(X86_TRAP_GP, asm_exc_general_protection), 93dad7106fSThomas Gleixner INTG(X86_TRAP_SPURIOUS, asm_exc_spurious_interrupt_bug), 9414a8bd2aSThomas Gleixner INTG(X86_TRAP_MF, asm_exc_coprocessor_error), 95436608bbSThomas Gleixner INTG(X86_TRAP_AC, asm_exc_alignment_check), 9648227e21SThomas Gleixner INTG(X86_TRAP_XF, asm_exc_simd_coprocessor_error), 97b70543a0SThomas Gleixner 98b70543a0SThomas Gleixner #ifdef CONFIG_X86_32 99b70543a0SThomas Gleixner TSKG(X86_TRAP_DF, GDT_ENTRY_DOUBLEFAULT_TSS), 100b70543a0SThomas Gleixner #else 101c29c775aSThomas Gleixner INTG(X86_TRAP_DF, asm_exc_double_fault), 102b70543a0SThomas Gleixner #endif 1032bbc68f8SThomas Gleixner INTG(X86_TRAP_DB, asm_exc_debug), 104b70543a0SThomas Gleixner 105b70543a0SThomas Gleixner #ifdef CONFIG_X86_MCE 1068cd501c1SThomas Gleixner INTG(X86_TRAP_MC, asm_exc_machine_check), 107b70543a0SThomas Gleixner #endif 108b70543a0SThomas Gleixner 1094b6b9111SThomas Gleixner SYSG(X86_TRAP_OF, asm_exc_overflow), 110b70543a0SThomas Gleixner #if defined(CONFIG_IA32_EMULATION) 111b70543a0SThomas Gleixner SYSG(IA32_SYSCALL_VECTOR, entry_INT80_compat), 112b70543a0SThomas Gleixner #elif defined(CONFIG_X86_32) 113b70543a0SThomas Gleixner SYSG(IA32_SYSCALL_VECTOR, entry_INT80_32), 114b70543a0SThomas Gleixner #endif 115b70543a0SThomas Gleixner }; 116b70543a0SThomas Gleixner 117636a7598SThomas Gleixner /* 118636a7598SThomas Gleixner * The APIC and SMP idt entries 119636a7598SThomas Gleixner */ 120327867faSAndi Kleen static const __initconst struct idt_data apic_idts[] = { 121636a7598SThomas Gleixner #ifdef CONFIG_SMP 12213cad985SThomas Gleixner INTG(RESCHEDULE_VECTOR, asm_sysvec_reschedule_ipi), 123582f9191SThomas Gleixner INTG(CALL_FUNCTION_VECTOR, asm_sysvec_call_function), 124582f9191SThomas Gleixner INTG(CALL_FUNCTION_SINGLE_VECTOR, asm_sysvec_call_function_single), 125582f9191SThomas Gleixner INTG(IRQ_MOVE_CLEANUP_VECTOR, asm_sysvec_irq_move_cleanup), 126582f9191SThomas Gleixner INTG(REBOOT_VECTOR, asm_sysvec_reboot), 127636a7598SThomas Gleixner #endif 128636a7598SThomas Gleixner 129636a7598SThomas Gleixner #ifdef CONFIG_X86_THERMAL_VECTOR 130720909a7SThomas Gleixner INTG(THERMAL_APIC_VECTOR, asm_sysvec_thermal), 131636a7598SThomas Gleixner #endif 132636a7598SThomas Gleixner 133636a7598SThomas Gleixner #ifdef CONFIG_X86_MCE_THRESHOLD 134720909a7SThomas Gleixner INTG(THRESHOLD_APIC_VECTOR, asm_sysvec_threshold), 135636a7598SThomas Gleixner #endif 136636a7598SThomas Gleixner 137636a7598SThomas Gleixner #ifdef CONFIG_X86_MCE_AMD 138720909a7SThomas Gleixner INTG(DEFERRED_ERROR_VECTOR, asm_sysvec_deferred_error), 139636a7598SThomas Gleixner #endif 140636a7598SThomas Gleixner 141636a7598SThomas Gleixner #ifdef CONFIG_X86_LOCAL_APIC 142db0338eeSThomas Gleixner INTG(LOCAL_TIMER_VECTOR, asm_sysvec_apic_timer_interrupt), 143db0338eeSThomas Gleixner INTG(X86_PLATFORM_IPI_VECTOR, asm_sysvec_x86_platform_ipi), 144636a7598SThomas Gleixner # ifdef CONFIG_HAVE_KVM 1459c3b1f49SThomas Gleixner INTG(POSTED_INTR_VECTOR, asm_sysvec_kvm_posted_intr_ipi), 1469c3b1f49SThomas Gleixner INTG(POSTED_INTR_WAKEUP_VECTOR, asm_sysvec_kvm_posted_intr_wakeup_ipi), 1479c3b1f49SThomas Gleixner INTG(POSTED_INTR_NESTED_VECTOR, asm_sysvec_kvm_posted_intr_nested_ipi), 148636a7598SThomas Gleixner # endif 149636a7598SThomas Gleixner # ifdef CONFIG_IRQ_WORK 150720909a7SThomas Gleixner INTG(IRQ_WORK_VECTOR, asm_sysvec_irq_work), 151636a7598SThomas Gleixner # endif 152151ad17fSAndrew Banman # ifdef CONFIG_X86_UV 153720909a7SThomas Gleixner INTG(UV_BAU_MESSAGE, asm_sysvec_uv_bau_message), 154151ad17fSAndrew Banman # endif 155db0338eeSThomas Gleixner INTG(SPURIOUS_APIC_VECTOR, asm_sysvec_spurious_apic_interrupt), 156db0338eeSThomas Gleixner INTG(ERROR_APIC_VECTOR, asm_sysvec_error_interrupt), 157636a7598SThomas Gleixner #endif 158636a7598SThomas Gleixner }; 159636a7598SThomas Gleixner 1603e77abdaSThomas Gleixner /* Must be page-aligned because the real IDT is used in the cpu entry area */ 1613e77abdaSThomas Gleixner static gate_desc idt_table[IDT_ENTRIES] __page_aligned_bss; 162d8ed9d48SThomas Gleixner 163*286d966bSJason Andryuk static struct desc_ptr idt_descr __ro_after_init = { 1645a2bafcaSThomas Gleixner .size = IDT_TABLE_SIZE - 1, 16516bc18d8SThomas Gleixner .address = (unsigned long) idt_table, 16616bc18d8SThomas Gleixner }; 16716bc18d8SThomas Gleixner 1683e77abdaSThomas Gleixner void load_current_idt(void) 1693e77abdaSThomas Gleixner { 1703e77abdaSThomas Gleixner lockdep_assert_irqs_disabled(); 1713e77abdaSThomas Gleixner load_idt(&idt_descr); 1723e77abdaSThomas Gleixner } 1733e77abdaSThomas Gleixner 1743e77abdaSThomas Gleixner #ifdef CONFIG_X86_F00F_BUG 1753e77abdaSThomas Gleixner bool idt_is_f00f_address(unsigned long address) 1763e77abdaSThomas Gleixner { 1773e77abdaSThomas Gleixner return ((address - idt_descr.address) >> 3) == 6; 1783e77abdaSThomas Gleixner } 179d8ed9d48SThomas Gleixner #endif 180e802a51eSThomas Gleixner 1813318e974SThomas Gleixner static inline void idt_init_desc(gate_desc *gate, const struct idt_data *d) 1823318e974SThomas Gleixner { 1833318e974SThomas Gleixner unsigned long addr = (unsigned long) d->addr; 1843318e974SThomas Gleixner 1853318e974SThomas Gleixner gate->offset_low = (u16) addr; 1863318e974SThomas Gleixner gate->segment = (u16) d->segment; 1873318e974SThomas Gleixner gate->bits = d->bits; 1883318e974SThomas Gleixner gate->offset_middle = (u16) (addr >> 16); 1893318e974SThomas Gleixner #ifdef CONFIG_X86_64 1903318e974SThomas Gleixner gate->offset_high = (u32) (addr >> 32); 1913318e974SThomas Gleixner gate->reserved = 0; 1923318e974SThomas Gleixner #endif 1933318e974SThomas Gleixner } 1943318e974SThomas Gleixner 195bdf5bde8SThomas Gleixner static __init void 196db18da78SThomas Gleixner idt_setup_from_table(gate_desc *idt, const struct idt_data *t, int size, bool sys) 1973318e974SThomas Gleixner { 1983318e974SThomas Gleixner gate_desc desc; 1993318e974SThomas Gleixner 2003318e974SThomas Gleixner for (; size > 0; t++, size--) { 2013318e974SThomas Gleixner idt_init_desc(&desc, t); 2023318e974SThomas Gleixner write_idt_entry(idt, t->vector, &desc); 203db18da78SThomas Gleixner if (sys) 2047854f822SThomas Gleixner set_bit(t->vector, system_vectors); 2053318e974SThomas Gleixner } 2063318e974SThomas Gleixner } 2073318e974SThomas Gleixner 208bdf5bde8SThomas Gleixner static __init void set_intr_gate(unsigned int n, const void *addr) 209facaa3e3SThomas Gleixner { 210facaa3e3SThomas Gleixner struct idt_data data; 211facaa3e3SThomas Gleixner 212facaa3e3SThomas Gleixner BUG_ON(n > 0xFF); 213facaa3e3SThomas Gleixner 214facaa3e3SThomas Gleixner memset(&data, 0, sizeof(data)); 215facaa3e3SThomas Gleixner data.vector = n; 216facaa3e3SThomas Gleixner data.addr = addr; 217facaa3e3SThomas Gleixner data.segment = __KERNEL_CS; 218facaa3e3SThomas Gleixner data.bits.type = GATE_INTERRUPT; 219facaa3e3SThomas Gleixner data.bits.p = 1; 220facaa3e3SThomas Gleixner 221facaa3e3SThomas Gleixner idt_setup_from_table(idt_table, &data, 1, false); 222facaa3e3SThomas Gleixner } 223facaa3e3SThomas Gleixner 224e802a51eSThomas Gleixner /** 225433f8924SThomas Gleixner * idt_setup_early_traps - Initialize the idt table with early traps 226433f8924SThomas Gleixner * 227433f8924SThomas Gleixner * On X8664 these traps do not use interrupt stacks as they can't work 228433f8924SThomas Gleixner * before cpu_init() is invoked and sets up TSS. The IST variants are 229433f8924SThomas Gleixner * installed after that. 230433f8924SThomas Gleixner */ 231433f8924SThomas Gleixner void __init idt_setup_early_traps(void) 232433f8924SThomas Gleixner { 233db18da78SThomas Gleixner idt_setup_from_table(idt_table, early_idts, ARRAY_SIZE(early_idts), 234db18da78SThomas Gleixner true); 235433f8924SThomas Gleixner load_idt(&idt_descr); 236433f8924SThomas Gleixner } 237433f8924SThomas Gleixner 238b70543a0SThomas Gleixner /** 239b70543a0SThomas Gleixner * idt_setup_traps - Initialize the idt table with default traps 240b70543a0SThomas Gleixner */ 241b70543a0SThomas Gleixner void __init idt_setup_traps(void) 242b70543a0SThomas Gleixner { 243db18da78SThomas Gleixner idt_setup_from_table(idt_table, def_idts, ARRAY_SIZE(def_idts), true); 244b70543a0SThomas Gleixner } 245b70543a0SThomas Gleixner 246433f8924SThomas Gleixner #ifdef CONFIG_X86_64 2473e77abdaSThomas Gleixner /* 2483e77abdaSThomas Gleixner * Early traps running on the DEFAULT_STACK because the other interrupt 2493e77abdaSThomas Gleixner * stacks work only after cpu_init(). 2503e77abdaSThomas Gleixner */ 2513e77abdaSThomas Gleixner static const __initconst struct idt_data early_pf_idts[] = { 2523e77abdaSThomas Gleixner INTG(X86_TRAP_PF, asm_exc_page_fault), 2533e77abdaSThomas Gleixner }; 2543e77abdaSThomas Gleixner 2553e77abdaSThomas Gleixner /* 2563e77abdaSThomas Gleixner * The exceptions which use Interrupt stacks. They are setup after 2573e77abdaSThomas Gleixner * cpu_init() when the TSS has been initialized. 2583e77abdaSThomas Gleixner */ 2593e77abdaSThomas Gleixner static const __initconst struct idt_data ist_idts[] = { 2603e77abdaSThomas Gleixner ISTG(X86_TRAP_DB, asm_exc_debug, IST_INDEX_DB), 2613e77abdaSThomas Gleixner ISTG(X86_TRAP_NMI, asm_exc_nmi, IST_INDEX_NMI), 2623e77abdaSThomas Gleixner ISTG(X86_TRAP_DF, asm_exc_double_fault, IST_INDEX_DF), 2633e77abdaSThomas Gleixner #ifdef CONFIG_X86_MCE 2643e77abdaSThomas Gleixner ISTG(X86_TRAP_MC, asm_exc_machine_check, IST_INDEX_MCE), 2653e77abdaSThomas Gleixner #endif 2663e77abdaSThomas Gleixner }; 2673e77abdaSThomas Gleixner 268433f8924SThomas Gleixner /** 269433f8924SThomas Gleixner * idt_setup_early_pf - Initialize the idt table with early pagefault handler 270433f8924SThomas Gleixner * 271433f8924SThomas Gleixner * On X8664 this does not use interrupt stacks as they can't work before 272433f8924SThomas Gleixner * cpu_init() is invoked and sets up TSS. The IST variant is installed 273433f8924SThomas Gleixner * after that. 274433f8924SThomas Gleixner * 27594438af4SThomas Gleixner * Note, that X86_64 cannot install the real #PF handler in 27694438af4SThomas Gleixner * idt_setup_early_traps() because the memory intialization needs the #PF 27794438af4SThomas Gleixner * handler from the early_idt_handler_array to initialize the early page 27894438af4SThomas Gleixner * tables. 279433f8924SThomas Gleixner */ 280433f8924SThomas Gleixner void __init idt_setup_early_pf(void) 281433f8924SThomas Gleixner { 282433f8924SThomas Gleixner idt_setup_from_table(idt_table, early_pf_idts, 283db18da78SThomas Gleixner ARRAY_SIZE(early_pf_idts), true); 284433f8924SThomas Gleixner } 2850a30908bSThomas Gleixner 2860a30908bSThomas Gleixner /** 28790f6225fSThomas Gleixner * idt_setup_ist_traps - Initialize the idt table with traps using IST 28890f6225fSThomas Gleixner */ 28990f6225fSThomas Gleixner void __init idt_setup_ist_traps(void) 29090f6225fSThomas Gleixner { 291db18da78SThomas Gleixner idt_setup_from_table(idt_table, ist_idts, ARRAY_SIZE(ist_idts), true); 29290f6225fSThomas Gleixner } 293433f8924SThomas Gleixner #endif 294433f8924SThomas Gleixner 29500229a54SThomas Gleixner static void __init idt_map_in_cea(void) 29600229a54SThomas Gleixner { 29700229a54SThomas Gleixner /* 29800229a54SThomas Gleixner * Set the IDT descriptor to a fixed read-only location in the cpu 29900229a54SThomas Gleixner * entry area, so that the "sidt" instruction will not leak the 30000229a54SThomas Gleixner * location of the kernel, and to defend the IDT against arbitrary 30100229a54SThomas Gleixner * memory write vulnerabilities. 30200229a54SThomas Gleixner */ 30300229a54SThomas Gleixner cea_set_pte(CPU_ENTRY_AREA_RO_IDT_VADDR, __pa_symbol(idt_table), 30400229a54SThomas Gleixner PAGE_KERNEL_RO); 30500229a54SThomas Gleixner idt_descr.address = CPU_ENTRY_AREA_RO_IDT; 30600229a54SThomas Gleixner } 30700229a54SThomas Gleixner 308433f8924SThomas Gleixner /** 309636a7598SThomas Gleixner * idt_setup_apic_and_irq_gates - Setup APIC/SMP and normal interrupt gates 310636a7598SThomas Gleixner */ 311636a7598SThomas Gleixner void __init idt_setup_apic_and_irq_gates(void) 312636a7598SThomas Gleixner { 313dc20b2d5SThomas Gleixner int i = FIRST_EXTERNAL_VECTOR; 314dc20b2d5SThomas Gleixner void *entry; 315dc20b2d5SThomas Gleixner 316db18da78SThomas Gleixner idt_setup_from_table(idt_table, apic_idts, ARRAY_SIZE(apic_idts), true); 317dc20b2d5SThomas Gleixner 3187854f822SThomas Gleixner for_each_clear_bit_from(i, system_vectors, FIRST_SYSTEM_VECTOR) { 319dc20b2d5SThomas Gleixner entry = irq_entries_start + 8 * (i - FIRST_EXTERNAL_VECTOR); 320dc20b2d5SThomas Gleixner set_intr_gate(i, entry); 321dc20b2d5SThomas Gleixner } 322dc20b2d5SThomas Gleixner 323dc20b2d5SThomas Gleixner #ifdef CONFIG_X86_LOCAL_APIC 32433662812SDou Liyang for_each_clear_bit_from(i, system_vectors, NR_VECTORS) { 3251f1fbc70SVitaly Kuznetsov /* 3261f1fbc70SVitaly Kuznetsov * Don't set the non assigned system vectors in the 3271f1fbc70SVitaly Kuznetsov * system_vectors bitmap. Otherwise they show up in 3281f1fbc70SVitaly Kuznetsov * /proc/interrupts. 3291f1fbc70SVitaly Kuznetsov */ 330f8a8fe61SThomas Gleixner entry = spurious_entries_start + 8 * (i - FIRST_SYSTEM_VECTOR); 331f8a8fe61SThomas Gleixner set_intr_gate(i, entry); 332dc20b2d5SThomas Gleixner } 33333662812SDou Liyang #endif 33400229a54SThomas Gleixner /* Map IDT into CPU entry area and reload it. */ 33500229a54SThomas Gleixner idt_map_in_cea(); 33600229a54SThomas Gleixner load_idt(&idt_descr); 33700229a54SThomas Gleixner 3383e77abdaSThomas Gleixner /* Make the IDT table read only */ 3393e77abdaSThomas Gleixner set_memory_ro((unsigned long)&idt_table, 1); 3403e77abdaSThomas Gleixner 34106184325SVitaly Kuznetsov idt_setup_done = true; 342636a7598SThomas Gleixner } 343636a7598SThomas Gleixner 344636a7598SThomas Gleixner /** 345588787fdSThomas Gleixner * idt_setup_early_handler - Initializes the idt table with early handlers 346588787fdSThomas Gleixner */ 347588787fdSThomas Gleixner void __init idt_setup_early_handler(void) 348588787fdSThomas Gleixner { 349588787fdSThomas Gleixner int i; 350588787fdSThomas Gleixner 351588787fdSThomas Gleixner for (i = 0; i < NUM_EXCEPTION_VECTORS; i++) 352588787fdSThomas Gleixner set_intr_gate(i, early_idt_handler_array[i]); 35387e81786SThomas Gleixner #ifdef CONFIG_X86_32 35487e81786SThomas Gleixner for ( ; i < NR_VECTORS; i++) 35587e81786SThomas Gleixner set_intr_gate(i, early_ignore_irq); 35687e81786SThomas Gleixner #endif 357588787fdSThomas Gleixner load_idt(&idt_descr); 358588787fdSThomas Gleixner } 359588787fdSThomas Gleixner 360588787fdSThomas Gleixner /** 361e802a51eSThomas Gleixner * idt_invalidate - Invalidate interrupt descriptor table 362e802a51eSThomas Gleixner * @addr: The virtual address of the 'invalid' IDT 363e802a51eSThomas Gleixner */ 364e802a51eSThomas Gleixner void idt_invalidate(void *addr) 365e802a51eSThomas Gleixner { 366e802a51eSThomas Gleixner struct desc_ptr idt = { .address = (unsigned long) addr, .size = 0 }; 367e802a51eSThomas Gleixner 368e802a51eSThomas Gleixner load_idt(&idt); 369e802a51eSThomas Gleixner } 370db18da78SThomas Gleixner 37106184325SVitaly Kuznetsov void __init alloc_intr_gate(unsigned int n, const void *addr) 372db18da78SThomas Gleixner { 37306184325SVitaly Kuznetsov if (WARN_ON(n < FIRST_SYSTEM_VECTOR)) 37406184325SVitaly Kuznetsov return; 37506184325SVitaly Kuznetsov 37606184325SVitaly Kuznetsov if (WARN_ON(idt_setup_done)) 37706184325SVitaly Kuznetsov return; 37806184325SVitaly Kuznetsov 37906184325SVitaly Kuznetsov if (!WARN_ON(test_and_set_bit(n, system_vectors))) 380db18da78SThomas Gleixner set_intr_gate(n, addr); 381db18da78SThomas Gleixner } 382