x86: pat cpu feature bit setting for known cpus
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
@@ -40,19 +40,8 @@ static int pat_known_cpu(void)
|
||||
if (!pat_wc_enabled)
|
||||
return 0;
|
||||
|
||||
if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
|
||||
(boot_cpu_data.x86 == 0xF ||
|
||||
(boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model >= 15))) {
|
||||
if (cpu_has_pat) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
|
||||
boot_cpu_data.x86 >= 0xf && boot_cpu_data.x86 <= 0x11) {
|
||||
if (cpu_has_pat) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if (cpu_has_pat)
|
||||
return 1;
|
||||
|
||||
pat_wc_enabled = 0;
|
||||
printk(KERN_INFO "CPU and/or kernel does not support PAT.\n");
|
||||
|
Reference in New Issue
Block a user