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>
17 #ifdef CONFIG_X86_LOCAL_APIC
18 #include <asm/mpspec.h>
20 #include <mach_apic.h>
23 #ifdef CONFIG_X86_INTEL_USERCOPY
25 * Alignment at which movsl is preferred for bulk memory copies.
27 struct movsl_mask movsl_mask __read_mostly;
30 void __cpuinit early_intel_workaround(struct cpuinfo_x86 *c)
32 if (c->x86_vendor != X86_VENDOR_INTEL)
34 /* Netburst reports 64 bytes clflush size, but does IO in 128 bytes */
35 if (c->x86 == 15 && c->x86_cache_alignment == 64)
36 c->x86_cache_alignment = 128;
40 * Early probe support logic for ppro memory erratum #50
42 * This is called before we do cpu ident work
45 int __cpuinit ppro_with_ram_bug(void)
47 /* Uses data from early_cpu_detect now */
48 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
49 boot_cpu_data.x86 == 6 &&
50 boot_cpu_data.x86_model == 1 &&
51 boot_cpu_data.x86_mask < 8) {
52 printk(KERN_INFO "Pentium Pro with Errata#50 detected. Taking evasive action.\n");
60 * P4 Xeon errata 037 workaround.
61 * Hardware prefetcher may cause stale data to be loaded into the cache.
63 static void __cpuinit Intel_errata_workarounds(struct cpuinfo_x86 *c)
67 if ((c->x86 == 15) && (c->x86_model == 1) && (c->x86_mask == 1)) {
68 rdmsr (MSR_IA32_MISC_ENABLE, lo, hi);
69 if ((lo & (1<<9)) == 0) {
70 printk (KERN_INFO "CPU: C0 stepping P4 Xeon detected.\n");
71 printk (KERN_INFO "CPU: Disabling hardware prefetching (Errata 037)\n");
72 lo |= (1<<9); /* Disable hw prefetching */
73 wrmsr (MSR_IA32_MISC_ENABLE, lo, hi);
80 * find out the number of processor cores on the die
82 static int __cpuinit num_cpu_cores(struct cpuinfo_x86 *c)
84 unsigned int eax, ebx, ecx, edx;
86 if (c->cpuid_level < 4)
89 /* Intel has a non-standard dependency on %ecx for this CPUID level. */
90 cpuid_count(4, 0, &eax, &ebx, &ecx, &edx);
92 return ((eax >> 26) + 1);
97 #ifdef CONFIG_X86_F00F_BUG
98 static void __cpuinit trap_init_f00f_bug(void)
100 __set_fixmap(FIX_F00F_IDT, __pa(&idt_table), PAGE_KERNEL_RO);
103 * Update the IDT descriptor and reload the IDT so that
104 * it uses the read-only mapped virtual address.
106 idt_descr.address = fix_to_virt(FIX_F00F_IDT);
107 load_idt(&idt_descr);
111 static void __cpuinit init_intel(struct cpuinfo_x86 *c)
116 #ifdef CONFIG_X86_F00F_BUG
118 * All current models of Pentium and Pentium with MMX technology CPUs
119 * have the F0 0F bug, which lets nonprivileged users lock up the system.
120 * Note that the workaround only should be initialized once...
123 if (!paravirt_enabled() && c->x86 == 5) {
124 static int f00f_workaround_enabled = 0;
127 if ( !f00f_workaround_enabled ) {
128 trap_init_f00f_bug();
129 printk(KERN_NOTICE "Intel Pentium with F0 0F bug - workaround enabled.\n");
130 f00f_workaround_enabled = 1;
135 select_idle_routine(c);
136 l2 = init_intel_cacheinfo(c);
137 if (c->cpuid_level > 9 ) {
138 unsigned eax = cpuid_eax(10);
139 /* Check for version and the number of counters */
140 if ((eax & 0xff) && (((eax>>8) & 0xff) > 1))
141 set_bit(X86_FEATURE_ARCH_PERFMON, c->x86_capability);
144 /* SEP CPUID bug: Pentium Pro reports SEP but doesn't have it until model 3 mask 3 */
145 if ((c->x86<<8 | c->x86_model<<4 | c->x86_mask) < 0x633)
146 clear_bit(X86_FEATURE_SEP, c->x86_capability);
148 /* Names for the Pentium II/Celeron processors
149 detectable only by also checking the cache size.
150 Dixon is NOT a Celeron. */
152 switch (c->x86_model) {
154 if (c->x86_mask == 0) {
156 p = "Celeron (Covington)";
158 p = "Mobile Pentium II (Dixon)";
164 p = "Celeron (Mendocino)";
165 else if (c->x86_mask == 0 || c->x86_mask == 5)
171 p = "Celeron (Coppermine)";
177 strcpy(c->x86_model_id, p);
179 c->x86_max_cores = num_cpu_cores(c);
183 /* Work around errata */
184 Intel_errata_workarounds(c);
186 #ifdef CONFIG_X86_INTEL_USERCOPY
188 * Set up the preferred alignment for movsl bulk memory moves
191 case 4: /* 486: untested */
193 case 5: /* Old Pentia: untested */
195 case 6: /* PII/PIII only like movsl with 8-byte alignment */
198 case 15: /* P4 is OK down to 8-byte alignment */
205 set_bit(X86_FEATURE_P4, c->x86_capability);
206 set_bit(X86_FEATURE_SYNC_RDTSC, c->x86_capability);
209 set_bit(X86_FEATURE_P3, c->x86_capability);
210 if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
211 (c->x86 == 0x6 && c->x86_model >= 0x0e))
212 set_bit(X86_FEATURE_CONSTANT_TSC, c->x86_capability);
216 rdmsr(MSR_IA32_MISC_ENABLE, l1, l2);
218 set_bit(X86_FEATURE_BTS, c->x86_capability);
220 set_bit(X86_FEATURE_PEBS, c->x86_capability);
224 static unsigned int __cpuinit intel_size_cache(struct cpuinfo_x86 * c, unsigned int size)
226 /* Intel PIII Tualatin. This comes in two flavours.
227 * One has 256kb of cache, the other 512. We have no way
228 * to determine which, so we use a boottime override
229 * for the 512kb model, and assume 256 otherwise.
231 if ((c->x86 == 6) && (c->x86_model == 11) && (size == 0))
236 static struct cpu_dev intel_cpu_dev __cpuinitdata = {
238 .c_ident = { "GenuineIntel" },
240 { .vendor = X86_VENDOR_INTEL, .family = 4, .model_names =
242 [0] = "486 DX-25/33",
253 { .vendor = X86_VENDOR_INTEL, .family = 5, .model_names =
255 [0] = "Pentium 60/66 A-step",
256 [1] = "Pentium 60/66",
257 [2] = "Pentium 75 - 200",
258 [3] = "OverDrive PODP5V83",
260 [7] = "Mobile Pentium 75 - 200",
261 [8] = "Mobile Pentium MMX"
264 { .vendor = X86_VENDOR_INTEL, .family = 6, .model_names =
266 [0] = "Pentium Pro A-step",
268 [3] = "Pentium II (Klamath)",
269 [4] = "Pentium II (Deschutes)",
270 [5] = "Pentium II (Deschutes)",
271 [6] = "Mobile Pentium II",
272 [7] = "Pentium III (Katmai)",
273 [8] = "Pentium III (Coppermine)",
274 [10] = "Pentium III (Cascades)",
275 [11] = "Pentium III (Tualatin)",
278 { .vendor = X86_VENDOR_INTEL, .family = 15, .model_names =
280 [0] = "Pentium 4 (Unknown)",
281 [1] = "Pentium 4 (Willamette)",
282 [2] = "Pentium 4 (Northwood)",
283 [4] = "Pentium 4 (Foster)",
284 [5] = "Pentium 4 (Foster)",
288 .c_init = init_intel,
289 .c_size_cache = intel_size_cache,
292 __init int intel_cpu_init(void)
294 cpu_devs[X86_VENDOR_INTEL] = &intel_cpu_dev;
298 #ifndef CONFIG_X86_CMPXCHG
299 unsigned long cmpxchg_386_u8(volatile void *ptr, u8 old, u8 new)
304 /* Poor man's cmpxchg for 386. Unsuitable for SMP */
305 local_irq_save(flags);
309 local_irq_restore(flags);
312 EXPORT_SYMBOL(cmpxchg_386_u8);
314 unsigned long cmpxchg_386_u16(volatile void *ptr, u16 old, u16 new)
319 /* Poor man's cmpxchg for 386. Unsuitable for SMP */
320 local_irq_save(flags);
324 local_irq_restore(flags);
327 EXPORT_SYMBOL(cmpxchg_386_u16);
329 unsigned long cmpxchg_386_u32(volatile void *ptr, u32 old, u32 new)
334 /* Poor man's cmpxchg for 386. Unsuitable for SMP */
335 local_irq_save(flags);
339 local_irq_restore(flags);
342 EXPORT_SYMBOL(cmpxchg_386_u32);
345 #ifndef CONFIG_X86_CMPXCHG64
346 unsigned long long cmpxchg_486_u64(volatile void *ptr, u64 old, u64 new)
351 /* Poor man's cmpxchg8b for 386 and 486. Unsuitable for SMP */
352 local_irq_save(flags);
356 local_irq_restore(flags);
359 EXPORT_SYMBOL(cmpxchg_486_u64);
362 // arch_initcall(intel_cpu_init);