Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 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> |
Paul Gortmaker | 69c60c8 | 2011-05-26 12:22:53 -0400 | [diff] [blame] | 32 | #include <linux/export.h> |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 33 | #include <linux/bootmem.h> |
Yinghai Lu | a9ce6bc | 2010-08-25 13:39:17 -0700 | [diff] [blame] | 34 | #include <linux/memblock.h> |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 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> |
Huang, Ying | a2172e2 | 2008-01-30 13:33:55 +0100 | [diff] [blame] | 45 | #include <asm/cacheflush.h> |
| 46 | #include <asm/tlbflush.h> |
Feng Tang | 7bd867d | 2009-09-10 10:48:56 +0800 | [diff] [blame] | 47 | #include <asm/x86_init.h> |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 48 | |
| 49 | #define EFI_DEBUG 1 |
| 50 | #define PFX "EFI: " |
| 51 | |
| 52 | int efi_enabled; |
| 53 | EXPORT_SYMBOL(efi_enabled); |
| 54 | |
Jan Beulich | d80603c | 2011-07-05 12:22:18 +0100 | [diff] [blame] | 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 | }; |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 66 | EXPORT_SYMBOL(efi); |
| 67 | |
| 68 | struct efi_memory_map memmap; |
| 69 | |
Harvey Harrison | ecaea42 | 2008-02-13 13:26:13 -0800 | [diff] [blame] | 70 | static struct efi efi_phys __initdata; |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 71 | static efi_system_table_t efi_systab __initdata; |
| 72 | |
Huang, Ying | 8b2cb7a | 2008-01-30 13:32:11 +0100 | [diff] [blame] | 73 | static int __init setup_noefi(char *arg) |
| 74 | { |
| 75 | efi_enabled = 0; |
| 76 | return 0; |
| 77 | } |
| 78 | early_param("noefi", setup_noefi); |
| 79 | |
Paul Jackson | 200001e | 2008-06-25 05:44:46 -0700 | [diff] [blame] | 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 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 91 | static efi_status_t virt_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc) |
| 92 | { |
Jan Beulich | ef68c8f | 2011-07-19 11:53:07 +0100 | [diff] [blame] | 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; |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | static efi_status_t virt_efi_set_time(efi_time_t *tm) |
| 103 | { |
Jan Beulich | ef68c8f | 2011-07-19 11:53:07 +0100 | [diff] [blame] | 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; |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 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 | { |
Jan Beulich | ef68c8f | 2011-07-19 11:53:07 +0100 | [diff] [blame] | 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; |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | static efi_status_t virt_efi_set_wakeup_time(efi_bool_t enabled, efi_time_t *tm) |
| 128 | { |
Jan Beulich | ef68c8f | 2011-07-19 11:53:07 +0100 | [diff] [blame] | 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; |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 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, |
Matthew Garrett | f7a2d73 | 2011-06-06 15:36:24 -0400 | [diff] [blame] | 160 | u32 attr, |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 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 | |
Matthew Garrett | 3b37023 | 2011-06-06 15:36:25 -0400 | [diff] [blame] | 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 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 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 | |
Matthew Garrett | 3b37023 | 2011-06-06 15:36:25 -0400 | [diff] [blame] | 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 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 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 | { |
Jan Beulich | ef68c8f | 2011-07-19 11:53:07 +0100 | [diff] [blame] | 236 | unsigned long flags; |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 237 | efi_status_t status; |
| 238 | |
Jan Beulich | ef68c8f | 2011-07-19 11:53:07 +0100 | [diff] [blame] | 239 | spin_lock_irqsave(&rtc_lock, flags); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 240 | efi_call_phys_prelog(); |
| 241 | status = efi_call_phys2(efi_phys.get_time, tm, tc); |
| 242 | efi_call_phys_epilog(); |
Jan Beulich | ef68c8f | 2011-07-19 11:53:07 +0100 | [diff] [blame] | 243 | spin_unlock_irqrestore(&rtc_lock, flags); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 244 | return status; |
| 245 | } |
| 246 | |
| 247 | int efi_set_rtc_mmss(unsigned long nowtime) |
| 248 | { |
| 249 | int real_seconds, real_minutes; |
| 250 | efi_status_t status; |
| 251 | efi_time_t eft; |
| 252 | efi_time_cap_t cap; |
| 253 | |
| 254 | status = efi.get_time(&eft, &cap); |
| 255 | if (status != EFI_SUCCESS) { |
| 256 | printk(KERN_ERR "Oops: efitime: can't read time!\n"); |
| 257 | return -1; |
| 258 | } |
| 259 | |
| 260 | real_seconds = nowtime % 60; |
| 261 | real_minutes = nowtime / 60; |
| 262 | if (((abs(real_minutes - eft.minute) + 15)/30) & 1) |
| 263 | real_minutes += 30; |
| 264 | real_minutes %= 60; |
| 265 | eft.minute = real_minutes; |
| 266 | eft.second = real_seconds; |
| 267 | |
| 268 | status = efi.set_time(&eft); |
| 269 | if (status != EFI_SUCCESS) { |
| 270 | printk(KERN_ERR "Oops: efitime: can't write time!\n"); |
| 271 | return -1; |
| 272 | } |
| 273 | return 0; |
| 274 | } |
| 275 | |
| 276 | unsigned long efi_get_time(void) |
| 277 | { |
| 278 | efi_status_t status; |
| 279 | efi_time_t eft; |
| 280 | efi_time_cap_t cap; |
| 281 | |
| 282 | status = efi.get_time(&eft, &cap); |
| 283 | if (status != EFI_SUCCESS) |
| 284 | printk(KERN_ERR "Oops: efitime: can't read time!\n"); |
| 285 | |
| 286 | return mktime(eft.year, eft.month, eft.day, eft.hour, |
| 287 | eft.minute, eft.second); |
| 288 | } |
| 289 | |
Paul Jackson | 69c9189 | 2008-05-14 08:15:58 -0700 | [diff] [blame] | 290 | /* |
| 291 | * Tell the kernel about the EFI memory map. This might include |
| 292 | * more than the max 128 entries that can fit in the e820 legacy |
| 293 | * (zeropage) memory map. |
| 294 | */ |
| 295 | |
Paul Jackson | 200001e | 2008-06-25 05:44:46 -0700 | [diff] [blame] | 296 | static void __init do_add_efi_memmap(void) |
Paul Jackson | 69c9189 | 2008-05-14 08:15:58 -0700 | [diff] [blame] | 297 | { |
| 298 | void *p; |
| 299 | |
| 300 | for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { |
| 301 | efi_memory_desc_t *md = p; |
| 302 | unsigned long long start = md->phys_addr; |
| 303 | unsigned long long size = md->num_pages << EFI_PAGE_SHIFT; |
| 304 | int e820_type; |
| 305 | |
Cliff Wickman | e2a7147 | 2009-06-16 16:43:40 -0500 | [diff] [blame] | 306 | switch (md->type) { |
| 307 | case EFI_LOADER_CODE: |
| 308 | case EFI_LOADER_DATA: |
| 309 | case EFI_BOOT_SERVICES_CODE: |
| 310 | case EFI_BOOT_SERVICES_DATA: |
| 311 | case EFI_CONVENTIONAL_MEMORY: |
| 312 | if (md->attribute & EFI_MEMORY_WB) |
| 313 | e820_type = E820_RAM; |
| 314 | else |
| 315 | e820_type = E820_RESERVED; |
| 316 | break; |
| 317 | case EFI_ACPI_RECLAIM_MEMORY: |
| 318 | e820_type = E820_ACPI; |
| 319 | break; |
| 320 | case EFI_ACPI_MEMORY_NVS: |
| 321 | e820_type = E820_NVS; |
| 322 | break; |
| 323 | case EFI_UNUSABLE_MEMORY: |
| 324 | e820_type = E820_UNUSABLE; |
| 325 | break; |
| 326 | default: |
| 327 | /* |
| 328 | * EFI_RESERVED_TYPE EFI_RUNTIME_SERVICES_CODE |
| 329 | * EFI_RUNTIME_SERVICES_DATA EFI_MEMORY_MAPPED_IO |
| 330 | * EFI_MEMORY_MAPPED_IO_PORT_SPACE EFI_PAL_CODE |
| 331 | */ |
Paul Jackson | 69c9189 | 2008-05-14 08:15:58 -0700 | [diff] [blame] | 332 | e820_type = E820_RESERVED; |
Cliff Wickman | e2a7147 | 2009-06-16 16:43:40 -0500 | [diff] [blame] | 333 | break; |
| 334 | } |
Yinghai Lu | d0be6bd | 2008-06-15 18:58:51 -0700 | [diff] [blame] | 335 | e820_add_region(start, size, e820_type); |
Paul Jackson | 69c9189 | 2008-05-14 08:15:58 -0700 | [diff] [blame] | 336 | } |
| 337 | sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map); |
| 338 | } |
| 339 | |
Yinghai Lu | a9ce6bc | 2010-08-25 13:39:17 -0700 | [diff] [blame] | 340 | void __init efi_memblock_x86_reserve_range(void) |
Huang, Ying | ecacf09 | 2008-06-02 14:26:21 +0800 | [diff] [blame] | 341 | { |
| 342 | unsigned long pmap; |
| 343 | |
Paul Jackson | 05486fa | 2008-06-22 07:22:02 -0700 | [diff] [blame] | 344 | #ifdef CONFIG_X86_32 |
Huang, Ying | ecacf09 | 2008-06-02 14:26:21 +0800 | [diff] [blame] | 345 | pmap = boot_params.efi_info.efi_memmap; |
Paul Jackson | 05486fa | 2008-06-22 07:22:02 -0700 | [diff] [blame] | 346 | #else |
| 347 | pmap = (boot_params.efi_info.efi_memmap | |
| 348 | ((__u64)boot_params.efi_info.efi_memmap_hi<<32)); |
Huang, Ying | ecacf09 | 2008-06-02 14:26:21 +0800 | [diff] [blame] | 349 | #endif |
| 350 | memmap.phys_map = (void *)pmap; |
| 351 | memmap.nr_map = boot_params.efi_info.efi_memmap_size / |
| 352 | boot_params.efi_info.efi_memdesc_size; |
| 353 | memmap.desc_version = boot_params.efi_info.efi_memdesc_version; |
| 354 | memmap.desc_size = boot_params.efi_info.efi_memdesc_size; |
Yinghai Lu | a9ce6bc | 2010-08-25 13:39:17 -0700 | [diff] [blame] | 355 | memblock_x86_reserve_range(pmap, pmap + memmap.nr_map * memmap.desc_size, |
Huang, Ying | ecacf09 | 2008-06-02 14:26:21 +0800 | [diff] [blame] | 356 | "EFI memmap"); |
| 357 | } |
| 358 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 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 | |
Matthew Garrett | 916f676 | 2011-05-25 09:53:13 -0400 | [diff] [blame] | 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; |
Maarten Lankhorst | 7d68dc3 | 2011-06-14 19:53:09 +0200 | [diff] [blame] | 385 | u64 start = md->phys_addr; |
| 386 | u64 size = md->num_pages << EFI_PAGE_SHIFT; |
Matthew Garrett | 916f676 | 2011-05-25 09:53:13 -0400 | [diff] [blame] | 387 | |
| 388 | if (md->type != EFI_BOOT_SERVICES_CODE && |
| 389 | md->type != EFI_BOOT_SERVICES_DATA) |
| 390 | continue; |
Maarten Lankhorst | 7d68dc3 | 2011-06-14 19:53:09 +0200 | [diff] [blame] | 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_x86_check_reserved_size(&start, &size, |
| 401 | 1<<EFI_PAGE_SHIFT)) { |
| 402 | /* Could not reserve, skip it */ |
| 403 | md->num_pages = 0; |
| 404 | memblock_dbg(PFX "Could not reserve boot range " |
| 405 | "[0x%010llx-0x%010llx]\n", |
| 406 | start, start+size-1); |
| 407 | } else |
| 408 | memblock_x86_reserve_range(start, start+size, |
| 409 | "EFI Boot"); |
Matthew Garrett | 916f676 | 2011-05-25 09:53:13 -0400 | [diff] [blame] | 410 | } |
| 411 | } |
| 412 | |
| 413 | static void __init efi_free_boot_services(void) |
| 414 | { |
| 415 | void *p; |
| 416 | |
| 417 | for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { |
| 418 | efi_memory_desc_t *md = p; |
| 419 | unsigned long long start = md->phys_addr; |
| 420 | unsigned long long size = md->num_pages << EFI_PAGE_SHIFT; |
| 421 | |
| 422 | if (md->type != EFI_BOOT_SERVICES_CODE && |
| 423 | md->type != EFI_BOOT_SERVICES_DATA) |
| 424 | continue; |
| 425 | |
Maarten Lankhorst | 7d68dc3 | 2011-06-14 19:53:09 +0200 | [diff] [blame] | 426 | /* Could not reserve boot area */ |
| 427 | if (!size) |
| 428 | continue; |
| 429 | |
Matthew Garrett | 916f676 | 2011-05-25 09:53:13 -0400 | [diff] [blame] | 430 | free_bootmem_late(start, size); |
| 431 | } |
| 432 | } |
| 433 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 434 | void __init efi_init(void) |
| 435 | { |
| 436 | efi_config_table_t *config_tables; |
| 437 | efi_runtime_services_t *runtime; |
| 438 | efi_char16_t *c16; |
| 439 | char vendor[100] = "unknown"; |
| 440 | int i = 0; |
| 441 | void *tmp; |
| 442 | |
Paul Jackson | 05486fa | 2008-06-22 07:22:02 -0700 | [diff] [blame] | 443 | #ifdef CONFIG_X86_32 |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 444 | efi_phys.systab = (efi_system_table_t *)boot_params.efi_info.efi_systab; |
Paul Jackson | 05486fa | 2008-06-22 07:22:02 -0700 | [diff] [blame] | 445 | #else |
| 446 | efi_phys.systab = (efi_system_table_t *) |
| 447 | (boot_params.efi_info.efi_systab | |
| 448 | ((__u64)boot_params.efi_info.efi_systab_hi<<32)); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 449 | #endif |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 450 | |
Huang, Ying | beacfaa | 2008-01-30 13:33:44 +0100 | [diff] [blame] | 451 | efi.systab = early_ioremap((unsigned long)efi_phys.systab, |
| 452 | sizeof(efi_system_table_t)); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 453 | if (efi.systab == NULL) |
| 454 | printk(KERN_ERR "Couldn't map the EFI system table!\n"); |
| 455 | memcpy(&efi_systab, efi.systab, sizeof(efi_system_table_t)); |
Huang, Ying | beacfaa | 2008-01-30 13:33:44 +0100 | [diff] [blame] | 456 | early_iounmap(efi.systab, sizeof(efi_system_table_t)); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 457 | efi.systab = &efi_systab; |
| 458 | |
| 459 | /* |
| 460 | * Verify the EFI Table |
| 461 | */ |
| 462 | if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) |
| 463 | printk(KERN_ERR "EFI system table signature incorrect!\n"); |
| 464 | if ((efi.systab->hdr.revision >> 16) == 0) |
| 465 | printk(KERN_ERR "Warning: EFI system table version " |
| 466 | "%d.%02d, expected 1.00 or greater!\n", |
| 467 | efi.systab->hdr.revision >> 16, |
| 468 | efi.systab->hdr.revision & 0xffff); |
| 469 | |
| 470 | /* |
| 471 | * Show what we know for posterity |
| 472 | */ |
Huang, Ying | beacfaa | 2008-01-30 13:33:44 +0100 | [diff] [blame] | 473 | c16 = tmp = early_ioremap(efi.systab->fw_vendor, 2); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 474 | if (c16) { |
Roel Kluin | fdb8a42 | 2009-08-06 15:58:13 -0700 | [diff] [blame] | 475 | for (i = 0; i < sizeof(vendor) - 1 && *c16; ++i) |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 476 | vendor[i] = *c16++; |
| 477 | vendor[i] = '\0'; |
| 478 | } else |
| 479 | printk(KERN_ERR PFX "Could not map the firmware vendor!\n"); |
Huang, Ying | beacfaa | 2008-01-30 13:33:44 +0100 | [diff] [blame] | 480 | early_iounmap(tmp, 2); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 481 | |
Frans Pop | 3235dc3 | 2010-02-06 18:47:17 +0100 | [diff] [blame] | 482 | printk(KERN_INFO "EFI v%u.%.02u by %s\n", |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 483 | efi.systab->hdr.revision >> 16, |
| 484 | efi.systab->hdr.revision & 0xffff, vendor); |
| 485 | |
| 486 | /* |
| 487 | * Let's see what config tables the firmware passed to us. |
| 488 | */ |
Huang, Ying | beacfaa | 2008-01-30 13:33:44 +0100 | [diff] [blame] | 489 | config_tables = early_ioremap( |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 490 | efi.systab->tables, |
| 491 | efi.systab->nr_tables * sizeof(efi_config_table_t)); |
| 492 | if (config_tables == NULL) |
| 493 | printk(KERN_ERR "Could not map EFI Configuration Table!\n"); |
| 494 | |
| 495 | printk(KERN_INFO); |
| 496 | for (i = 0; i < efi.systab->nr_tables; i++) { |
| 497 | if (!efi_guidcmp(config_tables[i].guid, MPS_TABLE_GUID)) { |
| 498 | efi.mps = config_tables[i].table; |
| 499 | printk(" MPS=0x%lx ", config_tables[i].table); |
| 500 | } else if (!efi_guidcmp(config_tables[i].guid, |
| 501 | ACPI_20_TABLE_GUID)) { |
| 502 | efi.acpi20 = config_tables[i].table; |
| 503 | printk(" ACPI 2.0=0x%lx ", config_tables[i].table); |
| 504 | } else if (!efi_guidcmp(config_tables[i].guid, |
| 505 | ACPI_TABLE_GUID)) { |
| 506 | efi.acpi = config_tables[i].table; |
| 507 | printk(" ACPI=0x%lx ", config_tables[i].table); |
| 508 | } else if (!efi_guidcmp(config_tables[i].guid, |
| 509 | SMBIOS_TABLE_GUID)) { |
| 510 | efi.smbios = config_tables[i].table; |
| 511 | printk(" SMBIOS=0x%lx ", config_tables[i].table); |
Nick Piggin | 03b4863 | 2009-01-20 04:36:04 +0100 | [diff] [blame] | 512 | #ifdef CONFIG_X86_UV |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 513 | } else if (!efi_guidcmp(config_tables[i].guid, |
Russ Anderson | a50f70b | 2008-10-03 11:58:54 -0500 | [diff] [blame] | 514 | UV_SYSTEM_TABLE_GUID)) { |
| 515 | efi.uv_systab = config_tables[i].table; |
| 516 | printk(" UVsystab=0x%lx ", config_tables[i].table); |
Nick Piggin | 03b4863 | 2009-01-20 04:36:04 +0100 | [diff] [blame] | 517 | #endif |
Russ Anderson | a50f70b | 2008-10-03 11:58:54 -0500 | [diff] [blame] | 518 | } else if (!efi_guidcmp(config_tables[i].guid, |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 519 | HCDP_TABLE_GUID)) { |
| 520 | efi.hcdp = config_tables[i].table; |
| 521 | printk(" HCDP=0x%lx ", config_tables[i].table); |
| 522 | } else if (!efi_guidcmp(config_tables[i].guid, |
| 523 | UGA_IO_PROTOCOL_GUID)) { |
| 524 | efi.uga = config_tables[i].table; |
| 525 | printk(" UGA=0x%lx ", config_tables[i].table); |
| 526 | } |
| 527 | } |
| 528 | printk("\n"); |
Huang, Ying | beacfaa | 2008-01-30 13:33:44 +0100 | [diff] [blame] | 529 | early_iounmap(config_tables, |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 530 | efi.systab->nr_tables * sizeof(efi_config_table_t)); |
| 531 | |
| 532 | /* |
| 533 | * Check out the runtime services table. We need to map |
| 534 | * the runtime services table so that we can grab the physical |
| 535 | * address of several of the EFI runtime functions, needed to |
| 536 | * set the firmware into virtual mode. |
| 537 | */ |
Huang, Ying | beacfaa | 2008-01-30 13:33:44 +0100 | [diff] [blame] | 538 | runtime = early_ioremap((unsigned long)efi.systab->runtime, |
| 539 | sizeof(efi_runtime_services_t)); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 540 | if (runtime != NULL) { |
| 541 | /* |
| 542 | * We will only need *early* access to the following |
| 543 | * two EFI runtime services before set_virtual_address_map |
| 544 | * is invoked. |
| 545 | */ |
| 546 | efi_phys.get_time = (efi_get_time_t *)runtime->get_time; |
| 547 | efi_phys.set_virtual_address_map = |
| 548 | (efi_set_virtual_address_map_t *) |
| 549 | runtime->set_virtual_address_map; |
| 550 | /* |
| 551 | * Make efi_get_time can be called before entering |
| 552 | * virtual mode. |
| 553 | */ |
| 554 | efi.get_time = phys_efi_get_time; |
| 555 | } else |
| 556 | printk(KERN_ERR "Could not map the EFI runtime service " |
| 557 | "table!\n"); |
Huang, Ying | beacfaa | 2008-01-30 13:33:44 +0100 | [diff] [blame] | 558 | early_iounmap(runtime, sizeof(efi_runtime_services_t)); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 559 | |
| 560 | /* Map the EFI memory map */ |
Huang, Ying | beacfaa | 2008-01-30 13:33:44 +0100 | [diff] [blame] | 561 | memmap.map = early_ioremap((unsigned long)memmap.phys_map, |
| 562 | memmap.nr_map * memmap.desc_size); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 563 | if (memmap.map == NULL) |
| 564 | printk(KERN_ERR "Could not map the EFI memory map!\n"); |
| 565 | memmap.map_end = memmap.map + (memmap.nr_map * memmap.desc_size); |
Russ Anderson | 175e438 | 2008-10-02 17:32:06 -0500 | [diff] [blame] | 566 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 567 | if (memmap.desc_size != sizeof(efi_memory_desc_t)) |
Russ Anderson | 175e438 | 2008-10-02 17:32:06 -0500 | [diff] [blame] | 568 | printk(KERN_WARNING |
| 569 | "Kernel-defined memdesc doesn't match the one from EFI!\n"); |
| 570 | |
Paul Jackson | 200001e | 2008-06-25 05:44:46 -0700 | [diff] [blame] | 571 | if (add_efi_memmap) |
| 572 | do_add_efi_memmap(); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 573 | |
Feng Tang | 772be89 | 2009-10-20 12:54:02 +0800 | [diff] [blame] | 574 | #ifdef CONFIG_X86_32 |
Feng Tang | 7bd867d | 2009-09-10 10:48:56 +0800 | [diff] [blame] | 575 | x86_platform.get_wallclock = efi_get_time; |
| 576 | x86_platform.set_wallclock = efi_set_rtc_mmss; |
Feng Tang | 772be89 | 2009-10-20 12:54:02 +0800 | [diff] [blame] | 577 | #endif |
Feng Tang | 7bd867d | 2009-09-10 10:48:56 +0800 | [diff] [blame] | 578 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 579 | #if EFI_DEBUG |
| 580 | print_efi_memmap(); |
| 581 | #endif |
| 582 | } |
| 583 | |
Matthew Garrett | 9cd2b07 | 2011-05-05 15:19:43 -0400 | [diff] [blame] | 584 | void __init efi_set_executable(efi_memory_desc_t *md, bool executable) |
| 585 | { |
| 586 | u64 addr, npages; |
| 587 | |
| 588 | addr = md->virt_addr; |
| 589 | npages = md->num_pages; |
| 590 | |
| 591 | memrange_efi_to_native(&addr, &npages); |
| 592 | |
| 593 | if (executable) |
| 594 | set_memory_x(addr, npages); |
| 595 | else |
| 596 | set_memory_nx(addr, npages); |
| 597 | } |
| 598 | |
Huang, Ying | a2172e2 | 2008-01-30 13:33:55 +0100 | [diff] [blame] | 599 | static void __init runtime_code_page_mkexec(void) |
| 600 | { |
| 601 | efi_memory_desc_t *md; |
Huang, Ying | a2172e2 | 2008-01-30 13:33:55 +0100 | [diff] [blame] | 602 | void *p; |
| 603 | |
Huang, Ying | a2172e2 | 2008-01-30 13:33:55 +0100 | [diff] [blame] | 604 | /* Make EFI runtime service code area executable */ |
| 605 | for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { |
| 606 | md = p; |
Huang, Ying | 1c083eb | 2008-02-04 16:48:06 +0100 | [diff] [blame] | 607 | |
| 608 | if (md->type != EFI_RUNTIME_SERVICES_CODE) |
| 609 | continue; |
| 610 | |
Matthew Garrett | 9cd2b07 | 2011-05-05 15:19:43 -0400 | [diff] [blame] | 611 | efi_set_executable(md, true); |
Huang, Ying | a2172e2 | 2008-01-30 13:33:55 +0100 | [diff] [blame] | 612 | } |
Huang, Ying | a2172e2 | 2008-01-30 13:33:55 +0100 | [diff] [blame] | 613 | } |
Huang, Ying | a2172e2 | 2008-01-30 13:33:55 +0100 | [diff] [blame] | 614 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 615 | /* |
| 616 | * This function will switch the EFI runtime services to virtual mode. |
| 617 | * Essentially, look through the EFI memmap and map every region that |
| 618 | * has the runtime attribute bit set in its memory descriptor and update |
| 619 | * that memory descriptor with the virtual address obtained from ioremap(). |
| 620 | * This enables the runtime services to be called without having to |
| 621 | * thunk back into physical mode for every invocation. |
| 622 | */ |
| 623 | void __init efi_enter_virtual_mode(void) |
| 624 | { |
Matthew Garrett | 202f9d0 | 2011-05-05 15:19:44 -0400 | [diff] [blame] | 625 | efi_memory_desc_t *md, *prev_md = NULL; |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 626 | efi_status_t status; |
Huang, Ying | 1c083eb | 2008-02-04 16:48:06 +0100 | [diff] [blame] | 627 | unsigned long size; |
Huang Ying | dd39ecf | 2009-03-04 10:58:33 +0800 | [diff] [blame] | 628 | u64 end, systab, addr, npages, end_pfn; |
Matthew Garrett | 7cb00b7 | 2011-05-05 15:19:45 -0400 | [diff] [blame] | 629 | void *p, *va, *new_memmap = NULL; |
| 630 | int count = 0; |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 631 | |
| 632 | efi.systab = NULL; |
Matthew Garrett | 202f9d0 | 2011-05-05 15:19:44 -0400 | [diff] [blame] | 633 | |
| 634 | /* Merge contiguous regions of the same type and attribute */ |
| 635 | for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { |
| 636 | u64 prev_size; |
| 637 | md = p; |
| 638 | |
| 639 | if (!prev_md) { |
| 640 | prev_md = md; |
| 641 | continue; |
| 642 | } |
| 643 | |
| 644 | if (prev_md->type != md->type || |
| 645 | prev_md->attribute != md->attribute) { |
| 646 | prev_md = md; |
| 647 | continue; |
| 648 | } |
| 649 | |
| 650 | prev_size = prev_md->num_pages << EFI_PAGE_SHIFT; |
| 651 | |
| 652 | if (md->phys_addr == (prev_md->phys_addr + prev_size)) { |
| 653 | prev_md->num_pages += md->num_pages; |
| 654 | md->type = EFI_RESERVED_TYPE; |
| 655 | md->attribute = 0; |
| 656 | continue; |
| 657 | } |
| 658 | prev_md = md; |
| 659 | } |
| 660 | |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 661 | for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { |
| 662 | md = p; |
Matthew Garrett | 916f676 | 2011-05-25 09:53:13 -0400 | [diff] [blame] | 663 | if (!(md->attribute & EFI_MEMORY_RUNTIME) && |
| 664 | md->type != EFI_BOOT_SERVICES_CODE && |
| 665 | md->type != EFI_BOOT_SERVICES_DATA) |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 666 | continue; |
Huang, Ying | 1c083eb | 2008-02-04 16:48:06 +0100 | [diff] [blame] | 667 | |
| 668 | size = md->num_pages << EFI_PAGE_SHIFT; |
| 669 | end = md->phys_addr + size; |
| 670 | |
Huang Ying | dd39ecf | 2009-03-04 10:58:33 +0800 | [diff] [blame] | 671 | end_pfn = PFN_UP(end); |
| 672 | if (end_pfn <= max_low_pfn_mapped |
| 673 | || (end_pfn > (1UL << (32 - PAGE_SHIFT)) |
| 674 | && end_pfn <= max_pfn_mapped)) |
Huang, Ying | 1c083eb | 2008-02-04 16:48:06 +0100 | [diff] [blame] | 675 | va = __va(md->phys_addr); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 676 | else |
Paul Mackerras | 6a7bbd5 | 2009-08-03 22:38:10 +1000 | [diff] [blame] | 677 | va = efi_ioremap(md->phys_addr, size, md->type); |
Huang, Ying | 1c083eb | 2008-02-04 16:48:06 +0100 | [diff] [blame] | 678 | |
Huang, Ying | 1c083eb | 2008-02-04 16:48:06 +0100 | [diff] [blame] | 679 | md->virt_addr = (u64) (unsigned long) va; |
| 680 | |
| 681 | if (!va) { |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 682 | printk(KERN_ERR PFX "ioremap of 0x%llX failed!\n", |
| 683 | (unsigned long long)md->phys_addr); |
Huang, Ying | 1c083eb | 2008-02-04 16:48:06 +0100 | [diff] [blame] | 684 | continue; |
| 685 | } |
| 686 | |
Huang, Ying | 4a3575f | 2008-02-25 15:18:37 +0800 | [diff] [blame] | 687 | if (!(md->attribute & EFI_MEMORY_WB)) { |
| 688 | addr = md->virt_addr; |
| 689 | npages = md->num_pages; |
| 690 | memrange_efi_to_native(&addr, &npages); |
| 691 | set_memory_uc(addr, npages); |
| 692 | } |
Thomas Gleixner | e85f205 | 2008-02-12 19:46:48 +0100 | [diff] [blame] | 693 | |
Huang, Ying | 1c083eb | 2008-02-04 16:48:06 +0100 | [diff] [blame] | 694 | systab = (u64) (unsigned long) efi_phys.systab; |
| 695 | if (md->phys_addr <= systab && systab < end) { |
| 696 | systab += md->virt_addr - md->phys_addr; |
| 697 | efi.systab = (efi_system_table_t *) (unsigned long) systab; |
| 698 | } |
Matthew Garrett | 7cb00b7 | 2011-05-05 15:19:45 -0400 | [diff] [blame] | 699 | new_memmap = krealloc(new_memmap, |
| 700 | (count + 1) * memmap.desc_size, |
| 701 | GFP_KERNEL); |
| 702 | memcpy(new_memmap + (count * memmap.desc_size), md, |
| 703 | memmap.desc_size); |
| 704 | count++; |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | BUG_ON(!efi.systab); |
| 708 | |
| 709 | status = phys_efi_set_virtual_address_map( |
Matthew Garrett | 7cb00b7 | 2011-05-05 15:19:45 -0400 | [diff] [blame] | 710 | memmap.desc_size * count, |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 711 | memmap.desc_size, |
| 712 | memmap.desc_version, |
Matthew Garrett | 7cb00b7 | 2011-05-05 15:19:45 -0400 | [diff] [blame] | 713 | (efi_memory_desc_t *)__pa(new_memmap)); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 714 | |
| 715 | if (status != EFI_SUCCESS) { |
| 716 | printk(KERN_ALERT "Unable to switch EFI into virtual mode " |
| 717 | "(status=%lx)!\n", status); |
| 718 | panic("EFI call to SetVirtualAddressMap() failed!"); |
| 719 | } |
| 720 | |
| 721 | /* |
Matthew Garrett | 916f676 | 2011-05-25 09:53:13 -0400 | [diff] [blame] | 722 | * Thankfully, it does seem that no runtime services other than |
| 723 | * SetVirtualAddressMap() will touch boot services code, so we can |
| 724 | * get rid of it all at this point |
| 725 | */ |
| 726 | efi_free_boot_services(); |
| 727 | |
| 728 | /* |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 729 | * Now that EFI is in virtual mode, update the function |
| 730 | * pointers in the runtime service table to the new virtual addresses. |
| 731 | * |
| 732 | * Call EFI services through wrapper functions. |
| 733 | */ |
| 734 | efi.get_time = virt_efi_get_time; |
| 735 | efi.set_time = virt_efi_set_time; |
| 736 | efi.get_wakeup_time = virt_efi_get_wakeup_time; |
| 737 | efi.set_wakeup_time = virt_efi_set_wakeup_time; |
| 738 | efi.get_variable = virt_efi_get_variable; |
| 739 | efi.get_next_variable = virt_efi_get_next_variable; |
| 740 | efi.set_variable = virt_efi_set_variable; |
| 741 | efi.get_next_high_mono_count = virt_efi_get_next_high_mono_count; |
| 742 | efi.reset_system = virt_efi_reset_system; |
Matthew Garrett | 2b5e8ef | 2011-05-05 15:19:42 -0400 | [diff] [blame] | 743 | efi.set_virtual_address_map = NULL; |
Matthew Garrett | 3b37023 | 2011-06-06 15:36:25 -0400 | [diff] [blame] | 744 | efi.query_variable_info = virt_efi_query_variable_info; |
| 745 | efi.update_capsule = virt_efi_update_capsule; |
| 746 | efi.query_capsule_caps = virt_efi_query_capsule_caps; |
Huang, Ying | 4de0d4a | 2008-02-13 17:22:41 +0800 | [diff] [blame] | 747 | if (__supported_pte_mask & _PAGE_NX) |
| 748 | runtime_code_page_mkexec(); |
Huang, Ying | a382806 | 2008-01-30 13:34:10 +0100 | [diff] [blame] | 749 | early_iounmap(memmap.map, memmap.nr_map * memmap.desc_size); |
| 750 | memmap.map = NULL; |
Matthew Garrett | 7cb00b7 | 2011-05-05 15:19:45 -0400 | [diff] [blame] | 751 | kfree(new_memmap); |
Huang, Ying | 5b83683 | 2008-01-30 13:31:19 +0100 | [diff] [blame] | 752 | } |
| 753 | |
| 754 | /* |
| 755 | * Convenience functions to obtain memory types and attributes |
| 756 | */ |
| 757 | u32 efi_mem_type(unsigned long phys_addr) |
| 758 | { |
| 759 | efi_memory_desc_t *md; |
| 760 | void *p; |
| 761 | |
| 762 | for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { |
| 763 | md = p; |
| 764 | if ((md->phys_addr <= phys_addr) && |
| 765 | (phys_addr < (md->phys_addr + |
| 766 | (md->num_pages << EFI_PAGE_SHIFT)))) |
| 767 | return md->type; |
| 768 | } |
| 769 | return 0; |
| 770 | } |
| 771 | |
| 772 | u64 efi_mem_attributes(unsigned long phys_addr) |
| 773 | { |
| 774 | efi_memory_desc_t *md; |
| 775 | void *p; |
| 776 | |
| 777 | for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { |
| 778 | md = p; |
| 779 | if ((md->phys_addr <= phys_addr) && |
| 780 | (phys_addr < (md->phys_addr + |
| 781 | (md->num_pages << EFI_PAGE_SHIFT)))) |
| 782 | return md->attribute; |
| 783 | } |
| 784 | return 0; |
| 785 | } |