Path: blob/master/drivers/firmware/efi/libstub/x86-5lvl.c
26483 views
// SPDX-License-Identifier: GPL-2.0-only1#include <linux/efi.h>23#include <asm/boot.h>4#include <asm/desc.h>5#include <asm/efi.h>67#include "efistub.h"8#include "x86-stub.h"910bool efi_no5lvl;1112static void (*la57_toggle)(void *cr3);1314static const struct desc_struct gdt[] = {15[GDT_ENTRY_KERNEL32_CS] = GDT_ENTRY_INIT(DESC_CODE32, 0, 0xfffff),16[GDT_ENTRY_KERNEL_CS] = GDT_ENTRY_INIT(DESC_CODE64, 0, 0xfffff),17};1819/*20* Enabling (or disabling) 5 level paging is tricky, because it can only be21* done from 32-bit mode with paging disabled. This means not only that the22* code itself must be running from 32-bit addressable physical memory, but23* also that the root page table must be 32-bit addressable, as programming24* a 64-bit value into CR3 when running in 32-bit mode is not supported.25*/26efi_status_t efi_setup_5level_paging(void)27{28u8 tmpl_size = (u8 *)&trampoline_ljmp_imm_offset - (u8 *)&trampoline_32bit_src;29efi_status_t status;30u8 *la57_code;3132if (!efi_is_64bit())33return EFI_SUCCESS;3435/* check for 5 level paging support */36if (native_cpuid_eax(0) < 7 ||37!(native_cpuid_ecx(7) & (1 << (X86_FEATURE_LA57 & 31))))38return EFI_SUCCESS;3940/* allocate some 32-bit addressable memory for code and a page table */41status = efi_allocate_pages(2 * PAGE_SIZE, (unsigned long *)&la57_code,42U32_MAX);43if (status != EFI_SUCCESS)44return status;4546la57_toggle = memcpy(la57_code, trampoline_32bit_src, tmpl_size);47memset(la57_code + tmpl_size, 0x90, PAGE_SIZE - tmpl_size);4849/*50* To avoid the need to allocate a 32-bit addressable stack, the51* trampoline uses a LJMP instruction to switch back to long mode.52* LJMP takes an absolute destination address, which needs to be53* fixed up at runtime.54*/55*(u32 *)&la57_code[trampoline_ljmp_imm_offset] += (unsigned long)la57_code;5657efi_adjust_memory_range_protection((unsigned long)la57_toggle, PAGE_SIZE);5859return EFI_SUCCESS;60}6162void efi_5level_switch(void)63{64bool want_la57 = !efi_no5lvl;65bool have_la57 = native_read_cr4() & X86_CR4_LA57;66bool need_toggle = want_la57 ^ have_la57;67u64 *pgt = (void *)la57_toggle + PAGE_SIZE;68u64 *cr3 = (u64 *)__native_read_cr3();69u64 *new_cr3;7071if (!la57_toggle || !need_toggle)72return;7374if (!have_la57) {75/*76* 5 level paging will be enabled, so a root level page needs77* to be allocated from the 32-bit addressable physical region,78* with its first entry referring to the existing hierarchy.79*/80new_cr3 = memset(pgt, 0, PAGE_SIZE);81new_cr3[0] = (u64)cr3 | _PAGE_TABLE_NOENC;82} else {83/* take the new root table pointer from the current entry #0 */84new_cr3 = (u64 *)(cr3[0] & PAGE_MASK);8586/* copy the new root table if it is not 32-bit addressable */87if ((u64)new_cr3 > U32_MAX)88new_cr3 = memcpy(pgt, new_cr3, PAGE_SIZE);89}9091native_load_gdt(&(struct desc_ptr){ sizeof(gdt) - 1, (u64)gdt });9293la57_toggle(new_cr3);94}959697