]> git.karo-electronics.de Git - mv-sheeva.git/blob - arch/x86/platform/efi/efi.c
6d88dcac466c4096884f4484df9e39424c3dea45
[mv-sheeva.git] / arch / x86 / platform / efi / efi.c
1 /*
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
29 #include <linux/kernel.h>
30 #include <linux/init.h>
31 #include <linux/efi.h>
32 #include <linux/export.h>
33 #include <linux/bootmem.h>
34 #include <linux/memblock.h>
35 #include <linux/spinlock.h>
36 #include <linux/uaccess.h>
37 #include <linux/time.h>
38 #include <linux/io.h>
39 #include <linux/reboot.h>
40 #include <linux/bcd.h>
41
42 #include <asm/setup.h>
43 #include <asm/efi.h>
44 #include <asm/time.h>
45 #include <asm/cacheflush.h>
46 #include <asm/tlbflush.h>
47 #include <asm/x86_init.h>
48
49 #define EFI_DEBUG       1
50 #define PFX             "EFI: "
51
52 int efi_enabled;
53 EXPORT_SYMBOL(efi_enabled);
54
55 struct 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 };
66 EXPORT_SYMBOL(efi);
67
68 struct efi_memory_map memmap;
69
70 static struct efi efi_phys __initdata;
71 static efi_system_table_t efi_systab __initdata;
72
73 static int __init setup_noefi(char *arg)
74 {
75         efi_enabled = 0;
76         return 0;
77 }
78 early_param("noefi", setup_noefi);
79
80 int add_efi_memmap;
81 EXPORT_SYMBOL(add_efi_memmap);
82
83 static int __init setup_add_efi_memmap(char *arg)
84 {
85         add_efi_memmap = 1;
86         return 0;
87 }
88 early_param("add_efi_memmap", setup_add_efi_memmap);
89
90
91 static efi_status_t virt_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc)
92 {
93         unsigned long flags;
94         efi_status_t status;
95
96         spin_lock_irqsave(&rtc_lock, flags);
97         status = efi_call_virt2(get_time, tm, tc);
98         spin_unlock_irqrestore(&rtc_lock, flags);
99         return status;
100 }
101
102 static efi_status_t virt_efi_set_time(efi_time_t *tm)
103 {
104         unsigned long flags;
105         efi_status_t status;
106
107         spin_lock_irqsave(&rtc_lock, flags);
108         status = efi_call_virt1(set_time, tm);
109         spin_unlock_irqrestore(&rtc_lock, flags);
110         return status;
111 }
112
113 static efi_status_t virt_efi_get_wakeup_time(efi_bool_t *enabled,
114                                              efi_bool_t *pending,
115                                              efi_time_t *tm)
116 {
117         unsigned long flags;
118         efi_status_t status;
119
120         spin_lock_irqsave(&rtc_lock, flags);
121         status = efi_call_virt3(get_wakeup_time,
122                                 enabled, pending, tm);
123         spin_unlock_irqrestore(&rtc_lock, flags);
124         return status;
125 }
126
127 static efi_status_t virt_efi_set_wakeup_time(efi_bool_t enabled, efi_time_t *tm)
128 {
129         unsigned long flags;
130         efi_status_t status;
131
132         spin_lock_irqsave(&rtc_lock, flags);
133         status = efi_call_virt2(set_wakeup_time,
134                                 enabled, tm);
135         spin_unlock_irqrestore(&rtc_lock, flags);
136         return status;
137 }
138
139 static efi_status_t virt_efi_get_variable(efi_char16_t *name,
140                                           efi_guid_t *vendor,
141                                           u32 *attr,
142                                           unsigned long *data_size,
143                                           void *data)
144 {
145         return efi_call_virt5(get_variable,
146                               name, vendor, attr,
147                               data_size, data);
148 }
149
150 static efi_status_t virt_efi_get_next_variable(unsigned long *name_size,
151                                                efi_char16_t *name,
152                                                efi_guid_t *vendor)
153 {
154         return efi_call_virt3(get_next_variable,
155                               name_size, name, vendor);
156 }
157
158 static efi_status_t virt_efi_set_variable(efi_char16_t *name,
159                                           efi_guid_t *vendor,
160                                           u32 attr,
161                                           unsigned long data_size,
162                                           void *data)
163 {
164         return efi_call_virt5(set_variable,
165                               name, vendor, attr,
166                               data_size, data);
167 }
168
169 static efi_status_t virt_efi_query_variable_info(u32 attr,
170                                                  u64 *storage_space,
171                                                  u64 *remaining_space,
172                                                  u64 *max_variable_size)
173 {
174         if (efi.runtime_version < EFI_2_00_SYSTEM_TABLE_REVISION)
175                 return EFI_UNSUPPORTED;
176
177         return efi_call_virt4(query_variable_info, attr, storage_space,
178                               remaining_space, max_variable_size);
179 }
180
181 static efi_status_t virt_efi_get_next_high_mono_count(u32 *count)
182 {
183         return efi_call_virt1(get_next_high_mono_count, count);
184 }
185
186 static void virt_efi_reset_system(int reset_type,
187                                   efi_status_t status,
188                                   unsigned long data_size,
189                                   efi_char16_t *data)
190 {
191         efi_call_virt4(reset_system, reset_type, status,
192                        data_size, data);
193 }
194
195 static efi_status_t virt_efi_update_capsule(efi_capsule_header_t **capsules,
196                                             unsigned long count,
197                                             unsigned long sg_list)
198 {
199         if (efi.runtime_version < EFI_2_00_SYSTEM_TABLE_REVISION)
200                 return EFI_UNSUPPORTED;
201
202         return efi_call_virt3(update_capsule, capsules, count, sg_list);
203 }
204
205 static efi_status_t virt_efi_query_capsule_caps(efi_capsule_header_t **capsules,
206                                                 unsigned long count,
207                                                 u64 *max_size,
208                                                 int *reset_type)
209 {
210         if (efi.runtime_version < EFI_2_00_SYSTEM_TABLE_REVISION)
211                 return EFI_UNSUPPORTED;
212
213         return efi_call_virt4(query_capsule_caps, capsules, count, max_size,
214                               reset_type);
215 }
216
217 static efi_status_t __init phys_efi_set_virtual_address_map(
218         unsigned long memory_map_size,
219         unsigned long descriptor_size,
220         u32 descriptor_version,
221         efi_memory_desc_t *virtual_map)
222 {
223         efi_status_t status;
224
225         efi_call_phys_prelog();
226         status = efi_call_phys4(efi_phys.set_virtual_address_map,
227                                 memory_map_size, descriptor_size,
228                                 descriptor_version, virtual_map);
229         efi_call_phys_epilog();
230         return status;
231 }
232
233 static efi_status_t __init phys_efi_get_time(efi_time_t *tm,
234                                              efi_time_cap_t *tc)
235 {
236         unsigned long flags;
237         efi_status_t status;
238
239         spin_lock_irqsave(&rtc_lock, flags);
240         efi_call_phys_prelog();
241         status = efi_call_phys2(efi_phys.get_time, virt_to_phys(tm),
242                                 virt_to_phys(tc));
243         efi_call_phys_epilog();
244         spin_unlock_irqrestore(&rtc_lock, flags);
245         return status;
246 }
247
248 int efi_set_rtc_mmss(unsigned long nowtime)
249 {
250         int real_seconds, real_minutes;
251         efi_status_t    status;
252         efi_time_t      eft;
253         efi_time_cap_t  cap;
254
255         status = efi.get_time(&eft, &cap);
256         if (status != EFI_SUCCESS) {
257                 printk(KERN_ERR "Oops: efitime: can't read time!\n");
258                 return -1;
259         }
260
261         real_seconds = nowtime % 60;
262         real_minutes = nowtime / 60;
263         if (((abs(real_minutes - eft.minute) + 15)/30) & 1)
264                 real_minutes += 30;
265         real_minutes %= 60;
266         eft.minute = real_minutes;
267         eft.second = real_seconds;
268
269         status = efi.set_time(&eft);
270         if (status != EFI_SUCCESS) {
271                 printk(KERN_ERR "Oops: efitime: can't write time!\n");
272                 return -1;
273         }
274         return 0;
275 }
276
277 unsigned long efi_get_time(void)
278 {
279         efi_status_t status;
280         efi_time_t eft;
281         efi_time_cap_t cap;
282
283         status = efi.get_time(&eft, &cap);
284         if (status != EFI_SUCCESS)
285                 printk(KERN_ERR "Oops: efitime: can't read time!\n");
286
287         return mktime(eft.year, eft.month, eft.day, eft.hour,
288                       eft.minute, eft.second);
289 }
290
291 /*
292  * Tell the kernel about the EFI memory map.  This might include
293  * more than the max 128 entries that can fit in the e820 legacy
294  * (zeropage) memory map.
295  */
296
297 static void __init do_add_efi_memmap(void)
298 {
299         void *p;
300
301         for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
302                 efi_memory_desc_t *md = p;
303                 unsigned long long start = md->phys_addr;
304                 unsigned long long size = md->num_pages << EFI_PAGE_SHIFT;
305                 int e820_type;
306
307                 switch (md->type) {
308                 case EFI_LOADER_CODE:
309                 case EFI_LOADER_DATA:
310                 case EFI_BOOT_SERVICES_CODE:
311                 case EFI_BOOT_SERVICES_DATA:
312                 case EFI_CONVENTIONAL_MEMORY:
313                         if (md->attribute & EFI_MEMORY_WB)
314                                 e820_type = E820_RAM;
315                         else
316                                 e820_type = E820_RESERVED;
317                         break;
318                 case EFI_ACPI_RECLAIM_MEMORY:
319                         e820_type = E820_ACPI;
320                         break;
321                 case EFI_ACPI_MEMORY_NVS:
322                         e820_type = E820_NVS;
323                         break;
324                 case EFI_UNUSABLE_MEMORY:
325                         e820_type = E820_UNUSABLE;
326                         break;
327                 default:
328                         /*
329                          * EFI_RESERVED_TYPE EFI_RUNTIME_SERVICES_CODE
330                          * EFI_RUNTIME_SERVICES_DATA EFI_MEMORY_MAPPED_IO
331                          * EFI_MEMORY_MAPPED_IO_PORT_SPACE EFI_PAL_CODE
332                          */
333                         e820_type = E820_RESERVED;
334                         break;
335                 }
336                 e820_add_region(start, size, e820_type);
337         }
338         sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
339 }
340
341 void __init efi_memblock_x86_reserve_range(void)
342 {
343         unsigned long pmap;
344
345 #ifdef CONFIG_X86_32
346         pmap = boot_params.efi_info.efi_memmap;
347 #else
348         pmap = (boot_params.efi_info.efi_memmap |
349                 ((__u64)boot_params.efi_info.efi_memmap_hi<<32));
350 #endif
351         memmap.phys_map = (void *)pmap;
352         memmap.nr_map = boot_params.efi_info.efi_memmap_size /
353                 boot_params.efi_info.efi_memdesc_size;
354         memmap.desc_version = boot_params.efi_info.efi_memdesc_version;
355         memmap.desc_size = boot_params.efi_info.efi_memdesc_size;
356         memblock_reserve(pmap, memmap.nr_map * memmap.desc_size);
357 }
358
359 #if EFI_DEBUG
360 static void __init print_efi_memmap(void)
361 {
362         efi_memory_desc_t *md;
363         void *p;
364         int i;
365
366         for (p = memmap.map, i = 0;
367              p < memmap.map_end;
368              p += memmap.desc_size, i++) {
369                 md = p;
370                 printk(KERN_INFO PFX "mem%02u: type=%u, attr=0x%llx, "
371                         "range=[0x%016llx-0x%016llx) (%lluMB)\n",
372                         i, md->type, md->attribute, md->phys_addr,
373                         md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT),
374                         (md->num_pages >> (20 - EFI_PAGE_SHIFT)));
375         }
376 }
377 #endif  /*  EFI_DEBUG  */
378
379 void __init efi_reserve_boot_services(void)
380 {
381         void *p;
382
383         for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
384                 efi_memory_desc_t *md = p;
385                 u64 start = md->phys_addr;
386                 u64 size = md->num_pages << EFI_PAGE_SHIFT;
387
388                 if (md->type != EFI_BOOT_SERVICES_CODE &&
389                     md->type != EFI_BOOT_SERVICES_DATA)
390                         continue;
391                 /* Only reserve where possible:
392                  * - Not within any already allocated areas
393                  * - Not over any memory area (really needed, if above?)
394                  * - Not within any part of the kernel
395                  * - Not the bios reserved area
396                 */
397                 if ((start+size >= virt_to_phys(_text)
398                                 && start <= virt_to_phys(_end)) ||
399                         !e820_all_mapped(start, start+size, E820_RAM) ||
400                         memblock_is_region_reserved(start, size)) {
401                         /* Could not reserve, skip it */
402                         md->num_pages = 0;
403                         memblock_dbg(PFX "Could not reserve boot range "
404                                         "[0x%010llx-0x%010llx]\n",
405                                                 start, start+size-1);
406                 } else
407                         memblock_reserve(start, size);
408         }
409 }
410
411 static void __init efi_free_boot_services(void)
412 {
413         void *p;
414
415         for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
416                 efi_memory_desc_t *md = p;
417                 unsigned long long start = md->phys_addr;
418                 unsigned long long size = md->num_pages << EFI_PAGE_SHIFT;
419
420                 if (md->type != EFI_BOOT_SERVICES_CODE &&
421                     md->type != EFI_BOOT_SERVICES_DATA)
422                         continue;
423
424                 /* Could not reserve boot area */
425                 if (!size)
426                         continue;
427
428                 free_bootmem_late(start, size);
429         }
430 }
431
432 static void __init efi_systab_init(void *phys)
433 {
434         efi.systab = early_ioremap((unsigned long)efi_phys.systab,
435                                    sizeof(efi_system_table_t));
436         if (efi.systab == NULL)
437                 printk(KERN_ERR "Couldn't map the EFI system table!\n");
438         memcpy(&efi_systab, efi.systab, sizeof(efi_system_table_t));
439         early_iounmap(efi.systab, sizeof(efi_system_table_t));
440         efi.systab = &efi_systab;
441
442         /*
443          * Verify the EFI Table
444          */
445         if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE)
446                 printk(KERN_ERR "EFI system table signature incorrect!\n");
447         if ((efi.systab->hdr.revision >> 16) == 0)
448                 printk(KERN_ERR "Warning: EFI system table version "
449                        "%d.%02d, expected 1.00 or greater!\n",
450                        efi.systab->hdr.revision >> 16,
451                        efi.systab->hdr.revision & 0xffff);
452 }
453
454 static void __init efi_config_init(u64 tables, int nr_tables)
455 {
456         efi_config_table_t *config_tables;
457         int i;
458
459         /*
460          * Let's see what config tables the firmware passed to us.
461          */
462         config_tables = early_ioremap(
463                 efi.systab->tables,
464                 efi.systab->nr_tables * sizeof(efi_config_table_t));
465         if (config_tables == NULL)
466                 printk(KERN_ERR "Could not map EFI Configuration Table!\n");
467
468         printk(KERN_INFO);
469         for (i = 0; i < efi.systab->nr_tables; i++) {
470                 if (!efi_guidcmp(config_tables[i].guid, MPS_TABLE_GUID)) {
471                         efi.mps = config_tables[i].table;
472                         printk(" MPS=0x%lx ", config_tables[i].table);
473                 } else if (!efi_guidcmp(config_tables[i].guid,
474                                         ACPI_20_TABLE_GUID)) {
475                         efi.acpi20 = config_tables[i].table;
476                         printk(" ACPI 2.0=0x%lx ", config_tables[i].table);
477                 } else if (!efi_guidcmp(config_tables[i].guid,
478                                         ACPI_TABLE_GUID)) {
479                         efi.acpi = config_tables[i].table;
480                         printk(" ACPI=0x%lx ", config_tables[i].table);
481                 } else if (!efi_guidcmp(config_tables[i].guid,
482                                         SMBIOS_TABLE_GUID)) {
483                         efi.smbios = config_tables[i].table;
484                         printk(" SMBIOS=0x%lx ", config_tables[i].table);
485 #ifdef CONFIG_X86_UV
486                 } else if (!efi_guidcmp(config_tables[i].guid,
487                                         UV_SYSTEM_TABLE_GUID)) {
488                         efi.uv_systab = config_tables[i].table;
489                         printk(" UVsystab=0x%lx ", config_tables[i].table);
490 #endif
491                 } else if (!efi_guidcmp(config_tables[i].guid,
492                                         HCDP_TABLE_GUID)) {
493                         efi.hcdp = config_tables[i].table;
494                         printk(" HCDP=0x%lx ", config_tables[i].table);
495                 } else if (!efi_guidcmp(config_tables[i].guid,
496                                         UGA_IO_PROTOCOL_GUID)) {
497                         efi.uga = config_tables[i].table;
498                         printk(" UGA=0x%lx ", config_tables[i].table);
499                 }
500         }
501         printk("\n");
502         early_iounmap(config_tables,
503                           efi.systab->nr_tables * sizeof(efi_config_table_t));
504 }
505
506 static void __init efi_runtime_init(void)
507 {
508         efi_runtime_services_t *runtime;
509
510         /*
511          * Check out the runtime services table. We need to map
512          * the runtime services table so that we can grab the physical
513          * address of several of the EFI runtime functions, needed to
514          * set the firmware into virtual mode.
515          */
516         runtime = early_ioremap((unsigned long)efi.systab->runtime,
517                                 sizeof(efi_runtime_services_t));
518         if (runtime != NULL) {
519                 /*
520                  * We will only need *early* access to the following
521                  * two EFI runtime services before set_virtual_address_map
522                  * is invoked.
523                  */
524                 efi_phys.get_time = (efi_get_time_t *)runtime->get_time;
525                 efi_phys.set_virtual_address_map =
526                         (efi_set_virtual_address_map_t *)
527                         runtime->set_virtual_address_map;
528                 /*
529                  * Make efi_get_time can be called before entering
530                  * virtual mode.
531                  */
532                 efi.get_time = phys_efi_get_time;
533         } else
534                 printk(KERN_ERR "Could not map the EFI runtime service "
535                        "table!\n");
536         early_iounmap(runtime, sizeof(efi_runtime_services_t));
537 }
538
539 static void __init efi_memmap_init(void)
540 {
541         /* Map the EFI memory map */
542         memmap.map = early_ioremap((unsigned long)memmap.phys_map,
543                                    memmap.nr_map * memmap.desc_size);
544         if (memmap.map == NULL)
545                 printk(KERN_ERR "Could not map the EFI memory map!\n");
546         memmap.map_end = memmap.map + (memmap.nr_map * memmap.desc_size);
547
548         if (add_efi_memmap)
549                 do_add_efi_memmap();
550 }
551
552 void __init efi_init(void)
553 {
554         efi_char16_t *c16;
555         char vendor[100] = "unknown";
556         int i = 0;
557         void *tmp;
558
559 #ifdef CONFIG_X86_32
560         efi_phys.systab = (efi_system_table_t *)boot_params.efi_info.efi_systab;
561 #else
562         efi_phys.systab = (efi_system_table_t *)
563                 (boot_params.efi_info.efi_systab |
564                  ((__u64)boot_params.efi_info.efi_systab_hi<<32));
565 #endif
566
567         efi_systab_init(efi_phys.systab);
568
569         /*
570          * Show what we know for posterity
571          */
572         c16 = tmp = early_ioremap(efi.systab->fw_vendor, 2);
573         if (c16) {
574                 for (i = 0; i < sizeof(vendor) - 1 && *c16; ++i)
575                         vendor[i] = *c16++;
576                 vendor[i] = '\0';
577         } else
578                 printk(KERN_ERR PFX "Could not map the firmware vendor!\n");
579         early_iounmap(tmp, 2);
580
581         printk(KERN_INFO "EFI v%u.%.02u by %s\n",
582                efi.systab->hdr.revision >> 16,
583                efi.systab->hdr.revision & 0xffff, vendor);
584
585         efi_config_init(efi.systab->tables, efi.systab->nr_tables);
586
587         efi_runtime_init();
588
589         efi_memmap_init();
590
591 #ifdef CONFIG_X86_32
592         x86_platform.get_wallclock = efi_get_time;
593         x86_platform.set_wallclock = efi_set_rtc_mmss;
594 #endif
595
596 #if EFI_DEBUG
597         print_efi_memmap();
598 #endif
599 }
600
601 void __init efi_set_executable(efi_memory_desc_t *md, bool executable)
602 {
603         u64 addr, npages;
604
605         addr = md->virt_addr;
606         npages = md->num_pages;
607
608         memrange_efi_to_native(&addr, &npages);
609
610         if (executable)
611                 set_memory_x(addr, npages);
612         else
613                 set_memory_nx(addr, npages);
614 }
615
616 static void __init runtime_code_page_mkexec(void)
617 {
618         efi_memory_desc_t *md;
619         void *p;
620
621         /* Make EFI runtime service code area executable */
622         for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
623                 md = p;
624
625                 if (md->type != EFI_RUNTIME_SERVICES_CODE)
626                         continue;
627
628                 efi_set_executable(md, true);
629         }
630 }
631
632 /*
633  * This function will switch the EFI runtime services to virtual mode.
634  * Essentially, look through the EFI memmap and map every region that
635  * has the runtime attribute bit set in its memory descriptor and update
636  * that memory descriptor with the virtual address obtained from ioremap().
637  * This enables the runtime services to be called without having to
638  * thunk back into physical mode for every invocation.
639  */
640 void __init efi_enter_virtual_mode(void)
641 {
642         efi_memory_desc_t *md, *prev_md = NULL;
643         efi_status_t status;
644         unsigned long size;
645         u64 end, systab, addr, npages, end_pfn;
646         void *p, *va, *new_memmap = NULL;
647         int count = 0;
648
649         efi.systab = NULL;
650
651         /* Merge contiguous regions of the same type and attribute */
652         for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
653                 u64 prev_size;
654                 md = p;
655
656                 if (!prev_md) {
657                         prev_md = md;
658                         continue;
659                 }
660
661                 if (prev_md->type != md->type ||
662                     prev_md->attribute != md->attribute) {
663                         prev_md = md;
664                         continue;
665                 }
666
667                 prev_size = prev_md->num_pages << EFI_PAGE_SHIFT;
668
669                 if (md->phys_addr == (prev_md->phys_addr + prev_size)) {
670                         prev_md->num_pages += md->num_pages;
671                         md->type = EFI_RESERVED_TYPE;
672                         md->attribute = 0;
673                         continue;
674                 }
675                 prev_md = md;
676         }
677
678         for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
679                 md = p;
680                 if (!(md->attribute & EFI_MEMORY_RUNTIME) &&
681                     md->type != EFI_BOOT_SERVICES_CODE &&
682                     md->type != EFI_BOOT_SERVICES_DATA)
683                         continue;
684
685                 size = md->num_pages << EFI_PAGE_SHIFT;
686                 end = md->phys_addr + size;
687
688                 end_pfn = PFN_UP(end);
689                 if (end_pfn <= max_low_pfn_mapped
690                     || (end_pfn > (1UL << (32 - PAGE_SHIFT))
691                         && end_pfn <= max_pfn_mapped))
692                         va = __va(md->phys_addr);
693                 else
694                         va = efi_ioremap(md->phys_addr, size, md->type);
695
696                 md->virt_addr = (u64) (unsigned long) va;
697
698                 if (!va) {
699                         printk(KERN_ERR PFX "ioremap of 0x%llX failed!\n",
700                                (unsigned long long)md->phys_addr);
701                         continue;
702                 }
703
704                 if (!(md->attribute & EFI_MEMORY_WB)) {
705                         addr = md->virt_addr;
706                         npages = md->num_pages;
707                         memrange_efi_to_native(&addr, &npages);
708                         set_memory_uc(addr, npages);
709                 }
710
711                 systab = (u64) (unsigned long) efi_phys.systab;
712                 if (md->phys_addr <= systab && systab < end) {
713                         systab += md->virt_addr - md->phys_addr;
714                         efi.systab = (efi_system_table_t *) (unsigned long) systab;
715                 }
716                 new_memmap = krealloc(new_memmap,
717                                       (count + 1) * memmap.desc_size,
718                                       GFP_KERNEL);
719                 memcpy(new_memmap + (count * memmap.desc_size), md,
720                        memmap.desc_size);
721                 count++;
722         }
723
724         BUG_ON(!efi.systab);
725
726         status = phys_efi_set_virtual_address_map(
727                 memmap.desc_size * count,
728                 memmap.desc_size,
729                 memmap.desc_version,
730                 (efi_memory_desc_t *)__pa(new_memmap));
731
732         if (status != EFI_SUCCESS) {
733                 printk(KERN_ALERT "Unable to switch EFI into virtual mode "
734                        "(status=%lx)!\n", status);
735                 panic("EFI call to SetVirtualAddressMap() failed!");
736         }
737
738         /*
739          * Thankfully, it does seem that no runtime services other than
740          * SetVirtualAddressMap() will touch boot services code, so we can
741          * get rid of it all at this point
742          */
743         efi_free_boot_services();
744
745         /*
746          * Now that EFI is in virtual mode, update the function
747          * pointers in the runtime service table to the new virtual addresses.
748          *
749          * Call EFI services through wrapper functions.
750          */
751         efi.get_time = virt_efi_get_time;
752         efi.set_time = virt_efi_set_time;
753         efi.get_wakeup_time = virt_efi_get_wakeup_time;
754         efi.set_wakeup_time = virt_efi_set_wakeup_time;
755         efi.get_variable = virt_efi_get_variable;
756         efi.get_next_variable = virt_efi_get_next_variable;
757         efi.set_variable = virt_efi_set_variable;
758         efi.get_next_high_mono_count = virt_efi_get_next_high_mono_count;
759         efi.reset_system = virt_efi_reset_system;
760         efi.set_virtual_address_map = NULL;
761         efi.query_variable_info = virt_efi_query_variable_info;
762         efi.update_capsule = virt_efi_update_capsule;
763         efi.query_capsule_caps = virt_efi_query_capsule_caps;
764         if (__supported_pte_mask & _PAGE_NX)
765                 runtime_code_page_mkexec();
766         early_iounmap(memmap.map, memmap.nr_map * memmap.desc_size);
767         memmap.map = NULL;
768         kfree(new_memmap);
769 }
770
771 /*
772  * Convenience functions to obtain memory types and attributes
773  */
774 u32 efi_mem_type(unsigned long phys_addr)
775 {
776         efi_memory_desc_t *md;
777         void *p;
778
779         for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
780                 md = p;
781                 if ((md->phys_addr <= phys_addr) &&
782                     (phys_addr < (md->phys_addr +
783                                   (md->num_pages << EFI_PAGE_SHIFT))))
784                         return md->type;
785         }
786         return 0;
787 }
788
789 u64 efi_mem_attributes(unsigned long phys_addr)
790 {
791         efi_memory_desc_t *md;
792         void *p;
793
794         for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) {
795                 md = p;
796                 if ((md->phys_addr <= phys_addr) &&
797                     (phys_addr < (md->phys_addr +
798                                   (md->num_pages << EFI_PAGE_SHIFT))))
799                         return md->attribute;
800         }
801         return 0;
802 }