blob: a1f745b0bf1df0b9a5f227caa8dc993d9f4dab08 [file] [log] [blame]
Huang, Ying5b836832008-01-30 13:31:19 +01001/*
2 * Common EFI (Extensible Firmware Interface) support functions
3 * Based on Extensible Firmware Interface Specification version 1.0
4 *
5 * Copyright (C) 1999 VA Linux Systems
6 * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
7 * Copyright (C) 1999-2002 Hewlett-Packard Co.
8 * David Mosberger-Tang <davidm@hpl.hp.com>
9 * Stephane Eranian <eranian@hpl.hp.com>
10 * Copyright (C) 2005-2008 Intel Co.
11 * Fenghua Yu <fenghua.yu@intel.com>
12 * Bibo Mao <bibo.mao@intel.com>
13 * Chandramouli Narayanan <mouli@linux.intel.com>
14 * Huang Ying <ying.huang@intel.com>
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +010015 * Copyright (C) 2013 SuSE Labs
16 * Borislav Petkov <bp@suse.de> - runtime services VA mapping
Huang, Ying5b836832008-01-30 13:31:19 +010017 *
18 * Copied from efi_32.c to eliminate the duplicated code between EFI
19 * 32/64 support code. --ying 2007-10-26
20 *
21 * All EFI Runtime Services are not implemented yet as EFI only
22 * supports physical mode addressing on SoftSDV. This is to be fixed
23 * in a future version. --drummond 1999-07-20
24 *
25 * Implemented EFI runtime services and virtual mode calls. --davidm
26 *
27 * Goutham Rao: <goutham.rao@intel.com>
28 * Skip non-WB memory and ignore empty memory ranges.
29 */
30
Olof Johanssone3cb3f52012-02-12 13:24:26 -080031#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32
Huang, Ying5b836832008-01-30 13:31:19 +010033#include <linux/kernel.h>
34#include <linux/init.h>
35#include <linux/efi.h>
Josh Triplett2223af32012-09-28 17:57:05 -070036#include <linux/efi-bgrt.h>
Paul Gortmaker69c60c82011-05-26 12:22:53 -040037#include <linux/export.h>
Huang, Ying5b836832008-01-30 13:31:19 +010038#include <linux/bootmem.h>
David Howells0d01ff22013-04-11 23:51:01 +010039#include <linux/slab.h>
Yinghai Lua9ce6bc2010-08-25 13:39:17 -070040#include <linux/memblock.h>
Huang, Ying5b836832008-01-30 13:31:19 +010041#include <linux/spinlock.h>
42#include <linux/uaccess.h>
43#include <linux/time.h>
44#include <linux/io.h>
45#include <linux/reboot.h>
46#include <linux/bcd.h>
47
48#include <asm/setup.h>
49#include <asm/efi.h>
50#include <asm/time.h>
Huang, Yinga2172e22008-01-30 13:33:55 +010051#include <asm/cacheflush.h>
52#include <asm/tlbflush.h>
Feng Tang7bd867d2009-09-10 10:48:56 +080053#include <asm/x86_init.h>
Prarit Bhargava3195ef52013-02-14 12:02:54 -050054#include <asm/rtc.h>
Borislav Petkova5d90c92014-03-04 17:02:17 +010055#include <asm/uv/uv.h>
Huang, Ying5b836832008-01-30 13:31:19 +010056
Borislav Petkovf4fccac2013-10-31 17:24:59 +010057#define EFI_DEBUG
Huang, Ying5b836832008-01-30 13:31:19 +010058
Huang, Ying5b836832008-01-30 13:31:19 +010059struct efi_memory_map memmap;
60
Harvey Harrisonecaea422008-02-13 13:26:13 -080061static struct efi efi_phys __initdata;
Huang, Ying5b836832008-01-30 13:31:19 +010062static efi_system_table_t efi_systab __initdata;
63
Joe Perches9b7d2042014-01-03 16:08:48 -080064static efi_config_table_type_t arch_tables[] __initdata = {
Leif Lindholm272686b2013-09-05 11:34:54 +010065#ifdef CONFIG_X86_UV
66 {UV_SYSTEM_TABLE_GUID, "UVsystab", &efi.uv_systab},
67#endif
Leif Lindholm722da9d2013-10-03 15:42:37 +010068 {NULL_GUID, NULL, NULL},
Leif Lindholm272686b2013-09-05 11:34:54 +010069};
70
Dave Young1fec0532013-12-20 18:02:19 +080071u64 efi_setup; /* efi setup_data physical address */
Dave Young926172d2013-12-20 18:02:18 +080072
Joe Perches9b7d2042014-01-03 16:08:48 -080073static bool disable_runtime __initdata = false;
Huang, Ying8b2cb7a2008-01-30 13:32:11 +010074static int __init setup_noefi(char *arg)
75{
Matt Flemingfb834c72013-02-20 20:36:12 +000076 disable_runtime = true;
Huang, Ying8b2cb7a2008-01-30 13:32:11 +010077 return 0;
78}
79early_param("noefi", setup_noefi);
80
Paul Jackson200001e2008-06-25 05:44:46 -070081int add_efi_memmap;
82EXPORT_SYMBOL(add_efi_memmap);
83
84static int __init setup_add_efi_memmap(char *arg)
85{
86 add_efi_memmap = 1;
87 return 0;
88}
89early_param("add_efi_memmap", setup_add_efi_memmap);
90
Huang, Ying5b836832008-01-30 13:31:19 +010091static efi_status_t __init phys_efi_set_virtual_address_map(
92 unsigned long memory_map_size,
93 unsigned long descriptor_size,
94 u32 descriptor_version,
95 efi_memory_desc_t *virtual_map)
96{
97 efi_status_t status;
98
99 efi_call_phys_prelog();
Matt Fleming62fa6e62014-03-27 15:10:39 -0700100 status = efi_call_phys(efi_phys.set_virtual_address_map,
101 memory_map_size, descriptor_size,
102 descriptor_version, virtual_map);
Huang, Ying5b836832008-01-30 13:31:19 +0100103 efi_call_phys_epilog();
104 return status;
105}
106
David Vrabel35651842013-05-13 18:56:06 +0100107void efi_get_time(struct timespec *now)
Huang, Ying5b836832008-01-30 13:31:19 +0100108{
109 efi_status_t status;
110 efi_time_t eft;
111 efi_time_cap_t cap;
112
113 status = efi.get_time(&eft, &cap);
114 if (status != EFI_SUCCESS)
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800115 pr_err("Oops: efitime: can't read time!\n");
Huang, Ying5b836832008-01-30 13:31:19 +0100116
David Vrabel35651842013-05-13 18:56:06 +0100117 now->tv_sec = mktime(eft.year, eft.month, eft.day, eft.hour,
118 eft.minute, eft.second);
119 now->tv_nsec = 0;
Huang, Ying5b836832008-01-30 13:31:19 +0100120}
121
Paul Jackson69c91892008-05-14 08:15:58 -0700122/*
123 * Tell the kernel about the EFI memory map. This might include
124 * more than the max 128 entries that can fit in the e820 legacy
125 * (zeropage) memory map.
126 */
127
Paul Jackson200001e2008-06-25 05:44:46 -0700128static void __init do_add_efi_memmap(void)
Paul Jackson69c91892008-05-14 08:15:58 -0700129{
130 void *p;
131
132 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
133 efi_memory_desc_t *md = p;
134 unsigned long long start = md->phys_addr;
135 unsigned long long size = md->num_pages << EFI_PAGE_SHIFT;
136 int e820_type;
137
Cliff Wickmane2a71472009-06-16 16:43:40 -0500138 switch (md->type) {
139 case EFI_LOADER_CODE:
140 case EFI_LOADER_DATA:
141 case EFI_BOOT_SERVICES_CODE:
142 case EFI_BOOT_SERVICES_DATA:
143 case EFI_CONVENTIONAL_MEMORY:
144 if (md->attribute & EFI_MEMORY_WB)
145 e820_type = E820_RAM;
146 else
147 e820_type = E820_RESERVED;
148 break;
149 case EFI_ACPI_RECLAIM_MEMORY:
150 e820_type = E820_ACPI;
151 break;
152 case EFI_ACPI_MEMORY_NVS:
153 e820_type = E820_NVS;
154 break;
155 case EFI_UNUSABLE_MEMORY:
156 e820_type = E820_UNUSABLE;
157 break;
158 default:
159 /*
160 * EFI_RESERVED_TYPE EFI_RUNTIME_SERVICES_CODE
161 * EFI_RUNTIME_SERVICES_DATA EFI_MEMORY_MAPPED_IO
162 * EFI_MEMORY_MAPPED_IO_PORT_SPACE EFI_PAL_CODE
163 */
Paul Jackson69c91892008-05-14 08:15:58 -0700164 e820_type = E820_RESERVED;
Cliff Wickmane2a71472009-06-16 16:43:40 -0500165 break;
166 }
Yinghai Lud0be6bd2008-06-15 18:58:51 -0700167 e820_add_region(start, size, e820_type);
Paul Jackson69c91892008-05-14 08:15:58 -0700168 }
169 sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
170}
171
Olof Johansson1adbfa32012-02-12 13:24:29 -0800172int __init efi_memblock_x86_reserve_range(void)
Huang, Yingecacf092008-06-02 14:26:21 +0800173{
Borislav Petkov15b9c352013-03-01 17:07:44 +0100174 struct efi_info *e = &boot_params.efi_info;
Huang, Yingecacf092008-06-02 14:26:21 +0800175 unsigned long pmap;
176
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200177 if (efi_enabled(EFI_PARAVIRT))
178 return 0;
179
Paul Jackson05486fa2008-06-22 07:22:02 -0700180#ifdef CONFIG_X86_32
Olof Johansson1adbfa32012-02-12 13:24:29 -0800181 /* Can't handle data above 4GB at this time */
Borislav Petkov15b9c352013-03-01 17:07:44 +0100182 if (e->efi_memmap_hi) {
Olof Johansson1adbfa32012-02-12 13:24:29 -0800183 pr_err("Memory map is above 4GB, disabling EFI.\n");
184 return -EINVAL;
185 }
Borislav Petkov15b9c352013-03-01 17:07:44 +0100186 pmap = e->efi_memmap;
Paul Jackson05486fa2008-06-22 07:22:02 -0700187#else
Borislav Petkov15b9c352013-03-01 17:07:44 +0100188 pmap = (e->efi_memmap | ((__u64)e->efi_memmap_hi << 32));
Huang, Yingecacf092008-06-02 14:26:21 +0800189#endif
Borislav Petkov15b9c352013-03-01 17:07:44 +0100190 memmap.phys_map = (void *)pmap;
191 memmap.nr_map = e->efi_memmap_size /
192 e->efi_memdesc_size;
193 memmap.desc_size = e->efi_memdesc_size;
194 memmap.desc_version = e->efi_memdesc_version;
195
Tejun Heo24aa0782011-07-12 11:16:06 +0200196 memblock_reserve(pmap, memmap.nr_map * memmap.desc_size);
Olof Johansson1adbfa32012-02-12 13:24:29 -0800197
Leif Lindholm258f6fd2013-09-05 11:34:55 +0100198 efi.memmap = &memmap;
199
Olof Johansson1adbfa32012-02-12 13:24:29 -0800200 return 0;
Huang, Yingecacf092008-06-02 14:26:21 +0800201}
202
Huang, Ying5b836832008-01-30 13:31:19 +0100203static void __init print_efi_memmap(void)
204{
Borislav Petkovf4fccac2013-10-31 17:24:59 +0100205#ifdef EFI_DEBUG
Huang, Ying5b836832008-01-30 13:31:19 +0100206 efi_memory_desc_t *md;
207 void *p;
208 int i;
209
210 for (p = memmap.map, i = 0;
211 p < memmap.map_end;
212 p += memmap.desc_size, i++) {
213 md = p;
Joe Perches9b7d2042014-01-03 16:08:48 -0800214 pr_info("mem%02u: type=%u, attr=0x%llx, range=[0x%016llx-0x%016llx) (%lluMB)\n",
Huang, Ying5b836832008-01-30 13:31:19 +0100215 i, md->type, md->attribute, md->phys_addr,
216 md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT),
217 (md->num_pages >> (20 - EFI_PAGE_SHIFT)));
218 }
Huang, Ying5b836832008-01-30 13:31:19 +0100219#endif /* EFI_DEBUG */
Borislav Petkovf4fccac2013-10-31 17:24:59 +0100220}
Huang, Ying5b836832008-01-30 13:31:19 +0100221
Olof Johansson5189c2a2012-10-24 10:00:44 -0700222void __init efi_unmap_memmap(void)
Josh Triplett78510792012-09-28 17:55:44 -0700223{
Matt Fleming3e909592014-01-15 13:21:22 +0000224 clear_bit(EFI_MEMMAP, &efi.flags);
Josh Triplett78510792012-09-28 17:55:44 -0700225 if (memmap.map) {
Daniel Kiperabc93f82014-06-30 19:52:56 +0200226 early_memunmap(memmap.map, memmap.nr_map * memmap.desc_size);
Josh Triplett78510792012-09-28 17:55:44 -0700227 memmap.map = NULL;
228 }
229}
230
Olof Johansson140bf272012-02-12 13:24:28 -0800231static int __init efi_systab_init(void *phys)
Huang, Ying5b836832008-01-30 13:31:19 +0100232{
Matt Fleming83e68182012-11-14 09:42:35 +0000233 if (efi_enabled(EFI_64BIT)) {
Olof Johansson1adbfa32012-02-12 13:24:29 -0800234 efi_system_table_64_t *systab64;
Dave Young1fec0532013-12-20 18:02:19 +0800235 struct efi_setup_data *data = NULL;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800236 u64 tmp = 0;
237
Dave Young1fec0532013-12-20 18:02:19 +0800238 if (efi_setup) {
239 data = early_memremap(efi_setup, sizeof(*data));
240 if (!data)
241 return -ENOMEM;
242 }
Daniel Kiperabc93f82014-06-30 19:52:56 +0200243 systab64 = early_memremap((unsigned long)phys,
Olof Johansson1adbfa32012-02-12 13:24:29 -0800244 sizeof(*systab64));
245 if (systab64 == NULL) {
246 pr_err("Couldn't map the system table!\n");
Dave Young1fec0532013-12-20 18:02:19 +0800247 if (data)
Daniel Kiperabc93f82014-06-30 19:52:56 +0200248 early_memunmap(data, sizeof(*data));
Olof Johansson1adbfa32012-02-12 13:24:29 -0800249 return -ENOMEM;
250 }
251
252 efi_systab.hdr = systab64->hdr;
Dave Young1fec0532013-12-20 18:02:19 +0800253 efi_systab.fw_vendor = data ? (unsigned long)data->fw_vendor :
254 systab64->fw_vendor;
255 tmp |= data ? data->fw_vendor : systab64->fw_vendor;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800256 efi_systab.fw_revision = systab64->fw_revision;
257 efi_systab.con_in_handle = systab64->con_in_handle;
258 tmp |= systab64->con_in_handle;
259 efi_systab.con_in = systab64->con_in;
260 tmp |= systab64->con_in;
261 efi_systab.con_out_handle = systab64->con_out_handle;
262 tmp |= systab64->con_out_handle;
263 efi_systab.con_out = systab64->con_out;
264 tmp |= systab64->con_out;
265 efi_systab.stderr_handle = systab64->stderr_handle;
266 tmp |= systab64->stderr_handle;
267 efi_systab.stderr = systab64->stderr;
268 tmp |= systab64->stderr;
Dave Young1fec0532013-12-20 18:02:19 +0800269 efi_systab.runtime = data ?
270 (void *)(unsigned long)data->runtime :
271 (void *)(unsigned long)systab64->runtime;
272 tmp |= data ? data->runtime : systab64->runtime;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800273 efi_systab.boottime = (void *)(unsigned long)systab64->boottime;
274 tmp |= systab64->boottime;
275 efi_systab.nr_tables = systab64->nr_tables;
Dave Young1fec0532013-12-20 18:02:19 +0800276 efi_systab.tables = data ? (unsigned long)data->tables :
277 systab64->tables;
278 tmp |= data ? data->tables : systab64->tables;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800279
Daniel Kiperabc93f82014-06-30 19:52:56 +0200280 early_memunmap(systab64, sizeof(*systab64));
Dave Young1fec0532013-12-20 18:02:19 +0800281 if (data)
Daniel Kiperabc93f82014-06-30 19:52:56 +0200282 early_memunmap(data, sizeof(*data));
Olof Johansson1adbfa32012-02-12 13:24:29 -0800283#ifdef CONFIG_X86_32
284 if (tmp >> 32) {
285 pr_err("EFI data located above 4GB, disabling EFI.\n");
286 return -EINVAL;
287 }
288#endif
289 } else {
290 efi_system_table_32_t *systab32;
291
Daniel Kiperabc93f82014-06-30 19:52:56 +0200292 systab32 = early_memremap((unsigned long)phys,
Olof Johansson1adbfa32012-02-12 13:24:29 -0800293 sizeof(*systab32));
294 if (systab32 == NULL) {
295 pr_err("Couldn't map the system table!\n");
296 return -ENOMEM;
297 }
298
299 efi_systab.hdr = systab32->hdr;
300 efi_systab.fw_vendor = systab32->fw_vendor;
301 efi_systab.fw_revision = systab32->fw_revision;
302 efi_systab.con_in_handle = systab32->con_in_handle;
303 efi_systab.con_in = systab32->con_in;
304 efi_systab.con_out_handle = systab32->con_out_handle;
305 efi_systab.con_out = systab32->con_out;
306 efi_systab.stderr_handle = systab32->stderr_handle;
307 efi_systab.stderr = systab32->stderr;
308 efi_systab.runtime = (void *)(unsigned long)systab32->runtime;
309 efi_systab.boottime = (void *)(unsigned long)systab32->boottime;
310 efi_systab.nr_tables = systab32->nr_tables;
311 efi_systab.tables = systab32->tables;
312
Daniel Kiperabc93f82014-06-30 19:52:56 +0200313 early_memunmap(systab32, sizeof(*systab32));
Olof Johansson140bf272012-02-12 13:24:28 -0800314 }
Olof Johansson1adbfa32012-02-12 13:24:29 -0800315
Huang, Ying5b836832008-01-30 13:31:19 +0100316 efi.systab = &efi_systab;
317
318 /*
319 * Verify the EFI Table
320 */
Olof Johansson140bf272012-02-12 13:24:28 -0800321 if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800322 pr_err("System table signature incorrect!\n");
Olof Johansson140bf272012-02-12 13:24:28 -0800323 return -EINVAL;
324 }
Huang, Ying5b836832008-01-30 13:31:19 +0100325 if ((efi.systab->hdr.revision >> 16) == 0)
Joe Perches9b7d2042014-01-03 16:08:48 -0800326 pr_err("Warning: System table version %d.%02d, expected 1.00 or greater!\n",
Huang, Ying5b836832008-01-30 13:31:19 +0100327 efi.systab->hdr.revision >> 16,
328 efi.systab->hdr.revision & 0xffff);
Olof Johansson140bf272012-02-12 13:24:28 -0800329
Matt Fleming0f8093a2014-01-15 13:36:33 +0000330 set_bit(EFI_SYSTEM_TABLES, &efi.flags);
331
Olof Johansson140bf272012-02-12 13:24:28 -0800332 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800333}
Huang, Ying5b836832008-01-30 13:31:19 +0100334
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000335static int __init efi_runtime_init32(void)
336{
337 efi_runtime_services_32_t *runtime;
338
Daniel Kiperabc93f82014-06-30 19:52:56 +0200339 runtime = early_memremap((unsigned long)efi.systab->runtime,
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000340 sizeof(efi_runtime_services_32_t));
341 if (!runtime) {
342 pr_err("Could not map the runtime service table!\n");
343 return -ENOMEM;
344 }
345
346 /*
347 * We will only need *early* access to the following two
348 * EFI runtime services before set_virtual_address_map
349 * is invoked.
350 */
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000351 efi_phys.set_virtual_address_map =
352 (efi_set_virtual_address_map_t *)
353 (unsigned long)runtime->set_virtual_address_map;
Daniel Kiperabc93f82014-06-30 19:52:56 +0200354 early_memunmap(runtime, sizeof(efi_runtime_services_32_t));
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000355
356 return 0;
357}
358
359static int __init efi_runtime_init64(void)
360{
361 efi_runtime_services_64_t *runtime;
362
Daniel Kiperabc93f82014-06-30 19:52:56 +0200363 runtime = early_memremap((unsigned long)efi.systab->runtime,
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000364 sizeof(efi_runtime_services_64_t));
365 if (!runtime) {
366 pr_err("Could not map the runtime service table!\n");
367 return -ENOMEM;
368 }
369
370 /*
371 * We will only need *early* access to the following two
372 * EFI runtime services before set_virtual_address_map
373 * is invoked.
374 */
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000375 efi_phys.set_virtual_address_map =
376 (efi_set_virtual_address_map_t *)
377 (unsigned long)runtime->set_virtual_address_map;
Daniel Kiperabc93f82014-06-30 19:52:56 +0200378 early_memunmap(runtime, sizeof(efi_runtime_services_64_t));
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000379
380 return 0;
381}
382
Olof Johansson140bf272012-02-12 13:24:28 -0800383static int __init efi_runtime_init(void)
Olof Johansson83e7ee62012-02-12 13:24:25 -0800384{
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000385 int rv;
Huang, Ying5b836832008-01-30 13:31:19 +0100386
387 /*
388 * Check out the runtime services table. We need to map
389 * the runtime services table so that we can grab the physical
390 * address of several of the EFI runtime functions, needed to
391 * set the firmware into virtual mode.
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200392 *
393 * When EFI_PARAVIRT is in force then we could not map runtime
394 * service memory region because we do not have direct access to it.
395 * However, runtime services are available through proxy functions
396 * (e.g. in case of Xen dom0 EFI implementation they call special
397 * hypercall which executes relevant EFI functions) and that is why
398 * they are always enabled.
Huang, Ying5b836832008-01-30 13:31:19 +0100399 */
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000400
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200401 if (!efi_enabled(EFI_PARAVIRT)) {
402 if (efi_enabled(EFI_64BIT))
403 rv = efi_runtime_init64();
404 else
405 rv = efi_runtime_init32();
406
407 if (rv)
408 return rv;
409 }
Olof Johansson140bf272012-02-12 13:24:28 -0800410
Matt Fleming0f8093a2014-01-15 13:36:33 +0000411 set_bit(EFI_RUNTIME_SERVICES, &efi.flags);
412
Olof Johansson140bf272012-02-12 13:24:28 -0800413 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800414}
Huang, Ying5b836832008-01-30 13:31:19 +0100415
Olof Johansson140bf272012-02-12 13:24:28 -0800416static int __init efi_memmap_init(void)
Olof Johansson83e7ee62012-02-12 13:24:25 -0800417{
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200418 if (efi_enabled(EFI_PARAVIRT))
419 return 0;
420
Huang, Ying5b836832008-01-30 13:31:19 +0100421 /* Map the EFI memory map */
Daniel Kiperabc93f82014-06-30 19:52:56 +0200422 memmap.map = early_memremap((unsigned long)memmap.phys_map,
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100423 memmap.nr_map * memmap.desc_size);
Olof Johansson140bf272012-02-12 13:24:28 -0800424 if (memmap.map == NULL) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800425 pr_err("Could not map the memory map!\n");
Olof Johansson140bf272012-02-12 13:24:28 -0800426 return -ENOMEM;
427 }
Huang, Ying5b836832008-01-30 13:31:19 +0100428 memmap.map_end = memmap.map + (memmap.nr_map * memmap.desc_size);
Russ Anderson175e4382008-10-02 17:32:06 -0500429
Paul Jackson200001e2008-06-25 05:44:46 -0700430 if (add_efi_memmap)
431 do_add_efi_memmap();
Olof Johansson140bf272012-02-12 13:24:28 -0800432
Matt Fleming0f8093a2014-01-15 13:36:33 +0000433 set_bit(EFI_MEMMAP, &efi.flags);
434
Olof Johansson140bf272012-02-12 13:24:28 -0800435 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800436}
437
438void __init efi_init(void)
439{
440 efi_char16_t *c16;
441 char vendor[100] = "unknown";
442 int i = 0;
443 void *tmp;
444
445#ifdef CONFIG_X86_32
Olof Johansson1adbfa32012-02-12 13:24:29 -0800446 if (boot_params.efi_info.efi_systab_hi ||
447 boot_params.efi_info.efi_memmap_hi) {
448 pr_info("Table located above 4GB, disabling EFI.\n");
Olof Johansson1adbfa32012-02-12 13:24:29 -0800449 return;
450 }
Olof Johansson83e7ee62012-02-12 13:24:25 -0800451 efi_phys.systab = (efi_system_table_t *)boot_params.efi_info.efi_systab;
452#else
453 efi_phys.systab = (efi_system_table_t *)
Olof Johansson1adbfa32012-02-12 13:24:29 -0800454 (boot_params.efi_info.efi_systab |
455 ((__u64)boot_params.efi_info.efi_systab_hi<<32));
Olof Johansson83e7ee62012-02-12 13:24:25 -0800456#endif
457
Matt Fleming83e68182012-11-14 09:42:35 +0000458 if (efi_systab_init(efi_phys.systab))
Olof Johansson140bf272012-02-12 13:24:28 -0800459 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000460
Dave Younga0998eb2013-12-20 18:02:17 +0800461 efi.config_table = (unsigned long)efi.systab->tables;
462 efi.fw_vendor = (unsigned long)efi.systab->fw_vendor;
463 efi.runtime = (unsigned long)efi.systab->runtime;
464
Olof Johansson83e7ee62012-02-12 13:24:25 -0800465 /*
466 * Show what we know for posterity
467 */
Daniel Kiperabc93f82014-06-30 19:52:56 +0200468 c16 = tmp = early_memremap(efi.systab->fw_vendor, 2);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800469 if (c16) {
470 for (i = 0; i < sizeof(vendor) - 1 && *c16; ++i)
471 vendor[i] = *c16++;
472 vendor[i] = '\0';
473 } else
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800474 pr_err("Could not map the firmware vendor!\n");
Daniel Kiperabc93f82014-06-30 19:52:56 +0200475 early_memunmap(tmp, 2);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800476
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800477 pr_info("EFI v%u.%.02u by %s\n",
478 efi.systab->hdr.revision >> 16,
479 efi.systab->hdr.revision & 0xffff, vendor);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800480
Dave Young1fec0532013-12-20 18:02:19 +0800481 if (efi_reuse_config(efi.systab->tables, efi.systab->nr_tables))
482 return;
483
Leif Lindholm272686b2013-09-05 11:34:54 +0100484 if (efi_config_init(arch_tables))
Olof Johansson140bf272012-02-12 13:24:28 -0800485 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000486
Olof Johansson1adbfa32012-02-12 13:24:29 -0800487 /*
488 * Note: We currently don't support runtime services on an EFI
489 * that doesn't match the kernel 32/64-bit mode.
490 */
491
Matt Fleming7d453ee2014-01-10 18:52:06 +0000492 if (!efi_runtime_supported())
Olof Johansson1adbfa32012-02-12 13:24:29 -0800493 pr_info("No EFI runtime due to 32/64-bit mismatch with kernel\n");
Matt Fleming83e68182012-11-14 09:42:35 +0000494 else {
Matt Flemingfb834c72013-02-20 20:36:12 +0000495 if (disable_runtime || efi_runtime_init())
Matt Fleming83e68182012-11-14 09:42:35 +0000496 return;
Olof Johansson140bf272012-02-12 13:24:28 -0800497 }
Matt Fleming83e68182012-11-14 09:42:35 +0000498 if (efi_memmap_init())
Olof Johansson140bf272012-02-12 13:24:28 -0800499 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000500
Huang, Ying5b836832008-01-30 13:31:19 +0100501 print_efi_memmap();
Huang, Ying5b836832008-01-30 13:31:19 +0100502}
503
Josh Triplett2223af32012-09-28 17:57:05 -0700504void __init efi_late_init(void)
505{
506 efi_bgrt_init();
507}
508
Matthew Garrett9cd2b072011-05-05 15:19:43 -0400509void __init efi_set_executable(efi_memory_desc_t *md, bool executable)
510{
511 u64 addr, npages;
512
513 addr = md->virt_addr;
514 npages = md->num_pages;
515
516 memrange_efi_to_native(&addr, &npages);
517
518 if (executable)
519 set_memory_x(addr, npages);
520 else
521 set_memory_nx(addr, npages);
522}
523
Borislav Petkovc55d0162014-02-14 08:24:24 +0100524void __init runtime_code_page_mkexec(void)
Huang, Yinga2172e22008-01-30 13:33:55 +0100525{
526 efi_memory_desc_t *md;
Huang, Yinga2172e22008-01-30 13:33:55 +0100527 void *p;
528
Huang, Yinga2172e22008-01-30 13:33:55 +0100529 /* Make EFI runtime service code area executable */
530 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
531 md = p;
Huang, Ying1c083eb2008-02-04 16:48:06 +0100532
533 if (md->type != EFI_RUNTIME_SERVICES_CODE)
534 continue;
535
Matthew Garrett9cd2b072011-05-05 15:19:43 -0400536 efi_set_executable(md, true);
Huang, Yinga2172e22008-01-30 13:33:55 +0100537 }
Huang, Yinga2172e22008-01-30 13:33:55 +0100538}
Huang, Yinga2172e22008-01-30 13:33:55 +0100539
Matt Fleming3e8fa262012-10-19 13:25:46 +0100540void efi_memory_uc(u64 addr, unsigned long size)
541{
542 unsigned long page_shift = 1UL << EFI_PAGE_SHIFT;
543 u64 npages;
544
545 npages = round_up(size, page_shift) / page_shift;
546 memrange_efi_to_native(&addr, &npages);
547 set_memory_uc(addr, npages);
548}
549
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100550void __init old_map_region(efi_memory_desc_t *md)
551{
552 u64 start_pfn, end_pfn, end;
553 unsigned long size;
554 void *va;
555
556 start_pfn = PFN_DOWN(md->phys_addr);
557 size = md->num_pages << PAGE_SHIFT;
558 end = md->phys_addr + size;
559 end_pfn = PFN_UP(end);
560
561 if (pfn_range_is_mapped(start_pfn, end_pfn)) {
562 va = __va(md->phys_addr);
563
564 if (!(md->attribute & EFI_MEMORY_WB))
565 efi_memory_uc((u64)(unsigned long)va, size);
566 } else
567 va = efi_ioremap(md->phys_addr, size,
568 md->type, md->attribute);
569
570 md->virt_addr = (u64) (unsigned long) va;
571 if (!va)
572 pr_err("ioremap of 0x%llX failed!\n",
573 (unsigned long long)md->phys_addr);
574}
575
Dave Young481f75c2013-12-20 18:02:16 +0800576/* Merge contiguous regions of the same type and attribute */
577static void __init efi_merge_regions(void)
Huang, Ying5b836832008-01-30 13:31:19 +0100578{
Dave Young481f75c2013-12-20 18:02:16 +0800579 void *p;
Matthew Garrett202f9d02011-05-05 15:19:44 -0400580 efi_memory_desc_t *md, *prev_md = NULL;
Huang, Ying5b836832008-01-30 13:31:19 +0100581
Matthew Garrett202f9d02011-05-05 15:19:44 -0400582 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
583 u64 prev_size;
584 md = p;
585
586 if (!prev_md) {
587 prev_md = md;
588 continue;
589 }
590
591 if (prev_md->type != md->type ||
592 prev_md->attribute != md->attribute) {
593 prev_md = md;
594 continue;
595 }
596
597 prev_size = prev_md->num_pages << EFI_PAGE_SHIFT;
598
599 if (md->phys_addr == (prev_md->phys_addr + prev_size)) {
600 prev_md->num_pages += md->num_pages;
601 md->type = EFI_RESERVED_TYPE;
602 md->attribute = 0;
603 continue;
604 }
605 prev_md = md;
606 }
Dave Young481f75c2013-12-20 18:02:16 +0800607}
608
609static void __init get_systab_virt_addr(efi_memory_desc_t *md)
610{
611 unsigned long size;
612 u64 end, systab;
613
614 size = md->num_pages << EFI_PAGE_SHIFT;
615 end = md->phys_addr + size;
616 systab = (u64)(unsigned long)efi_phys.systab;
617 if (md->phys_addr <= systab && systab < end) {
618 systab += md->virt_addr - md->phys_addr;
619 efi.systab = (efi_system_table_t *)(unsigned long)systab;
620 }
621}
622
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100623static void __init save_runtime_map(void)
Dave Young926172d2013-12-20 18:02:18 +0800624{
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100625#ifdef CONFIG_KEXEC
Dave Young926172d2013-12-20 18:02:18 +0800626 efi_memory_desc_t *md;
627 void *tmp, *p, *q = NULL;
628 int count = 0;
629
Dave Younga3530e82014-05-30 11:20:10 +0800630 if (efi_enabled(EFI_OLD_MEMMAP))
631 return;
632
Dave Young926172d2013-12-20 18:02:18 +0800633 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
634 md = p;
635
636 if (!(md->attribute & EFI_MEMORY_RUNTIME) ||
637 (md->type == EFI_BOOT_SERVICES_CODE) ||
638 (md->type == EFI_BOOT_SERVICES_DATA))
639 continue;
640 tmp = krealloc(q, (count + 1) * memmap.desc_size, GFP_KERNEL);
641 if (!tmp)
642 goto out;
643 q = tmp;
644
645 memcpy(q + count * memmap.desc_size, md, memmap.desc_size);
646 count++;
647 }
648
Matt Fleming518548a2013-12-21 16:09:46 +0000649 efi_runtime_map_setup(q, count, memmap.desc_size);
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100650 return;
Dave Young926172d2013-12-20 18:02:18 +0800651
Dave Young926172d2013-12-20 18:02:18 +0800652out:
653 kfree(q);
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100654 pr_err("Error saving runtime map, efi runtime on kexec non-functional!!\n");
655#endif
Dave Young1fec0532013-12-20 18:02:19 +0800656}
657
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100658static void *realloc_pages(void *old_memmap, int old_shift)
Dave Young481f75c2013-12-20 18:02:16 +0800659{
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100660 void *ret;
661
662 ret = (void *)__get_free_pages(GFP_KERNEL, old_shift + 1);
663 if (!ret)
664 goto out;
665
666 /*
667 * A first-time allocation doesn't have anything to copy.
668 */
669 if (!old_memmap)
670 return ret;
671
672 memcpy(ret, old_memmap, PAGE_SIZE << old_shift);
673
674out:
675 free_pages((unsigned long)old_memmap, old_shift);
676 return ret;
677}
678
679/*
680 * Map the efi memory ranges of the runtime services and update new_mmap with
681 * virtual addresses.
682 */
683static void * __init efi_map_regions(int *count, int *pg_shift)
684{
685 void *p, *new_memmap = NULL;
686 unsigned long left = 0;
Dave Young481f75c2013-12-20 18:02:16 +0800687 efi_memory_desc_t *md;
Matthew Garrett202f9d02011-05-05 15:19:44 -0400688
Huang, Ying5b836832008-01-30 13:31:19 +0100689 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
690 md = p;
Josh Boyer70087012013-04-18 07:51:34 -0700691 if (!(md->attribute & EFI_MEMORY_RUNTIME)) {
692#ifdef CONFIG_X86_64
693 if (md->type != EFI_BOOT_SERVICES_CODE &&
694 md->type != EFI_BOOT_SERVICES_DATA)
695#endif
696 continue;
697 }
Huang, Ying1c083eb2008-02-04 16:48:06 +0100698
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100699 efi_map_region(md);
Dave Young481f75c2013-12-20 18:02:16 +0800700 get_systab_virt_addr(md);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100701
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100702 if (left < memmap.desc_size) {
703 new_memmap = realloc_pages(new_memmap, *pg_shift);
704 if (!new_memmap)
705 return NULL;
706
707 left += PAGE_SIZE << *pg_shift;
708 (*pg_shift)++;
709 }
710
Dave Young481f75c2013-12-20 18:02:16 +0800711 memcpy(new_memmap + (*count * memmap.desc_size), md,
Matthew Garrett7cb00b72011-05-05 15:19:45 -0400712 memmap.desc_size);
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100713
714 left -= memmap.desc_size;
Dave Young481f75c2013-12-20 18:02:16 +0800715 (*count)++;
716 }
717
718 return new_memmap;
Dave Young481f75c2013-12-20 18:02:16 +0800719}
720
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100721static void __init kexec_enter_virtual_mode(void)
722{
723#ifdef CONFIG_KEXEC
724 efi_memory_desc_t *md;
725 void *p;
726
727 efi.systab = NULL;
728
729 /*
730 * We don't do virtual mode, since we don't do runtime services, on
731 * non-native EFI
732 */
733 if (!efi_is_native()) {
734 efi_unmap_memmap();
735 return;
736 }
737
738 /*
739 * Map efi regions which were passed via setup_data. The virt_addr is a
740 * fixed addr which was used in first kernel of a kexec boot.
741 */
742 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
743 md = p;
744 efi_map_region_fixed(md); /* FIXME: add error handling */
745 get_systab_virt_addr(md);
746 }
747
748 save_runtime_map();
749
750 BUG_ON(!efi.systab);
751
752 efi_sync_low_kernel_mappings();
753
754 /*
755 * Now that EFI is in virtual mode, update the function
756 * pointers in the runtime service table to the new virtual addresses.
757 *
758 * Call EFI services through wrapper functions.
759 */
760 efi.runtime_version = efi_systab.hdr.revision;
Matt Fleming994448f2014-03-05 18:15:37 +0000761
Ard Biesheuvel022ee6c2014-06-26 12:09:05 +0200762 efi_native_runtime_setup();
Matt Fleming994448f2014-03-05 18:15:37 +0000763
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100764 efi.set_virtual_address_map = NULL;
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100765
766 if (efi_enabled(EFI_OLD_MEMMAP) && (__supported_pte_mask & _PAGE_NX))
767 runtime_code_page_mkexec();
768
769 /* clean DUMMY object */
Saurabh Tangrieeb9db02014-06-02 05:18:35 -0700770 efi_delete_dummy_variable();
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100771#endif
772}
773
Dave Young481f75c2013-12-20 18:02:16 +0800774/*
775 * This function will switch the EFI runtime services to virtual mode.
776 * Essentially, we look through the EFI memmap and map every region that
777 * has the runtime attribute bit set in its memory descriptor into the
778 * ->trampoline_pgd page table using a top-down VA allocation scheme.
779 *
780 * The old method which used to update that memory descriptor with the
781 * virtual address obtained from ioremap() is still supported when the
782 * kernel is booted with efi=old_map on its command line. Same old
783 * method enabled the runtime services to be called without having to
784 * thunk back into physical mode for every invocation.
785 *
786 * The new method does a pagetable switch in a preemption-safe manner
787 * so that we're in a different address space when calling a runtime
788 * function. For function arguments passing we do copy the PGDs of the
789 * kernel page table into ->trampoline_pgd prior to each call.
Dave Young1fec0532013-12-20 18:02:19 +0800790 *
791 * Specially for kexec boot, efi runtime maps in previous kernel should
792 * be passed in via setup_data. In that case runtime ranges will be mapped
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100793 * to the same virtual addresses as the first kernel, see
794 * kexec_enter_virtual_mode().
Dave Young481f75c2013-12-20 18:02:16 +0800795 */
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100796static void __init __efi_enter_virtual_mode(void)
Dave Young481f75c2013-12-20 18:02:16 +0800797{
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100798 int count = 0, pg_shift = 0;
Dave Young481f75c2013-12-20 18:02:16 +0800799 void *new_memmap = NULL;
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100800 efi_status_t status;
Dave Young481f75c2013-12-20 18:02:16 +0800801
802 efi.systab = NULL;
803
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100804 efi_merge_regions();
805 new_memmap = efi_map_regions(&count, &pg_shift);
806 if (!new_memmap) {
807 pr_err("Error reallocating memory, EFI runtime non-functional!\n");
808 return;
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100809 }
Dave Young926172d2013-12-20 18:02:18 +0800810
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100811 save_runtime_map();
812
Huang, Ying5b836832008-01-30 13:31:19 +0100813 BUG_ON(!efi.systab);
814
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100815 if (efi_setup_page_tables(__pa(new_memmap), 1 << pg_shift))
816 return;
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100817
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100818 efi_sync_low_kernel_mappings();
Borislav Petkov11cc8512014-01-18 12:48:15 +0100819 efi_dump_pagetable();
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100820
Matt Fleming994448f2014-03-05 18:15:37 +0000821 if (efi_is_native()) {
822 status = phys_efi_set_virtual_address_map(
823 memmap.desc_size * count,
824 memmap.desc_size,
825 memmap.desc_version,
826 (efi_memory_desc_t *)__pa(new_memmap));
827 } else {
828 status = efi_thunk_set_virtual_address_map(
829 efi_phys.set_virtual_address_map,
830 memmap.desc_size * count,
831 memmap.desc_size,
832 memmap.desc_version,
833 (efi_memory_desc_t *)__pa(new_memmap));
834 }
Huang, Ying5b836832008-01-30 13:31:19 +0100835
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100836 if (status != EFI_SUCCESS) {
837 pr_alert("Unable to switch EFI into virtual mode (status=%lx)!\n",
838 status);
839 panic("EFI call to SetVirtualAddressMap() failed!");
Huang, Ying5b836832008-01-30 13:31:19 +0100840 }
841
842 /*
843 * Now that EFI is in virtual mode, update the function
844 * pointers in the runtime service table to the new virtual addresses.
845 *
846 * Call EFI services through wrapper functions.
847 */
Matt Fleming712ba9e2013-01-25 10:07:25 +0000848 efi.runtime_version = efi_systab.hdr.revision;
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000849
850 if (efi_is_native())
Ard Biesheuvel022ee6c2014-06-26 12:09:05 +0200851 efi_native_runtime_setup();
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000852 else
853 efi_thunk_runtime_setup();
854
Matthew Garrett2b5e8ef2011-05-05 15:19:42 -0400855 efi.set_virtual_address_map = NULL;
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100856
Borislav Petkovc55d0162014-02-14 08:24:24 +0100857 efi_runtime_mkexec();
Olof Johansson1adbfa32012-02-12 13:24:29 -0800858
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100859 /*
860 * We mapped the descriptor array into the EFI pagetable above but we're
861 * not unmapping it here. Here's why:
862 *
863 * We're copying select PGDs from the kernel page table to the EFI page
864 * table and when we do so and make changes to those PGDs like unmapping
865 * stuff from them, those changes appear in the kernel page table and we
866 * go boom.
867 *
868 * From setup_real_mode():
869 *
870 * ...
871 * trampoline_pgd[0] = init_level4_pgt[pgd_index(__PAGE_OFFSET)].pgd;
872 *
873 * In this particular case, our allocation is in PGD 0 of the EFI page
874 * table but we've copied that PGD from PGD[272] of the EFI page table:
875 *
876 * pgd_index(__PAGE_OFFSET = 0xffff880000000000) = 272
877 *
878 * where the direct memory mapping in kernel space is.
879 *
880 * new_memmap's VA comes from that direct mapping and thus clearing it,
881 * it would get cleared in the kernel page table too.
882 *
883 * efi_cleanup_page_tables(__pa(new_memmap), 1 << pg_shift);
884 */
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100885 free_pages((unsigned long)new_memmap, pg_shift);
Matthew Garrettf8b84042013-06-01 16:06:20 -0400886
887 /* clean DUMMY object */
Saurabh Tangrieeb9db02014-06-02 05:18:35 -0700888 efi_delete_dummy_variable();
Huang, Ying5b836832008-01-30 13:31:19 +0100889}
890
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100891void __init efi_enter_virtual_mode(void)
892{
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200893 if (efi_enabled(EFI_PARAVIRT))
894 return;
895
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100896 if (efi_setup)
897 kexec_enter_virtual_mode();
898 else
899 __efi_enter_virtual_mode();
900}
901
Huang, Ying5b836832008-01-30 13:31:19 +0100902/*
903 * Convenience functions to obtain memory types and attributes
904 */
905u32 efi_mem_type(unsigned long phys_addr)
906{
907 efi_memory_desc_t *md;
908 void *p;
909
Matt Fleming83e68182012-11-14 09:42:35 +0000910 if (!efi_enabled(EFI_MEMMAP))
911 return 0;
912
Huang, Ying5b836832008-01-30 13:31:19 +0100913 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
914 md = p;
915 if ((md->phys_addr <= phys_addr) &&
916 (phys_addr < (md->phys_addr +
917 (md->num_pages << EFI_PAGE_SHIFT))))
918 return md->type;
919 }
920 return 0;
921}
922
923u64 efi_mem_attributes(unsigned long phys_addr)
924{
925 efi_memory_desc_t *md;
926 void *p;
927
Daniel Kiper67a9b9c2014-06-30 19:52:57 +0200928 if (!efi_enabled(EFI_MEMMAP))
929 return 0;
930
Huang, Ying5b836832008-01-30 13:31:19 +0100931 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
932 md = p;
933 if ((md->phys_addr <= phys_addr) &&
934 (phys_addr < (md->phys_addr +
935 (md->num_pages << EFI_PAGE_SHIFT))))
936 return md->attribute;
937 }
938 return 0;
939}
Matt Fleminga6e4d5a2013-03-25 09:14:30 +0000940
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100941static int __init parse_efi_cmdline(char *str)
942{
943 if (*str == '=')
944 str++;
945
Matt Fleming5a17dae2014-08-05 11:52:11 +0100946 while (*str) {
947 if (!strncmp(str, "old_map", 7)) {
948 set_bit(EFI_OLD_MEMMAP, &efi.flags);
949 str += strlen("old_map");
950 }
951
952 /*
953 * Skip any options we don't understand. Presumably
954 * they apply to the EFI boot stub.
955 */
956 while (*str && *str != ',')
957 str++;
958
959 /* If we hit a delimiter, skip it */
960 if (*str == ',')
961 str++;
962 }
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100963
964 return 0;
965}
966early_param("efi", parse_efi_cmdline);