blob: d62ec87a2b26d5d51bf2228ac7c2155cf9e8b06e [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>
Huang, Ying5b836832008-01-30 13:31:19 +010055
Borislav Petkovf4fccac2013-10-31 17:24:59 +010056#define EFI_DEBUG
Huang, Ying5b836832008-01-30 13:31:19 +010057
Matthew Garrettf8b84042013-06-01 16:06:20 -040058#define EFI_MIN_RESERVE 5120
59
60#define EFI_DUMMY_GUID \
61 EFI_GUID(0x4424ac57, 0xbe4b, 0x47dd, 0x9e, 0x97, 0xed, 0x50, 0xf0, 0x9f, 0x92, 0xa9)
62
63static efi_char16_t efi_dummy_name[6] = { 'D', 'U', 'M', 'M', 'Y', 0 };
Matthew Garrett31ff2f22013-04-15 13:09:47 -070064
Huang, Ying5b836832008-01-30 13:31:19 +010065struct efi_memory_map memmap;
66
Harvey Harrisonecaea422008-02-13 13:26:13 -080067static struct efi efi_phys __initdata;
Huang, Ying5b836832008-01-30 13:31:19 +010068static efi_system_table_t efi_systab __initdata;
69
Matt Fleming83e68182012-11-14 09:42:35 +000070unsigned long x86_efi_facility;
71
Leif Lindholm272686b2013-09-05 11:34:54 +010072static __initdata efi_config_table_type_t arch_tables[] = {
73#ifdef CONFIG_X86_UV
74 {UV_SYSTEM_TABLE_GUID, "UVsystab", &efi.uv_systab},
75#endif
Leif Lindholm722da9d2013-10-03 15:42:37 +010076 {NULL_GUID, NULL, NULL},
Leif Lindholm272686b2013-09-05 11:34:54 +010077};
78
Dave Young1fec0532013-12-20 18:02:19 +080079u64 efi_setup; /* efi setup_data physical address */
Dave Young926172d2013-12-20 18:02:18 +080080
Matt Fleming83e68182012-11-14 09:42:35 +000081/*
82 * Returns 1 if 'facility' is enabled, 0 otherwise.
83 */
84int efi_enabled(int facility)
85{
86 return test_bit(facility, &x86_efi_facility) != 0;
87}
88EXPORT_SYMBOL(efi_enabled);
89
Matt Fleming058e7b52013-02-22 15:03:47 +000090static bool __initdata disable_runtime = false;
Huang, Ying8b2cb7a2008-01-30 13:32:11 +010091static int __init setup_noefi(char *arg)
92{
Matt Flemingfb834c72013-02-20 20:36:12 +000093 disable_runtime = true;
Huang, Ying8b2cb7a2008-01-30 13:32:11 +010094 return 0;
95}
96early_param("noefi", setup_noefi);
97
Paul Jackson200001e2008-06-25 05:44:46 -070098int add_efi_memmap;
99EXPORT_SYMBOL(add_efi_memmap);
100
101static int __init setup_add_efi_memmap(char *arg)
102{
103 add_efi_memmap = 1;
104 return 0;
105}
106early_param("add_efi_memmap", setup_add_efi_memmap);
107
Richard Weinberger8c58bf32013-04-17 01:00:53 +0200108static bool efi_no_storage_paranoia;
109
110static int __init setup_storage_paranoia(char *arg)
111{
112 efi_no_storage_paranoia = true;
113 return 0;
114}
115early_param("efi_no_storage_paranoia", setup_storage_paranoia);
116
Huang, Ying5b836832008-01-30 13:31:19 +0100117static efi_status_t virt_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc)
118{
Jan Beulichef68c8f2011-07-19 11:53:07 +0100119 unsigned long flags;
120 efi_status_t status;
121
122 spin_lock_irqsave(&rtc_lock, flags);
123 status = efi_call_virt2(get_time, tm, tc);
124 spin_unlock_irqrestore(&rtc_lock, flags);
125 return status;
Huang, Ying5b836832008-01-30 13:31:19 +0100126}
127
128static efi_status_t virt_efi_set_time(efi_time_t *tm)
129{
Jan Beulichef68c8f2011-07-19 11:53:07 +0100130 unsigned long flags;
131 efi_status_t status;
132
133 spin_lock_irqsave(&rtc_lock, flags);
134 status = efi_call_virt1(set_time, 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_get_wakeup_time(efi_bool_t *enabled,
140 efi_bool_t *pending,
141 efi_time_t *tm)
142{
Jan Beulichef68c8f2011-07-19 11:53:07 +0100143 unsigned long flags;
144 efi_status_t status;
145
146 spin_lock_irqsave(&rtc_lock, flags);
147 status = efi_call_virt3(get_wakeup_time,
148 enabled, pending, tm);
149 spin_unlock_irqrestore(&rtc_lock, flags);
150 return status;
Huang, Ying5b836832008-01-30 13:31:19 +0100151}
152
153static efi_status_t virt_efi_set_wakeup_time(efi_bool_t enabled, efi_time_t *tm)
154{
Jan Beulichef68c8f2011-07-19 11:53:07 +0100155 unsigned long flags;
156 efi_status_t status;
157
158 spin_lock_irqsave(&rtc_lock, flags);
159 status = efi_call_virt2(set_wakeup_time,
160 enabled, tm);
161 spin_unlock_irqrestore(&rtc_lock, flags);
162 return status;
Huang, Ying5b836832008-01-30 13:31:19 +0100163}
164
165static efi_status_t virt_efi_get_variable(efi_char16_t *name,
166 efi_guid_t *vendor,
167 u32 *attr,
168 unsigned long *data_size,
169 void *data)
170{
171 return efi_call_virt5(get_variable,
172 name, vendor, attr,
173 data_size, data);
174}
175
176static efi_status_t virt_efi_get_next_variable(unsigned long *name_size,
177 efi_char16_t *name,
178 efi_guid_t *vendor)
179{
Matthew Garrettf8b84042013-06-01 16:06:20 -0400180 return efi_call_virt3(get_next_variable,
181 name_size, name, vendor);
Huang, Ying5b836832008-01-30 13:31:19 +0100182}
183
184static efi_status_t virt_efi_set_variable(efi_char16_t *name,
185 efi_guid_t *vendor,
Matthew Garrettf7a2d732011-06-06 15:36:24 -0400186 u32 attr,
Huang, Ying5b836832008-01-30 13:31:19 +0100187 unsigned long data_size,
188 void *data)
189{
Matthew Garrettf8b84042013-06-01 16:06:20 -0400190 return efi_call_virt5(set_variable,
191 name, vendor, attr,
192 data_size, data);
Huang, Ying5b836832008-01-30 13:31:19 +0100193}
194
Matthew Garrett3b370232011-06-06 15:36:25 -0400195static efi_status_t virt_efi_query_variable_info(u32 attr,
196 u64 *storage_space,
197 u64 *remaining_space,
198 u64 *max_variable_size)
199{
200 if (efi.runtime_version < EFI_2_00_SYSTEM_TABLE_REVISION)
201 return EFI_UNSUPPORTED;
202
203 return efi_call_virt4(query_variable_info, attr, storage_space,
204 remaining_space, max_variable_size);
205}
206
Huang, Ying5b836832008-01-30 13:31:19 +0100207static efi_status_t virt_efi_get_next_high_mono_count(u32 *count)
208{
209 return efi_call_virt1(get_next_high_mono_count, count);
210}
211
212static void virt_efi_reset_system(int reset_type,
213 efi_status_t status,
214 unsigned long data_size,
215 efi_char16_t *data)
216{
217 efi_call_virt4(reset_system, reset_type, status,
218 data_size, data);
219}
220
Matthew Garrett3b370232011-06-06 15:36:25 -0400221static efi_status_t virt_efi_update_capsule(efi_capsule_header_t **capsules,
222 unsigned long count,
223 unsigned long sg_list)
224{
225 if (efi.runtime_version < EFI_2_00_SYSTEM_TABLE_REVISION)
226 return EFI_UNSUPPORTED;
227
228 return efi_call_virt3(update_capsule, capsules, count, sg_list);
229}
230
231static efi_status_t virt_efi_query_capsule_caps(efi_capsule_header_t **capsules,
232 unsigned long count,
233 u64 *max_size,
234 int *reset_type)
235{
236 if (efi.runtime_version < EFI_2_00_SYSTEM_TABLE_REVISION)
237 return EFI_UNSUPPORTED;
238
239 return efi_call_virt4(query_capsule_caps, capsules, count, max_size,
240 reset_type);
241}
242
Huang, Ying5b836832008-01-30 13:31:19 +0100243static efi_status_t __init phys_efi_set_virtual_address_map(
244 unsigned long memory_map_size,
245 unsigned long descriptor_size,
246 u32 descriptor_version,
247 efi_memory_desc_t *virtual_map)
248{
249 efi_status_t status;
250
251 efi_call_phys_prelog();
252 status = efi_call_phys4(efi_phys.set_virtual_address_map,
253 memory_map_size, descriptor_size,
254 descriptor_version, virtual_map);
255 efi_call_phys_epilog();
256 return status;
257}
258
Linus Torvalds11520e52012-12-15 15:15:24 -0800259static efi_status_t __init phys_efi_get_time(efi_time_t *tm,
260 efi_time_cap_t *tc)
261{
262 unsigned long flags;
263 efi_status_t status;
264
265 spin_lock_irqsave(&rtc_lock, flags);
266 efi_call_phys_prelog();
267 status = efi_call_phys2(efi_phys.get_time, virt_to_phys(tm),
268 virt_to_phys(tc));
269 efi_call_phys_epilog();
270 spin_unlock_irqrestore(&rtc_lock, flags);
271 return status;
272}
273
David Vrabel35651842013-05-13 18:56:06 +0100274int efi_set_rtc_mmss(const struct timespec *now)
Huang, Ying5b836832008-01-30 13:31:19 +0100275{
David Vrabel35651842013-05-13 18:56:06 +0100276 unsigned long nowtime = now->tv_sec;
Huang, Ying5b836832008-01-30 13:31:19 +0100277 efi_status_t status;
278 efi_time_t eft;
279 efi_time_cap_t cap;
Prarit Bhargava3195ef52013-02-14 12:02:54 -0500280 struct rtc_time tm;
Huang, Ying5b836832008-01-30 13:31:19 +0100281
282 status = efi.get_time(&eft, &cap);
283 if (status != EFI_SUCCESS) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800284 pr_err("Oops: efitime: can't read time!\n");
Huang, Ying5b836832008-01-30 13:31:19 +0100285 return -1;
286 }
287
Prarit Bhargava3195ef52013-02-14 12:02:54 -0500288 rtc_time_to_tm(nowtime, &tm);
289 if (!rtc_valid_tm(&tm)) {
290 eft.year = tm.tm_year + 1900;
291 eft.month = tm.tm_mon + 1;
292 eft.day = tm.tm_mday;
293 eft.minute = tm.tm_min;
294 eft.second = tm.tm_sec;
295 eft.nanosecond = 0;
296 } else {
297 printk(KERN_ERR
298 "%s: Invalid EFI RTC value: write of %lx to EFI RTC failed\n",
299 __FUNCTION__, nowtime);
300 return -1;
301 }
Huang, Ying5b836832008-01-30 13:31:19 +0100302
303 status = efi.set_time(&eft);
304 if (status != EFI_SUCCESS) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800305 pr_err("Oops: efitime: can't write time!\n");
Huang, Ying5b836832008-01-30 13:31:19 +0100306 return -1;
307 }
308 return 0;
309}
310
David Vrabel35651842013-05-13 18:56:06 +0100311void efi_get_time(struct timespec *now)
Huang, Ying5b836832008-01-30 13:31:19 +0100312{
313 efi_status_t status;
314 efi_time_t eft;
315 efi_time_cap_t cap;
316
317 status = efi.get_time(&eft, &cap);
318 if (status != EFI_SUCCESS)
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800319 pr_err("Oops: efitime: can't read time!\n");
Huang, Ying5b836832008-01-30 13:31:19 +0100320
David Vrabel35651842013-05-13 18:56:06 +0100321 now->tv_sec = mktime(eft.year, eft.month, eft.day, eft.hour,
322 eft.minute, eft.second);
323 now->tv_nsec = 0;
Huang, Ying5b836832008-01-30 13:31:19 +0100324}
325
Paul Jackson69c91892008-05-14 08:15:58 -0700326/*
327 * Tell the kernel about the EFI memory map. This might include
328 * more than the max 128 entries that can fit in the e820 legacy
329 * (zeropage) memory map.
330 */
331
Paul Jackson200001e2008-06-25 05:44:46 -0700332static void __init do_add_efi_memmap(void)
Paul Jackson69c91892008-05-14 08:15:58 -0700333{
334 void *p;
335
336 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
337 efi_memory_desc_t *md = p;
338 unsigned long long start = md->phys_addr;
339 unsigned long long size = md->num_pages << EFI_PAGE_SHIFT;
340 int e820_type;
341
Cliff Wickmane2a71472009-06-16 16:43:40 -0500342 switch (md->type) {
343 case EFI_LOADER_CODE:
344 case EFI_LOADER_DATA:
345 case EFI_BOOT_SERVICES_CODE:
346 case EFI_BOOT_SERVICES_DATA:
347 case EFI_CONVENTIONAL_MEMORY:
348 if (md->attribute & EFI_MEMORY_WB)
349 e820_type = E820_RAM;
350 else
351 e820_type = E820_RESERVED;
352 break;
353 case EFI_ACPI_RECLAIM_MEMORY:
354 e820_type = E820_ACPI;
355 break;
356 case EFI_ACPI_MEMORY_NVS:
357 e820_type = E820_NVS;
358 break;
359 case EFI_UNUSABLE_MEMORY:
360 e820_type = E820_UNUSABLE;
361 break;
362 default:
363 /*
364 * EFI_RESERVED_TYPE EFI_RUNTIME_SERVICES_CODE
365 * EFI_RUNTIME_SERVICES_DATA EFI_MEMORY_MAPPED_IO
366 * EFI_MEMORY_MAPPED_IO_PORT_SPACE EFI_PAL_CODE
367 */
Paul Jackson69c91892008-05-14 08:15:58 -0700368 e820_type = E820_RESERVED;
Cliff Wickmane2a71472009-06-16 16:43:40 -0500369 break;
370 }
Yinghai Lud0be6bd2008-06-15 18:58:51 -0700371 e820_add_region(start, size, e820_type);
Paul Jackson69c91892008-05-14 08:15:58 -0700372 }
373 sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
374}
375
Olof Johansson1adbfa32012-02-12 13:24:29 -0800376int __init efi_memblock_x86_reserve_range(void)
Huang, Yingecacf092008-06-02 14:26:21 +0800377{
Borislav Petkov15b9c352013-03-01 17:07:44 +0100378 struct efi_info *e = &boot_params.efi_info;
Huang, Yingecacf092008-06-02 14:26:21 +0800379 unsigned long pmap;
380
Paul Jackson05486fa2008-06-22 07:22:02 -0700381#ifdef CONFIG_X86_32
Olof Johansson1adbfa32012-02-12 13:24:29 -0800382 /* Can't handle data above 4GB at this time */
Borislav Petkov15b9c352013-03-01 17:07:44 +0100383 if (e->efi_memmap_hi) {
Olof Johansson1adbfa32012-02-12 13:24:29 -0800384 pr_err("Memory map is above 4GB, disabling EFI.\n");
385 return -EINVAL;
386 }
Borislav Petkov15b9c352013-03-01 17:07:44 +0100387 pmap = e->efi_memmap;
Paul Jackson05486fa2008-06-22 07:22:02 -0700388#else
Borislav Petkov15b9c352013-03-01 17:07:44 +0100389 pmap = (e->efi_memmap | ((__u64)e->efi_memmap_hi << 32));
Huang, Yingecacf092008-06-02 14:26:21 +0800390#endif
Borislav Petkov15b9c352013-03-01 17:07:44 +0100391 memmap.phys_map = (void *)pmap;
392 memmap.nr_map = e->efi_memmap_size /
393 e->efi_memdesc_size;
394 memmap.desc_size = e->efi_memdesc_size;
395 memmap.desc_version = e->efi_memdesc_version;
396
Tejun Heo24aa0782011-07-12 11:16:06 +0200397 memblock_reserve(pmap, memmap.nr_map * memmap.desc_size);
Olof Johansson1adbfa32012-02-12 13:24:29 -0800398
Leif Lindholm258f6fd2013-09-05 11:34:55 +0100399 efi.memmap = &memmap;
400
Olof Johansson1adbfa32012-02-12 13:24:29 -0800401 return 0;
Huang, Yingecacf092008-06-02 14:26:21 +0800402}
403
Huang, Ying5b836832008-01-30 13:31:19 +0100404static void __init print_efi_memmap(void)
405{
Borislav Petkovf4fccac2013-10-31 17:24:59 +0100406#ifdef EFI_DEBUG
Huang, Ying5b836832008-01-30 13:31:19 +0100407 efi_memory_desc_t *md;
408 void *p;
409 int i;
410
411 for (p = memmap.map, i = 0;
412 p < memmap.map_end;
413 p += memmap.desc_size, i++) {
414 md = p;
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800415 pr_info("mem%02u: type=%u, attr=0x%llx, "
Huang, Ying5b836832008-01-30 13:31:19 +0100416 "range=[0x%016llx-0x%016llx) (%lluMB)\n",
417 i, md->type, md->attribute, md->phys_addr,
418 md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT),
419 (md->num_pages >> (20 - EFI_PAGE_SHIFT)));
420 }
Huang, Ying5b836832008-01-30 13:31:19 +0100421#endif /* EFI_DEBUG */
Borislav Petkovf4fccac2013-10-31 17:24:59 +0100422}
Huang, Ying5b836832008-01-30 13:31:19 +0100423
Matthew Garrett916f6762011-05-25 09:53:13 -0400424void __init efi_reserve_boot_services(void)
425{
426 void *p;
427
428 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
429 efi_memory_desc_t *md = p;
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200430 u64 start = md->phys_addr;
431 u64 size = md->num_pages << EFI_PAGE_SHIFT;
Matthew Garrett916f6762011-05-25 09:53:13 -0400432
433 if (md->type != EFI_BOOT_SERVICES_CODE &&
434 md->type != EFI_BOOT_SERVICES_DATA)
435 continue;
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200436 /* Only reserve where possible:
437 * - Not within any already allocated areas
438 * - Not over any memory area (really needed, if above?)
439 * - Not within any part of the kernel
440 * - Not the bios reserved area
441 */
Dave Younga7f84f02013-12-20 18:02:15 +0800442 if ((start + size > __pa_symbol(_text)
Alexander Duyckfc8d7822012-11-16 13:57:13 -0800443 && start <= __pa_symbol(_end)) ||
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200444 !e820_all_mapped(start, start+size, E820_RAM) ||
Tejun Heobf615492011-07-12 09:58:05 +0200445 memblock_is_region_reserved(start, size)) {
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200446 /* Could not reserve, skip it */
447 md->num_pages = 0;
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800448 memblock_dbg("Could not reserve boot range "
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200449 "[0x%010llx-0x%010llx]\n",
450 start, start+size-1);
451 } else
Tejun Heo24aa0782011-07-12 11:16:06 +0200452 memblock_reserve(start, size);
Matthew Garrett916f6762011-05-25 09:53:13 -0400453 }
454}
455
Olof Johansson5189c2a2012-10-24 10:00:44 -0700456void __init efi_unmap_memmap(void)
Josh Triplett78510792012-09-28 17:55:44 -0700457{
Matt Fleming83e68182012-11-14 09:42:35 +0000458 clear_bit(EFI_MEMMAP, &x86_efi_facility);
Josh Triplett78510792012-09-28 17:55:44 -0700459 if (memmap.map) {
460 early_iounmap(memmap.map, memmap.nr_map * memmap.desc_size);
461 memmap.map = NULL;
462 }
463}
464
465void __init efi_free_boot_services(void)
Matthew Garrett916f6762011-05-25 09:53:13 -0400466{
467 void *p;
468
Olof Johansson5189c2a2012-10-24 10:00:44 -0700469 if (!efi_is_native())
Josh Triplett78510792012-09-28 17:55:44 -0700470 return;
471
Matthew Garrett916f6762011-05-25 09:53:13 -0400472 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
473 efi_memory_desc_t *md = p;
474 unsigned long long start = md->phys_addr;
475 unsigned long long size = md->num_pages << EFI_PAGE_SHIFT;
476
477 if (md->type != EFI_BOOT_SERVICES_CODE &&
478 md->type != EFI_BOOT_SERVICES_DATA)
479 continue;
480
Maarten Lankhorst7d68dc32011-06-14 19:53:09 +0200481 /* Could not reserve boot area */
482 if (!size)
483 continue;
484
Matthew Garrett916f6762011-05-25 09:53:13 -0400485 free_bootmem_late(start, size);
486 }
Josh Triplett78510792012-09-28 17:55:44 -0700487
488 efi_unmap_memmap();
Matthew Garrett916f6762011-05-25 09:53:13 -0400489}
490
Olof Johansson140bf272012-02-12 13:24:28 -0800491static int __init efi_systab_init(void *phys)
Huang, Ying5b836832008-01-30 13:31:19 +0100492{
Matt Fleming83e68182012-11-14 09:42:35 +0000493 if (efi_enabled(EFI_64BIT)) {
Olof Johansson1adbfa32012-02-12 13:24:29 -0800494 efi_system_table_64_t *systab64;
Dave Young1fec0532013-12-20 18:02:19 +0800495 struct efi_setup_data *data = NULL;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800496 u64 tmp = 0;
497
Dave Young1fec0532013-12-20 18:02:19 +0800498 if (efi_setup) {
499 data = early_memremap(efi_setup, sizeof(*data));
500 if (!data)
501 return -ENOMEM;
502 }
Olof Johansson1adbfa32012-02-12 13:24:29 -0800503 systab64 = early_ioremap((unsigned long)phys,
504 sizeof(*systab64));
505 if (systab64 == NULL) {
506 pr_err("Couldn't map the system table!\n");
Dave Young1fec0532013-12-20 18:02:19 +0800507 if (data)
508 early_iounmap(data, sizeof(*data));
Olof Johansson1adbfa32012-02-12 13:24:29 -0800509 return -ENOMEM;
510 }
511
512 efi_systab.hdr = systab64->hdr;
Dave Young1fec0532013-12-20 18:02:19 +0800513 efi_systab.fw_vendor = data ? (unsigned long)data->fw_vendor :
514 systab64->fw_vendor;
515 tmp |= data ? data->fw_vendor : systab64->fw_vendor;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800516 efi_systab.fw_revision = systab64->fw_revision;
517 efi_systab.con_in_handle = systab64->con_in_handle;
518 tmp |= systab64->con_in_handle;
519 efi_systab.con_in = systab64->con_in;
520 tmp |= systab64->con_in;
521 efi_systab.con_out_handle = systab64->con_out_handle;
522 tmp |= systab64->con_out_handle;
523 efi_systab.con_out = systab64->con_out;
524 tmp |= systab64->con_out;
525 efi_systab.stderr_handle = systab64->stderr_handle;
526 tmp |= systab64->stderr_handle;
527 efi_systab.stderr = systab64->stderr;
528 tmp |= systab64->stderr;
Dave Young1fec0532013-12-20 18:02:19 +0800529 efi_systab.runtime = data ?
530 (void *)(unsigned long)data->runtime :
531 (void *)(unsigned long)systab64->runtime;
532 tmp |= data ? data->runtime : systab64->runtime;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800533 efi_systab.boottime = (void *)(unsigned long)systab64->boottime;
534 tmp |= systab64->boottime;
535 efi_systab.nr_tables = systab64->nr_tables;
Dave Young1fec0532013-12-20 18:02:19 +0800536 efi_systab.tables = data ? (unsigned long)data->tables :
537 systab64->tables;
538 tmp |= data ? data->tables : systab64->tables;
Olof Johansson1adbfa32012-02-12 13:24:29 -0800539
540 early_iounmap(systab64, sizeof(*systab64));
Dave Young1fec0532013-12-20 18:02:19 +0800541 if (data)
542 early_iounmap(data, sizeof(*data));
Olof Johansson1adbfa32012-02-12 13:24:29 -0800543#ifdef CONFIG_X86_32
544 if (tmp >> 32) {
545 pr_err("EFI data located above 4GB, disabling EFI.\n");
546 return -EINVAL;
547 }
548#endif
549 } else {
550 efi_system_table_32_t *systab32;
551
552 systab32 = early_ioremap((unsigned long)phys,
553 sizeof(*systab32));
554 if (systab32 == NULL) {
555 pr_err("Couldn't map the system table!\n");
556 return -ENOMEM;
557 }
558
559 efi_systab.hdr = systab32->hdr;
560 efi_systab.fw_vendor = systab32->fw_vendor;
561 efi_systab.fw_revision = systab32->fw_revision;
562 efi_systab.con_in_handle = systab32->con_in_handle;
563 efi_systab.con_in = systab32->con_in;
564 efi_systab.con_out_handle = systab32->con_out_handle;
565 efi_systab.con_out = systab32->con_out;
566 efi_systab.stderr_handle = systab32->stderr_handle;
567 efi_systab.stderr = systab32->stderr;
568 efi_systab.runtime = (void *)(unsigned long)systab32->runtime;
569 efi_systab.boottime = (void *)(unsigned long)systab32->boottime;
570 efi_systab.nr_tables = systab32->nr_tables;
571 efi_systab.tables = systab32->tables;
572
573 early_iounmap(systab32, sizeof(*systab32));
Olof Johansson140bf272012-02-12 13:24:28 -0800574 }
Olof Johansson1adbfa32012-02-12 13:24:29 -0800575
Huang, Ying5b836832008-01-30 13:31:19 +0100576 efi.systab = &efi_systab;
577
578 /*
579 * Verify the EFI Table
580 */
Olof Johansson140bf272012-02-12 13:24:28 -0800581 if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800582 pr_err("System table signature incorrect!\n");
Olof Johansson140bf272012-02-12 13:24:28 -0800583 return -EINVAL;
584 }
Huang, Ying5b836832008-01-30 13:31:19 +0100585 if ((efi.systab->hdr.revision >> 16) == 0)
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800586 pr_err("Warning: System table version "
Huang, Ying5b836832008-01-30 13:31:19 +0100587 "%d.%02d, expected 1.00 or greater!\n",
588 efi.systab->hdr.revision >> 16,
589 efi.systab->hdr.revision & 0xffff);
Olof Johansson140bf272012-02-12 13:24:28 -0800590
591 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800592}
Huang, Ying5b836832008-01-30 13:31:19 +0100593
Olof Johansson140bf272012-02-12 13:24:28 -0800594static int __init efi_runtime_init(void)
Olof Johansson83e7ee62012-02-12 13:24:25 -0800595{
596 efi_runtime_services_t *runtime;
Huang, Ying5b836832008-01-30 13:31:19 +0100597
598 /*
599 * Check out the runtime services table. We need to map
600 * the runtime services table so that we can grab the physical
601 * address of several of the EFI runtime functions, needed to
602 * set the firmware into virtual mode.
603 */
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100604 runtime = early_ioremap((unsigned long)efi.systab->runtime,
605 sizeof(efi_runtime_services_t));
Olof Johansson140bf272012-02-12 13:24:28 -0800606 if (!runtime) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800607 pr_err("Could not map the runtime service table!\n");
Olof Johansson140bf272012-02-12 13:24:28 -0800608 return -ENOMEM;
609 }
610 /*
611 * We will only need *early* access to the following
Linus Torvalds11520e52012-12-15 15:15:24 -0800612 * two EFI runtime services before set_virtual_address_map
Olof Johansson140bf272012-02-12 13:24:28 -0800613 * is invoked.
614 */
Linus Torvalds11520e52012-12-15 15:15:24 -0800615 efi_phys.get_time = (efi_get_time_t *)runtime->get_time;
Olof Johansson140bf272012-02-12 13:24:28 -0800616 efi_phys.set_virtual_address_map =
617 (efi_set_virtual_address_map_t *)
618 runtime->set_virtual_address_map;
Linus Torvalds11520e52012-12-15 15:15:24 -0800619 /*
620 * Make efi_get_time can be called before entering
621 * virtual mode.
622 */
623 efi.get_time = phys_efi_get_time;
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100624 early_iounmap(runtime, sizeof(efi_runtime_services_t));
Olof Johansson140bf272012-02-12 13:24:28 -0800625
626 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800627}
Huang, Ying5b836832008-01-30 13:31:19 +0100628
Olof Johansson140bf272012-02-12 13:24:28 -0800629static int __init efi_memmap_init(void)
Olof Johansson83e7ee62012-02-12 13:24:25 -0800630{
Huang, Ying5b836832008-01-30 13:31:19 +0100631 /* Map the EFI memory map */
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100632 memmap.map = early_ioremap((unsigned long)memmap.phys_map,
633 memmap.nr_map * memmap.desc_size);
Olof Johansson140bf272012-02-12 13:24:28 -0800634 if (memmap.map == NULL) {
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800635 pr_err("Could not map the memory map!\n");
Olof Johansson140bf272012-02-12 13:24:28 -0800636 return -ENOMEM;
637 }
Huang, Ying5b836832008-01-30 13:31:19 +0100638 memmap.map_end = memmap.map + (memmap.nr_map * memmap.desc_size);
Russ Anderson175e4382008-10-02 17:32:06 -0500639
Paul Jackson200001e2008-06-25 05:44:46 -0700640 if (add_efi_memmap)
641 do_add_efi_memmap();
Olof Johansson140bf272012-02-12 13:24:28 -0800642
643 return 0;
Olof Johansson83e7ee62012-02-12 13:24:25 -0800644}
645
Dave Young1fec0532013-12-20 18:02:19 +0800646/*
647 * A number of config table entries get remapped to virtual addresses
648 * after entering EFI virtual mode. However, the kexec kernel requires
649 * their physical addresses therefore we pass them via setup_data and
650 * correct those entries to their respective physical addresses here.
651 *
652 * Currently only handles smbios which is necessary for some firmware
653 * implementation.
654 */
655static int __init efi_reuse_config(u64 tables, int nr_tables)
656{
657 int i, sz, ret = 0;
658 void *p, *tablep;
659 struct efi_setup_data *data;
660
661 if (!efi_setup)
662 return 0;
663
664 if (!efi_enabled(EFI_64BIT))
665 return 0;
666
667 data = early_memremap(efi_setup, sizeof(*data));
668 if (!data) {
669 ret = -ENOMEM;
670 goto out;
671 }
672
673 if (!data->smbios)
674 goto out_memremap;
675
676 sz = sizeof(efi_config_table_64_t);
677
678 p = tablep = early_memremap(tables, nr_tables * sz);
679 if (!p) {
680 pr_err("Could not map Configuration table!\n");
681 ret = -ENOMEM;
682 goto out_memremap;
683 }
684
685 for (i = 0; i < efi.systab->nr_tables; i++) {
686 efi_guid_t guid;
687
688 guid = ((efi_config_table_64_t *)p)->guid;
689
690 if (!efi_guidcmp(guid, SMBIOS_TABLE_GUID))
691 ((efi_config_table_64_t *)p)->table = data->smbios;
692 p += sz;
693 }
694 early_iounmap(tablep, nr_tables * sz);
695
696out_memremap:
697 early_iounmap(data, sizeof(*data));
698out:
699 return ret;
700}
701
Olof Johansson83e7ee62012-02-12 13:24:25 -0800702void __init efi_init(void)
703{
704 efi_char16_t *c16;
705 char vendor[100] = "unknown";
706 int i = 0;
707 void *tmp;
708
709#ifdef CONFIG_X86_32
Olof Johansson1adbfa32012-02-12 13:24:29 -0800710 if (boot_params.efi_info.efi_systab_hi ||
711 boot_params.efi_info.efi_memmap_hi) {
712 pr_info("Table located above 4GB, disabling EFI.\n");
Olof Johansson1adbfa32012-02-12 13:24:29 -0800713 return;
714 }
Olof Johansson83e7ee62012-02-12 13:24:25 -0800715 efi_phys.systab = (efi_system_table_t *)boot_params.efi_info.efi_systab;
716#else
717 efi_phys.systab = (efi_system_table_t *)
Olof Johansson1adbfa32012-02-12 13:24:29 -0800718 (boot_params.efi_info.efi_systab |
719 ((__u64)boot_params.efi_info.efi_systab_hi<<32));
Olof Johansson83e7ee62012-02-12 13:24:25 -0800720#endif
721
Matt Fleming83e68182012-11-14 09:42:35 +0000722 if (efi_systab_init(efi_phys.systab))
Olof Johansson140bf272012-02-12 13:24:28 -0800723 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000724
725 set_bit(EFI_SYSTEM_TABLES, &x86_efi_facility);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800726
Dave Younga0998eb2013-12-20 18:02:17 +0800727 efi.config_table = (unsigned long)efi.systab->tables;
728 efi.fw_vendor = (unsigned long)efi.systab->fw_vendor;
729 efi.runtime = (unsigned long)efi.systab->runtime;
730
Olof Johansson83e7ee62012-02-12 13:24:25 -0800731 /*
732 * Show what we know for posterity
733 */
734 c16 = tmp = early_ioremap(efi.systab->fw_vendor, 2);
735 if (c16) {
736 for (i = 0; i < sizeof(vendor) - 1 && *c16; ++i)
737 vendor[i] = *c16++;
738 vendor[i] = '\0';
739 } else
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800740 pr_err("Could not map the firmware vendor!\n");
Olof Johansson83e7ee62012-02-12 13:24:25 -0800741 early_iounmap(tmp, 2);
742
Olof Johanssone3cb3f52012-02-12 13:24:26 -0800743 pr_info("EFI v%u.%.02u by %s\n",
744 efi.systab->hdr.revision >> 16,
745 efi.systab->hdr.revision & 0xffff, vendor);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800746
Dave Young1fec0532013-12-20 18:02:19 +0800747 if (efi_reuse_config(efi.systab->tables, efi.systab->nr_tables))
748 return;
749
Leif Lindholm272686b2013-09-05 11:34:54 +0100750 if (efi_config_init(arch_tables))
Olof Johansson140bf272012-02-12 13:24:28 -0800751 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000752
753 set_bit(EFI_CONFIG_TABLES, &x86_efi_facility);
Olof Johansson83e7ee62012-02-12 13:24:25 -0800754
Olof Johansson1adbfa32012-02-12 13:24:29 -0800755 /*
756 * Note: We currently don't support runtime services on an EFI
757 * that doesn't match the kernel 32/64-bit mode.
758 */
759
Olof Johansson5189c2a2012-10-24 10:00:44 -0700760 if (!efi_is_native())
Olof Johansson1adbfa32012-02-12 13:24:29 -0800761 pr_info("No EFI runtime due to 32/64-bit mismatch with kernel\n");
Matt Fleming83e68182012-11-14 09:42:35 +0000762 else {
Matt Flemingfb834c72013-02-20 20:36:12 +0000763 if (disable_runtime || efi_runtime_init())
Matt Fleming83e68182012-11-14 09:42:35 +0000764 return;
765 set_bit(EFI_RUNTIME_SERVICES, &x86_efi_facility);
Olof Johansson140bf272012-02-12 13:24:28 -0800766 }
Matt Fleming83e68182012-11-14 09:42:35 +0000767 if (efi_memmap_init())
Olof Johansson140bf272012-02-12 13:24:28 -0800768 return;
Matt Fleming83e68182012-11-14 09:42:35 +0000769
770 set_bit(EFI_MEMMAP, &x86_efi_facility);
771
Huang, Ying5b836832008-01-30 13:31:19 +0100772 print_efi_memmap();
Huang, Ying5b836832008-01-30 13:31:19 +0100773}
774
Josh Triplett2223af32012-09-28 17:57:05 -0700775void __init efi_late_init(void)
776{
777 efi_bgrt_init();
778}
779
Matthew Garrett9cd2b072011-05-05 15:19:43 -0400780void __init efi_set_executable(efi_memory_desc_t *md, bool executable)
781{
782 u64 addr, npages;
783
784 addr = md->virt_addr;
785 npages = md->num_pages;
786
787 memrange_efi_to_native(&addr, &npages);
788
789 if (executable)
790 set_memory_x(addr, npages);
791 else
792 set_memory_nx(addr, npages);
793}
794
Huang, Yinga2172e22008-01-30 13:33:55 +0100795static void __init runtime_code_page_mkexec(void)
796{
797 efi_memory_desc_t *md;
Huang, Yinga2172e22008-01-30 13:33:55 +0100798 void *p;
799
Huang, Yinga2172e22008-01-30 13:33:55 +0100800 /* Make EFI runtime service code area executable */
801 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
802 md = p;
Huang, Ying1c083eb2008-02-04 16:48:06 +0100803
804 if (md->type != EFI_RUNTIME_SERVICES_CODE)
805 continue;
806
Matthew Garrett9cd2b072011-05-05 15:19:43 -0400807 efi_set_executable(md, true);
Huang, Yinga2172e22008-01-30 13:33:55 +0100808 }
Huang, Yinga2172e22008-01-30 13:33:55 +0100809}
Huang, Yinga2172e22008-01-30 13:33:55 +0100810
Matt Fleming3e8fa262012-10-19 13:25:46 +0100811void efi_memory_uc(u64 addr, unsigned long size)
812{
813 unsigned long page_shift = 1UL << EFI_PAGE_SHIFT;
814 u64 npages;
815
816 npages = round_up(size, page_shift) / page_shift;
817 memrange_efi_to_native(&addr, &npages);
818 set_memory_uc(addr, npages);
819}
820
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100821void __init old_map_region(efi_memory_desc_t *md)
822{
823 u64 start_pfn, end_pfn, end;
824 unsigned long size;
825 void *va;
826
827 start_pfn = PFN_DOWN(md->phys_addr);
828 size = md->num_pages << PAGE_SHIFT;
829 end = md->phys_addr + size;
830 end_pfn = PFN_UP(end);
831
832 if (pfn_range_is_mapped(start_pfn, end_pfn)) {
833 va = __va(md->phys_addr);
834
835 if (!(md->attribute & EFI_MEMORY_WB))
836 efi_memory_uc((u64)(unsigned long)va, size);
837 } else
838 va = efi_ioremap(md->phys_addr, size,
839 md->type, md->attribute);
840
841 md->virt_addr = (u64) (unsigned long) va;
842 if (!va)
843 pr_err("ioremap of 0x%llX failed!\n",
844 (unsigned long long)md->phys_addr);
845}
846
Dave Young481f75c2013-12-20 18:02:16 +0800847/* Merge contiguous regions of the same type and attribute */
848static void __init efi_merge_regions(void)
Huang, Ying5b836832008-01-30 13:31:19 +0100849{
Dave Young481f75c2013-12-20 18:02:16 +0800850 void *p;
Matthew Garrett202f9d02011-05-05 15:19:44 -0400851 efi_memory_desc_t *md, *prev_md = NULL;
Huang, Ying5b836832008-01-30 13:31:19 +0100852
Matthew Garrett202f9d02011-05-05 15:19:44 -0400853 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
854 u64 prev_size;
855 md = p;
856
857 if (!prev_md) {
858 prev_md = md;
859 continue;
860 }
861
862 if (prev_md->type != md->type ||
863 prev_md->attribute != md->attribute) {
864 prev_md = md;
865 continue;
866 }
867
868 prev_size = prev_md->num_pages << EFI_PAGE_SHIFT;
869
870 if (md->phys_addr == (prev_md->phys_addr + prev_size)) {
871 prev_md->num_pages += md->num_pages;
872 md->type = EFI_RESERVED_TYPE;
873 md->attribute = 0;
874 continue;
875 }
876 prev_md = md;
877 }
Dave Young481f75c2013-12-20 18:02:16 +0800878}
879
880static void __init get_systab_virt_addr(efi_memory_desc_t *md)
881{
882 unsigned long size;
883 u64 end, systab;
884
885 size = md->num_pages << EFI_PAGE_SHIFT;
886 end = md->phys_addr + size;
887 systab = (u64)(unsigned long)efi_phys.systab;
888 if (md->phys_addr <= systab && systab < end) {
889 systab += md->virt_addr - md->phys_addr;
890 efi.systab = (efi_system_table_t *)(unsigned long)systab;
891 }
892}
893
Dave Young926172d2013-12-20 18:02:18 +0800894static int __init save_runtime_map(void)
895{
896 efi_memory_desc_t *md;
897 void *tmp, *p, *q = NULL;
898 int count = 0;
899
900 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
901 md = p;
902
903 if (!(md->attribute & EFI_MEMORY_RUNTIME) ||
904 (md->type == EFI_BOOT_SERVICES_CODE) ||
905 (md->type == EFI_BOOT_SERVICES_DATA))
906 continue;
907 tmp = krealloc(q, (count + 1) * memmap.desc_size, GFP_KERNEL);
908 if (!tmp)
909 goto out;
910 q = tmp;
911
912 memcpy(q + count * memmap.desc_size, md, memmap.desc_size);
913 count++;
914 }
915
Matt Fleming518548a2013-12-21 16:09:46 +0000916 efi_runtime_map_setup(q, count, memmap.desc_size);
Dave Young926172d2013-12-20 18:02:18 +0800917
918 return 0;
919out:
920 kfree(q);
921 return -ENOMEM;
922}
923
Dave Young481f75c2013-12-20 18:02:16 +0800924/*
Dave Young1fec0532013-12-20 18:02:19 +0800925 * Map efi regions which were passed via setup_data. The virt_addr is a fixed
926 * addr which was used in first kernel of a kexec boot.
927 */
928static void __init efi_map_regions_fixed(void)
929{
930 void *p;
931 efi_memory_desc_t *md;
932
933 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
934 md = p;
935 efi_map_region_fixed(md); /* FIXME: add error handling */
936 get_systab_virt_addr(md);
937 }
938
939}
940
941/*
Dave Young481f75c2013-12-20 18:02:16 +0800942 * Map efi memory ranges for runtime serivce and update new_memmap with virtual
943 * addresses.
944 */
945static void * __init efi_map_regions(int *count)
946{
947 efi_memory_desc_t *md;
948 void *p, *tmp, *new_memmap = NULL;
Matthew Garrett202f9d02011-05-05 15:19:44 -0400949
Huang, Ying5b836832008-01-30 13:31:19 +0100950 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
951 md = p;
Josh Boyer70087012013-04-18 07:51:34 -0700952 if (!(md->attribute & EFI_MEMORY_RUNTIME)) {
953#ifdef CONFIG_X86_64
954 if (md->type != EFI_BOOT_SERVICES_CODE &&
955 md->type != EFI_BOOT_SERVICES_DATA)
956#endif
957 continue;
958 }
Huang, Ying1c083eb2008-02-04 16:48:06 +0100959
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100960 efi_map_region(md);
Dave Young481f75c2013-12-20 18:02:16 +0800961 get_systab_virt_addr(md);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +0100962
Dave Young481f75c2013-12-20 18:02:16 +0800963 tmp = krealloc(new_memmap, (*count + 1) * memmap.desc_size,
964 GFP_KERNEL);
965 if (!tmp)
Dave Young926172d2013-12-20 18:02:18 +0800966 goto out;
Dave Young481f75c2013-12-20 18:02:16 +0800967 new_memmap = tmp;
968 memcpy(new_memmap + (*count * memmap.desc_size), md,
Matthew Garrett7cb00b72011-05-05 15:19:45 -0400969 memmap.desc_size);
Dave Young481f75c2013-12-20 18:02:16 +0800970 (*count)++;
971 }
972
973 return new_memmap;
Dave Young926172d2013-12-20 18:02:18 +0800974out:
Dave Young481f75c2013-12-20 18:02:16 +0800975 kfree(new_memmap);
976 return NULL;
977}
978
979/*
980 * This function will switch the EFI runtime services to virtual mode.
981 * Essentially, we look through the EFI memmap and map every region that
982 * has the runtime attribute bit set in its memory descriptor into the
983 * ->trampoline_pgd page table using a top-down VA allocation scheme.
984 *
985 * The old method which used to update that memory descriptor with the
986 * virtual address obtained from ioremap() is still supported when the
987 * kernel is booted with efi=old_map on its command line. Same old
988 * method enabled the runtime services to be called without having to
989 * thunk back into physical mode for every invocation.
990 *
991 * The new method does a pagetable switch in a preemption-safe manner
992 * so that we're in a different address space when calling a runtime
993 * function. For function arguments passing we do copy the PGDs of the
994 * kernel page table into ->trampoline_pgd prior to each call.
Dave Young1fec0532013-12-20 18:02:19 +0800995 *
996 * Specially for kexec boot, efi runtime maps in previous kernel should
997 * be passed in via setup_data. In that case runtime ranges will be mapped
998 * to the same virtual addresses as the first kernel.
Dave Young481f75c2013-12-20 18:02:16 +0800999 */
1000void __init efi_enter_virtual_mode(void)
1001{
1002 efi_status_t status;
1003 void *new_memmap = NULL;
Dave Young926172d2013-12-20 18:02:18 +08001004 int err, count = 0;
Dave Young481f75c2013-12-20 18:02:16 +08001005
1006 efi.systab = NULL;
1007
1008 /*
1009 * We don't do virtual mode, since we don't do runtime services, on
1010 * non-native EFI
1011 */
1012 if (!efi_is_native()) {
1013 efi_unmap_memmap();
1014 return;
1015 }
1016
Dave Young1fec0532013-12-20 18:02:19 +08001017 if (efi_setup) {
1018 efi_map_regions_fixed();
1019 } else {
1020 efi_merge_regions();
1021 new_memmap = efi_map_regions(&count);
1022 if (!new_memmap) {
1023 pr_err("Error reallocating memory, EFI runtime non-functional!\n");
1024 return;
1025 }
Huang, Ying5b836832008-01-30 13:31:19 +01001026 }
1027
Dave Young926172d2013-12-20 18:02:18 +08001028 err = save_runtime_map();
1029 if (err)
1030 pr_err("Error saving runtime map, efi runtime on kexec non-functional!!\n");
1031
Huang, Ying5b836832008-01-30 13:31:19 +01001032 BUG_ON(!efi.systab);
1033
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +01001034 efi_setup_page_tables();
1035 efi_sync_low_kernel_mappings();
1036
Dave Young1fec0532013-12-20 18:02:19 +08001037 if (!efi_setup) {
1038 status = phys_efi_set_virtual_address_map(
1039 memmap.desc_size * count,
1040 memmap.desc_size,
1041 memmap.desc_version,
1042 (efi_memory_desc_t *)__pa(new_memmap));
Huang, Ying5b836832008-01-30 13:31:19 +01001043
Dave Young1fec0532013-12-20 18:02:19 +08001044 if (status != EFI_SUCCESS) {
1045 pr_alert("Unable to switch EFI into virtual mode (status=%lx)!\n",
1046 status);
1047 panic("EFI call to SetVirtualAddressMap() failed!");
1048 }
Huang, Ying5b836832008-01-30 13:31:19 +01001049 }
1050
1051 /*
1052 * Now that EFI is in virtual mode, update the function
1053 * pointers in the runtime service table to the new virtual addresses.
1054 *
1055 * Call EFI services through wrapper functions.
1056 */
Matt Fleming712ba9e2013-01-25 10:07:25 +00001057 efi.runtime_version = efi_systab.hdr.revision;
Huang, Ying5b836832008-01-30 13:31:19 +01001058 efi.get_time = virt_efi_get_time;
1059 efi.set_time = virt_efi_set_time;
1060 efi.get_wakeup_time = virt_efi_get_wakeup_time;
1061 efi.set_wakeup_time = virt_efi_set_wakeup_time;
1062 efi.get_variable = virt_efi_get_variable;
1063 efi.get_next_variable = virt_efi_get_next_variable;
1064 efi.set_variable = virt_efi_set_variable;
1065 efi.get_next_high_mono_count = virt_efi_get_next_high_mono_count;
1066 efi.reset_system = virt_efi_reset_system;
Matthew Garrett2b5e8ef2011-05-05 15:19:42 -04001067 efi.set_virtual_address_map = NULL;
Matthew Garrett3b370232011-06-06 15:36:25 -04001068 efi.query_variable_info = virt_efi_query_variable_info;
1069 efi.update_capsule = virt_efi_update_capsule;
1070 efi.query_capsule_caps = virt_efi_query_capsule_caps;
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +01001071
1072 if (efi_enabled(EFI_OLD_MEMMAP) && (__supported_pte_mask & _PAGE_NX))
Huang, Ying4de0d4a2008-02-13 17:22:41 +08001073 runtime_code_page_mkexec();
Olof Johansson1adbfa32012-02-12 13:24:29 -08001074
Matthew Garrett7cb00b72011-05-05 15:19:45 -04001075 kfree(new_memmap);
Matthew Garrettf8b84042013-06-01 16:06:20 -04001076
1077 /* clean DUMMY object */
1078 efi.set_variable(efi_dummy_name, &EFI_DUMMY_GUID,
1079 EFI_VARIABLE_NON_VOLATILE |
1080 EFI_VARIABLE_BOOTSERVICE_ACCESS |
1081 EFI_VARIABLE_RUNTIME_ACCESS,
1082 0, NULL);
Huang, Ying5b836832008-01-30 13:31:19 +01001083}
1084
1085/*
1086 * Convenience functions to obtain memory types and attributes
1087 */
1088u32 efi_mem_type(unsigned long phys_addr)
1089{
1090 efi_memory_desc_t *md;
1091 void *p;
1092
Matt Fleming83e68182012-11-14 09:42:35 +00001093 if (!efi_enabled(EFI_MEMMAP))
1094 return 0;
1095
Huang, Ying5b836832008-01-30 13:31:19 +01001096 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
1097 md = p;
1098 if ((md->phys_addr <= phys_addr) &&
1099 (phys_addr < (md->phys_addr +
1100 (md->num_pages << EFI_PAGE_SHIFT))))
1101 return md->type;
1102 }
1103 return 0;
1104}
1105
1106u64 efi_mem_attributes(unsigned long phys_addr)
1107{
1108 efi_memory_desc_t *md;
1109 void *p;
1110
1111 for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
1112 md = p;
1113 if ((md->phys_addr <= phys_addr) &&
1114 (phys_addr < (md->phys_addr +
1115 (md->num_pages << EFI_PAGE_SHIFT))))
1116 return md->attribute;
1117 }
1118 return 0;
1119}
Matt Fleminga6e4d5a2013-03-25 09:14:30 +00001120
1121/*
1122 * Some firmware has serious problems when using more than 50% of the EFI
1123 * variable store, i.e. it triggers bugs that can brick machines. Ensure that
1124 * we never use more than this safe limit.
1125 *
1126 * Return EFI_SUCCESS if it is safe to write 'size' bytes to the variable
1127 * store.
1128 */
1129efi_status_t efi_query_variable_store(u32 attributes, unsigned long size)
1130{
1131 efi_status_t status;
1132 u64 storage_size, remaining_size, max_size;
1133
Matthew Garrettf8b84042013-06-01 16:06:20 -04001134 if (!(attributes & EFI_VARIABLE_NON_VOLATILE))
1135 return 0;
1136
Matt Fleminga6e4d5a2013-03-25 09:14:30 +00001137 status = efi.query_variable_info(attributes, &storage_size,
1138 &remaining_size, &max_size);
1139 if (status != EFI_SUCCESS)
1140 return status;
1141
Matthew Garrett31ff2f22013-04-15 13:09:47 -07001142 /*
1143 * Some firmware implementations refuse to boot if there's insufficient
1144 * space in the variable store. We account for that by refusing the
1145 * write if permitting it would reduce the available space to under
Matthew Garrettf8b84042013-06-01 16:06:20 -04001146 * 5KB. This figure was provided by Samsung, so should be safe.
Matthew Garrett31ff2f22013-04-15 13:09:47 -07001147 */
Matthew Garrettf8b84042013-06-01 16:06:20 -04001148 if ((remaining_size - size < EFI_MIN_RESERVE) &&
1149 !efi_no_storage_paranoia) {
Richard Weinberger7791c842013-04-10 10:59:34 +02001150
Matthew Garrettf8b84042013-06-01 16:06:20 -04001151 /*
1152 * Triggering garbage collection may require that the firmware
1153 * generate a real EFI_OUT_OF_RESOURCES error. We can force
1154 * that by attempting to use more space than is available.
1155 */
1156 unsigned long dummy_size = remaining_size + 1024;
Ben Hutchingsb8cb62f2013-06-16 21:27:12 +01001157 void *dummy = kzalloc(dummy_size, GFP_ATOMIC);
1158
1159 if (!dummy)
1160 return EFI_OUT_OF_RESOURCES;
Richard Weinberger8c58bf32013-04-17 01:00:53 +02001161
Matthew Garrettf8b84042013-06-01 16:06:20 -04001162 status = efi.set_variable(efi_dummy_name, &EFI_DUMMY_GUID,
1163 EFI_VARIABLE_NON_VOLATILE |
1164 EFI_VARIABLE_BOOTSERVICE_ACCESS |
1165 EFI_VARIABLE_RUNTIME_ACCESS,
1166 dummy_size, dummy);
1167
1168 if (status == EFI_SUCCESS) {
1169 /*
1170 * This should have failed, so if it didn't make sure
1171 * that we delete it...
1172 */
1173 efi.set_variable(efi_dummy_name, &EFI_DUMMY_GUID,
1174 EFI_VARIABLE_NON_VOLATILE |
1175 EFI_VARIABLE_BOOTSERVICE_ACCESS |
1176 EFI_VARIABLE_RUNTIME_ACCESS,
1177 0, dummy);
1178 }
1179
Ben Hutchingsb8cb62f2013-06-16 21:27:12 +01001180 kfree(dummy);
1181
Matthew Garrettf8b84042013-06-01 16:06:20 -04001182 /*
1183 * The runtime code may now have triggered a garbage collection
1184 * run, so check the variable info again
1185 */
1186 status = efi.query_variable_info(attributes, &storage_size,
1187 &remaining_size, &max_size);
1188
1189 if (status != EFI_SUCCESS)
1190 return status;
1191
1192 /*
1193 * There still isn't enough room, so return an error
1194 */
1195 if (remaining_size - size < EFI_MIN_RESERVE)
1196 return EFI_OUT_OF_RESOURCES;
1197 }
Matt Fleminga6e4d5a2013-03-25 09:14:30 +00001198
1199 return EFI_SUCCESS;
1200}
Sergey Vlasov36680112013-04-16 18:31:09 +04001201EXPORT_SYMBOL_GPL(efi_query_variable_store);
Borislav Petkovd2f7cbe2013-10-31 17:25:08 +01001202
1203static int __init parse_efi_cmdline(char *str)
1204{
1205 if (*str == '=')
1206 str++;
1207
1208 if (!strncmp(str, "old_map", 7))
1209 set_bit(EFI_OLD_MEMMAP, &x86_efi_facility);
1210
1211 return 0;
1212}
1213early_param("efi", parse_efi_cmdline);