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>
This commit is contained in:
parent
ef5fa0ab24
commit
99fb4d349d
|
@ -29,15 +29,18 @@
|
||||||
|
|
||||||
static void __cpuinit early_init_intel(struct cpuinfo_x86 *c)
|
static void __cpuinit early_init_intel(struct cpuinfo_x86 *c)
|
||||||
{
|
{
|
||||||
|
/* Unmask CPUID levels if masked: */
|
||||||
|
if (c->x86 == 6 && c->x86_model >= 15) {
|
||||||
u64 misc_enable;
|
u64 misc_enable;
|
||||||
|
|
||||||
/* Unmask CPUID levels if masked */
|
rdmsrl(MSR_IA32_MISC_ENABLE, misc_enable);
|
||||||
if (!rdmsrl_safe(MSR_IA32_MISC_ENABLE, &misc_enable) &&
|
|
||||||
(misc_enable & MSR_IA32_MISC_ENABLE_LIMIT_CPUID)) {
|
if (misc_enable & MSR_IA32_MISC_ENABLE_LIMIT_CPUID) {
|
||||||
misc_enable &= ~MSR_IA32_MISC_ENABLE_LIMIT_CPUID;
|
misc_enable &= ~MSR_IA32_MISC_ENABLE_LIMIT_CPUID;
|
||||||
wrmsrl(MSR_IA32_MISC_ENABLE, misc_enable);
|
wrmsrl(MSR_IA32_MISC_ENABLE, misc_enable);
|
||||||
c->cpuid_level = cpuid_eax(0);
|
c->cpuid_level = cpuid_eax(0);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
|
if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
|
||||||
(c->x86 == 0x6 && c->x86_model >= 0x0e))
|
(c->x86 == 0x6 && c->x86_model >= 0x0e))
|
||||||
|
|
Loading…
Reference in New Issue