diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-25 22:30:41 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-26 06:36:24 -0500 |
commit | 99fb4d349db7e7dacb2099c5cc320a9e2d31c1ef (patch) | |
tree | 62d62cb8f17962e9318177240c6154a4ca708077 /arch | |
parent | ef5fa0ab24b87646c7bc98645acbb4b51fc2acd4 (diff) |
x86: unmask CPUID levels on Intel CPUs, fix
Impact: fix boot hang on pre-model-15 Intel CPUs
rdmsrl_safe() does not work in very early bootup code yet, because we
dont have the pagefault handler installed yet so exception section
does not get parsed. rdmsr_safe() will just crash and hang the bootup.
So limit the MSR_IA32_MISC_ENABLE MSR read to those CPU types that
support it.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/cpu/intel.c | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/arch/x86/kernel/cpu/intel.c b/arch/x86/kernel/cpu/intel.c index 43c1dcf0bec7..549f2ada55f5 100644 --- a/arch/x86/kernel/cpu/intel.c +++ b/arch/x86/kernel/cpu/intel.c | |||
@@ -29,14 +29,17 @@ | |||
29 | 29 | ||
30 | static void __cpuinit early_init_intel(struct cpuinfo_x86 *c) | 30 | static void __cpuinit early_init_intel(struct cpuinfo_x86 *c) |
31 | { | 31 | { |
32 | u64 misc_enable; | 32 | /* Unmask CPUID levels if masked: */ |
33 | 33 | if (c->x86 == 6 && c->x86_model >= 15) { | |
34 | /* Unmask CPUID levels if masked */ | 34 | u64 misc_enable; |
35 | if (!rdmsrl_safe(MSR_IA32_MISC_ENABLE, &misc_enable) && | 35 | |
36 | (misc_enable & MSR_IA32_MISC_ENABLE_LIMIT_CPUID)) { | 36 | rdmsrl(MSR_IA32_MISC_ENABLE, misc_enable); |
37 | misc_enable &= ~MSR_IA32_MISC_ENABLE_LIMIT_CPUID; | 37 | |
38 | wrmsrl(MSR_IA32_MISC_ENABLE, misc_enable); | 38 | if (misc_enable & MSR_IA32_MISC_ENABLE_LIMIT_CPUID) { |
39 | c->cpuid_level = cpuid_eax(0); | 39 | misc_enable &= ~MSR_IA32_MISC_ENABLE_LIMIT_CPUID; |
40 | wrmsrl(MSR_IA32_MISC_ENABLE, misc_enable); | ||
41 | c->cpuid_level = cpuid_eax(0); | ||
42 | } | ||
40 | } | 43 | } |
41 | 44 | ||
42 | if ((c->x86 == 0xf && c->x86_model >= 0x03) || | 45 | if ((c->x86 == 0xf && c->x86_model >= 0x03) || |