diff options
author | Jack Steiner <steiner@sgi.com> | 2008-03-28 15:12:06 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:41:33 -0400 |
commit | ae261868658773538ddda829c50224e5851c2342 (patch) | |
tree | c6176e3c2bffae7307f32900a723e49efb2d6246 /include/asm-x86/genapic_32.h | |
parent | 05f2d12c3563dea8c81b301f9f3cf7919af23b13 (diff) |
x86: add functions to determine if platform is a UV platform
Add functions that can be used to determine if an x86_64
system is a SGI "UV" system. UV systems come in 3 types and
are identified by the OEM ID in the MADT.
Signed-off-by: Jack Steiner <steiner@sgi.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/genapic_32.h')
-rw-r--r-- | include/asm-x86/genapic_32.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-x86/genapic_32.h b/include/asm-x86/genapic_32.h index 5fa893dce729..f1b96932746b 100644 --- a/include/asm-x86/genapic_32.h +++ b/include/asm-x86/genapic_32.h | |||
@@ -114,4 +114,9 @@ struct genapic { | |||
114 | 114 | ||
115 | extern struct genapic *genapic; | 115 | extern struct genapic *genapic; |
116 | 116 | ||
117 | enum uv_system_type {UV_NONE, UV_LEGACY_APIC, UV_X2APIC, UV_NON_UNIQUE_APIC}; | ||
118 | #define get_uv_system_type() UV_NONE | ||
119 | #define is_uv_system() 0 | ||
120 | |||
121 | |||
117 | #endif | 122 | #endif |