aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/efi.c
diff options
context:
space:
mode:
authorPaul Jackson <pj@sgi.com>2008-06-25 08:44:46 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-08 07:10:41 -0400
commit200001eb140ea33477965f2050bea0dac801974b (patch)
tree00dfe5cebbf6bf26ff8dbdff03b3ae1e59234bf9 /arch/x86/kernel/efi.c
parent5dab8ec139be215fbaba216fb4aea914d0f4dac5 (diff)
x86 boot: only pick up additional EFI memmap if add_efi_memmap flag
Applies on top of the previous patch: x86 boot: add code to add BIOS provided EFI memory entries to kernel Instead of always adding EFI memory map entries (if present) to the memory map after initially finding either E820 BIOS memory map entries and/or kernel command line memmap entries, -instead- only add such additional EFI memory map entries if the kernel boot option: add_efi_memmap is specified. Requiring this 'add_efi_memmap' option is backward compatible with kernels that didn't load such additional EFI memory map entries in the first place, and it doesn't override a configuration that tries to replace all E820 or EFI BIOS memory map entries with ones given entirely on the kernel command line. Signed-off-by: Paul Jackson <pj@sgi.com> Cc: "Yinghai Lu" <yhlu.kernel@gmail.com> Cc: "Jack Steiner" <steiner@sgi.com> Cc: "Mike Travis" <travis@sgi.com> Cc: "Huang Cc: Ying" <ying.huang@intel.com> Cc: "Andi Kleen" <andi@firstfloor.org> Cc: "Andrew Morton" <akpm@linux-foundation.org> Cc: Paul Jackson <pj@sgi.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/efi.c')
-rw-r--r--arch/x86/kernel/efi.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/arch/x86/kernel/efi.c b/arch/x86/kernel/efi.c
index a03ca36a302c..94382faeadb6 100644
--- a/arch/x86/kernel/efi.c
+++ b/arch/x86/kernel/efi.c
@@ -64,6 +64,17 @@ static int __init setup_noefi(char *arg)
64} 64}
65early_param("noefi", setup_noefi); 65early_param("noefi", setup_noefi);
66 66
67int add_efi_memmap;
68EXPORT_SYMBOL(add_efi_memmap);
69
70static int __init setup_add_efi_memmap(char *arg)
71{
72 add_efi_memmap = 1;
73 return 0;
74}
75early_param("add_efi_memmap", setup_add_efi_memmap);
76
77
67static efi_status_t virt_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc) 78static efi_status_t virt_efi_get_time(efi_time_t *tm, efi_time_cap_t *tc)
68{ 79{
69 return efi_call_virt2(get_time, tm, tc); 80 return efi_call_virt2(get_time, tm, tc);
@@ -219,7 +230,7 @@ unsigned long efi_get_time(void)
219 * (zeropage) memory map. 230 * (zeropage) memory map.
220 */ 231 */
221 232
222static void __init add_efi_memmap(void) 233static void __init do_add_efi_memmap(void)
223{ 234{
224 void *p; 235 void *p;
225 236
@@ -406,7 +417,8 @@ void __init efi_init(void)
406 if (memmap.desc_size != sizeof(efi_memory_desc_t)) 417 if (memmap.desc_size != sizeof(efi_memory_desc_t))
407 printk(KERN_WARNING "Kernel-defined memdesc" 418 printk(KERN_WARNING "Kernel-defined memdesc"
408 "doesn't match the one from EFI!\n"); 419 "doesn't match the one from EFI!\n");
409 add_efi_memmap(); 420 if (add_efi_memmap)
421 do_add_efi_memmap();
410 422
411 /* Setup for EFI runtime service */ 423 /* Setup for EFI runtime service */
412 reboot_type = BOOT_EFI; 424 reboot_type = BOOT_EFI;