2 * Extensible Firmware Interface
4 * Based on Extensible Firmware Interface Specification version 2.4
6 * Copyright (C) 2013, 2014 Linaro Ltd.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
14 #include <linux/efi.h>
16 #include <linux/memblock.h>
17 #include <linux/mm_types.h>
18 #include <linux/preempt.h>
19 #include <linux/rbtree.h>
20 #include <linux/rwsem.h>
21 #include <linux/sched.h>
22 #include <linux/slab.h>
23 #include <linux/spinlock.h>
25 #include <asm/cacheflush.h>
28 #include <asm/pgalloc.h>
29 #include <asm/pgtable.h>
31 extern u64 efi_system_table
;
33 static struct mm_struct efi_mm
= {
35 .mm_users
= ATOMIC_INIT(2),
36 .mm_count
= ATOMIC_INIT(1),
37 .mmap_sem
= __RWSEM_INITIALIZER(efi_mm
.mmap_sem
),
38 .page_table_lock
= __SPIN_LOCK_UNLOCKED(efi_mm
.page_table_lock
),
39 .mmlist
= LIST_HEAD_INIT(efi_mm
.mmlist
),
42 static bool __init
efi_virtmap_init(void)
44 efi_memory_desc_t
*md
;
46 efi_mm
.pgd
= pgd_alloc(&efi_mm
);
47 init_new_context(NULL
, &efi_mm
);
49 for_each_efi_memory_desc(&memmap
, md
) {
50 phys_addr_t phys
= md
->phys_addr
;
53 if (!(md
->attribute
& EFI_MEMORY_RUNTIME
))
55 if (md
->virt_addr
== 0)
58 ret
= efi_create_mapping(&efi_mm
, md
);
60 pr_info(" EFI remap %pa => %p\n",
61 &phys
, (void *)(unsigned long)md
->virt_addr
);
63 pr_warn(" EFI remap %pa: failed to create mapping (%d)\n",
72 * Enable the UEFI Runtime Services if all prerequisites are in place, i.e.,
73 * non-early mapping of the UEFI system table and virtual mappings for all
74 * EFI_MEMORY_RUNTIME regions.
76 static int __init
arm_enable_runtime_services(void)
80 if (!efi_enabled(EFI_BOOT
)) {
81 pr_info("EFI services will not be available.\n");
85 if (efi_runtime_disabled()) {
86 pr_info("EFI runtime services will be disabled.\n");
90 pr_info("Remapping and enabling EFI services.\n");
92 mapsize
= memmap
.map_end
- memmap
.map
;
93 memmap
.map
= (__force
void *)ioremap_cache(memmap
.phys_map
,
96 pr_err("Failed to remap EFI memory map\n");
99 memmap
.map_end
= memmap
.map
+ mapsize
;
100 efi
.memmap
= &memmap
;
102 efi
.systab
= (__force
void *)ioremap_cache(efi_system_table
,
103 sizeof(efi_system_table_t
));
105 pr_err("Failed to remap EFI System Table\n");
108 set_bit(EFI_SYSTEM_TABLES
, &efi
.flags
);
110 if (!efi_virtmap_init()) {
111 pr_err("No UEFI virtual mapping was installed -- runtime services will not be available\n");
115 /* Set up runtime services function pointers */
116 efi_native_runtime_setup();
117 set_bit(EFI_RUNTIME_SERVICES
, &efi
.flags
);
119 efi
.runtime_version
= efi
.systab
->hdr
.revision
;
123 early_initcall(arm_enable_runtime_services
);
125 void efi_virtmap_load(void)
128 efi_set_pgd(&efi_mm
);
131 void efi_virtmap_unload(void)
133 efi_set_pgd(current
->active_mm
);