blob: 922cfb813109a3c14a88a0bb054a09534e813ec9 [file] [log] [blame]
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +01001/*
2 * Extensible Firmware Interface
3 *
4 * Based on Extensible Firmware Interface Specification version 2.4
5 *
6 * Copyright (C) 2013, 2014 Linaro Ltd.
7 *
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.
11 *
12 */
13
Ard Biesheuvelbb817be2017-06-02 13:52:07 +000014#include <linux/dmi.h>
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +010015#include <linux/efi.h>
Ard Biesheuvelf7d92482015-11-30 13:28:19 +010016#include <linux/io.h>
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +010017#include <linux/memblock.h>
18#include <linux/mm_types.h>
19#include <linux/preempt.h>
20#include <linux/rbtree.h>
21#include <linux/rwsem.h>
22#include <linux/sched.h>
23#include <linux/slab.h>
24#include <linux/spinlock.h>
25
26#include <asm/cacheflush.h>
27#include <asm/efi.h>
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +010028#include <asm/mmu.h>
Ard Biesheuvelf7d92482015-11-30 13:28:19 +010029#include <asm/pgalloc.h>
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +010030#include <asm/pgtable.h>
31
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +010032extern u64 efi_system_table;
33
Laura Abbott4ddb9bf2016-10-27 09:27:31 -070034#ifdef CONFIG_ARM64_PTDUMP_DEBUGFS
Ard Biesheuvel9d804482016-08-16 14:13:21 +020035#include <asm/ptdump.h>
36
37static struct ptdump_info efi_ptdump_info = {
38 .mm = &efi_mm,
39 .markers = (struct addr_marker[]){
40 { 0, "UEFI runtime start" },
41 { TASK_SIZE_64, "UEFI runtime end" }
42 },
43 .base_addr = 0,
44};
45
46static int __init ptdump_init(void)
47{
Mark Rutland6b31a2f2018-03-08 08:00:09 +000048 if (!efi_enabled(EFI_RUNTIME_SERVICES))
49 return 0;
50
Laura Abbott4ddb9bf2016-10-27 09:27:31 -070051 return ptdump_debugfs_register(&efi_ptdump_info, "efi_page_tables");
Ard Biesheuvel9d804482016-08-16 14:13:21 +020052}
53device_initcall(ptdump_init);
54
55#endif
56
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +010057static bool __init efi_virtmap_init(void)
58{
59 efi_memory_desc_t *md;
Ard Biesheuvel14c43be2016-04-25 21:06:34 +010060 bool systab_found;
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +010061
Ard Biesheuvelf7d92482015-11-30 13:28:19 +010062 efi_mm.pgd = pgd_alloc(&efi_mm);
Ard Biesheuveld1eb9812017-03-01 19:05:54 +000063 mm_init_cpumask(&efi_mm);
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +010064 init_new_context(NULL, &efi_mm);
65
Ard Biesheuvel14c43be2016-04-25 21:06:34 +010066 systab_found = false;
Matt Fleming78ce2482016-04-25 21:06:38 +010067 for_each_efi_memory_desc(md) {
Ard Biesheuvelf7d92482015-11-30 13:28:19 +010068 phys_addr_t phys = md->phys_addr;
69 int ret;
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +010070
71 if (!(md->attribute & EFI_MEMORY_RUNTIME))
72 continue;
73 if (md->virt_addr == 0)
74 return false;
75
Ard Biesheuvelf7d92482015-11-30 13:28:19 +010076 ret = efi_create_mapping(&efi_mm, md);
Ard Biesheuvel1832e6412018-03-08 08:00:11 +000077 if (ret) {
Ard Biesheuvelf7d92482015-11-30 13:28:19 +010078 pr_warn(" EFI remap %pa: failed to create mapping (%d)\n",
79 &phys, ret);
80 return false;
81 }
Ard Biesheuvel14c43be2016-04-25 21:06:34 +010082 /*
83 * If this entry covers the address of the UEFI system table,
84 * calculate and record its virtual address.
85 */
86 if (efi_system_table >= phys &&
87 efi_system_table < phys + (md->num_pages * EFI_PAGE_SIZE)) {
88 efi.systab = (void *)(unsigned long)(efi_system_table -
89 phys + md->virt_addr);
90 systab_found = true;
91 }
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +010092 }
Ard Biesheuvel789957e2016-04-25 21:06:46 +010093 if (!systab_found) {
Ard Biesheuvel14c43be2016-04-25 21:06:34 +010094 pr_err("No virtual mapping found for the UEFI System Table\n");
Ard Biesheuvel789957e2016-04-25 21:06:46 +010095 return false;
96 }
97
98 if (efi_memattr_apply_permissions(&efi_mm, efi_set_mapping_permissions))
99 return false;
100
101 return true;
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +0100102}
103
104/*
105 * Enable the UEFI Runtime Services if all prerequisites are in place, i.e.,
106 * non-early mapping of the UEFI system table and virtual mappings for all
107 * EFI_MEMORY_RUNTIME regions.
108 */
Ard Biesheuvelf7d92482015-11-30 13:28:19 +0100109static int __init arm_enable_runtime_services(void)
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +0100110{
111 u64 mapsize;
112
Ard Biesheuvel3ea86492018-07-23 10:57:30 +0900113 if (!efi_enabled(EFI_BOOT) || !efi_enabled(EFI_MEMMAP)) {
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +0100114 pr_info("EFI services will not be available.\n");
115 return 0;
116 }
117
Ard Biesheuvel3ea86492018-07-23 10:57:30 +0900118 efi_memmap_unmap();
119
AKASHI Takahiro20d12cf2018-07-23 10:57:31 +0900120 mapsize = efi.memmap.desc_size * efi.memmap.nr_map;
121
122 if (efi_memmap_init_late(efi.memmap.phys_map, mapsize)) {
123 pr_err("Failed to remap EFI memory map\n");
124 return 0;
125 }
126
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +0100127 if (efi_runtime_disabled()) {
128 pr_info("EFI runtime services will be disabled.\n");
129 return 0;
130 }
131
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800132 if (efi_enabled(EFI_RUNTIME_SERVICES)) {
133 pr_info("EFI runtime services access via paravirt.\n");
134 return 0;
135 }
136
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +0100137 pr_info("Remapping and enabling EFI services.\n");
138
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +0100139 if (!efi_virtmap_init()) {
Ard Biesheuvel14c43be2016-04-25 21:06:34 +0100140 pr_err("UEFI virtual mapping missing or invalid -- runtime services will not be available\n");
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +0100141 return -ENOMEM;
142 }
143
144 /* Set up runtime services function pointers */
145 efi_native_runtime_setup();
146 set_bit(EFI_RUNTIME_SERVICES, &efi.flags);
147
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +0100148 return 0;
149}
Ard Biesheuvelf7d92482015-11-30 13:28:19 +0100150early_initcall(arm_enable_runtime_services);
Ard Biesheuvele5bc22a2015-11-30 13:28:18 +0100151
152void efi_virtmap_load(void)
153{
154 preempt_disable();
155 efi_set_pgd(&efi_mm);
156}
157
158void efi_virtmap_unload(void)
159{
160 efi_set_pgd(current->active_mm);
161 preempt_enable();
162}
Ard Biesheuvelbb817be2017-06-02 13:52:07 +0000163
164
165static int __init arm_dmi_init(void)
166{
167 /*
168 * On arm64/ARM, DMI depends on UEFI, and dmi_scan_machine() needs to
169 * be called early because dmi_id_init(), which is an arch_initcall
170 * itself, depends on dmi_scan_machine() having been called already.
171 */
172 dmi_scan_machine();
173 if (dmi_available)
174 dmi_set_dump_stack_arch_desc();
175 return 0;
176}
177core_initcall(arm_dmi_init);