blob: 045d6d311bde2defc5ebabaf229ff7f71a94f60f [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
Dave Youngb2e0a542014-08-14 17:15:26 +080058static bool disable_runtime;
59static int __init setup_noefi(char *arg)
60{
61 disable_runtime = true;
62 return 0;
63}
64early_param("noefi", setup_noefi);
65
66bool efi_runtime_disabled(void)
67{
68 return disable_runtime;
69}
70
Dave Young5ae36832014-08-14 17:15:28 +080071static int __init parse_efi_cmdline(char *str)
72{
Ricardo Neri9115c752015-07-15 19:36:03 -070073 if (!str) {
74 pr_warn("need at least one option\n");
75 return -EINVAL;
76 }
77
Leif Lindholm12dd00e2015-08-26 14:24:56 +010078 if (parse_option_str(str, "debug"))
79 set_bit(EFI_DBG, &efi.flags);
80
Dave Young5ae36832014-08-14 17:15:28 +080081 if (parse_option_str(str, "noruntime"))
82 disable_runtime = true;
83
84 return 0;
85}
86early_param("efi", parse_efi_cmdline);
87
Peter Jones0bb54902015-04-28 18:44:31 -040088struct kobject *efi_kobj;
Tom Gundersena9499fa2013-02-08 15:37:06 +000089
90/*
91 * Let's not leave out systab information that snuck into
92 * the efivars driver
93 */
94static ssize_t systab_show(struct kobject *kobj,
95 struct kobj_attribute *attr, char *buf)
96{
97 char *str = buf;
98
99 if (!kobj || !buf)
100 return -EINVAL;
101
102 if (efi.mps != EFI_INVALID_TABLE_ADDR)
103 str += sprintf(str, "MPS=0x%lx\n", efi.mps);
104 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
105 str += sprintf(str, "ACPI20=0x%lx\n", efi.acpi20);
106 if (efi.acpi != EFI_INVALID_TABLE_ADDR)
107 str += sprintf(str, "ACPI=0x%lx\n", efi.acpi);
Jean Delvareb119fe02015-04-30 15:23:05 +0200108 /*
109 * If both SMBIOS and SMBIOS3 entry points are implemented, the
110 * SMBIOS3 entry point shall be preferred, so we list it first to
111 * let applications stop parsing after the first match.
112 */
Ard Biesheuvele1ccbbc2014-10-14 16:34:47 +0200113 if (efi.smbios3 != EFI_INVALID_TABLE_ADDR)
114 str += sprintf(str, "SMBIOS3=0x%lx\n", efi.smbios3);
Jean Delvareb119fe02015-04-30 15:23:05 +0200115 if (efi.smbios != EFI_INVALID_TABLE_ADDR)
116 str += sprintf(str, "SMBIOS=0x%lx\n", efi.smbios);
Tom Gundersena9499fa2013-02-08 15:37:06 +0000117 if (efi.hcdp != EFI_INVALID_TABLE_ADDR)
118 str += sprintf(str, "HCDP=0x%lx\n", efi.hcdp);
119 if (efi.boot_info != EFI_INVALID_TABLE_ADDR)
120 str += sprintf(str, "BOOTINFO=0x%lx\n", efi.boot_info);
121 if (efi.uga != EFI_INVALID_TABLE_ADDR)
122 str += sprintf(str, "UGA=0x%lx\n", efi.uga);
123
124 return str - buf;
125}
126
127static struct kobj_attribute efi_attr_systab =
128 __ATTR(systab, 0400, systab_show, NULL);
129
Dave Younga0998eb2013-12-20 18:02:17 +0800130#define EFI_FIELD(var) efi.var
131
132#define EFI_ATTR_SHOW(name) \
133static ssize_t name##_show(struct kobject *kobj, \
134 struct kobj_attribute *attr, char *buf) \
135{ \
136 return sprintf(buf, "0x%lx\n", EFI_FIELD(name)); \
137}
138
139EFI_ATTR_SHOW(fw_vendor);
140EFI_ATTR_SHOW(runtime);
141EFI_ATTR_SHOW(config_table);
142
Steve McIntyre2859dff2015-01-09 15:29:53 +0000143static ssize_t fw_platform_size_show(struct kobject *kobj,
144 struct kobj_attribute *attr, char *buf)
145{
146 return sprintf(buf, "%d\n", efi_enabled(EFI_64BIT) ? 64 : 32);
147}
148
Dave Younga0998eb2013-12-20 18:02:17 +0800149static struct kobj_attribute efi_attr_fw_vendor = __ATTR_RO(fw_vendor);
150static struct kobj_attribute efi_attr_runtime = __ATTR_RO(runtime);
151static struct kobj_attribute efi_attr_config_table = __ATTR_RO(config_table);
Steve McIntyre2859dff2015-01-09 15:29:53 +0000152static struct kobj_attribute efi_attr_fw_platform_size =
153 __ATTR_RO(fw_platform_size);
Dave Younga0998eb2013-12-20 18:02:17 +0800154
Tom Gundersena9499fa2013-02-08 15:37:06 +0000155static struct attribute *efi_subsys_attrs[] = {
156 &efi_attr_systab.attr,
Dave Younga0998eb2013-12-20 18:02:17 +0800157 &efi_attr_fw_vendor.attr,
158 &efi_attr_runtime.attr,
159 &efi_attr_config_table.attr,
Steve McIntyre2859dff2015-01-09 15:29:53 +0000160 &efi_attr_fw_platform_size.attr,
Dave Younga0998eb2013-12-20 18:02:17 +0800161 NULL,
Tom Gundersena9499fa2013-02-08 15:37:06 +0000162};
163
Dave Younga0998eb2013-12-20 18:02:17 +0800164static umode_t efi_attr_is_visible(struct kobject *kobj,
165 struct attribute *attr, int n)
166{
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200167 if (attr == &efi_attr_fw_vendor.attr) {
168 if (efi_enabled(EFI_PARAVIRT) ||
169 efi.fw_vendor == EFI_INVALID_TABLE_ADDR)
170 return 0;
171 } else if (attr == &efi_attr_runtime.attr) {
172 if (efi.runtime == EFI_INVALID_TABLE_ADDR)
173 return 0;
174 } else if (attr == &efi_attr_config_table.attr) {
175 if (efi.config_table == EFI_INVALID_TABLE_ADDR)
176 return 0;
177 }
Dave Younga0998eb2013-12-20 18:02:17 +0800178
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200179 return attr->mode;
Dave Younga0998eb2013-12-20 18:02:17 +0800180}
181
Tom Gundersena9499fa2013-02-08 15:37:06 +0000182static struct attribute_group efi_subsys_attr_group = {
183 .attrs = efi_subsys_attrs,
Dave Younga0998eb2013-12-20 18:02:17 +0800184 .is_visible = efi_attr_is_visible,
Tom Gundersena9499fa2013-02-08 15:37:06 +0000185};
186
187static struct efivars generic_efivars;
188static struct efivar_operations generic_ops;
189
190static int generic_ops_register(void)
191{
192 generic_ops.get_variable = efi.get_variable;
193 generic_ops.set_variable = efi.set_variable;
Ard Biesheuvel9c6672a2016-02-01 22:06:55 +0000194 generic_ops.set_variable_nonblocking = efi.set_variable_nonblocking;
Tom Gundersena9499fa2013-02-08 15:37:06 +0000195 generic_ops.get_next_variable = efi.get_next_variable;
Matt Fleminga614e192013-04-30 11:30:24 +0100196 generic_ops.query_variable_store = efi_query_variable_store;
Tom Gundersena9499fa2013-02-08 15:37:06 +0000197
198 return efivars_register(&generic_efivars, &generic_ops, efi_kobj);
199}
200
201static void generic_ops_unregister(void)
202{
203 efivars_unregister(&generic_efivars);
204}
205
Octavian Purdila475fb4e2016-07-08 19:13:12 +0300206#if IS_ENABLED(CONFIG_ACPI)
207#define EFIVAR_SSDT_NAME_MAX 16
208static char efivar_ssdt[EFIVAR_SSDT_NAME_MAX] __initdata;
209static int __init efivar_ssdt_setup(char *str)
210{
211 if (strlen(str) < sizeof(efivar_ssdt))
212 memcpy(efivar_ssdt, str, strlen(str));
213 else
214 pr_warn("efivar_ssdt: name too long: %s\n", str);
215 return 0;
216}
217__setup("efivar_ssdt=", efivar_ssdt_setup);
218
219static __init int efivar_ssdt_iter(efi_char16_t *name, efi_guid_t vendor,
220 unsigned long name_size, void *data)
221{
222 struct efivar_entry *entry;
223 struct list_head *list = data;
224 char utf8_name[EFIVAR_SSDT_NAME_MAX];
225 int limit = min_t(unsigned long, EFIVAR_SSDT_NAME_MAX, name_size);
226
227 ucs2_as_utf8(utf8_name, name, limit - 1);
228 if (strncmp(utf8_name, efivar_ssdt, limit) != 0)
229 return 0;
230
231 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
232 if (!entry)
233 return 0;
234
235 memcpy(entry->var.VariableName, name, name_size);
236 memcpy(&entry->var.VendorGuid, &vendor, sizeof(efi_guid_t));
237
238 efivar_entry_add(entry, list);
239
240 return 0;
241}
242
243static __init int efivar_ssdt_load(void)
244{
245 LIST_HEAD(entries);
246 struct efivar_entry *entry, *aux;
247 unsigned long size;
248 void *data;
249 int ret;
250
251 ret = efivar_init(efivar_ssdt_iter, &entries, true, &entries);
252
253 list_for_each_entry_safe(entry, aux, &entries, list) {
254 pr_info("loading SSDT from variable %s-%pUl\n", efivar_ssdt,
255 &entry->var.VendorGuid);
256
257 list_del(&entry->list);
258
259 ret = efivar_entry_size(entry, &size);
260 if (ret) {
261 pr_err("failed to get var size\n");
262 goto free_entry;
263 }
264
265 data = kmalloc(size, GFP_KERNEL);
Dan Carpentera75dcb52016-10-18 15:33:18 +0100266 if (!data) {
267 ret = -ENOMEM;
Octavian Purdila475fb4e2016-07-08 19:13:12 +0300268 goto free_entry;
Dan Carpentera75dcb52016-10-18 15:33:18 +0100269 }
Octavian Purdila475fb4e2016-07-08 19:13:12 +0300270
271 ret = efivar_entry_get(entry, NULL, &size, data);
272 if (ret) {
273 pr_err("failed to get var data\n");
274 goto free_data;
275 }
276
277 ret = acpi_load_table(data);
278 if (ret) {
279 pr_err("failed to load table: %d\n", ret);
280 goto free_data;
281 }
282
283 goto free_entry;
284
285free_data:
286 kfree(data);
287
288free_entry:
289 kfree(entry);
290 }
291
292 return ret;
293}
294#else
295static inline int efivar_ssdt_load(void) { return 0; }
296#endif
297
Tom Gundersena9499fa2013-02-08 15:37:06 +0000298/*
299 * We register the efi subsystem with the firmware subsystem and the
300 * efivars subsystem with the efi subsystem, if the system was booted with
301 * EFI.
302 */
303static int __init efisubsys_init(void)
304{
305 int error;
306
307 if (!efi_enabled(EFI_BOOT))
308 return 0;
309
310 /* We register the efi directory at /sys/firmware/efi */
311 efi_kobj = kobject_create_and_add("efi", firmware_kobj);
312 if (!efi_kobj) {
313 pr_err("efi: Firmware registration failed.\n");
314 return -ENOMEM;
315 }
316
317 error = generic_ops_register();
318 if (error)
319 goto err_put;
320
Octavian Purdila475fb4e2016-07-08 19:13:12 +0300321 if (efi_enabled(EFI_RUNTIME_SERVICES))
322 efivar_ssdt_load();
323
Tom Gundersena9499fa2013-02-08 15:37:06 +0000324 error = sysfs_create_group(efi_kobj, &efi_subsys_attr_group);
325 if (error) {
326 pr_err("efi: Sysfs attribute export failed with error %d.\n",
327 error);
328 goto err_unregister;
329 }
330
Dave Young926172d2013-12-20 18:02:18 +0800331 error = efi_runtime_map_init(efi_kobj);
332 if (error)
333 goto err_remove_group;
334
Tom Gundersena9499fa2013-02-08 15:37:06 +0000335 /* and the standard mountpoint for efivarfs */
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500336 error = sysfs_create_mount_point(efi_kobj, "efivars");
337 if (error) {
Tom Gundersena9499fa2013-02-08 15:37:06 +0000338 pr_err("efivars: Subsystem registration failed.\n");
Tom Gundersena9499fa2013-02-08 15:37:06 +0000339 goto err_remove_group;
340 }
341
342 return 0;
343
344err_remove_group:
345 sysfs_remove_group(efi_kobj, &efi_subsys_attr_group);
346err_unregister:
347 generic_ops_unregister();
348err_put:
349 kobject_put(efi_kobj);
350 return error;
351}
352
353subsys_initcall(efisubsys_init);
Leif Lindholm272686b2013-09-05 11:34:54 +0100354
Peter Jones0bb54902015-04-28 18:44:31 -0400355/*
356 * Find the efi memory descriptor for a given physical address. Given a
Matt Flemingdca0f972016-02-27 15:52:50 +0000357 * physical address, determine if it exists within an EFI Memory Map entry,
Peter Jones0bb54902015-04-28 18:44:31 -0400358 * and if so, populate the supplied memory descriptor with the appropriate
359 * data.
360 */
361int __init efi_mem_desc_lookup(u64 phys_addr, efi_memory_desc_t *out_md)
362{
Matt Flemingdca0f972016-02-27 15:52:50 +0000363 efi_memory_desc_t *md;
Peter Jones0bb54902015-04-28 18:44:31 -0400364
365 if (!efi_enabled(EFI_MEMMAP)) {
366 pr_err_once("EFI_MEMMAP is not enabled.\n");
367 return -EINVAL;
368 }
369
Peter Jones0bb54902015-04-28 18:44:31 -0400370 if (!out_md) {
371 pr_err_once("out_md is null.\n");
372 return -EINVAL;
373 }
Peter Jones0bb54902015-04-28 18:44:31 -0400374
Matt Flemingdca0f972016-02-27 15:52:50 +0000375 for_each_efi_memory_desc(md) {
Peter Jones0bb54902015-04-28 18:44:31 -0400376 u64 size;
377 u64 end;
378
Peter Jones0bb54902015-04-28 18:44:31 -0400379 if (!(md->attribute & EFI_MEMORY_RUNTIME) &&
380 md->type != EFI_BOOT_SERVICES_DATA &&
381 md->type != EFI_RUNTIME_SERVICES_DATA) {
Peter Jones0bb54902015-04-28 18:44:31 -0400382 continue;
383 }
384
385 size = md->num_pages << EFI_PAGE_SHIFT;
386 end = md->phys_addr + size;
387 if (phys_addr >= md->phys_addr && phys_addr < end) {
388 memcpy(out_md, md, sizeof(*out_md));
Peter Jones0bb54902015-04-28 18:44:31 -0400389 return 0;
390 }
Peter Jones0bb54902015-04-28 18:44:31 -0400391 }
Peter Jones0bb54902015-04-28 18:44:31 -0400392 return -ENOENT;
393}
394
395/*
396 * Calculate the highest address of an efi memory descriptor.
397 */
398u64 __init efi_mem_desc_end(efi_memory_desc_t *md)
399{
400 u64 size = md->num_pages << EFI_PAGE_SHIFT;
401 u64 end = md->phys_addr + size;
402 return end;
403}
Leif Lindholm272686b2013-09-05 11:34:54 +0100404
Matt Fleming816e7612016-02-29 21:22:52 +0000405void __init __weak efi_arch_mem_reserve(phys_addr_t addr, u64 size) {}
406
407/**
408 * efi_mem_reserve - Reserve an EFI memory region
409 * @addr: Physical address to reserve
410 * @size: Size of reservation
411 *
412 * Mark a region as reserved from general kernel allocation and
413 * prevent it being released by efi_free_boot_services().
414 *
415 * This function should be called drivers once they've parsed EFI
416 * configuration tables to figure out where their data lives, e.g.
417 * efi_esrt_init().
418 */
419void __init efi_mem_reserve(phys_addr_t addr, u64 size)
420{
421 if (!memblock_is_region_reserved(addr, size))
422 memblock_reserve(addr, size);
423
424 /*
425 * Some architectures (x86) reserve all boot services ranges
426 * until efi_free_boot_services() because of buggy firmware
427 * implementations. This means the above memblock_reserve() is
428 * superfluous on x86 and instead what it needs to do is
429 * ensure the @start, @size is not freed.
430 */
431 efi_arch_mem_reserve(addr, size);
432}
433
Leif Lindholm272686b2013-09-05 11:34:54 +0100434static __initdata efi_config_table_type_t common_tables[] = {
435 {ACPI_20_TABLE_GUID, "ACPI 2.0", &efi.acpi20},
436 {ACPI_TABLE_GUID, "ACPI", &efi.acpi},
437 {HCDP_TABLE_GUID, "HCDP", &efi.hcdp},
438 {MPS_TABLE_GUID, "MPS", &efi.mps},
439 {SAL_SYSTEM_TABLE_GUID, "SALsystab", &efi.sal_systab},
440 {SMBIOS_TABLE_GUID, "SMBIOS", &efi.smbios},
Ard Biesheuvele1ccbbc2014-10-14 16:34:47 +0200441 {SMBIOS3_TABLE_GUID, "SMBIOS 3.0", &efi.smbios3},
Leif Lindholm272686b2013-09-05 11:34:54 +0100442 {UGA_IO_PROTOCOL_GUID, "UGA", &efi.uga},
Peter Jones0bb54902015-04-28 18:44:31 -0400443 {EFI_SYSTEM_RESOURCE_TABLE_GUID, "ESRT", &efi.esrt},
Ard Biesheuvelbf924862015-09-09 10:08:15 +0200444 {EFI_PROPERTIES_TABLE_GUID, "PROP", &efi.properties_table},
Ard Biesheuvela604af02016-04-25 21:06:44 +0100445 {EFI_MEMORY_ATTRIBUTES_TABLE_GUID, "MEMATTR", &efi.mem_attr_table},
Ard Biesheuvel63625982016-11-12 21:32:31 +0000446 {LINUX_EFI_RANDOM_SEED_TABLE_GUID, "RNG", &efi.rng_seed},
Daeseok Youn69e60842014-02-13 17:16:36 +0900447 {NULL_GUID, NULL, NULL},
Leif Lindholm272686b2013-09-05 11:34:54 +0100448};
449
450static __init int match_config_table(efi_guid_t *guid,
451 unsigned long table,
452 efi_config_table_type_t *table_types)
453{
Leif Lindholm272686b2013-09-05 11:34:54 +0100454 int i;
455
456 if (table_types) {
Leif Lindholm272686b2013-09-05 11:34:54 +0100457 for (i = 0; efi_guidcmp(table_types[i].guid, NULL_GUID); i++) {
Leif Lindholm272686b2013-09-05 11:34:54 +0100458 if (!efi_guidcmp(*guid, table_types[i].guid)) {
459 *(table_types[i].ptr) = table;
Ard Biesheuvel801820b2016-04-25 21:06:53 +0100460 if (table_types[i].name)
461 pr_cont(" %s=0x%lx ",
462 table_types[i].name, table);
Leif Lindholm272686b2013-09-05 11:34:54 +0100463 return 1;
464 }
465 }
466 }
467
468 return 0;
469}
470
Ard Biesheuvel7bb68412014-10-18 15:04:15 +0200471int __init efi_config_parse_tables(void *config_tables, int count, int sz,
472 efi_config_table_type_t *arch_tables)
473{
474 void *tablep;
475 int i;
476
477 tablep = config_tables;
478 pr_info("");
479 for (i = 0; i < count; i++) {
480 efi_guid_t guid;
481 unsigned long table;
482
483 if (efi_enabled(EFI_64BIT)) {
484 u64 table64;
485 guid = ((efi_config_table_64_t *)tablep)->guid;
486 table64 = ((efi_config_table_64_t *)tablep)->table;
487 table = table64;
488#ifndef CONFIG_64BIT
489 if (table64 >> 32) {
490 pr_cont("\n");
491 pr_err("Table located above 4GB, disabling EFI.\n");
492 return -EINVAL;
493 }
494#endif
495 } else {
496 guid = ((efi_config_table_32_t *)tablep)->guid;
497 table = ((efi_config_table_32_t *)tablep)->table;
498 }
499
500 if (!match_config_table(&guid, table, common_tables))
501 match_config_table(&guid, table, arch_tables);
502
503 tablep += sz;
504 }
505 pr_cont("\n");
506 set_bit(EFI_CONFIG_TABLES, &efi.flags);
Ard Biesheuvela1041712015-09-23 07:29:34 -0700507
Ard Biesheuvel63625982016-11-12 21:32:31 +0000508 if (efi.rng_seed != EFI_INVALID_TABLE_ADDR) {
509 struct linux_efi_random_seed *seed;
510 u32 size = 0;
511
512 seed = early_memremap(efi.rng_seed, sizeof(*seed));
513 if (seed != NULL) {
514 size = seed->size;
515 early_memunmap(seed, sizeof(*seed));
516 } else {
517 pr_err("Could not map UEFI random seed!\n");
518 }
519 if (size > 0) {
520 seed = early_memremap(efi.rng_seed,
521 sizeof(*seed) + size);
522 if (seed != NULL) {
523 add_device_randomness(seed->bits, seed->size);
524 early_memunmap(seed, sizeof(*seed) + size);
525 } else {
526 pr_err("Could not map UEFI random seed!\n");
527 }
528 }
529 }
530
Daniel Kiper457ea3f2017-06-22 12:51:36 +0200531 if (efi_enabled(EFI_MEMMAP))
532 efi_memattr_init();
Sai Praneeth3a6b6c62017-01-31 13:21:35 +0000533
Ard Biesheuvela1041712015-09-23 07:29:34 -0700534 /* Parse the EFI Properties table if it exists */
535 if (efi.properties_table != EFI_INVALID_TABLE_ADDR) {
536 efi_properties_table_t *tbl;
537
538 tbl = early_memremap(efi.properties_table, sizeof(*tbl));
539 if (tbl == NULL) {
540 pr_err("Could not map Properties table!\n");
541 return -ENOMEM;
542 }
543
544 if (tbl->memory_protection_attribute &
545 EFI_PROPERTIES_RUNTIME_MEMORY_PROTECTION_NON_EXECUTABLE_PE_DATA)
546 set_bit(EFI_NX_PE_DATA, &efi.flags);
547
548 early_memunmap(tbl, sizeof(*tbl));
549 }
550
Ard Biesheuvel7bb68412014-10-18 15:04:15 +0200551 return 0;
552}
553
Leif Lindholm272686b2013-09-05 11:34:54 +0100554int __init efi_config_init(efi_config_table_type_t *arch_tables)
555{
Ard Biesheuvel7bb68412014-10-18 15:04:15 +0200556 void *config_tables;
557 int sz, ret;
Leif Lindholm272686b2013-09-05 11:34:54 +0100558
559 if (efi_enabled(EFI_64BIT))
560 sz = sizeof(efi_config_table_64_t);
561 else
562 sz = sizeof(efi_config_table_32_t);
563
564 /*
565 * Let's see what config tables the firmware passed to us.
566 */
567 config_tables = early_memremap(efi.systab->tables,
568 efi.systab->nr_tables * sz);
569 if (config_tables == NULL) {
570 pr_err("Could not map Configuration table!\n");
571 return -ENOMEM;
572 }
573
Ard Biesheuvel7bb68412014-10-18 15:04:15 +0200574 ret = efi_config_parse_tables(config_tables, efi.systab->nr_tables, sz,
575 arch_tables);
Leif Lindholm272686b2013-09-05 11:34:54 +0100576
Daniel Kiperabc93f82014-06-30 19:52:56 +0200577 early_memunmap(config_tables, efi.systab->nr_tables * sz);
Ard Biesheuvel7bb68412014-10-18 15:04:15 +0200578 return ret;
Leif Lindholm272686b2013-09-05 11:34:54 +0100579}
Mark Salter0302f712013-12-30 12:12:12 -0500580
Lee, Chun-Yi28d54022014-07-09 18:39:29 +0800581#ifdef CONFIG_EFI_VARS_MODULE
582static int __init efi_load_efivars(void)
583{
584 struct platform_device *pdev;
585
586 if (!efi_enabled(EFI_RUNTIME_SERVICES))
587 return 0;
588
589 pdev = platform_device_register_simple("efivars", 0, NULL, 0);
590 return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
591}
592device_initcall(efi_load_efivars);
593#endif
594
Mark Salter0302f712013-12-30 12:12:12 -0500595#ifdef CONFIG_EFI_PARAMS_FROM_FDT
596
597#define UEFI_PARAM(name, prop, field) \
598 { \
599 { name }, \
600 { prop }, \
601 offsetof(struct efi_fdt_params, field), \
602 FIELD_SIZEOF(struct efi_fdt_params, field) \
603 }
604
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800605struct params {
Mark Salter0302f712013-12-30 12:12:12 -0500606 const char name[32];
607 const char propname[32];
608 int offset;
609 int size;
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800610};
611
612static __initdata struct params fdt_params[] = {
Mark Salter0302f712013-12-30 12:12:12 -0500613 UEFI_PARAM("System Table", "linux,uefi-system-table", system_table),
614 UEFI_PARAM("MemMap Address", "linux,uefi-mmap-start", mmap),
615 UEFI_PARAM("MemMap Size", "linux,uefi-mmap-size", mmap_size),
616 UEFI_PARAM("MemMap Desc. Size", "linux,uefi-mmap-desc-size", desc_size),
617 UEFI_PARAM("MemMap Desc. Version", "linux,uefi-mmap-desc-ver", desc_ver)
618};
619
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800620static __initdata struct params xen_fdt_params[] = {
621 UEFI_PARAM("System Table", "xen,uefi-system-table", system_table),
622 UEFI_PARAM("MemMap Address", "xen,uefi-mmap-start", mmap),
623 UEFI_PARAM("MemMap Size", "xen,uefi-mmap-size", mmap_size),
624 UEFI_PARAM("MemMap Desc. Size", "xen,uefi-mmap-desc-size", desc_size),
625 UEFI_PARAM("MemMap Desc. Version", "xen,uefi-mmap-desc-ver", desc_ver)
626};
627
628#define EFI_FDT_PARAMS_SIZE ARRAY_SIZE(fdt_params)
629
630static __initdata struct {
631 const char *uname;
632 const char *subnode;
633 struct params *params;
634} dt_params[] = {
635 { "hypervisor", "uefi", xen_fdt_params },
636 { "chosen", NULL, fdt_params },
637};
638
Mark Salter0302f712013-12-30 12:12:12 -0500639struct param_info {
Catalin Marinas29e24352014-07-08 16:54:18 +0100640 int found;
Mark Salter0302f712013-12-30 12:12:12 -0500641 void *params;
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800642 const char *missing;
Mark Salter0302f712013-12-30 12:12:12 -0500643};
644
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800645static int __init __find_uefi_params(unsigned long node,
646 struct param_info *info,
647 struct params *params)
Mark Salter0302f712013-12-30 12:12:12 -0500648{
Catalin Marinas6fb8cc82014-06-02 11:31:06 +0100649 const void *prop;
650 void *dest;
Mark Salter0302f712013-12-30 12:12:12 -0500651 u64 val;
Catalin Marinas6fb8cc82014-06-02 11:31:06 +0100652 int i, len;
Mark Salter0302f712013-12-30 12:12:12 -0500653
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800654 for (i = 0; i < EFI_FDT_PARAMS_SIZE; i++) {
655 prop = of_get_flat_dt_prop(node, params[i].propname, &len);
656 if (!prop) {
657 info->missing = params[i].name;
Mark Salter0302f712013-12-30 12:12:12 -0500658 return 0;
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800659 }
660
661 dest = info->params + params[i].offset;
Catalin Marinas29e24352014-07-08 16:54:18 +0100662 info->found++;
Mark Salter0302f712013-12-30 12:12:12 -0500663
664 val = of_read_number(prop, len / sizeof(u32));
665
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800666 if (params[i].size == sizeof(u32))
Mark Salter0302f712013-12-30 12:12:12 -0500667 *(u32 *)dest = val;
668 else
669 *(u64 *)dest = val;
670
Leif Lindholm7968c0e2015-08-26 14:24:58 +0100671 if (efi_enabled(EFI_DBG))
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800672 pr_info(" %s: 0x%0*llx\n", params[i].name,
673 params[i].size * 2, val);
Mark Salter0302f712013-12-30 12:12:12 -0500674 }
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800675
Mark Salter0302f712013-12-30 12:12:12 -0500676 return 1;
677}
678
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800679static int __init fdt_find_uefi_params(unsigned long node, const char *uname,
680 int depth, void *data)
681{
682 struct param_info *info = data;
683 int i;
684
685 for (i = 0; i < ARRAY_SIZE(dt_params); i++) {
686 const char *subnode = dt_params[i].subnode;
687
688 if (depth != 1 || strcmp(uname, dt_params[i].uname) != 0) {
689 info->missing = dt_params[i].params[0].name;
690 continue;
691 }
692
693 if (subnode) {
Andrzej Hajda4af9ed52016-08-30 12:41:37 +0200694 int err = of_get_flat_dt_subnode_by_name(node, subnode);
695
696 if (err < 0)
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800697 return 0;
Andrzej Hajda4af9ed52016-08-30 12:41:37 +0200698
699 node = err;
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800700 }
701
702 return __find_uefi_params(node, info, dt_params[i].params);
703 }
704
705 return 0;
706}
707
Leif Lindholm7968c0e2015-08-26 14:24:58 +0100708int __init efi_get_fdt_params(struct efi_fdt_params *params)
Mark Salter0302f712013-12-30 12:12:12 -0500709{
710 struct param_info info;
Catalin Marinas29e24352014-07-08 16:54:18 +0100711 int ret;
712
713 pr_info("Getting EFI parameters from FDT:\n");
Mark Salter0302f712013-12-30 12:12:12 -0500714
Catalin Marinas29e24352014-07-08 16:54:18 +0100715 info.found = 0;
Mark Salter0302f712013-12-30 12:12:12 -0500716 info.params = params;
717
Catalin Marinas29e24352014-07-08 16:54:18 +0100718 ret = of_scan_flat_dt(fdt_find_uefi_params, &info);
719 if (!info.found)
720 pr_info("UEFI not found.\n");
721 else if (!ret)
722 pr_err("Can't find '%s' in device tree!\n",
Shannon Zhao0cac5c32016-05-12 20:19:54 +0800723 info.missing);
Catalin Marinas29e24352014-07-08 16:54:18 +0100724
725 return ret;
Mark Salter0302f712013-12-30 12:12:12 -0500726}
727#endif /* CONFIG_EFI_PARAMS_FROM_FDT */
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200728
729static __initdata char memory_type_name[][20] = {
730 "Reserved",
731 "Loader Code",
732 "Loader Data",
733 "Boot Code",
734 "Boot Data",
735 "Runtime Code",
736 "Runtime Data",
737 "Conventional Memory",
738 "Unusable Memory",
739 "ACPI Reclaim Memory",
740 "ACPI Memory NVS",
741 "Memory Mapped I/O",
742 "MMIO Port Space",
Robert Elliott35575e02016-02-01 22:07:07 +0000743 "PAL Code",
744 "Persistent Memory",
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200745};
746
747char * __init efi_md_typeattr_format(char *buf, size_t size,
748 const efi_memory_desc_t *md)
749{
750 char *pos;
751 int type_len;
752 u64 attr;
753
754 pos = buf;
755 if (md->type >= ARRAY_SIZE(memory_type_name))
756 type_len = snprintf(pos, size, "[type=%u", md->type);
757 else
758 type_len = snprintf(pos, size, "[%-*s",
759 (int)(sizeof(memory_type_name[0]) - 1),
760 memory_type_name[md->type]);
761 if (type_len >= size)
762 return buf;
763
764 pos += type_len;
765 size -= type_len;
766
767 attr = md->attribute;
768 if (attr & ~(EFI_MEMORY_UC | EFI_MEMORY_WC | EFI_MEMORY_WT |
Ard Biesheuvel87db73ae2015-08-07 09:36:54 +0100769 EFI_MEMORY_WB | EFI_MEMORY_UCE | EFI_MEMORY_RO |
770 EFI_MEMORY_WP | EFI_MEMORY_RP | EFI_MEMORY_XP |
Robert Elliottc016ca02016-02-01 22:07:06 +0000771 EFI_MEMORY_NV |
Taku Izumi8be44322015-08-27 02:11:19 +0900772 EFI_MEMORY_RUNTIME | EFI_MEMORY_MORE_RELIABLE))
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200773 snprintf(pos, size, "|attr=0x%016llx]",
774 (unsigned long long)attr);
775 else
Robert Elliottc016ca02016-02-01 22:07:06 +0000776 snprintf(pos, size,
777 "|%3s|%2s|%2s|%2s|%2s|%2s|%2s|%3s|%2s|%2s|%2s|%2s]",
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200778 attr & EFI_MEMORY_RUNTIME ? "RUN" : "",
Taku Izumi8be44322015-08-27 02:11:19 +0900779 attr & EFI_MEMORY_MORE_RELIABLE ? "MR" : "",
Robert Elliottc016ca02016-02-01 22:07:06 +0000780 attr & EFI_MEMORY_NV ? "NV" : "",
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200781 attr & EFI_MEMORY_XP ? "XP" : "",
782 attr & EFI_MEMORY_RP ? "RP" : "",
783 attr & EFI_MEMORY_WP ? "WP" : "",
Ard Biesheuvel87db73ae2015-08-07 09:36:54 +0100784 attr & EFI_MEMORY_RO ? "RO" : "",
Laszlo Ersek98d2a6c2014-09-03 13:32:20 +0200785 attr & EFI_MEMORY_UCE ? "UCE" : "",
786 attr & EFI_MEMORY_WB ? "WB" : "",
787 attr & EFI_MEMORY_WT ? "WT" : "",
788 attr & EFI_MEMORY_WC ? "WC" : "",
789 attr & EFI_MEMORY_UC ? "UC" : "");
790 return buf;
791}
Jonathan (Zhixiong) Zhang7bf79312015-08-07 09:36:57 +0100792
793/*
794 * efi_mem_attributes - lookup memmap attributes for physical address
795 * @phys_addr: the physical address to lookup
796 *
797 * Search in the EFI memory map for the region covering
798 * @phys_addr. Returns the EFI memory attributes if the region
799 * was found in the memory map, 0 otherwise.
800 *
801 * Despite being marked __weak, most architectures should *not*
802 * override this function. It is __weak solely for the benefit
803 * of ia64 which has a funky EFI memory map that doesn't work
804 * the same way as other architectures.
805 */
806u64 __weak efi_mem_attributes(unsigned long phys_addr)
807{
808 efi_memory_desc_t *md;
Jonathan (Zhixiong) Zhang7bf79312015-08-07 09:36:57 +0100809
810 if (!efi_enabled(EFI_MEMMAP))
811 return 0;
812
Matt Fleming78ce2482016-04-25 21:06:38 +0100813 for_each_efi_memory_desc(md) {
Jonathan (Zhixiong) Zhang7bf79312015-08-07 09:36:57 +0100814 if ((md->phys_addr <= phys_addr) &&
815 (phys_addr < (md->phys_addr +
816 (md->num_pages << EFI_PAGE_SHIFT))))
817 return md->attribute;
818 }
819 return 0;
820}
Matt Fleming806b0352016-04-25 21:06:58 +0100821
822int efi_status_to_err(efi_status_t status)
823{
824 int err;
825
826 switch (status) {
827 case EFI_SUCCESS:
828 err = 0;
829 break;
830 case EFI_INVALID_PARAMETER:
831 err = -EINVAL;
832 break;
833 case EFI_OUT_OF_RESOURCES:
834 err = -ENOSPC;
835 break;
836 case EFI_DEVICE_ERROR:
837 err = -EIO;
838 break;
839 case EFI_WRITE_PROTECTED:
840 err = -EROFS;
841 break;
842 case EFI_SECURITY_VIOLATION:
843 err = -EACCES;
844 break;
845 case EFI_NOT_FOUND:
846 err = -ENOENT;
847 break;
Ard Biesheuveldce48e32016-07-15 21:36:31 +0200848 case EFI_ABORTED:
849 err = -EINTR;
850 break;
Matt Fleming806b0352016-04-25 21:06:58 +0100851 default:
852 err = -EINVAL;
853 }
854
855 return err;
856}
Ard Biesheuvel63625982016-11-12 21:32:31 +0000857
858#ifdef CONFIG_KEXEC
859static int update_efi_random_seed(struct notifier_block *nb,
860 unsigned long code, void *unused)
861{
862 struct linux_efi_random_seed *seed;
863 u32 size = 0;
864
865 if (!kexec_in_progress)
866 return NOTIFY_DONE;
867
868 seed = memremap(efi.rng_seed, sizeof(*seed), MEMREMAP_WB);
869 if (seed != NULL) {
870 size = min(seed->size, 32U);
871 memunmap(seed);
872 } else {
873 pr_err("Could not map UEFI random seed!\n");
874 }
875 if (size > 0) {
876 seed = memremap(efi.rng_seed, sizeof(*seed) + size,
877 MEMREMAP_WB);
878 if (seed != NULL) {
879 seed->size = size;
880 get_random_bytes(seed->bits, seed->size);
881 memunmap(seed);
882 } else {
883 pr_err("Could not map UEFI random seed!\n");
884 }
885 }
886 return NOTIFY_DONE;
887}
888
889static struct notifier_block efi_random_seed_nb = {
890 .notifier_call = update_efi_random_seed,
891};
892
893static int register_update_efi_random_seed(void)
894{
895 if (efi.rng_seed == EFI_INVALID_TABLE_ADDR)
896 return 0;
897 return register_reboot_notifier(&efi_random_seed_nb);
898}
899late_initcall(register_update_efi_random_seed);
900#endif