blob: e0ca51f4f2d3746a854acf2d0ddd85416208204d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/init.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -07002#include <linux/kernel.h>
3#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/string.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -07005#include <linux/bootmem.h>
6#include <linux/bitops.h>
7#include <linux/module.h>
8#include <linux/kgdb.h>
9#include <linux/topology.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/delay.h>
11#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/i387.h>
14#include <asm/msr.h>
15#include <asm/io.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -070016#include <asm/linkage.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/mmu_context.h>
Alexey Dobriyan27b07da2006-06-23 02:04:18 -070018#include <asm/mtrr.h>
Alexey Dobriyana03a3e22006-06-23 02:04:20 -070019#include <asm/mce.h>
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020020#include <asm/pat.h>
H. Peter Anvin7e00df52008-08-18 17:39:32 -070021#include <asm/asm.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -070022#include <asm/numa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#ifdef CONFIG_X86_LOCAL_APIC
24#include <asm/mpspec.h>
25#include <asm/apic.h>
26#include <mach_apic.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -070027#include <asm/genapic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#endif
29
Yinghai Luf0fc4af2008-09-04 20:09:00 -070030#include <asm/pda.h>
31#include <asm/pgtable.h>
32#include <asm/processor.h>
33#include <asm/desc.h>
34#include <asm/atomic.h>
35#include <asm/proto.h>
36#include <asm/sections.h>
37#include <asm/setup.h>
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "cpu.h"
40
Yinghai Lu0a488a52008-09-04 21:09:47 +020041static struct cpu_dev *this_cpu __cpuinitdata;
42
Yinghai Lu950ad7f2008-09-04 20:09:01 -070043#ifdef CONFIG_X86_64
44/* We need valid kernel segments for data and code in long mode too
45 * IRET will check the segment types kkeil 2000/10/28
46 * Also sysret mandates a special GDT layout
47 */
48/* The TLS descriptors are currently at a different place compared to i386.
49 Hopefully nobody expects them at a fixed place (Wine?) */
50DEFINE_PER_CPU(struct gdt_page, gdt_page) = { .gdt = {
51 [GDT_ENTRY_KERNEL32_CS] = { { { 0x0000ffff, 0x00cf9b00 } } },
52 [GDT_ENTRY_KERNEL_CS] = { { { 0x0000ffff, 0x00af9b00 } } },
53 [GDT_ENTRY_KERNEL_DS] = { { { 0x0000ffff, 0x00cf9300 } } },
54 [GDT_ENTRY_DEFAULT_USER32_CS] = { { { 0x0000ffff, 0x00cffb00 } } },
55 [GDT_ENTRY_DEFAULT_USER_DS] = { { { 0x0000ffff, 0x00cff300 } } },
56 [GDT_ENTRY_DEFAULT_USER_CS] = { { { 0x0000ffff, 0x00affb00 } } },
57} };
58#else
Eric Dumazet63cc8c72008-05-12 15:44:40 +020059DEFINE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page) = { .gdt = {
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +010060 [GDT_ENTRY_KERNEL_CS] = { { { 0x0000ffff, 0x00cf9a00 } } },
61 [GDT_ENTRY_KERNEL_DS] = { { { 0x0000ffff, 0x00cf9200 } } },
62 [GDT_ENTRY_DEFAULT_USER_CS] = { { { 0x0000ffff, 0x00cffa00 } } },
63 [GDT_ENTRY_DEFAULT_USER_DS] = { { { 0x0000ffff, 0x00cff200 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +020064 /*
65 * Segments used for calling PnP BIOS have byte granularity.
66 * They code segments and data segments have fixed 64k limits,
67 * the transfer segment sizes are set at run time.
68 */
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +010069 /* 32-bit code */
70 [GDT_ENTRY_PNPBIOS_CS32] = { { { 0x0000ffff, 0x00409a00 } } },
71 /* 16-bit code */
72 [GDT_ENTRY_PNPBIOS_CS16] = { { { 0x0000ffff, 0x00009a00 } } },
73 /* 16-bit data */
74 [GDT_ENTRY_PNPBIOS_DS] = { { { 0x0000ffff, 0x00009200 } } },
75 /* 16-bit data */
76 [GDT_ENTRY_PNPBIOS_TS1] = { { { 0x00000000, 0x00009200 } } },
77 /* 16-bit data */
78 [GDT_ENTRY_PNPBIOS_TS2] = { { { 0x00000000, 0x00009200 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +020079 /*
80 * The APM segments have byte granularity and their bases
81 * are set at run time. All have 64k limits.
82 */
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +010083 /* 32-bit code */
84 [GDT_ENTRY_APMBIOS_BASE] = { { { 0x0000ffff, 0x00409a00 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +020085 /* 16-bit code */
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +010086 [GDT_ENTRY_APMBIOS_BASE+1] = { { { 0x0000ffff, 0x00009a00 } } },
87 /* data */
88 [GDT_ENTRY_APMBIOS_BASE+2] = { { { 0x0000ffff, 0x00409200 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +020089
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +010090 [GDT_ENTRY_ESPFIX_SS] = { { { 0x00000000, 0x00c09200 } } },
91 [GDT_ENTRY_PERCPU] = { { { 0x00000000, 0x00000000 } } },
Jeremy Fitzhardinge7a61d352007-05-02 19:27:15 +020092} };
Yinghai Lu950ad7f2008-09-04 20:09:01 -070093#endif
Jeremy Fitzhardinge7a61d352007-05-02 19:27:15 +020094EXPORT_PER_CPU_SYMBOL_GPL(gdt_page);
Rusty Russellae1ee112007-05-02 19:27:10 +020095
Chuck Ebbert3bc9b762006-03-23 02:59:33 -080096static int cachesize_override __cpuinitdata = -1;
Chuck Ebbert3bc9b762006-03-23 02:59:33 -080097static int disable_x86_serial_nr __cpuinitdata = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static int __init cachesize_setup(char *str)
100{
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100101 get_option(&str, &cachesize_override);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return 1;
103}
104__setup("cachesize=", cachesize_setup);
105
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100106/*
107 * Naming convention should be: <Name> [(<Codename>)]
108 * This table only is used unless init_<vendor>() below doesn't set it;
109 * in particular, if CPUID levels 0x80000002..4 are supported, this isn't used
110 *
111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113/* Look up CPU names by table lookup. */
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800114static char __cpuinit *table_lookup_model(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 struct cpu_model_info *info;
117
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100118 if (c->x86_model >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return NULL; /* Range check */
120
121 if (!this_cpu)
122 return NULL;
123
124 info = this_cpu->c_models;
125
126 while (info && info->family) {
127 if (info->family == c->x86)
128 return info->model_names[c->x86_model];
129 info++;
130 }
131 return NULL; /* Not found */
132}
133
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100134static int __init x86_fxsr_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Andi Kleen13530252008-01-30 13:33:20 +0100136 setup_clear_cpu_cap(X86_FEATURE_FXSR);
137 setup_clear_cpu_cap(X86_FEATURE_XMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return 1;
139}
140__setup("nofxsr", x86_fxsr_setup);
141
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100142static int __init x86_sep_setup(char *s)
Chuck Ebbert4f886512006-03-23 02:59:34 -0800143{
Andi Kleen13530252008-01-30 13:33:20 +0100144 setup_clear_cpu_cap(X86_FEATURE_SEP);
Chuck Ebbert4f886512006-03-23 02:59:34 -0800145 return 1;
146}
147__setup("nosep", x86_sep_setup);
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/* Standard macro to see if a specific flag is changeable */
150static inline int flag_is_changeable_p(u32 flag)
151{
152 u32 f1, f2;
153
154 asm("pushfl\n\t"
155 "pushfl\n\t"
156 "popl %0\n\t"
157 "movl %0,%1\n\t"
158 "xorl %2,%0\n\t"
159 "pushl %0\n\t"
160 "popfl\n\t"
161 "pushfl\n\t"
162 "popl %0\n\t"
163 "popfl\n\t"
164 : "=&r" (f1), "=&r" (f2)
165 : "ir" (flag));
166
167 return ((f1^f2) & flag) != 0;
168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/* Probe for the CPUID instruction */
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800171static int __cpuinit have_cpuid_p(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 return flag_is_changeable_p(X86_EFLAGS_ID);
174}
175
Yinghai Lu0a488a52008-09-04 21:09:47 +0200176static void __cpuinit squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
177{
178 if (cpu_has(c, X86_FEATURE_PN) && disable_x86_serial_nr) {
179 /* Disable processor serial number */
180 unsigned long lo, hi;
181 rdmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
182 lo |= 0x200000;
183 wrmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
184 printk(KERN_NOTICE "CPU serial number disabled.\n");
185 clear_cpu_cap(c, X86_FEATURE_PN);
186
187 /* Disabling the serial number may affect the cpuid level */
188 c->cpuid_level = cpuid_eax(0);
189 }
190}
191
192static int __init x86_serial_nr_setup(char *s)
193{
194 disable_x86_serial_nr = 0;
195 return 1;
196}
197__setup("serialnumber", x86_serial_nr_setup);
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199__u32 cleared_cpu_caps[NCAPINTS] __cpuinitdata;
200
Yinghai Lu9d31d352008-09-04 21:09:44 +0200201/* Current gdt points %fs at the "master" per-cpu area: after this,
202 * it's on the real one. */
203void switch_to_new_gdt(void)
204{
205 struct desc_ptr gdt_descr;
206
207 gdt_descr.address = (long)get_cpu_gdt_table(smp_processor_id());
208 gdt_descr.size = GDT_SIZE - 1;
209 load_gdt(&gdt_descr);
210 asm("mov %0, %%fs" : : "r" (__KERNEL_PERCPU) : "memory");
211}
212
Yinghai Lu10a434f2008-09-04 21:09:45 +0200213static struct cpu_dev *cpu_devs[X86_VENDOR_NUM] = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215static void __cpuinit default_init(struct cpuinfo_x86 *c)
216{
217 /* Not much we can do here... */
218 /* Check if at least it has cpuid */
219 if (c->cpuid_level == -1) {
220 /* No cpuid. It must be an ancient CPU */
221 if (c->x86 == 4)
222 strcpy(c->x86_model_id, "486");
223 else if (c->x86 == 3)
224 strcpy(c->x86_model_id, "386");
225 }
226}
227
228static struct cpu_dev __cpuinitdata default_cpu = {
229 .c_init = default_init,
230 .c_vendor = "Unknown",
Yinghai Lu10a434f2008-09-04 21:09:45 +0200231 .c_x86_vendor = X86_VENDOR_UNKNOWN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234int __cpuinit get_model_name(struct cpuinfo_x86 *c)
235{
236 unsigned int *v;
237 char *p, *q;
238
Yinghai Lu3da99c92008-09-04 21:09:44 +0200239 if (c->extended_cpuid_level < 0x80000004)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return 0;
241
242 v = (unsigned int *) c->x86_model_id;
243 cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]);
244 cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]);
245 cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]);
246 c->x86_model_id[48] = 0;
247
248 /* Intel chips right-justify this string for some dumb reason;
249 undo that brain damage */
250 p = q = &c->x86_model_id[0];
251 while (*p == ' ')
252 p++;
253 if (p != q) {
254 while (*p)
255 *q++ = *p++;
256 while (q <= &c->x86_model_id[48])
257 *q++ = '\0'; /* Zero-pad the rest */
258 }
259
260 return 1;
261}
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c)
264{
Yinghai Lu9d31d352008-09-04 21:09:44 +0200265 unsigned int n, dummy, ebx, ecx, edx, l2size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Yinghai Lu3da99c92008-09-04 21:09:44 +0200267 n = c->extended_cpuid_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 if (n >= 0x80000005) {
Yinghai Lu9d31d352008-09-04 21:09:44 +0200270 cpuid(0x80000005, &dummy, &ebx, &ecx, &edx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 printk(KERN_INFO "CPU: L1 I Cache: %dK (%d bytes/line), D cache %dK (%d bytes/line)\n",
Yinghai Lu9d31d352008-09-04 21:09:44 +0200272 edx>>24, edx&0xFF, ecx>>24, ecx&0xFF);
273 c->x86_cache_size = (ecx>>24) + (edx>>24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
275
276 if (n < 0x80000006) /* Some chips just has a large L1. */
277 return;
278
Yinghai Lu0a488a52008-09-04 21:09:47 +0200279 cpuid(0x80000006, &dummy, &ebx, &ecx, &edx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 l2size = ecx >> 16;
281
282 /* do processor-specific cache resizing */
283 if (this_cpu->c_size_cache)
284 l2size = this_cpu->c_size_cache(c, l2size);
285
286 /* Allow user to override all this if necessary. */
287 if (cachesize_override != -1)
288 l2size = cachesize_override;
289
290 if (l2size == 0)
291 return; /* Again, no L2 cache is possible */
292
293 c->x86_cache_size = l2size;
294
295 printk(KERN_INFO "CPU: L2 Cache: %dK (%d bytes/line)\n",
Yinghai Lu0a488a52008-09-04 21:09:47 +0200296 l2size, ecx & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Yinghai Lu9d31d352008-09-04 21:09:44 +0200299void __cpuinit detect_ht(struct cpuinfo_x86 *c)
300{
Yinghai Lu97e4db72008-09-04 20:08:59 -0700301#ifdef CONFIG_X86_HT
Yinghai Lu0a488a52008-09-04 21:09:47 +0200302 u32 eax, ebx, ecx, edx;
303 int index_msb, core_bits;
304
305 if (!cpu_has(c, X86_FEATURE_HT))
306 return;
307
308 if (cpu_has(c, X86_FEATURE_CMP_LEGACY))
309 goto out;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200310
311 cpuid(1, &eax, &ebx, &ecx, &edx);
312
Yinghai Lu9d31d352008-09-04 21:09:44 +0200313 smp_num_siblings = (ebx & 0xff0000) >> 16;
314
315 if (smp_num_siblings == 1) {
316 printk(KERN_INFO "CPU: Hyper-Threading is disabled\n");
317 } else if (smp_num_siblings > 1) {
318
319 if (smp_num_siblings > NR_CPUS) {
320 printk(KERN_WARNING "CPU: Unsupported number of siblings %d",
321 smp_num_siblings);
322 smp_num_siblings = 1;
323 return;
324 }
325
326 index_msb = get_count_order(smp_num_siblings);
327 c->phys_proc_id = phys_pkg_id(c->initial_apicid, index_msb);
328
Yinghai Lu9d31d352008-09-04 21:09:44 +0200329
330 smp_num_siblings = smp_num_siblings / c->x86_max_cores;
331
332 index_msb = get_count_order(smp_num_siblings);
333
334 core_bits = get_count_order(c->x86_max_cores);
335
336 c->cpu_core_id = phys_pkg_id(c->initial_apicid, index_msb) &
337 ((1 << core_bits) - 1);
Yinghai Lu0a488a52008-09-04 21:09:47 +0200338 }
Yinghai Lu9d31d352008-09-04 21:09:44 +0200339
Yinghai Lu0a488a52008-09-04 21:09:47 +0200340out:
341 if ((c->x86_max_cores * smp_num_siblings) > 1) {
342 printk(KERN_INFO "CPU: Physical Processor ID: %d\n",
343 c->phys_proc_id);
344 printk(KERN_INFO "CPU: Processor Core ID: %d\n",
345 c->cpu_core_id);
Yinghai Lu9d31d352008-09-04 21:09:44 +0200346 }
Yinghai Lu9d31d352008-09-04 21:09:44 +0200347#endif
Yinghai Lu97e4db72008-09-04 20:08:59 -0700348}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Yinghai Lu3da99c92008-09-04 21:09:44 +0200350static void __cpuinit get_cpu_vendor(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 char *v = c->x86_vendor_id;
353 int i;
354 static int printed;
355
356 for (i = 0; i < X86_VENDOR_NUM; i++) {
Yinghai Lu10a434f2008-09-04 21:09:45 +0200357 if (!cpu_devs[i])
358 break;
359
360 if (!strcmp(v, cpu_devs[i]->c_ident[0]) ||
361 (cpu_devs[i]->c_ident[1] &&
362 !strcmp(v, cpu_devs[i]->c_ident[1]))) {
363 this_cpu = cpu_devs[i];
364 c->x86_vendor = this_cpu->c_x86_vendor;
365 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367 }
Yinghai Lu10a434f2008-09-04 21:09:45 +0200368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (!printed) {
370 printed++;
371 printk(KERN_ERR "CPU: Vendor unknown, using generic init.\n");
372 printk(KERN_ERR "CPU: Your system may be unstable.\n");
373 }
Yinghai Lu10a434f2008-09-04 21:09:45 +0200374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 c->x86_vendor = X86_VENDOR_UNKNOWN;
376 this_cpu = &default_cpu;
377}
378
Yinghai Lu9d31d352008-09-04 21:09:44 +0200379void __cpuinit cpu_detect(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 /* Get vendor name */
Harvey Harrison4a148512008-02-01 17:49:43 +0100382 cpuid(0x00000000, (unsigned int *)&c->cpuid_level,
383 (unsigned int *)&c->x86_vendor_id[0],
384 (unsigned int *)&c->x86_vendor_id[8],
385 (unsigned int *)&c->x86_vendor_id[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 c->x86 = 4;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200388 /* Intel-defined flags: level 0x00000001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (c->cpuid_level >= 0x00000001) {
390 u32 junk, tfms, cap0, misc;
391 cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
Yinghai Lu9d31d352008-09-04 21:09:44 +0200392 c->x86 = (tfms >> 8) & 0xf;
393 c->x86_model = (tfms >> 4) & 0xf;
394 c->x86_mask = tfms & 0xf;
Suresh Siddhaf5f786d2005-11-05 17:25:53 +0100395 if (c->x86 == 0xf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 c->x86 += (tfms >> 20) & 0xff;
Suresh Siddhaf5f786d2005-11-05 17:25:53 +0100397 if (c->x86 >= 0x6)
Yinghai Lu9d31d352008-09-04 21:09:44 +0200398 c->x86_model += ((tfms >> 16) & 0xf) << 4;
Huang, Yingd4387bd2008-01-31 22:05:45 +0100399 if (cap0 & (1<<19)) {
Huang, Yingd4387bd2008-01-31 22:05:45 +0100400 c->x86_clflush_size = ((misc >> 8) & 0xff) * 8;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200401 c->x86_cache_alignment = c->x86_clflush_size;
Huang, Yingd4387bd2008-01-31 22:05:45 +0100402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
Yinghai Lu3da99c92008-09-04 21:09:44 +0200405
406static void __cpuinit get_cpu_cap(struct cpuinfo_x86 *c)
Yinghai Lu093af8d2008-01-30 13:33:32 +0100407{
408 u32 tfms, xlvl;
Yinghai Lu3da99c92008-09-04 21:09:44 +0200409 u32 ebx;
Yinghai Lu093af8d2008-01-30 13:33:32 +0100410
Yinghai Lu3da99c92008-09-04 21:09:44 +0200411 /* Intel-defined flags: level 0x00000001 */
412 if (c->cpuid_level >= 0x00000001) {
413 u32 capability, excap;
414 cpuid(0x00000001, &tfms, &ebx, &excap, &capability);
415 c->x86_capability[0] = capability;
416 c->x86_capability[4] = excap;
Yinghai Lu093af8d2008-01-30 13:33:32 +0100417 }
418
Yinghai Lu3da99c92008-09-04 21:09:44 +0200419 /* AMD-defined flags: level 0x80000001 */
420 xlvl = cpuid_eax(0x80000000);
421 c->extended_cpuid_level = xlvl;
422 if ((xlvl & 0xffff0000) == 0x80000000) {
423 if (xlvl >= 0x80000001) {
424 c->x86_capability[1] = cpuid_edx(0x80000001);
425 c->x86_capability[6] = cpuid_ecx(0x80000001);
426 }
427 }
Yinghai Lu093af8d2008-01-30 13:33:32 +0100428}
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100429/*
430 * Do minimum CPU detection early.
431 * Fields really needed: vendor, cpuid_level, family, model, mask,
432 * cache alignment.
433 * The others are not touched to avoid unwanted side effects.
434 *
435 * WARNING: this function is only called on the BP. Don't add code here
436 * that is supposed to run on all CPUs.
437 */
Yinghai Lu3da99c92008-09-04 21:09:44 +0200438static void __init early_identify_cpu(struct cpuinfo_x86 *c)
Rusty Russelld7cd5612006-12-07 02:14:08 +0100439{
Huang, Yingd4387bd2008-01-31 22:05:45 +0100440 c->x86_clflush_size = 32;
Yinghai Lu0a488a52008-09-04 21:09:47 +0200441 c->x86_cache_alignment = c->x86_clflush_size;
Rusty Russelld7cd5612006-12-07 02:14:08 +0100442
443 if (!have_cpuid_p())
444 return;
445
Yinghai Lu3da99c92008-09-04 21:09:44 +0200446 memset(&c->x86_capability, 0, sizeof c->x86_capability);
447
Yinghai Lu0a488a52008-09-04 21:09:47 +0200448 c->extended_cpuid_level = 0;
449
Rusty Russelld7cd5612006-12-07 02:14:08 +0100450 cpu_detect(c);
451
Yinghai Lu3da99c92008-09-04 21:09:44 +0200452 get_cpu_vendor(c);
Andi Kleen2b16a232008-01-30 13:32:40 +0100453
Yinghai Lu3da99c92008-09-04 21:09:44 +0200454 get_cpu_cap(c);
Yinghai Lu093af8d2008-01-30 13:33:32 +0100455
Yinghai Lu10a434f2008-09-04 21:09:45 +0200456 if (this_cpu->c_early_init)
457 this_cpu->c_early_init(c);
Yinghai Lu3da99c92008-09-04 21:09:44 +0200458
459 validate_pat_support(c);
Rusty Russelld7cd5612006-12-07 02:14:08 +0100460}
461
Yinghai Lu9d31d352008-09-04 21:09:44 +0200462void __init early_cpu_init(void)
463{
Yinghai Lu10a434f2008-09-04 21:09:45 +0200464 struct cpu_dev **cdev;
465 int count = 0;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200466
Yinghai Lu10a434f2008-09-04 21:09:45 +0200467 printk("KERNEL supported cpus:\n");
468 for (cdev = __x86_cpu_dev_start; cdev < __x86_cpu_dev_end; cdev++) {
469 struct cpu_dev *cpudev = *cdev;
470 unsigned int j;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200471
Yinghai Lu10a434f2008-09-04 21:09:45 +0200472 if (count >= X86_VENDOR_NUM)
473 break;
474 cpu_devs[count] = cpudev;
475 count++;
476
477 for (j = 0; j < 2; j++) {
478 if (!cpudev->c_ident[j])
479 continue;
480 printk(" %s %s\n", cpudev->c_vendor,
481 cpudev->c_ident[j]);
482 }
483 }
484
Yinghai Lu9d31d352008-09-04 21:09:44 +0200485 early_identify_cpu(&boot_cpu_data);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800486}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
H. Peter Anvin7e00df52008-08-18 17:39:32 -0700488/*
489 * The NOPL instruction is supposed to exist on all CPUs with
490 * family >= 6, unfortunately, that's not true in practice because
491 * of early VIA chips and (more importantly) broken virtualizers that
492 * are not easy to detect. Hence, probe for it based on first
493 * principles.
494 */
495static void __cpuinit detect_nopl(struct cpuinfo_x86 *c)
496{
497 const u32 nopl_signature = 0x888c53b1; /* Random number */
498 u32 has_nopl = nopl_signature;
499
500 clear_cpu_cap(c, X86_FEATURE_NOPL);
501 if (c->x86 >= 6) {
502 asm volatile("\n"
503 "1: .byte 0x0f,0x1f,0xc0\n" /* nopl %eax */
504 "2:\n"
505 " .section .fixup,\"ax\"\n"
506 "3: xor %0,%0\n"
507 " jmp 2b\n"
508 " .previous\n"
509 _ASM_EXTABLE(1b,3b)
510 : "+a" (has_nopl));
511
512 if (has_nopl == nopl_signature)
513 set_cpu_cap(c, X86_FEATURE_NOPL);
514 }
515}
516
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100517static void __cpuinit generic_identify(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Yinghai Lu3da99c92008-09-04 21:09:44 +0200519 if (!have_cpuid_p())
520 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Yinghai Lu3da99c92008-09-04 21:09:44 +0200522 c->extended_cpuid_level = 0;
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100523
Yinghai Lu3da99c92008-09-04 21:09:44 +0200524 cpu_detect(c);
525
526 get_cpu_vendor(c);
527
528 get_cpu_cap(c);
529
530 if (c->cpuid_level >= 0x00000001) {
531 c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xFF;
James Bottomley96c52742006-06-27 02:53:49 -0700532#ifdef CONFIG_X86_HT
Yinghai Lu3da99c92008-09-04 21:09:44 +0200533 c->apicid = phys_pkg_id(c->initial_apicid, 0);
534 c->phys_proc_id = c->initial_apicid;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800535#else
Yinghai Lu3da99c92008-09-04 21:09:44 +0200536 c->apicid = c->initial_apicid;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800537#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
Yinghai Lu3da99c92008-09-04 21:09:44 +0200539
540 if (c->extended_cpuid_level >= 0x80000004)
541 get_model_name(c); /* Default name */
542
543 init_scattered_cpuid_features(c);
544 detect_nopl(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547/*
548 * This does the hard work of actually picking apart the CPU stuff...
549 */
Yinghai Lu9a250342008-06-21 03:24:00 -0700550static void __cpuinit identify_cpu(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
552 int i;
553
554 c->loops_per_jiffy = loops_per_jiffy;
555 c->x86_cache_size = -1;
556 c->x86_vendor = X86_VENDOR_UNKNOWN;
557 c->cpuid_level = -1; /* CPUID not detected */
558 c->x86_model = c->x86_mask = 0; /* So far unknown... */
559 c->x86_vendor_id[0] = '\0'; /* Unset */
560 c->x86_model_id[0] = '\0'; /* Unset */
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100561 c->x86_max_cores = 1;
Andi Kleen770d1322006-12-07 02:14:05 +0100562 c->x86_clflush_size = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 memset(&c->x86_capability, 0, sizeof c->x86_capability);
564
565 if (!have_cpuid_p()) {
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100566 /*
567 * First of all, decide if this is a 486 or higher
568 * It's a 486 if we can modify the AC flag
569 */
570 if (flag_is_changeable_p(X86_EFLAGS_AC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 c->x86 = 4;
572 else
573 c->x86 = 3;
574 }
575
576 generic_identify(c);
577
Andi Kleen38985342008-01-30 13:32:49 +0100578 if (this_cpu->c_identify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 this_cpu->c_identify(c);
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /*
582 * Vendor-specific initialization. In this section we
583 * canonicalize the feature flags, meaning if there are
584 * features a certain CPU supports which CPUID doesn't
585 * tell us, CPUID claiming incorrect flags, or other bugs,
586 * we handle them here.
587 *
588 * At the end of this section, c->x86_capability better
589 * indicate the features this CPU genuinely supports!
590 */
591 if (this_cpu->c_init)
592 this_cpu->c_init(c);
593
594 /* Disable the PN if appropriate */
595 squash_the_stupid_serial_number(c);
596
597 /*
598 * The vendor-specific functions might have changed features. Now
599 * we do "generic changes."
600 */
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /* If the model name is still unset, do table lookup. */
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100603 if (!c->x86_model_id[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 char *p;
605 p = table_lookup_model(c);
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100606 if (p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 strcpy(c->x86_model_id, p);
608 else
609 /* Last resort... */
610 sprintf(c->x86_model_id, "%02x/%02x",
Chuck Ebbert54a20f82006-03-23 02:59:36 -0800611 c->x86, c->x86_model);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 /*
615 * On SMP, boot_cpu_data holds the common feature set between
616 * all CPUs; so make sure that we indicate which features are
617 * common between the CPUs. The first time this routine gets
618 * executed, c == &boot_cpu_data.
619 */
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100620 if (c != &boot_cpu_data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /* AND the already accumulated flags with these */
Yinghai Lu9d31d352008-09-04 21:09:44 +0200622 for (i = 0; i < NCAPINTS; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 boot_cpu_data.x86_capability[i] &= c->x86_capability[i];
624 }
625
Andi Kleen7d851c82008-01-30 13:33:20 +0100626 /* Clear all flags overriden by options */
627 for (i = 0; i < NCAPINTS; i++)
Mikael Pettersson12c247a2008-02-24 18:27:03 +0100628 c->x86_capability[i] &= ~cleared_cpu_caps[i];
Andi Kleen7d851c82008-01-30 13:33:20 +0100629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /* Init Machine Check Exception if available. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 mcheck_init(c);
Andi Kleen30d432d2008-01-30 13:33:16 +0100632
633 select_idle_routine(c);
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200634}
Shaohua Li31ab2692005-11-07 00:58:42 -0800635
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200636void __init identify_boot_cpu(void)
637{
638 identify_cpu(&boot_cpu_data);
639 sysenter_setup();
Li Shaohua6fe940d2005-06-25 14:54:53 -0700640 enable_sep_cpu();
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200641}
Shaohua Li3b520b22005-07-07 17:56:38 -0700642
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200643void __cpuinit identify_secondary_cpu(struct cpuinfo_x86 *c)
644{
645 BUG_ON(c == &boot_cpu_data);
646 identify_cpu(c);
647 enable_sep_cpu();
648 mtrr_ap_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
Yinghai Lua0854a42008-09-04 21:09:46 +0200651struct msr_range {
652 unsigned min;
653 unsigned max;
654};
655
656static struct msr_range msr_range_array[] __cpuinitdata = {
657 { 0x00000000, 0x00000418},
658 { 0xc0000000, 0xc000040b},
659 { 0xc0010000, 0xc0010142},
660 { 0xc0011000, 0xc001103b},
661};
662
663static void __cpuinit print_cpu_msr(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Yinghai Lua0854a42008-09-04 21:09:46 +0200665 unsigned index;
666 u64 val;
667 int i;
668 unsigned index_min, index_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Yinghai Lua0854a42008-09-04 21:09:46 +0200670 for (i = 0; i < ARRAY_SIZE(msr_range_array); i++) {
671 index_min = msr_range_array[i].min;
672 index_max = msr_range_array[i].max;
673 for (index = index_min; index < index_max; index++) {
674 if (rdmsrl_amd_safe(index, &val))
675 continue;
676 printk(KERN_INFO " MSR%08x: %016llx\n", index, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679}
Yinghai Lua0854a42008-09-04 21:09:46 +0200680
681static int show_msr __cpuinitdata;
682static __init int setup_show_msr(char *arg)
683{
684 int num;
685
686 get_option(&arg, &num);
687
688 if (num > 0)
689 show_msr = num;
690 return 1;
691}
692__setup("show_msr=", setup_show_msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Andi Kleen191679f2008-01-30 13:33:21 +0100694static __init int setup_noclflush(char *arg)
695{
696 setup_clear_cpu_cap(X86_FEATURE_CLFLSH);
697 return 1;
698}
699__setup("noclflush", setup_noclflush);
700
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800701void __cpuinit print_cpu_info(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 char *vendor = NULL;
704
705 if (c->x86_vendor < X86_VENDOR_NUM)
706 vendor = this_cpu->c_vendor;
707 else if (c->cpuid_level >= 0)
708 vendor = c->x86_vendor_id;
709
710 if (vendor && strncmp(c->x86_model_id, vendor, strlen(vendor)))
Yinghai Lu9d31d352008-09-04 21:09:44 +0200711 printk(KERN_CONT "%s ", vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Yinghai Lu9d31d352008-09-04 21:09:44 +0200713 if (c->x86_model_id[0])
714 printk(KERN_CONT "%s", c->x86_model_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 else
Yinghai Lu9d31d352008-09-04 21:09:44 +0200716 printk(KERN_CONT "%d86", c->x86);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100718 if (c->x86_mask || c->cpuid_level >= 0)
Yinghai Lu9d31d352008-09-04 21:09:44 +0200719 printk(KERN_CONT " stepping %02x\n", c->x86_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 else
Yinghai Lu9d31d352008-09-04 21:09:44 +0200721 printk(KERN_CONT "\n");
Yinghai Lua0854a42008-09-04 21:09:46 +0200722
723#ifdef CONFIG_SMP
724 if (c->cpu_index < show_msr)
725 print_cpu_msr();
726#else
727 if (show_msr)
728 print_cpu_msr();
729#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
Andi Kleenac72e782008-01-30 13:33:21 +0100732static __init int setup_disablecpuid(char *arg)
733{
734 int bit;
735 if (get_option(&arg, &bit) && bit < NCAPINTS*32)
736 setup_clear_cpu_cap(bit);
737 else
738 return 0;
739 return 1;
740}
741__setup("clearcpuid=", setup_disablecpuid);
742
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800743cpumask_t cpu_initialized __cpuinitdata = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Jeremy Fitzhardinge7c3576d2007-05-02 19:27:16 +0200745/* Make sure %fs is initialized properly in idle threads */
Adrian Bunk6b2fb3c2008-02-06 01:37:55 -0800746struct pt_regs * __cpuinit idle_regs(struct pt_regs *regs)
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100747{
748 memset(regs, 0, sizeof(struct pt_regs));
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100749 regs->fs = __KERNEL_PERCPU;
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100750 return regs;
751}
752
Rusty Russelld2cbcc42007-05-02 19:27:10 +0200753/*
754 * cpu_init() initializes state that is per-CPU. Some data is already
755 * initialized (naturally) in the bootstrap process, such as the GDT
756 * and IDT. We reload them nevertheless, this function acts as a
757 * 'CPU state barrier', nothing should get across.
758 */
759void __cpuinit cpu_init(void)
James Bottomley9ee79a32007-01-22 09:18:31 -0600760{
Rusty Russelld2cbcc42007-05-02 19:27:10 +0200761 int cpu = smp_processor_id();
762 struct task_struct *curr = current;
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100763 struct tss_struct *t = &per_cpu(init_tss, cpu);
James Bottomley9ee79a32007-01-22 09:18:31 -0600764 struct thread_struct *thread = &curr->thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 if (cpu_test_and_set(cpu, cpu_initialized)) {
767 printk(KERN_WARNING "CPU#%d already initialized!\n", cpu);
768 for (;;) local_irq_enable();
769 }
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 printk(KERN_INFO "Initializing CPU#%d\n", cpu);
772
773 if (cpu_has_vme || cpu_has_tsc || cpu_has_de)
774 clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Zachary Amsden4d37e7e2005-09-03 15:56:38 -0700776 load_idt(&idt_descr);
Jeremy Fitzhardingec5413fb2007-05-02 19:27:16 +0200777 switch_to_new_gdt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 * Set up and load the per-CPU TSS and LDT
781 */
782 atomic_inc(&init_mm.mm_count);
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100783 curr->active_mm = &init_mm;
784 if (curr->mm)
785 BUG();
786 enter_lazy_tlb(&init_mm, curr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100788 load_sp0(t, thread);
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100789 set_tss_desc(cpu, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 load_TR_desc();
791 load_LDT(&init_mm.context);
792
Matt Mackall22c4e302006-01-08 01:05:24 -0800793#ifdef CONFIG_DOUBLEFAULT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 /* Set up doublefault TSS pointer in the GDT */
795 __set_tss_desc(cpu, GDT_ENTRY_DOUBLEFAULT_TSS, &doublefault_tss);
Matt Mackall22c4e302006-01-08 01:05:24 -0800796#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Jeremy Fitzhardinge464d1a72007-02-13 13:26:20 +0100798 /* Clear %gs. */
799 asm volatile ("mov %0, %%gs" : : "r" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 /* Clear all 6 debug registers: */
Zachary Amsden4bb0d3e2005-09-03 15:56:36 -0700802 set_debugreg(0, 0);
803 set_debugreg(0, 1);
804 set_debugreg(0, 2);
805 set_debugreg(0, 3);
806 set_debugreg(0, 6);
807 set_debugreg(0, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 /*
810 * Force FPU initialization:
811 */
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700812 if (cpu_has_xsave)
813 current_thread_info()->status = TS_XSAVE;
814 else
815 current_thread_info()->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 clear_used_math();
817 mxcsr_feature_mask_init();
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700818
819 /*
820 * Boot processor to setup the FP and extended state context info.
821 */
822 if (!smp_processor_id())
823 init_thread_xstate();
824
825 xsave_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
Li Shaohuae1367da2005-06-25 14:54:56 -0700827
828#ifdef CONFIG_HOTPLUG_CPU
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800829void __cpuinit cpu_uninit(void)
Li Shaohuae1367da2005-06-25 14:54:56 -0700830{
831 int cpu = raw_smp_processor_id();
832 cpu_clear(cpu, cpu_initialized);
833
834 /* lazy TLB state */
835 per_cpu(cpu_tlbstate, cpu).state = 0;
836 per_cpu(cpu_tlbstate, cpu).active_mm = &init_mm;
837}
838#endif