aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/cpu/intel.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/cpu/intel.c')
-rw-r--r--arch/x86/kernel/cpu/intel.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/intel.c b/arch/x86/kernel/cpu/intel.c
index cbffa2a25a13..f113ef4595f6 100644
--- a/arch/x86/kernel/cpu/intel.c
+++ b/arch/x86/kernel/cpu/intel.c
@@ -227,6 +227,20 @@ static void __cpuinit init_intel(struct cpuinfo_x86 *c)
227 227
228 if (cpu_has_bts) 228 if (cpu_has_bts)
229 ptrace_bts_init_intel(c); 229 ptrace_bts_init_intel(c);
230
231 /*
232 * See if we have a good local APIC by checking for buggy Pentia,
233 * i.e. all B steppings and the C2 stepping of P54C when using their
234 * integrated APIC (see 11AP erratum in "Pentium Processor
235 * Specification Update").
236 */
237 if (cpu_has_apic && (c->x86<<8 | c->x86_model<<4) == 0x520 &&
238 (c->x86_mask < 0x6 || c->x86_mask == 0xb))
239 set_cpu_cap(c, X86_FEATURE_11AP);
240
241#ifdef CONFIG_X86_NUMAQ
242 numaq_tsc_disable();
243#endif
230} 244}
231 245
232static unsigned int __cpuinit intel_size_cache(struct cpuinfo_x86 *c, unsigned int size) 246static unsigned int __cpuinit intel_size_cache(struct cpuinfo_x86 *c, unsigned int size)