]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/kernel/cpu/intel.c
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / kernel / cpu / intel.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2#include <linux/kernel.h>
3
4#include <linux/string.h>
5#include <linux/bitops.h>
6#include <linux/smp.h>
83ce4009 7#include <linux/sched.h>
e6017571 8#include <linux/sched/clock.h>
1da177e4 9#include <linux/thread_info.h>
186f4360 10#include <linux/init.h>
8bdbd962 11#include <linux/uaccess.h>
1da177e4 12
cd4d09ec 13#include <asm/cpufeature.h>
d72b1b4f 14#include <asm/pgtable.h>
1da177e4 15#include <asm/msr.h>
73bdb73f 16#include <asm/bugs.h>
1f442d70 17#include <asm/cpu.h>
08e237fa 18#include <asm/intel-family.h>
4167709b 19#include <asm/microcode_intel.h>
e16fd002
GA
20#include <asm/hwcap2.h>
21#include <asm/elf.h>
1da177e4 22
185f3b9d 23#ifdef CONFIG_X86_64
8bdbd962 24#include <linux/topology.h>
185f3b9d
YL
25#endif
26
1da177e4
LT
27#include "cpu.h"
28
29#ifdef CONFIG_X86_LOCAL_APIC
30#include <asm/mpspec.h>
31#include <asm/apic.h>
1da177e4
LT
32#endif
33
0f6ff2bc
DH
34/*
35 * Just in case our CPU detection goes bad, or you have a weird system,
36 * allow a way to override the automatic disabling of MPX.
37 */
38static int forcempx;
39
40static int __init forcempx_setup(char *__unused)
41{
42 forcempx = 1;
43
44 return 1;
45}
46__setup("intel-skd-046-workaround=disable", forcempx_setup);
47
48void check_mpx_erratum(struct cpuinfo_x86 *c)
49{
50 if (forcempx)
51 return;
52 /*
53 * Turn off the MPX feature on CPUs where SMEP is not
54 * available or disabled.
55 *
56 * Works around Intel Erratum SKD046: "Branch Instructions
57 * May Initialize MPX Bound Registers Incorrectly".
58 *
59 * This might falsely disable MPX on systems without
60 * SMEP, like Atom processors without SMEP. But there
61 * is no such hardware known at the moment.
62 */
63 if (cpu_has(c, X86_FEATURE_MPX) && !cpu_has(c, X86_FEATURE_SMEP)) {
64 setup_clear_cpu_cap(X86_FEATURE_MPX);
65 pr_warn("x86/mpx: Disabling MPX since SMEP not present\n");
66 }
67}
68
e16fd002
GA
69static bool ring3mwait_disabled __read_mostly;
70
71static int __init ring3mwait_disable(char *__unused)
72{
73 ring3mwait_disabled = true;
74 return 0;
75}
76__setup("ring3mwait=disable", ring3mwait_disable);
77
78static void probe_xeon_phi_r3mwait(struct cpuinfo_x86 *c)
79{
80 /*
81 * Ring 3 MONITOR/MWAIT feature cannot be detected without
82 * cpu model and family comparison.
83 */
4d8bb006 84 if (c->x86 != 6)
e16fd002 85 return;
4d8bb006
PL
86 switch (c->x86_model) {
87 case INTEL_FAM6_XEON_PHI_KNL:
88 case INTEL_FAM6_XEON_PHI_KNM:
89 break;
90 default:
91 return;
92 }
e16fd002 93
e9ea1e7f 94 if (ring3mwait_disabled)
e16fd002 95 return;
e16fd002
GA
96
97 set_cpu_cap(c, X86_FEATURE_RING3MWAIT);
e9ea1e7f
KH
98 this_cpu_or(msr_misc_features_shadow,
99 1UL << MSR_MISC_FEATURES_ENABLES_RING3MWAIT_BIT);
e16fd002
GA
100
101 if (c == &boot_cpu_data)
102 ELF_HWCAP2 |= HWCAP2_RING3MWAIT;
103}
104
148f9bb8 105static void early_init_intel(struct cpuinfo_x86 *c)
1da177e4 106{
161ec53c
FY
107 u64 misc_enable;
108
99fb4d34 109 /* Unmask CPUID levels if masked: */
30a0fb94 110 if (c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xd)) {
0b131be8
PA
111 if (msr_clear_bit(MSR_IA32_MISC_ENABLE,
112 MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) > 0) {
99fb4d34 113 c->cpuid_level = cpuid_eax(0);
d900329e 114 get_cpu_cap(c);
99fb4d34 115 }
066941bd
PA
116 }
117
2b16a235
AK
118 if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
119 (c->x86 == 0x6 && c->x86_model >= 0x0e))
120 set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
185f3b9d 121
4167709b
BP
122 if (c->x86 >= 6 && !cpu_has(c, X86_FEATURE_IA64))
123 c->microcode = intel_get_microcode_revision();
506ed6b5 124
7a0fc404
PA
125 /*
126 * Atom erratum AAE44/AAF40/AAG38/AAH41:
127 *
128 * A race condition between speculative fetches and invalidating
129 * a large page. This is worked around in microcode, but we
130 * need the microcode to have already been loaded... so if it is
131 * not, recommend a BIOS update and disable large pages.
132 */
30963c0a
AK
133 if (c->x86 == 6 && c->x86_model == 0x1c && c->x86_mask <= 2 &&
134 c->microcode < 0x20e) {
1b74dde7 135 pr_warn("Atom PSE erratum detected, BIOS microcode update recommended\n");
30963c0a 136 clear_cpu_cap(c, X86_FEATURE_PSE);
7a0fc404
PA
137 }
138
185f3b9d
YL
139#ifdef CONFIG_X86_64
140 set_cpu_cap(c, X86_FEATURE_SYSENTER32);
141#else
142 /* Netburst reports 64 bytes clflush size, but does IO in 128 bytes */
143 if (c->x86 == 15 && c->x86_cache_alignment == 64)
144 c->x86_cache_alignment = 128;
145#endif
40fb1715 146
13c6c532
JB
147 /* CPUID workaround for 0F33/0F34 CPU */
148 if (c->x86 == 0xF && c->x86_model == 0x3
149 && (c->x86_mask == 0x3 || c->x86_mask == 0x4))
150 c->x86_phys_bits = 36;
151
40fb1715
VP
152 /*
153 * c->x86_power is 8000_0007 edx. Bit 8 is TSC runs at constant rate
83ce4009
IM
154 * with P/T states and does not stop in deep C-states.
155 *
156 * It is also reliable across cores and sockets. (but not across
157 * cabinets - we turn it off in that case explicitly.)
40fb1715
VP
158 */
159 if (c->x86_power & (1 << 8)) {
160 set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
161 set_cpu_cap(c, X86_FEATURE_NONSTOP_TSC);
162 }
163
c54fdbb2
FT
164 /* Penwell and Cloverview have the TSC which doesn't sleep on S3 */
165 if (c->x86 == 6) {
166 switch (c->x86_model) {
167 case 0x27: /* Penwell */
168 case 0x35: /* Cloverview */
354dbaa7 169 case 0x4a: /* Merrifield */
c54fdbb2
FT
170 set_cpu_cap(c, X86_FEATURE_NONSTOP_TSC_S3);
171 break;
172 default:
173 break;
174 }
175 }
176
75a04811
PA
177 /*
178 * There is a known erratum on Pentium III and Core Solo
179 * and Core Duo CPUs.
180 * " Page with PAT set to WC while associated MTRR is UC
181 * may consolidate to UC "
182 * Because of this erratum, it is better to stick with
183 * setting WC in MTRR rather than using PAT on these CPUs.
184 *
185 * Enable PAT WC only on P4, Core 2 or later CPUs.
186 */
187 if (c->x86 == 6 && c->x86_model < 15)
188 clear_cpu_cap(c, X86_FEATURE_PAT);
f8561296 189
161ec53c
FY
190 /*
191 * If fast string is not enabled in IA32_MISC_ENABLE for any reason,
192 * clear the fast string and enhanced fast string CPU capabilities.
193 */
194 if (c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xd)) {
195 rdmsrl(MSR_IA32_MISC_ENABLE, misc_enable);
196 if (!(misc_enable & MSR_IA32_MISC_ENABLE_FAST_STRING)) {
1b74dde7 197 pr_info("Disabled fast string operations\n");
161ec53c
FY
198 setup_clear_cpu_cap(X86_FEATURE_REP_GOOD);
199 setup_clear_cpu_cap(X86_FEATURE_ERMS);
200 }
201 }
ee1b5b16
BD
202
203 /*
204 * Intel Quark Core DevMan_001.pdf section 6.4.11
205 * "The operating system also is required to invalidate (i.e., flush)
206 * the TLB when any changes are made to any of the page table entries.
207 * The operating system must reload CR3 to cause the TLB to be flushed"
208 *
c109bf95
BP
209 * As a result, boot_cpu_has(X86_FEATURE_PGE) in arch/x86/include/asm/tlbflush.h
210 * should be false so that __flush_tlb_all() causes CR3 insted of CR4.PGE
211 * to be modified.
ee1b5b16
BD
212 */
213 if (c->x86 == 5 && c->x86_model == 9) {
214 pr_info("Disabling PGE capability bit\n");
215 setup_clear_cpu_cap(X86_FEATURE_PGE);
216 }
1f12e32f
TG
217
218 if (c->cpuid_level >= 0x00000001) {
219 u32 eax, ebx, ecx, edx;
220
221 cpuid(0x00000001, &eax, &ebx, &ecx, &edx);
222 /*
223 * If HTT (EDX[28]) is set EBX[16:23] contain the number of
224 * apicids which are reserved per package. Store the resulting
225 * shift value for the package management code.
226 */
227 if (edx & (1U << 28))
228 c->x86_coreid_bits = get_count_order((ebx >> 16) & 0xff);
229 }
0f6ff2bc
DH
230
231 check_mpx_erratum(c);
1da177e4
LT
232}
233
185f3b9d 234#ifdef CONFIG_X86_32
1da177e4
LT
235/*
236 * Early probe support logic for ppro memory erratum #50
237 *
238 * This is called before we do cpu ident work
239 */
65eb6b43 240
148f9bb8 241int ppro_with_ram_bug(void)
1da177e4
LT
242{
243 /* Uses data from early_cpu_detect now */
244 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
245 boot_cpu_data.x86 == 6 &&
246 boot_cpu_data.x86_model == 1 &&
247 boot_cpu_data.x86_mask < 8) {
1b74dde7 248 pr_info("Pentium Pro with Errata#50 detected. Taking evasive action.\n");
1da177e4
LT
249 return 1;
250 }
251 return 0;
252}
65eb6b43 253
148f9bb8 254static void intel_smp_check(struct cpuinfo_x86 *c)
1f442d70 255{
1f442d70 256 /* calling is from identify_secondary_cpu() ? */
f6e9456c 257 if (!c->cpu_index)
1f442d70
YL
258 return;
259
260 /*
261 * Mask B, Pentium, but not Pentium MMX
262 */
263 if (c->x86 == 5 &&
264 c->x86_mask >= 1 && c->x86_mask <= 4 &&
265 c->x86_model <= 3) {
266 /*
267 * Remember we have B step Pentia with bugs
268 */
269 WARN_ONCE(1, "WARNING: SMP operation may be unreliable"
270 "with B stepping processors.\n");
271 }
1f442d70
YL
272}
273
69f2366c
CB
274static int forcepae;
275static int __init forcepae_setup(char *__unused)
276{
277 forcepae = 1;
278 return 1;
279}
280__setup("forcepae", forcepae_setup);
281
148f9bb8 282static void intel_workarounds(struct cpuinfo_x86 *c)
1da177e4 283{
4052704d
YL
284#ifdef CONFIG_X86_F00F_BUG
285 /*
d4e1a0af 286 * All models of Pentium and Pentium with MMX technology CPUs
8bdbd962 287 * have the F0 0F bug, which lets nonprivileged users lock up the
4eefbe79 288 * system. Announce that the fault handler will be checking for it.
d4e1a0af 289 * The Quark is also family 5, but does not have the same bug.
4052704d 290 */
e2604b49 291 clear_cpu_bug(c, X86_BUG_F00F);
fa392794 292 if (c->x86 == 5 && c->x86_model < 9) {
4052704d
YL
293 static int f00f_workaround_enabled;
294
e2604b49 295 set_cpu_bug(c, X86_BUG_F00F);
4052704d 296 if (!f00f_workaround_enabled) {
1b74dde7 297 pr_notice("Intel Pentium with F0 0F bug - workaround enabled.\n");
4052704d
YL
298 f00f_workaround_enabled = 1;
299 }
300 }
301#endif
302
303 /*
304 * SEP CPUID bug: Pentium Pro reports SEP but doesn't have it until
305 * model 3 mask 3
306 */
307 if ((c->x86<<8 | c->x86_model<<4 | c->x86_mask) < 0x633)
308 clear_cpu_cap(c, X86_FEATURE_SEP);
309
69f2366c
CB
310 /*
311 * PAE CPUID issue: many Pentium M report no PAE but may have a
312 * functionally usable PAE implementation.
313 * Forcefully enable PAE if kernel parameter "forcepae" is present.
314 */
315 if (forcepae) {
1b74dde7 316 pr_warn("PAE forced!\n");
69f2366c
CB
317 set_cpu_cap(c, X86_FEATURE_PAE);
318 add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_NOW_UNRELIABLE);
319 }
320
4052704d 321 /*
f0133acc 322 * P4 Xeon erratum 037 workaround.
4052704d
YL
323 * Hardware prefetcher may cause stale data to be loaded into the cache.
324 */
1da177e4 325 if ((c->x86 == 15) && (c->x86_model == 1) && (c->x86_mask == 1)) {
0b131be8 326 if (msr_set_bit(MSR_IA32_MISC_ENABLE,
f0133acc 327 MSR_IA32_MISC_ENABLE_PREFETCH_DISABLE_BIT) > 0) {
c0a639ad 328 pr_info("CPU: C0 stepping P4 Xeon detected.\n");
f0133acc 329 pr_info("CPU: Disabling hardware prefetching (Erratum 037)\n");
1da177e4
LT
330 }
331 }
1da177e4 332
4052704d
YL
333 /*
334 * See if we have a good local APIC by checking for buggy Pentia,
335 * i.e. all B steppings and the C2 stepping of P54C when using their
336 * integrated APIC (see 11AP erratum in "Pentium Processor
337 * Specification Update").
338 */
93984fbd 339 if (boot_cpu_has(X86_FEATURE_APIC) && (c->x86<<8 | c->x86_model<<4) == 0x520 &&
4052704d 340 (c->x86_mask < 0x6 || c->x86_mask == 0xb))
9b13a93d 341 set_cpu_bug(c, X86_BUG_11AP);
185f3b9d 342
185f3b9d 343
4052704d 344#ifdef CONFIG_X86_INTEL_USERCOPY
185f3b9d 345 /*
4052704d 346 * Set up the preferred alignment for movsl bulk memory moves
185f3b9d 347 */
4052704d
YL
348 switch (c->x86) {
349 case 4: /* 486: untested */
350 break;
351 case 5: /* Old Pentia: untested */
352 break;
353 case 6: /* PII/PIII only like movsl with 8-byte alignment */
354 movsl_mask.mask = 7;
355 break;
356 case 15: /* P4 is OK down to 8-byte alignment */
357 movsl_mask.mask = 7;
358 break;
359 }
185f3b9d 360#endif
4052704d 361
1f442d70 362 intel_smp_check(c);
4052704d
YL
363}
364#else
148f9bb8 365static void intel_workarounds(struct cpuinfo_x86 *c)
4052704d
YL
366{
367}
185f3b9d
YL
368#endif
369
148f9bb8 370static void srat_detect_node(struct cpuinfo_x86 *c)
185f3b9d 371{
645a7919 372#ifdef CONFIG_NUMA
185f3b9d
YL
373 unsigned node;
374 int cpu = smp_processor_id();
185f3b9d
YL
375
376 /* Don't do the funky fallback heuristics the AMD version employs
377 for now. */
bbc9e2f4 378 node = numa_cpu_node(cpu);
50f2d7f6 379 if (node == NUMA_NO_NODE || !node_online(node)) {
d9c2d5ac
YL
380 /* reuse the value from init_cpu_to_node() */
381 node = cpu_to_node(cpu);
382 }
185f3b9d 383 numa_set_node(cpu, node);
185f3b9d
YL
384#endif
385}
386
3dd9d514
AK
387/*
388 * find out the number of processor cores on the die
389 */
148f9bb8 390static int intel_num_cpu_cores(struct cpuinfo_x86 *c)
3dd9d514 391{
f2ab4461 392 unsigned int eax, ebx, ecx, edx;
3dd9d514 393
8d415ee2 394 if (!IS_ENABLED(CONFIG_SMP) || c->cpuid_level < 4)
3dd9d514
AK
395 return 1;
396
f2ab4461
ZA
397 /* Intel has a non-standard dependency on %ecx for this CPUID level. */
398 cpuid_count(4, 0, &eax, &ebx, &ecx, &edx);
3dd9d514 399 if (eax & 0x1f)
8bdbd962 400 return (eax >> 26) + 1;
3dd9d514
AK
401 else
402 return 1;
403}
404
148f9bb8 405static void detect_vmx_virtcap(struct cpuinfo_x86 *c)
e38e05a8
SY
406{
407 /* Intel VMX MSR indicated features */
408#define X86_VMX_FEATURE_PROC_CTLS_TPR_SHADOW 0x00200000
409#define X86_VMX_FEATURE_PROC_CTLS_VNMI 0x00400000
410#define X86_VMX_FEATURE_PROC_CTLS_2ND_CTLS 0x80000000
411#define X86_VMX_FEATURE_PROC_CTLS2_VIRT_APIC 0x00000001
412#define X86_VMX_FEATURE_PROC_CTLS2_EPT 0x00000002
413#define X86_VMX_FEATURE_PROC_CTLS2_VPID 0x00000020
414
415 u32 vmx_msr_low, vmx_msr_high, msr_ctl, msr_ctl2;
416
417 clear_cpu_cap(c, X86_FEATURE_TPR_SHADOW);
418 clear_cpu_cap(c, X86_FEATURE_VNMI);
419 clear_cpu_cap(c, X86_FEATURE_FLEXPRIORITY);
420 clear_cpu_cap(c, X86_FEATURE_EPT);
421 clear_cpu_cap(c, X86_FEATURE_VPID);
422
423 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS, vmx_msr_low, vmx_msr_high);
424 msr_ctl = vmx_msr_high | vmx_msr_low;
425 if (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_TPR_SHADOW)
426 set_cpu_cap(c, X86_FEATURE_TPR_SHADOW);
427 if (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_VNMI)
428 set_cpu_cap(c, X86_FEATURE_VNMI);
429 if (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_2ND_CTLS) {
430 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
431 vmx_msr_low, vmx_msr_high);
432 msr_ctl2 = vmx_msr_high | vmx_msr_low;
433 if ((msr_ctl2 & X86_VMX_FEATURE_PROC_CTLS2_VIRT_APIC) &&
434 (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_TPR_SHADOW))
435 set_cpu_cap(c, X86_FEATURE_FLEXPRIORITY);
436 if (msr_ctl2 & X86_VMX_FEATURE_PROC_CTLS2_EPT)
437 set_cpu_cap(c, X86_FEATURE_EPT);
438 if (msr_ctl2 & X86_VMX_FEATURE_PROC_CTLS2_VPID)
439 set_cpu_cap(c, X86_FEATURE_VPID);
440 }
441}
442
b51ef52d
LA
443static void init_intel_energy_perf(struct cpuinfo_x86 *c)
444{
445 u64 epb;
446
447 /*
448 * Initialize MSR_IA32_ENERGY_PERF_BIAS if not already initialized.
449 * (x86_energy_perf_policy(8) is available to change it at run-time.)
450 */
451 if (!cpu_has(c, X86_FEATURE_EPB))
452 return;
453
454 rdmsrl(MSR_IA32_ENERGY_PERF_BIAS, epb);
455 if ((epb & 0xF) != ENERGY_PERF_BIAS_PERFORMANCE)
456 return;
457
458 pr_warn_once("ENERGY_PERF_BIAS: Set to 'normal', was 'performance'\n");
459 pr_warn_once("ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)\n");
460 epb = (epb & ~0xF) | ENERGY_PERF_BIAS_NORMAL;
461 wrmsrl(MSR_IA32_ENERGY_PERF_BIAS, epb);
462}
463
464static void intel_bsp_resume(struct cpuinfo_x86 *c)
465{
466 /*
467 * MSR_IA32_ENERGY_PERF_BIAS is lost across suspend/resume,
468 * so reinitialize it properly like during bootup:
469 */
470 init_intel_energy_perf(c);
471}
472
90218ac7
KH
473static void init_cpuid_fault(struct cpuinfo_x86 *c)
474{
475 u64 msr;
476
477 if (!rdmsrl_safe(MSR_PLATFORM_INFO, &msr)) {
478 if (msr & MSR_PLATFORM_INFO_CPUID_FAULT)
479 set_cpu_cap(c, X86_FEATURE_CPUID_FAULT);
480 }
481}
482
483static void init_intel_misc_features(struct cpuinfo_x86 *c)
484{
485 u64 msr;
486
487 if (rdmsrl_safe(MSR_MISC_FEATURES_ENABLES, &msr))
488 return;
489
e9ea1e7f
KH
490 /* Clear all MISC features */
491 this_cpu_write(msr_misc_features_shadow, 0);
492
493 /* Check features and update capabilities and shadow control bits */
90218ac7
KH
494 init_cpuid_fault(c);
495 probe_xeon_phi_r3mwait(c);
e9ea1e7f
KH
496
497 msr = this_cpu_read(msr_misc_features_shadow);
498 wrmsrl(MSR_MISC_FEATURES_ENABLES, msr);
90218ac7
KH
499}
500
148f9bb8 501static void init_intel(struct cpuinfo_x86 *c)
1da177e4
LT
502{
503 unsigned int l2 = 0;
1da177e4 504
2b16a235
AK
505 early_init_intel(c);
506
4052704d 507 intel_workarounds(c);
1da177e4 508
345077cd
SS
509 /*
510 * Detect the extended topology information if available. This
511 * will reinitialise the initial_apicid which will be used
512 * in init_intel_cacheinfo()
513 */
514 detect_extended_topology(c);
515
2a226155
PZ
516 if (!cpu_has(c, X86_FEATURE_XTOPOLOGY)) {
517 /*
518 * let's use the legacy cpuid vector 0x1 and 0x4 for topology
519 * detection.
520 */
521 c->x86_max_cores = intel_num_cpu_cores(c);
522#ifdef CONFIG_X86_32
523 detect_ht(c);
524#endif
525 }
526
1da177e4 527 l2 = init_intel_cacheinfo(c);
aece118e
BD
528
529 /* Detect legacy cache sizes if init_intel_cacheinfo did not */
530 if (l2 == 0) {
531 cpu_detect_cache_sizes(c);
532 l2 = c->x86_cache_size;
533 }
534
65eb6b43 535 if (c->cpuid_level > 9) {
0080e667
VP
536 unsigned eax = cpuid_eax(10);
537 /* Check for version and the number of counters */
538 if ((eax & 0xff) && (((eax>>8) & 0xff) > 1))
d0e95ebd 539 set_cpu_cap(c, X86_FEATURE_ARCH_PERFMON);
0080e667 540 }
1da177e4 541
054efb64 542 if (cpu_has(c, X86_FEATURE_XMM2))
4052704d 543 set_cpu_cap(c, X86_FEATURE_LFENCE_RDTSC);
362f924b
BP
544
545 if (boot_cpu_has(X86_FEATURE_DS)) {
4052704d
YL
546 unsigned int l1;
547 rdmsr(MSR_IA32_MISC_ENABLE, l1, l2);
548 if (!(l1 & (1<<11)))
549 set_cpu_cap(c, X86_FEATURE_BTS);
550 if (!(l1 & (1<<12)))
551 set_cpu_cap(c, X86_FEATURE_PEBS);
4052704d 552 }
1da177e4 553
906bf7fd 554 if (c->x86 == 6 && boot_cpu_has(X86_FEATURE_CLFLUSH) &&
40e2d7f9 555 (c->x86_model == 29 || c->x86_model == 46 || c->x86_model == 47))
9b13a93d 556 set_cpu_bug(c, X86_BUG_CLFLUSH_MONITOR);
e736ad54 557
08e237fa
PZ
558 if (c->x86 == 6 && boot_cpu_has(X86_FEATURE_MWAIT) &&
559 ((c->x86_model == INTEL_FAM6_ATOM_GOLDMONT)))
560 set_cpu_bug(c, X86_BUG_MONITOR);
561
4052704d
YL
562#ifdef CONFIG_X86_64
563 if (c->x86 == 15)
564 c->x86_cache_alignment = c->x86_clflush_size * 2;
565 if (c->x86 == 6)
566 set_cpu_cap(c, X86_FEATURE_REP_GOOD);
567#else
65eb6b43
PC
568 /*
569 * Names for the Pentium II/Celeron processors
570 * detectable only by also checking the cache size.
571 * Dixon is NOT a Celeron.
572 */
1da177e4 573 if (c->x86 == 6) {
4052704d
YL
574 char *p = NULL;
575
1da177e4
LT
576 switch (c->x86_model) {
577 case 5:
865be7a8
OZ
578 if (l2 == 0)
579 p = "Celeron (Covington)";
580 else if (l2 == 256)
581 p = "Mobile Pentium II (Dixon)";
1da177e4 582 break;
65eb6b43 583
1da177e4
LT
584 case 6:
585 if (l2 == 128)
586 p = "Celeron (Mendocino)";
587 else if (c->x86_mask == 0 || c->x86_mask == 5)
588 p = "Celeron-A";
589 break;
65eb6b43 590
1da177e4
LT
591 case 8:
592 if (l2 == 128)
593 p = "Celeron (Coppermine)";
594 break;
595 }
1da177e4 596
4052704d
YL
597 if (p)
598 strcpy(c->x86_model_id, p);
1da177e4 599 }
1da177e4 600
185f3b9d
YL
601 if (c->x86 == 15)
602 set_cpu_cap(c, X86_FEATURE_P4);
603 if (c->x86 == 6)
604 set_cpu_cap(c, X86_FEATURE_P3);
f4166c54 605#endif
185f3b9d 606
185f3b9d 607 /* Work around errata */
2759c328 608 srat_detect_node(c);
e38e05a8
SY
609
610 if (cpu_has(c, X86_FEATURE_VMX))
611 detect_vmx_virtcap(c);
abe48b10 612
b51ef52d 613 init_intel_energy_perf(c);
e16fd002 614
90218ac7 615 init_intel_misc_features(c);
42ed458a 616}
1da177e4 617
185f3b9d 618#ifdef CONFIG_X86_32
148f9bb8 619static unsigned int intel_size_cache(struct cpuinfo_x86 *c, unsigned int size)
1da177e4 620{
65eb6b43
PC
621 /*
622 * Intel PIII Tualatin. This comes in two flavours.
1da177e4
LT
623 * One has 256kb of cache, the other 512. We have no way
624 * to determine which, so we use a boottime override
625 * for the 512kb model, and assume 256 otherwise.
626 */
627 if ((c->x86 == 6) && (c->x86_model == 11) && (size == 0))
628 size = 256;
aece118e
BD
629
630 /*
631 * Intel Quark SoC X1000 contains a 4-way set associative
632 * 16K cache with a 16 byte cache line and 256 lines per tag
633 */
634 if ((c->x86 == 5) && (c->x86_model == 9))
635 size = 16;
1da177e4
LT
636 return size;
637}
185f3b9d 638#endif
1da177e4 639
e0ba94f1
AS
640#define TLB_INST_4K 0x01
641#define TLB_INST_4M 0x02
642#define TLB_INST_2M_4M 0x03
643
644#define TLB_INST_ALL 0x05
645#define TLB_INST_1G 0x06
646
647#define TLB_DATA_4K 0x11
648#define TLB_DATA_4M 0x12
649#define TLB_DATA_2M_4M 0x13
650#define TLB_DATA_4K_4M 0x14
651
652#define TLB_DATA_1G 0x16
653
654#define TLB_DATA0_4K 0x21
655#define TLB_DATA0_4M 0x22
656#define TLB_DATA0_2M_4M 0x23
657
658#define STLB_4K 0x41
dd360393 659#define STLB_4K_2M 0x42
e0ba94f1 660
148f9bb8 661static const struct _tlb_table intel_tlb_table[] = {
e0ba94f1
AS
662 { 0x01, TLB_INST_4K, 32, " TLB_INST 4 KByte pages, 4-way set associative" },
663 { 0x02, TLB_INST_4M, 2, " TLB_INST 4 MByte pages, full associative" },
664 { 0x03, TLB_DATA_4K, 64, " TLB_DATA 4 KByte pages, 4-way set associative" },
665 { 0x04, TLB_DATA_4M, 8, " TLB_DATA 4 MByte pages, 4-way set associative" },
666 { 0x05, TLB_DATA_4M, 32, " TLB_DATA 4 MByte pages, 4-way set associative" },
667 { 0x0b, TLB_INST_4M, 4, " TLB_INST 4 MByte pages, 4-way set associative" },
668 { 0x4f, TLB_INST_4K, 32, " TLB_INST 4 KByte pages */" },
669 { 0x50, TLB_INST_ALL, 64, " TLB_INST 4 KByte and 2-MByte or 4-MByte pages" },
670 { 0x51, TLB_INST_ALL, 128, " TLB_INST 4 KByte and 2-MByte or 4-MByte pages" },
671 { 0x52, TLB_INST_ALL, 256, " TLB_INST 4 KByte and 2-MByte or 4-MByte pages" },
672 { 0x55, TLB_INST_2M_4M, 7, " TLB_INST 2-MByte or 4-MByte pages, fully associative" },
673 { 0x56, TLB_DATA0_4M, 16, " TLB_DATA0 4 MByte pages, 4-way set associative" },
674 { 0x57, TLB_DATA0_4K, 16, " TLB_DATA0 4 KByte pages, 4-way associative" },
675 { 0x59, TLB_DATA0_4K, 16, " TLB_DATA0 4 KByte pages, fully associative" },
676 { 0x5a, TLB_DATA0_2M_4M, 32, " TLB_DATA0 2-MByte or 4 MByte pages, 4-way set associative" },
677 { 0x5b, TLB_DATA_4K_4M, 64, " TLB_DATA 4 KByte and 4 MByte pages" },
678 { 0x5c, TLB_DATA_4K_4M, 128, " TLB_DATA 4 KByte and 4 MByte pages" },
679 { 0x5d, TLB_DATA_4K_4M, 256, " TLB_DATA 4 KByte and 4 MByte pages" },
dd360393
KS
680 { 0x61, TLB_INST_4K, 48, " TLB_INST 4 KByte pages, full associative" },
681 { 0x63, TLB_DATA_1G, 4, " TLB_DATA 1 GByte pages, 4-way set associative" },
682 { 0x76, TLB_INST_2M_4M, 8, " TLB_INST 2-MByte or 4-MByte pages, fully associative" },
e0ba94f1
AS
683 { 0xb0, TLB_INST_4K, 128, " TLB_INST 4 KByte pages, 4-way set associative" },
684 { 0xb1, TLB_INST_2M_4M, 4, " TLB_INST 2M pages, 4-way, 8 entries or 4M pages, 4-way entries" },
685 { 0xb2, TLB_INST_4K, 64, " TLB_INST 4KByte pages, 4-way set associative" },
686 { 0xb3, TLB_DATA_4K, 128, " TLB_DATA 4 KByte pages, 4-way set associative" },
687 { 0xb4, TLB_DATA_4K, 256, " TLB_DATA 4 KByte pages, 4-way associative" },
a927792c
YG
688 { 0xb5, TLB_INST_4K, 64, " TLB_INST 4 KByte pages, 8-way set associative" },
689 { 0xb6, TLB_INST_4K, 128, " TLB_INST 4 KByte pages, 8-way set associative" },
e0ba94f1
AS
690 { 0xba, TLB_DATA_4K, 64, " TLB_DATA 4 KByte pages, 4-way associative" },
691 { 0xc0, TLB_DATA_4K_4M, 8, " TLB_DATA 4 KByte and 4 MByte pages, 4-way associative" },
dd360393
KS
692 { 0xc1, STLB_4K_2M, 1024, " STLB 4 KByte and 2 MByte pages, 8-way associative" },
693 { 0xc2, TLB_DATA_2M_4M, 16, " DTLB 2 MByte/4MByte pages, 4-way associative" },
e0ba94f1
AS
694 { 0xca, STLB_4K, 512, " STLB 4 KByte pages, 4-way associative" },
695 { 0x00, 0, 0 }
696};
697
148f9bb8 698static void intel_tlb_lookup(const unsigned char desc)
e0ba94f1
AS
699{
700 unsigned char k;
701 if (desc == 0)
702 return;
703
704 /* look up this descriptor in the table */
705 for (k = 0; intel_tlb_table[k].descriptor != desc && \
706 intel_tlb_table[k].descriptor != 0; k++)
707 ;
708
709 if (intel_tlb_table[k].tlb_type == 0)
710 return;
711
712 switch (intel_tlb_table[k].tlb_type) {
713 case STLB_4K:
714 if (tlb_lli_4k[ENTRIES] < intel_tlb_table[k].entries)
715 tlb_lli_4k[ENTRIES] = intel_tlb_table[k].entries;
716 if (tlb_lld_4k[ENTRIES] < intel_tlb_table[k].entries)
717 tlb_lld_4k[ENTRIES] = intel_tlb_table[k].entries;
718 break;
dd360393
KS
719 case STLB_4K_2M:
720 if (tlb_lli_4k[ENTRIES] < intel_tlb_table[k].entries)
721 tlb_lli_4k[ENTRIES] = intel_tlb_table[k].entries;
722 if (tlb_lld_4k[ENTRIES] < intel_tlb_table[k].entries)
723 tlb_lld_4k[ENTRIES] = intel_tlb_table[k].entries;
724 if (tlb_lli_2m[ENTRIES] < intel_tlb_table[k].entries)
725 tlb_lli_2m[ENTRIES] = intel_tlb_table[k].entries;
726 if (tlb_lld_2m[ENTRIES] < intel_tlb_table[k].entries)
727 tlb_lld_2m[ENTRIES] = intel_tlb_table[k].entries;
728 if (tlb_lli_4m[ENTRIES] < intel_tlb_table[k].entries)
729 tlb_lli_4m[ENTRIES] = intel_tlb_table[k].entries;
730 if (tlb_lld_4m[ENTRIES] < intel_tlb_table[k].entries)
731 tlb_lld_4m[ENTRIES] = intel_tlb_table[k].entries;
732 break;
e0ba94f1
AS
733 case TLB_INST_ALL:
734 if (tlb_lli_4k[ENTRIES] < intel_tlb_table[k].entries)
735 tlb_lli_4k[ENTRIES] = intel_tlb_table[k].entries;
736 if (tlb_lli_2m[ENTRIES] < intel_tlb_table[k].entries)
737 tlb_lli_2m[ENTRIES] = intel_tlb_table[k].entries;
738 if (tlb_lli_4m[ENTRIES] < intel_tlb_table[k].entries)
739 tlb_lli_4m[ENTRIES] = intel_tlb_table[k].entries;
740 break;
741 case TLB_INST_4K:
742 if (tlb_lli_4k[ENTRIES] < intel_tlb_table[k].entries)
743 tlb_lli_4k[ENTRIES] = intel_tlb_table[k].entries;
744 break;
745 case TLB_INST_4M:
746 if (tlb_lli_4m[ENTRIES] < intel_tlb_table[k].entries)
747 tlb_lli_4m[ENTRIES] = intel_tlb_table[k].entries;
748 break;
749 case TLB_INST_2M_4M:
750 if (tlb_lli_2m[ENTRIES] < intel_tlb_table[k].entries)
751 tlb_lli_2m[ENTRIES] = intel_tlb_table[k].entries;
752 if (tlb_lli_4m[ENTRIES] < intel_tlb_table[k].entries)
753 tlb_lli_4m[ENTRIES] = intel_tlb_table[k].entries;
754 break;
755 case TLB_DATA_4K:
756 case TLB_DATA0_4K:
757 if (tlb_lld_4k[ENTRIES] < intel_tlb_table[k].entries)
758 tlb_lld_4k[ENTRIES] = intel_tlb_table[k].entries;
759 break;
760 case TLB_DATA_4M:
761 case TLB_DATA0_4M:
762 if (tlb_lld_4m[ENTRIES] < intel_tlb_table[k].entries)
763 tlb_lld_4m[ENTRIES] = intel_tlb_table[k].entries;
764 break;
765 case TLB_DATA_2M_4M:
766 case TLB_DATA0_2M_4M:
767 if (tlb_lld_2m[ENTRIES] < intel_tlb_table[k].entries)
768 tlb_lld_2m[ENTRIES] = intel_tlb_table[k].entries;
769 if (tlb_lld_4m[ENTRIES] < intel_tlb_table[k].entries)
770 tlb_lld_4m[ENTRIES] = intel_tlb_table[k].entries;
771 break;
772 case TLB_DATA_4K_4M:
773 if (tlb_lld_4k[ENTRIES] < intel_tlb_table[k].entries)
774 tlb_lld_4k[ENTRIES] = intel_tlb_table[k].entries;
775 if (tlb_lld_4m[ENTRIES] < intel_tlb_table[k].entries)
776 tlb_lld_4m[ENTRIES] = intel_tlb_table[k].entries;
777 break;
dd360393
KS
778 case TLB_DATA_1G:
779 if (tlb_lld_1g[ENTRIES] < intel_tlb_table[k].entries)
780 tlb_lld_1g[ENTRIES] = intel_tlb_table[k].entries;
e0ba94f1
AS
781 break;
782 }
783}
784
148f9bb8 785static void intel_detect_tlb(struct cpuinfo_x86 *c)
e0ba94f1
AS
786{
787 int i, j, n;
788 unsigned int regs[4];
789 unsigned char *desc = (unsigned char *)regs;
5b556332
BP
790
791 if (c->cpuid_level < 2)
792 return;
793
e0ba94f1
AS
794 /* Number of times to iterate */
795 n = cpuid_eax(2) & 0xFF;
796
797 for (i = 0 ; i < n ; i++) {
798 cpuid(2, &regs[0], &regs[1], &regs[2], &regs[3]);
799
800 /* If bit 31 is set, this is an unknown format */
801 for (j = 0 ; j < 3 ; j++)
802 if (regs[j] & (1 << 31))
803 regs[j] = 0;
804
805 /* Byte 0 is level count, not a descriptor */
806 for (j = 1 ; j < 16 ; j++)
807 intel_tlb_lookup(desc[j]);
808 }
809}
810
148f9bb8 811static const struct cpu_dev intel_cpu_dev = {
1da177e4 812 .c_vendor = "Intel",
65eb6b43 813 .c_ident = { "GenuineIntel" },
185f3b9d 814#ifdef CONFIG_X86_32
09dc68d9
JB
815 .legacy_models = {
816 { .family = 4, .model_names =
65eb6b43
PC
817 {
818 [0] = "486 DX-25/33",
819 [1] = "486 DX-50",
820 [2] = "486 SX",
821 [3] = "486 DX/2",
822 [4] = "486 SL",
823 [5] = "486 SX/2",
824 [7] = "486 DX/2-WB",
825 [8] = "486 DX/4",
1da177e4
LT
826 [9] = "486 DX/4-WB"
827 }
828 },
09dc68d9 829 { .family = 5, .model_names =
65eb6b43
PC
830 {
831 [0] = "Pentium 60/66 A-step",
832 [1] = "Pentium 60/66",
1da177e4 833 [2] = "Pentium 75 - 200",
65eb6b43 834 [3] = "OverDrive PODP5V83",
1da177e4 835 [4] = "Pentium MMX",
65eb6b43 836 [7] = "Mobile Pentium 75 - 200",
aece118e
BD
837 [8] = "Mobile Pentium MMX",
838 [9] = "Quark SoC X1000",
1da177e4
LT
839 }
840 },
09dc68d9 841 { .family = 6, .model_names =
65eb6b43 842 {
1da177e4 843 [0] = "Pentium Pro A-step",
65eb6b43
PC
844 [1] = "Pentium Pro",
845 [3] = "Pentium II (Klamath)",
846 [4] = "Pentium II (Deschutes)",
847 [5] = "Pentium II (Deschutes)",
1da177e4 848 [6] = "Mobile Pentium II",
65eb6b43
PC
849 [7] = "Pentium III (Katmai)",
850 [8] = "Pentium III (Coppermine)",
1da177e4
LT
851 [10] = "Pentium III (Cascades)",
852 [11] = "Pentium III (Tualatin)",
853 }
854 },
09dc68d9 855 { .family = 15, .model_names =
1da177e4
LT
856 {
857 [0] = "Pentium 4 (Unknown)",
858 [1] = "Pentium 4 (Willamette)",
859 [2] = "Pentium 4 (Northwood)",
860 [4] = "Pentium 4 (Foster)",
861 [5] = "Pentium 4 (Foster)",
862 }
863 },
864 },
09dc68d9 865 .legacy_cache_size = intel_size_cache,
185f3b9d 866#endif
e0ba94f1 867 .c_detect_tlb = intel_detect_tlb,
03ae5768 868 .c_early_init = early_init_intel,
1da177e4 869 .c_init = init_intel,
b51ef52d 870 .c_bsp_resume = intel_bsp_resume,
10a434fc 871 .c_x86_vendor = X86_VENDOR_INTEL,
1da177e4
LT
872};
873
10a434fc 874cpu_dev_register(intel_cpu_dev);
1da177e4 875