diff options
author | Dave Jones <davej@redhat.com> | 2008-05-22 13:02:23 -0400 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-05-22 16:25:22 -0400 |
commit | 873b274a41c0cfe58b2eb0a7722424eb367b905b (patch) | |
tree | 05541d01ad76dc980820f9b5a92effff279ea46b /arch/x86/kernel/cpu | |
parent | a8ac1ae3a2a8ceb5bc1d334a502d42f59b91379c (diff) |
x86: Add Centaur and Transmeta CPUs to PAT whitelist
Unconditionally enable PAT support on Centaur and Transmeta CPUs.
All known models that advertise PAT have no known errata.
Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/kernel/cpu')
-rw-r--r-- | arch/x86/kernel/cpu/addon_cpuid_features.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/addon_cpuid_features.c b/arch/x86/kernel/cpu/addon_cpuid_features.c index c2e1ce33c7cb..d8b3e4a9d663 100644 --- a/arch/x86/kernel/cpu/addon_cpuid_features.c +++ b/arch/x86/kernel/cpu/addon_cpuid_features.c | |||
@@ -62,6 +62,9 @@ void __cpuinit validate_pat_support(struct cpuinfo_x86 *c) | |||
62 | if (c->x86 == 0xF || (c->x86 == 6 && c->x86_model >= 15)) | 62 | if (c->x86 == 0xF || (c->x86 == 6 && c->x86_model >= 15)) |
63 | return; | 63 | return; |
64 | break; | 64 | break; |
65 | case X86_VENDOR_CENTAUR: | ||
66 | case X86_VENDOR_TRANSMETA: | ||
67 | return; | ||
65 | } | 68 | } |
66 | 69 | ||
67 | pat_disable(cpu_has_pat ? | 70 | pat_disable(cpu_has_pat ? |