1 /* SPDX-License-Identifier: GPL-2.0 */
3 #ifndef _ASM_X86_CPU_ENTRY_AREA_H
4 #define _ASM_X86_CPU_ENTRY_AREA_H
6 #include <linux/percpu-defs.h>
7 #include <asm/processor.h>
8 #include <asm/intel_ds.h>
9 #include <asm/pgtable_areas.h>
13 #ifdef CONFIG_AMD_MEM_ENCRYPT
14 #define VC_EXCEPTION_STKSZ EXCEPTION_STKSZ
16 #define VC_EXCEPTION_STKSZ 0
19 /* Macro to enforce the same ordering and stack sizes */
20 #define ESTACKS_MEMBERS(guardsize, optional_stack_size) \
21 char DF_stack_guard[guardsize]; \
22 char DF_stack[EXCEPTION_STKSZ]; \
23 char NMI_stack_guard[guardsize]; \
24 char NMI_stack[EXCEPTION_STKSZ]; \
25 char DB_stack_guard[guardsize]; \
26 char DB_stack[EXCEPTION_STKSZ]; \
27 char MCE_stack_guard[guardsize]; \
28 char MCE_stack[EXCEPTION_STKSZ]; \
29 char VC_stack_guard[guardsize]; \
30 char VC_stack[optional_stack_size]; \
31 char VC2_stack_guard[guardsize]; \
32 char VC2_stack[optional_stack_size]; \
33 char IST_top_guard[guardsize]; \
35 /* The exception stacks' physical storage. No guard pages required */
36 struct exception_stacks {
37 ESTACKS_MEMBERS(0, VC_EXCEPTION_STKSZ)
40 /* The effective cpu entry area mapping with guard pages. */
41 struct cea_exception_stacks {
42 ESTACKS_MEMBERS(PAGE_SIZE, EXCEPTION_STKSZ)
46 * The exception stack ordering in [cea_]exception_stacks
48 enum exception_stack_ordering {
58 #define CEA_ESTACK_SIZE(st) \
59 sizeof(((struct cea_exception_stacks *)0)->st## _stack)
61 #define CEA_ESTACK_BOT(ceastp, st) \
62 ((unsigned long)&(ceastp)->st## _stack)
64 #define CEA_ESTACK_TOP(ceastp, st) \
65 (CEA_ESTACK_BOT(ceastp, st) + CEA_ESTACK_SIZE(st))
67 #define CEA_ESTACK_OFFS(st) \
68 offsetof(struct cea_exception_stacks, st## _stack)
70 #define CEA_ESTACK_PAGES \
71 (sizeof(struct cea_exception_stacks) / PAGE_SIZE)
76 struct doublefault_stack {
77 unsigned long stack[(PAGE_SIZE - sizeof(struct x86_hw_tss)) / sizeof(unsigned long)];
78 struct x86_hw_tss tss;
79 } __aligned(PAGE_SIZE);
83 * cpu_entry_area is a percpu region that contains things needed by the CPU
84 * and early entry/exit code. Real types aren't used for all fields here
85 * to avoid circular header dependencies.
87 * Every field is a virtual alias of some other allocated backing store.
88 * There is no direct allocation of a struct cpu_entry_area.
90 struct cpu_entry_area {
94 * The GDT is just below entry_stack and thus serves (on x86_64) as
95 * a read-only guard page. On 32-bit the GDT must be writeable, so
96 * it needs an extra guard page.
99 char guard_entry_stack[PAGE_SIZE];
101 struct entry_stack_page entry_stack_page;
104 char guard_doublefault_stack[PAGE_SIZE];
105 struct doublefault_stack doublefault_stack;
109 * On x86_64, the TSS is mapped RO. On x86_32, it's mapped RW because
110 * we need task switches to work, and task switches write to the TSS.
112 struct tss_struct tss;
116 * Exception stacks used for IST entries with guard pages.
118 struct cea_exception_stacks estacks;
121 * Per CPU debug store for Intel performance monitoring. Wastes a
122 * full page at the moment.
124 struct debug_store cpu_debug_store;
126 * The actual PEBS/BTS buffers must be mapped to user space
127 * Reserve enough fixmap PTEs.
129 struct debug_store_buffers cpu_debug_buffers;
132 #define CPU_ENTRY_AREA_SIZE (sizeof(struct cpu_entry_area))
134 DECLARE_PER_CPU(struct cpu_entry_area *, cpu_entry_area);
135 DECLARE_PER_CPU(struct cea_exception_stacks *, cea_exception_stacks);
137 extern void setup_cpu_entry_areas(void);
138 extern void cea_set_pte(void *cea_vaddr, phys_addr_t pa, pgprot_t flags);
140 extern struct cpu_entry_area *get_cpu_entry_area(int cpu);
142 static __always_inline struct entry_stack *cpu_entry_stack(int cpu)
144 return &get_cpu_entry_area(cpu)->entry_stack_page.stack;
147 #define __this_cpu_ist_top_va(name) \
148 CEA_ESTACK_TOP(__this_cpu_read(cea_exception_stacks), name)
150 #define __this_cpu_ist_bottom_va(name) \
151 CEA_ESTACK_BOT(__this_cpu_read(cea_exception_stacks), name)