blob: e859d56ce9f88661963b9ff679cb3f7b8593c9c4 [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
Mathias Krause60920682014-09-07 19:42:15 +020073static int add_efi_memmap __initdata;
Paul Jackson200001e2008-06-25 05:44:46 -070074static int __init setup_add_efi_memmap(char *arg)
75{
76 add_efi_memmap = 1;
77 return 0;
78}
79early_param("add_efi_memmap", setup_add_efi_memmap);
80
Huang, Ying5b836832008-01-30 13:31:19 +010081static efi_status_t __init phys_efi_set_virtual_address_map(
82 unsigned long memory_map_size,
83 unsigned long descriptor_size,
84 u32 descriptor_version,
85 efi_memory_desc_t *virtual_map)
86{
87 efi_status_t status;
88
Mathias Krause4e78eb052014-09-07 19:42:17 +020089 efi_call_phys_prolog();
Matt Fleming62fa6e62014-03-27 15:10:39 -070090 status = efi_call_phys(efi_phys.set_virtual_address_map,
91 memory_map_size, descriptor_size,
92 descriptor_version, virtual_map);
Huang, Ying5b836832008-01-30 13:31:19 +010093 efi_call_phys_epilog();
94 return status;
95}
96
David Vrabel35651842013-05-13 18:56:06 +010097void efi_get_time(struct timespec *now)
Huang, Ying5b836832008-01-30 13:31:19 +010098{
99 efi_status_t status;
100 efi_time_t eft;
101 efi_time_cap_t cap;
102
103 status = efi.get_time(&eft, &cap);
104 if (status != EFI_SUCCESS)
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800105 pr_err("Oops: efitime: can't read time!\n");
Huang, Ying5b836832008-01-30 13:31:19 +0100106
David Vrabel35651842013-05-13 18:56:06 +0100107 now->tv_sec = mktime(eft.year, eft.month, eft.day, eft.hour,
108 eft.minute, eft.second);
109 now->tv_nsec = 0;
Huang, Ying5b836832008-01-30 13:31:19 +0100110}
111
Paul Jackson69c91892008-05-14 08:15:58 -0700112/*
113 * Tell the kernel about the EFI memory map. This might include
114 * more than the max 128 entries that can fit in the e820 legacy
115 * (zeropage) memory map.
116 */
117
Paul Jackson200001e2008-06-25 05:44:46 -0700118static void __init do_add_efi_memmap(void)
Paul Jackson69c91892008-05-14 08:15:58 -0700119{
120 void *p;
121
122 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
123 efi_memory_desc_t *md = p;
124 unsigned long long start = md->phys_addr;
125 unsigned long long size = md->num_pages << EFI_PAGE_SHIFT;
126 int e820_type;
127
Cliff Wickmane2a71472009-06-16 16:43:40 -0500128 switch (md->type) {
129 case EFI_LOADER_CODE:
130 case EFI_LOADER_DATA:
131 case EFI_BOOT_SERVICES_CODE:
132 case EFI_BOOT_SERVICES_DATA:
133 case EFI_CONVENTIONAL_MEMORY:
134 if (md->attribute & EFI_MEMORY_WB)
135 e820_type = E820_RAM;
136 else
137 e820_type = E820_RESERVED;
138 break;
139 case EFI_ACPI_RECLAIM_MEMORY:
140 e820_type = E820_ACPI;
141 break;
142 case EFI_ACPI_MEMORY_NVS:
143 e820_type = E820_NVS;
144 break;
145 case EFI_UNUSABLE_MEMORY:
146 e820_type = E820_UNUSABLE;
147 break;
148 default:
149 /*
150 * EFI_RESERVED_TYPE EFI_RUNTIME_SERVICES_CODE
151 * EFI_RUNTIME_SERVICES_DATA EFI_MEMORY_MAPPED_IO
152 * EFI_MEMORY_MAPPED_IO_PORT_SPACE EFI_PAL_CODE
153 */
Paul Jackson69c91892008-05-14 08:15:58 -0700154 e820_type = E820_RESERVED;
Cliff Wickmane2a71472009-06-16 16:43:40 -0500155 break;
156 }
Yinghai Lud0be6bd2008-06-15 18:58:51 -0700157 e820_add_region(start, size, e820_type);
Paul Jackson69c91892008-05-14 08:15:58 -0700158 }
159 sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
160}
161
Olof Johansson1adbfa32012-02-12 13:24:29 -0800162int __init efi_memblock_x86_reserve_range(void)
Huang, Yingecacf092008-06-02 14:26:21 +0800163{
Borislav Petkov15b9c352013-03-01 17:07:44 +0100164 struct efi_info *e = &boot_params.efi_info;
Huang, Yingecacf092008-06-02 14:26:21 +0800165 unsigned long pmap;
166
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200167 if (efi_enabled(EFI_PARAVIRT))
168 return 0;
169
Paul Jackson05486fa2008-06-22 07:22:02 -0700170#ifdef CONFIG_X86_32
Olof Johansson1adbfa32012-02-12 13:24:29 -0800171 /* Can't handle data above 4GB at this time */
Borislav Petkov15b9c352013-03-01 17:07:44 +0100172 if (e->efi_memmap_hi) {
Olof Johansson1adbfa32012-02-12 13:24:29 -0800173 pr_err("Memory map is above 4GB, disabling EFI.\n");
174 return -EINVAL;
175 }
Borislav Petkov15b9c352013-03-01 17:07:44 +0100176 pmap = e->efi_memmap;
Paul Jackson05486fa2008-06-22 07:22:02 -0700177#else
Borislav Petkov15b9c352013-03-01 17:07:44 +0100178 pmap = (e->efi_memmap | ((__u64)e->efi_memmap_hi << 32));
Huang, Yingecacf092008-06-02 14:26:21 +0800179#endif
Borislav Petkov15b9c352013-03-01 17:07:44 +0100180 memmap.phys_map = (void *)pmap;
181 memmap.nr_map = e->efi_memmap_size /
182 e->efi_memdesc_size;
183 memmap.desc_size = e->efi_memdesc_size;
184 memmap.desc_version = e->efi_memdesc_version;
185
Tejun Heo24aa0782011-07-12 11:16:06 +0200186 memblock_reserve(pmap, memmap.nr_map * memmap.desc_size);
Olof Johansson1adbfa32012-02-12 13:24:29 -0800187
Leif Lindholm258f6fd2013-09-05 11:34:55 +0100188 efi.memmap = &memmap;
189
Olof Johansson1adbfa32012-02-12 13:24:29 -0800190 return 0;
Huang, Yingecacf092008-06-02 14:26:21 +0800191}
192
Huang, Ying5b836832008-01-30 13:31:19 +0100193static void __init print_efi_memmap(void)
194{
Borislav Petkovf4fccac2013-10-31 17:24:59 +0100195#ifdef EFI_DEBUG
Huang, Ying5b836832008-01-30 13:31:19 +0100196 efi_memory_desc_t *md;
197 void *p;
198 int i;
199
200 for (p = memmap.map, i = 0;
201 p < memmap.map_end;
202 p += memmap.desc_size, i++) {
Laszlo Ersekace1d122014-09-03 13:32:21 +0200203 char buf[64];
204
Huang, Ying5b836832008-01-30 13:31:19 +0100205 md = p;
Laszlo Ersekace1d122014-09-03 13:32:21 +0200206 pr_info("mem%02u: %s range=[0x%016llx-0x%016llx) (%lluMB)\n",
207 i, efi_md_typeattr_format(buf, sizeof(buf), md),
208 md->phys_addr,
Huang, Ying5b836832008-01-30 13:31:19 +0100209 md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT),
210 (md->num_pages >> (20 - EFI_PAGE_SHIFT)));
211 }
Huang, Ying5b836832008-01-30 13:31:19 +0100212#endif /* EFI_DEBUG */
Borislav Petkovf4fccac2013-10-31 17:24:59 +0100213}
Huang, Ying5b836832008-01-30 13:31:19 +0100214
Olof Johansson5189c2a2012-10-24 10:00:44 -0700215void __init efi_unmap_memmap(void)
Josh Triplett78510792012-09-28 17:55:44 -0700216{
Matt Fleming3e909592014-01-15 13:21:22 +0000217 clear_bit(EFI_MEMMAP, &efi.flags);
Josh Triplett78510792012-09-28 17:55:44 -0700218 if (memmap.map) {
Daniel Kiperabc93f82014-06-30 19:52:56 +0200219 early_memunmap(memmap.map, memmap.nr_map * memmap.desc_size);
Josh Triplett78510792012-09-28 17:55:44 -0700220 memmap.map = NULL;
221 }
222}
223
Olof Johansson140bf272012-02-12 13:24:28 -0800224static int __init efi_systab_init(void *phys)
Huang, Ying5b836832008-01-30 13:31:19 +0100225{
Matt Fleming83e68182012-11-14 09:42:35 +0000226 if (efi_enabled(EFI_64BIT)) {
Olof Johansson1adbfa32012-02-12 13:24:29 -0800227 efi_system_table_64_t *systab64;
Dave Young1fec0532013-12-20 18:02:19 +0800228 struct efi_setup_data *data = NULL;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800229 u64 tmp = 0;
230
Dave Young1fec0532013-12-20 18:02:19 +0800231 if (efi_setup) {
232 data = early_memremap(efi_setup, sizeof(*data));
233 if (!data)
234 return -ENOMEM;
235 }
Daniel Kiperabc93f82014-06-30 19:52:56 +0200236 systab64 = early_memremap((unsigned long)phys,
Olof Johansson1adbfa32012-02-12 13:24:29 -0800237 sizeof(*systab64));
238 if (systab64 == NULL) {
239 pr_err("Couldn't map the system table!\n");
Dave Young1fec0532013-12-20 18:02:19 +0800240 if (data)
Daniel Kiperabc93f82014-06-30 19:52:56 +0200241 early_memunmap(data, sizeof(*data));
Olof Johansson1adbfa32012-02-12 13:24:29 -0800242 return -ENOMEM;
243 }
244
245 efi_systab.hdr = systab64->hdr;
Dave Young1fec0532013-12-20 18:02:19 +0800246 efi_systab.fw_vendor = data ? (unsigned long)data->fw_vendor :
247 systab64->fw_vendor;
248 tmp |= data ? data->fw_vendor : systab64->fw_vendor;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800249 efi_systab.fw_revision = systab64->fw_revision;
250 efi_systab.con_in_handle = systab64->con_in_handle;
251 tmp |= systab64->con_in_handle;
252 efi_systab.con_in = systab64->con_in;
253 tmp |= systab64->con_in;
254 efi_systab.con_out_handle = systab64->con_out_handle;
255 tmp |= systab64->con_out_handle;
256 efi_systab.con_out = systab64->con_out;
257 tmp |= systab64->con_out;
258 efi_systab.stderr_handle = systab64->stderr_handle;
259 tmp |= systab64->stderr_handle;
260 efi_systab.stderr = systab64->stderr;
261 tmp |= systab64->stderr;
Dave Young1fec0532013-12-20 18:02:19 +0800262 efi_systab.runtime = data ?
263 (void *)(unsigned long)data->runtime :
264 (void *)(unsigned long)systab64->runtime;
265 tmp |= data ? data->runtime : systab64->runtime;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800266 efi_systab.boottime = (void *)(unsigned long)systab64->boottime;
267 tmp |= systab64->boottime;
268 efi_systab.nr_tables = systab64->nr_tables;
Dave Young1fec0532013-12-20 18:02:19 +0800269 efi_systab.tables = data ? (unsigned long)data->tables :
270 systab64->tables;
271 tmp |= data ? data->tables : systab64->tables;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800272
Daniel Kiperabc93f82014-06-30 19:52:56 +0200273 early_memunmap(systab64, sizeof(*systab64));
Dave Young1fec0532013-12-20 18:02:19 +0800274 if (data)
Daniel Kiperabc93f82014-06-30 19:52:56 +0200275 early_memunmap(data, sizeof(*data));
Olof Johansson1adbfa32012-02-12 13:24:29 -0800276#ifdef CONFIG_X86_32
277 if (tmp >> 32) {
278 pr_err("EFI data located above 4GB, disabling EFI.\n");
279 return -EINVAL;
280 }
281#endif
282 } else {
283 efi_system_table_32_t *systab32;
284
Daniel Kiperabc93f82014-06-30 19:52:56 +0200285 systab32 = early_memremap((unsigned long)phys,
Olof Johansson1adbfa32012-02-12 13:24:29 -0800286 sizeof(*systab32));
287 if (systab32 == NULL) {
288 pr_err("Couldn't map the system table!\n");
289 return -ENOMEM;
290 }
291
292 efi_systab.hdr = systab32->hdr;
293 efi_systab.fw_vendor = systab32->fw_vendor;
294 efi_systab.fw_revision = systab32->fw_revision;
295 efi_systab.con_in_handle = systab32->con_in_handle;
296 efi_systab.con_in = systab32->con_in;
297 efi_systab.con_out_handle = systab32->con_out_handle;
298 efi_systab.con_out = systab32->con_out;
299 efi_systab.stderr_handle = systab32->stderr_handle;
300 efi_systab.stderr = systab32->stderr;
301 efi_systab.runtime = (void *)(unsigned long)systab32->runtime;
302 efi_systab.boottime = (void *)(unsigned long)systab32->boottime;
303 efi_systab.nr_tables = systab32->nr_tables;
304 efi_systab.tables = systab32->tables;
305
Daniel Kiperabc93f82014-06-30 19:52:56 +0200306 early_memunmap(systab32, sizeof(*systab32));
Olof Johansson140bf272012-02-12 13:24:28 -0800307 }
Olof Johansson1adbfa32012-02-12 13:24:29 -0800308
Huang, Ying5b836832008-01-30 13:31:19 +0100309 efi.systab = &efi_systab;
310
311 /*
312 * Verify the EFI Table
313 */
Olof Johansson140bf272012-02-12 13:24:28 -0800314 if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800315 pr_err("System table signature incorrect!\n");
Olof Johansson140bf272012-02-12 13:24:28 -0800316 return -EINVAL;
317 }
Huang, Ying5b836832008-01-30 13:31:19 +0100318 if ((efi.systab->hdr.revision >> 16) == 0)
Joe Perches9b7d2042014-01-03 16:08:48 -0800319 pr_err("Warning: System table version %d.%02d, expected 1.00 or greater!\n",
Huang, Ying5b836832008-01-30 13:31:19 +0100320 efi.systab->hdr.revision >> 16,
321 efi.systab->hdr.revision & 0xffff);
Olof Johansson140bf272012-02-12 13:24:28 -0800322
Matt Fleming0f8093a2014-01-15 13:36:33 +0000323 set_bit(EFI_SYSTEM_TABLES, &efi.flags);
324
Olof Johansson140bf272012-02-12 13:24:28 -0800325 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800326}
Huang, Ying5b836832008-01-30 13:31:19 +0100327
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000328static int __init efi_runtime_init32(void)
329{
330 efi_runtime_services_32_t *runtime;
331
Daniel Kiperabc93f82014-06-30 19:52:56 +0200332 runtime = early_memremap((unsigned long)efi.systab->runtime,
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000333 sizeof(efi_runtime_services_32_t));
334 if (!runtime) {
335 pr_err("Could not map the runtime service table!\n");
336 return -ENOMEM;
337 }
338
339 /*
Mathias Krause0ce46052014-09-07 19:42:16 +0200340 * We will only need *early* access to the SetVirtualAddressMap
341 * EFI runtime service. All other runtime services will be called
342 * via the virtual mapping.
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000343 */
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000344 efi_phys.set_virtual_address_map =
345 (efi_set_virtual_address_map_t *)
346 (unsigned long)runtime->set_virtual_address_map;
Daniel Kiperabc93f82014-06-30 19:52:56 +0200347 early_memunmap(runtime, sizeof(efi_runtime_services_32_t));
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000348
349 return 0;
350}
351
352static int __init efi_runtime_init64(void)
353{
354 efi_runtime_services_64_t *runtime;
355
Daniel Kiperabc93f82014-06-30 19:52:56 +0200356 runtime = early_memremap((unsigned long)efi.systab->runtime,
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000357 sizeof(efi_runtime_services_64_t));
358 if (!runtime) {
359 pr_err("Could not map the runtime service table!\n");
360 return -ENOMEM;
361 }
362
363 /*
Mathias Krause0ce46052014-09-07 19:42:16 +0200364 * We will only need *early* access to the SetVirtualAddressMap
365 * EFI runtime service. All other runtime services will be called
366 * via the virtual mapping.
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000367 */
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000368 efi_phys.set_virtual_address_map =
369 (efi_set_virtual_address_map_t *)
370 (unsigned long)runtime->set_virtual_address_map;
Daniel Kiperabc93f82014-06-30 19:52:56 +0200371 early_memunmap(runtime, sizeof(efi_runtime_services_64_t));
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000372
373 return 0;
374}
375
Olof Johansson140bf272012-02-12 13:24:28 -0800376static int __init efi_runtime_init(void)
Olof Johansson83e7ee62012-02-12 13:24:25 -0800377{
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000378 int rv;
Huang, Ying5b836832008-01-30 13:31:19 +0100379
380 /*
381 * Check out the runtime services table. We need to map
382 * the runtime services table so that we can grab the physical
383 * address of several of the EFI runtime functions, needed to
384 * set the firmware into virtual mode.
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200385 *
386 * When EFI_PARAVIRT is in force then we could not map runtime
387 * service memory region because we do not have direct access to it.
388 * However, runtime services are available through proxy functions
389 * (e.g. in case of Xen dom0 EFI implementation they call special
390 * hypercall which executes relevant EFI functions) and that is why
391 * they are always enabled.
Huang, Ying5b836832008-01-30 13:31:19 +0100392 */
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000393
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200394 if (!efi_enabled(EFI_PARAVIRT)) {
395 if (efi_enabled(EFI_64BIT))
396 rv = efi_runtime_init64();
397 else
398 rv = efi_runtime_init32();
399
400 if (rv)
401 return rv;
402 }
Olof Johansson140bf272012-02-12 13:24:28 -0800403
Matt Fleming0f8093a2014-01-15 13:36:33 +0000404 set_bit(EFI_RUNTIME_SERVICES, &efi.flags);
405
Olof Johansson140bf272012-02-12 13:24:28 -0800406 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800407}
Huang, Ying5b836832008-01-30 13:31:19 +0100408
Olof Johansson140bf272012-02-12 13:24:28 -0800409static int __init efi_memmap_init(void)
Olof Johansson83e7ee62012-02-12 13:24:25 -0800410{
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200411 if (efi_enabled(EFI_PARAVIRT))
412 return 0;
413
Huang, Ying5b836832008-01-30 13:31:19 +0100414 /* Map the EFI memory map */
Daniel Kiperabc93f82014-06-30 19:52:56 +0200415 memmap.map = early_memremap((unsigned long)memmap.phys_map,
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100416 memmap.nr_map * memmap.desc_size);
Olof Johansson140bf272012-02-12 13:24:28 -0800417 if (memmap.map == NULL) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800418 pr_err("Could not map the memory map!\n");
Olof Johansson140bf272012-02-12 13:24:28 -0800419 return -ENOMEM;
420 }
Huang, Ying5b836832008-01-30 13:31:19 +0100421 memmap.map_end = memmap.map + (memmap.nr_map * memmap.desc_size);
Russ Anderson175e4382008-10-02 17:32:06 -0500422
Paul Jackson200001e2008-06-25 05:44:46 -0700423 if (add_efi_memmap)
424 do_add_efi_memmap();
Olof Johansson140bf272012-02-12 13:24:28 -0800425
Matt Fleming0f8093a2014-01-15 13:36:33 +0000426 set_bit(EFI_MEMMAP, &efi.flags);
427
Olof Johansson140bf272012-02-12 13:24:28 -0800428 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800429}
430
431void __init efi_init(void)
432{
433 efi_char16_t *c16;
434 char vendor[100] = "unknown";
435 int i = 0;
436 void *tmp;
437
438#ifdef CONFIG_X86_32
Olof Johansson1adbfa32012-02-12 13:24:29 -0800439 if (boot_params.efi_info.efi_systab_hi ||
440 boot_params.efi_info.efi_memmap_hi) {
441 pr_info("Table located above 4GB, disabling EFI.\n");
Olof Johansson1adbfa32012-02-12 13:24:29 -0800442 return;
443 }
Olof Johansson83e7ee62012-02-12 13:24:25 -0800444 efi_phys.systab = (efi_system_table_t *)boot_params.efi_info.efi_systab;
445#else
446 efi_phys.systab = (efi_system_table_t *)
Olof Johansson1adbfa32012-02-12 13:24:29 -0800447 (boot_params.efi_info.efi_systab |
448 ((__u64)boot_params.efi_info.efi_systab_hi<<32));
Olof Johansson83e7ee62012-02-12 13:24:25 -0800449#endif
450
Matt Fleming83e68182012-11-14 09:42:35 +0000451 if (efi_systab_init(efi_phys.systab))
Olof Johansson140bf272012-02-12 13:24:28 -0800452 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000453
Dave Younga0998eb2013-12-20 18:02:17 +0800454 efi.config_table = (unsigned long)efi.systab->tables;
455 efi.fw_vendor = (unsigned long)efi.systab->fw_vendor;
456 efi.runtime = (unsigned long)efi.systab->runtime;
457
Olof Johansson83e7ee62012-02-12 13:24:25 -0800458 /*
459 * Show what we know for posterity
460 */
Daniel Kiperabc93f82014-06-30 19:52:56 +0200461 c16 = tmp = early_memremap(efi.systab->fw_vendor, 2);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800462 if (c16) {
463 for (i = 0; i < sizeof(vendor) - 1 && *c16; ++i)
464 vendor[i] = *c16++;
465 vendor[i] = '\0';
466 } else
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800467 pr_err("Could not map the firmware vendor!\n");
Daniel Kiperabc93f82014-06-30 19:52:56 +0200468 early_memunmap(tmp, 2);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800469
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800470 pr_info("EFI v%u.%.02u by %s\n",
471 efi.systab->hdr.revision >> 16,
472 efi.systab->hdr.revision & 0xffff, vendor);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800473
Dave Young1fec0532013-12-20 18:02:19 +0800474 if (efi_reuse_config(efi.systab->tables, efi.systab->nr_tables))
475 return;
476
Leif Lindholm272686b2013-09-05 11:34:54 +0100477 if (efi_config_init(arch_tables))
Olof Johansson140bf272012-02-12 13:24:28 -0800478 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000479
Olof Johansson1adbfa32012-02-12 13:24:29 -0800480 /*
481 * Note: We currently don't support runtime services on an EFI
482 * that doesn't match the kernel 32/64-bit mode.
483 */
484
Matt Fleming7d453ee2014-01-10 18:52:06 +0000485 if (!efi_runtime_supported())
Olof Johansson1adbfa32012-02-12 13:24:29 -0800486 pr_info("No EFI runtime due to 32/64-bit mismatch with kernel\n");
Matt Fleming83e68182012-11-14 09:42:35 +0000487 else {
Dave Youngb2e0a542014-08-14 17:15:26 +0800488 if (efi_runtime_disabled() || efi_runtime_init())
Matt Fleming83e68182012-11-14 09:42:35 +0000489 return;
Olof Johansson140bf272012-02-12 13:24:28 -0800490 }
Matt Fleming83e68182012-11-14 09:42:35 +0000491 if (efi_memmap_init())
Olof Johansson140bf272012-02-12 13:24:28 -0800492 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000493
Borislav Petkovfed6cef2015-02-05 11:44:41 +0100494 if (efi_enabled(EFI_DBG))
495 print_efi_memmap();
Huang, Ying5b836832008-01-30 13:31:19 +0100496}
497
Josh Triplett2223af32012-09-28 17:57:05 -0700498void __init efi_late_init(void)
499{
500 efi_bgrt_init();
501}
502
Matthew Garrett9cd2b072011-05-05 15:19:43 -0400503void __init efi_set_executable(efi_memory_desc_t *md, bool executable)
504{
505 u64 addr, npages;
506
507 addr = md->virt_addr;
508 npages = md->num_pages;
509
510 memrange_efi_to_native(&addr, &npages);
511
512 if (executable)
513 set_memory_x(addr, npages);
514 else
515 set_memory_nx(addr, npages);
516}
517
Borislav Petkovc55d0162014-02-14 08:24:24 +0100518void __init runtime_code_page_mkexec(void)
Huang, Yinga2172e22008-01-30 13:33:55 +0100519{
520 efi_memory_desc_t *md;
Huang, Yinga2172e22008-01-30 13:33:55 +0100521 void *p;
522
Huang, Yinga2172e22008-01-30 13:33:55 +0100523 /* Make EFI runtime service code area executable */
524 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
525 md = p;
Huang, Ying1c083eb2008-02-04 16:48:06 +0100526
527 if (md->type != EFI_RUNTIME_SERVICES_CODE)
528 continue;
529
Matthew Garrett9cd2b072011-05-05 15:19:43 -0400530 efi_set_executable(md, true);
Huang, Yinga2172e22008-01-30 13:33:55 +0100531 }
Huang, Yinga2172e22008-01-30 13:33:55 +0100532}
Huang, Yinga2172e22008-01-30 13:33:55 +0100533
Mathias Krause4e78eb052014-09-07 19:42:17 +0200534void __init efi_memory_uc(u64 addr, unsigned long size)
Matt Fleming3e8fa262012-10-19 13:25:46 +0100535{
536 unsigned long page_shift = 1UL << EFI_PAGE_SHIFT;
537 u64 npages;
538
539 npages = round_up(size, page_shift) / page_shift;
540 memrange_efi_to_native(&addr, &npages);
541 set_memory_uc(addr, npages);
542}
543
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100544void __init old_map_region(efi_memory_desc_t *md)
545{
546 u64 start_pfn, end_pfn, end;
547 unsigned long size;
548 void *va;
549
550 start_pfn = PFN_DOWN(md->phys_addr);
551 size = md->num_pages << PAGE_SHIFT;
552 end = md->phys_addr + size;
553 end_pfn = PFN_UP(end);
554
555 if (pfn_range_is_mapped(start_pfn, end_pfn)) {
556 va = __va(md->phys_addr);
557
558 if (!(md->attribute & EFI_MEMORY_WB))
559 efi_memory_uc((u64)(unsigned long)va, size);
560 } else
561 va = efi_ioremap(md->phys_addr, size,
562 md->type, md->attribute);
563
564 md->virt_addr = (u64) (unsigned long) va;
565 if (!va)
566 pr_err("ioremap of 0x%llX failed!\n",
567 (unsigned long long)md->phys_addr);
568}
569
Dave Young481f75c2013-12-20 18:02:16 +0800570/* Merge contiguous regions of the same type and attribute */
571static void __init efi_merge_regions(void)
Huang, Ying5b836832008-01-30 13:31:19 +0100572{
Dave Young481f75c2013-12-20 18:02:16 +0800573 void *p;
Matthew Garrett202f9d02011-05-05 15:19:44 -0400574 efi_memory_desc_t *md, *prev_md = NULL;
Huang, Ying5b836832008-01-30 13:31:19 +0100575
Matthew Garrett202f9d02011-05-05 15:19:44 -0400576 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
577 u64 prev_size;
578 md = p;
579
580 if (!prev_md) {
581 prev_md = md;
582 continue;
583 }
584
585 if (prev_md->type != md->type ||
586 prev_md->attribute != md->attribute) {
587 prev_md = md;
588 continue;
589 }
590
591 prev_size = prev_md->num_pages << EFI_PAGE_SHIFT;
592
593 if (md->phys_addr == (prev_md->phys_addr + prev_size)) {
594 prev_md->num_pages += md->num_pages;
595 md->type = EFI_RESERVED_TYPE;
596 md->attribute = 0;
597 continue;
598 }
599 prev_md = md;
600 }
Dave Young481f75c2013-12-20 18:02:16 +0800601}
602
603static void __init get_systab_virt_addr(efi_memory_desc_t *md)
604{
605 unsigned long size;
606 u64 end, systab;
607
608 size = md->num_pages << EFI_PAGE_SHIFT;
609 end = md->phys_addr + size;
610 systab = (u64)(unsigned long)efi_phys.systab;
611 if (md->phys_addr <= systab && systab < end) {
612 systab += md->virt_addr - md->phys_addr;
613 efi.systab = (efi_system_table_t *)(unsigned long)systab;
614 }
615}
616
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100617static void __init save_runtime_map(void)
Dave Young926172d2013-12-20 18:02:18 +0800618{
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100619#ifdef CONFIG_KEXEC
Dave Young926172d2013-12-20 18:02:18 +0800620 efi_memory_desc_t *md;
621 void *tmp, *p, *q = NULL;
622 int count = 0;
623
Dave Younga3530e82014-05-30 11:20:10 +0800624 if (efi_enabled(EFI_OLD_MEMMAP))
625 return;
626
Dave Young926172d2013-12-20 18:02:18 +0800627 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
628 md = p;
629
630 if (!(md->attribute & EFI_MEMORY_RUNTIME) ||
631 (md->type == EFI_BOOT_SERVICES_CODE) ||
632 (md->type == EFI_BOOT_SERVICES_DATA))
633 continue;
634 tmp = krealloc(q, (count + 1) * memmap.desc_size, GFP_KERNEL);
635 if (!tmp)
636 goto out;
637 q = tmp;
638
639 memcpy(q + count * memmap.desc_size, md, memmap.desc_size);
640 count++;
641 }
642
Matt Fleming518548a2013-12-21 16:09:46 +0000643 efi_runtime_map_setup(q, count, memmap.desc_size);
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100644 return;
Dave Young926172d2013-12-20 18:02:18 +0800645
Dave Young926172d2013-12-20 18:02:18 +0800646out:
647 kfree(q);
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100648 pr_err("Error saving runtime map, efi runtime on kexec non-functional!!\n");
649#endif
Dave Young1fec0532013-12-20 18:02:19 +0800650}
651
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100652static void *realloc_pages(void *old_memmap, int old_shift)
Dave Young481f75c2013-12-20 18:02:16 +0800653{
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100654 void *ret;
655
656 ret = (void *)__get_free_pages(GFP_KERNEL, old_shift + 1);
657 if (!ret)
658 goto out;
659
660 /*
661 * A first-time allocation doesn't have anything to copy.
662 */
663 if (!old_memmap)
664 return ret;
665
666 memcpy(ret, old_memmap, PAGE_SIZE << old_shift);
667
668out:
669 free_pages((unsigned long)old_memmap, old_shift);
670 return ret;
671}
672
673/*
674 * Map the efi memory ranges of the runtime services and update new_mmap with
675 * virtual addresses.
676 */
677static void * __init efi_map_regions(int *count, int *pg_shift)
678{
679 void *p, *new_memmap = NULL;
680 unsigned long left = 0;
Dave Young481f75c2013-12-20 18:02:16 +0800681 efi_memory_desc_t *md;
Matthew Garrett202f9d02011-05-05 15:19:44 -0400682
Huang, Ying5b836832008-01-30 13:31:19 +0100683 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
684 md = p;
Josh Boyer70087012013-04-18 07:51:34 -0700685 if (!(md->attribute & EFI_MEMORY_RUNTIME)) {
686#ifdef CONFIG_X86_64
687 if (md->type != EFI_BOOT_SERVICES_CODE &&
688 md->type != EFI_BOOT_SERVICES_DATA)
689#endif
690 continue;
691 }
Huang, Ying1c083eb2008-02-04 16:48:06 +0100692
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100693 efi_map_region(md);
Dave Young481f75c2013-12-20 18:02:16 +0800694 get_systab_virt_addr(md);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100695
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100696 if (left < memmap.desc_size) {
697 new_memmap = realloc_pages(new_memmap, *pg_shift);
698 if (!new_memmap)
699 return NULL;
700
701 left += PAGE_SIZE << *pg_shift;
702 (*pg_shift)++;
703 }
704
Dave Young481f75c2013-12-20 18:02:16 +0800705 memcpy(new_memmap + (*count * memmap.desc_size), md,
Matthew Garrett7cb00b72011-05-05 15:19:45 -0400706 memmap.desc_size);
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100707
708 left -= memmap.desc_size;
Dave Young481f75c2013-12-20 18:02:16 +0800709 (*count)++;
710 }
711
712 return new_memmap;
Dave Young481f75c2013-12-20 18:02:16 +0800713}
714
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100715static void __init kexec_enter_virtual_mode(void)
716{
717#ifdef CONFIG_KEXEC
718 efi_memory_desc_t *md;
719 void *p;
720
721 efi.systab = NULL;
722
723 /*
724 * We don't do virtual mode, since we don't do runtime services, on
725 * non-native EFI
726 */
727 if (!efi_is_native()) {
728 efi_unmap_memmap();
Dave Younga5a750a2014-08-14 17:15:31 +0800729 clear_bit(EFI_RUNTIME_SERVICES, &efi.flags);
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100730 return;
731 }
732
733 /*
734 * Map efi regions which were passed via setup_data. The virt_addr is a
735 * fixed addr which was used in first kernel of a kexec boot.
736 */
737 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
738 md = p;
739 efi_map_region_fixed(md); /* FIXME: add error handling */
740 get_systab_virt_addr(md);
741 }
742
743 save_runtime_map();
744
745 BUG_ON(!efi.systab);
746
747 efi_sync_low_kernel_mappings();
748
749 /*
750 * Now that EFI is in virtual mode, update the function
751 * pointers in the runtime service table to the new virtual addresses.
752 *
753 * Call EFI services through wrapper functions.
754 */
755 efi.runtime_version = efi_systab.hdr.revision;
Matt Fleming994448f2014-03-05 18:15:37 +0000756
Ard Biesheuvel022ee6c2014-06-26 12:09:05 +0200757 efi_native_runtime_setup();
Matt Fleming994448f2014-03-05 18:15:37 +0000758
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100759 efi.set_virtual_address_map = NULL;
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100760
761 if (efi_enabled(EFI_OLD_MEMMAP) && (__supported_pte_mask & _PAGE_NX))
762 runtime_code_page_mkexec();
763
764 /* clean DUMMY object */
Saurabh Tangrieeb9db02014-06-02 05:18:35 -0700765 efi_delete_dummy_variable();
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100766#endif
767}
768
Dave Young481f75c2013-12-20 18:02:16 +0800769/*
770 * This function will switch the EFI runtime services to virtual mode.
771 * Essentially, we look through the EFI memmap and map every region that
772 * has the runtime attribute bit set in its memory descriptor into the
773 * ->trampoline_pgd page table using a top-down VA allocation scheme.
774 *
775 * The old method which used to update that memory descriptor with the
776 * virtual address obtained from ioremap() is still supported when the
777 * kernel is booted with efi=old_map on its command line. Same old
778 * method enabled the runtime services to be called without having to
779 * thunk back into physical mode for every invocation.
780 *
781 * The new method does a pagetable switch in a preemption-safe manner
782 * so that we're in a different address space when calling a runtime
783 * function. For function arguments passing we do copy the PGDs of the
784 * kernel page table into ->trampoline_pgd prior to each call.
Dave Young1fec0532013-12-20 18:02:19 +0800785 *
786 * Specially for kexec boot, efi runtime maps in previous kernel should
787 * be passed in via setup_data. In that case runtime ranges will be mapped
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100788 * to the same virtual addresses as the first kernel, see
789 * kexec_enter_virtual_mode().
Dave Young481f75c2013-12-20 18:02:16 +0800790 */
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100791static void __init __efi_enter_virtual_mode(void)
Dave Young481f75c2013-12-20 18:02:16 +0800792{
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100793 int count = 0, pg_shift = 0;
Dave Young481f75c2013-12-20 18:02:16 +0800794 void *new_memmap = NULL;
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100795 efi_status_t status;
Dave Young481f75c2013-12-20 18:02:16 +0800796
797 efi.systab = NULL;
798
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100799 efi_merge_regions();
800 new_memmap = efi_map_regions(&count, &pg_shift);
801 if (!new_memmap) {
802 pr_err("Error reallocating memory, EFI runtime non-functional!\n");
Dave Younga5a750a2014-08-14 17:15:31 +0800803 clear_bit(EFI_RUNTIME_SERVICES, &efi.flags);
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100804 return;
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100805 }
Dave Young926172d2013-12-20 18:02:18 +0800806
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100807 save_runtime_map();
808
Huang, Ying5b836832008-01-30 13:31:19 +0100809 BUG_ON(!efi.systab);
810
Dave Younga5a750a2014-08-14 17:15:31 +0800811 if (efi_setup_page_tables(__pa(new_memmap), 1 << pg_shift)) {
812 clear_bit(EFI_RUNTIME_SERVICES, &efi.flags);
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100813 return;
Dave Younga5a750a2014-08-14 17:15:31 +0800814 }
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100815
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100816 efi_sync_low_kernel_mappings();
Borislav Petkov11cc8512014-01-18 12:48:15 +0100817 efi_dump_pagetable();
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100818
Matt Fleming994448f2014-03-05 18:15:37 +0000819 if (efi_is_native()) {
820 status = phys_efi_set_virtual_address_map(
821 memmap.desc_size * count,
822 memmap.desc_size,
823 memmap.desc_version,
824 (efi_memory_desc_t *)__pa(new_memmap));
825 } else {
826 status = efi_thunk_set_virtual_address_map(
827 efi_phys.set_virtual_address_map,
828 memmap.desc_size * count,
829 memmap.desc_size,
830 memmap.desc_version,
831 (efi_memory_desc_t *)__pa(new_memmap));
832 }
Huang, Ying5b836832008-01-30 13:31:19 +0100833
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100834 if (status != EFI_SUCCESS) {
835 pr_alert("Unable to switch EFI into virtual mode (status=%lx)!\n",
836 status);
837 panic("EFI call to SetVirtualAddressMap() failed!");
Huang, Ying5b836832008-01-30 13:31:19 +0100838 }
839
840 /*
841 * Now that EFI is in virtual mode, update the function
842 * pointers in the runtime service table to the new virtual addresses.
843 *
844 * Call EFI services through wrapper functions.
845 */
Matt Fleming712ba9e2013-01-25 10:07:25 +0000846 efi.runtime_version = efi_systab.hdr.revision;
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000847
848 if (efi_is_native())
Ard Biesheuvel022ee6c2014-06-26 12:09:05 +0200849 efi_native_runtime_setup();
Matt Fleming4f9dbcf2014-01-10 18:48:30 +0000850 else
851 efi_thunk_runtime_setup();
852
Matthew Garrett2b5e8ef2011-05-05 15:19:42 -0400853 efi.set_virtual_address_map = NULL;
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100854
Borislav Petkovc55d0162014-02-14 08:24:24 +0100855 efi_runtime_mkexec();
Olof Johansson1adbfa32012-02-12 13:24:29 -0800856
Borislav Petkovb7b898a2014-01-18 12:48:17 +0100857 /*
858 * We mapped the descriptor array into the EFI pagetable above but we're
859 * not unmapping it here. Here's why:
860 *
861 * We're copying select PGDs from the kernel page table to the EFI page
862 * table and when we do so and make changes to those PGDs like unmapping
863 * stuff from them, those changes appear in the kernel page table and we
864 * go boom.
865 *
866 * From setup_real_mode():
867 *
868 * ...
869 * trampoline_pgd[0] = init_level4_pgt[pgd_index(__PAGE_OFFSET)].pgd;
870 *
871 * In this particular case, our allocation is in PGD 0 of the EFI page
872 * table but we've copied that PGD from PGD[272] of the EFI page table:
873 *
874 * pgd_index(__PAGE_OFFSET = 0xffff880000000000) = 272
875 *
876 * where the direct memory mapping in kernel space is.
877 *
878 * new_memmap's VA comes from that direct mapping and thus clearing it,
879 * it would get cleared in the kernel page table too.
880 *
881 * efi_cleanup_page_tables(__pa(new_memmap), 1 << pg_shift);
882 */
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100883 free_pages((unsigned long)new_memmap, pg_shift);
Matthew Garrettf8b84042013-06-01 16:06:20 -0400884
885 /* clean DUMMY object */
Saurabh Tangrieeb9db02014-06-02 05:18:35 -0700886 efi_delete_dummy_variable();
Huang, Ying5b836832008-01-30 13:31:19 +0100887}
888
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100889void __init efi_enter_virtual_mode(void)
890{
Daniel Kiper9f27bc52014-06-30 19:52:58 +0200891 if (efi_enabled(EFI_PARAVIRT))
892 return;
893
Borislav Petkovfabb37c2014-01-18 12:48:18 +0100894 if (efi_setup)
895 kexec_enter_virtual_mode();
896 else
897 __efi_enter_virtual_mode();
898}
899
Huang, Ying5b836832008-01-30 13:31:19 +0100900/*
901 * Convenience functions to obtain memory types and attributes
902 */
903u32 efi_mem_type(unsigned long phys_addr)
904{
905 efi_memory_desc_t *md;
906 void *p;
907
Matt Fleming83e68182012-11-14 09:42:35 +0000908 if (!efi_enabled(EFI_MEMMAP))
909 return 0;
910
Huang, Ying5b836832008-01-30 13:31:19 +0100911 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
912 md = p;
913 if ((md->phys_addr <= phys_addr) &&
914 (phys_addr < (md->phys_addr +
915 (md->num_pages << EFI_PAGE_SHIFT))))
916 return md->type;
917 }
918 return 0;
919}
920
921u64 efi_mem_attributes(unsigned long phys_addr)
922{
923 efi_memory_desc_t *md;
924 void *p;
925
Daniel Kiper67a9b9c2014-06-30 19:52:57 +0200926 if (!efi_enabled(EFI_MEMMAP))
927 return 0;
928
Huang, Ying5b836832008-01-30 13:31:19 +0100929 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
930 md = p;
931 if ((md->phys_addr <= phys_addr) &&
932 (phys_addr < (md->phys_addr +
933 (md->num_pages << EFI_PAGE_SHIFT))))
934 return md->attribute;
935 }
936 return 0;
937}
Matt Fleminga6e4d5a2013-03-25 09:14:30 +0000938
Dave Young5ae36832014-08-14 17:15:28 +0800939static int __init arch_parse_efi_cmdline(char *str)
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100940{
Dave Young6ccc72b2014-08-14 17:15:27 +0800941 if (parse_option_str(str, "old_map"))
942 set_bit(EFI_OLD_MEMMAP, &efi.flags);
Borislav Petkovfed6cef2015-02-05 11:44:41 +0100943 if (parse_option_str(str, "debug"))
944 set_bit(EFI_DBG, &efi.flags);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100945
946 return 0;
947}
Dave Young5ae36832014-08-14 17:15:28 +0800948early_param("efi", arch_parse_efi_cmdline);