1 // SPDX-License-Identifier: GPL-2.0
3 * prepare to run common code
5 * Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
8 #define DISABLE_BRANCH_PROFILING
10 /* cpu_feature_enabled() cannot be used this early */
11 #define USE_EARLY_PGTABLE_L5
13 #include <linux/init.h>
14 #include <linux/linkage.h>
15 #include <linux/types.h>
16 #include <linux/kernel.h>
17 #include <linux/string.h>
18 #include <linux/percpu.h>
19 #include <linux/start_kernel.h>
21 #include <linux/memblock.h>
22 #include <linux/mem_encrypt.h>
24 #include <asm/processor.h>
25 #include <asm/proto.h>
27 #include <asm/setup.h>
29 #include <asm/pgtable.h>
30 #include <asm/tlbflush.h>
31 #include <asm/sections.h>
32 #include <asm/kdebug.h>
33 #include <asm/e820/api.h>
34 #include <asm/bios_ebda.h>
35 #include <asm/bootparam_utils.h>
36 #include <asm/microcode.h>
37 #include <asm/kasan.h>
38 #include <asm/fixmap.h>
41 * Manage page tables very early on.
43 extern pmd_t early_dynamic_pgts
[EARLY_DYNAMIC_PAGE_TABLES
][PTRS_PER_PMD
];
44 static unsigned int __initdata next_early_pgt
;
45 pmdval_t early_pmd_flags
= __PAGE_KERNEL_LARGE
& ~(_PAGE_GLOBAL
| _PAGE_NX
);
47 #ifdef CONFIG_X86_5LEVEL
48 unsigned int __pgtable_l5_enabled __ro_after_init
;
49 unsigned int pgdir_shift __ro_after_init
= 39;
50 EXPORT_SYMBOL(pgdir_shift
);
51 unsigned int ptrs_per_p4d __ro_after_init
= 1;
52 EXPORT_SYMBOL(ptrs_per_p4d
);
55 #ifdef CONFIG_DYNAMIC_MEMORY_LAYOUT
56 unsigned long page_offset_base __ro_after_init
= __PAGE_OFFSET_BASE_L4
;
57 EXPORT_SYMBOL(page_offset_base
);
58 unsigned long vmalloc_base __ro_after_init
= __VMALLOC_BASE_L4
;
59 EXPORT_SYMBOL(vmalloc_base
);
60 unsigned long vmemmap_base __ro_after_init
= __VMEMMAP_BASE_L4
;
61 EXPORT_SYMBOL(vmemmap_base
);
64 #define __head __section(.head.text)
66 static void __head
*fixup_pointer(void *ptr
, unsigned long physaddr
)
68 return ptr
- (void *)_text
+ (void *)physaddr
;
71 static unsigned long __head
*fixup_long(void *ptr
, unsigned long physaddr
)
73 return fixup_pointer(ptr
, physaddr
);
76 #ifdef CONFIG_X86_5LEVEL
77 static unsigned int __head
*fixup_int(void *ptr
, unsigned long physaddr
)
79 return fixup_pointer(ptr
, physaddr
);
82 static bool __head
check_la57_support(unsigned long physaddr
)
85 * 5-level paging is detected and enabled at kernel decomression
86 * stage. Only check if it has been enabled there.
88 if (!(native_read_cr4() & X86_CR4_LA57
))
91 *fixup_int(&__pgtable_l5_enabled
, physaddr
) = 1;
92 *fixup_int(&pgdir_shift
, physaddr
) = 48;
93 *fixup_int(&ptrs_per_p4d
, physaddr
) = 512;
94 *fixup_long(&page_offset_base
, physaddr
) = __PAGE_OFFSET_BASE_L5
;
95 *fixup_long(&vmalloc_base
, physaddr
) = __VMALLOC_BASE_L5
;
96 *fixup_long(&vmemmap_base
, physaddr
) = __VMEMMAP_BASE_L5
;
101 static bool __head
check_la57_support(unsigned long physaddr
)
107 /* Code in __startup_64() can be relocated during execution, but the compiler
108 * doesn't have to generate PC-relative relocations when accessing globals from
109 * that function. Clang actually does not generate them, which leads to
110 * boot-time crashes. To work around this problem, every global pointer must
111 * be adjusted using fixup_pointer().
113 unsigned long __head
__startup_64(unsigned long physaddr
,
114 struct boot_params
*bp
)
116 unsigned long vaddr
, vaddr_end
;
117 unsigned long load_delta
, *p
;
118 unsigned long pgtable_flags
;
122 pmdval_t
*pmd
, pmd_entry
;
126 unsigned int *next_pgt_ptr
;
128 la57
= check_la57_support(physaddr
);
130 /* Is the address too large? */
131 if (physaddr
>> MAX_PHYSMEM_BITS
)
135 * Compute the delta between the address I am compiled to run at
136 * and the address I am actually running at.
138 load_delta
= physaddr
- (unsigned long)(_text
- __START_KERNEL_map
);
140 /* Is the address not 2M aligned? */
141 if (load_delta
& ~PMD_PAGE_MASK
)
144 /* Activate Secure Memory Encryption (SME) if supported and enabled */
147 /* Include the SME encryption mask in the fixup value */
148 load_delta
+= sme_get_me_mask();
150 /* Fixup the physical addresses in the page table */
152 pgd
= fixup_pointer(&early_top_pgt
, physaddr
);
153 p
= pgd
+ pgd_index(__START_KERNEL_map
);
155 *p
= (unsigned long)level4_kernel_pgt
;
157 *p
= (unsigned long)level3_kernel_pgt
;
158 *p
+= _PAGE_TABLE_NOENC
- __START_KERNEL_map
+ load_delta
;
161 p4d
= fixup_pointer(&level4_kernel_pgt
, physaddr
);
162 p4d
[511] += load_delta
;
165 pud
= fixup_pointer(&level3_kernel_pgt
, physaddr
);
166 pud
[510] += load_delta
;
167 pud
[511] += load_delta
;
169 pmd
= fixup_pointer(level2_fixmap_pgt
, physaddr
);
170 for (i
= FIXMAP_PMD_TOP
; i
> FIXMAP_PMD_TOP
- FIXMAP_PMD_NUM
; i
--)
171 pmd
[i
] += load_delta
;
174 * Set up the identity mapping for the switchover. These
175 * entries should *NOT* have the global bit set! This also
176 * creates a bunch of nonsense entries but that is fine --
177 * it avoids problems around wraparound.
180 next_pgt_ptr
= fixup_pointer(&next_early_pgt
, physaddr
);
181 pud
= fixup_pointer(early_dynamic_pgts
[(*next_pgt_ptr
)++], physaddr
);
182 pmd
= fixup_pointer(early_dynamic_pgts
[(*next_pgt_ptr
)++], physaddr
);
184 pgtable_flags
= _KERNPG_TABLE_NOENC
+ sme_get_me_mask();
187 p4d
= fixup_pointer(early_dynamic_pgts
[next_early_pgt
++], physaddr
);
189 i
= (physaddr
>> PGDIR_SHIFT
) % PTRS_PER_PGD
;
190 pgd
[i
+ 0] = (pgdval_t
)p4d
+ pgtable_flags
;
191 pgd
[i
+ 1] = (pgdval_t
)p4d
+ pgtable_flags
;
193 i
= (physaddr
>> P4D_SHIFT
) % PTRS_PER_P4D
;
194 p4d
[i
+ 0] = (pgdval_t
)pud
+ pgtable_flags
;
195 p4d
[i
+ 1] = (pgdval_t
)pud
+ pgtable_flags
;
197 i
= (physaddr
>> PGDIR_SHIFT
) % PTRS_PER_PGD
;
198 pgd
[i
+ 0] = (pgdval_t
)pud
+ pgtable_flags
;
199 pgd
[i
+ 1] = (pgdval_t
)pud
+ pgtable_flags
;
202 i
= (physaddr
>> PUD_SHIFT
) % PTRS_PER_PUD
;
203 pud
[i
+ 0] = (pudval_t
)pmd
+ pgtable_flags
;
204 pud
[i
+ 1] = (pudval_t
)pmd
+ pgtable_flags
;
206 pmd_entry
= __PAGE_KERNEL_LARGE_EXEC
& ~_PAGE_GLOBAL
;
207 /* Filter out unsupported __PAGE_KERNEL_* bits: */
208 mask_ptr
= fixup_pointer(&__supported_pte_mask
, physaddr
);
209 pmd_entry
&= *mask_ptr
;
210 pmd_entry
+= sme_get_me_mask();
211 pmd_entry
+= physaddr
;
213 for (i
= 0; i
< DIV_ROUND_UP(_end
- _text
, PMD_SIZE
); i
++) {
214 int idx
= i
+ (physaddr
>> PMD_SHIFT
) % PTRS_PER_PMD
;
215 pmd
[idx
] = pmd_entry
+ i
* PMD_SIZE
;
219 * Fixup the kernel text+data virtual addresses. Note that
220 * we might write invalid pmds, when the kernel is relocated
221 * cleanup_highmap() fixes this up along with the mappings
225 pmd
= fixup_pointer(level2_kernel_pgt
, physaddr
);
226 for (i
= 0; i
< PTRS_PER_PMD
; i
++) {
227 if (pmd
[i
] & _PAGE_PRESENT
)
228 pmd
[i
] += load_delta
;
232 * Fixup phys_base - remove the memory encryption mask to obtain
233 * the true physical address.
235 *fixup_long(&phys_base
, physaddr
) += load_delta
- sme_get_me_mask();
237 /* Encrypt the kernel and related (if SME is active) */
238 sme_encrypt_kernel(bp
);
241 * Clear the memory encryption mask from the .bss..decrypted section.
242 * The bss section will be memset to zero later in the initialization so
243 * there is no need to zero it after changing the memory encryption
246 if (mem_encrypt_active()) {
247 vaddr
= (unsigned long)__start_bss_decrypted
;
248 vaddr_end
= (unsigned long)__end_bss_decrypted
;
249 for (; vaddr
< vaddr_end
; vaddr
+= PMD_SIZE
) {
250 i
= pmd_index(vaddr
);
251 pmd
[i
] -= sme_get_me_mask();
256 * Return the SME encryption mask (if SME is active) to be used as a
257 * modifier for the initial pgdir entry programmed into CR3.
259 return sme_get_me_mask();
262 unsigned long __startup_secondary_64(void)
265 * Return the SME encryption mask (if SME is active) to be used as a
266 * modifier for the initial pgdir entry programmed into CR3.
268 return sme_get_me_mask();
271 /* Wipe all early page tables except for the kernel symbol map */
272 static void __init
reset_early_page_tables(void)
274 memset(early_top_pgt
, 0, sizeof(pgd_t
)*(PTRS_PER_PGD
-1));
276 write_cr3(__sme_pa_nodebug(early_top_pgt
));
279 /* Create a new PMD entry */
280 int __init
__early_make_pgtable(unsigned long address
, pmdval_t pmd
)
282 unsigned long physaddr
= address
- __PAGE_OFFSET
;
283 pgdval_t pgd
, *pgd_p
;
284 p4dval_t p4d
, *p4d_p
;
285 pudval_t pud
, *pud_p
;
288 /* Invalid address or early pgt is done ? */
289 if (physaddr
>= MAXMEM
|| read_cr3_pa() != __pa_nodebug(early_top_pgt
))
293 pgd_p
= &early_top_pgt
[pgd_index(address
)].pgd
;
297 * The use of __START_KERNEL_map rather than __PAGE_OFFSET here is
298 * critical -- __PAGE_OFFSET would point us back into the dynamic
299 * range and we might end up looping forever...
301 if (!pgtable_l5_enabled())
304 p4d_p
= (p4dval_t
*)((pgd
& PTE_PFN_MASK
) + __START_KERNEL_map
- phys_base
);
306 if (next_early_pgt
>= EARLY_DYNAMIC_PAGE_TABLES
) {
307 reset_early_page_tables();
311 p4d_p
= (p4dval_t
*)early_dynamic_pgts
[next_early_pgt
++];
312 memset(p4d_p
, 0, sizeof(*p4d_p
) * PTRS_PER_P4D
);
313 *pgd_p
= (pgdval_t
)p4d_p
- __START_KERNEL_map
+ phys_base
+ _KERNPG_TABLE
;
315 p4d_p
+= p4d_index(address
);
319 pud_p
= (pudval_t
*)((p4d
& PTE_PFN_MASK
) + __START_KERNEL_map
- phys_base
);
321 if (next_early_pgt
>= EARLY_DYNAMIC_PAGE_TABLES
) {
322 reset_early_page_tables();
326 pud_p
= (pudval_t
*)early_dynamic_pgts
[next_early_pgt
++];
327 memset(pud_p
, 0, sizeof(*pud_p
) * PTRS_PER_PUD
);
328 *p4d_p
= (p4dval_t
)pud_p
- __START_KERNEL_map
+ phys_base
+ _KERNPG_TABLE
;
330 pud_p
+= pud_index(address
);
334 pmd_p
= (pmdval_t
*)((pud
& PTE_PFN_MASK
) + __START_KERNEL_map
- phys_base
);
336 if (next_early_pgt
>= EARLY_DYNAMIC_PAGE_TABLES
) {
337 reset_early_page_tables();
341 pmd_p
= (pmdval_t
*)early_dynamic_pgts
[next_early_pgt
++];
342 memset(pmd_p
, 0, sizeof(*pmd_p
) * PTRS_PER_PMD
);
343 *pud_p
= (pudval_t
)pmd_p
- __START_KERNEL_map
+ phys_base
+ _KERNPG_TABLE
;
345 pmd_p
[pmd_index(address
)] = pmd
;
350 int __init
early_make_pgtable(unsigned long address
)
352 unsigned long physaddr
= address
- __PAGE_OFFSET
;
355 pmd
= (physaddr
& PMD_MASK
) + early_pmd_flags
;
357 return __early_make_pgtable(address
, pmd
);
360 /* Don't add a printk in there. printk relies on the PDA which is not initialized
362 static void __init
clear_bss(void)
364 memset(__bss_start
, 0,
365 (unsigned long) __bss_stop
- (unsigned long) __bss_start
);
368 static unsigned long get_cmd_line_ptr(void)
370 unsigned long cmd_line_ptr
= boot_params
.hdr
.cmd_line_ptr
;
372 cmd_line_ptr
|= (u64
)boot_params
.ext_cmd_line_ptr
<< 32;
377 static void __init
copy_bootdata(char *real_mode_data
)
380 unsigned long cmd_line_ptr
;
383 * If SME is active, this will create decrypted mappings of the
384 * boot data in advance of the copy operations.
386 sme_map_bootdata(real_mode_data
);
388 memcpy(&boot_params
, real_mode_data
, sizeof(boot_params
));
389 sanitize_boot_params(&boot_params
);
390 cmd_line_ptr
= get_cmd_line_ptr();
392 command_line
= __va(cmd_line_ptr
);
393 memcpy(boot_command_line
, command_line
, COMMAND_LINE_SIZE
);
397 * The old boot data is no longer needed and won't be reserved,
398 * freeing up that memory for use by the system. If SME is active,
399 * we need to remove the mappings that were created so that the
400 * memory doesn't remain mapped as decrypted.
402 sme_unmap_bootdata(real_mode_data
);
405 asmlinkage __visible
void __init
x86_64_start_kernel(char * real_mode_data
)
408 * Build-time sanity checks on the kernel image and module
409 * area mappings. (these are purely build-time and produce no code)
411 BUILD_BUG_ON(MODULES_VADDR
< __START_KERNEL_map
);
412 BUILD_BUG_ON(MODULES_VADDR
- __START_KERNEL_map
< KERNEL_IMAGE_SIZE
);
413 BUILD_BUG_ON(MODULES_LEN
+ KERNEL_IMAGE_SIZE
> 2*PUD_SIZE
);
414 BUILD_BUG_ON((__START_KERNEL_map
& ~PMD_MASK
) != 0);
415 BUILD_BUG_ON((MODULES_VADDR
& ~PMD_MASK
) != 0);
416 BUILD_BUG_ON(!(MODULES_VADDR
> __START_KERNEL
));
417 MAYBE_BUILD_BUG_ON(!(((MODULES_END
- 1) & PGDIR_MASK
) ==
418 (__START_KERNEL
& PGDIR_MASK
)));
419 BUILD_BUG_ON(__fix_to_virt(__end_of_fixed_addresses
) <= MODULES_END
);
423 /* Kill off the identity-map trampoline */
424 reset_early_page_tables();
428 clear_page(init_top_pgt
);
431 * SME support may update early_pmd_flags to include the memory
432 * encryption mask, so it needs to be called before anything
433 * that may generate a page fault.
439 idt_setup_early_handler();
441 copy_bootdata(__va(real_mode_data
));
444 * Load microcode early on BSP.
448 /* set init_top_pgt kernel high mapping*/
449 init_top_pgt
[511] = early_top_pgt
[511];
451 x86_64_start_reservations(real_mode_data
);
454 void __init
x86_64_start_reservations(char *real_mode_data
)
456 /* version is always not zero if it is copied */
457 if (!boot_params
.hdr
.version
)
458 copy_bootdata(__va(real_mode_data
));
460 x86_verify_bootdata_version();
462 x86_early_init_platform_quirks();
464 switch (boot_params
.hdr
.hardware_subarch
) {
465 case X86_SUBARCH_INTEL_MID
:
466 x86_intel_mid_early_setup();