1 // SPDX-License-Identifier: GPL-2.0
3 * x86_64 specific EFI support functions
4 * Based on Extensible Firmware Interface Specification version 1.0
6 * Copyright (C) 2005-2008 Intel Co.
7 * Fenghua Yu <fenghua.yu@intel.com>
8 * Bibo Mao <bibo.mao@intel.com>
9 * Chandramouli Narayanan <mouli@linux.intel.com>
10 * Huang Ying <ying.huang@intel.com>
12 * Code to convert EFI to E820 map has been implemented in elilo bootloader
13 * based on a EFI patch by Edgar Hucek. Based on the E820 map, the page table
14 * is setup appropriately for EFI runtime code.
19 #define pr_fmt(fmt) "efi: " fmt
21 #include <linux/kernel.h>
22 #include <linux/init.h>
24 #include <linux/types.h>
25 #include <linux/spinlock.h>
26 #include <linux/memblock.h>
27 #include <linux/ioport.h>
28 #include <linux/mc146818rtc.h>
29 #include <linux/efi.h>
30 #include <linux/export.h>
31 #include <linux/uaccess.h>
33 #include <linux/reboot.h>
34 #include <linux/slab.h>
35 #include <linux/ucs2_string.h>
36 #include <linux/mem_encrypt.h>
37 #include <linux/sched/task.h>
39 #include <asm/setup.h>
41 #include <asm/e820/api.h>
42 #include <asm/tlbflush.h>
43 #include <asm/proto.h>
45 #include <asm/cacheflush.h>
46 #include <asm/fixmap.h>
47 #include <asm/realmode.h>
49 #include <asm/pgalloc.h>
50 #include <asm/sev-es.h>
53 * We allocate runtime services regions top-down, starting from -4G, i.e.
54 * 0xffff_ffff_0000_0000 and limit EFI VA mapping space to 64G.
56 static u64 efi_va = EFI_VA_START;
58 struct efi_scratch efi_scratch;
60 EXPORT_SYMBOL_GPL(efi_mm);
63 * We need our own copy of the higher levels of the page tables
64 * because we want to avoid inserting EFI region mappings (EFI_VA_END
65 * to EFI_VA_START) into the standard kernel page tables. Everything
66 * else can be shared, see efi_sync_low_kernel_mappings().
68 * We don't want the pgd on the pgd_list and cannot use pgd_alloc() for the
71 int __init efi_alloc_page_tables(void)
78 gfp_mask = GFP_KERNEL | __GFP_ZERO;
79 efi_pgd = (pgd_t *)__get_free_pages(gfp_mask, PGD_ALLOCATION_ORDER);
83 pgd = efi_pgd + pgd_index(EFI_VA_END);
84 p4d = p4d_alloc(&init_mm, pgd, EFI_VA_END);
88 pud = pud_alloc(&init_mm, p4d, EFI_VA_END);
93 mm_init_cpumask(&efi_mm);
94 init_new_context(NULL, &efi_mm);
99 if (pgtable_l5_enabled())
100 free_page((unsigned long)pgd_page_vaddr(*pgd));
102 free_pages((unsigned long)efi_pgd, PGD_ALLOCATION_ORDER);
108 * Add low kernel mappings for passing arguments to EFI functions.
110 void efi_sync_low_kernel_mappings(void)
112 unsigned num_entries;
113 pgd_t *pgd_k, *pgd_efi;
114 p4d_t *p4d_k, *p4d_efi;
115 pud_t *pud_k, *pud_efi;
116 pgd_t *efi_pgd = efi_mm.pgd;
118 pgd_efi = efi_pgd + pgd_index(PAGE_OFFSET);
119 pgd_k = pgd_offset_k(PAGE_OFFSET);
121 num_entries = pgd_index(EFI_VA_END) - pgd_index(PAGE_OFFSET);
122 memcpy(pgd_efi, pgd_k, sizeof(pgd_t) * num_entries);
124 pgd_efi = efi_pgd + pgd_index(EFI_VA_END);
125 pgd_k = pgd_offset_k(EFI_VA_END);
126 p4d_efi = p4d_offset(pgd_efi, 0);
127 p4d_k = p4d_offset(pgd_k, 0);
129 num_entries = p4d_index(EFI_VA_END);
130 memcpy(p4d_efi, p4d_k, sizeof(p4d_t) * num_entries);
133 * We share all the PUD entries apart from those that map the
134 * EFI regions. Copy around them.
136 BUILD_BUG_ON((EFI_VA_START & ~PUD_MASK) != 0);
137 BUILD_BUG_ON((EFI_VA_END & ~PUD_MASK) != 0);
139 p4d_efi = p4d_offset(pgd_efi, EFI_VA_END);
140 p4d_k = p4d_offset(pgd_k, EFI_VA_END);
141 pud_efi = pud_offset(p4d_efi, 0);
142 pud_k = pud_offset(p4d_k, 0);
144 num_entries = pud_index(EFI_VA_END);
145 memcpy(pud_efi, pud_k, sizeof(pud_t) * num_entries);
147 pud_efi = pud_offset(p4d_efi, EFI_VA_START);
148 pud_k = pud_offset(p4d_k, EFI_VA_START);
150 num_entries = PTRS_PER_PUD - pud_index(EFI_VA_START);
151 memcpy(pud_efi, pud_k, sizeof(pud_t) * num_entries);
155 * Wrapper for slow_virt_to_phys() that handles NULL addresses.
157 static inline phys_addr_t
158 virt_to_phys_or_null_size(void *va, unsigned long size)
165 if (virt_addr_valid(va))
166 return virt_to_phys(va);
168 pa = slow_virt_to_phys(va);
170 /* check if the object crosses a page boundary */
171 if (WARN_ON((pa ^ (pa + size - 1)) & PAGE_MASK))
177 #define virt_to_phys_or_null(addr) \
178 virt_to_phys_or_null_size((addr), sizeof(*(addr)))
180 int __init efi_setup_page_tables(unsigned long pa_memmap, unsigned num_pages)
182 unsigned long pfn, text, pf, rodata;
185 pgd_t *pgd = efi_mm.pgd;
188 * It can happen that the physical address of new_memmap lands in memory
189 * which is not mapped in the EFI page table. Therefore we need to go
190 * and ident-map those pages containing the map before calling
191 * phys_efi_set_virtual_address_map().
193 pfn = pa_memmap >> PAGE_SHIFT;
194 pf = _PAGE_NX | _PAGE_RW | _PAGE_ENC;
195 if (kernel_map_pages_in_pgd(pgd, pfn, pa_memmap, num_pages, pf)) {
196 pr_err("Error ident-mapping new memmap (0x%lx)!\n", pa_memmap);
201 * Certain firmware versions are way too sentimential and still believe
202 * they are exclusive and unquestionable owners of the first physical page,
203 * even though they explicitly mark it as EFI_CONVENTIONAL_MEMORY
204 * (but then write-access it later during SetVirtualAddressMap()).
206 * Create a 1:1 mapping for this page, to avoid triple faults during early
207 * boot with such firmware. We are free to hand this page to the BIOS,
208 * as trim_bios_range() will reserve the first page and isolate it away
209 * from memory allocators anyway.
211 if (kernel_map_pages_in_pgd(pgd, 0x0, 0x0, 1, pf)) {
212 pr_err("Failed to create 1:1 mapping for the first page!\n");
217 * When SEV-ES is active, the GHCB as set by the kernel will be used
218 * by firmware. Create a 1:1 unencrypted mapping for each GHCB.
220 if (sev_es_efi_map_ghcbs(pgd)) {
221 pr_err("Failed to create 1:1 mapping for the GHCBs!\n");
226 * When making calls to the firmware everything needs to be 1:1
227 * mapped and addressable with 32-bit pointers. Map the kernel
228 * text and allocate a new stack because we can't rely on the
229 * stack pointer being < 4GB.
234 page = alloc_page(GFP_KERNEL|__GFP_DMA32);
236 pr_err("Unable to allocate EFI runtime stack < 4GB\n");
240 efi_scratch.phys_stack = page_to_phys(page + 1); /* stack grows down */
242 npages = (_etext - _text) >> PAGE_SHIFT;
244 pfn = text >> PAGE_SHIFT;
247 if (kernel_map_pages_in_pgd(pgd, pfn, text, npages, pf)) {
248 pr_err("Failed to map kernel text 1:1\n");
252 npages = (__end_rodata - __start_rodata) >> PAGE_SHIFT;
253 rodata = __pa(__start_rodata);
254 pfn = rodata >> PAGE_SHIFT;
256 pf = _PAGE_NX | _PAGE_ENC;
257 if (kernel_map_pages_in_pgd(pgd, pfn, rodata, npages, pf)) {
258 pr_err("Failed to map kernel rodata 1:1\n");
265 static void __init __map_region(efi_memory_desc_t *md, u64 va)
267 unsigned long flags = _PAGE_RW;
269 pgd_t *pgd = efi_mm.pgd;
272 * EFI_RUNTIME_SERVICES_CODE regions typically cover PE/COFF
273 * executable images in memory that consist of both R-X and
274 * RW- sections, so we cannot apply read-only or non-exec
275 * permissions just yet. However, modern EFI systems provide
276 * a memory attributes table that describes those sections
277 * with the appropriate restricted permissions, which are
278 * applied in efi_runtime_update_mappings() below. All other
279 * regions can be mapped non-executable at this point, with
280 * the exception of boot services code regions, but those will
281 * be unmapped again entirely in efi_free_boot_services().
283 if (md->type != EFI_BOOT_SERVICES_CODE &&
284 md->type != EFI_RUNTIME_SERVICES_CODE)
287 if (!(md->attribute & EFI_MEMORY_WB))
290 if (sev_active() && md->type != EFI_MEMORY_MAPPED_IO)
293 pfn = md->phys_addr >> PAGE_SHIFT;
294 if (kernel_map_pages_in_pgd(pgd, pfn, va, md->num_pages, flags))
295 pr_warn("Error mapping PA 0x%llx -> VA 0x%llx!\n",
299 void __init efi_map_region(efi_memory_desc_t *md)
301 unsigned long size = md->num_pages << PAGE_SHIFT;
302 u64 pa = md->phys_addr;
305 * Make sure the 1:1 mappings are present as a catch-all for b0rked
306 * firmware which doesn't update all internal pointers after switching
307 * to virtual mode and would otherwise crap on us.
309 __map_region(md, md->phys_addr);
312 * Enforce the 1:1 mapping as the default virtual address when
313 * booting in EFI mixed mode, because even though we may be
314 * running a 64-bit kernel, the firmware may only be 32-bit.
316 if (efi_is_mixed()) {
317 md->virt_addr = md->phys_addr;
323 /* Is PA 2M-aligned? */
324 if (!(pa & (PMD_SIZE - 1))) {
327 u64 pa_offset = pa & (PMD_SIZE - 1);
328 u64 prev_va = efi_va;
330 /* get us the same offset within this 2M page */
331 efi_va = (efi_va & PMD_MASK) + pa_offset;
333 if (efi_va > prev_va)
337 if (efi_va < EFI_VA_END) {
338 pr_warn(FW_WARN "VA address range overflow!\n");
343 __map_region(md, efi_va);
344 md->virt_addr = efi_va;
348 * kexec kernel will use efi_map_region_fixed to map efi runtime memory ranges.
349 * md->virt_addr is the original virtual address which had been mapped in kexec
352 void __init efi_map_region_fixed(efi_memory_desc_t *md)
354 __map_region(md, md->phys_addr);
355 __map_region(md, md->virt_addr);
358 void __init parse_efi_setup(u64 phys_addr, u32 data_len)
360 efi_setup = phys_addr + sizeof(struct setup_data);
363 static int __init efi_update_mappings(efi_memory_desc_t *md, unsigned long pf)
366 pgd_t *pgd = efi_mm.pgd;
369 /* Update the 1:1 mapping */
370 pfn = md->phys_addr >> PAGE_SHIFT;
371 err1 = kernel_map_pages_in_pgd(pgd, pfn, md->phys_addr, md->num_pages, pf);
373 pr_err("Error while updating 1:1 mapping PA 0x%llx -> VA 0x%llx!\n",
374 md->phys_addr, md->virt_addr);
377 err2 = kernel_map_pages_in_pgd(pgd, pfn, md->virt_addr, md->num_pages, pf);
379 pr_err("Error while updating VA mapping PA 0x%llx -> VA 0x%llx!\n",
380 md->phys_addr, md->virt_addr);
386 static int __init efi_update_mem_attr(struct mm_struct *mm, efi_memory_desc_t *md)
388 unsigned long pf = 0;
390 if (md->attribute & EFI_MEMORY_XP)
393 if (!(md->attribute & EFI_MEMORY_RO))
399 return efi_update_mappings(md, pf);
402 void __init efi_runtime_update_mappings(void)
404 efi_memory_desc_t *md;
407 * Use the EFI Memory Attribute Table for mapping permissions if it
408 * exists, since it is intended to supersede EFI_PROPERTIES_TABLE.
410 if (efi_enabled(EFI_MEM_ATTR)) {
411 efi_memattr_apply_permissions(NULL, efi_update_mem_attr);
416 * EFI_MEMORY_ATTRIBUTES_TABLE is intended to replace
417 * EFI_PROPERTIES_TABLE. So, use EFI_PROPERTIES_TABLE to update
418 * permissions only if EFI_MEMORY_ATTRIBUTES_TABLE is not
419 * published by the firmware. Even if we find a buggy implementation of
420 * EFI_MEMORY_ATTRIBUTES_TABLE, don't fall back to
421 * EFI_PROPERTIES_TABLE, because of the same reason.
424 if (!efi_enabled(EFI_NX_PE_DATA))
427 for_each_efi_memory_desc(md) {
428 unsigned long pf = 0;
430 if (!(md->attribute & EFI_MEMORY_RUNTIME))
433 if (!(md->attribute & EFI_MEMORY_WB))
436 if ((md->attribute & EFI_MEMORY_XP) ||
437 (md->type == EFI_RUNTIME_SERVICES_DATA))
440 if (!(md->attribute & EFI_MEMORY_RO) &&
441 (md->type != EFI_RUNTIME_SERVICES_CODE))
447 efi_update_mappings(md, pf);
451 void __init efi_dump_pagetable(void)
453 #ifdef CONFIG_EFI_PGT_DUMP
454 ptdump_walk_pgd_level(NULL, &efi_mm);
459 * Makes the calling thread switch to/from efi_mm context. Can be used
460 * in a kernel thread and user context. Preemption needs to remain disabled
461 * while the EFI-mm is borrowed. mmgrab()/mmdrop() is not used because the mm
462 * can not change under us.
463 * It should be ensured that there are no concurent calls to this function.
465 void efi_switch_mm(struct mm_struct *mm)
467 efi_scratch.prev_mm = current->active_mm;
468 current->active_mm = mm;
469 switch_mm(efi_scratch.prev_mm, mm, NULL);
472 static DEFINE_SPINLOCK(efi_runtime_lock);
475 * DS and ES contain user values. We need to save them.
476 * The 32-bit EFI code needs a valid DS, ES, and SS. There's no
477 * need to save the old SS: __KERNEL_DS is always acceptable.
479 #define __efi_thunk(func, ...) \
481 unsigned short __ds, __es; \
482 efi_status_t ____s; \
484 savesegment(ds, __ds); \
485 savesegment(es, __es); \
487 loadsegment(ss, __KERNEL_DS); \
488 loadsegment(ds, __KERNEL_DS); \
489 loadsegment(es, __KERNEL_DS); \
491 ____s = efi64_thunk(efi.runtime->mixed_mode.func, __VA_ARGS__); \
493 loadsegment(ds, __ds); \
494 loadsegment(es, __es); \
496 ____s ^= (____s & BIT(31)) | (____s & BIT_ULL(31)) << 32; \
501 * Switch to the EFI page tables early so that we can access the 1:1
502 * runtime services mappings which are not mapped in any other page
505 * Also, disable interrupts because the IDT points to 64-bit handlers,
506 * which aren't going to function correctly when we switch to 32-bit.
508 #define efi_thunk(func...) \
512 arch_efi_call_virt_setup(); \
514 __s = __efi_thunk(func); \
516 arch_efi_call_virt_teardown(); \
521 static efi_status_t __init __no_sanitize_address
522 efi_thunk_set_virtual_address_map(unsigned long memory_map_size,
523 unsigned long descriptor_size,
524 u32 descriptor_version,
525 efi_memory_desc_t *virtual_map)
530 efi_sync_low_kernel_mappings();
531 local_irq_save(flags);
533 efi_switch_mm(&efi_mm);
535 status = __efi_thunk(set_virtual_address_map, memory_map_size,
536 descriptor_size, descriptor_version, virtual_map);
538 efi_switch_mm(efi_scratch.prev_mm);
539 local_irq_restore(flags);
544 static efi_status_t efi_thunk_get_time(efi_time_t *tm, efi_time_cap_t *tc)
546 return EFI_UNSUPPORTED;
549 static efi_status_t efi_thunk_set_time(efi_time_t *tm)
551 return EFI_UNSUPPORTED;
555 efi_thunk_get_wakeup_time(efi_bool_t *enabled, efi_bool_t *pending,
558 return EFI_UNSUPPORTED;
562 efi_thunk_set_wakeup_time(efi_bool_t enabled, efi_time_t *tm)
564 return EFI_UNSUPPORTED;
567 static unsigned long efi_name_size(efi_char16_t *name)
569 return ucs2_strsize(name, EFI_VAR_NAME_LEN) + 1;
573 efi_thunk_get_variable(efi_char16_t *name, efi_guid_t *vendor,
574 u32 *attr, unsigned long *data_size, void *data)
576 u8 buf[24] __aligned(8);
577 efi_guid_t *vnd = PTR_ALIGN((efi_guid_t *)buf, sizeof(*vnd));
579 u32 phys_name, phys_vendor, phys_attr;
580 u32 phys_data_size, phys_data;
583 spin_lock_irqsave(&efi_runtime_lock, flags);
587 phys_data_size = virt_to_phys_or_null(data_size);
588 phys_vendor = virt_to_phys_or_null(vnd);
589 phys_name = virt_to_phys_or_null_size(name, efi_name_size(name));
590 phys_attr = virt_to_phys_or_null(attr);
591 phys_data = virt_to_phys_or_null_size(data, *data_size);
593 if (!phys_name || (data && !phys_data))
594 status = EFI_INVALID_PARAMETER;
596 status = efi_thunk(get_variable, phys_name, phys_vendor,
597 phys_attr, phys_data_size, phys_data);
599 spin_unlock_irqrestore(&efi_runtime_lock, flags);
605 efi_thunk_set_variable(efi_char16_t *name, efi_guid_t *vendor,
606 u32 attr, unsigned long data_size, void *data)
608 u8 buf[24] __aligned(8);
609 efi_guid_t *vnd = PTR_ALIGN((efi_guid_t *)buf, sizeof(*vnd));
610 u32 phys_name, phys_vendor, phys_data;
614 spin_lock_irqsave(&efi_runtime_lock, flags);
618 phys_name = virt_to_phys_or_null_size(name, efi_name_size(name));
619 phys_vendor = virt_to_phys_or_null(vnd);
620 phys_data = virt_to_phys_or_null_size(data, data_size);
622 if (!phys_name || (data && !phys_data))
623 status = EFI_INVALID_PARAMETER;
625 status = efi_thunk(set_variable, phys_name, phys_vendor,
626 attr, data_size, phys_data);
628 spin_unlock_irqrestore(&efi_runtime_lock, flags);
634 efi_thunk_set_variable_nonblocking(efi_char16_t *name, efi_guid_t *vendor,
635 u32 attr, unsigned long data_size,
638 u8 buf[24] __aligned(8);
639 efi_guid_t *vnd = PTR_ALIGN((efi_guid_t *)buf, sizeof(*vnd));
640 u32 phys_name, phys_vendor, phys_data;
644 if (!spin_trylock_irqsave(&efi_runtime_lock, flags))
645 return EFI_NOT_READY;
649 phys_name = virt_to_phys_or_null_size(name, efi_name_size(name));
650 phys_vendor = virt_to_phys_or_null(vnd);
651 phys_data = virt_to_phys_or_null_size(data, data_size);
653 if (!phys_name || (data && !phys_data))
654 status = EFI_INVALID_PARAMETER;
656 status = efi_thunk(set_variable, phys_name, phys_vendor,
657 attr, data_size, phys_data);
659 spin_unlock_irqrestore(&efi_runtime_lock, flags);
665 efi_thunk_get_next_variable(unsigned long *name_size,
669 u8 buf[24] __aligned(8);
670 efi_guid_t *vnd = PTR_ALIGN((efi_guid_t *)buf, sizeof(*vnd));
672 u32 phys_name_size, phys_name, phys_vendor;
675 spin_lock_irqsave(&efi_runtime_lock, flags);
679 phys_name_size = virt_to_phys_or_null(name_size);
680 phys_vendor = virt_to_phys_or_null(vnd);
681 phys_name = virt_to_phys_or_null_size(name, *name_size);
684 status = EFI_INVALID_PARAMETER;
686 status = efi_thunk(get_next_variable, phys_name_size,
687 phys_name, phys_vendor);
689 spin_unlock_irqrestore(&efi_runtime_lock, flags);
696 efi_thunk_get_next_high_mono_count(u32 *count)
698 return EFI_UNSUPPORTED;
702 efi_thunk_reset_system(int reset_type, efi_status_t status,
703 unsigned long data_size, efi_char16_t *data)
708 spin_lock_irqsave(&efi_runtime_lock, flags);
710 phys_data = virt_to_phys_or_null_size(data, data_size);
712 efi_thunk(reset_system, reset_type, status, data_size, phys_data);
714 spin_unlock_irqrestore(&efi_runtime_lock, flags);
718 efi_thunk_update_capsule(efi_capsule_header_t **capsules,
719 unsigned long count, unsigned long sg_list)
722 * To properly support this function we would need to repackage
723 * 'capsules' because the firmware doesn't understand 64-bit
726 return EFI_UNSUPPORTED;
730 efi_thunk_query_variable_info(u32 attr, u64 *storage_space,
731 u64 *remaining_space,
732 u64 *max_variable_size)
735 u32 phys_storage, phys_remaining, phys_max;
738 if (efi.runtime_version < EFI_2_00_SYSTEM_TABLE_REVISION)
739 return EFI_UNSUPPORTED;
741 spin_lock_irqsave(&efi_runtime_lock, flags);
743 phys_storage = virt_to_phys_or_null(storage_space);
744 phys_remaining = virt_to_phys_or_null(remaining_space);
745 phys_max = virt_to_phys_or_null(max_variable_size);
747 status = efi_thunk(query_variable_info, attr, phys_storage,
748 phys_remaining, phys_max);
750 spin_unlock_irqrestore(&efi_runtime_lock, flags);
756 efi_thunk_query_variable_info_nonblocking(u32 attr, u64 *storage_space,
757 u64 *remaining_space,
758 u64 *max_variable_size)
761 u32 phys_storage, phys_remaining, phys_max;
764 if (efi.runtime_version < EFI_2_00_SYSTEM_TABLE_REVISION)
765 return EFI_UNSUPPORTED;
767 if (!spin_trylock_irqsave(&efi_runtime_lock, flags))
768 return EFI_NOT_READY;
770 phys_storage = virt_to_phys_or_null(storage_space);
771 phys_remaining = virt_to_phys_or_null(remaining_space);
772 phys_max = virt_to_phys_or_null(max_variable_size);
774 status = efi_thunk(query_variable_info, attr, phys_storage,
775 phys_remaining, phys_max);
777 spin_unlock_irqrestore(&efi_runtime_lock, flags);
783 efi_thunk_query_capsule_caps(efi_capsule_header_t **capsules,
784 unsigned long count, u64 *max_size,
788 * To properly support this function we would need to repackage
789 * 'capsules' because the firmware doesn't understand 64-bit
792 return EFI_UNSUPPORTED;
795 void __init efi_thunk_runtime_setup(void)
797 if (!IS_ENABLED(CONFIG_EFI_MIXED))
800 efi.get_time = efi_thunk_get_time;
801 efi.set_time = efi_thunk_set_time;
802 efi.get_wakeup_time = efi_thunk_get_wakeup_time;
803 efi.set_wakeup_time = efi_thunk_set_wakeup_time;
804 efi.get_variable = efi_thunk_get_variable;
805 efi.get_next_variable = efi_thunk_get_next_variable;
806 efi.set_variable = efi_thunk_set_variable;
807 efi.set_variable_nonblocking = efi_thunk_set_variable_nonblocking;
808 efi.get_next_high_mono_count = efi_thunk_get_next_high_mono_count;
809 efi.reset_system = efi_thunk_reset_system;
810 efi.query_variable_info = efi_thunk_query_variable_info;
811 efi.query_variable_info_nonblocking = efi_thunk_query_variable_info_nonblocking;
812 efi.update_capsule = efi_thunk_update_capsule;
813 efi.query_capsule_caps = efi_thunk_query_capsule_caps;
816 efi_status_t __init __no_sanitize_address
817 efi_set_virtual_address_map(unsigned long memory_map_size,
818 unsigned long descriptor_size,
819 u32 descriptor_version,
820 efi_memory_desc_t *virtual_map,
821 unsigned long systab_phys)
823 const efi_system_table_t *systab = (efi_system_table_t *)systab_phys;
828 return efi_thunk_set_virtual_address_map(memory_map_size,
832 efi_switch_mm(&efi_mm);
836 /* Disable interrupts around EFI calls: */
837 local_irq_save(flags);
838 status = efi_call(efi.runtime->set_virtual_address_map,
839 memory_map_size, descriptor_size,
840 descriptor_version, virtual_map);
841 local_irq_restore(flags);
845 /* grab the virtually remapped EFI runtime services table pointer */
846 efi.runtime = READ_ONCE(systab->runtime);
848 efi_switch_mm(efi_scratch.prev_mm);