2 * x86_64 specific EFI support functions
3 * Based on Extensible Firmware Interface Specification version 1.0
5 * Copyright (C) 2005-2008 Intel Co.
6 * Fenghua Yu <fenghua.yu@intel.com>
7 * Bibo Mao <bibo.mao@intel.com>
8 * Chandramouli Narayanan <mouli@linux.intel.com>
9 * Huang Ying <ying.huang@intel.com>
11 * Code to convert EFI to E820 map has been implemented in elilo bootloader
12 * based on a EFI patch by Edgar Hucek. Based on the E820 map, the page table
13 * is setup appropriately for EFI runtime code.
18 #define pr_fmt(fmt) "efi: " fmt
20 #include <linux/kernel.h>
21 #include <linux/init.h>
23 #include <linux/types.h>
24 #include <linux/spinlock.h>
25 #include <linux/bootmem.h>
26 #include <linux/ioport.h>
27 #include <linux/module.h>
28 #include <linux/efi.h>
29 #include <linux/uaccess.h>
31 #include <linux/reboot.h>
32 #include <linux/slab.h>
34 #include <asm/setup.h>
37 #include <asm/pgtable.h>
38 #include <asm/tlbflush.h>
39 #include <asm/proto.h>
41 #include <asm/cacheflush.h>
42 #include <asm/fixmap.h>
43 #include <asm/realmode.h>
45 #include <asm/pgalloc.h>
48 * We allocate runtime services regions bottom-up, starting from -4G, i.e.
49 * 0xffff_ffff_0000_0000 and limit EFI VA mapping space to 64G.
51 static u64 efi_va
= EFI_VA_START
;
53 struct efi_scratch efi_scratch
;
55 static void __init
early_code_mapping_set_exec(int executable
)
57 efi_memory_desc_t
*md
;
60 if (!(__supported_pte_mask
& _PAGE_NX
))
63 /* Make EFI service code area executable */
64 for (p
= memmap
.map
; p
< memmap
.map_end
; p
+= memmap
.desc_size
) {
66 if (md
->type
== EFI_RUNTIME_SERVICES_CODE
||
67 md
->type
== EFI_BOOT_SERVICES_CODE
)
68 efi_set_executable(md
, executable
);
72 pgd_t
* __init
efi_call_phys_prolog(void)
74 unsigned long vaddress
;
80 if (!efi_enabled(EFI_OLD_MEMMAP
)) {
81 save_pgd
= (pgd_t
*)read_cr3();
82 write_cr3((unsigned long)efi_scratch
.efi_pgt
);
86 early_code_mapping_set_exec(1);
88 n_pgds
= DIV_ROUND_UP((max_pfn
<< PAGE_SHIFT
), PGDIR_SIZE
);
89 save_pgd
= kmalloc(n_pgds
* sizeof(pgd_t
), GFP_KERNEL
);
91 for (pgd
= 0; pgd
< n_pgds
; pgd
++) {
92 save_pgd
[pgd
] = *pgd_offset_k(pgd
* PGDIR_SIZE
);
93 vaddress
= (unsigned long)__va(pgd
* PGDIR_SIZE
);
94 set_pgd(pgd_offset_k(pgd
* PGDIR_SIZE
), *pgd_offset_k(vaddress
));
102 void __init
efi_call_phys_epilog(pgd_t
*save_pgd
)
105 * After the lock is released, the original page table is restored.
110 if (!efi_enabled(EFI_OLD_MEMMAP
)) {
111 write_cr3((unsigned long)save_pgd
);
116 nr_pgds
= DIV_ROUND_UP((max_pfn
<< PAGE_SHIFT
) , PGDIR_SIZE
);
118 for (pgd_idx
= 0; pgd_idx
< nr_pgds
; pgd_idx
++)
119 set_pgd(pgd_offset_k(pgd_idx
* PGDIR_SIZE
), save_pgd
[pgd_idx
]);
124 early_code_mapping_set_exec(0);
127 static pgd_t
*efi_pgd
;
130 * We need our own copy of the higher levels of the page tables
131 * because we want to avoid inserting EFI region mappings (EFI_VA_END
132 * to EFI_VA_START) into the standard kernel page tables. Everything
133 * else can be shared, see efi_sync_low_kernel_mappings().
135 int __init
efi_alloc_page_tables(void)
141 if (efi_enabled(EFI_OLD_MEMMAP
))
144 gfp_mask
= GFP_KERNEL
| __GFP_NOTRACK
| __GFP_REPEAT
| __GFP_ZERO
;
145 efi_pgd
= (pgd_t
*)__get_free_page(gfp_mask
);
149 pgd
= efi_pgd
+ pgd_index(EFI_VA_END
);
151 pud
= pud_alloc_one(NULL
, 0);
153 free_page((unsigned long)efi_pgd
);
157 pgd_populate(NULL
, pgd
, pud
);
163 * Add low kernel mappings for passing arguments to EFI functions.
165 void efi_sync_low_kernel_mappings(void)
167 unsigned num_entries
;
168 pgd_t
*pgd_k
, *pgd_efi
;
169 pud_t
*pud_k
, *pud_efi
;
171 if (efi_enabled(EFI_OLD_MEMMAP
))
175 * We can share all PGD entries apart from the one entry that
176 * covers the EFI runtime mapping space.
178 * Make sure the EFI runtime region mappings are guaranteed to
179 * only span a single PGD entry and that the entry also maps
180 * other important kernel regions.
182 BUILD_BUG_ON(pgd_index(EFI_VA_END
) != pgd_index(MODULES_END
));
183 BUILD_BUG_ON((EFI_VA_START
& PGDIR_MASK
) !=
184 (EFI_VA_END
& PGDIR_MASK
));
186 pgd_efi
= efi_pgd
+ pgd_index(PAGE_OFFSET
);
187 pgd_k
= pgd_offset_k(PAGE_OFFSET
);
189 num_entries
= pgd_index(EFI_VA_END
) - pgd_index(PAGE_OFFSET
);
190 memcpy(pgd_efi
, pgd_k
, sizeof(pgd_t
) * num_entries
);
193 * We share all the PUD entries apart from those that map the
194 * EFI regions. Copy around them.
196 BUILD_BUG_ON((EFI_VA_START
& ~PUD_MASK
) != 0);
197 BUILD_BUG_ON((EFI_VA_END
& ~PUD_MASK
) != 0);
199 pgd_efi
= efi_pgd
+ pgd_index(EFI_VA_END
);
200 pud_efi
= pud_offset(pgd_efi
, 0);
202 pgd_k
= pgd_offset_k(EFI_VA_END
);
203 pud_k
= pud_offset(pgd_k
, 0);
205 num_entries
= pud_index(EFI_VA_END
);
206 memcpy(pud_efi
, pud_k
, sizeof(pud_t
) * num_entries
);
208 pud_efi
= pud_offset(pgd_efi
, EFI_VA_START
);
209 pud_k
= pud_offset(pgd_k
, EFI_VA_START
);
211 num_entries
= PTRS_PER_PUD
- pud_index(EFI_VA_START
);
212 memcpy(pud_efi
, pud_k
, sizeof(pud_t
) * num_entries
);
215 int __init
efi_setup_page_tables(unsigned long pa_memmap
, unsigned num_pages
)
217 unsigned long pfn
, text
;
218 efi_memory_desc_t
*md
;
223 if (efi_enabled(EFI_OLD_MEMMAP
))
226 efi_scratch
.efi_pgt
= (pgd_t
*)__pa(efi_pgd
);
230 * It can happen that the physical address of new_memmap lands in memory
231 * which is not mapped in the EFI page table. Therefore we need to go
232 * and ident-map those pages containing the map before calling
233 * phys_efi_set_virtual_address_map().
235 pfn
= pa_memmap
>> PAGE_SHIFT
;
236 if (kernel_map_pages_in_pgd(pgd
, pfn
, pa_memmap
, num_pages
, _PAGE_NX
| _PAGE_RW
)) {
237 pr_err("Error ident-mapping new memmap (0x%lx)!\n", pa_memmap
);
241 efi_scratch
.use_pgd
= true;
244 * When making calls to the firmware everything needs to be 1:1
245 * mapped and addressable with 32-bit pointers. Map the kernel
246 * text and allocate a new stack because we can't rely on the
247 * stack pointer being < 4GB.
249 if (!IS_ENABLED(CONFIG_EFI_MIXED
))
253 * Map all of RAM so that we can access arguments in the 1:1
254 * mapping when making EFI runtime calls.
256 for_each_efi_memory_desc(&memmap
, md
) {
257 if (md
->type
!= EFI_CONVENTIONAL_MEMORY
&&
258 md
->type
!= EFI_LOADER_DATA
&&
259 md
->type
!= EFI_LOADER_CODE
)
262 pfn
= md
->phys_addr
>> PAGE_SHIFT
;
263 npages
= md
->num_pages
;
265 if (kernel_map_pages_in_pgd(pgd
, pfn
, md
->phys_addr
, npages
, _PAGE_RW
)) {
266 pr_err("Failed to map 1:1 memory\n");
271 page
= alloc_page(GFP_KERNEL
|__GFP_DMA32
);
273 panic("Unable to allocate EFI runtime stack < 4GB\n");
275 efi_scratch
.phys_stack
= virt_to_phys(page_address(page
));
276 efi_scratch
.phys_stack
+= PAGE_SIZE
; /* stack grows down */
278 npages
= (_etext
- _text
) >> PAGE_SHIFT
;
280 pfn
= text
>> PAGE_SHIFT
;
282 if (kernel_map_pages_in_pgd(pgd
, pfn
, text
, npages
, _PAGE_RW
)) {
283 pr_err("Failed to map kernel text 1:1\n");
290 void __init
efi_cleanup_page_tables(unsigned long pa_memmap
, unsigned num_pages
)
292 kernel_unmap_pages_in_pgd(efi_pgd
, pa_memmap
, num_pages
);
295 static void __init
__map_region(efi_memory_desc_t
*md
, u64 va
)
297 unsigned long flags
= _PAGE_RW
;
299 pgd_t
*pgd
= efi_pgd
;
301 if (!(md
->attribute
& EFI_MEMORY_WB
))
304 pfn
= md
->phys_addr
>> PAGE_SHIFT
;
305 if (kernel_map_pages_in_pgd(pgd
, pfn
, va
, md
->num_pages
, flags
))
306 pr_warn("Error mapping PA 0x%llx -> VA 0x%llx!\n",
310 void __init
efi_map_region(efi_memory_desc_t
*md
)
312 unsigned long size
= md
->num_pages
<< PAGE_SHIFT
;
313 u64 pa
= md
->phys_addr
;
315 if (efi_enabled(EFI_OLD_MEMMAP
))
316 return old_map_region(md
);
319 * Make sure the 1:1 mappings are present as a catch-all for b0rked
320 * firmware which doesn't update all internal pointers after switching
321 * to virtual mode and would otherwise crap on us.
323 __map_region(md
, md
->phys_addr
);
326 * Enforce the 1:1 mapping as the default virtual address when
327 * booting in EFI mixed mode, because even though we may be
328 * running a 64-bit kernel, the firmware may only be 32-bit.
330 if (!efi_is_native () && IS_ENABLED(CONFIG_EFI_MIXED
)) {
331 md
->virt_addr
= md
->phys_addr
;
337 /* Is PA 2M-aligned? */
338 if (!(pa
& (PMD_SIZE
- 1))) {
341 u64 pa_offset
= pa
& (PMD_SIZE
- 1);
342 u64 prev_va
= efi_va
;
344 /* get us the same offset within this 2M page */
345 efi_va
= (efi_va
& PMD_MASK
) + pa_offset
;
347 if (efi_va
> prev_va
)
351 if (efi_va
< EFI_VA_END
) {
352 pr_warn(FW_WARN
"VA address range overflow!\n");
357 __map_region(md
, efi_va
);
358 md
->virt_addr
= efi_va
;
362 * kexec kernel will use efi_map_region_fixed to map efi runtime memory ranges.
363 * md->virt_addr is the original virtual address which had been mapped in kexec
366 void __init
efi_map_region_fixed(efi_memory_desc_t
*md
)
368 __map_region(md
, md
->virt_addr
);
371 void __iomem
*__init
efi_ioremap(unsigned long phys_addr
, unsigned long size
,
372 u32 type
, u64 attribute
)
374 unsigned long last_map_pfn
;
376 if (type
== EFI_MEMORY_MAPPED_IO
)
377 return ioremap(phys_addr
, size
);
379 last_map_pfn
= init_memory_mapping(phys_addr
, phys_addr
+ size
);
380 if ((last_map_pfn
<< PAGE_SHIFT
) < phys_addr
+ size
) {
381 unsigned long top
= last_map_pfn
<< PAGE_SHIFT
;
382 efi_ioremap(top
, size
- (top
- phys_addr
), type
, attribute
);
385 if (!(attribute
& EFI_MEMORY_WB
))
386 efi_memory_uc((u64
)(unsigned long)__va(phys_addr
), size
);
388 return (void __iomem
*)__va(phys_addr
);
391 void __init
parse_efi_setup(u64 phys_addr
, u32 data_len
)
393 efi_setup
= phys_addr
+ sizeof(struct setup_data
);
396 void __init
efi_runtime_update_mappings(void)
399 pgd_t
*pgd
= efi_pgd
;
400 efi_memory_desc_t
*md
;
403 if (efi_enabled(EFI_OLD_MEMMAP
)) {
404 if (__supported_pte_mask
& _PAGE_NX
)
405 runtime_code_page_mkexec();
409 if (!efi_enabled(EFI_NX_PE_DATA
))
412 for (p
= memmap
.map
; p
< memmap
.map_end
; p
+= memmap
.desc_size
) {
413 unsigned long pf
= 0;
416 if (!(md
->attribute
& EFI_MEMORY_RUNTIME
))
419 if (!(md
->attribute
& EFI_MEMORY_WB
))
422 if ((md
->attribute
& EFI_MEMORY_XP
) ||
423 (md
->type
== EFI_RUNTIME_SERVICES_DATA
))
426 if (!(md
->attribute
& EFI_MEMORY_RO
) &&
427 (md
->type
!= EFI_RUNTIME_SERVICES_CODE
))
430 /* Update the 1:1 mapping */
431 pfn
= md
->phys_addr
>> PAGE_SHIFT
;
432 if (kernel_map_pages_in_pgd(pgd
, pfn
, md
->phys_addr
, md
->num_pages
, pf
))
433 pr_warn("Error mapping PA 0x%llx -> VA 0x%llx!\n",
434 md
->phys_addr
, md
->virt_addr
);
436 if (kernel_map_pages_in_pgd(pgd
, pfn
, md
->virt_addr
, md
->num_pages
, pf
))
437 pr_warn("Error mapping PA 0x%llx -> VA 0x%llx!\n",
438 md
->phys_addr
, md
->virt_addr
);
442 void __init
efi_dump_pagetable(void)
444 #ifdef CONFIG_EFI_PGT_DUMP
445 ptdump_walk_pgd_level(NULL
, efi_pgd
);
449 #ifdef CONFIG_EFI_MIXED
450 extern efi_status_t
efi64_thunk(u32
, ...);
452 #define runtime_service32(func) \
454 u32 table = (u32)(unsigned long)efi.systab; \
457 rt = (u32 *)(table + offsetof(efi_system_table_32_t, runtime)); \
458 ___f = (u32 *)(*rt + offsetof(efi_runtime_services_32_t, func)); \
463 * Switch to the EFI page tables early so that we can access the 1:1
464 * runtime services mappings which are not mapped in any other page
465 * tables. This function must be called before runtime_service32().
467 * Also, disable interrupts because the IDT points to 64-bit handlers,
468 * which aren't going to function correctly when we switch to 32-bit.
470 #define efi_thunk(f, ...) \
473 unsigned long flags; \
476 efi_sync_low_kernel_mappings(); \
477 local_irq_save(flags); \
479 efi_scratch.prev_cr3 = read_cr3(); \
480 write_cr3((unsigned long)efi_scratch.efi_pgt); \
483 func = runtime_service32(f); \
484 __s = efi64_thunk(func, __VA_ARGS__); \
486 write_cr3(efi_scratch.prev_cr3); \
488 local_irq_restore(flags); \
493 efi_status_t
efi_thunk_set_virtual_address_map(
494 void *phys_set_virtual_address_map
,
495 unsigned long memory_map_size
,
496 unsigned long descriptor_size
,
497 u32 descriptor_version
,
498 efi_memory_desc_t
*virtual_map
)
504 efi_sync_low_kernel_mappings();
505 local_irq_save(flags
);
507 efi_scratch
.prev_cr3
= read_cr3();
508 write_cr3((unsigned long)efi_scratch
.efi_pgt
);
511 func
= (u32
)(unsigned long)phys_set_virtual_address_map
;
512 status
= efi64_thunk(func
, memory_map_size
, descriptor_size
,
513 descriptor_version
, virtual_map
);
515 write_cr3(efi_scratch
.prev_cr3
);
517 local_irq_restore(flags
);
522 static efi_status_t
efi_thunk_get_time(efi_time_t
*tm
, efi_time_cap_t
*tc
)
525 u32 phys_tm
, phys_tc
;
527 spin_lock(&rtc_lock
);
529 phys_tm
= virt_to_phys(tm
);
530 phys_tc
= virt_to_phys(tc
);
532 status
= efi_thunk(get_time
, phys_tm
, phys_tc
);
534 spin_unlock(&rtc_lock
);
539 static efi_status_t
efi_thunk_set_time(efi_time_t
*tm
)
544 spin_lock(&rtc_lock
);
546 phys_tm
= virt_to_phys(tm
);
548 status
= efi_thunk(set_time
, phys_tm
);
550 spin_unlock(&rtc_lock
);
556 efi_thunk_get_wakeup_time(efi_bool_t
*enabled
, efi_bool_t
*pending
,
560 u32 phys_enabled
, phys_pending
, phys_tm
;
562 spin_lock(&rtc_lock
);
564 phys_enabled
= virt_to_phys(enabled
);
565 phys_pending
= virt_to_phys(pending
);
566 phys_tm
= virt_to_phys(tm
);
568 status
= efi_thunk(get_wakeup_time
, phys_enabled
,
569 phys_pending
, phys_tm
);
571 spin_unlock(&rtc_lock
);
577 efi_thunk_set_wakeup_time(efi_bool_t enabled
, efi_time_t
*tm
)
582 spin_lock(&rtc_lock
);
584 phys_tm
= virt_to_phys(tm
);
586 status
= efi_thunk(set_wakeup_time
, enabled
, phys_tm
);
588 spin_unlock(&rtc_lock
);
595 efi_thunk_get_variable(efi_char16_t
*name
, efi_guid_t
*vendor
,
596 u32
*attr
, unsigned long *data_size
, void *data
)
599 u32 phys_name
, phys_vendor
, phys_attr
;
600 u32 phys_data_size
, phys_data
;
602 phys_data_size
= virt_to_phys(data_size
);
603 phys_vendor
= virt_to_phys(vendor
);
604 phys_name
= virt_to_phys(name
);
605 phys_attr
= virt_to_phys(attr
);
606 phys_data
= virt_to_phys(data
);
608 status
= efi_thunk(get_variable
, phys_name
, phys_vendor
,
609 phys_attr
, phys_data_size
, phys_data
);
615 efi_thunk_set_variable(efi_char16_t
*name
, efi_guid_t
*vendor
,
616 u32 attr
, unsigned long data_size
, void *data
)
618 u32 phys_name
, phys_vendor
, phys_data
;
621 phys_name
= virt_to_phys(name
);
622 phys_vendor
= virt_to_phys(vendor
);
623 phys_data
= virt_to_phys(data
);
625 /* If data_size is > sizeof(u32) we've got problems */
626 status
= efi_thunk(set_variable
, phys_name
, phys_vendor
,
627 attr
, data_size
, phys_data
);
633 efi_thunk_get_next_variable(unsigned long *name_size
,
638 u32 phys_name_size
, phys_name
, phys_vendor
;
640 phys_name_size
= virt_to_phys(name_size
);
641 phys_vendor
= virt_to_phys(vendor
);
642 phys_name
= virt_to_phys(name
);
644 status
= efi_thunk(get_next_variable
, phys_name_size
,
645 phys_name
, phys_vendor
);
651 efi_thunk_get_next_high_mono_count(u32
*count
)
656 phys_count
= virt_to_phys(count
);
657 status
= efi_thunk(get_next_high_mono_count
, phys_count
);
663 efi_thunk_reset_system(int reset_type
, efi_status_t status
,
664 unsigned long data_size
, efi_char16_t
*data
)
668 phys_data
= virt_to_phys(data
);
670 efi_thunk(reset_system
, reset_type
, status
, data_size
, phys_data
);
674 efi_thunk_update_capsule(efi_capsule_header_t
**capsules
,
675 unsigned long count
, unsigned long sg_list
)
678 * To properly support this function we would need to repackage
679 * 'capsules' because the firmware doesn't understand 64-bit
682 return EFI_UNSUPPORTED
;
686 efi_thunk_query_variable_info(u32 attr
, u64
*storage_space
,
687 u64
*remaining_space
,
688 u64
*max_variable_size
)
691 u32 phys_storage
, phys_remaining
, phys_max
;
693 if (efi
.runtime_version
< EFI_2_00_SYSTEM_TABLE_REVISION
)
694 return EFI_UNSUPPORTED
;
696 phys_storage
= virt_to_phys(storage_space
);
697 phys_remaining
= virt_to_phys(remaining_space
);
698 phys_max
= virt_to_phys(max_variable_size
);
700 status
= efi_thunk(query_variable_info
, attr
, phys_storage
,
701 phys_remaining
, phys_max
);
707 efi_thunk_query_capsule_caps(efi_capsule_header_t
**capsules
,
708 unsigned long count
, u64
*max_size
,
712 * To properly support this function we would need to repackage
713 * 'capsules' because the firmware doesn't understand 64-bit
716 return EFI_UNSUPPORTED
;
719 void efi_thunk_runtime_setup(void)
721 efi
.get_time
= efi_thunk_get_time
;
722 efi
.set_time
= efi_thunk_set_time
;
723 efi
.get_wakeup_time
= efi_thunk_get_wakeup_time
;
724 efi
.set_wakeup_time
= efi_thunk_set_wakeup_time
;
725 efi
.get_variable
= efi_thunk_get_variable
;
726 efi
.get_next_variable
= efi_thunk_get_next_variable
;
727 efi
.set_variable
= efi_thunk_set_variable
;
728 efi
.get_next_high_mono_count
= efi_thunk_get_next_high_mono_count
;
729 efi
.reset_system
= efi_thunk_reset_system
;
730 efi
.query_variable_info
= efi_thunk_query_variable_info
;
731 efi
.update_capsule
= efi_thunk_update_capsule
;
732 efi
.query_capsule_caps
= efi_thunk_query_capsule_caps
;
734 #endif /* CONFIG_EFI_MIXED */