1 #include <linux/init.h>
2 #include <linux/kernel.h>
4 #include <linux/string.h>
5 #include <linux/bitops.h>
7 #include <linux/thread_info.h>
8 #include <linux/module.h>
10 #include <asm/processor.h>
11 #include <asm/pgtable.h>
13 #include <asm/uaccess.h>
14 #include <asm/ptrace.h>
19 #include <asm/topology.h>
20 #include <asm/numa_64.h>
25 #ifdef CONFIG_X86_LOCAL_APIC
26 #include <asm/mpspec.h>
28 #include <mach_apic.h>
31 static void __cpuinit early_init_intel(struct cpuinfo_x86 *c)
33 if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
34 (c->x86 == 0x6 && c->x86_model >= 0x0e))
35 set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
38 set_cpu_cap(c, X86_FEATURE_SYSENTER32);
40 /* Netburst reports 64 bytes clflush size, but does IO in 128 bytes */
41 if (c->x86 == 15 && c->x86_cache_alignment == 64)
42 c->x86_cache_alignment = 128;
48 * Early probe support logic for ppro memory erratum #50
50 * This is called before we do cpu ident work
53 int __cpuinit ppro_with_ram_bug(void)
55 /* Uses data from early_cpu_detect now */
56 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
57 boot_cpu_data.x86 == 6 &&
58 boot_cpu_data.x86_model == 1 &&
59 boot_cpu_data.x86_mask < 8) {
60 printk(KERN_INFO "Pentium Pro with Errata#50 detected. Taking evasive action.\n");
66 #ifdef CONFIG_X86_F00F_BUG
67 static void __cpuinit trap_init_f00f_bug(void)
69 __set_fixmap(FIX_F00F_IDT, __pa(&idt_table), PAGE_KERNEL_RO);
72 * Update the IDT descriptor and reload the IDT so that
73 * it uses the read-only mapped virtual address.
75 idt_descr.address = fix_to_virt(FIX_F00F_IDT);
80 static void __cpuinit intel_workarounds(struct cpuinfo_x86 *c)
84 #ifdef CONFIG_X86_F00F_BUG
86 * All current models of Pentium and Pentium with MMX technology CPUs
87 * have the F0 0F bug, which lets nonprivileged users lock up the system.
88 * Note that the workaround only should be initialized once...
91 if (!paravirt_enabled() && c->x86 == 5) {
92 static int f00f_workaround_enabled;
95 if (!f00f_workaround_enabled) {
97 printk(KERN_NOTICE "Intel Pentium with F0 0F bug - workaround enabled.\n");
98 f00f_workaround_enabled = 1;
104 * SEP CPUID bug: Pentium Pro reports SEP but doesn't have it until
107 if ((c->x86<<8 | c->x86_model<<4 | c->x86_mask) < 0x633)
108 clear_cpu_cap(c, X86_FEATURE_SEP);
111 * P4 Xeon errata 037 workaround.
112 * Hardware prefetcher may cause stale data to be loaded into the cache.
114 if ((c->x86 == 15) && (c->x86_model == 1) && (c->x86_mask == 1)) {
115 rdmsr(MSR_IA32_MISC_ENABLE, lo, hi);
116 if ((lo & (1<<9)) == 0) {
117 printk (KERN_INFO "CPU: C0 stepping P4 Xeon detected.\n");
118 printk (KERN_INFO "CPU: Disabling hardware prefetching (Errata 037)\n");
119 lo |= (1<<9); /* Disable hw prefetching */
120 wrmsr (MSR_IA32_MISC_ENABLE, lo, hi);
125 * See if we have a good local APIC by checking for buggy Pentia,
126 * i.e. all B steppings and the C2 stepping of P54C when using their
127 * integrated APIC (see 11AP erratum in "Pentium Processor
128 * Specification Update").
130 if (cpu_has_apic && (c->x86<<8 | c->x86_model<<4) == 0x520 &&
131 (c->x86_mask < 0x6 || c->x86_mask == 0xb))
132 set_cpu_cap(c, X86_FEATURE_11AP);
135 #ifdef CONFIG_X86_INTEL_USERCOPY
137 * Set up the preferred alignment for movsl bulk memory moves
140 case 4: /* 486: untested */
142 case 5: /* Old Pentia: untested */
144 case 6: /* PII/PIII only like movsl with 8-byte alignment */
147 case 15: /* P4 is OK down to 8-byte alignment */
153 #ifdef CONFIG_X86_NUMAQ
158 static void __cpuinit intel_workarounds(struct cpuinfo_x86 *c)
163 static void __cpuinit srat_detect_node(void)
165 #if defined(CONFIG_NUMA) && defined(CONFIG_X86_64)
167 int cpu = smp_processor_id();
168 int apicid = hard_smp_processor_id();
170 /* Don't do the funky fallback heuristics the AMD version employs
172 node = apicid_to_node[apicid];
173 if (node == NUMA_NO_NODE || !node_online(node))
174 node = first_node(node_online_map);
175 numa_set_node(cpu, node);
177 printk(KERN_INFO "CPU %d/0x%x -> Node %d\n", cpu, apicid, node);
182 * find out the number of processor cores on the die
184 static int __cpuinit intel_num_cpu_cores(struct cpuinfo_x86 *c)
186 unsigned int eax, ebx, ecx, edx;
188 if (c->cpuid_level < 4)
191 /* Intel has a non-standard dependency on %ecx for this CPUID level. */
192 cpuid_count(4, 0, &eax, &ebx, &ecx, &edx);
194 return ((eax >> 26) + 1);
199 static void __cpuinit detect_vmx_virtcap(struct cpuinfo_x86 *c)
201 /* Intel VMX MSR indicated features */
202 #define X86_VMX_FEATURE_PROC_CTLS_TPR_SHADOW 0x00200000
203 #define X86_VMX_FEATURE_PROC_CTLS_VNMI 0x00400000
204 #define X86_VMX_FEATURE_PROC_CTLS_2ND_CTLS 0x80000000
205 #define X86_VMX_FEATURE_PROC_CTLS2_VIRT_APIC 0x00000001
206 #define X86_VMX_FEATURE_PROC_CTLS2_EPT 0x00000002
207 #define X86_VMX_FEATURE_PROC_CTLS2_VPID 0x00000020
209 u32 vmx_msr_low, vmx_msr_high, msr_ctl, msr_ctl2;
211 clear_cpu_cap(c, X86_FEATURE_TPR_SHADOW);
212 clear_cpu_cap(c, X86_FEATURE_VNMI);
213 clear_cpu_cap(c, X86_FEATURE_FLEXPRIORITY);
214 clear_cpu_cap(c, X86_FEATURE_EPT);
215 clear_cpu_cap(c, X86_FEATURE_VPID);
217 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS, vmx_msr_low, vmx_msr_high);
218 msr_ctl = vmx_msr_high | vmx_msr_low;
219 if (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_TPR_SHADOW)
220 set_cpu_cap(c, X86_FEATURE_TPR_SHADOW);
221 if (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_VNMI)
222 set_cpu_cap(c, X86_FEATURE_VNMI);
223 if (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_2ND_CTLS) {
224 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
225 vmx_msr_low, vmx_msr_high);
226 msr_ctl2 = vmx_msr_high | vmx_msr_low;
227 if ((msr_ctl2 & X86_VMX_FEATURE_PROC_CTLS2_VIRT_APIC) &&
228 (msr_ctl & X86_VMX_FEATURE_PROC_CTLS_TPR_SHADOW))
229 set_cpu_cap(c, X86_FEATURE_FLEXPRIORITY);
230 if (msr_ctl2 & X86_VMX_FEATURE_PROC_CTLS2_EPT)
231 set_cpu_cap(c, X86_FEATURE_EPT);
232 if (msr_ctl2 & X86_VMX_FEATURE_PROC_CTLS2_VPID)
233 set_cpu_cap(c, X86_FEATURE_VPID);
237 static void __cpuinit init_intel(struct cpuinfo_x86 *c)
243 intel_workarounds(c);
245 l2 = init_intel_cacheinfo(c);
246 if (c->cpuid_level > 9) {
247 unsigned eax = cpuid_eax(10);
248 /* Check for version and the number of counters */
249 if ((eax & 0xff) && (((eax>>8) & 0xff) > 1))
250 set_cpu_cap(c, X86_FEATURE_ARCH_PERFMON);
254 set_cpu_cap(c, X86_FEATURE_LFENCE_RDTSC);
257 rdmsr(MSR_IA32_MISC_ENABLE, l1, l2);
259 set_cpu_cap(c, X86_FEATURE_BTS);
261 set_cpu_cap(c, X86_FEATURE_PEBS);
267 c->x86_cache_alignment = c->x86_clflush_size * 2;
269 set_cpu_cap(c, X86_FEATURE_REP_GOOD);
272 * Names for the Pentium II/Celeron processors
273 * detectable only by also checking the cache size.
274 * Dixon is NOT a Celeron.
279 switch (c->x86_model) {
281 if (c->x86_mask == 0) {
283 p = "Celeron (Covington)";
285 p = "Mobile Pentium II (Dixon)";
291 p = "Celeron (Mendocino)";
292 else if (c->x86_mask == 0 || c->x86_mask == 5)
298 p = "Celeron (Coppermine)";
303 strcpy(c->x86_model_id, p);
307 set_cpu_cap(c, X86_FEATURE_P4);
309 set_cpu_cap(c, X86_FEATURE_P3);
312 ptrace_bts_init_intel(c);
316 detect_extended_topology(c);
317 if (!cpu_has(c, X86_FEATURE_XTOPOLOGY)) {
319 * let's use the legacy cpuid vector 0x1 and 0x4 for topology
322 c->x86_max_cores = intel_num_cpu_cores(c);
328 /* Work around errata */
331 if (cpu_has(c, X86_FEATURE_VMX))
332 detect_vmx_virtcap(c);
336 static unsigned int __cpuinit intel_size_cache(struct cpuinfo_x86 *c, unsigned int size)
339 * Intel PIII Tualatin. This comes in two flavours.
340 * One has 256kb of cache, the other 512. We have no way
341 * to determine which, so we use a boottime override
342 * for the 512kb model, and assume 256 otherwise.
344 if ((c->x86 == 6) && (c->x86_model == 11) && (size == 0))
350 static struct cpu_dev intel_cpu_dev __cpuinitdata = {
352 .c_ident = { "GenuineIntel" },
355 { .vendor = X86_VENDOR_INTEL, .family = 4, .model_names =
357 [0] = "486 DX-25/33",
368 { .vendor = X86_VENDOR_INTEL, .family = 5, .model_names =
370 [0] = "Pentium 60/66 A-step",
371 [1] = "Pentium 60/66",
372 [2] = "Pentium 75 - 200",
373 [3] = "OverDrive PODP5V83",
375 [7] = "Mobile Pentium 75 - 200",
376 [8] = "Mobile Pentium MMX"
379 { .vendor = X86_VENDOR_INTEL, .family = 6, .model_names =
381 [0] = "Pentium Pro A-step",
383 [3] = "Pentium II (Klamath)",
384 [4] = "Pentium II (Deschutes)",
385 [5] = "Pentium II (Deschutes)",
386 [6] = "Mobile Pentium II",
387 [7] = "Pentium III (Katmai)",
388 [8] = "Pentium III (Coppermine)",
389 [10] = "Pentium III (Cascades)",
390 [11] = "Pentium III (Tualatin)",
393 { .vendor = X86_VENDOR_INTEL, .family = 15, .model_names =
395 [0] = "Pentium 4 (Unknown)",
396 [1] = "Pentium 4 (Willamette)",
397 [2] = "Pentium 4 (Northwood)",
398 [4] = "Pentium 4 (Foster)",
399 [5] = "Pentium 4 (Foster)",
403 .c_size_cache = intel_size_cache,
405 .c_early_init = early_init_intel,
406 .c_init = init_intel,
407 .c_x86_vendor = X86_VENDOR_INTEL,
410 cpu_dev_register(intel_cpu_dev);