aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/efi.c
diff options
context:
space:
mode:
authorRuss Anderson <rja@sgi.com>2008-10-03 11:58:54 -0500
committerIngo Molnar <mingo@elte.hu>2008-10-16 16:53:13 +0200
commita50f70b17541c0060967c6df61133e968bad3652 (patch)
tree89962aabcea92bef520b3bfc8701c11ff65ea37c /arch/x86/kernel/efi.c
parentx86, UV: add uv_setup_irq() and uv_teardown_irq() functions, v3, fix (diff)
downloadlinux-dev-a50f70b17541c0060967c6df61133e968bad3652.tar.xz
linux-dev-a50f70b17541c0060967c6df61133e968bad3652.zip
x86: Add UV EFI table entry v4
Look for a UV entry in the EFI tables. Signed-off-by: Russ Anderson <rja@sgi.com> Signed-off-by: Paul Jackson <pj@sgi.com> Acked-by: Huang Ying <ying.huang@intel.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/efi.c')
-rw-r--r--arch/x86/kernel/efi.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/kernel/efi.c b/arch/x86/kernel/efi.c
index 945a31cdd81f..1119d247fe11 100644
--- a/arch/x86/kernel/efi.c
+++ b/arch/x86/kernel/efi.c
@@ -367,6 +367,10 @@ void __init efi_init(void)
efi.smbios = config_tables[i].table;
printk(" SMBIOS=0x%lx ", config_tables[i].table);
} else if (!efi_guidcmp(config_tables[i].guid,
+ UV_SYSTEM_TABLE_GUID)) {
+ efi.uv_systab = config_tables[i].table;
+ printk(" UVsystab=0x%lx ", config_tables[i].table);
+ } else if (!efi_guidcmp(config_tables[i].guid,
HCDP_TABLE_GUID)) {
efi.hcdp = config_tables[i].table;
printk(" HCDP=0x%lx ", config_tables[i].table);