blob: 13c5ee878a477902b8494532b24853b6c156a170 [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;
Thomas Gleixner9f5cb6b2017-12-15 20:35:11 +010024 /* Set the ACCESS bit so it can be mapped RO */
25 desc->type |= 1;
Ingo Molnar9a3865b2011-05-27 09:29:32 +020026
27 desc->s = 1;
28 desc->dpl = 0x3;
29 desc->p = info->seg_not_present ^ 1;
Thomas Gleixner38e9e812017-08-28 08:47:41 +020030 desc->limit1 = (info->limit & 0xf0000) >> 16;
Ingo Molnar9a3865b2011-05-27 09:29:32 +020031 desc->avl = info->useable;
32 desc->d = info->seg_32bit;
33 desc->g = info->limit_in_pages;
34
35 desc->base2 = (info->base_addr & 0xff000000) >> 24;
Jeremy Fitzhardinge64f53a02008-07-27 08:42:32 -070036 /*
Andy Lutomirski318f5a22011-08-03 09:31:53 -040037 * Don't allow setting of the lm bit. It would confuse
38 * user_64bit_mode and would get overridden by sysret anyway.
Jeremy Fitzhardinge64f53a02008-07-27 08:42:32 -070039 */
Ingo Molnar9a3865b2011-05-27 09:29:32 +020040 desc->l = 0;
Glauber de Oliveira Costa80fbb692008-01-30 13:31:13 +010041}
42
Glauber de Oliveira Costa881c2972008-01-30 13:31:14 +010043extern struct desc_ptr idt_descr;
44extern gate_desc idt_table[];
Kees Cook404f6aa2016-08-08 16:29:06 -070045extern const struct desc_ptr debug_idt_descr;
Seiji Aguchi629f4f92013-06-20 11:45:44 -040046extern gate_desc debug_idt_table[];
Glauber de Oliveira Costa80fbb692008-01-30 13:31:13 +010047
Glauber Costaa9390982008-05-28 16:19:53 -070048struct gdt_page {
49 struct desc_struct gdt[GDT_ENTRIES];
50} __attribute__((aligned(PAGE_SIZE)));
Ingo Molnar9a3865b2011-05-27 09:29:32 +020051
David Howells9b8de742009-04-21 23:00:24 +010052DECLARE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page);
Glauber Costaa9390982008-05-28 16:19:53 -070053
Thomas Garnier69218e42017-03-14 10:05:07 -070054/* Provide the original GDT */
55static inline struct desc_struct *get_cpu_gdt_rw(unsigned int cpu)
Glauber Costaa9390982008-05-28 16:19:53 -070056{
57 return per_cpu(gdt_page, cpu).gdt;
58}
59
Thomas Garnier69218e42017-03-14 10:05:07 -070060/* Provide the current original GDT */
61static inline struct desc_struct *get_current_gdt_rw(void)
62{
63 return this_cpu_ptr(&gdt_page)->gdt;
64}
65
Thomas Garnier69218e42017-03-14 10:05:07 -070066/* Provide the fixmap address of the remapped GDT */
67static inline struct desc_struct *get_cpu_gdt_ro(int cpu)
68{
Andy Lutomirskief8813a2017-12-04 15:07:15 +010069 return (struct desc_struct *)&get_cpu_entry_area(cpu)->gdt;
Thomas Garnier69218e42017-03-14 10:05:07 -070070}
71
Thomas Garnier69218e42017-03-14 10:05:07 -070072/* Provide the current read-only GDT */
73static inline struct desc_struct *get_current_gdt_ro(void)
74{
75 return get_cpu_gdt_ro(smp_processor_id());
76}
77
Andy Lutomirskiaa4ea67552017-03-22 14:32:30 -070078/* Provide the physical address of the GDT page. */
79static inline phys_addr_t get_cpu_gdt_paddr(unsigned int cpu)
80{
81 return per_cpu_ptr_to_phys(get_cpu_gdt_rw(cpu));
82}
83
Glauber de Oliveira Costa507f90c2008-01-30 13:31:14 +010084static inline void pack_gate(gate_desc *gate, unsigned type, unsigned long func,
85 unsigned dpl, unsigned ist, unsigned seg)
86{
Thomas Gleixner64b163f2017-08-28 08:47:37 +020087 gate->offset_low = (u16) func;
88 gate->bits.p = 1;
89 gate->bits.dpl = dpl;
90 gate->bits.zero = 0;
91 gate->bits.type = type;
92 gate->offset_middle = (u16) (func >> 16);
93#ifdef CONFIG_X86_64
Ingo Molnar9a3865b2011-05-27 09:29:32 +020094 gate->segment = __KERNEL_CS;
Thomas Gleixner64b163f2017-08-28 08:47:37 +020095 gate->bits.ist = ist;
96 gate->reserved = 0;
97 gate->offset_high = (u32) (func >> 32);
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +010098#else
Thomas Gleixner64b163f2017-08-28 08:47:37 +020099 gate->segment = seg;
100 gate->bits.ist = 0;
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100101#endif
Thomas Gleixner64b163f2017-08-28 08:47:37 +0200102}
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100103
Glauber de Oliveira Costa746ff602008-01-30 13:31:27 +0100104static inline int desc_empty(const void *ptr)
105{
106 const u32 *desc = ptr;
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200107
Glauber de Oliveira Costa746ff602008-01-30 13:31:27 +0100108 return !(desc[0] | desc[1]);
109}
110
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100111#ifdef CONFIG_PARAVIRT
112#include <asm/paravirt.h>
113#else
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200114#define load_TR_desc() native_load_tr_desc()
115#define load_gdt(dtr) native_load_gdt(dtr)
116#define load_idt(dtr) native_load_idt(dtr)
117#define load_tr(tr) asm volatile("ltr %0"::"m" (tr))
118#define load_ldt(ldt) asm volatile("lldt %0"::"m" (ldt))
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100119
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200120#define store_gdt(dtr) native_store_gdt(dtr)
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200121#define store_tr(tr) (tr = native_store_tr())
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100122
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200123#define load_TLS(t, cpu) native_load_tls(t, cpu)
124#define set_ldt native_set_ldt
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100125
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200126#define write_ldt_entry(dt, entry, desc) native_write_ldt_entry(dt, entry, desc)
127#define write_gdt_entry(dt, entry, desc, type) native_write_gdt_entry(dt, entry, desc, type)
128#define write_idt_entry(dt, entry, g) native_write_idt_entry(dt, entry, g)
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700129
130static inline void paravirt_alloc_ldt(struct desc_struct *ldt, unsigned entries)
131{
132}
133
134static inline void paravirt_free_ldt(struct desc_struct *ldt, unsigned entries)
135{
136}
137#endif /* CONFIG_PARAVIRT */
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100138
Jaswinder Singh Rajput8229d752009-03-11 19:13:49 +0530139#define store_ldt(ldt) asm("sldt %0" : "=m"(ldt))
140
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200141static inline void native_write_idt_entry(gate_desc *idt, int entry, const gate_desc *gate)
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100142{
143 memcpy(&idt[entry], gate, sizeof(*gate));
144}
145
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200146static inline void native_write_ldt_entry(struct desc_struct *ldt, int entry, const void *desc)
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100147{
148 memcpy(&ldt[entry], desc, 8);
149}
150
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200151static inline void
152native_write_gdt_entry(struct desc_struct *gdt, int entry, const void *desc, int type)
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100153{
154 unsigned int size;
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200155
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100156 switch (type) {
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200157 case DESC_TSS: size = sizeof(tss_desc); break;
158 case DESC_LDT: size = sizeof(ldt_desc); break;
159 default: size = sizeof(*gdt); break;
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100160 }
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200161
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100162 memcpy(&gdt[entry], desc, size);
163}
164
Thomas Gleixner64b163f2017-08-28 08:47:37 +0200165static inline void set_tssldt_descriptor(void *d, unsigned long addr,
166 unsigned type, unsigned size)
Glauber de Oliveira Costac81c6ca2008-01-30 13:31:14 +0100167{
Thomas Gleixner87cc0372017-08-28 08:47:42 +0200168 struct ldttss_desc *desc = d;
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200169
Glauber de Oliveira Costaf6e0eba2008-01-30 13:31:20 +0100170 memset(desc, 0, sizeof(*desc));
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200171
Thomas Gleixner87cc0372017-08-28 08:47:42 +0200172 desc->limit0 = (u16) size;
Thomas Gleixner64b163f2017-08-28 08:47:37 +0200173 desc->base0 = (u16) addr;
174 desc->base1 = (addr >> 16) & 0xFF;
Ingo Molnar9a3865b2011-05-27 09:29:32 +0200175 desc->type = type;
176 desc->p = 1;
177 desc->limit1 = (size >> 16) & 0xF;
Thomas Gleixner64b163f2017-08-28 08:47:37 +0200178 desc->base2 = (addr >> 24) & 0xFF;
Thomas Gleixner87cc0372017-08-28 08:47:42 +0200179#ifdef CONFIG_X86_64
Thomas Gleixner64b163f2017-08-28 08:47:37 +0200180 desc->base3 = (u32) (addr >> 32);
Glauber de Oliveira Costac81c6ca2008-01-30 13:31:14 +0100181#endif
182}
183
Andy Lutomirski7fb983b2017-12-04 15:07:17 +0100184static inline void __set_tss_desc(unsigned cpu, unsigned int entry, struct x86_hw_tss *addr)
Glauber de Oliveira Costac81c6ca2008-01-30 13:31:14 +0100185{
Thomas Garnier69218e42017-03-14 10:05:07 -0700186 struct desc_struct *d = get_cpu_gdt_rw(cpu);
Glauber de Oliveira Costac81c6ca2008-01-30 13:31:14 +0100187 tss_desc tss;
188
Glauber de Oliveira Costaf6e0eba2008-01-30 13:31:20 +0100189 set_tssldt_descriptor(&tss, (unsigned long)addr, DESC_TSS,
Andy Lutomirski4f53ab12017-02-20 08:56:09 -0800190 __KERNEL_TSS_LIMIT);
Glauber de Oliveira Costac81c6ca2008-01-30 13:31:14 +0100191 write_gdt_entry(d, entry, &tss, DESC_TSS);
192}
193
194#define set_tss_desc(cpu, addr) __set_tss_desc(cpu, GDT_ENTRY_TSS, addr)
195
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100196static inline void native_set_ldt(const void *addr, unsigned int entries)
197{
198 if (likely(entries == 0))
Joe Perchesc1773a12008-03-23 01:01:58 -0700199 asm volatile("lldt %w0"::"q" (0));
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100200 else {
201 unsigned cpu = smp_processor_id();
202 ldt_desc ldt;
203
Michael Karcher5ac37f82008-07-11 18:04:46 +0200204 set_tssldt_descriptor(&ldt, (unsigned long)addr, DESC_LDT,
205 entries * LDT_ENTRY_SIZE - 1);
Thomas Garnier69218e42017-03-14 10:05:07 -0700206 write_gdt_entry(get_cpu_gdt_rw(cpu), GDT_ENTRY_LDT,
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100207 &ldt, DESC_LDT);
Joe Perchesc1773a12008-03-23 01:01:58 -0700208 asm volatile("lldt %w0"::"q" (GDT_ENTRY_LDT*8));
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100209 }
210}
211
Thomas Garnier45fc8752017-03-14 10:05:08 -0700212static inline void native_load_gdt(const struct desc_ptr *dtr)
213{
214 asm volatile("lgdt %0"::"m" (*dtr));
215}
216
217static inline void native_load_idt(const struct desc_ptr *dtr)
218{
219 asm volatile("lidt %0"::"m" (*dtr));
220}
221
222static inline void native_store_gdt(struct desc_ptr *dtr)
223{
224 asm volatile("sgdt %0":"=m" (*dtr));
225}
226
Juergen Gross87930012017-09-04 12:25:27 +0200227static inline void store_idt(struct desc_ptr *dtr)
Thomas Garnier45fc8752017-03-14 10:05:08 -0700228{
229 asm volatile("sidt %0":"=m" (*dtr));
230}
231
232/*
233 * The LTR instruction marks the TSS GDT entry as busy. On 64-bit, the GDT is
234 * a read-only remapping. To prevent a page fault, the GDT is switched to the
235 * original writeable version when needed.
236 */
237#ifdef CONFIG_X86_64
238static inline void native_load_tr_desc(void)
239{
240 struct desc_ptr gdt;
241 int cpu = raw_smp_processor_id();
242 bool restore = 0;
243 struct desc_struct *fixmap_gdt;
244
245 native_store_gdt(&gdt);
246 fixmap_gdt = get_cpu_gdt_ro(cpu);
247
248 /*
249 * If the current GDT is the read-only fixmap, swap to the original
250 * writeable version. Swap back at the end.
251 */
252 if (gdt.address == (unsigned long)fixmap_gdt) {
253 load_direct_gdt(cpu);
254 restore = 1;
255 }
256 asm volatile("ltr %w0"::"q" (GDT_ENTRY_TSS*8));
257 if (restore)
258 load_fixmap_gdt(cpu);
259}
260#else
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100261static inline void native_load_tr_desc(void)
262{
263 asm volatile("ltr %w0"::"q" (GDT_ENTRY_TSS*8));
264}
Thomas Garnier45fc8752017-03-14 10:05:08 -0700265#endif
266
267static inline unsigned long native_store_tr(void)
268{
269 unsigned long tr;
270
271 asm volatile("str %0":"=r" (tr));
272
273 return tr;
274}
275
276static inline void native_load_tls(struct thread_struct *t, unsigned int cpu)
277{
278 struct desc_struct *gdt = get_cpu_gdt_rw(cpu);
279 unsigned int i;
280
281 for (i = 0; i < GDT_ENTRY_TLS_ENTRIES; i++)
282 gdt[GDT_ENTRY_TLS_MIN + i] = t->tls_array[i];
283}
Glauber de Oliveira Costa54cd0ea2008-01-30 13:31:14 +0100284
Andy Lutomirskib7ceaec2017-02-22 07:36:16 -0800285DECLARE_PER_CPU(bool, __tss_limit_invalid);
286
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800287static inline void force_reload_TR(void)
288{
Thomas Garnier69218e42017-03-14 10:05:07 -0700289 struct desc_struct *d = get_current_gdt_rw();
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800290 tss_desc tss;
291
292 memcpy(&tss, &d[GDT_ENTRY_TSS], sizeof(tss_desc));
293
294 /*
295 * LTR requires an available TSS, and the TSS is currently
296 * busy. Make it be available so that LTR will work.
297 */
298 tss.type = DESC_TSS;
299 write_gdt_entry(d, GDT_ENTRY_TSS, &tss, DESC_TSS);
300
301 load_TR_desc();
Andy Lutomirskib7ceaec2017-02-22 07:36:16 -0800302 this_cpu_write(__tss_limit_invalid, false);
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800303}
304
Andy Lutomirskib7ceaec2017-02-22 07:36:16 -0800305/*
306 * Call this if you need the TSS limit to be correct, which should be the case
307 * if and only if you have TIF_IO_BITMAP set or you're switching to a task
308 * with TIF_IO_BITMAP set.
309 */
310static inline void refresh_tss_limit(void)
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800311{
312 DEBUG_LOCKS_WARN_ON(preemptible());
313
Andy Lutomirskib7ceaec2017-02-22 07:36:16 -0800314 if (unlikely(this_cpu_read(__tss_limit_invalid)))
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800315 force_reload_TR();
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800316}
317
318/*
319 * If you do something evil that corrupts the cached TSS limit (I'm looking
320 * at you, VMX exits), call this function.
321 *
322 * The optimization here is that the TSS limit only matters for Linux if the
323 * IO bitmap is in use. If the TSS limit gets forced to its minimum value,
324 * everything works except that IO bitmap will be ignored and all CPL 3 IO
325 * instructions will #GP, which is exactly what we want for normal tasks.
326 */
327static inline void invalidate_tss_limit(void)
328{
329 DEBUG_LOCKS_WARN_ON(preemptible());
330
331 if (unlikely(test_thread_flag(TIF_IO_BITMAP)))
332 force_reload_TR();
333 else
Andy Lutomirskib7ceaec2017-02-22 07:36:16 -0800334 this_cpu_write(__tss_limit_invalid, true);
Andy Lutomirskib7ffc442017-02-20 08:56:14 -0800335}
336
Andy Lutomirskie30ab182015-01-22 11:27:58 -0800337/* This intentionally ignores lm, since 32-bit apps don't have that field. */
338#define LDT_empty(info) \
Joe Perchesc1773a12008-03-23 01:01:58 -0700339 ((info)->base_addr == 0 && \
340 (info)->limit == 0 && \
341 (info)->contents == 0 && \
342 (info)->read_exec_only == 1 && \
343 (info)->seg_32bit == 0 && \
344 (info)->limit_in_pages == 0 && \
345 (info)->seg_not_present == 1 && \
346 (info)->useable == 0)
Glauber de Oliveira Costa881c2972008-01-30 13:31:14 +0100347
Andy Lutomirski3669ef92015-01-22 11:27:59 -0800348/* Lots of programs expect an all-zero user_desc to mean "no segment at all". */
349static inline bool LDT_zero(const struct user_desc *info)
350{
351 return (info->base_addr == 0 &&
352 info->limit == 0 &&
353 info->contents == 0 &&
354 info->read_exec_only == 0 &&
355 info->seg_32bit == 0 &&
356 info->limit_in_pages == 0 &&
357 info->seg_not_present == 0 &&
358 info->useable == 0);
359}
360
Glauber de Oliveira Costa881c2972008-01-30 13:31:14 +0100361static inline void clear_LDT(void)
362{
363 set_ldt(NULL, 0);
364}
365
Roland McGrath1bd57182008-01-30 13:31:51 +0100366static inline unsigned long get_desc_base(const struct desc_struct *desc)
Glauber de Oliveira Costacc697852008-01-30 13:31:14 +0100367{
Chris Lalancette2c759102009-11-05 11:47:08 +0100368 return (unsigned)(desc->base0 | ((desc->base1) << 16) | ((desc->base2) << 24));
Glauber de Oliveira Costacc697852008-01-30 13:31:14 +0100369}
Roland McGrath1bd57182008-01-30 13:31:51 +0100370
Akinobu Mita57594742009-07-19 00:11:06 +0900371static inline void set_desc_base(struct desc_struct *desc, unsigned long base)
372{
373 desc->base0 = base & 0xffff;
374 desc->base1 = (base >> 16) & 0xff;
375 desc->base2 = (base >> 24) & 0xff;
376}
377
Roland McGrath1bd57182008-01-30 13:31:51 +0100378static inline unsigned long get_desc_limit(const struct desc_struct *desc)
379{
Thomas Gleixner38e9e812017-08-28 08:47:41 +0200380 return desc->limit0 | (desc->limit1 << 16);
Roland McGrath1bd57182008-01-30 13:31:51 +0100381}
382
Akinobu Mita57594742009-07-19 00:11:06 +0900383static inline void set_desc_limit(struct desc_struct *desc, unsigned long limit)
384{
385 desc->limit0 = limit & 0xffff;
Thomas Gleixner38e9e812017-08-28 08:47:41 +0200386 desc->limit1 = (limit >> 16) & 0xf;
Akinobu Mita57594742009-07-19 00:11:06 +0900387}
388
Thomas Gleixnerfacaa3e2017-08-28 08:47:59 +0200389void update_intr_gate(unsigned int n, const void *addr);
Thomas Gleixnerdb18da72017-08-28 08:47:57 +0200390void alloc_intr_gate(unsigned int n, const void *addr);
Glauber de Oliveira Costa507f90c2008-01-30 13:31:14 +0100391
Thomas Gleixner7854f822017-09-13 23:29:26 +0200392extern unsigned long system_vectors[];
Alan Mayer305b92a2008-04-15 15:36:56 -0500393
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400394#ifdef CONFIG_X86_64
395DECLARE_PER_CPU(u32, debug_idt_ctr);
396static inline bool is_debug_idt_enabled(void)
397{
398 if (this_cpu_read(debug_idt_ctr))
399 return true;
400
401 return false;
402}
403
404static inline void load_debug_idt(void)
405{
406 load_idt((const struct desc_ptr *)&debug_idt_descr);
407}
408#else
409static inline bool is_debug_idt_enabled(void)
410{
411 return false;
412}
413
414static inline void load_debug_idt(void)
415{
416}
417#endif
418
419/*
Steven Rostedt (Red Hat)2b4bc782013-06-22 13:16:19 -0400420 * The load_current_idt() must be called with interrupts disabled
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400421 * 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 -0400422 * descriptor. It's also called when a CPU is being initialized, and
423 * that doesn't need to disable interrupts, as nothing should be
424 * bothering the CPU then.
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400425 */
426static inline void load_current_idt(void)
427{
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400428 if (is_debug_idt_enabled())
429 load_debug_idt();
430 else
431 load_idt((const struct desc_ptr *)&idt_descr);
Seiji Aguchi629f4f92013-06-20 11:45:44 -0400432}
Thomas Gleixnere802a512017-08-28 08:47:46 +0200433
Thomas Gleixner588787f2017-08-28 08:47:47 +0200434extern void idt_setup_early_handler(void);
435extern void idt_setup_early_traps(void);
Thomas Gleixnerb70543a2017-08-28 08:47:53 +0200436extern void idt_setup_traps(void);
Thomas Gleixner636a7592017-08-28 08:47:54 +0200437extern void idt_setup_apic_and_irq_gates(void);
Thomas Gleixner588787f2017-08-28 08:47:47 +0200438
439#ifdef CONFIG_X86_64
440extern void idt_setup_early_pf(void);
Thomas Gleixner90f62252017-08-28 08:47:52 +0200441extern void idt_setup_ist_traps(void);
Thomas Gleixner0a309082017-08-28 08:47:51 +0200442extern void idt_setup_debugidt_traps(void);
Thomas Gleixner588787f2017-08-28 08:47:47 +0200443#else
444static inline void idt_setup_early_pf(void) { }
Thomas Gleixner90f62252017-08-28 08:47:52 +0200445static inline void idt_setup_ist_traps(void) { }
Thomas Gleixner0a309082017-08-28 08:47:51 +0200446static inline void idt_setup_debugidt_traps(void) { }
Thomas Gleixner588787f2017-08-28 08:47:47 +0200447#endif
448
Thomas Gleixnere802a512017-08-28 08:47:46 +0200449extern void idt_invalidate(void *addr);
450
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700451#endif /* _ASM_X86_DESC_H */