1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_PGTABLE_64_DEFS_H
3 #define _ASM_X86_PGTABLE_64_DEFS_H
4
5 #include <asm/sparsemem.h>
6
7 #ifndef __ASSEMBLY__
8 #include <linux/types.h>
9 #include <asm/kaslr.h>
10
11 /*
12 * These are used to make use of C type-checking..
13 */
14 typedef unsigned long pteval_t;
15 typedef unsigned long pmdval_t;
16 typedef unsigned long pudval_t;
17 typedef unsigned long p4dval_t;
18 typedef unsigned long pgdval_t;
19 typedef unsigned long pgprotval_t;
20
21 typedef struct { pteval_t pte; } pte_t;
22 typedef struct { pmdval_t pmd; } pmd_t;
23
24 extern unsigned int __pgtable_l5_enabled;
25
26 #ifdef CONFIG_X86_5LEVEL
27 #ifdef USE_EARLY_PGTABLE_L5
28 /*
29 * cpu_feature_enabled() is not available in early boot code.
30 * Use variable instead.
31 */
pgtable_l5_enabled(void)32 static inline bool pgtable_l5_enabled(void)
33 {
34 return __pgtable_l5_enabled;
35 }
36 #else
37 #define pgtable_l5_enabled() cpu_feature_enabled(X86_FEATURE_LA57)
38 #endif /* USE_EARLY_PGTABLE_L5 */
39
40 #else
41 #define pgtable_l5_enabled() 0
42 #endif /* CONFIG_X86_5LEVEL */
43
44 extern unsigned int pgdir_shift;
45 extern unsigned int ptrs_per_p4d;
46
47 #endif /* !__ASSEMBLY__ */
48
49 #define SHARED_KERNEL_PMD 0
50
51 #ifdef CONFIG_X86_5LEVEL
52
53 /*
54 * PGDIR_SHIFT determines what a top-level page table entry can map
55 */
56 #define PGDIR_SHIFT pgdir_shift
57 #define PTRS_PER_PGD 512
58
59 /*
60 * 4th level page in 5-level paging case
61 */
62 #define P4D_SHIFT 39
63 #define MAX_PTRS_PER_P4D 512
64 #define PTRS_PER_P4D ptrs_per_p4d
65 #define P4D_SIZE (_AC(1, UL) << P4D_SHIFT)
66 #define P4D_MASK (~(P4D_SIZE - 1))
67
68 #define MAX_POSSIBLE_PHYSMEM_BITS 52
69
70 #else /* CONFIG_X86_5LEVEL */
71
72 /*
73 * PGDIR_SHIFT determines what a top-level page table entry can map
74 */
75 #define PGDIR_SHIFT 39
76 #define PTRS_PER_PGD 512
77 #define MAX_PTRS_PER_P4D 1
78
79 #endif /* CONFIG_X86_5LEVEL */
80
81 /*
82 * 3rd level page
83 */
84 #define PUD_SHIFT 30
85 #define PTRS_PER_PUD 512
86
87 /*
88 * PMD_SHIFT determines the size of the area a middle-level
89 * page table can map
90 */
91 #define PMD_SHIFT 21
92 #define PTRS_PER_PMD 512
93
94 /*
95 * entries per page directory level
96 */
97 #define PTRS_PER_PTE 512
98
99 #define PMD_SIZE (_AC(1, UL) << PMD_SHIFT)
100 #define PMD_MASK (~(PMD_SIZE - 1))
101 #define PUD_SIZE (_AC(1, UL) << PUD_SHIFT)
102 #define PUD_MASK (~(PUD_SIZE - 1))
103 #define PGDIR_SIZE (_AC(1, UL) << PGDIR_SHIFT)
104 #define PGDIR_MASK (~(PGDIR_SIZE - 1))
105
106 /*
107 * See Documentation/arch/x86/x86_64/mm.rst for a description of the memory map.
108 *
109 * Be very careful vs. KASLR when changing anything here. The KASLR address
110 * range must not overlap with anything except the KASAN shadow area, which
111 * is correct as KASAN disables KASLR.
112 */
113 #define MAXMEM (1UL << MAX_PHYSMEM_BITS)
114
115 #define GUARD_HOLE_PGD_ENTRY -256UL
116 #define GUARD_HOLE_SIZE (16UL << PGDIR_SHIFT)
117 #define GUARD_HOLE_BASE_ADDR (GUARD_HOLE_PGD_ENTRY << PGDIR_SHIFT)
118 #define GUARD_HOLE_END_ADDR (GUARD_HOLE_BASE_ADDR + GUARD_HOLE_SIZE)
119
120 #define LDT_PGD_ENTRY -240UL
121 #define LDT_BASE_ADDR (LDT_PGD_ENTRY << PGDIR_SHIFT)
122 #define LDT_END_ADDR (LDT_BASE_ADDR + PGDIR_SIZE)
123
124 #define __VMALLOC_BASE_L4 0xffffc90000000000UL
125 #define __VMALLOC_BASE_L5 0xffa0000000000000UL
126
127 #define VMALLOC_SIZE_TB_L4 32UL
128 #define VMALLOC_SIZE_TB_L5 12800UL
129
130 #define __VMEMMAP_BASE_L4 0xffffea0000000000UL
131 #define __VMEMMAP_BASE_L5 0xffd4000000000000UL
132
133 #ifdef CONFIG_DYNAMIC_MEMORY_LAYOUT
134 # define VMALLOC_START vmalloc_base
135 # define VMALLOC_SIZE_TB (pgtable_l5_enabled() ? VMALLOC_SIZE_TB_L5 : VMALLOC_SIZE_TB_L4)
136 # define VMEMMAP_START vmemmap_base
137 #else
138 # define VMALLOC_START __VMALLOC_BASE_L4
139 # define VMALLOC_SIZE_TB VMALLOC_SIZE_TB_L4
140 # define VMEMMAP_START __VMEMMAP_BASE_L4
141 #endif /* CONFIG_DYNAMIC_MEMORY_LAYOUT */
142
143 #ifdef CONFIG_RANDOMIZE_MEMORY
144 # define PHYSMEM_END physmem_end
145 #endif
146
147 /*
148 * End of the region for which vmalloc page tables are pre-allocated.
149 * For non-KMSAN builds, this is the same as VMALLOC_END.
150 * For KMSAN builds, VMALLOC_START..VMEMORY_END is 4 times bigger than
151 * VMALLOC_START..VMALLOC_END (see below).
152 */
153 #define VMEMORY_END (VMALLOC_START + (VMALLOC_SIZE_TB << 40) - 1)
154
155 #ifndef CONFIG_KMSAN
156 #define VMALLOC_END VMEMORY_END
157 #else
158 /*
159 * In KMSAN builds vmalloc area is four times smaller, and the remaining 3/4
160 * are used to keep the metadata for virtual pages. The memory formerly
161 * belonging to vmalloc area is now laid out as follows:
162 *
163 * 1st quarter: VMALLOC_START to VMALLOC_END - new vmalloc area
164 * 2nd quarter: KMSAN_VMALLOC_SHADOW_START to
165 * VMALLOC_END+KMSAN_VMALLOC_SHADOW_OFFSET - vmalloc area shadow
166 * 3rd quarter: KMSAN_VMALLOC_ORIGIN_START to
167 * VMALLOC_END+KMSAN_VMALLOC_ORIGIN_OFFSET - vmalloc area origins
168 * 4th quarter: KMSAN_MODULES_SHADOW_START to KMSAN_MODULES_ORIGIN_START
169 * - shadow for modules,
170 * KMSAN_MODULES_ORIGIN_START to
171 * KMSAN_MODULES_ORIGIN_START + MODULES_LEN - origins for modules.
172 */
173 #define VMALLOC_QUARTER_SIZE ((VMALLOC_SIZE_TB << 40) >> 2)
174 #define VMALLOC_END (VMALLOC_START + VMALLOC_QUARTER_SIZE - 1)
175
176 /*
177 * vmalloc metadata addresses are calculated by adding shadow/origin offsets
178 * to vmalloc address.
179 */
180 #define KMSAN_VMALLOC_SHADOW_OFFSET VMALLOC_QUARTER_SIZE
181 #define KMSAN_VMALLOC_ORIGIN_OFFSET (VMALLOC_QUARTER_SIZE << 1)
182
183 #define KMSAN_VMALLOC_SHADOW_START (VMALLOC_START + KMSAN_VMALLOC_SHADOW_OFFSET)
184 #define KMSAN_VMALLOC_ORIGIN_START (VMALLOC_START + KMSAN_VMALLOC_ORIGIN_OFFSET)
185
186 /*
187 * The shadow/origin for modules are placed one by one in the last 1/4 of
188 * vmalloc space.
189 */
190 #define KMSAN_MODULES_SHADOW_START (VMALLOC_END + KMSAN_VMALLOC_ORIGIN_OFFSET + 1)
191 #define KMSAN_MODULES_ORIGIN_START (KMSAN_MODULES_SHADOW_START + MODULES_LEN)
192 #endif /* CONFIG_KMSAN */
193
194 #define MODULES_VADDR (__START_KERNEL_map + KERNEL_IMAGE_SIZE)
195 /* The module sections ends with the start of the fixmap */
196 #ifndef CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP
197 # define MODULES_END _AC(0xffffffffff000000, UL)
198 #else
199 # define MODULES_END _AC(0xfffffffffe000000, UL)
200 #endif
201 #define MODULES_LEN (MODULES_END - MODULES_VADDR)
202
203 #define ESPFIX_PGD_ENTRY _AC(-2, UL)
204 #define ESPFIX_BASE_ADDR (ESPFIX_PGD_ENTRY << P4D_SHIFT)
205
206 #define CPU_ENTRY_AREA_PGD _AC(-4, UL)
207 #define CPU_ENTRY_AREA_BASE (CPU_ENTRY_AREA_PGD << P4D_SHIFT)
208
209 #define EFI_VA_START ( -4 * (_AC(1, UL) << 30))
210 #define EFI_VA_END (-68 * (_AC(1, UL) << 30))
211
212 #define EARLY_DYNAMIC_PAGE_TABLES 64
213
214 #define PGD_KERNEL_START ((PAGE_SIZE / 2) / sizeof(pgd_t))
215
216 /*
217 * We borrow bit 3 to remember PG_anon_exclusive.
218 */
219 #define _PAGE_SWP_EXCLUSIVE _PAGE_PWT
220
221 #endif /* _ASM_X86_PGTABLE_64_DEFS_H */
222