blob: bc359dd2f7f646a379840a758c20032a86273c4a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
H. Peter Anvin1965aae2008-10-22 22:26:29 -07002#ifndef _ASM_X86_DESC_H
3#define _ASM_X86_DESC_H
Glauber de Oliveira Costa80fbb692008-01-30 13:31:13 +01004
Glauber de Oliveira Costa80fbb692008-01-30 13:31:13 +01005#include <asm/desc_defs.h>
6#include <asm/ldt.h>
Glauber de Oliveira Costa881c2972008-01-30 13:31:14 +01007#include <asm/mmu.h>
Thomas Garnier69218e42017-03-14 10:05:07 -07008#include <asm/fixmap.h>
Thomas Gleixner05161b92017-08-28 08:47:18 +02009#include <asm/irq_vectors.h>
Thomas Gleixner92a0f812017-12-20 18:51:31 +010010#include <asm/cpu_entry_area.h>
Ingo Molnar9a3865b2011-05-27 09:29:32 +020011
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +010012#include <linux/smp.h>
Alex Shic6ae41e2012-05-11 15:35:27 +080013#include <linux/percpu.h>
Glauber de Oliveira Costa80fbb692008-01-30 13:31:13 +010014
Ingo Molnar9a3865b2011-05-27 09:29:32 +020015static inline void fill_ldt(struct desc_struct *desc, const struct user_desc *info)
Glauber de Oliveira Costa80fbb692008-01-30 13:31:13 +010016{
Ingo Molnar9a3865b2011-05-27 09:29:32 +020017 desc->limit0 = info->limit & 0x0ffff;
Glauber de Oliveira Costa80fbb692008-01-30 13:31:13 +010018
Ingo Molnar9a3865b2011-05-27 09:29:32 +020019 desc->base0 = (info->base_addr & 0x0000ffff);
20 desc->base1 = (info->base_addr & 0x00ff0000) >> 16;
21
22 desc->type = (info->read_exec_only ^ 1) << 1;
23 desc->type |= info->contents << 2;
24
25 desc->s = 1;
26 desc->dpl = 0x3;
27 desc->p = info->seg_not_present ^ 1;
Thomas Gleixner38e9e812017-08-28 08:47:41 +020028 desc->limit1 = (info->limit & 0xf0000) >> 16;
Ingo Molnar9a3865b2011-05-27 09:29:32 +020029 desc->avl = info->useable;
30 desc->d = info->seg_32bit;
31 desc->g = info->limit_in_pages;
32
33 desc->base2 = (info->base_addr & 0xff000000) >> 24;
Jeremy Fitzhardinge64f53a02008-07-27 08:42:32 -070034 /*
Andy Lutomirski318f5a22011-08-03 09:31:53 -040035 * Don't allow setting of the lm bit. It would confuse
36 * user_64bit_mode and would get overridden by sysret anyway.
Jeremy Fitzhardinge64f53a02008-07-27 08:42:32 -070037 */
Ingo Molnar9a3865b2011-05-27 09:29:32 +020038 desc->l = 0;
Glauber de Oliveira Costa80fbb692008-01-30 13:31:13 +010039}
40
Glauber de Oliveira Costa881c2972008-01-30 13:31:14 +010041extern struct desc_ptr idt_descr;
42extern gate_desc idt_table[];
Kees Cook404f6aa2016-08-08 16:29:06 -070043extern const struct desc_ptr debug_idt_descr;
Seiji Aguchi629f4f92013-06-20 11:45:44 -040044extern gate_desc debug_idt_table[];
Glauber de Oliveira Costa80fbb692008-01-30 13:31:13 +010045
Glauber Costaa9390982008-05-28 16:19:53 -070046struct gdt_page {
47 struct desc_struct gdt[GDT_ENTRIES];
48} __attribute__((aligned(PAGE_SIZE)));
Ingo Molnar9a3865b2011-05-27 09:29:32 +020049
David Howells9b8de742009-04-21 23:00:24 +010050DECLARE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page);
Glauber Costaa9390982008-05-28 16:19:53 -070051
Thomas Garnier69218e42017-03-14 10:05:07 -070052/* Provide the original GDT */
53static inline struct desc_struct *get_cpu_gdt_rw(unsigned int cpu)
Glauber Costaa9390982008-05-28 16:19:53 -070054{
55 return per_cpu(gdt_page, cpu).gdt;
56}
57
Thomas Garnier69218e42017-03-14 10:05:07 -070058/* Provide the current original GDT */
59static inline struct desc_struct *get_current_gdt_rw(void)
60{
61 return this_cpu_ptr(&gdt_page)->gdt;
62}
63
Thomas Garnier69218e42017-03-14 10:05:07 -070064/* Provide the fixmap address of the remapped GDT */
65static inline struct desc_struct *get_cpu_gdt_ro(int cpu)
66{
Andy Lutomirskief8813a2017-12-04 15:07:15 +010067 return (struct desc_struct *)&get_cpu_entry_area(cpu)->gdt;
Thomas Garnier69218e42017-03-14 10:05:07 -070068}
69
Thomas Garnier69218e42017-03-14 10:05:07 -070070/* Provide the current read-only GDT */
71static inline struct desc_struct *get_current_gdt_ro(void)
72{
73 return get_cpu_gdt_ro(smp_processor_id());
74}
75
Andy Lutomirskiaa4ea67552017-03-22 14:32:30 -070076/* Provide the physical address of the GDT page. */
77static inline phys_addr_t get_cpu_gdt_paddr(unsigned int cpu)
78{
79 return per_cpu_ptr_to_phys(get_cpu_gdt_rw(cpu));
80}
81
Glauber de Oliveira Costa507f90c2008-01-30 13:31:14 +010082static inline void pack_gate(gate_desc *gate, unsigned type, unsigned long func,
83 unsigned dpl, unsigned ist, unsigned seg)
84{
Thomas Gleixner64b163f2017-08-28 08:47:37 +020085 gate->offset_low = (u16) func;
86 gate->bits.p = 1;
87 gate->bits.dpl = dpl;
88 gate->bits.zero = 0;
89 gate->bits.type = type;
90 gate->offset_middle = (u16) (func >> 16);
91#ifdef CONFIG_X86_64
Ingo Molnar9a3865b2011-05-27 09:29:32 +020092 gate->segment = __KERNEL_CS;
Thomas Gleixner64b163f2017-08-28 08:47:37 +020093 gate->bits.ist = ist;
94 gate->reserved = 0;
95 gate->offset_high = (u32) (func >> 32);
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +010096#else
Thomas Gleixner64b163f2017-08-28 08:47:37 +020097 gate->segment = seg;
98 gate->bits.ist = 0;
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +010099#endif
Thomas Gleixner64b163f2017-08-28 08:47:37 +0200100}
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100101
Glauber de Oliveira Costa746ff602008-01-30 13:31:27 +0100102static inline int desc_empty(const void *ptr)
103{
104 const u32 *desc = ptr;
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200105
Glauber de Oliveira Costa746ff602008-01-30 13:31:27 +0100106 return !(desc[0] | desc[1]);
107}
108
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100109#ifdef CONFIG_PARAVIRT
110#include <asm/paravirt.h>
111#else
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200112#define load_TR_desc() native_load_tr_desc()
113#define load_gdt(dtr) native_load_gdt(dtr)
114#define load_idt(dtr) native_load_idt(dtr)
115#define load_tr(tr) asm volatile("ltr %0"::"m" (tr))
116#define load_ldt(ldt) asm volatile("lldt %0"::"m" (ldt))
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100117
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200118#define store_gdt(dtr) native_store_gdt(dtr)
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200119#define store_tr(tr) (tr = native_store_tr())
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100120
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200121#define load_TLS(t, cpu) native_load_tls(t, cpu)
122#define set_ldt native_set_ldt
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100123
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200124#define write_ldt_entry(dt, entry, desc) native_write_ldt_entry(dt, entry, desc)
125#define write_gdt_entry(dt, entry, desc, type) native_write_gdt_entry(dt, entry, desc, type)
126#define write_idt_entry(dt, entry, g) native_write_idt_entry(dt, entry, g)
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700127
128static inline void paravirt_alloc_ldt(struct desc_struct *ldt, unsigned entries)
129{
130}
131
132static inline void paravirt_free_ldt(struct desc_struct *ldt, unsigned entries)
133{
134}
135#endif /* CONFIG_PARAVIRT */
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100136
Jaswinder Singh Rajput8229d752009-03-11 19:13:49 +0530137#define store_ldt(ldt) asm("sldt %0" : "=m"(ldt))
138
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200139static inline void native_write_idt_entry(gate_desc *idt, int entry, const gate_desc *gate)
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100140{
141 memcpy(&idt[entry], gate, sizeof(*gate));
142}
143
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200144static inline void native_write_ldt_entry(struct desc_struct *ldt, int entry, const void *desc)
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100145{
146 memcpy(&ldt[entry], desc, 8);
147}
148
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200149static inline void
150native_write_gdt_entry(struct desc_struct *gdt, int entry, const void *desc, int type)
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100151{
152 unsigned int size;
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200153
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100154 switch (type) {
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200155 case DESC_TSS: size = sizeof(tss_desc); break;
156 case DESC_LDT: size = sizeof(ldt_desc); break;
157 default: size = sizeof(*gdt); break;
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100158 }
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200159
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100160 memcpy(&gdt[entry], desc, size);
161}
162
Thomas Gleixner64b163f2017-08-28 08:47:37 +0200163static inline void set_tssldt_descriptor(void *d, unsigned long addr,
164 unsigned type, unsigned size)
Glauber de Oliveira Costac81c6ca2008-01-30 13:31:14 +0100165{
Thomas Gleixner87cc0372017-08-28 08:47:42 +0200166 struct ldttss_desc *desc = d;
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200167
Glauber de Oliveira Costaf6e0eba2008-01-30 13:31:20 +0100168 memset(desc, 0, sizeof(*desc));
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200169
Thomas Gleixner87cc0372017-08-28 08:47:42 +0200170 desc->limit0 = (u16) size;
Thomas Gleixner64b163f2017-08-28 08:47:37 +0200171 desc->base0 = (u16) addr;
172 desc->base1 = (addr >> 16) & 0xFF;
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200173 desc->type = type;
174 desc->p = 1;
175 desc->limit1 = (size >> 16) & 0xF;
Thomas Gleixner64b163f2017-08-28 08:47:37 +0200176 desc->base2 = (addr >> 24) & 0xFF;
Thomas Gleixner87cc0372017-08-28 08:47:42 +0200177#ifdef CONFIG_X86_64
Thomas Gleixner64b163f2017-08-28 08:47:37 +0200178 desc->base3 = (u32) (addr >> 32);
Glauber de Oliveira Costac81c6ca2008-01-30 13:31:14 +0100179#endif
180}
181
Andy Lutomirski7fb983b2017-12-04 15:07:17 +0100182static inline void __set_tss_desc(unsigned cpu, unsigned int entry, struct x86_hw_tss *addr)
Glauber de Oliveira Costac81c6ca2008-01-30 13:31:14 +0100183{
Thomas Garnier69218e42017-03-14 10:05:07 -0700184 struct desc_struct *d = get_cpu_gdt_rw(cpu);
Glauber de Oliveira Costac81c6ca2008-01-30 13:31:14 +0100185 tss_desc tss;
186
Glauber de Oliveira Costaf6e0eba2008-01-30 13:31:20 +0100187 set_tssldt_descriptor(&tss, (unsigned long)addr, DESC_TSS,
Andy Lutomirski4f53ab12017-02-20 08:56:09 -0800188 __KERNEL_TSS_LIMIT);
Glauber de Oliveira Costac81c6ca2008-01-30 13:31:14 +0100189 write_gdt_entry(d, entry, &tss, DESC_TSS);
190}
191
192#define set_tss_desc(cpu, addr) __set_tss_desc(cpu, GDT_ENTRY_TSS, addr)
193
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100194static inline void native_set_ldt(const void *addr, unsigned int entries)
195{
196 if (likely(entries == 0))
Joe Perchesc1773a12008-03-23 01:01:58 -0700197 asm volatile("lldt %w0"::"q" (0));
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100198 else {
199 unsigned cpu = smp_processor_id();
200 ldt_desc ldt;
201
Michael Karcher5ac37f82008-07-11 18:04:46 +0200202 set_tssldt_descriptor(&ldt, (unsigned long)addr, DESC_LDT,
203 entries * LDT_ENTRY_SIZE - 1);
Thomas Garnier69218e42017-03-14 10:05:07 -0700204 write_gdt_entry(get_cpu_gdt_rw(cpu), GDT_ENTRY_LDT,
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100205 &ldt, DESC_LDT);
Joe Perchesc1773a12008-03-23 01:01:58 -0700206 asm volatile("lldt %w0"::"q" (GDT_ENTRY_LDT*8));
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100207 }
208}
209
Thomas Garnier45fc8752017-03-14 10:05:08 -0700210static inline void native_load_gdt(const struct desc_ptr *dtr)
211{
212 asm volatile("lgdt %0"::"m" (*dtr));
213}
214
215static inline void native_load_idt(const struct desc_ptr *dtr)
216{
217 asm volatile("lidt %0"::"m" (*dtr));
218}
219
220static inline void native_store_gdt(struct desc_ptr *dtr)
221{
222 asm volatile("sgdt %0":"=m" (*dtr));
223}
224
Juergen Gross87930012017-09-04 12:25:27 +0200225static inline void store_idt(struct desc_ptr *dtr)
Thomas Garnier45fc8752017-03-14 10:05:08 -0700226{
227 asm volatile("sidt %0":"=m" (*dtr));
228}
229
230/*
231 * The LTR instruction marks the TSS GDT entry as busy. On 64-bit, the GDT is
232 * a read-only remapping. To prevent a page fault, the GDT is switched to the
233 * original writeable version when needed.
234 */
235#ifdef CONFIG_X86_64
236static inline void native_load_tr_desc(void)
237{
238 struct desc_ptr gdt;
239 int cpu = raw_smp_processor_id();
240 bool restore = 0;
241 struct desc_struct *fixmap_gdt;
242
243 native_store_gdt(&gdt);
244 fixmap_gdt = get_cpu_gdt_ro(cpu);
245
246 /*
247 * If the current GDT is the read-only fixmap, swap to the original
248 * writeable version. Swap back at the end.
249 */
250 if (gdt.address == (unsigned long)fixmap_gdt) {
251 load_direct_gdt(cpu);
252 restore = 1;
253 }
254 asm volatile("ltr %w0"::"q" (GDT_ENTRY_TSS*8));
255 if (restore)
256 load_fixmap_gdt(cpu);
257}
258#else
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100259static inline void native_load_tr_desc(void)
260{
261 asm volatile("ltr %w0"::"q" (GDT_ENTRY_TSS*8));
262}
Thomas Garnier45fc8752017-03-14 10:05:08 -0700263#endif
264
265static inline unsigned long native_store_tr(void)
266{
267 unsigned long tr;
268
269 asm volatile("str %0":"=r" (tr));
270
271 return tr;
272}
273
274static inline void native_load_tls(struct thread_struct *t, unsigned int cpu)
275{
276 struct desc_struct *gdt = get_cpu_gdt_rw(cpu);
277 unsigned int i;
278
279 for (i = 0; i < GDT_ENTRY_TLS_ENTRIES; i++)
280 gdt[GDT_ENTRY_TLS_MIN + i] = t->tls_array[i];
281}
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100282
Andy Lutomirskib7ceaec2017-02-22 07:36:16 -0800283DECLARE_PER_CPU(bool, __tss_limit_invalid);
284
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800285static inline void force_reload_TR(void)
286{
Thomas Garnier69218e42017-03-14 10:05:07 -0700287 struct desc_struct *d = get_current_gdt_rw();
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800288 tss_desc tss;
289
290 memcpy(&tss, &d[GDT_ENTRY_TSS], sizeof(tss_desc));
291
292 /*
293 * LTR requires an available TSS, and the TSS is currently
294 * busy. Make it be available so that LTR will work.
295 */
296 tss.type = DESC_TSS;
297 write_gdt_entry(d, GDT_ENTRY_TSS, &tss, DESC_TSS);
298
299 load_TR_desc();
Andy Lutomirskib7ceaec2017-02-22 07:36:16 -0800300 this_cpu_write(__tss_limit_invalid, false);
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800301}
302
Andy Lutomirskib7ceaec2017-02-22 07:36:16 -0800303/*
304 * Call this if you need the TSS limit to be correct, which should be the case
305 * if and only if you have TIF_IO_BITMAP set or you're switching to a task
306 * with TIF_IO_BITMAP set.
307 */
308static inline void refresh_tss_limit(void)
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800309{
310 DEBUG_LOCKS_WARN_ON(preemptible());
311
Andy Lutomirskib7ceaec2017-02-22 07:36:16 -0800312 if (unlikely(this_cpu_read(__tss_limit_invalid)))
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800313 force_reload_TR();
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800314}
315
316/*
317 * If you do something evil that corrupts the cached TSS limit (I'm looking
318 * at you, VMX exits), call this function.
319 *
320 * The optimization here is that the TSS limit only matters for Linux if the
321 * IO bitmap is in use. If the TSS limit gets forced to its minimum value,
322 * everything works except that IO bitmap will be ignored and all CPL 3 IO
323 * instructions will #GP, which is exactly what we want for normal tasks.
324 */
325static inline void invalidate_tss_limit(void)
326{
327 DEBUG_LOCKS_WARN_ON(preemptible());
328
329 if (unlikely(test_thread_flag(TIF_IO_BITMAP)))
330 force_reload_TR();
331 else
Andy Lutomirskib7ceaec2017-02-22 07:36:16 -0800332 this_cpu_write(__tss_limit_invalid, true);
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800333}
334
Andy Lutomirskie30ab182015-01-22 11:27:58 -0800335/* This intentionally ignores lm, since 32-bit apps don't have that field. */
336#define LDT_empty(info) \
Joe Perchesc1773a12008-03-23 01:01:58 -0700337 ((info)->base_addr == 0 && \
338 (info)->limit == 0 && \
339 (info)->contents == 0 && \
340 (info)->read_exec_only == 1 && \
341 (info)->seg_32bit == 0 && \
342 (info)->limit_in_pages == 0 && \
343 (info)->seg_not_present == 1 && \
344 (info)->useable == 0)
Glauber de Oliveira Costa881c2972008-01-30 13:31:14 +0100345
Andy Lutomirski3669ef92015-01-22 11:27:59 -0800346/* Lots of programs expect an all-zero user_desc to mean "no segment at all". */
347static inline bool LDT_zero(const struct user_desc *info)
348{
349 return (info->base_addr == 0 &&
350 info->limit == 0 &&
351 info->contents == 0 &&
352 info->read_exec_only == 0 &&
353 info->seg_32bit == 0 &&
354 info->limit_in_pages == 0 &&
355 info->seg_not_present == 0 &&
356 info->useable == 0);
357}
358
Glauber de Oliveira Costa881c2972008-01-30 13:31:14 +0100359static inline void clear_LDT(void)
360{
361 set_ldt(NULL, 0);
362}
363
Roland McGrath1bd57182008-01-30 13:31:51 +0100364static inline unsigned long get_desc_base(const struct desc_struct *desc)
Glauber de Oliveira Costacc697852008-01-30 13:31:14 +0100365{
Chris Lalancette2c759102009-11-05 11:47:08 +0100366 return (unsigned)(desc->base0 | ((desc->base1) << 16) | ((desc->base2) << 24));
Glauber de Oliveira Costacc697852008-01-30 13:31:14 +0100367}
Roland McGrath1bd57182008-01-30 13:31:51 +0100368
Akinobu Mita57594742009-07-19 00:11:06 +0900369static inline void set_desc_base(struct desc_struct *desc, unsigned long base)
370{
371 desc->base0 = base & 0xffff;
372 desc->base1 = (base >> 16) & 0xff;
373 desc->base2 = (base >> 24) & 0xff;
374}
375
Roland McGrath1bd57182008-01-30 13:31:51 +0100376static inline unsigned long get_desc_limit(const struct desc_struct *desc)
377{
Thomas Gleixner38e9e812017-08-28 08:47:41 +0200378 return desc->limit0 | (desc->limit1 << 16);
Roland McGrath1bd57182008-01-30 13:31:51 +0100379}
380
Akinobu Mita57594742009-07-19 00:11:06 +0900381static inline void set_desc_limit(struct desc_struct *desc, unsigned long limit)
382{
383 desc->limit0 = limit & 0xffff;
Thomas Gleixner38e9e812017-08-28 08:47:41 +0200384 desc->limit1 = (limit >> 16) & 0xf;
Akinobu Mita57594742009-07-19 00:11:06 +0900385}
386
Thomas Gleixnerfacaa3e2017-08-28 08:47:59 +0200387void update_intr_gate(unsigned int n, const void *addr);
Thomas Gleixnerdb18da72017-08-28 08:47:57 +0200388void alloc_intr_gate(unsigned int n, const void *addr);
Glauber de Oliveira Costa507f90c2008-01-30 13:31:14 +0100389
Yinghai Lub77b8812008-12-19 15:23:44 -0800390extern unsigned long used_vectors[];
Alan Mayer305b92a2008-04-15 15:36:56 -0500391
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400392#ifdef CONFIG_X86_64
393DECLARE_PER_CPU(u32, debug_idt_ctr);
394static inline bool is_debug_idt_enabled(void)
395{
396 if (this_cpu_read(debug_idt_ctr))
397 return true;
398
399 return false;
400}
401
402static inline void load_debug_idt(void)
403{
404 load_idt((const struct desc_ptr *)&debug_idt_descr);
405}
406#else
407static inline bool is_debug_idt_enabled(void)
408{
409 return false;
410}
411
412static inline void load_debug_idt(void)
413{
414}
415#endif
416
417/*
Steven Rostedt (Red Hat)2b4bc782013-06-22 13:16:19 -0400418 * The load_current_idt() must be called with interrupts disabled
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400419 * to avoid races. That way the IDT will always be set back to the expected
Steven Rostedt (Red Hat)2b4bc782013-06-22 13:16:19 -0400420 * descriptor. It's also called when a CPU is being initialized, and
421 * that doesn't need to disable interrupts, as nothing should be
422 * bothering the CPU then.
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400423 */
424static inline void load_current_idt(void)
425{
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400426 if (is_debug_idt_enabled())
427 load_debug_idt();
428 else
429 load_idt((const struct desc_ptr *)&idt_descr);
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400430}
Thomas Gleixnere802a512017-08-28 08:47:46 +0200431
Thomas Gleixner588787f2017-08-28 08:47:47 +0200432extern void idt_setup_early_handler(void);
433extern void idt_setup_early_traps(void);
Thomas Gleixnerb70543a2017-08-28 08:47:53 +0200434extern void idt_setup_traps(void);
Thomas Gleixner636a7592017-08-28 08:47:54 +0200435extern void idt_setup_apic_and_irq_gates(void);
Thomas Gleixner588787f2017-08-28 08:47:47 +0200436
437#ifdef CONFIG_X86_64
438extern void idt_setup_early_pf(void);
Thomas Gleixner90f62252017-08-28 08:47:52 +0200439extern void idt_setup_ist_traps(void);
Thomas Gleixner0a309082017-08-28 08:47:51 +0200440extern void idt_setup_debugidt_traps(void);
Thomas Gleixner588787f2017-08-28 08:47:47 +0200441#else
442static inline void idt_setup_early_pf(void) { }
Thomas Gleixner90f62252017-08-28 08:47:52 +0200443static inline void idt_setup_ist_traps(void) { }
Thomas Gleixner0a309082017-08-28 08:47:51 +0200444static inline void idt_setup_debugidt_traps(void) { }
Thomas Gleixner588787f2017-08-28 08:47:47 +0200445#endif
446
Thomas Gleixnere802a512017-08-28 08:47:46 +0200447extern void idt_invalidate(void *addr);
448
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700449#endif /* _ASM_X86_DESC_H */