Thomas Gleixner | 82c73e0 | 2019-06-03 07:44:59 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Thomas Gleixner | d8ed9d4 | 2017-08-28 08:47:43 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Interrupt descriptor table related code |
Thomas Gleixner | d8ed9d4 | 2017-08-28 08:47:43 +0200 | [diff] [blame] | 4 | */ |
| 5 | #include <linux/interrupt.h> |
| 6 | |
Thomas Gleixner | 00229a5 | 2020-05-28 16:53:19 +0200 | [diff] [blame] | 7 | #include <asm/cpu_entry_area.h> |
Thomas Gleixner | 3e77abd | 2020-05-28 16:53:20 +0200 | [diff] [blame] | 8 | #include <asm/set_memory.h> |
Thomas Gleixner | 3318e97 | 2017-08-28 08:47:49 +0200 | [diff] [blame] | 9 | #include <asm/traps.h> |
| 10 | #include <asm/proto.h> |
Thomas Gleixner | d8ed9d4 | 2017-08-28 08:47:43 +0200 | [diff] [blame] | 11 | #include <asm/desc.h> |
Nicolai Stange | 447ae31 | 2018-07-29 12:15:33 +0200 | [diff] [blame] | 12 | #include <asm/hw_irq.h> |
Thomas Gleixner | d8ed9d4 | 2017-08-28 08:47:43 +0200 | [diff] [blame] | 13 | |
Thomas Gleixner | 3318e97 | 2017-08-28 08:47:49 +0200 | [diff] [blame] | 14 | #define DPL0 0x0 |
| 15 | #define DPL3 0x3 |
| 16 | |
| 17 | #define DEFAULT_STACK 0 |
| 18 | |
| 19 | #define G(_vector, _addr, _ist, _type, _dpl, _segment) \ |
| 20 | { \ |
| 21 | .vector = _vector, \ |
| 22 | .bits.ist = _ist, \ |
| 23 | .bits.type = _type, \ |
| 24 | .bits.dpl = _dpl, \ |
| 25 | .bits.p = 1, \ |
| 26 | .addr = _addr, \ |
| 27 | .segment = _segment, \ |
| 28 | } |
| 29 | |
| 30 | /* Interrupt gate */ |
| 31 | #define INTG(_vector, _addr) \ |
| 32 | G(_vector, _addr, DEFAULT_STACK, GATE_INTERRUPT, DPL0, __KERNEL_CS) |
| 33 | |
| 34 | /* System interrupt gate */ |
| 35 | #define SYSG(_vector, _addr) \ |
| 36 | G(_vector, _addr, DEFAULT_STACK, GATE_INTERRUPT, DPL3, __KERNEL_CS) |
| 37 | |
Thomas Gleixner | 1dcc917 | 2021-05-07 13:02:12 +0200 | [diff] [blame] | 38 | #ifdef CONFIG_X86_64 |
Thomas Gleixner | 8f34c5b | 2019-04-14 17:59:45 +0200 | [diff] [blame] | 39 | /* |
| 40 | * Interrupt gate with interrupt stack. The _ist index is the index in |
| 41 | * the tss.ist[] array, but for the descriptor it needs to start at 1. |
| 42 | */ |
Thomas Gleixner | 3318e97 | 2017-08-28 08:47:49 +0200 | [diff] [blame] | 43 | #define ISTG(_vector, _addr, _ist) \ |
Thomas Gleixner | 8f34c5b | 2019-04-14 17:59:45 +0200 | [diff] [blame] | 44 | G(_vector, _addr, _ist + 1, GATE_INTERRUPT, DPL0, __KERNEL_CS) |
Thomas Gleixner | 1dcc917 | 2021-05-07 13:02:12 +0200 | [diff] [blame] | 45 | #else |
| 46 | #define ISTG(_vector, _addr, _ist) INTG(_vector, _addr) |
| 47 | #endif |
Thomas Gleixner | 3318e97 | 2017-08-28 08:47:49 +0200 | [diff] [blame] | 48 | |
| 49 | /* Task gate */ |
| 50 | #define TSKG(_vector, _gdt) \ |
| 51 | G(_vector, NULL, DEFAULT_STACK, GATE_TASK, DPL0, _gdt << 3) |
| 52 | |
Thomas Gleixner | 5a2bafca | 2020-05-28 16:53:18 +0200 | [diff] [blame] | 53 | #define IDT_TABLE_SIZE (IDT_ENTRIES * sizeof(gate_desc)) |
Vitaly Kuznetsov | 0618432 | 2020-04-28 11:38:23 +0200 | [diff] [blame] | 54 | |
| 55 | static bool idt_setup_done __initdata; |
| 56 | |
Thomas Gleixner | 433f892 | 2017-08-28 08:47:50 +0200 | [diff] [blame] | 57 | /* |
| 58 | * Early traps running on the DEFAULT_STACK because the other interrupt |
| 59 | * stacks work only after cpu_init(). |
| 60 | */ |
Andi Kleen | 327867f | 2017-12-21 16:18:21 -0800 | [diff] [blame] | 61 | static const __initconst struct idt_data early_idts[] = { |
Thomas Gleixner | 2bbc68f | 2020-02-25 23:33:26 +0100 | [diff] [blame] | 62 | INTG(X86_TRAP_DB, asm_exc_debug), |
Thomas Gleixner | 8edd7e3 | 2020-02-25 23:16:16 +0100 | [diff] [blame] | 63 | SYSG(X86_TRAP_BP, asm_exc_int3), |
Thomas Gleixner | 94438af | 2020-05-28 16:53:17 +0200 | [diff] [blame] | 64 | |
Thomas Gleixner | 433f892 | 2017-08-28 08:47:50 +0200 | [diff] [blame] | 65 | #ifdef CONFIG_X86_32 |
Thomas Gleixner | 94438af | 2020-05-28 16:53:17 +0200 | [diff] [blame] | 66 | /* |
| 67 | * Not possible on 64-bit. See idt_setup_early_pf() for details. |
| 68 | */ |
Thomas Gleixner | 91eeafe | 2020-05-21 22:05:28 +0200 | [diff] [blame] | 69 | INTG(X86_TRAP_PF, asm_exc_page_fault), |
Thomas Gleixner | 433f892 | 2017-08-28 08:47:50 +0200 | [diff] [blame] | 70 | #endif |
| 71 | }; |
| 72 | |
Thomas Gleixner | b70543a | 2017-08-28 08:47:53 +0200 | [diff] [blame] | 73 | /* |
| 74 | * The default IDT entries which are set up in trap_init() before |
| 75 | * cpu_init() is invoked. Interrupt stacks cannot be used at that point and |
| 76 | * the traps which use them are reinitialized with IST after cpu_init() has |
| 77 | * set up TSS. |
| 78 | */ |
Andi Kleen | 327867f | 2017-12-21 16:18:21 -0800 | [diff] [blame] | 79 | static const __initconst struct idt_data def_idts[] = { |
Thomas Gleixner | 9d06c40 | 2020-02-25 23:16:14 +0100 | [diff] [blame] | 80 | INTG(X86_TRAP_DE, asm_exc_divide_error), |
Thomas Gleixner | 1dcc917 | 2021-05-07 13:02:12 +0200 | [diff] [blame] | 81 | ISTG(X86_TRAP_NMI, asm_exc_nmi, IST_INDEX_NMI), |
Thomas Gleixner | 58d9c81 | 2020-02-25 23:16:17 +0100 | [diff] [blame] | 82 | INTG(X86_TRAP_BR, asm_exc_bounds), |
Thomas Gleixner | 49893c5 | 2020-02-25 23:16:18 +0100 | [diff] [blame] | 83 | INTG(X86_TRAP_UD, asm_exc_invalid_op), |
Thomas Gleixner | 866ae2c | 2020-02-25 23:16:19 +0100 | [diff] [blame] | 84 | INTG(X86_TRAP_NM, asm_exc_device_not_available), |
Thomas Gleixner | f95658f | 2020-02-25 23:16:20 +0100 | [diff] [blame] | 85 | INTG(X86_TRAP_OLD_MF, asm_exc_coproc_segment_overrun), |
Thomas Gleixner | 97b3d29 | 2020-02-25 23:16:22 +0100 | [diff] [blame] | 86 | INTG(X86_TRAP_TS, asm_exc_invalid_tss), |
Thomas Gleixner | 99a3fb8 | 2020-02-25 23:16:23 +0100 | [diff] [blame] | 87 | INTG(X86_TRAP_NP, asm_exc_segment_not_present), |
Thomas Gleixner | fd9689b | 2020-02-25 23:16:24 +0100 | [diff] [blame] | 88 | INTG(X86_TRAP_SS, asm_exc_stack_segment), |
Thomas Gleixner | be4c11a | 2020-02-25 23:16:25 +0100 | [diff] [blame] | 89 | INTG(X86_TRAP_GP, asm_exc_general_protection), |
Thomas Gleixner | dad7106 | 2020-02-25 23:16:26 +0100 | [diff] [blame] | 90 | INTG(X86_TRAP_SPURIOUS, asm_exc_spurious_interrupt_bug), |
Thomas Gleixner | 14a8bd2 | 2020-02-25 23:16:27 +0100 | [diff] [blame] | 91 | INTG(X86_TRAP_MF, asm_exc_coprocessor_error), |
Thomas Gleixner | 436608b | 2020-02-25 23:16:28 +0100 | [diff] [blame] | 92 | INTG(X86_TRAP_AC, asm_exc_alignment_check), |
Thomas Gleixner | 48227e2 | 2020-02-25 23:16:29 +0100 | [diff] [blame] | 93 | INTG(X86_TRAP_XF, asm_exc_simd_coprocessor_error), |
Thomas Gleixner | b70543a | 2017-08-28 08:47:53 +0200 | [diff] [blame] | 94 | |
| 95 | #ifdef CONFIG_X86_32 |
| 96 | TSKG(X86_TRAP_DF, GDT_ENTRY_DOUBLEFAULT_TSS), |
| 97 | #else |
Thomas Gleixner | 1dcc917 | 2021-05-07 13:02:12 +0200 | [diff] [blame] | 98 | ISTG(X86_TRAP_DF, asm_exc_double_fault, IST_INDEX_DF), |
Thomas Gleixner | b70543a | 2017-08-28 08:47:53 +0200 | [diff] [blame] | 99 | #endif |
Thomas Gleixner | 1dcc917 | 2021-05-07 13:02:12 +0200 | [diff] [blame] | 100 | ISTG(X86_TRAP_DB, asm_exc_debug, IST_INDEX_DB), |
Thomas Gleixner | b70543a | 2017-08-28 08:47:53 +0200 | [diff] [blame] | 101 | |
| 102 | #ifdef CONFIG_X86_MCE |
Thomas Gleixner | 1dcc917 | 2021-05-07 13:02:12 +0200 | [diff] [blame] | 103 | ISTG(X86_TRAP_MC, asm_exc_machine_check, IST_INDEX_MCE), |
| 104 | #endif |
| 105 | |
| 106 | #ifdef CONFIG_AMD_MEM_ENCRYPT |
| 107 | ISTG(X86_TRAP_VC, asm_exc_vmm_communication, IST_INDEX_VC), |
Thomas Gleixner | b70543a | 2017-08-28 08:47:53 +0200 | [diff] [blame] | 108 | #endif |
| 109 | |
Thomas Gleixner | 4b6b911 | 2020-02-25 23:16:15 +0100 | [diff] [blame] | 110 | SYSG(X86_TRAP_OF, asm_exc_overflow), |
Thomas Gleixner | b70543a | 2017-08-28 08:47:53 +0200 | [diff] [blame] | 111 | #if defined(CONFIG_IA32_EMULATION) |
| 112 | SYSG(IA32_SYSCALL_VECTOR, entry_INT80_compat), |
| 113 | #elif defined(CONFIG_X86_32) |
| 114 | SYSG(IA32_SYSCALL_VECTOR, entry_INT80_32), |
| 115 | #endif |
| 116 | }; |
| 117 | |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 118 | /* |
| 119 | * The APIC and SMP idt entries |
| 120 | */ |
Andi Kleen | 327867f | 2017-12-21 16:18:21 -0800 | [diff] [blame] | 121 | static const __initconst struct idt_data apic_idts[] = { |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 122 | #ifdef CONFIG_SMP |
Thomas Gleixner | 13cad985 | 2020-05-21 22:05:45 +0200 | [diff] [blame] | 123 | INTG(RESCHEDULE_VECTOR, asm_sysvec_reschedule_ipi), |
Thomas Gleixner | 582f919 | 2020-05-21 22:05:40 +0200 | [diff] [blame] | 124 | INTG(CALL_FUNCTION_VECTOR, asm_sysvec_call_function), |
| 125 | INTG(CALL_FUNCTION_SINGLE_VECTOR, asm_sysvec_call_function_single), |
| 126 | INTG(IRQ_MOVE_CLEANUP_VECTOR, asm_sysvec_irq_move_cleanup), |
| 127 | INTG(REBOOT_VECTOR, asm_sysvec_reboot), |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 128 | #endif |
| 129 | |
| 130 | #ifdef CONFIG_X86_THERMAL_VECTOR |
Thomas Gleixner | 720909a | 2020-05-21 22:05:41 +0200 | [diff] [blame] | 131 | INTG(THERMAL_APIC_VECTOR, asm_sysvec_thermal), |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 132 | #endif |
| 133 | |
| 134 | #ifdef CONFIG_X86_MCE_THRESHOLD |
Thomas Gleixner | 720909a | 2020-05-21 22:05:41 +0200 | [diff] [blame] | 135 | INTG(THRESHOLD_APIC_VECTOR, asm_sysvec_threshold), |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 136 | #endif |
| 137 | |
| 138 | #ifdef CONFIG_X86_MCE_AMD |
Thomas Gleixner | 720909a | 2020-05-21 22:05:41 +0200 | [diff] [blame] | 139 | INTG(DEFERRED_ERROR_VECTOR, asm_sysvec_deferred_error), |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 140 | #endif |
| 141 | |
| 142 | #ifdef CONFIG_X86_LOCAL_APIC |
Thomas Gleixner | 720909a | 2020-05-21 22:05:41 +0200 | [diff] [blame] | 143 | INTG(LOCAL_TIMER_VECTOR, asm_sysvec_apic_timer_interrupt), |
| 144 | INTG(X86_PLATFORM_IPI_VECTOR, asm_sysvec_x86_platform_ipi), |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 145 | # ifdef CONFIG_HAVE_KVM |
Thomas Gleixner | 9c3b1f4 | 2020-05-21 22:05:42 +0200 | [diff] [blame] | 146 | INTG(POSTED_INTR_VECTOR, asm_sysvec_kvm_posted_intr_ipi), |
| 147 | INTG(POSTED_INTR_WAKEUP_VECTOR, asm_sysvec_kvm_posted_intr_wakeup_ipi), |
| 148 | INTG(POSTED_INTR_NESTED_VECTOR, asm_sysvec_kvm_posted_intr_nested_ipi), |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 149 | # endif |
| 150 | # ifdef CONFIG_IRQ_WORK |
Thomas Gleixner | 720909a | 2020-05-21 22:05:41 +0200 | [diff] [blame] | 151 | INTG(IRQ_WORK_VECTOR, asm_sysvec_irq_work), |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 152 | # endif |
Thomas Gleixner | 720909a | 2020-05-21 22:05:41 +0200 | [diff] [blame] | 153 | INTG(SPURIOUS_APIC_VECTOR, asm_sysvec_spurious_apic_interrupt), |
| 154 | INTG(ERROR_APIC_VECTOR, asm_sysvec_error_interrupt), |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 155 | #endif |
| 156 | }; |
| 157 | |
Thomas Gleixner | 3e77abd | 2020-05-28 16:53:20 +0200 | [diff] [blame] | 158 | /* Must be page-aligned because the real IDT is used in the cpu entry area */ |
| 159 | static gate_desc idt_table[IDT_ENTRIES] __page_aligned_bss; |
Thomas Gleixner | d8ed9d4 | 2017-08-28 08:47:43 +0200 | [diff] [blame] | 160 | |
Jason Andryuk | 286d966 | 2020-06-19 16:51:02 -0400 | [diff] [blame] | 161 | static struct desc_ptr idt_descr __ro_after_init = { |
Thomas Gleixner | 5a2bafca | 2020-05-28 16:53:18 +0200 | [diff] [blame] | 162 | .size = IDT_TABLE_SIZE - 1, |
Thomas Gleixner | 16bc18d | 2017-08-28 08:47:44 +0200 | [diff] [blame] | 163 | .address = (unsigned long) idt_table, |
| 164 | }; |
| 165 | |
Thomas Gleixner | 3e77abd | 2020-05-28 16:53:20 +0200 | [diff] [blame] | 166 | void load_current_idt(void) |
| 167 | { |
| 168 | lockdep_assert_irqs_disabled(); |
| 169 | load_idt(&idt_descr); |
| 170 | } |
| 171 | |
| 172 | #ifdef CONFIG_X86_F00F_BUG |
| 173 | bool idt_is_f00f_address(unsigned long address) |
| 174 | { |
| 175 | return ((address - idt_descr.address) >> 3) == 6; |
| 176 | } |
Thomas Gleixner | d8ed9d4 | 2017-08-28 08:47:43 +0200 | [diff] [blame] | 177 | #endif |
Thomas Gleixner | e802a51 | 2017-08-28 08:47:46 +0200 | [diff] [blame] | 178 | |
Thomas Gleixner | bdf5bde | 2020-05-28 16:53:16 +0200 | [diff] [blame] | 179 | static __init void |
Thomas Gleixner | db18da7 | 2017-08-28 08:47:57 +0200 | [diff] [blame] | 180 | idt_setup_from_table(gate_desc *idt, const struct idt_data *t, int size, bool sys) |
Thomas Gleixner | 3318e97 | 2017-08-28 08:47:49 +0200 | [diff] [blame] | 181 | { |
| 182 | gate_desc desc; |
| 183 | |
| 184 | for (; size > 0; t++, size--) { |
| 185 | idt_init_desc(&desc, t); |
Thomas Gleixner | 3318e97 | 2017-08-28 08:47:49 +0200 | [diff] [blame] | 186 | write_idt_entry(idt, t->vector, &desc); |
Thomas Gleixner | db18da7 | 2017-08-28 08:47:57 +0200 | [diff] [blame] | 187 | if (sys) |
Thomas Gleixner | 7854f82 | 2017-09-13 23:29:26 +0200 | [diff] [blame] | 188 | set_bit(t->vector, system_vectors); |
Thomas Gleixner | 3318e97 | 2017-08-28 08:47:49 +0200 | [diff] [blame] | 189 | } |
| 190 | } |
| 191 | |
Thomas Gleixner | bdf5bde | 2020-05-28 16:53:16 +0200 | [diff] [blame] | 192 | static __init void set_intr_gate(unsigned int n, const void *addr) |
Thomas Gleixner | facaa3e | 2017-08-28 08:47:59 +0200 | [diff] [blame] | 193 | { |
| 194 | struct idt_data data; |
| 195 | |
Joerg Roedel | 4bed226 | 2020-09-07 15:15:29 +0200 | [diff] [blame] | 196 | init_idt_data(&data, n, addr); |
Thomas Gleixner | facaa3e | 2017-08-28 08:47:59 +0200 | [diff] [blame] | 197 | |
| 198 | idt_setup_from_table(idt_table, &data, 1, false); |
| 199 | } |
| 200 | |
Thomas Gleixner | e802a51 | 2017-08-28 08:47:46 +0200 | [diff] [blame] | 201 | /** |
Thomas Gleixner | 433f892 | 2017-08-28 08:47:50 +0200 | [diff] [blame] | 202 | * idt_setup_early_traps - Initialize the idt table with early traps |
| 203 | * |
| 204 | * On X8664 these traps do not use interrupt stacks as they can't work |
| 205 | * before cpu_init() is invoked and sets up TSS. The IST variants are |
| 206 | * installed after that. |
| 207 | */ |
| 208 | void __init idt_setup_early_traps(void) |
| 209 | { |
Thomas Gleixner | db18da7 | 2017-08-28 08:47:57 +0200 | [diff] [blame] | 210 | idt_setup_from_table(idt_table, early_idts, ARRAY_SIZE(early_idts), |
| 211 | true); |
Thomas Gleixner | 433f892 | 2017-08-28 08:47:50 +0200 | [diff] [blame] | 212 | load_idt(&idt_descr); |
| 213 | } |
| 214 | |
Thomas Gleixner | b70543a | 2017-08-28 08:47:53 +0200 | [diff] [blame] | 215 | /** |
| 216 | * idt_setup_traps - Initialize the idt table with default traps |
| 217 | */ |
| 218 | void __init idt_setup_traps(void) |
| 219 | { |
Thomas Gleixner | db18da7 | 2017-08-28 08:47:57 +0200 | [diff] [blame] | 220 | idt_setup_from_table(idt_table, def_idts, ARRAY_SIZE(def_idts), true); |
Thomas Gleixner | b70543a | 2017-08-28 08:47:53 +0200 | [diff] [blame] | 221 | } |
| 222 | |
Thomas Gleixner | 433f892 | 2017-08-28 08:47:50 +0200 | [diff] [blame] | 223 | #ifdef CONFIG_X86_64 |
Thomas Gleixner | 3e77abd | 2020-05-28 16:53:20 +0200 | [diff] [blame] | 224 | /* |
| 225 | * Early traps running on the DEFAULT_STACK because the other interrupt |
| 226 | * stacks work only after cpu_init(). |
| 227 | */ |
| 228 | static const __initconst struct idt_data early_pf_idts[] = { |
| 229 | INTG(X86_TRAP_PF, asm_exc_page_fault), |
| 230 | }; |
| 231 | |
Thomas Gleixner | 433f892 | 2017-08-28 08:47:50 +0200 | [diff] [blame] | 232 | /** |
| 233 | * idt_setup_early_pf - Initialize the idt table with early pagefault handler |
| 234 | * |
| 235 | * On X8664 this does not use interrupt stacks as they can't work before |
| 236 | * cpu_init() is invoked and sets up TSS. The IST variant is installed |
| 237 | * after that. |
| 238 | * |
Thomas Gleixner | 94438af | 2020-05-28 16:53:17 +0200 | [diff] [blame] | 239 | * Note, that X86_64 cannot install the real #PF handler in |
Ingo Molnar | d9f6e12 | 2021-03-18 15:28:01 +0100 | [diff] [blame] | 240 | * idt_setup_early_traps() because the memory initialization needs the #PF |
Thomas Gleixner | 94438af | 2020-05-28 16:53:17 +0200 | [diff] [blame] | 241 | * handler from the early_idt_handler_array to initialize the early page |
| 242 | * tables. |
Thomas Gleixner | 433f892 | 2017-08-28 08:47:50 +0200 | [diff] [blame] | 243 | */ |
| 244 | void __init idt_setup_early_pf(void) |
| 245 | { |
| 246 | idt_setup_from_table(idt_table, early_pf_idts, |
Thomas Gleixner | db18da7 | 2017-08-28 08:47:57 +0200 | [diff] [blame] | 247 | ARRAY_SIZE(early_pf_idts), true); |
Thomas Gleixner | 433f892 | 2017-08-28 08:47:50 +0200 | [diff] [blame] | 248 | } |
| 249 | #endif |
| 250 | |
Thomas Gleixner | 00229a5 | 2020-05-28 16:53:19 +0200 | [diff] [blame] | 251 | static void __init idt_map_in_cea(void) |
| 252 | { |
| 253 | /* |
| 254 | * Set the IDT descriptor to a fixed read-only location in the cpu |
| 255 | * entry area, so that the "sidt" instruction will not leak the |
| 256 | * location of the kernel, and to defend the IDT against arbitrary |
| 257 | * memory write vulnerabilities. |
| 258 | */ |
| 259 | cea_set_pte(CPU_ENTRY_AREA_RO_IDT_VADDR, __pa_symbol(idt_table), |
| 260 | PAGE_KERNEL_RO); |
| 261 | idt_descr.address = CPU_ENTRY_AREA_RO_IDT; |
| 262 | } |
| 263 | |
Thomas Gleixner | 433f892 | 2017-08-28 08:47:50 +0200 | [diff] [blame] | 264 | /** |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 265 | * idt_setup_apic_and_irq_gates - Setup APIC/SMP and normal interrupt gates |
| 266 | */ |
| 267 | void __init idt_setup_apic_and_irq_gates(void) |
| 268 | { |
Thomas Gleixner | dc20b2d | 2017-08-28 08:47:55 +0200 | [diff] [blame] | 269 | int i = FIRST_EXTERNAL_VECTOR; |
| 270 | void *entry; |
| 271 | |
Thomas Gleixner | db18da7 | 2017-08-28 08:47:57 +0200 | [diff] [blame] | 272 | idt_setup_from_table(idt_table, apic_idts, ARRAY_SIZE(apic_idts), true); |
Thomas Gleixner | dc20b2d | 2017-08-28 08:47:55 +0200 | [diff] [blame] | 273 | |
Thomas Gleixner | 7854f82 | 2017-09-13 23:29:26 +0200 | [diff] [blame] | 274 | for_each_clear_bit_from(i, system_vectors, FIRST_SYSTEM_VECTOR) { |
Thomas Gleixner | dc20b2d | 2017-08-28 08:47:55 +0200 | [diff] [blame] | 275 | entry = irq_entries_start + 8 * (i - FIRST_EXTERNAL_VECTOR); |
| 276 | set_intr_gate(i, entry); |
| 277 | } |
| 278 | |
Thomas Gleixner | dc20b2d | 2017-08-28 08:47:55 +0200 | [diff] [blame] | 279 | #ifdef CONFIG_X86_LOCAL_APIC |
Dou Liyang | 3366281 | 2018-05-23 10:35:55 +0800 | [diff] [blame] | 280 | for_each_clear_bit_from(i, system_vectors, NR_VECTORS) { |
Vitaly Kuznetsov | 1f1fbc7 | 2020-04-28 11:38:24 +0200 | [diff] [blame] | 281 | /* |
| 282 | * Don't set the non assigned system vectors in the |
| 283 | * system_vectors bitmap. Otherwise they show up in |
| 284 | * /proc/interrupts. |
| 285 | */ |
Thomas Gleixner | f8a8fe6 | 2019-06-28 13:11:54 +0200 | [diff] [blame] | 286 | entry = spurious_entries_start + 8 * (i - FIRST_SYSTEM_VECTOR); |
| 287 | set_intr_gate(i, entry); |
Thomas Gleixner | dc20b2d | 2017-08-28 08:47:55 +0200 | [diff] [blame] | 288 | } |
Dou Liyang | 3366281 | 2018-05-23 10:35:55 +0800 | [diff] [blame] | 289 | #endif |
Thomas Gleixner | 00229a5 | 2020-05-28 16:53:19 +0200 | [diff] [blame] | 290 | /* Map IDT into CPU entry area and reload it. */ |
| 291 | idt_map_in_cea(); |
| 292 | load_idt(&idt_descr); |
| 293 | |
Thomas Gleixner | 3e77abd | 2020-05-28 16:53:20 +0200 | [diff] [blame] | 294 | /* Make the IDT table read only */ |
| 295 | set_memory_ro((unsigned long)&idt_table, 1); |
| 296 | |
Vitaly Kuznetsov | 0618432 | 2020-04-28 11:38:23 +0200 | [diff] [blame] | 297 | idt_setup_done = true; |
Thomas Gleixner | 636a759 | 2017-08-28 08:47:54 +0200 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | /** |
Thomas Gleixner | 588787f | 2017-08-28 08:47:47 +0200 | [diff] [blame] | 301 | * idt_setup_early_handler - Initializes the idt table with early handlers |
| 302 | */ |
| 303 | void __init idt_setup_early_handler(void) |
| 304 | { |
| 305 | int i; |
| 306 | |
| 307 | for (i = 0; i < NUM_EXCEPTION_VECTORS; i++) |
| 308 | set_intr_gate(i, early_idt_handler_array[i]); |
Thomas Gleixner | 87e8178 | 2017-08-28 08:47:48 +0200 | [diff] [blame] | 309 | #ifdef CONFIG_X86_32 |
| 310 | for ( ; i < NR_VECTORS; i++) |
| 311 | set_intr_gate(i, early_ignore_irq); |
| 312 | #endif |
Thomas Gleixner | 588787f | 2017-08-28 08:47:47 +0200 | [diff] [blame] | 313 | load_idt(&idt_descr); |
| 314 | } |
| 315 | |
| 316 | /** |
Thomas Gleixner | e802a51 | 2017-08-28 08:47:46 +0200 | [diff] [blame] | 317 | * idt_invalidate - Invalidate interrupt descriptor table |
Thomas Gleixner | e802a51 | 2017-08-28 08:47:46 +0200 | [diff] [blame] | 318 | */ |
H. Peter Anvin (Intel) | 8ec9069 | 2021-05-19 14:21:50 -0700 | [diff] [blame] | 319 | void idt_invalidate(void) |
Thomas Gleixner | e802a51 | 2017-08-28 08:47:46 +0200 | [diff] [blame] | 320 | { |
H. Peter Anvin (Intel) | 8ec9069 | 2021-05-19 14:21:50 -0700 | [diff] [blame] | 321 | static const struct desc_ptr idt = { .address = 0, .size = 0 }; |
Thomas Gleixner | e802a51 | 2017-08-28 08:47:46 +0200 | [diff] [blame] | 322 | |
| 323 | load_idt(&idt); |
| 324 | } |
Thomas Gleixner | db18da7 | 2017-08-28 08:47:57 +0200 | [diff] [blame] | 325 | |
Vitaly Kuznetsov | 0618432 | 2020-04-28 11:38:23 +0200 | [diff] [blame] | 326 | void __init alloc_intr_gate(unsigned int n, const void *addr) |
Thomas Gleixner | db18da7 | 2017-08-28 08:47:57 +0200 | [diff] [blame] | 327 | { |
Vitaly Kuznetsov | 0618432 | 2020-04-28 11:38:23 +0200 | [diff] [blame] | 328 | if (WARN_ON(n < FIRST_SYSTEM_VECTOR)) |
| 329 | return; |
| 330 | |
| 331 | if (WARN_ON(idt_setup_done)) |
| 332 | return; |
| 333 | |
| 334 | if (!WARN_ON(test_and_set_bit(n, system_vectors))) |
Thomas Gleixner | 4447ac1 | 2017-08-28 08:47:58 +0200 | [diff] [blame] | 335 | set_intr_gate(n, addr); |
Thomas Gleixner | db18da7 | 2017-08-28 08:47:57 +0200 | [diff] [blame] | 336 | } |