blob: 55ea7dfb5b3c65e229a046400b2eb9ef8a82ba19 [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>
15 *
16 * Copied from efi_32.c to eliminate the duplicated code between EFI
17 * 32/64 support code. --ying 2007-10-26
18 *
19 * All EFI Runtime Services are not implemented yet as EFI only
20 * supports physical mode addressing on SoftSDV. This is to be fixed
21 * in a future version. --drummond 1999-07-20
22 *
23 * Implemented EFI runtime services and virtual mode calls. --davidm
24 *
25 * Goutham Rao: <goutham.rao@intel.com>
26 * Skip non-WB memory and ignore empty memory ranges.
27 */
28
Olof Johanssone3cb3f52012-02-12 13:24:26 -080029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Huang, Ying5b836832008-01-30 13:31:19 +010031#include <linux/kernel.h>
32#include <linux/init.h>
33#include <linux/efi.h>
Josh Triplett2223af32012-09-28 17:57:05 -070034#include <linux/efi-bgrt.h>
Paul Gortmaker69c60c82011-05-26 12:22:53 -040035#include <linux/export.h>
Huang, Ying5b836832008-01-30 13:31:19 +010036#include <linux/bootmem.h>
David Howells0d01ff22013-04-11 23:51:01 +010037#include <linux/slab.h>
Yinghai Lua9ce6bc2010-08-25 13:39:17 -070038#include <linux/memblock.h>
Huang, Ying5b836832008-01-30 13:31:19 +010039#include <linux/spinlock.h>
40#include <linux/uaccess.h>
41#include <linux/time.h>
42#include <linux/io.h>
43#include <linux/reboot.h>
44#include <linux/bcd.h>
45
46#include <asm/setup.h>
47#include <asm/efi.h>
48#include <asm/time.h>
Huang, Yinga2172e22008-01-30 13:33:55 +010049#include <asm/cacheflush.h>
50#include <asm/tlbflush.h>
Feng Tang7bd867d2009-09-10 10:48:56 +080051#include <asm/x86_init.h>
Huang, Ying5b836832008-01-30 13:31:19 +010052
53#define EFI_DEBUG 1
Huang, Ying5b836832008-01-30 13:31:19 +010054
Jan Beulichd80603c2011-07-05 12:22:18 +010055struct efi __read_mostly efi = {
56 .mps = EFI_INVALID_TABLE_ADDR,
57 .acpi = EFI_INVALID_TABLE_ADDR,
58 .acpi20 = EFI_INVALID_TABLE_ADDR,
59 .smbios = EFI_INVALID_TABLE_ADDR,
60 .sal_systab = EFI_INVALID_TABLE_ADDR,
61 .boot_info = EFI_INVALID_TABLE_ADDR,
62 .hcdp = EFI_INVALID_TABLE_ADDR,
63 .uga = EFI_INVALID_TABLE_ADDR,
64 .uv_systab = EFI_INVALID_TABLE_ADDR,
65};
Huang, Ying5b836832008-01-30 13:31:19 +010066EXPORT_SYMBOL(efi);
67
68struct efi_memory_map memmap;
69
Harvey Harrisonecaea422008-02-13 13:26:13 -080070static struct efi efi_phys __initdata;
Huang, Ying5b836832008-01-30 13:31:19 +010071static efi_system_table_t efi_systab __initdata;
72
Matt Fleming83e68182012-11-14 09:42:35 +000073unsigned long x86_efi_facility;
74
75/*
76 * Returns 1 if 'facility' is enabled, 0 otherwise.
77 */
78int efi_enabled(int facility)
79{
80 return test_bit(facility, &x86_efi_facility) != 0;
81}
82EXPORT_SYMBOL(efi_enabled);
83
Matt Fleming058e7b52013-02-22 15:03:47 +000084static bool __initdata disable_runtime = false;
Huang, Ying8b2cb7a2008-01-30 13:32:11 +010085static int __init setup_noefi(char *arg)
86{
Matt Flemingfb834c72013-02-20 20:36:12 +000087 disable_runtime = true;
Huang, Ying8b2cb7a2008-01-30 13:32:11 +010088 return 0;
89}
90early_param("noefi", setup_noefi);
91
Paul Jackson200001e2008-06-25 05:44:46 -070092int add_efi_memmap;
93EXPORT_SYMBOL(add_efi_memmap);
94
95static int __init setup_add_efi_memmap(char *arg)
96{
97 add_efi_memmap = 1;
98 return 0;
99}
100early_param("add_efi_memmap", setup_add_efi_memmap);
101
102
Huang, Ying5b836832008-01-30 13:31:19 +0100103static efi_status_t virt_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc)
104{
Jan Beulichef68c8f2011-07-19 11:53:07 +0100105 unsigned long flags;
106 efi_status_t status;
107
108 spin_lock_irqsave(&rtc_lock, flags);
109 status = efi_call_virt2(get_time, tm, tc);
110 spin_unlock_irqrestore(&rtc_lock, flags);
111 return status;
Huang, Ying5b836832008-01-30 13:31:19 +0100112}
113
114static efi_status_t virt_efi_set_time(efi_time_t *tm)
115{
Jan Beulichef68c8f2011-07-19 11:53:07 +0100116 unsigned long flags;
117 efi_status_t status;
118
119 spin_lock_irqsave(&rtc_lock, flags);
120 status = efi_call_virt1(set_time, tm);
121 spin_unlock_irqrestore(&rtc_lock, flags);
122 return status;
Huang, Ying5b836832008-01-30 13:31:19 +0100123}
124
125static efi_status_t virt_efi_get_wakeup_time(efi_bool_t *enabled,
126 efi_bool_t *pending,
127 efi_time_t *tm)
128{
Jan Beulichef68c8f2011-07-19 11:53:07 +0100129 unsigned long flags;
130 efi_status_t status;
131
132 spin_lock_irqsave(&rtc_lock, flags);
133 status = efi_call_virt3(get_wakeup_time,
134 enabled, pending, tm);
135 spin_unlock_irqrestore(&rtc_lock, flags);
136 return status;
Huang, Ying5b836832008-01-30 13:31:19 +0100137}
138
139static efi_status_t virt_efi_set_wakeup_time(efi_bool_t enabled, efi_time_t *tm)
140{
Jan Beulichef68c8f2011-07-19 11:53:07 +0100141 unsigned long flags;
142 efi_status_t status;
143
144 spin_lock_irqsave(&rtc_lock, flags);
145 status = efi_call_virt2(set_wakeup_time,
146 enabled, tm);
147 spin_unlock_irqrestore(&rtc_lock, flags);
148 return status;
Huang, Ying5b836832008-01-30 13:31:19 +0100149}
150
151static efi_status_t virt_efi_get_variable(efi_char16_t *name,
152 efi_guid_t *vendor,
153 u32 *attr,
154 unsigned long *data_size,
155 void *data)
156{
157 return efi_call_virt5(get_variable,
158 name, vendor, attr,
159 data_size, data);
160}
161
162static efi_status_t virt_efi_get_next_variable(unsigned long *name_size,
163 efi_char16_t *name,
164 efi_guid_t *vendor)
165{
166 return efi_call_virt3(get_next_variable,
167 name_size, name, vendor);
168}
169
170static efi_status_t virt_efi_set_variable(efi_char16_t *name,
171 efi_guid_t *vendor,
Matthew Garrettf7a2d732011-06-06 15:36:24 -0400172 u32 attr,
Huang, Ying5b836832008-01-30 13:31:19 +0100173 unsigned long data_size,
174 void *data)
175{
176 return efi_call_virt5(set_variable,
177 name, vendor, attr,
178 data_size, data);
179}
180
Matthew Garrett3b370232011-06-06 15:36:25 -0400181static efi_status_t virt_efi_query_variable_info(u32 attr,
182 u64 *storage_space,
183 u64 *remaining_space,
184 u64 *max_variable_size)
185{
186 if (efi.runtime_version < EFI_2_00_SYSTEM_TABLE_REVISION)
187 return EFI_UNSUPPORTED;
188
189 return efi_call_virt4(query_variable_info, attr, storage_space,
190 remaining_space, max_variable_size);
191}
192
Huang, Ying5b836832008-01-30 13:31:19 +0100193static efi_status_t virt_efi_get_next_high_mono_count(u32 *count)
194{
195 return efi_call_virt1(get_next_high_mono_count, count);
196}
197
198static void virt_efi_reset_system(int reset_type,
199 efi_status_t status,
200 unsigned long data_size,
201 efi_char16_t *data)
202{
203 efi_call_virt4(reset_system, reset_type, status,
204 data_size, data);
205}
206
Matthew Garrett3b370232011-06-06 15:36:25 -0400207static efi_status_t virt_efi_update_capsule(efi_capsule_header_t **capsules,
208 unsigned long count,
209 unsigned long sg_list)
210{
211 if (efi.runtime_version < EFI_2_00_SYSTEM_TABLE_REVISION)
212 return EFI_UNSUPPORTED;
213
214 return efi_call_virt3(update_capsule, capsules, count, sg_list);
215}
216
217static efi_status_t virt_efi_query_capsule_caps(efi_capsule_header_t **capsules,
218 unsigned long count,
219 u64 *max_size,
220 int *reset_type)
221{
222 if (efi.runtime_version < EFI_2_00_SYSTEM_TABLE_REVISION)
223 return EFI_UNSUPPORTED;
224
225 return efi_call_virt4(query_capsule_caps, capsules, count, max_size,
226 reset_type);
227}
228
Huang, Ying5b836832008-01-30 13:31:19 +0100229static efi_status_t __init phys_efi_set_virtual_address_map(
230 unsigned long memory_map_size,
231 unsigned long descriptor_size,
232 u32 descriptor_version,
233 efi_memory_desc_t *virtual_map)
234{
235 efi_status_t status;
236
237 efi_call_phys_prelog();
238 status = efi_call_phys4(efi_phys.set_virtual_address_map,
239 memory_map_size, descriptor_size,
240 descriptor_version, virtual_map);
241 efi_call_phys_epilog();
242 return status;
243}
244
Linus Torvalds11520e52012-12-15 15:15:24 -0800245static efi_status_t __init phys_efi_get_time(efi_time_t *tm,
246 efi_time_cap_t *tc)
247{
248 unsigned long flags;
249 efi_status_t status;
250
251 spin_lock_irqsave(&rtc_lock, flags);
252 efi_call_phys_prelog();
253 status = efi_call_phys2(efi_phys.get_time, virt_to_phys(tm),
254 virt_to_phys(tc));
255 efi_call_phys_epilog();
256 spin_unlock_irqrestore(&rtc_lock, flags);
257 return status;
258}
259
260int efi_set_rtc_mmss(unsigned long nowtime)
Huang, Ying5b836832008-01-30 13:31:19 +0100261{
262 int real_seconds, real_minutes;
263 efi_status_t status;
264 efi_time_t eft;
265 efi_time_cap_t cap;
266
267 status = efi.get_time(&eft, &cap);
268 if (status != EFI_SUCCESS) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800269 pr_err("Oops: efitime: can't read time!\n");
Huang, Ying5b836832008-01-30 13:31:19 +0100270 return -1;
271 }
272
273 real_seconds = nowtime % 60;
274 real_minutes = nowtime / 60;
275 if (((abs(real_minutes - eft.minute) + 15)/30) & 1)
276 real_minutes += 30;
277 real_minutes %= 60;
278 eft.minute = real_minutes;
279 eft.second = real_seconds;
280
281 status = efi.set_time(&eft);
282 if (status != EFI_SUCCESS) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800283 pr_err("Oops: efitime: can't write time!\n");
Huang, Ying5b836832008-01-30 13:31:19 +0100284 return -1;
285 }
286 return 0;
287}
288
Linus Torvalds11520e52012-12-15 15:15:24 -0800289unsigned long efi_get_time(void)
Huang, Ying5b836832008-01-30 13:31:19 +0100290{
291 efi_status_t status;
292 efi_time_t eft;
293 efi_time_cap_t cap;
294
295 status = efi.get_time(&eft, &cap);
296 if (status != EFI_SUCCESS)
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800297 pr_err("Oops: efitime: can't read time!\n");
Huang, Ying5b836832008-01-30 13:31:19 +0100298
299 return mktime(eft.year, eft.month, eft.day, eft.hour,
300 eft.minute, eft.second);
301}
302
Paul Jackson69c91892008-05-14 08:15:58 -0700303/*
304 * Tell the kernel about the EFI memory map. This might include
305 * more than the max 128 entries that can fit in the e820 legacy
306 * (zeropage) memory map.
307 */
308
Paul Jackson200001e2008-06-25 05:44:46 -0700309static void __init do_add_efi_memmap(void)
Paul Jackson69c91892008-05-14 08:15:58 -0700310{
311 void *p;
312
313 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
314 efi_memory_desc_t *md = p;
315 unsigned long long start = md->phys_addr;
316 unsigned long long size = md->num_pages << EFI_PAGE_SHIFT;
317 int e820_type;
318
Cliff Wickmane2a71472009-06-16 16:43:40 -0500319 switch (md->type) {
320 case EFI_LOADER_CODE:
321 case EFI_LOADER_DATA:
322 case EFI_BOOT_SERVICES_CODE:
323 case EFI_BOOT_SERVICES_DATA:
324 case EFI_CONVENTIONAL_MEMORY:
325 if (md->attribute & EFI_MEMORY_WB)
326 e820_type = E820_RAM;
327 else
328 e820_type = E820_RESERVED;
329 break;
330 case EFI_ACPI_RECLAIM_MEMORY:
331 e820_type = E820_ACPI;
332 break;
333 case EFI_ACPI_MEMORY_NVS:
334 e820_type = E820_NVS;
335 break;
336 case EFI_UNUSABLE_MEMORY:
337 e820_type = E820_UNUSABLE;
338 break;
339 default:
340 /*
341 * EFI_RESERVED_TYPE EFI_RUNTIME_SERVICES_CODE
342 * EFI_RUNTIME_SERVICES_DATA EFI_MEMORY_MAPPED_IO
343 * EFI_MEMORY_MAPPED_IO_PORT_SPACE EFI_PAL_CODE
344 */
Paul Jackson69c91892008-05-14 08:15:58 -0700345 e820_type = E820_RESERVED;
Cliff Wickmane2a71472009-06-16 16:43:40 -0500346 break;
347 }
Yinghai Lud0be6bd2008-06-15 18:58:51 -0700348 e820_add_region(start, size, e820_type);
Paul Jackson69c91892008-05-14 08:15:58 -0700349 }
350 sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
351}
352
Olof Johansson1adbfa32012-02-12 13:24:29 -0800353int __init efi_memblock_x86_reserve_range(void)
Huang, Yingecacf092008-06-02 14:26:21 +0800354{
355 unsigned long pmap;
356
Paul Jackson05486fa2008-06-22 07:22:02 -0700357#ifdef CONFIG_X86_32
Olof Johansson1adbfa32012-02-12 13:24:29 -0800358 /* Can't handle data above 4GB at this time */
359 if (boot_params.efi_info.efi_memmap_hi) {
360 pr_err("Memory map is above 4GB, disabling EFI.\n");
361 return -EINVAL;
362 }
Huang, Yingecacf092008-06-02 14:26:21 +0800363 pmap = boot_params.efi_info.efi_memmap;
Paul Jackson05486fa2008-06-22 07:22:02 -0700364#else
365 pmap = (boot_params.efi_info.efi_memmap |
366 ((__u64)boot_params.efi_info.efi_memmap_hi<<32));
Huang, Yingecacf092008-06-02 14:26:21 +0800367#endif
368 memmap.phys_map = (void *)pmap;
369 memmap.nr_map = boot_params.efi_info.efi_memmap_size /
370 boot_params.efi_info.efi_memdesc_size;
371 memmap.desc_version = boot_params.efi_info.efi_memdesc_version;
372 memmap.desc_size = boot_params.efi_info.efi_memdesc_size;
Tejun Heo24aa0782011-07-12 11:16:06 +0200373 memblock_reserve(pmap, memmap.nr_map * memmap.desc_size);
Olof Johansson1adbfa32012-02-12 13:24:29 -0800374
375 return 0;
Huang, Yingecacf092008-06-02 14:26:21 +0800376}
377
Huang, Ying5b836832008-01-30 13:31:19 +0100378#if EFI_DEBUG
379static void __init print_efi_memmap(void)
380{
381 efi_memory_desc_t *md;
382 void *p;
383 int i;
384
385 for (p = memmap.map, i = 0;
386 p < memmap.map_end;
387 p += memmap.desc_size, i++) {
388 md = p;
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800389 pr_info("mem%02u: type=%u, attr=0x%llx, "
Huang, Ying5b836832008-01-30 13:31:19 +0100390 "range=[0x%016llx-0x%016llx) (%lluMB)\n",
391 i, md->type, md->attribute, md->phys_addr,
392 md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT),
393 (md->num_pages >> (20 - EFI_PAGE_SHIFT)));
394 }
395}
396#endif /* EFI_DEBUG */
397
Matthew Garrett916f6762011-05-25 09:53:13 -0400398void __init efi_reserve_boot_services(void)
399{
400 void *p;
401
402 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
403 efi_memory_desc_t *md = p;
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200404 u64 start = md->phys_addr;
405 u64 size = md->num_pages << EFI_PAGE_SHIFT;
Matthew Garrett916f6762011-05-25 09:53:13 -0400406
407 if (md->type != EFI_BOOT_SERVICES_CODE &&
408 md->type != EFI_BOOT_SERVICES_DATA)
409 continue;
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200410 /* Only reserve where possible:
411 * - Not within any already allocated areas
412 * - Not over any memory area (really needed, if above?)
413 * - Not within any part of the kernel
414 * - Not the bios reserved area
415 */
Alexander Duyckfc8d7822012-11-16 13:57:13 -0800416 if ((start+size >= __pa_symbol(_text)
417 && start <= __pa_symbol(_end)) ||
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200418 !e820_all_mapped(start, start+size, E820_RAM) ||
Tejun Heobf615492011-07-12 09:58:05 +0200419 memblock_is_region_reserved(start, size)) {
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200420 /* Could not reserve, skip it */
421 md->num_pages = 0;
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800422 memblock_dbg("Could not reserve boot range "
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200423 "[0x%010llx-0x%010llx]\n",
424 start, start+size-1);
425 } else
Tejun Heo24aa0782011-07-12 11:16:06 +0200426 memblock_reserve(start, size);
Matthew Garrett916f6762011-05-25 09:53:13 -0400427 }
428}
429
Olof Johansson5189c2a2012-10-24 10:00:44 -0700430void __init efi_unmap_memmap(void)
Josh Triplett78510792012-09-28 17:55:44 -0700431{
Matt Fleming83e68182012-11-14 09:42:35 +0000432 clear_bit(EFI_MEMMAP, &x86_efi_facility);
Josh Triplett78510792012-09-28 17:55:44 -0700433 if (memmap.map) {
434 early_iounmap(memmap.map, memmap.nr_map * memmap.desc_size);
435 memmap.map = NULL;
436 }
437}
438
439void __init efi_free_boot_services(void)
Matthew Garrett916f6762011-05-25 09:53:13 -0400440{
441 void *p;
442
Olof Johansson5189c2a2012-10-24 10:00:44 -0700443 if (!efi_is_native())
Josh Triplett78510792012-09-28 17:55:44 -0700444 return;
445
Matthew Garrett916f6762011-05-25 09:53:13 -0400446 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
447 efi_memory_desc_t *md = p;
448 unsigned long long start = md->phys_addr;
449 unsigned long long size = md->num_pages << EFI_PAGE_SHIFT;
450
451 if (md->type != EFI_BOOT_SERVICES_CODE &&
452 md->type != EFI_BOOT_SERVICES_DATA)
453 continue;
454
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200455 /* Could not reserve boot area */
456 if (!size)
457 continue;
458
Matthew Garrett916f6762011-05-25 09:53:13 -0400459 free_bootmem_late(start, size);
460 }
Josh Triplett78510792012-09-28 17:55:44 -0700461
462 efi_unmap_memmap();
Matthew Garrett916f6762011-05-25 09:53:13 -0400463}
464
Olof Johansson140bf272012-02-12 13:24:28 -0800465static int __init efi_systab_init(void *phys)
Huang, Ying5b836832008-01-30 13:31:19 +0100466{
Matt Fleming83e68182012-11-14 09:42:35 +0000467 if (efi_enabled(EFI_64BIT)) {
Olof Johansson1adbfa32012-02-12 13:24:29 -0800468 efi_system_table_64_t *systab64;
469 u64 tmp = 0;
470
471 systab64 = early_ioremap((unsigned long)phys,
472 sizeof(*systab64));
473 if (systab64 == NULL) {
474 pr_err("Couldn't map the system table!\n");
475 return -ENOMEM;
476 }
477
478 efi_systab.hdr = systab64->hdr;
479 efi_systab.fw_vendor = systab64->fw_vendor;
480 tmp |= systab64->fw_vendor;
481 efi_systab.fw_revision = systab64->fw_revision;
482 efi_systab.con_in_handle = systab64->con_in_handle;
483 tmp |= systab64->con_in_handle;
484 efi_systab.con_in = systab64->con_in;
485 tmp |= systab64->con_in;
486 efi_systab.con_out_handle = systab64->con_out_handle;
487 tmp |= systab64->con_out_handle;
488 efi_systab.con_out = systab64->con_out;
489 tmp |= systab64->con_out;
490 efi_systab.stderr_handle = systab64->stderr_handle;
491 tmp |= systab64->stderr_handle;
492 efi_systab.stderr = systab64->stderr;
493 tmp |= systab64->stderr;
494 efi_systab.runtime = (void *)(unsigned long)systab64->runtime;
495 tmp |= systab64->runtime;
496 efi_systab.boottime = (void *)(unsigned long)systab64->boottime;
497 tmp |= systab64->boottime;
498 efi_systab.nr_tables = systab64->nr_tables;
499 efi_systab.tables = systab64->tables;
500 tmp |= systab64->tables;
501
502 early_iounmap(systab64, sizeof(*systab64));
503#ifdef CONFIG_X86_32
504 if (tmp >> 32) {
505 pr_err("EFI data located above 4GB, disabling EFI.\n");
506 return -EINVAL;
507 }
508#endif
509 } else {
510 efi_system_table_32_t *systab32;
511
512 systab32 = early_ioremap((unsigned long)phys,
513 sizeof(*systab32));
514 if (systab32 == NULL) {
515 pr_err("Couldn't map the system table!\n");
516 return -ENOMEM;
517 }
518
519 efi_systab.hdr = systab32->hdr;
520 efi_systab.fw_vendor = systab32->fw_vendor;
521 efi_systab.fw_revision = systab32->fw_revision;
522 efi_systab.con_in_handle = systab32->con_in_handle;
523 efi_systab.con_in = systab32->con_in;
524 efi_systab.con_out_handle = systab32->con_out_handle;
525 efi_systab.con_out = systab32->con_out;
526 efi_systab.stderr_handle = systab32->stderr_handle;
527 efi_systab.stderr = systab32->stderr;
528 efi_systab.runtime = (void *)(unsigned long)systab32->runtime;
529 efi_systab.boottime = (void *)(unsigned long)systab32->boottime;
530 efi_systab.nr_tables = systab32->nr_tables;
531 efi_systab.tables = systab32->tables;
532
533 early_iounmap(systab32, sizeof(*systab32));
Olof Johansson140bf272012-02-12 13:24:28 -0800534 }
Olof Johansson1adbfa32012-02-12 13:24:29 -0800535
Huang, Ying5b836832008-01-30 13:31:19 +0100536 efi.systab = &efi_systab;
537
538 /*
539 * Verify the EFI Table
540 */
Olof Johansson140bf272012-02-12 13:24:28 -0800541 if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800542 pr_err("System table signature incorrect!\n");
Olof Johansson140bf272012-02-12 13:24:28 -0800543 return -EINVAL;
544 }
Huang, Ying5b836832008-01-30 13:31:19 +0100545 if ((efi.systab->hdr.revision >> 16) == 0)
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800546 pr_err("Warning: System table version "
Huang, Ying5b836832008-01-30 13:31:19 +0100547 "%d.%02d, expected 1.00 or greater!\n",
548 efi.systab->hdr.revision >> 16,
549 efi.systab->hdr.revision & 0xffff);
Olof Johansson140bf272012-02-12 13:24:28 -0800550
551 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800552}
Huang, Ying5b836832008-01-30 13:31:19 +0100553
Olof Johansson140bf272012-02-12 13:24:28 -0800554static int __init efi_config_init(u64 tables, int nr_tables)
Olof Johansson83e7ee62012-02-12 13:24:25 -0800555{
Olof Johansson1adbfa32012-02-12 13:24:29 -0800556 void *config_tables, *tablep;
557 int i, sz;
558
Matt Fleming83e68182012-11-14 09:42:35 +0000559 if (efi_enabled(EFI_64BIT))
Olof Johansson1adbfa32012-02-12 13:24:29 -0800560 sz = sizeof(efi_config_table_64_t);
561 else
562 sz = sizeof(efi_config_table_32_t);
Huang, Ying5b836832008-01-30 13:31:19 +0100563
564 /*
565 * Let's see what config tables the firmware passed to us.
566 */
Olof Johansson1adbfa32012-02-12 13:24:29 -0800567 config_tables = early_ioremap(tables, nr_tables * sz);
Olof Johansson140bf272012-02-12 13:24:28 -0800568 if (config_tables == NULL) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800569 pr_err("Could not map Configuration table!\n");
Olof Johansson140bf272012-02-12 13:24:28 -0800570 return -ENOMEM;
571 }
Huang, Ying5b836832008-01-30 13:31:19 +0100572
Olof Johansson1adbfa32012-02-12 13:24:29 -0800573 tablep = config_tables;
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800574 pr_info("");
Huang, Ying5b836832008-01-30 13:31:19 +0100575 for (i = 0; i < efi.systab->nr_tables; i++) {
Olof Johansson1adbfa32012-02-12 13:24:29 -0800576 efi_guid_t guid;
577 unsigned long table;
Olof Johanssona6a46f42012-02-12 13:24:27 -0800578
Matt Fleming83e68182012-11-14 09:42:35 +0000579 if (efi_enabled(EFI_64BIT)) {
Olof Johansson1adbfa32012-02-12 13:24:29 -0800580 u64 table64;
581 guid = ((efi_config_table_64_t *)tablep)->guid;
582 table64 = ((efi_config_table_64_t *)tablep)->table;
583 table = table64;
584#ifdef CONFIG_X86_32
585 if (table64 >> 32) {
586 pr_cont("\n");
587 pr_err("Table located above 4GB, disabling EFI.\n");
588 early_iounmap(config_tables,
589 efi.systab->nr_tables * sz);
590 return -EINVAL;
591 }
592#endif
593 } else {
594 guid = ((efi_config_table_32_t *)tablep)->guid;
595 table = ((efi_config_table_32_t *)tablep)->table;
596 }
Olof Johanssona6a46f42012-02-12 13:24:27 -0800597 if (!efi_guidcmp(guid, MPS_TABLE_GUID)) {
598 efi.mps = table;
599 pr_cont(" MPS=0x%lx ", table);
600 } else if (!efi_guidcmp(guid, ACPI_20_TABLE_GUID)) {
601 efi.acpi20 = table;
602 pr_cont(" ACPI 2.0=0x%lx ", table);
603 } else if (!efi_guidcmp(guid, ACPI_TABLE_GUID)) {
604 efi.acpi = table;
605 pr_cont(" ACPI=0x%lx ", table);
606 } else if (!efi_guidcmp(guid, SMBIOS_TABLE_GUID)) {
607 efi.smbios = table;
608 pr_cont(" SMBIOS=0x%lx ", table);
Nick Piggin03b48632009-01-20 04:36:04 +0100609#ifdef CONFIG_X86_UV
Olof Johanssona6a46f42012-02-12 13:24:27 -0800610 } else if (!efi_guidcmp(guid, UV_SYSTEM_TABLE_GUID)) {
611 efi.uv_systab = table;
612 pr_cont(" UVsystab=0x%lx ", table);
Nick Piggin03b48632009-01-20 04:36:04 +0100613#endif
Olof Johanssona6a46f42012-02-12 13:24:27 -0800614 } else if (!efi_guidcmp(guid, HCDP_TABLE_GUID)) {
615 efi.hcdp = table;
616 pr_cont(" HCDP=0x%lx ", table);
617 } else if (!efi_guidcmp(guid, UGA_IO_PROTOCOL_GUID)) {
618 efi.uga = table;
619 pr_cont(" UGA=0x%lx ", table);
Huang, Ying5b836832008-01-30 13:31:19 +0100620 }
Olof Johansson1adbfa32012-02-12 13:24:29 -0800621 tablep += sz;
Huang, Ying5b836832008-01-30 13:31:19 +0100622 }
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800623 pr_cont("\n");
Olof Johanssona6a46f42012-02-12 13:24:27 -0800624 early_iounmap(config_tables, efi.systab->nr_tables * sz);
Olof Johansson140bf272012-02-12 13:24:28 -0800625 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800626}
627
Olof Johansson140bf272012-02-12 13:24:28 -0800628static int __init efi_runtime_init(void)
Olof Johansson83e7ee62012-02-12 13:24:25 -0800629{
630 efi_runtime_services_t *runtime;
Huang, Ying5b836832008-01-30 13:31:19 +0100631
632 /*
633 * Check out the runtime services table. We need to map
634 * the runtime services table so that we can grab the physical
635 * address of several of the EFI runtime functions, needed to
636 * set the firmware into virtual mode.
637 */
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100638 runtime = early_ioremap((unsigned long)efi.systab->runtime,
639 sizeof(efi_runtime_services_t));
Olof Johansson140bf272012-02-12 13:24:28 -0800640 if (!runtime) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800641 pr_err("Could not map the runtime service table!\n");
Olof Johansson140bf272012-02-12 13:24:28 -0800642 return -ENOMEM;
643 }
644 /*
645 * We will only need *early* access to the following
Linus Torvalds11520e52012-12-15 15:15:24 -0800646 * two EFI runtime services before set_virtual_address_map
Olof Johansson140bf272012-02-12 13:24:28 -0800647 * is invoked.
648 */
Linus Torvalds11520e52012-12-15 15:15:24 -0800649 efi_phys.get_time = (efi_get_time_t *)runtime->get_time;
Olof Johansson140bf272012-02-12 13:24:28 -0800650 efi_phys.set_virtual_address_map =
651 (efi_set_virtual_address_map_t *)
652 runtime->set_virtual_address_map;
Linus Torvalds11520e52012-12-15 15:15:24 -0800653 /*
654 * Make efi_get_time can be called before entering
655 * virtual mode.
656 */
657 efi.get_time = phys_efi_get_time;
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100658 early_iounmap(runtime, sizeof(efi_runtime_services_t));
Olof Johansson140bf272012-02-12 13:24:28 -0800659
660 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800661}
Huang, Ying5b836832008-01-30 13:31:19 +0100662
Olof Johansson140bf272012-02-12 13:24:28 -0800663static int __init efi_memmap_init(void)
Olof Johansson83e7ee62012-02-12 13:24:25 -0800664{
Huang, Ying5b836832008-01-30 13:31:19 +0100665 /* Map the EFI memory map */
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100666 memmap.map = early_ioremap((unsigned long)memmap.phys_map,
667 memmap.nr_map * memmap.desc_size);
Olof Johansson140bf272012-02-12 13:24:28 -0800668 if (memmap.map == NULL) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800669 pr_err("Could not map the memory map!\n");
Olof Johansson140bf272012-02-12 13:24:28 -0800670 return -ENOMEM;
671 }
Huang, Ying5b836832008-01-30 13:31:19 +0100672 memmap.map_end = memmap.map + (memmap.nr_map * memmap.desc_size);
Russ Anderson175e4382008-10-02 17:32:06 -0500673
Paul Jackson200001e2008-06-25 05:44:46 -0700674 if (add_efi_memmap)
675 do_add_efi_memmap();
Olof Johansson140bf272012-02-12 13:24:28 -0800676
677 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800678}
679
680void __init efi_init(void)
681{
682 efi_char16_t *c16;
683 char vendor[100] = "unknown";
684 int i = 0;
685 void *tmp;
686
687#ifdef CONFIG_X86_32
Olof Johansson1adbfa32012-02-12 13:24:29 -0800688 if (boot_params.efi_info.efi_systab_hi ||
689 boot_params.efi_info.efi_memmap_hi) {
690 pr_info("Table located above 4GB, disabling EFI.\n");
Olof Johansson1adbfa32012-02-12 13:24:29 -0800691 return;
692 }
Olof Johansson83e7ee62012-02-12 13:24:25 -0800693 efi_phys.systab = (efi_system_table_t *)boot_params.efi_info.efi_systab;
694#else
695 efi_phys.systab = (efi_system_table_t *)
Olof Johansson1adbfa32012-02-12 13:24:29 -0800696 (boot_params.efi_info.efi_systab |
697 ((__u64)boot_params.efi_info.efi_systab_hi<<32));
Olof Johansson83e7ee62012-02-12 13:24:25 -0800698#endif
699
Matt Fleming83e68182012-11-14 09:42:35 +0000700 if (efi_systab_init(efi_phys.systab))
Olof Johansson140bf272012-02-12 13:24:28 -0800701 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000702
703 set_bit(EFI_SYSTEM_TABLES, &x86_efi_facility);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800704
705 /*
706 * Show what we know for posterity
707 */
708 c16 = tmp = early_ioremap(efi.systab->fw_vendor, 2);
709 if (c16) {
710 for (i = 0; i < sizeof(vendor) - 1 && *c16; ++i)
711 vendor[i] = *c16++;
712 vendor[i] = '\0';
713 } else
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800714 pr_err("Could not map the firmware vendor!\n");
Olof Johansson83e7ee62012-02-12 13:24:25 -0800715 early_iounmap(tmp, 2);
716
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800717 pr_info("EFI v%u.%.02u by %s\n",
718 efi.systab->hdr.revision >> 16,
719 efi.systab->hdr.revision & 0xffff, vendor);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800720
Matt Fleming83e68182012-11-14 09:42:35 +0000721 if (efi_config_init(efi.systab->tables, efi.systab->nr_tables))
Olof Johansson140bf272012-02-12 13:24:28 -0800722 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000723
724 set_bit(EFI_CONFIG_TABLES, &x86_efi_facility);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800725
Olof Johansson1adbfa32012-02-12 13:24:29 -0800726 /*
727 * Note: We currently don't support runtime services on an EFI
728 * that doesn't match the kernel 32/64-bit mode.
729 */
730
Olof Johansson5189c2a2012-10-24 10:00:44 -0700731 if (!efi_is_native())
Olof Johansson1adbfa32012-02-12 13:24:29 -0800732 pr_info("No EFI runtime due to 32/64-bit mismatch with kernel\n");
Matt Fleming83e68182012-11-14 09:42:35 +0000733 else {
Matt Flemingfb834c72013-02-20 20:36:12 +0000734 if (disable_runtime || efi_runtime_init())
Matt Fleming83e68182012-11-14 09:42:35 +0000735 return;
736 set_bit(EFI_RUNTIME_SERVICES, &x86_efi_facility);
Olof Johansson140bf272012-02-12 13:24:28 -0800737 }
Olof Johansson83e7ee62012-02-12 13:24:25 -0800738
Matt Fleming83e68182012-11-14 09:42:35 +0000739 if (efi_memmap_init())
Olof Johansson140bf272012-02-12 13:24:28 -0800740 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000741
742 set_bit(EFI_MEMMAP, &x86_efi_facility);
743
Linus Torvalds11520e52012-12-15 15:15:24 -0800744#ifdef CONFIG_X86_32
Olof Johansson5189c2a2012-10-24 10:00:44 -0700745 if (efi_is_native()) {
Olof Johansson1adbfa32012-02-12 13:24:29 -0800746 x86_platform.get_wallclock = efi_get_time;
747 x86_platform.set_wallclock = efi_set_rtc_mmss;
748 }
Linus Torvalds11520e52012-12-15 15:15:24 -0800749#endif
Feng Tang7bd867d2009-09-10 10:48:56 +0800750
Huang, Ying5b836832008-01-30 13:31:19 +0100751#if EFI_DEBUG
752 print_efi_memmap();
753#endif
754}
755
Josh Triplett2223af32012-09-28 17:57:05 -0700756void __init efi_late_init(void)
757{
758 efi_bgrt_init();
759}
760
Matthew Garrett9cd2b072011-05-05 15:19:43 -0400761void __init efi_set_executable(efi_memory_desc_t *md, bool executable)
762{
763 u64 addr, npages;
764
765 addr = md->virt_addr;
766 npages = md->num_pages;
767
768 memrange_efi_to_native(&addr, &npages);
769
770 if (executable)
771 set_memory_x(addr, npages);
772 else
773 set_memory_nx(addr, npages);
774}
775
Huang, Yinga2172e22008-01-30 13:33:55 +0100776static void __init runtime_code_page_mkexec(void)
777{
778 efi_memory_desc_t *md;
Huang, Yinga2172e22008-01-30 13:33:55 +0100779 void *p;
780
Huang, Yinga2172e22008-01-30 13:33:55 +0100781 /* Make EFI runtime service code area executable */
782 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
783 md = p;
Huang, Ying1c083eb2008-02-04 16:48:06 +0100784
785 if (md->type != EFI_RUNTIME_SERVICES_CODE)
786 continue;
787
Matthew Garrett9cd2b072011-05-05 15:19:43 -0400788 efi_set_executable(md, true);
Huang, Yinga2172e22008-01-30 13:33:55 +0100789 }
Huang, Yinga2172e22008-01-30 13:33:55 +0100790}
Huang, Yinga2172e22008-01-30 13:33:55 +0100791
Huang, Ying5b836832008-01-30 13:31:19 +0100792/*
Josh Triplett7bc90e012012-09-28 17:56:08 -0700793 * We can't ioremap data in EFI boot services RAM, because we've already mapped
794 * it as RAM. So, look it up in the existing EFI memory map instead. Only
795 * callable after efi_enter_virtual_mode and before efi_free_boot_services.
796 */
797void __iomem *efi_lookup_mapped_addr(u64 phys_addr)
798{
799 void *p;
800 if (WARN_ON(!memmap.map))
801 return NULL;
802 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
803 efi_memory_desc_t *md = p;
804 u64 size = md->num_pages << EFI_PAGE_SHIFT;
805 u64 end = md->phys_addr + size;
806 if (!(md->attribute & EFI_MEMORY_RUNTIME) &&
807 md->type != EFI_BOOT_SERVICES_CODE &&
808 md->type != EFI_BOOT_SERVICES_DATA)
809 continue;
810 if (!md->virt_addr)
811 continue;
812 if (phys_addr >= md->phys_addr && phys_addr < end) {
813 phys_addr += md->virt_addr - md->phys_addr;
814 return (__force void __iomem *)(unsigned long)phys_addr;
815 }
816 }
817 return NULL;
818}
819
Matt Fleming3e8fa262012-10-19 13:25:46 +0100820void efi_memory_uc(u64 addr, unsigned long size)
821{
822 unsigned long page_shift = 1UL << EFI_PAGE_SHIFT;
823 u64 npages;
824
825 npages = round_up(size, page_shift) / page_shift;
826 memrange_efi_to_native(&addr, &npages);
827 set_memory_uc(addr, npages);
828}
829
Josh Triplett7bc90e012012-09-28 17:56:08 -0700830/*
Huang, Ying5b836832008-01-30 13:31:19 +0100831 * This function will switch the EFI runtime services to virtual mode.
832 * Essentially, look through the EFI memmap and map every region that
833 * has the runtime attribute bit set in its memory descriptor and update
834 * that memory descriptor with the virtual address obtained from ioremap().
835 * This enables the runtime services to be called without having to
836 * thunk back into physical mode for every invocation.
837 */
838void __init efi_enter_virtual_mode(void)
839{
Matthew Garrett202f9d02011-05-05 15:19:44 -0400840 efi_memory_desc_t *md, *prev_md = NULL;
Huang, Ying5b836832008-01-30 13:31:19 +0100841 efi_status_t status;
Huang, Ying1c083eb2008-02-04 16:48:06 +0100842 unsigned long size;
Jacob Shindda56e12012-11-16 19:38:48 -0800843 u64 end, systab, start_pfn, end_pfn;
Matthew Garrett7cb00b72011-05-05 15:19:45 -0400844 void *p, *va, *new_memmap = NULL;
845 int count = 0;
Huang, Ying5b836832008-01-30 13:31:19 +0100846
847 efi.systab = NULL;
Matthew Garrett202f9d02011-05-05 15:19:44 -0400848
Olof Johansson1adbfa32012-02-12 13:24:29 -0800849 /*
850 * We don't do virtual mode, since we don't do runtime services, on
851 * non-native EFI
852 */
853
Olof Johansson5189c2a2012-10-24 10:00:44 -0700854 if (!efi_is_native()) {
Josh Triplett78510792012-09-28 17:55:44 -0700855 efi_unmap_memmap();
856 return;
857 }
Olof Johansson1adbfa32012-02-12 13:24:29 -0800858
Matthew Garrett202f9d02011-05-05 15:19:44 -0400859 /* Merge contiguous regions of the same type and attribute */
860 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
861 u64 prev_size;
862 md = p;
863
864 if (!prev_md) {
865 prev_md = md;
866 continue;
867 }
868
869 if (prev_md->type != md->type ||
870 prev_md->attribute != md->attribute) {
871 prev_md = md;
872 continue;
873 }
874
875 prev_size = prev_md->num_pages << EFI_PAGE_SHIFT;
876
877 if (md->phys_addr == (prev_md->phys_addr + prev_size)) {
878 prev_md->num_pages += md->num_pages;
879 md->type = EFI_RESERVED_TYPE;
880 md->attribute = 0;
881 continue;
882 }
883 prev_md = md;
884 }
885
Huang, Ying5b836832008-01-30 13:31:19 +0100886 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
887 md = p;
Matthew Garrett916f6762011-05-25 09:53:13 -0400888 if (!(md->attribute & EFI_MEMORY_RUNTIME) &&
889 md->type != EFI_BOOT_SERVICES_CODE &&
890 md->type != EFI_BOOT_SERVICES_DATA)
Huang, Ying5b836832008-01-30 13:31:19 +0100891 continue;
Huang, Ying1c083eb2008-02-04 16:48:06 +0100892
893 size = md->num_pages << EFI_PAGE_SHIFT;
894 end = md->phys_addr + size;
895
Jacob Shindda56e12012-11-16 19:38:48 -0800896 start_pfn = PFN_DOWN(md->phys_addr);
Huang Yingdd39ecf2009-03-04 10:58:33 +0800897 end_pfn = PFN_UP(end);
Jacob Shindda56e12012-11-16 19:38:48 -0800898 if (pfn_range_is_mapped(start_pfn, end_pfn)) {
Huang, Ying1c083eb2008-02-04 16:48:06 +0100899 va = __va(md->phys_addr);
Matt Fleming3e8fa262012-10-19 13:25:46 +0100900
901 if (!(md->attribute & EFI_MEMORY_WB))
902 efi_memory_uc((u64)(unsigned long)va, size);
903 } else
904 va = efi_ioremap(md->phys_addr, size,
905 md->type, md->attribute);
Huang, Ying1c083eb2008-02-04 16:48:06 +0100906
Huang, Ying1c083eb2008-02-04 16:48:06 +0100907 md->virt_addr = (u64) (unsigned long) va;
908
909 if (!va) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800910 pr_err("ioremap of 0x%llX failed!\n",
Huang, Ying5b836832008-01-30 13:31:19 +0100911 (unsigned long long)md->phys_addr);
Huang, Ying1c083eb2008-02-04 16:48:06 +0100912 continue;
913 }
914
915 systab = (u64) (unsigned long) efi_phys.systab;
916 if (md->phys_addr <= systab && systab < end) {
917 systab += md->virt_addr - md->phys_addr;
918 efi.systab = (efi_system_table_t *) (unsigned long) systab;
919 }
Matthew Garrett7cb00b72011-05-05 15:19:45 -0400920 new_memmap = krealloc(new_memmap,
921 (count + 1) * memmap.desc_size,
922 GFP_KERNEL);
923 memcpy(new_memmap + (count * memmap.desc_size), md,
924 memmap.desc_size);
925 count++;
Huang, Ying5b836832008-01-30 13:31:19 +0100926 }
927
928 BUG_ON(!efi.systab);
929
930 status = phys_efi_set_virtual_address_map(
Matthew Garrett7cb00b72011-05-05 15:19:45 -0400931 memmap.desc_size * count,
Huang, Ying5b836832008-01-30 13:31:19 +0100932 memmap.desc_size,
933 memmap.desc_version,
Matthew Garrett7cb00b72011-05-05 15:19:45 -0400934 (efi_memory_desc_t *)__pa(new_memmap));
Huang, Ying5b836832008-01-30 13:31:19 +0100935
936 if (status != EFI_SUCCESS) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800937 pr_alert("Unable to switch EFI into virtual mode "
938 "(status=%lx)!\n", status);
Huang, Ying5b836832008-01-30 13:31:19 +0100939 panic("EFI call to SetVirtualAddressMap() failed!");
940 }
941
942 /*
943 * Now that EFI is in virtual mode, update the function
944 * pointers in the runtime service table to the new virtual addresses.
945 *
946 * Call EFI services through wrapper functions.
947 */
Matt Fleming712ba9e2013-01-25 10:07:25 +0000948 efi.runtime_version = efi_systab.hdr.revision;
Huang, Ying5b836832008-01-30 13:31:19 +0100949 efi.get_time = virt_efi_get_time;
950 efi.set_time = virt_efi_set_time;
951 efi.get_wakeup_time = virt_efi_get_wakeup_time;
952 efi.set_wakeup_time = virt_efi_set_wakeup_time;
953 efi.get_variable = virt_efi_get_variable;
954 efi.get_next_variable = virt_efi_get_next_variable;
955 efi.set_variable = virt_efi_set_variable;
956 efi.get_next_high_mono_count = virt_efi_get_next_high_mono_count;
957 efi.reset_system = virt_efi_reset_system;
Matthew Garrett2b5e8ef2011-05-05 15:19:42 -0400958 efi.set_virtual_address_map = NULL;
Matthew Garrett3b370232011-06-06 15:36:25 -0400959 efi.query_variable_info = virt_efi_query_variable_info;
960 efi.update_capsule = virt_efi_update_capsule;
961 efi.query_capsule_caps = virt_efi_query_capsule_caps;
Huang, Ying4de0d4a2008-02-13 17:22:41 +0800962 if (__supported_pte_mask & _PAGE_NX)
963 runtime_code_page_mkexec();
Olof Johansson1adbfa32012-02-12 13:24:29 -0800964
Matthew Garrett7cb00b72011-05-05 15:19:45 -0400965 kfree(new_memmap);
Huang, Ying5b836832008-01-30 13:31:19 +0100966}
967
968/*
969 * Convenience functions to obtain memory types and attributes
970 */
971u32 efi_mem_type(unsigned long phys_addr)
972{
973 efi_memory_desc_t *md;
974 void *p;
975
Matt Fleming83e68182012-11-14 09:42:35 +0000976 if (!efi_enabled(EFI_MEMMAP))
977 return 0;
978
Huang, Ying5b836832008-01-30 13:31:19 +0100979 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
980 md = p;
981 if ((md->phys_addr <= phys_addr) &&
982 (phys_addr < (md->phys_addr +
983 (md->num_pages << EFI_PAGE_SHIFT))))
984 return md->type;
985 }
986 return 0;
987}
988
989u64 efi_mem_attributes(unsigned long phys_addr)
990{
991 efi_memory_desc_t *md;
992 void *p;
993
994 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
995 md = p;
996 if ((md->phys_addr <= phys_addr) &&
997 (phys_addr < (md->phys_addr +
998 (md->num_pages << EFI_PAGE_SHIFT))))
999 return md->attribute;
1000 }
1001 return 0;
1002}