blob: f70febf680c392b37217ce5e6f8c8c4301234869 [file] [log] [blame]
Tom Gundersena9499fa2013-02-08 15:37:06 +00001/*
2 * efi.c - EFI subsystem
3 *
4 * Copyright (C) 2001,2003,2004 Dell <Matt_Domsch@dell.com>
5 * Copyright (C) 2004 Intel Corporation <matthew.e.tolentino@intel.com>
6 * Copyright (C) 2013 Tom Gundersen <teg@jklm.no>
7 *
8 * This code registers /sys/firmware/efi{,/efivars} when EFI is supported,
9 * allowing the efivarfs to be mounted or the efivars module to be loaded.
10 * The existance of /sys/firmware/efi may also be used by userspace to
11 * determine that the system supports EFI.
12 *
13 * This file is released under the GPLv2.
14 */
15
Leif Lindholm272686b2013-09-05 11:34:54 +010016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Tom Gundersena9499fa2013-02-08 15:37:06 +000018#include <linux/kobject.h>
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/device.h>
22#include <linux/efi.h>
Mark Salter0302f712013-12-30 12:12:12 -050023#include <linux/of.h>
24#include <linux/of_fdt.h>
Leif Lindholm272686b2013-09-05 11:34:54 +010025#include <linux/io.h>
Ard Biesheuvel63625982016-11-12 21:32:31 +000026#include <linux/kexec.h>
Lee, Chun-Yi28d54022014-07-09 18:39:29 +080027#include <linux/platform_device.h>
Ard Biesheuvel63625982016-11-12 21:32:31 +000028#include <linux/random.h>
29#include <linux/reboot.h>
Octavian Purdila475fb4e2016-07-08 19:13:12 +030030#include <linux/slab.h>
31#include <linux/acpi.h>
32#include <linux/ucs2_string.h>
Matt Fleming816e7612016-02-29 21:22:52 +000033#include <linux/memblock.h>
Leif Lindholm272686b2013-09-05 11:34:54 +010034
Ard Biesheuvel0f7f2f02016-01-12 14:22:46 +010035#include <asm/early_ioremap.h>
Ard Biesheuvelf7d92482015-11-30 13:28:19 +010036
Leif Lindholm272686b2013-09-05 11:34:54 +010037struct efi __read_mostly efi = {
Ard Biesheuvelbf924862015-09-09 10:08:15 +020038 .mps = EFI_INVALID_TABLE_ADDR,
39 .acpi = EFI_INVALID_TABLE_ADDR,
40 .acpi20 = EFI_INVALID_TABLE_ADDR,
41 .smbios = EFI_INVALID_TABLE_ADDR,
42 .smbios3 = EFI_INVALID_TABLE_ADDR,
43 .sal_systab = EFI_INVALID_TABLE_ADDR,
44 .boot_info = EFI_INVALID_TABLE_ADDR,
45 .hcdp = EFI_INVALID_TABLE_ADDR,
46 .uga = EFI_INVALID_TABLE_ADDR,
47 .uv_systab = EFI_INVALID_TABLE_ADDR,
48 .fw_vendor = EFI_INVALID_TABLE_ADDR,
49 .runtime = EFI_INVALID_TABLE_ADDR,
50 .config_table = EFI_INVALID_TABLE_ADDR,
51 .esrt = EFI_INVALID_TABLE_ADDR,
52 .properties_table = EFI_INVALID_TABLE_ADDR,
Ard Biesheuvela604af02016-04-25 21:06:44 +010053 .mem_attr_table = EFI_INVALID_TABLE_ADDR,
Ard Biesheuvel63625982016-11-12 21:32:31 +000054 .rng_seed = EFI_INVALID_TABLE_ADDR,
Leif Lindholm272686b2013-09-05 11:34:54 +010055};
56EXPORT_SYMBOL(efi);
Tom Gundersena9499fa2013-02-08 15:37:06 +000057
Tom Lendackya19d66c2017-07-17 16:10:13 -050058static unsigned long *efi_tables[] = {
59 &efi.mps,
60 &efi.acpi,
61 &efi.acpi20,
62 &efi.smbios,
63 &efi.smbios3,
64 &efi.sal_systab,
65 &efi.boot_info,
66 &efi.hcdp,
67 &efi.uga,
68 &efi.uv_systab,
69 &efi.fw_vendor,
70 &efi.runtime,
71 &efi.config_table,
72 &efi.esrt,
73 &efi.properties_table,
74 &efi.mem_attr_table,
75};
76
Dave Youngb2e0a542014-08-14 17:15:26 +080077static bool disable_runtime;
78static int __init setup_noefi(char *arg)
79{
80 disable_runtime = true;
81 return 0;
82}
83early_param("noefi", setup_noefi);
84
85bool efi_runtime_disabled(void)
86{
87 return disable_runtime;
88}
89
Dave Young5ae36832014-08-14 17:15:28 +080090static int __init parse_efi_cmdline(char *str)
91{
Ricardo Neri9115c752015-07-15 19:36:03 -070092 if (!str) {
93 pr_warn("need at least one option\n");
94 return -EINVAL;
95 }
96
Leif Lindholm12dd00e2015-08-26 14:24:56 +010097 if (parse_option_str(str, "debug"))
98 set_bit(EFI_DBG, &efi.flags);
99
Dave Young5ae36832014-08-14 17:15:28 +0800100 if (parse_option_str(str, "noruntime"))
101 disable_runtime = true;
102
103 return 0;
104}
105early_param("efi", parse_efi_cmdline);
106
Peter Jones0bb54902015-04-28 18:44:31 -0400107struct kobject *efi_kobj;
Tom Gundersena9499fa2013-02-08 15:37:06 +0000108
109/*
110 * Let's not leave out systab information that snuck into
111 * the efivars driver
112 */
113static ssize_t systab_show(struct kobject *kobj,
114 struct kobj_attribute *attr, char *buf)
115{
116 char *str = buf;
117
118 if (!kobj || !buf)
119 return -EINVAL;
120
121 if (efi.mps != EFI_INVALID_TABLE_ADDR)
122 str += sprintf(str, "MPS=0x%lx\n", efi.mps);
123 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
124 str += sprintf(str, "ACPI20=0x%lx\n", efi.acpi20);
125 if (efi.acpi != EFI_INVALID_TABLE_ADDR)
126 str += sprintf(str, "ACPI=0x%lx\n", efi.acpi);
Jean Delvareb119fe02015-04-30 15:23:05 +0200127 /*
128 * If both SMBIOS and SMBIOS3 entry points are implemented, the
129 * SMBIOS3 entry point shall be preferred, so we list it first to
130 * let applications stop parsing after the first match.
131 */
Ard Biesheuvele1ccbbc2014-10-14 16:34:47 +0200132 if (efi.smbios3 != EFI_INVALID_TABLE_ADDR)
133 str += sprintf(str, "SMBIOS3=0x%lx\n", efi.smbios3);
Jean Delvareb119fe02015-04-30 15:23:05 +0200134 if (efi.smbios != EFI_INVALID_TABLE_ADDR)
135 str += sprintf(str, "SMBIOS=0x%lx\n", efi.smbios);
Tom Gundersena9499fa2013-02-08 15:37:06 +0000136 if (efi.hcdp != EFI_INVALID_TABLE_ADDR)
137 str += sprintf(str, "HCDP=0x%lx\n", efi.hcdp);
138 if (efi.boot_info != EFI_INVALID_TABLE_ADDR)
139 str += sprintf(str, "BOOTINFO=0x%lx\n", efi.boot_info);
140 if (efi.uga != EFI_INVALID_TABLE_ADDR)
141 str += sprintf(str, "UGA=0x%lx\n", efi.uga);
142
143 return str - buf;
144}
145
146static struct kobj_attribute efi_attr_systab =
147 __ATTR(systab, 0400, systab_show, NULL);
148
Dave Younga0998eb2013-12-20 18:02:17 +0800149#define EFI_FIELD(var) efi.var
150
151#define EFI_ATTR_SHOW(name) \
152static ssize_t name##_show(struct kobject *kobj, \
153 struct kobj_attribute *attr, char *buf) \
154{ \
155 return sprintf(buf, "0x%lx\n", EFI_FIELD(name)); \
156}
157
158EFI_ATTR_SHOW(fw_vendor);
159EFI_ATTR_SHOW(runtime);
160EFI_ATTR_SHOW(config_table);
161
Steve McIntyre2859dff2015-01-09 15:29:53 +0000162static ssize_t fw_platform_size_show(struct kobject *kobj,
163 struct kobj_attribute *attr, char *buf)
164{
165 return sprintf(buf, "%d\n", efi_enabled(EFI_64BIT) ? 64 : 32);
166}
167
Dave Younga0998eb2013-12-20 18:02:17 +0800168static struct kobj_attribute efi_attr_fw_vendor = __ATTR_RO(fw_vendor);
169static struct kobj_attribute efi_attr_runtime = __ATTR_RO(runtime);
170static struct kobj_attribute efi_attr_config_table = __ATTR_RO(config_table);
Steve McIntyre2859dff2015-01-09 15:29:53 +0000171static struct kobj_attribute efi_attr_fw_platform_size =
172 __ATTR_RO(fw_platform_size);
Dave Younga0998eb2013-12-20 18:02:17 +0800173
Tom Gundersena9499fa2013-02-08 15:37:06 +0000174static struct attribute *efi_subsys_attrs[] = {
175 &efi_attr_systab.attr,
Dave Younga0998eb2013-12-20 18:02:17 +0800176 &efi_attr_fw_vendor.attr,
177 &efi_attr_runtime.attr,
178 &efi_attr_config_table.attr,
Steve McIntyre2859dff2015-01-09 15:29:53 +0000179 &efi_attr_fw_platform_size.attr,
Dave Younga0998eb2013-12-20 18:02:17 +0800180 NULL,
Tom Gundersena9499fa2013-02-08 15:37:06 +0000181};
182
Dave Younga0998eb2013-12-20 18:02:17 +0800183static umode_t efi_attr_is_visible(struct kobject *kobj,
184 struct attribute *attr, int n)
185{
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200186 if (attr == &efi_attr_fw_vendor.attr) {
187 if (efi_enabled(EFI_PARAVIRT) ||
188 efi.fw_vendor == EFI_INVALID_TABLE_ADDR)
189 return 0;
190 } else if (attr == &efi_attr_runtime.attr) {
191 if (efi.runtime == EFI_INVALID_TABLE_ADDR)
192 return 0;
193 } else if (attr == &efi_attr_config_table.attr) {
194 if (efi.config_table == EFI_INVALID_TABLE_ADDR)
195 return 0;
196 }
Dave Younga0998eb2013-12-20 18:02:17 +0800197
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200198 return attr->mode;
Dave Younga0998eb2013-12-20 18:02:17 +0800199}
200
Arvind Yadav3ad6bd72017-08-18 20:49:46 +0100201static const struct attribute_group efi_subsys_attr_group = {
Tom Gundersena9499fa2013-02-08 15:37:06 +0000202 .attrs = efi_subsys_attrs,
Dave Younga0998eb2013-12-20 18:02:17 +0800203 .is_visible = efi_attr_is_visible,
Tom Gundersena9499fa2013-02-08 15:37:06 +0000204};
205
206static struct efivars generic_efivars;
207static struct efivar_operations generic_ops;
208
209static int generic_ops_register(void)
210{
211 generic_ops.get_variable = efi.get_variable;
212 generic_ops.set_variable = efi.set_variable;
Ard Biesheuvel9c6672a2016-02-01 22:06:55 +0000213 generic_ops.set_variable_nonblocking = efi.set_variable_nonblocking;
Tom Gundersena9499fa2013-02-08 15:37:06 +0000214 generic_ops.get_next_variable = efi.get_next_variable;
Matt Fleminga614e192013-04-30 11:30:24 +0100215 generic_ops.query_variable_store = efi_query_variable_store;
Tom Gundersena9499fa2013-02-08 15:37:06 +0000216
217 return efivars_register(&generic_efivars, &generic_ops, efi_kobj);
218}
219
220static void generic_ops_unregister(void)
221{
222 efivars_unregister(&generic_efivars);
223}
224
Octavian Purdila475fb4e2016-07-08 19:13:12 +0300225#if IS_ENABLED(CONFIG_ACPI)
226#define EFIVAR_SSDT_NAME_MAX 16
227static char efivar_ssdt[EFIVAR_SSDT_NAME_MAX] __initdata;
228static int __init efivar_ssdt_setup(char *str)
229{
230 if (strlen(str) < sizeof(efivar_ssdt))
231 memcpy(efivar_ssdt, str, strlen(str));
232 else
233 pr_warn("efivar_ssdt: name too long: %s\n", str);
234 return 0;
235}
236__setup("efivar_ssdt=", efivar_ssdt_setup);
237
238static __init int efivar_ssdt_iter(efi_char16_t *name, efi_guid_t vendor,
239 unsigned long name_size, void *data)
240{
241 struct efivar_entry *entry;
242 struct list_head *list = data;
243 char utf8_name[EFIVAR_SSDT_NAME_MAX];
244 int limit = min_t(unsigned long, EFIVAR_SSDT_NAME_MAX, name_size);
245
246 ucs2_as_utf8(utf8_name, name, limit - 1);
247 if (strncmp(utf8_name, efivar_ssdt, limit) != 0)
248 return 0;
249
250 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
251 if (!entry)
252 return 0;
253
254 memcpy(entry->var.VariableName, name, name_size);
255 memcpy(&entry->var.VendorGuid, &vendor, sizeof(efi_guid_t));
256
257 efivar_entry_add(entry, list);
258
259 return 0;
260}
261
262static __init int efivar_ssdt_load(void)
263{
264 LIST_HEAD(entries);
265 struct efivar_entry *entry, *aux;
266 unsigned long size;
267 void *data;
268 int ret;
269
270 ret = efivar_init(efivar_ssdt_iter, &entries, true, &entries);
271
272 list_for_each_entry_safe(entry, aux, &entries, list) {
273 pr_info("loading SSDT from variable %s-%pUl\n", efivar_ssdt,
274 &entry->var.VendorGuid);
275
276 list_del(&entry->list);
277
278 ret = efivar_entry_size(entry, &size);
279 if (ret) {
280 pr_err("failed to get var size\n");
281 goto free_entry;
282 }
283
284 data = kmalloc(size, GFP_KERNEL);
Dan Carpentera75dcb52016-10-18 15:33:18 +0100285 if (!data) {
286 ret = -ENOMEM;
Octavian Purdila475fb4e2016-07-08 19:13:12 +0300287 goto free_entry;
Dan Carpentera75dcb52016-10-18 15:33:18 +0100288 }
Octavian Purdila475fb4e2016-07-08 19:13:12 +0300289
290 ret = efivar_entry_get(entry, NULL, &size, data);
291 if (ret) {
292 pr_err("failed to get var data\n");
293 goto free_data;
294 }
295
296 ret = acpi_load_table(data);
297 if (ret) {
298 pr_err("failed to load table: %d\n", ret);
299 goto free_data;
300 }
301
302 goto free_entry;
303
304free_data:
305 kfree(data);
306
307free_entry:
308 kfree(entry);
309 }
310
311 return ret;
312}
313#else
314static inline int efivar_ssdt_load(void) { return 0; }
315#endif
316
Tom Gundersena9499fa2013-02-08 15:37:06 +0000317/*
318 * We register the efi subsystem with the firmware subsystem and the
319 * efivars subsystem with the efi subsystem, if the system was booted with
320 * EFI.
321 */
322static int __init efisubsys_init(void)
323{
324 int error;
325
326 if (!efi_enabled(EFI_BOOT))
327 return 0;
328
329 /* We register the efi directory at /sys/firmware/efi */
330 efi_kobj = kobject_create_and_add("efi", firmware_kobj);
331 if (!efi_kobj) {
332 pr_err("efi: Firmware registration failed.\n");
333 return -ENOMEM;
334 }
335
336 error = generic_ops_register();
337 if (error)
338 goto err_put;
339
Octavian Purdila475fb4e2016-07-08 19:13:12 +0300340 if (efi_enabled(EFI_RUNTIME_SERVICES))
341 efivar_ssdt_load();
342
Tom Gundersena9499fa2013-02-08 15:37:06 +0000343 error = sysfs_create_group(efi_kobj, &efi_subsys_attr_group);
344 if (error) {
345 pr_err("efi: Sysfs attribute export failed with error %d.\n",
346 error);
347 goto err_unregister;
348 }
349
Dave Young926172d2013-12-20 18:02:18 +0800350 error = efi_runtime_map_init(efi_kobj);
351 if (error)
352 goto err_remove_group;
353
Tom Gundersena9499fa2013-02-08 15:37:06 +0000354 /* and the standard mountpoint for efivarfs */
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500355 error = sysfs_create_mount_point(efi_kobj, "efivars");
356 if (error) {
Tom Gundersena9499fa2013-02-08 15:37:06 +0000357 pr_err("efivars: Subsystem registration failed.\n");
Tom Gundersena9499fa2013-02-08 15:37:06 +0000358 goto err_remove_group;
359 }
360
361 return 0;
362
363err_remove_group:
364 sysfs_remove_group(efi_kobj, &efi_subsys_attr_group);
365err_unregister:
366 generic_ops_unregister();
367err_put:
368 kobject_put(efi_kobj);
369 return error;
370}
371
372subsys_initcall(efisubsys_init);
Leif Lindholm272686b2013-09-05 11:34:54 +0100373
Peter Jones0bb54902015-04-28 18:44:31 -0400374/*
375 * Find the efi memory descriptor for a given physical address. Given a
Matt Flemingdca0f972016-02-27 15:52:50 +0000376 * physical address, determine if it exists within an EFI Memory Map entry,
Peter Jones0bb54902015-04-28 18:44:31 -0400377 * and if so, populate the supplied memory descriptor with the appropriate
378 * data.
379 */
380int __init efi_mem_desc_lookup(u64 phys_addr, efi_memory_desc_t *out_md)
381{
Matt Flemingdca0f972016-02-27 15:52:50 +0000382 efi_memory_desc_t *md;
Peter Jones0bb54902015-04-28 18:44:31 -0400383
384 if (!efi_enabled(EFI_MEMMAP)) {
385 pr_err_once("EFI_MEMMAP is not enabled.\n");
386 return -EINVAL;
387 }
388
Peter Jones0bb54902015-04-28 18:44:31 -0400389 if (!out_md) {
390 pr_err_once("out_md is null.\n");
391 return -EINVAL;
392 }
Peter Jones0bb54902015-04-28 18:44:31 -0400393
Matt Flemingdca0f972016-02-27 15:52:50 +0000394 for_each_efi_memory_desc(md) {
Peter Jones0bb54902015-04-28 18:44:31 -0400395 u64 size;
396 u64 end;
397
Peter Jones0bb54902015-04-28 18:44:31 -0400398 if (!(md->attribute & EFI_MEMORY_RUNTIME) &&
399 md->type != EFI_BOOT_SERVICES_DATA &&
400 md->type != EFI_RUNTIME_SERVICES_DATA) {
Peter Jones0bb54902015-04-28 18:44:31 -0400401 continue;
402 }
403
404 size = md->num_pages << EFI_PAGE_SHIFT;
405 end = md->phys_addr + size;
406 if (phys_addr >= md->phys_addr && phys_addr < end) {
407 memcpy(out_md, md, sizeof(*out_md));
Peter Jones0bb54902015-04-28 18:44:31 -0400408 return 0;
409 }
Peter Jones0bb54902015-04-28 18:44:31 -0400410 }
Peter Jones0bb54902015-04-28 18:44:31 -0400411 return -ENOENT;
412}
413
414/*
415 * Calculate the highest address of an efi memory descriptor.
416 */
417u64 __init efi_mem_desc_end(efi_memory_desc_t *md)
418{
419 u64 size = md->num_pages << EFI_PAGE_SHIFT;
420 u64 end = md->phys_addr + size;
421 return end;
422}
Leif Lindholm272686b2013-09-05 11:34:54 +0100423
Matt Fleming816e7612016-02-29 21:22:52 +0000424void __init __weak efi_arch_mem_reserve(phys_addr_t addr, u64 size) {}
425
426/**
427 * efi_mem_reserve - Reserve an EFI memory region
428 * @addr: Physical address to reserve
429 * @size: Size of reservation
430 *
431 * Mark a region as reserved from general kernel allocation and
432 * prevent it being released by efi_free_boot_services().
433 *
434 * This function should be called drivers once they've parsed EFI
435 * configuration tables to figure out where their data lives, e.g.
436 * efi_esrt_init().
437 */
438void __init efi_mem_reserve(phys_addr_t addr, u64 size)
439{
440 if (!memblock_is_region_reserved(addr, size))
441 memblock_reserve(addr, size);
442
443 /*
444 * Some architectures (x86) reserve all boot services ranges
445 * until efi_free_boot_services() because of buggy firmware
446 * implementations. This means the above memblock_reserve() is
447 * superfluous on x86 and instead what it needs to do is
448 * ensure the @start, @size is not freed.
449 */
450 efi_arch_mem_reserve(addr, size);
451}
452
Leif Lindholm272686b2013-09-05 11:34:54 +0100453static __initdata efi_config_table_type_t common_tables[] = {
454 {ACPI_20_TABLE_GUID, "ACPI 2.0", &efi.acpi20},
455 {ACPI_TABLE_GUID, "ACPI", &efi.acpi},
456 {HCDP_TABLE_GUID, "HCDP", &efi.hcdp},
457 {MPS_TABLE_GUID, "MPS", &efi.mps},
458 {SAL_SYSTEM_TABLE_GUID, "SALsystab", &efi.sal_systab},
459 {SMBIOS_TABLE_GUID, "SMBIOS", &efi.smbios},
Ard Biesheuvele1ccbbc2014-10-14 16:34:47 +0200460 {SMBIOS3_TABLE_GUID, "SMBIOS 3.0", &efi.smbios3},
Leif Lindholm272686b2013-09-05 11:34:54 +0100461 {UGA_IO_PROTOCOL_GUID, "UGA", &efi.uga},
Peter Jones0bb54902015-04-28 18:44:31 -0400462 {EFI_SYSTEM_RESOURCE_TABLE_GUID, "ESRT", &efi.esrt},
Ard Biesheuvelbf924862015-09-09 10:08:15 +0200463 {EFI_PROPERTIES_TABLE_GUID, "PROP", &efi.properties_table},
Ard Biesheuvela604af02016-04-25 21:06:44 +0100464 {EFI_MEMORY_ATTRIBUTES_TABLE_GUID, "MEMATTR", &efi.mem_attr_table},
Ard Biesheuvel63625982016-11-12 21:32:31 +0000465 {LINUX_EFI_RANDOM_SEED_TABLE_GUID, "RNG", &efi.rng_seed},
Daeseok Youn69e60842014-02-13 17:16:36 +0900466 {NULL_GUID, NULL, NULL},
Leif Lindholm272686b2013-09-05 11:34:54 +0100467};
468
469static __init int match_config_table(efi_guid_t *guid,
470 unsigned long table,
471 efi_config_table_type_t *table_types)
472{
Leif Lindholm272686b2013-09-05 11:34:54 +0100473 int i;
474
475 if (table_types) {
Leif Lindholm272686b2013-09-05 11:34:54 +0100476 for (i = 0; efi_guidcmp(table_types[i].guid, NULL_GUID); i++) {
Leif Lindholm272686b2013-09-05 11:34:54 +0100477 if (!efi_guidcmp(*guid, table_types[i].guid)) {
478 *(table_types[i].ptr) = table;
Ard Biesheuvel801820b2016-04-25 21:06:53 +0100479 if (table_types[i].name)
480 pr_cont(" %s=0x%lx ",
481 table_types[i].name, table);
Leif Lindholm272686b2013-09-05 11:34:54 +0100482 return 1;
483 }
484 }
485 }
486
487 return 0;
488}
489
Ard Biesheuvel7bb68412014-10-18 15:04:15 +0200490int __init efi_config_parse_tables(void *config_tables, int count, int sz,
491 efi_config_table_type_t *arch_tables)
492{
493 void *tablep;
494 int i;
495
496 tablep = config_tables;
497 pr_info("");
498 for (i = 0; i < count; i++) {
499 efi_guid_t guid;
500 unsigned long table;
501
502 if (efi_enabled(EFI_64BIT)) {
503 u64 table64;
504 guid = ((efi_config_table_64_t *)tablep)->guid;
505 table64 = ((efi_config_table_64_t *)tablep)->table;
506 table = table64;
507#ifndef CONFIG_64BIT
508 if (table64 >> 32) {
509 pr_cont("\n");
510 pr_err("Table located above 4GB, disabling EFI.\n");
511 return -EINVAL;
512 }
513#endif
514 } else {
515 guid = ((efi_config_table_32_t *)tablep)->guid;
516 table = ((efi_config_table_32_t *)tablep)->table;
517 }
518
519 if (!match_config_table(&guid, table, common_tables))
520 match_config_table(&guid, table, arch_tables);
521
522 tablep += sz;
523 }
524 pr_cont("\n");
525 set_bit(EFI_CONFIG_TABLES, &efi.flags);
Ard Biesheuvela1041712015-09-23 07:29:34 -0700526
Ard Biesheuvel63625982016-11-12 21:32:31 +0000527 if (efi.rng_seed != EFI_INVALID_TABLE_ADDR) {
528 struct linux_efi_random_seed *seed;
529 u32 size = 0;
530
531 seed = early_memremap(efi.rng_seed, sizeof(*seed));
532 if (seed != NULL) {
533 size = seed->size;
534 early_memunmap(seed, sizeof(*seed));
535 } else {
536 pr_err("Could not map UEFI random seed!\n");
537 }
538 if (size > 0) {
539 seed = early_memremap(efi.rng_seed,
540 sizeof(*seed) + size);
541 if (seed != NULL) {
542 add_device_randomness(seed->bits, seed->size);
543 early_memunmap(seed, sizeof(*seed) + size);
Ard Biesheuvelc2ceb5f2017-08-25 16:50:16 +0100544 pr_notice("seeding entropy pool\n");
Ard Biesheuvel63625982016-11-12 21:32:31 +0000545 } else {
546 pr_err("Could not map UEFI random seed!\n");
547 }
548 }
549 }
550
Daniel Kiper457ea3f2017-06-22 12:51:36 +0200551 if (efi_enabled(EFI_MEMMAP))
552 efi_memattr_init();
Sai Praneeth3a6b6c62017-01-31 13:21:35 +0000553
Ard Biesheuvela1041712015-09-23 07:29:34 -0700554 /* Parse the EFI Properties table if it exists */
555 if (efi.properties_table != EFI_INVALID_TABLE_ADDR) {
556 efi_properties_table_t *tbl;
557
558 tbl = early_memremap(efi.properties_table, sizeof(*tbl));
559 if (tbl == NULL) {
560 pr_err("Could not map Properties table!\n");
561 return -ENOMEM;
562 }
563
564 if (tbl->memory_protection_attribute &
565 EFI_PROPERTIES_RUNTIME_MEMORY_PROTECTION_NON_EXECUTABLE_PE_DATA)
566 set_bit(EFI_NX_PE_DATA, &efi.flags);
567
568 early_memunmap(tbl, sizeof(*tbl));
569 }
570
Ard Biesheuvel7bb68412014-10-18 15:04:15 +0200571 return 0;
572}
573
Leif Lindholm272686b2013-09-05 11:34:54 +0100574int __init efi_config_init(efi_config_table_type_t *arch_tables)
575{
Ard Biesheuvel7bb68412014-10-18 15:04:15 +0200576 void *config_tables;
577 int sz, ret;
Leif Lindholm272686b2013-09-05 11:34:54 +0100578
579 if (efi_enabled(EFI_64BIT))
580 sz = sizeof(efi_config_table_64_t);
581 else
582 sz = sizeof(efi_config_table_32_t);
583
584 /*
585 * Let's see what config tables the firmware passed to us.
586 */
587 config_tables = early_memremap(efi.systab->tables,
588 efi.systab->nr_tables * sz);
589 if (config_tables == NULL) {
590 pr_err("Could not map Configuration table!\n");
591 return -ENOMEM;
592 }
593
Ard Biesheuvel7bb68412014-10-18 15:04:15 +0200594 ret = efi_config_parse_tables(config_tables, efi.systab->nr_tables, sz,
595 arch_tables);
Leif Lindholm272686b2013-09-05 11:34:54 +0100596
Daniel Kiperabc93f82014-06-30 19:52:56 +0200597 early_memunmap(config_tables, efi.systab->nr_tables * sz);
Ard Biesheuvel7bb68412014-10-18 15:04:15 +0200598 return ret;
Leif Lindholm272686b2013-09-05 11:34:54 +0100599}
Mark Salter0302f712013-12-30 12:12:12 -0500600
Lee, Chun-Yi28d54022014-07-09 18:39:29 +0800601#ifdef CONFIG_EFI_VARS_MODULE
602static int __init efi_load_efivars(void)
603{
604 struct platform_device *pdev;
605
606 if (!efi_enabled(EFI_RUNTIME_SERVICES))
607 return 0;
608
609 pdev = platform_device_register_simple("efivars", 0, NULL, 0);
610 return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
611}
612device_initcall(efi_load_efivars);
613#endif
614
Mark Salter0302f712013-12-30 12:12:12 -0500615#ifdef CONFIG_EFI_PARAMS_FROM_FDT
616
617#define UEFI_PARAM(name, prop, field) \
618 { \
619 { name }, \
620 { prop }, \
621 offsetof(struct efi_fdt_params, field), \
622 FIELD_SIZEOF(struct efi_fdt_params, field) \
623 }
624
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800625struct params {
Mark Salter0302f712013-12-30 12:12:12 -0500626 const char name[32];
627 const char propname[32];
628 int offset;
629 int size;
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800630};
631
632static __initdata struct params fdt_params[] = {
Mark Salter0302f712013-12-30 12:12:12 -0500633 UEFI_PARAM("System Table", "linux,uefi-system-table", system_table),
634 UEFI_PARAM("MemMap Address", "linux,uefi-mmap-start", mmap),
635 UEFI_PARAM("MemMap Size", "linux,uefi-mmap-size", mmap_size),
636 UEFI_PARAM("MemMap Desc. Size", "linux,uefi-mmap-desc-size", desc_size),
637 UEFI_PARAM("MemMap Desc. Version", "linux,uefi-mmap-desc-ver", desc_ver)
638};
639
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800640static __initdata struct params xen_fdt_params[] = {
641 UEFI_PARAM("System Table", "xen,uefi-system-table", system_table),
642 UEFI_PARAM("MemMap Address", "xen,uefi-mmap-start", mmap),
643 UEFI_PARAM("MemMap Size", "xen,uefi-mmap-size", mmap_size),
644 UEFI_PARAM("MemMap Desc. Size", "xen,uefi-mmap-desc-size", desc_size),
645 UEFI_PARAM("MemMap Desc. Version", "xen,uefi-mmap-desc-ver", desc_ver)
646};
647
648#define EFI_FDT_PARAMS_SIZE ARRAY_SIZE(fdt_params)
649
650static __initdata struct {
651 const char *uname;
652 const char *subnode;
653 struct params *params;
654} dt_params[] = {
655 { "hypervisor", "uefi", xen_fdt_params },
656 { "chosen", NULL, fdt_params },
657};
658
Mark Salter0302f712013-12-30 12:12:12 -0500659struct param_info {
Catalin Marinas29e24352014-07-08 16:54:18 +0100660 int found;
Mark Salter0302f712013-12-30 12:12:12 -0500661 void *params;
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800662 const char *missing;
Mark Salter0302f712013-12-30 12:12:12 -0500663};
664
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800665static int __init __find_uefi_params(unsigned long node,
666 struct param_info *info,
667 struct params *params)
Mark Salter0302f712013-12-30 12:12:12 -0500668{
Catalin Marinas6fb8cc82014-06-02 11:31:06 +0100669 const void *prop;
670 void *dest;
Mark Salter0302f712013-12-30 12:12:12 -0500671 u64 val;
Catalin Marinas6fb8cc82014-06-02 11:31:06 +0100672 int i, len;
Mark Salter0302f712013-12-30 12:12:12 -0500673
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800674 for (i = 0; i < EFI_FDT_PARAMS_SIZE; i++) {
675 prop = of_get_flat_dt_prop(node, params[i].propname, &len);
676 if (!prop) {
677 info->missing = params[i].name;
Mark Salter0302f712013-12-30 12:12:12 -0500678 return 0;
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800679 }
680
681 dest = info->params + params[i].offset;
Catalin Marinas29e24352014-07-08 16:54:18 +0100682 info->found++;
Mark Salter0302f712013-12-30 12:12:12 -0500683
684 val = of_read_number(prop, len / sizeof(u32));
685
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800686 if (params[i].size == sizeof(u32))
Mark Salter0302f712013-12-30 12:12:12 -0500687 *(u32 *)dest = val;
688 else
689 *(u64 *)dest = val;
690
Leif Lindholm7968c0e2015-08-26 14:24:58 +0100691 if (efi_enabled(EFI_DBG))
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800692 pr_info(" %s: 0x%0*llx\n", params[i].name,
693 params[i].size * 2, val);
Mark Salter0302f712013-12-30 12:12:12 -0500694 }
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800695
Mark Salter0302f712013-12-30 12:12:12 -0500696 return 1;
697}
698
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800699static int __init fdt_find_uefi_params(unsigned long node, const char *uname,
700 int depth, void *data)
701{
702 struct param_info *info = data;
703 int i;
704
705 for (i = 0; i < ARRAY_SIZE(dt_params); i++) {
706 const char *subnode = dt_params[i].subnode;
707
708 if (depth != 1 || strcmp(uname, dt_params[i].uname) != 0) {
709 info->missing = dt_params[i].params[0].name;
710 continue;
711 }
712
713 if (subnode) {
Andrzej Hajda4af9ed52016-08-30 12:41:37 +0200714 int err = of_get_flat_dt_subnode_by_name(node, subnode);
715
716 if (err < 0)
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800717 return 0;
Andrzej Hajda4af9ed52016-08-30 12:41:37 +0200718
719 node = err;
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800720 }
721
722 return __find_uefi_params(node, info, dt_params[i].params);
723 }
724
725 return 0;
726}
727
Leif Lindholm7968c0e2015-08-26 14:24:58 +0100728int __init efi_get_fdt_params(struct efi_fdt_params *params)
Mark Salter0302f712013-12-30 12:12:12 -0500729{
730 struct param_info info;
Catalin Marinas29e24352014-07-08 16:54:18 +0100731 int ret;
732
733 pr_info("Getting EFI parameters from FDT:\n");
Mark Salter0302f712013-12-30 12:12:12 -0500734
Catalin Marinas29e24352014-07-08 16:54:18 +0100735 info.found = 0;
Mark Salter0302f712013-12-30 12:12:12 -0500736 info.params = params;
737
Catalin Marinas29e24352014-07-08 16:54:18 +0100738 ret = of_scan_flat_dt(fdt_find_uefi_params, &info);
739 if (!info.found)
740 pr_info("UEFI not found.\n");
741 else if (!ret)
742 pr_err("Can't find '%s' in device tree!\n",
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800743 info.missing);
Catalin Marinas29e24352014-07-08 16:54:18 +0100744
745 return ret;
Mark Salter0302f712013-12-30 12:12:12 -0500746}
747#endif /* CONFIG_EFI_PARAMS_FROM_FDT */
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200748
749static __initdata char memory_type_name[][20] = {
750 "Reserved",
751 "Loader Code",
752 "Loader Data",
753 "Boot Code",
754 "Boot Data",
755 "Runtime Code",
756 "Runtime Data",
757 "Conventional Memory",
758 "Unusable Memory",
759 "ACPI Reclaim Memory",
760 "ACPI Memory NVS",
761 "Memory Mapped I/O",
762 "MMIO Port Space",
Robert Elliott35575e02016-02-01 22:07:07 +0000763 "PAL Code",
764 "Persistent Memory",
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200765};
766
767char * __init efi_md_typeattr_format(char *buf, size_t size,
768 const efi_memory_desc_t *md)
769{
770 char *pos;
771 int type_len;
772 u64 attr;
773
774 pos = buf;
775 if (md->type >= ARRAY_SIZE(memory_type_name))
776 type_len = snprintf(pos, size, "[type=%u", md->type);
777 else
778 type_len = snprintf(pos, size, "[%-*s",
779 (int)(sizeof(memory_type_name[0]) - 1),
780 memory_type_name[md->type]);
781 if (type_len >= size)
782 return buf;
783
784 pos += type_len;
785 size -= type_len;
786
787 attr = md->attribute;
788 if (attr & ~(EFI_MEMORY_UC | EFI_MEMORY_WC | EFI_MEMORY_WT |
Ard Biesheuvel87db73ae2015-08-07 09:36:54 +0100789 EFI_MEMORY_WB | EFI_MEMORY_UCE | EFI_MEMORY_RO |
790 EFI_MEMORY_WP | EFI_MEMORY_RP | EFI_MEMORY_XP |
Robert Elliottc016ca02016-02-01 22:07:06 +0000791 EFI_MEMORY_NV |
Taku Izumi8be44322015-08-27 02:11:19 +0900792 EFI_MEMORY_RUNTIME | EFI_MEMORY_MORE_RELIABLE))
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200793 snprintf(pos, size, "|attr=0x%016llx]",
794 (unsigned long long)attr);
795 else
Robert Elliottc016ca02016-02-01 22:07:06 +0000796 snprintf(pos, size,
797 "|%3s|%2s|%2s|%2s|%2s|%2s|%2s|%3s|%2s|%2s|%2s|%2s]",
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200798 attr & EFI_MEMORY_RUNTIME ? "RUN" : "",
Taku Izumi8be44322015-08-27 02:11:19 +0900799 attr & EFI_MEMORY_MORE_RELIABLE ? "MR" : "",
Robert Elliottc016ca02016-02-01 22:07:06 +0000800 attr & EFI_MEMORY_NV ? "NV" : "",
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200801 attr & EFI_MEMORY_XP ? "XP" : "",
802 attr & EFI_MEMORY_RP ? "RP" : "",
803 attr & EFI_MEMORY_WP ? "WP" : "",
Ard Biesheuvel87db73ae2015-08-07 09:36:54 +0100804 attr & EFI_MEMORY_RO ? "RO" : "",
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200805 attr & EFI_MEMORY_UCE ? "UCE" : "",
806 attr & EFI_MEMORY_WB ? "WB" : "",
807 attr & EFI_MEMORY_WT ? "WT" : "",
808 attr & EFI_MEMORY_WC ? "WC" : "",
809 attr & EFI_MEMORY_UC ? "UC" : "");
810 return buf;
811}
Jonathan (Zhixiong) Zhang7bf79312015-08-07 09:36:57 +0100812
813/*
Jan Beulich23f05712017-08-25 16:50:18 +0100814 * IA64 has a funky EFI memory map that doesn't work the same way as
815 * other architectures.
816 */
817#ifndef CONFIG_IA64
818/*
Jonathan (Zhixiong) Zhang7bf79312015-08-07 09:36:57 +0100819 * efi_mem_attributes - lookup memmap attributes for physical address
820 * @phys_addr: the physical address to lookup
821 *
822 * Search in the EFI memory map for the region covering
823 * @phys_addr. Returns the EFI memory attributes if the region
824 * was found in the memory map, 0 otherwise.
Jonathan (Zhixiong) Zhang7bf79312015-08-07 09:36:57 +0100825 */
Jan Beulich23f05712017-08-25 16:50:18 +0100826u64 efi_mem_attributes(unsigned long phys_addr)
Jonathan (Zhixiong) Zhang7bf79312015-08-07 09:36:57 +0100827{
828 efi_memory_desc_t *md;
Jonathan (Zhixiong) Zhang7bf79312015-08-07 09:36:57 +0100829
830 if (!efi_enabled(EFI_MEMMAP))
831 return 0;
832
Matt Fleming78ce2482016-04-25 21:06:38 +0100833 for_each_efi_memory_desc(md) {
Jonathan (Zhixiong) Zhang7bf79312015-08-07 09:36:57 +0100834 if ((md->phys_addr <= phys_addr) &&
835 (phys_addr < (md->phys_addr +
836 (md->num_pages << EFI_PAGE_SHIFT))))
837 return md->attribute;
838 }
839 return 0;
840}
Matt Fleming806b0352016-04-25 21:06:58 +0100841
Jan Beulich23f05712017-08-25 16:50:18 +0100842/*
843 * efi_mem_type - lookup memmap type for physical address
844 * @phys_addr: the physical address to lookup
845 *
846 * Search in the EFI memory map for the region covering @phys_addr.
847 * Returns the EFI memory type if the region was found in the memory
848 * map, EFI_RESERVED_TYPE (zero) otherwise.
849 */
850int efi_mem_type(unsigned long phys_addr)
851{
852 const efi_memory_desc_t *md;
853
854 if (!efi_enabled(EFI_MEMMAP))
855 return -ENOTSUPP;
856
857 for_each_efi_memory_desc(md) {
858 if ((md->phys_addr <= phys_addr) &&
859 (phys_addr < (md->phys_addr +
860 (md->num_pages << EFI_PAGE_SHIFT))))
861 return md->type;
862 }
863 return -EINVAL;
864}
865#endif
866
Matt Fleming806b0352016-04-25 21:06:58 +0100867int efi_status_to_err(efi_status_t status)
868{
869 int err;
870
871 switch (status) {
872 case EFI_SUCCESS:
873 err = 0;
874 break;
875 case EFI_INVALID_PARAMETER:
876 err = -EINVAL;
877 break;
878 case EFI_OUT_OF_RESOURCES:
879 err = -ENOSPC;
880 break;
881 case EFI_DEVICE_ERROR:
882 err = -EIO;
883 break;
884 case EFI_WRITE_PROTECTED:
885 err = -EROFS;
886 break;
887 case EFI_SECURITY_VIOLATION:
888 err = -EACCES;
889 break;
890 case EFI_NOT_FOUND:
891 err = -ENOENT;
892 break;
Ard Biesheuveldce48e32016-07-15 21:36:31 +0200893 case EFI_ABORTED:
894 err = -EINTR;
895 break;
Matt Fleming806b0352016-04-25 21:06:58 +0100896 default:
897 err = -EINVAL;
898 }
899
900 return err;
901}
Ard Biesheuvel63625982016-11-12 21:32:31 +0000902
Tom Lendackya19d66c2017-07-17 16:10:13 -0500903bool efi_is_table_address(unsigned long phys_addr)
904{
905 unsigned int i;
906
907 if (phys_addr == EFI_INVALID_TABLE_ADDR)
908 return false;
909
910 for (i = 0; i < ARRAY_SIZE(efi_tables); i++)
911 if (*(efi_tables[i]) == phys_addr)
912 return true;
913
914 return false;
915}
916
Ard Biesheuvel63625982016-11-12 21:32:31 +0000917#ifdef CONFIG_KEXEC
918static int update_efi_random_seed(struct notifier_block *nb,
919 unsigned long code, void *unused)
920{
921 struct linux_efi_random_seed *seed;
922 u32 size = 0;
923
924 if (!kexec_in_progress)
925 return NOTIFY_DONE;
926
927 seed = memremap(efi.rng_seed, sizeof(*seed), MEMREMAP_WB);
928 if (seed != NULL) {
Ard Biesheuvelc2ceb5f2017-08-25 16:50:16 +0100929 size = min(seed->size, EFI_RANDOM_SEED_SIZE);
Ard Biesheuvel63625982016-11-12 21:32:31 +0000930 memunmap(seed);
931 } else {
932 pr_err("Could not map UEFI random seed!\n");
933 }
934 if (size > 0) {
935 seed = memremap(efi.rng_seed, sizeof(*seed) + size,
936 MEMREMAP_WB);
937 if (seed != NULL) {
938 seed->size = size;
939 get_random_bytes(seed->bits, seed->size);
940 memunmap(seed);
941 } else {
942 pr_err("Could not map UEFI random seed!\n");
943 }
944 }
945 return NOTIFY_DONE;
946}
947
948static struct notifier_block efi_random_seed_nb = {
949 .notifier_call = update_efi_random_seed,
950};
951
952static int register_update_efi_random_seed(void)
953{
954 if (efi.rng_seed == EFI_INVALID_TABLE_ADDR)
955 return 0;
956 return register_reboot_notifier(&efi_random_seed_nb);
957}
958late_initcall(register_update_efi_random_seed);
959#endif