2 * Common EFI (Extensible Firmware Interface) support functions
3 * Based on Extensible Firmware Interface Specification version 1.0
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>
16 * Copied from efi_32.c to eliminate the duplicated code between EFI
17 * 32/64 support code. --ying 2007-10-26
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
23 * Implemented EFI runtime services and virtual mode calls. --davidm
25 * Goutham Rao: <goutham.rao@intel.com>
26 * Skip non-WB memory and ignore empty memory ranges.
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>
39 #include <linux/reboot.h>
40 #include <linux/bcd.h>
42 #include <asm/setup.h>
45 #include <asm/cacheflush.h>
46 #include <asm/tlbflush.h>
47 #include <asm/x86_init.h>
53 EXPORT_SYMBOL(efi_enabled
);
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
,
68 struct efi_memory_map memmap
;
70 static struct efi efi_phys __initdata
;
71 static efi_system_table_t efi_systab __initdata
;
73 static int __init
setup_noefi(char *arg
)
78 early_param("noefi", setup_noefi
);
81 EXPORT_SYMBOL(add_efi_memmap
);
83 static int __init
setup_add_efi_memmap(char *arg
)
88 early_param("add_efi_memmap", setup_add_efi_memmap
);
91 static efi_status_t
virt_efi_get_time(efi_time_t
*tm
, efi_time_cap_t
*tc
)
96 spin_lock_irqsave(&rtc_lock
, flags
);
97 status
= efi_call_virt2(get_time
, tm
, tc
);
98 spin_unlock_irqrestore(&rtc_lock
, flags
);
102 static efi_status_t
virt_efi_set_time(efi_time_t
*tm
)
107 spin_lock_irqsave(&rtc_lock
, flags
);
108 status
= efi_call_virt1(set_time
, tm
);
109 spin_unlock_irqrestore(&rtc_lock
, flags
);
113 static efi_status_t
virt_efi_get_wakeup_time(efi_bool_t
*enabled
,
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
);
127 static efi_status_t
virt_efi_set_wakeup_time(efi_bool_t enabled
, efi_time_t
*tm
)
132 spin_lock_irqsave(&rtc_lock
, flags
);
133 status
= efi_call_virt2(set_wakeup_time
,
135 spin_unlock_irqrestore(&rtc_lock
, flags
);
139 static efi_status_t
virt_efi_get_variable(efi_char16_t
*name
,
142 unsigned long *data_size
,
145 return efi_call_virt5(get_variable
,
150 static efi_status_t
virt_efi_get_next_variable(unsigned long *name_size
,
154 return efi_call_virt3(get_next_variable
,
155 name_size
, name
, vendor
);
158 static efi_status_t
virt_efi_set_variable(efi_char16_t
*name
,
161 unsigned long data_size
,
164 return efi_call_virt5(set_variable
,
169 static efi_status_t
virt_efi_query_variable_info(u32 attr
,
171 u64
*remaining_space
,
172 u64
*max_variable_size
)
174 if (efi
.runtime_version
< EFI_2_00_SYSTEM_TABLE_REVISION
)
175 return EFI_UNSUPPORTED
;
177 return efi_call_virt4(query_variable_info
, attr
, storage_space
,
178 remaining_space
, max_variable_size
);
181 static efi_status_t
virt_efi_get_next_high_mono_count(u32
*count
)
183 return efi_call_virt1(get_next_high_mono_count
, count
);
186 static void virt_efi_reset_system(int reset_type
,
188 unsigned long data_size
,
191 efi_call_virt4(reset_system
, reset_type
, status
,
195 static efi_status_t
virt_efi_update_capsule(efi_capsule_header_t
**capsules
,
197 unsigned long sg_list
)
199 if (efi
.runtime_version
< EFI_2_00_SYSTEM_TABLE_REVISION
)
200 return EFI_UNSUPPORTED
;
202 return efi_call_virt3(update_capsule
, capsules
, count
, sg_list
);
205 static efi_status_t
virt_efi_query_capsule_caps(efi_capsule_header_t
**capsules
,
210 if (efi
.runtime_version
< EFI_2_00_SYSTEM_TABLE_REVISION
)
211 return EFI_UNSUPPORTED
;
213 return efi_call_virt4(query_capsule_caps
, capsules
, count
, max_size
,
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
)
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();
233 static efi_status_t __init
phys_efi_get_time(efi_time_t
*tm
,
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
),
243 efi_call_phys_epilog();
244 spin_unlock_irqrestore(&rtc_lock
, flags
);
248 int efi_set_rtc_mmss(unsigned long nowtime
)
250 int real_seconds
, real_minutes
;
255 status
= efi
.get_time(&eft
, &cap
);
256 if (status
!= EFI_SUCCESS
) {
257 printk(KERN_ERR
"Oops: efitime: can't read time!\n");
261 real_seconds
= nowtime
% 60;
262 real_minutes
= nowtime
/ 60;
263 if (((abs(real_minutes
- eft
.minute
) + 15)/30) & 1)
266 eft
.minute
= real_minutes
;
267 eft
.second
= real_seconds
;
269 status
= efi
.set_time(&eft
);
270 if (status
!= EFI_SUCCESS
) {
271 printk(KERN_ERR
"Oops: efitime: can't write time!\n");
277 unsigned long efi_get_time(void)
283 status
= efi
.get_time(&eft
, &cap
);
284 if (status
!= EFI_SUCCESS
)
285 printk(KERN_ERR
"Oops: efitime: can't read time!\n");
287 return mktime(eft
.year
, eft
.month
, eft
.day
, eft
.hour
,
288 eft
.minute
, eft
.second
);
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.
297 static void __init
do_add_efi_memmap(void)
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
;
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
;
316 e820_type
= E820_RESERVED
;
318 case EFI_ACPI_RECLAIM_MEMORY
:
319 e820_type
= E820_ACPI
;
321 case EFI_ACPI_MEMORY_NVS
:
322 e820_type
= E820_NVS
;
324 case EFI_UNUSABLE_MEMORY
:
325 e820_type
= E820_UNUSABLE
;
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
333 e820_type
= E820_RESERVED
;
336 e820_add_region(start
, size
, e820_type
);
338 sanitize_e820_map(e820
.map
, ARRAY_SIZE(e820
.map
), &e820
.nr_map
);
341 void __init
efi_memblock_x86_reserve_range(void)
346 pmap
= boot_params
.efi_info
.efi_memmap
;
348 pmap
= (boot_params
.efi_info
.efi_memmap
|
349 ((__u64
)boot_params
.efi_info
.efi_memmap_hi
<<32));
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
);
360 static void __init
print_efi_memmap(void)
362 efi_memory_desc_t
*md
;
366 for (p
= memmap
.map
, i
= 0;
368 p
+= memmap
.desc_size
, i
++) {
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
)));
377 #endif /* EFI_DEBUG */
379 void __init
efi_reserve_boot_services(void)
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
;
388 if (md
->type
!= EFI_BOOT_SERVICES_CODE
&&
389 md
->type
!= EFI_BOOT_SERVICES_DATA
)
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
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 */
403 memblock_dbg(PFX
"Could not reserve boot range "
404 "[0x%010llx-0x%010llx]\n",
405 start
, start
+size
-1);
407 memblock_reserve(start
, size
);
411 static void __init
efi_free_boot_services(void)
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
;
420 if (md
->type
!= EFI_BOOT_SERVICES_CODE
&&
421 md
->type
!= EFI_BOOT_SERVICES_DATA
)
424 /* Could not reserve boot area */
428 free_bootmem_late(start
, size
);
432 void __init
efi_init(void)
434 efi_config_table_t
*config_tables
;
435 efi_runtime_services_t
*runtime
;
437 char vendor
[100] = "unknown";
442 efi_phys
.systab
= (efi_system_table_t
*)boot_params
.efi_info
.efi_systab
;
444 efi_phys
.systab
= (efi_system_table_t
*)
445 (boot_params
.efi_info
.efi_systab
|
446 ((__u64
)boot_params
.efi_info
.efi_systab_hi
<<32));
449 efi
.systab
= early_ioremap((unsigned long)efi_phys
.systab
,
450 sizeof(efi_system_table_t
));
451 if (efi
.systab
== NULL
)
452 printk(KERN_ERR
"Couldn't map the EFI system table!\n");
453 memcpy(&efi_systab
, efi
.systab
, sizeof(efi_system_table_t
));
454 early_iounmap(efi
.systab
, sizeof(efi_system_table_t
));
455 efi
.systab
= &efi_systab
;
458 * Verify the EFI Table
460 if (efi
.systab
->hdr
.signature
!= EFI_SYSTEM_TABLE_SIGNATURE
)
461 printk(KERN_ERR
"EFI system table signature incorrect!\n");
462 if ((efi
.systab
->hdr
.revision
>> 16) == 0)
463 printk(KERN_ERR
"Warning: EFI system table version "
464 "%d.%02d, expected 1.00 or greater!\n",
465 efi
.systab
->hdr
.revision
>> 16,
466 efi
.systab
->hdr
.revision
& 0xffff);
469 * Show what we know for posterity
471 c16
= tmp
= early_ioremap(efi
.systab
->fw_vendor
, 2);
473 for (i
= 0; i
< sizeof(vendor
) - 1 && *c16
; ++i
)
477 printk(KERN_ERR PFX
"Could not map the firmware vendor!\n");
478 early_iounmap(tmp
, 2);
480 printk(KERN_INFO
"EFI v%u.%.02u by %s\n",
481 efi
.systab
->hdr
.revision
>> 16,
482 efi
.systab
->hdr
.revision
& 0xffff, vendor
);
485 * Let's see what config tables the firmware passed to us.
487 config_tables
= early_ioremap(
489 efi
.systab
->nr_tables
* sizeof(efi_config_table_t
));
490 if (config_tables
== NULL
)
491 printk(KERN_ERR
"Could not map EFI Configuration Table!\n");
494 for (i
= 0; i
< efi
.systab
->nr_tables
; i
++) {
495 if (!efi_guidcmp(config_tables
[i
].guid
, MPS_TABLE_GUID
)) {
496 efi
.mps
= config_tables
[i
].table
;
497 printk(" MPS=0x%lx ", config_tables
[i
].table
);
498 } else if (!efi_guidcmp(config_tables
[i
].guid
,
499 ACPI_20_TABLE_GUID
)) {
500 efi
.acpi20
= config_tables
[i
].table
;
501 printk(" ACPI 2.0=0x%lx ", config_tables
[i
].table
);
502 } else if (!efi_guidcmp(config_tables
[i
].guid
,
504 efi
.acpi
= config_tables
[i
].table
;
505 printk(" ACPI=0x%lx ", config_tables
[i
].table
);
506 } else if (!efi_guidcmp(config_tables
[i
].guid
,
507 SMBIOS_TABLE_GUID
)) {
508 efi
.smbios
= config_tables
[i
].table
;
509 printk(" SMBIOS=0x%lx ", config_tables
[i
].table
);
511 } else if (!efi_guidcmp(config_tables
[i
].guid
,
512 UV_SYSTEM_TABLE_GUID
)) {
513 efi
.uv_systab
= config_tables
[i
].table
;
514 printk(" UVsystab=0x%lx ", config_tables
[i
].table
);
516 } else if (!efi_guidcmp(config_tables
[i
].guid
,
518 efi
.hcdp
= config_tables
[i
].table
;
519 printk(" HCDP=0x%lx ", config_tables
[i
].table
);
520 } else if (!efi_guidcmp(config_tables
[i
].guid
,
521 UGA_IO_PROTOCOL_GUID
)) {
522 efi
.uga
= config_tables
[i
].table
;
523 printk(" UGA=0x%lx ", config_tables
[i
].table
);
527 early_iounmap(config_tables
,
528 efi
.systab
->nr_tables
* sizeof(efi_config_table_t
));
531 * Check out the runtime services table. We need to map
532 * the runtime services table so that we can grab the physical
533 * address of several of the EFI runtime functions, needed to
534 * set the firmware into virtual mode.
536 runtime
= early_ioremap((unsigned long)efi
.systab
->runtime
,
537 sizeof(efi_runtime_services_t
));
538 if (runtime
!= NULL
) {
540 * We will only need *early* access to the following
541 * two EFI runtime services before set_virtual_address_map
544 efi_phys
.get_time
= (efi_get_time_t
*)runtime
->get_time
;
545 efi_phys
.set_virtual_address_map
=
546 (efi_set_virtual_address_map_t
*)
547 runtime
->set_virtual_address_map
;
549 * Make efi_get_time can be called before entering
552 efi
.get_time
= phys_efi_get_time
;
554 printk(KERN_ERR
"Could not map the EFI runtime service "
556 early_iounmap(runtime
, sizeof(efi_runtime_services_t
));
558 /* Map the EFI memory map */
559 memmap
.map
= early_ioremap((unsigned long)memmap
.phys_map
,
560 memmap
.nr_map
* memmap
.desc_size
);
561 if (memmap
.map
== NULL
)
562 printk(KERN_ERR
"Could not map the EFI memory map!\n");
563 memmap
.map_end
= memmap
.map
+ (memmap
.nr_map
* memmap
.desc_size
);
565 if (memmap
.desc_size
!= sizeof(efi_memory_desc_t
))
567 "Kernel-defined memdesc doesn't match the one from EFI!\n");
573 x86_platform
.get_wallclock
= efi_get_time
;
574 x86_platform
.set_wallclock
= efi_set_rtc_mmss
;
582 void __init
efi_set_executable(efi_memory_desc_t
*md
, bool executable
)
586 addr
= md
->virt_addr
;
587 npages
= md
->num_pages
;
589 memrange_efi_to_native(&addr
, &npages
);
592 set_memory_x(addr
, npages
);
594 set_memory_nx(addr
, npages
);
597 static void __init
runtime_code_page_mkexec(void)
599 efi_memory_desc_t
*md
;
602 /* Make EFI runtime service code area executable */
603 for (p
= memmap
.map
; p
< memmap
.map_end
; p
+= memmap
.desc_size
) {
606 if (md
->type
!= EFI_RUNTIME_SERVICES_CODE
)
609 efi_set_executable(md
, true);
614 * This function will switch the EFI runtime services to virtual mode.
615 * Essentially, look through the EFI memmap and map every region that
616 * has the runtime attribute bit set in its memory descriptor and update
617 * that memory descriptor with the virtual address obtained from ioremap().
618 * This enables the runtime services to be called without having to
619 * thunk back into physical mode for every invocation.
621 void __init
efi_enter_virtual_mode(void)
623 efi_memory_desc_t
*md
, *prev_md
= NULL
;
626 u64 end
, systab
, addr
, npages
, end_pfn
;
627 void *p
, *va
, *new_memmap
= NULL
;
632 /* Merge contiguous regions of the same type and attribute */
633 for (p
= memmap
.map
; p
< memmap
.map_end
; p
+= memmap
.desc_size
) {
642 if (prev_md
->type
!= md
->type
||
643 prev_md
->attribute
!= md
->attribute
) {
648 prev_size
= prev_md
->num_pages
<< EFI_PAGE_SHIFT
;
650 if (md
->phys_addr
== (prev_md
->phys_addr
+ prev_size
)) {
651 prev_md
->num_pages
+= md
->num_pages
;
652 md
->type
= EFI_RESERVED_TYPE
;
659 for (p
= memmap
.map
; p
< memmap
.map_end
; p
+= memmap
.desc_size
) {
661 if (!(md
->attribute
& EFI_MEMORY_RUNTIME
) &&
662 md
->type
!= EFI_BOOT_SERVICES_CODE
&&
663 md
->type
!= EFI_BOOT_SERVICES_DATA
)
666 size
= md
->num_pages
<< EFI_PAGE_SHIFT
;
667 end
= md
->phys_addr
+ size
;
669 end_pfn
= PFN_UP(end
);
670 if (end_pfn
<= max_low_pfn_mapped
671 || (end_pfn
> (1UL << (32 - PAGE_SHIFT
))
672 && end_pfn
<= max_pfn_mapped
))
673 va
= __va(md
->phys_addr
);
675 va
= efi_ioremap(md
->phys_addr
, size
, md
->type
);
677 md
->virt_addr
= (u64
) (unsigned long) va
;
680 printk(KERN_ERR PFX
"ioremap of 0x%llX failed!\n",
681 (unsigned long long)md
->phys_addr
);
685 if (!(md
->attribute
& EFI_MEMORY_WB
)) {
686 addr
= md
->virt_addr
;
687 npages
= md
->num_pages
;
688 memrange_efi_to_native(&addr
, &npages
);
689 set_memory_uc(addr
, npages
);
692 systab
= (u64
) (unsigned long) efi_phys
.systab
;
693 if (md
->phys_addr
<= systab
&& systab
< end
) {
694 systab
+= md
->virt_addr
- md
->phys_addr
;
695 efi
.systab
= (efi_system_table_t
*) (unsigned long) systab
;
697 new_memmap
= krealloc(new_memmap
,
698 (count
+ 1) * memmap
.desc_size
,
700 memcpy(new_memmap
+ (count
* memmap
.desc_size
), md
,
707 status
= phys_efi_set_virtual_address_map(
708 memmap
.desc_size
* count
,
711 (efi_memory_desc_t
*)__pa(new_memmap
));
713 if (status
!= EFI_SUCCESS
) {
714 printk(KERN_ALERT
"Unable to switch EFI into virtual mode "
715 "(status=%lx)!\n", status
);
716 panic("EFI call to SetVirtualAddressMap() failed!");
720 * Thankfully, it does seem that no runtime services other than
721 * SetVirtualAddressMap() will touch boot services code, so we can
722 * get rid of it all at this point
724 efi_free_boot_services();
727 * Now that EFI is in virtual mode, update the function
728 * pointers in the runtime service table to the new virtual addresses.
730 * Call EFI services through wrapper functions.
732 efi
.get_time
= virt_efi_get_time
;
733 efi
.set_time
= virt_efi_set_time
;
734 efi
.get_wakeup_time
= virt_efi_get_wakeup_time
;
735 efi
.set_wakeup_time
= virt_efi_set_wakeup_time
;
736 efi
.get_variable
= virt_efi_get_variable
;
737 efi
.get_next_variable
= virt_efi_get_next_variable
;
738 efi
.set_variable
= virt_efi_set_variable
;
739 efi
.get_next_high_mono_count
= virt_efi_get_next_high_mono_count
;
740 efi
.reset_system
= virt_efi_reset_system
;
741 efi
.set_virtual_address_map
= NULL
;
742 efi
.query_variable_info
= virt_efi_query_variable_info
;
743 efi
.update_capsule
= virt_efi_update_capsule
;
744 efi
.query_capsule_caps
= virt_efi_query_capsule_caps
;
745 if (__supported_pte_mask
& _PAGE_NX
)
746 runtime_code_page_mkexec();
747 early_iounmap(memmap
.map
, memmap
.nr_map
* memmap
.desc_size
);
753 * Convenience functions to obtain memory types and attributes
755 u32
efi_mem_type(unsigned long phys_addr
)
757 efi_memory_desc_t
*md
;
760 for (p
= memmap
.map
; p
< memmap
.map_end
; p
+= memmap
.desc_size
) {
762 if ((md
->phys_addr
<= phys_addr
) &&
763 (phys_addr
< (md
->phys_addr
+
764 (md
->num_pages
<< EFI_PAGE_SHIFT
))))
770 u64
efi_mem_attributes(unsigned long phys_addr
)
772 efi_memory_desc_t
*md
;
775 for (p
= memmap
.map
; p
< memmap
.map_end
; p
+= memmap
.desc_size
) {
777 if ((md
->phys_addr
<= phys_addr
) &&
778 (phys_addr
< (md
->phys_addr
+
779 (md
->num_pages
<< EFI_PAGE_SHIFT
))))
780 return md
->attribute
;