Linux 3.13-rc6
[deliverable/linux.git] / arch / x86 / kernel / cpu / intel.c
CommitLineData
1da177e4
LT
1#include <linux/init.h>
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>
1da177e4 8#include <linux/thread_info.h>
53e86b91 9#include <linux/module.h>
8bdbd962 10#include <linux/uaccess.h>
1da177e4
LT
11
12#include <asm/processor.h>
d72b1b4f 13#include <asm/pgtable.h>
1da177e4 14#include <asm/msr.h>
73bdb73f 15#include <asm/bugs.h>
1f442d70 16#include <asm/cpu.h>
1da177e4 17
185f3b9d 18#ifdef CONFIG_X86_64
8bdbd962 19#include <linux/topology.h>
185f3b9d
YL
20#endif
21
1da177e4
LT
22#include "cpu.h"
23
24#ifdef CONFIG_X86_LOCAL_APIC
25#include <asm/mpspec.h>
26#include <asm/apic.h>
1da177e4
LT
27#endif
28
148f9bb8 29static void early_init_intel(struct cpuinfo_x86 *c)
1da177e4 30{
161ec53c
FY
31 u64 misc_enable;
32
99fb4d34 33 /* Unmask CPUID levels if masked: */
30a0fb94 34 if (c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xd)) {
99fb4d34
IM
35 rdmsrl(MSR_IA32_MISC_ENABLE, misc_enable);
36
37 if (misc_enable & MSR_IA32_MISC_ENABLE_LIMIT_CPUID) {
38 misc_enable &= ~MSR_IA32_MISC_ENABLE_LIMIT_CPUID;
39 wrmsrl(MSR_IA32_MISC_ENABLE, misc_enable);
40 c->cpuid_level = cpuid_eax(0);
d900329e 41 get_cpu_cap(c);
99fb4d34 42 }
066941bd
PA
43 }
44
2b16a235
AK
45 if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
46 (c->x86 == 0x6 && c->x86_model >= 0x0e))
47 set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
185f3b9d 48
506ed6b5
AK
49 if (c->x86 >= 6 && !cpu_has(c, X86_FEATURE_IA64)) {
50 unsigned lower_word;
51
52 wrmsr(MSR_IA32_UCODE_REV, 0, 0);
53 /* Required by the SDM */
54 sync_core();
55 rdmsr(MSR_IA32_UCODE_REV, lower_word, c->microcode);
56 }
57
7a0fc404
PA
58 /*
59 * Atom erratum AAE44/AAF40/AAG38/AAH41:
60 *
61 * A race condition between speculative fetches and invalidating
62 * a large page. This is worked around in microcode, but we
63 * need the microcode to have already been loaded... so if it is
64 * not, recommend a BIOS update and disable large pages.
65 */
30963c0a
AK
66 if (c->x86 == 6 && c->x86_model == 0x1c && c->x86_mask <= 2 &&
67 c->microcode < 0x20e) {
68 printk(KERN_WARNING "Atom PSE erratum detected, BIOS microcode update recommended\n");
69 clear_cpu_cap(c, X86_FEATURE_PSE);
7a0fc404
PA
70 }
71
185f3b9d
YL
72#ifdef CONFIG_X86_64
73 set_cpu_cap(c, X86_FEATURE_SYSENTER32);
74#else
75 /* Netburst reports 64 bytes clflush size, but does IO in 128 bytes */
76 if (c->x86 == 15 && c->x86_cache_alignment == 64)
77 c->x86_cache_alignment = 128;
78#endif
40fb1715 79
13c6c532
JB
80 /* CPUID workaround for 0F33/0F34 CPU */
81 if (c->x86 == 0xF && c->x86_model == 0x3
82 && (c->x86_mask == 0x3 || c->x86_mask == 0x4))
83 c->x86_phys_bits = 36;
84
40fb1715
VP
85 /*
86 * c->x86_power is 8000_0007 edx. Bit 8 is TSC runs at constant rate
83ce4009
IM
87 * with P/T states and does not stop in deep C-states.
88 *
89 * It is also reliable across cores and sockets. (but not across
90 * cabinets - we turn it off in that case explicitly.)
40fb1715
VP
91 */
92 if (c->x86_power & (1 << 8)) {
93 set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
94 set_cpu_cap(c, X86_FEATURE_NONSTOP_TSC);
14be1f74
DS
95 if (!check_tsc_unstable())
96 sched_clock_stable = 1;
40fb1715
VP
97 }
98
c54fdbb2
FT
99 /* Penwell and Cloverview have the TSC which doesn't sleep on S3 */
100 if (c->x86 == 6) {
101 switch (c->x86_model) {
102 case 0x27: /* Penwell */
103 case 0x35: /* Cloverview */
104 set_cpu_cap(c, X86_FEATURE_NONSTOP_TSC_S3);
105 break;
106 default:
107 break;
108 }
109 }
110
75a04811
PA
111 /*
112 * There is a known erratum on Pentium III and Core Solo
113 * and Core Duo CPUs.
114 * " Page with PAT set to WC while associated MTRR is UC
115 * may consolidate to UC "
116 * Because of this erratum, it is better to stick with
117 * setting WC in MTRR rather than using PAT on these CPUs.
118 *
119 * Enable PAT WC only on P4, Core 2 or later CPUs.
120 */
121 if (c->x86 == 6 && c->x86_model < 15)
122 clear_cpu_cap(c, X86_FEATURE_PAT);
f8561296
VN
123
124#ifdef CONFIG_KMEMCHECK
125 /*
126 * P4s have a "fast strings" feature which causes single-
127 * stepping REP instructions to only generate a #DB on
128 * cache-line boundaries.
129 *
130 * Ingo Molnar reported a Pentium D (model 6) and a Xeon
131 * (model 2) with the same problem.
132 */
133 if (c->x86 == 15) {
f8561296
VN
134 rdmsrl(MSR_IA32_MISC_ENABLE, misc_enable);
135
136 if (misc_enable & MSR_IA32_MISC_ENABLE_FAST_STRING) {
137 printk(KERN_INFO "kmemcheck: Disabling fast string operations\n");
138
139 misc_enable &= ~MSR_IA32_MISC_ENABLE_FAST_STRING;
140 wrmsrl(MSR_IA32_MISC_ENABLE, misc_enable);
141 }
142 }
143#endif
161ec53c
FY
144
145 /*
146 * If fast string is not enabled in IA32_MISC_ENABLE for any reason,
147 * clear the fast string and enhanced fast string CPU capabilities.
148 */
149 if (c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xd)) {
150 rdmsrl(MSR_IA32_MISC_ENABLE, misc_enable);
151 if (!(misc_enable & MSR_IA32_MISC_ENABLE_FAST_STRING)) {
152 printk(KERN_INFO "Disabled fast string operations\n");
153 setup_clear_cpu_cap(X86_FEATURE_REP_GOOD);
154 setup_clear_cpu_cap(X86_FEATURE_ERMS);
155 }
156 }
1da177e4
LT
157}
158
185f3b9d 159#ifdef CONFIG_X86_32
1da177e4
LT
160/*
161 * Early probe support logic for ppro memory erratum #50
162 *
163 * This is called before we do cpu ident work
164 */
65eb6b43 165
148f9bb8 166int ppro_with_ram_bug(void)
1da177e4
LT
167{
168 /* Uses data from early_cpu_detect now */
169 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
170 boot_cpu_data.x86 == 6 &&
171 boot_cpu_data.x86_model == 1 &&
172 boot_cpu_data.x86_mask < 8) {
173 printk(KERN_INFO "Pentium Pro with Errata#50 detected. Taking evasive action.\n");
174 return 1;
175 }
176 return 0;
177}
65eb6b43 178
148f9bb8 179static void intel_smp_check(struct cpuinfo_x86 *c)
1f442d70 180{
1f442d70 181 /* calling is from identify_secondary_cpu() ? */
f6e9456c 182 if (!c->cpu_index)
1f442d70
YL
183 return;
184
185 /*
186 * Mask B, Pentium, but not Pentium MMX
187 */
188 if (c->x86 == 5 &&
189 c->x86_mask >= 1 && c->x86_mask <= 4 &&
190 c->x86_model <= 3) {
191 /*
192 * Remember we have B step Pentia with bugs
193 */
194 WARN_ONCE(1, "WARNING: SMP operation may be unreliable"
195 "with B stepping processors.\n");
196 }
1f442d70
YL
197}
198
148f9bb8 199static void intel_workarounds(struct cpuinfo_x86 *c)
1da177e4
LT
200{
201 unsigned long lo, hi;
202
4052704d
YL
203#ifdef CONFIG_X86_F00F_BUG
204 /*
205 * All current models of Pentium and Pentium with MMX technology CPUs
8bdbd962 206 * have the F0 0F bug, which lets nonprivileged users lock up the
4eefbe79 207 * system. Announce that the fault handler will be checking for it.
4052704d 208 */
e2604b49 209 clear_cpu_bug(c, X86_BUG_F00F);
4052704d
YL
210 if (!paravirt_enabled() && c->x86 == 5) {
211 static int f00f_workaround_enabled;
212
e2604b49 213 set_cpu_bug(c, X86_BUG_F00F);
4052704d 214 if (!f00f_workaround_enabled) {
4052704d
YL
215 printk(KERN_NOTICE "Intel Pentium with F0 0F bug - workaround enabled.\n");
216 f00f_workaround_enabled = 1;
217 }
218 }
219#endif
220
221 /*
222 * SEP CPUID bug: Pentium Pro reports SEP but doesn't have it until
223 * model 3 mask 3
224 */
225 if ((c->x86<<8 | c->x86_model<<4 | c->x86_mask) < 0x633)
226 clear_cpu_cap(c, X86_FEATURE_SEP);
227
228 /*
229 * P4 Xeon errata 037 workaround.
230 * Hardware prefetcher may cause stale data to be loaded into the cache.
231 */
1da177e4 232 if ((c->x86 == 15) && (c->x86_model == 1) && (c->x86_mask == 1)) {
65eb6b43 233 rdmsr(MSR_IA32_MISC_ENABLE, lo, hi);
ecab22aa 234 if ((lo & MSR_IA32_MISC_ENABLE_PREFETCH_DISABLE) == 0) {
1da177e4
LT
235 printk (KERN_INFO "CPU: C0 stepping P4 Xeon detected.\n");
236 printk (KERN_INFO "CPU: Disabling hardware prefetching (Errata 037)\n");
ecab22aa 237 lo |= MSR_IA32_MISC_ENABLE_PREFETCH_DISABLE;
8bdbd962 238 wrmsr(MSR_IA32_MISC_ENABLE, lo, hi);
1da177e4
LT
239 }
240 }
1da177e4 241
4052704d
YL
242 /*
243 * See if we have a good local APIC by checking for buggy Pentia,
244 * i.e. all B steppings and the C2 stepping of P54C when using their
245 * integrated APIC (see 11AP erratum in "Pentium Processor
246 * Specification Update").
247 */
248 if (cpu_has_apic && (c->x86<<8 | c->x86_model<<4) == 0x520 &&
249 (c->x86_mask < 0x6 || c->x86_mask == 0xb))
250 set_cpu_cap(c, X86_FEATURE_11AP);
185f3b9d 251
185f3b9d 252
4052704d 253#ifdef CONFIG_X86_INTEL_USERCOPY
185f3b9d 254 /*
4052704d 255 * Set up the preferred alignment for movsl bulk memory moves
185f3b9d 256 */
4052704d
YL
257 switch (c->x86) {
258 case 4: /* 486: untested */
259 break;
260 case 5: /* Old Pentia: untested */
261 break;
262 case 6: /* PII/PIII only like movsl with 8-byte alignment */
263 movsl_mask.mask = 7;
264 break;
265 case 15: /* P4 is OK down to 8-byte alignment */
266 movsl_mask.mask = 7;
267 break;
268 }
185f3b9d 269#endif
4052704d
YL
270
271#ifdef CONFIG_X86_NUMAQ
272 numaq_tsc_disable();
273#endif
1f442d70
YL
274
275 intel_smp_check(c);
4052704d
YL
276}
277#else
148f9bb8 278static void intel_workarounds(struct cpuinfo_x86 *c)
4052704d
YL
279{
280}
185f3b9d
YL
281#endif
282
148f9bb8 283static void srat_detect_node(struct cpuinfo_x86 *c)
185f3b9d 284{
645a7919 285#ifdef CONFIG_NUMA
185f3b9d
YL
286 unsigned node;
287 int cpu = smp_processor_id();
185f3b9d
YL
288
289 /* Don't do the funky fallback heuristics the AMD version employs
290 for now. */
bbc9e2f4 291 node = numa_cpu_node(cpu);
50f2d7f6 292 if (node == NUMA_NO_NODE || !node_online(node)) {
d9c2d5ac
YL
293 /* reuse the value from init_cpu_to_node() */
294 node = cpu_to_node(cpu);
295 }
185f3b9d 296 numa_set_node(cpu, node);
185f3b9d
YL
297#endif
298}
299
3dd9d514
AK
300/*
301 * find out the number of processor cores on the die
302 */
148f9bb8 303static int intel_num_cpu_cores(struct cpuinfo_x86 *c)
3dd9d514 304{
f2ab4461 305 unsigned int eax, ebx, ecx, edx;
3dd9d514
AK
306
307 if (c->cpuid_level < 4)
308 return 1;
309
f2ab4461
ZA
310 /* Intel has a non-standard dependency on %ecx for this CPUID level. */
311 cpuid_count(4, 0, &eax, &ebx, &ecx, &edx);
3dd9d514 312 if (eax & 0x1f)
8bdbd962 313 return (eax >> 26) + 1;
3dd9d514
AK
314 else
315 return 1;
316}
317
148f9bb8 318static void detect_vmx_virtcap(struct cpuinfo_x86 *c)
e38e05a8
SY
319{
320 /* Intel VMX MSR indicated features */
321#define X86_VMX_FEATURE_PROC_CTLS_TPR_SHADOW 0x00200000
322#define X86_VMX_FEATURE_PROC_CTLS_VNMI 0x00400000
323#define X86_VMX_FEATURE_PROC_CTLS_2ND_CTLS 0x80000000
324#define X86_VMX_FEATURE_PROC_CTLS2_VIRT_APIC 0x00000001
325#define X86_VMX_FEATURE_PROC_CTLS2_EPT 0x00000002
326#define X86_VMX_FEATURE_PROC_CTLS2_VPID 0x00000020
327
328 u32 vmx_msr_low, vmx_msr_high, msr_ctl, msr_ctl2;
329
330 clear_cpu_cap(c, X86_FEATURE_TPR_SHADOW);
331 clear_cpu_cap(c, X86_FEATURE_VNMI);
332 clear_cpu_cap(c, X86_FEATURE_FLEXPRIORITY);
333 clear_cpu_cap(c, X86_FEATURE_EPT);
334 clear_cpu_cap(c, X86_FEATURE_VPID);
335
336 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS, vmx_msr_low, vmx_msr_high);
337 msr_ctl = vmx_msr_high | vmx_msr_low;
338 if (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_TPR_SHADOW)
339 set_cpu_cap(c, X86_FEATURE_TPR_SHADOW);
340 if (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_VNMI)
341 set_cpu_cap(c, X86_FEATURE_VNMI);
342 if (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_2ND_CTLS) {
343 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
344 vmx_msr_low, vmx_msr_high);
345 msr_ctl2 = vmx_msr_high | vmx_msr_low;
346 if ((msr_ctl2 & X86_VMX_FEATURE_PROC_CTLS2_VIRT_APIC) &&
347 (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_TPR_SHADOW))
348 set_cpu_cap(c, X86_FEATURE_FLEXPRIORITY);
349 if (msr_ctl2 & X86_VMX_FEATURE_PROC_CTLS2_EPT)
350 set_cpu_cap(c, X86_FEATURE_EPT);
351 if (msr_ctl2 & X86_VMX_FEATURE_PROC_CTLS2_VPID)
352 set_cpu_cap(c, X86_FEATURE_VPID);
353 }
354}
355
148f9bb8 356static void init_intel(struct cpuinfo_x86 *c)
1da177e4
LT
357{
358 unsigned int l2 = 0;
1da177e4 359
2b16a235
AK
360 early_init_intel(c);
361
4052704d 362 intel_workarounds(c);
1da177e4 363
345077cd
SS
364 /*
365 * Detect the extended topology information if available. This
366 * will reinitialise the initial_apicid which will be used
367 * in init_intel_cacheinfo()
368 */
369 detect_extended_topology(c);
370
1da177e4 371 l2 = init_intel_cacheinfo(c);
65eb6b43 372 if (c->cpuid_level > 9) {
0080e667
VP
373 unsigned eax = cpuid_eax(10);
374 /* Check for version and the number of counters */
375 if ((eax & 0xff) && (((eax>>8) & 0xff) > 1))
d0e95ebd 376 set_cpu_cap(c, X86_FEATURE_ARCH_PERFMON);
0080e667 377 }
1da177e4 378
4052704d
YL
379 if (cpu_has_xmm2)
380 set_cpu_cap(c, X86_FEATURE_LFENCE_RDTSC);
381 if (cpu_has_ds) {
382 unsigned int l1;
383 rdmsr(MSR_IA32_MISC_ENABLE, l1, l2);
384 if (!(l1 & (1<<11)))
385 set_cpu_cap(c, X86_FEATURE_BTS);
386 if (!(l1 & (1<<12)))
387 set_cpu_cap(c, X86_FEATURE_PEBS);
4052704d 388 }
1da177e4 389
40e2d7f9
LB
390 if (c->x86 == 6 && cpu_has_clflush &&
391 (c->x86_model == 29 || c->x86_model == 46 || c->x86_model == 47))
e736ad54
PV
392 set_cpu_cap(c, X86_FEATURE_CLFLUSH_MONITOR);
393
4052704d
YL
394#ifdef CONFIG_X86_64
395 if (c->x86 == 15)
396 c->x86_cache_alignment = c->x86_clflush_size * 2;
397 if (c->x86 == 6)
398 set_cpu_cap(c, X86_FEATURE_REP_GOOD);
399#else
65eb6b43
PC
400 /*
401 * Names for the Pentium II/Celeron processors
402 * detectable only by also checking the cache size.
403 * Dixon is NOT a Celeron.
404 */
1da177e4 405 if (c->x86 == 6) {
4052704d
YL
406 char *p = NULL;
407
1da177e4
LT
408 switch (c->x86_model) {
409 case 5:
865be7a8
OZ
410 if (l2 == 0)
411 p = "Celeron (Covington)";
412 else if (l2 == 256)
413 p = "Mobile Pentium II (Dixon)";
1da177e4 414 break;
65eb6b43 415
1da177e4
LT
416 case 6:
417 if (l2 == 128)
418 p = "Celeron (Mendocino)";
419 else if (c->x86_mask == 0 || c->x86_mask == 5)
420 p = "Celeron-A";
421 break;
65eb6b43 422
1da177e4
LT
423 case 8:
424 if (l2 == 128)
425 p = "Celeron (Coppermine)";
426 break;
427 }
1da177e4 428
4052704d
YL
429 if (p)
430 strcpy(c->x86_model_id, p);
1da177e4 431 }
1da177e4 432
185f3b9d
YL
433 if (c->x86 == 15)
434 set_cpu_cap(c, X86_FEATURE_P4);
435 if (c->x86 == 6)
436 set_cpu_cap(c, X86_FEATURE_P3);
f4166c54 437#endif
185f3b9d 438
185f3b9d
YL
439 if (!cpu_has(c, X86_FEATURE_XTOPOLOGY)) {
440 /*
441 * let's use the legacy cpuid vector 0x1 and 0x4 for topology
442 * detection.
443 */
444 c->x86_max_cores = intel_num_cpu_cores(c);
445#ifdef CONFIG_X86_32
446 detect_ht(c);
447#endif
448 }
449
450 /* Work around errata */
2759c328 451 srat_detect_node(c);
e38e05a8
SY
452
453 if (cpu_has(c, X86_FEATURE_VMX))
454 detect_vmx_virtcap(c);
abe48b10
LB
455
456 /*
457 * Initialize MSR_IA32_ENERGY_PERF_BIAS if BIOS did not.
458 * x86_energy_perf_policy(8) is available to change it at run-time
459 */
460 if (cpu_has(c, X86_FEATURE_EPB)) {
461 u64 epb;
462
463 rdmsrl(MSR_IA32_ENERGY_PERF_BIAS, epb);
17edf2d7
LB
464 if ((epb & 0xF) == ENERGY_PERF_BIAS_PERFORMANCE) {
465 printk_once(KERN_WARNING "ENERGY_PERF_BIAS:"
466 " Set to 'normal', was 'performance'\n"
467 "ENERGY_PERF_BIAS: View and update with"
468 " x86_energy_perf_policy(8)\n");
abe48b10
LB
469 epb = (epb & ~0xF) | ENERGY_PERF_BIAS_NORMAL;
470 wrmsrl(MSR_IA32_ENERGY_PERF_BIAS, epb);
471 }
472 }
42ed458a 473}
1da177e4 474
185f3b9d 475#ifdef CONFIG_X86_32
148f9bb8 476static unsigned int intel_size_cache(struct cpuinfo_x86 *c, unsigned int size)
1da177e4 477{
65eb6b43
PC
478 /*
479 * Intel PIII Tualatin. This comes in two flavours.
1da177e4
LT
480 * One has 256kb of cache, the other 512. We have no way
481 * to determine which, so we use a boottime override
482 * for the 512kb model, and assume 256 otherwise.
483 */
484 if ((c->x86 == 6) && (c->x86_model == 11) && (size == 0))
485 size = 256;
486 return size;
487}
185f3b9d 488#endif
1da177e4 489
e0ba94f1
AS
490#define TLB_INST_4K 0x01
491#define TLB_INST_4M 0x02
492#define TLB_INST_2M_4M 0x03
493
494#define TLB_INST_ALL 0x05
495#define TLB_INST_1G 0x06
496
497#define TLB_DATA_4K 0x11
498#define TLB_DATA_4M 0x12
499#define TLB_DATA_2M_4M 0x13
500#define TLB_DATA_4K_4M 0x14
501
502#define TLB_DATA_1G 0x16
503
504#define TLB_DATA0_4K 0x21
505#define TLB_DATA0_4M 0x22
506#define TLB_DATA0_2M_4M 0x23
507
508#define STLB_4K 0x41
509
148f9bb8 510static const struct _tlb_table intel_tlb_table[] = {
e0ba94f1
AS
511 { 0x01, TLB_INST_4K, 32, " TLB_INST 4 KByte pages, 4-way set associative" },
512 { 0x02, TLB_INST_4M, 2, " TLB_INST 4 MByte pages, full associative" },
513 { 0x03, TLB_DATA_4K, 64, " TLB_DATA 4 KByte pages, 4-way set associative" },
514 { 0x04, TLB_DATA_4M, 8, " TLB_DATA 4 MByte pages, 4-way set associative" },
515 { 0x05, TLB_DATA_4M, 32, " TLB_DATA 4 MByte pages, 4-way set associative" },
516 { 0x0b, TLB_INST_4M, 4, " TLB_INST 4 MByte pages, 4-way set associative" },
517 { 0x4f, TLB_INST_4K, 32, " TLB_INST 4 KByte pages */" },
518 { 0x50, TLB_INST_ALL, 64, " TLB_INST 4 KByte and 2-MByte or 4-MByte pages" },
519 { 0x51, TLB_INST_ALL, 128, " TLB_INST 4 KByte and 2-MByte or 4-MByte pages" },
520 { 0x52, TLB_INST_ALL, 256, " TLB_INST 4 KByte and 2-MByte or 4-MByte pages" },
521 { 0x55, TLB_INST_2M_4M, 7, " TLB_INST 2-MByte or 4-MByte pages, fully associative" },
522 { 0x56, TLB_DATA0_4M, 16, " TLB_DATA0 4 MByte pages, 4-way set associative" },
523 { 0x57, TLB_DATA0_4K, 16, " TLB_DATA0 4 KByte pages, 4-way associative" },
524 { 0x59, TLB_DATA0_4K, 16, " TLB_DATA0 4 KByte pages, fully associative" },
525 { 0x5a, TLB_DATA0_2M_4M, 32, " TLB_DATA0 2-MByte or 4 MByte pages, 4-way set associative" },
526 { 0x5b, TLB_DATA_4K_4M, 64, " TLB_DATA 4 KByte and 4 MByte pages" },
527 { 0x5c, TLB_DATA_4K_4M, 128, " TLB_DATA 4 KByte and 4 MByte pages" },
528 { 0x5d, TLB_DATA_4K_4M, 256, " TLB_DATA 4 KByte and 4 MByte pages" },
529 { 0xb0, TLB_INST_4K, 128, " TLB_INST 4 KByte pages, 4-way set associative" },
530 { 0xb1, TLB_INST_2M_4M, 4, " TLB_INST 2M pages, 4-way, 8 entries or 4M pages, 4-way entries" },
531 { 0xb2, TLB_INST_4K, 64, " TLB_INST 4KByte pages, 4-way set associative" },
532 { 0xb3, TLB_DATA_4K, 128, " TLB_DATA 4 KByte pages, 4-way set associative" },
533 { 0xb4, TLB_DATA_4K, 256, " TLB_DATA 4 KByte pages, 4-way associative" },
534 { 0xba, TLB_DATA_4K, 64, " TLB_DATA 4 KByte pages, 4-way associative" },
535 { 0xc0, TLB_DATA_4K_4M, 8, " TLB_DATA 4 KByte and 4 MByte pages, 4-way associative" },
536 { 0xca, STLB_4K, 512, " STLB 4 KByte pages, 4-way associative" },
537 { 0x00, 0, 0 }
538};
539
148f9bb8 540static void intel_tlb_lookup(const unsigned char desc)
e0ba94f1
AS
541{
542 unsigned char k;
543 if (desc == 0)
544 return;
545
546 /* look up this descriptor in the table */
547 for (k = 0; intel_tlb_table[k].descriptor != desc && \
548 intel_tlb_table[k].descriptor != 0; k++)
549 ;
550
551 if (intel_tlb_table[k].tlb_type == 0)
552 return;
553
554 switch (intel_tlb_table[k].tlb_type) {
555 case STLB_4K:
556 if (tlb_lli_4k[ENTRIES] < intel_tlb_table[k].entries)
557 tlb_lli_4k[ENTRIES] = intel_tlb_table[k].entries;
558 if (tlb_lld_4k[ENTRIES] < intel_tlb_table[k].entries)
559 tlb_lld_4k[ENTRIES] = intel_tlb_table[k].entries;
560 break;
561 case TLB_INST_ALL:
562 if (tlb_lli_4k[ENTRIES] < intel_tlb_table[k].entries)
563 tlb_lli_4k[ENTRIES] = intel_tlb_table[k].entries;
564 if (tlb_lli_2m[ENTRIES] < intel_tlb_table[k].entries)
565 tlb_lli_2m[ENTRIES] = intel_tlb_table[k].entries;
566 if (tlb_lli_4m[ENTRIES] < intel_tlb_table[k].entries)
567 tlb_lli_4m[ENTRIES] = intel_tlb_table[k].entries;
568 break;
569 case TLB_INST_4K:
570 if (tlb_lli_4k[ENTRIES] < intel_tlb_table[k].entries)
571 tlb_lli_4k[ENTRIES] = intel_tlb_table[k].entries;
572 break;
573 case TLB_INST_4M:
574 if (tlb_lli_4m[ENTRIES] < intel_tlb_table[k].entries)
575 tlb_lli_4m[ENTRIES] = intel_tlb_table[k].entries;
576 break;
577 case TLB_INST_2M_4M:
578 if (tlb_lli_2m[ENTRIES] < intel_tlb_table[k].entries)
579 tlb_lli_2m[ENTRIES] = intel_tlb_table[k].entries;
580 if (tlb_lli_4m[ENTRIES] < intel_tlb_table[k].entries)
581 tlb_lli_4m[ENTRIES] = intel_tlb_table[k].entries;
582 break;
583 case TLB_DATA_4K:
584 case TLB_DATA0_4K:
585 if (tlb_lld_4k[ENTRIES] < intel_tlb_table[k].entries)
586 tlb_lld_4k[ENTRIES] = intel_tlb_table[k].entries;
587 break;
588 case TLB_DATA_4M:
589 case TLB_DATA0_4M:
590 if (tlb_lld_4m[ENTRIES] < intel_tlb_table[k].entries)
591 tlb_lld_4m[ENTRIES] = intel_tlb_table[k].entries;
592 break;
593 case TLB_DATA_2M_4M:
594 case TLB_DATA0_2M_4M:
595 if (tlb_lld_2m[ENTRIES] < intel_tlb_table[k].entries)
596 tlb_lld_2m[ENTRIES] = intel_tlb_table[k].entries;
597 if (tlb_lld_4m[ENTRIES] < intel_tlb_table[k].entries)
598 tlb_lld_4m[ENTRIES] = intel_tlb_table[k].entries;
599 break;
600 case TLB_DATA_4K_4M:
601 if (tlb_lld_4k[ENTRIES] < intel_tlb_table[k].entries)
602 tlb_lld_4k[ENTRIES] = intel_tlb_table[k].entries;
603 if (tlb_lld_4m[ENTRIES] < intel_tlb_table[k].entries)
604 tlb_lld_4m[ENTRIES] = intel_tlb_table[k].entries;
605 break;
606 }
607}
608
148f9bb8 609static void intel_tlb_flushall_shift_set(struct cpuinfo_x86 *c)
c4211f42 610{
c4211f42
AS
611 switch ((c->x86 << 8) + c->x86_model) {
612 case 0x60f: /* original 65 nm celeron/pentium/core2/xeon, "Merom"/"Conroe" */
613 case 0x616: /* single-core 65 nm celeron/core2solo "Merom-L"/"Conroe-L" */
614 case 0x617: /* current 45 nm celeron/core2/xeon "Penryn"/"Wolfdale" */
615 case 0x61d: /* six-core 45 nm xeon "Dunnington" */
616 tlb_flushall_shift = -1;
617 break;
618 case 0x61a: /* 45 nm nehalem, "Bloomfield" */
619 case 0x61e: /* 45 nm nehalem, "Lynnfield" */
620 case 0x625: /* 32 nm nehalem, "Clarkdale" */
621 case 0x62c: /* 32 nm nehalem, "Gulftown" */
622 case 0x62e: /* 45 nm nehalem-ex, "Beckton" */
623 case 0x62f: /* 32 nm Xeon E7 */
624 tlb_flushall_shift = 6;
625 break;
626 case 0x62a: /* SandyBridge */
627 case 0x62d: /* SandyBridge, "Romely-EP" */
628 tlb_flushall_shift = 5;
629 break;
630 case 0x63a: /* Ivybridge */
631 tlb_flushall_shift = 1;
632 break;
633 default:
634 tlb_flushall_shift = 6;
635 }
636}
637
148f9bb8 638static void intel_detect_tlb(struct cpuinfo_x86 *c)
e0ba94f1
AS
639{
640 int i, j, n;
641 unsigned int regs[4];
642 unsigned char *desc = (unsigned char *)regs;
5b556332
BP
643
644 if (c->cpuid_level < 2)
645 return;
646
e0ba94f1
AS
647 /* Number of times to iterate */
648 n = cpuid_eax(2) & 0xFF;
649
650 for (i = 0 ; i < n ; i++) {
651 cpuid(2, &regs[0], &regs[1], &regs[2], &regs[3]);
652
653 /* If bit 31 is set, this is an unknown format */
654 for (j = 0 ; j < 3 ; j++)
655 if (regs[j] & (1 << 31))
656 regs[j] = 0;
657
658 /* Byte 0 is level count, not a descriptor */
659 for (j = 1 ; j < 16 ; j++)
660 intel_tlb_lookup(desc[j]);
661 }
c4211f42 662 intel_tlb_flushall_shift_set(c);
e0ba94f1
AS
663}
664
148f9bb8 665static const struct cpu_dev intel_cpu_dev = {
1da177e4 666 .c_vendor = "Intel",
65eb6b43 667 .c_ident = { "GenuineIntel" },
185f3b9d 668#ifdef CONFIG_X86_32
09dc68d9
JB
669 .legacy_models = {
670 { .family = 4, .model_names =
65eb6b43
PC
671 {
672 [0] = "486 DX-25/33",
673 [1] = "486 DX-50",
674 [2] = "486 SX",
675 [3] = "486 DX/2",
676 [4] = "486 SL",
677 [5] = "486 SX/2",
678 [7] = "486 DX/2-WB",
679 [8] = "486 DX/4",
1da177e4
LT
680 [9] = "486 DX/4-WB"
681 }
682 },
09dc68d9 683 { .family = 5, .model_names =
65eb6b43
PC
684 {
685 [0] = "Pentium 60/66 A-step",
686 [1] = "Pentium 60/66",
1da177e4 687 [2] = "Pentium 75 - 200",
65eb6b43 688 [3] = "OverDrive PODP5V83",
1da177e4 689 [4] = "Pentium MMX",
65eb6b43 690 [7] = "Mobile Pentium 75 - 200",
1da177e4
LT
691 [8] = "Mobile Pentium MMX"
692 }
693 },
09dc68d9 694 { .family = 6, .model_names =
65eb6b43 695 {
1da177e4 696 [0] = "Pentium Pro A-step",
65eb6b43
PC
697 [1] = "Pentium Pro",
698 [3] = "Pentium II (Klamath)",
699 [4] = "Pentium II (Deschutes)",
700 [5] = "Pentium II (Deschutes)",
1da177e4 701 [6] = "Mobile Pentium II",
65eb6b43
PC
702 [7] = "Pentium III (Katmai)",
703 [8] = "Pentium III (Coppermine)",
1da177e4
LT
704 [10] = "Pentium III (Cascades)",
705 [11] = "Pentium III (Tualatin)",
706 }
707 },
09dc68d9 708 { .family = 15, .model_names =
1da177e4
LT
709 {
710 [0] = "Pentium 4 (Unknown)",
711 [1] = "Pentium 4 (Willamette)",
712 [2] = "Pentium 4 (Northwood)",
713 [4] = "Pentium 4 (Foster)",
714 [5] = "Pentium 4 (Foster)",
715 }
716 },
717 },
09dc68d9 718 .legacy_cache_size = intel_size_cache,
185f3b9d 719#endif
e0ba94f1 720 .c_detect_tlb = intel_detect_tlb,
03ae5768 721 .c_early_init = early_init_intel,
1da177e4 722 .c_init = init_intel,
10a434fc 723 .c_x86_vendor = X86_VENDOR_INTEL,
1da177e4
LT
724};
725
10a434fc 726cpu_dev_register(intel_cpu_dev);
1da177e4 727
This page took 0.704736 seconds and 5 git commands to generate.