blob: 260fe4cb2c824df9d8c2df963e52539cec0486ae [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 Anvinb6734c32008-08-18 17:39:32 -070021#include <asm/asm.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -070022#include <asm/numa.h>
Ingo Molnarb3427972008-10-31 09:31:38 +010023#include <asm/smp.h>
Jaswinder Singh Rajputf472cdb2009-01-07 21:34:25 +053024#include <asm/cpu.h>
Jaswinder Singh Rajput06879032009-01-10 12:17:37 +053025#include <asm/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#ifdef CONFIG_X86_LOCAL_APIC
27#include <asm/mpspec.h>
28#include <asm/apic.h>
29#include <mach_apic.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -070030#include <asm/genapic.h>
Tejun Heobdbcdd42009-01-21 17:26:06 +090031#include <asm/uv/uv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#endif
33
Yinghai Luf0fc4af2008-09-04 20:09:00 -070034#include <asm/pgtable.h>
35#include <asm/processor.h>
36#include <asm/desc.h>
37#include <asm/atomic.h>
38#include <asm/proto.h>
39#include <asm/sections.h>
40#include <asm/setup.h>
Alok Kataria88b094f2008-10-27 10:41:46 -070041#include <asm/hypervisor.h>
Tejun Heo60a53172009-02-09 22:17:40 +090042#include <asm/stackprotector.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "cpu.h"
45
Mike Travisc2d1cec2009-01-04 05:18:03 -080046#ifdef CONFIG_X86_64
47
48/* all of these masks are initialized in setup_cpu_local_masks() */
49cpumask_var_t cpu_callin_mask;
50cpumask_var_t cpu_callout_mask;
51cpumask_var_t cpu_initialized_mask;
52
53/* representing cpus for which sibling maps can be computed */
54cpumask_var_t cpu_sibling_setup_mask;
55
Brian Gerst2f2f52b2009-01-27 12:56:47 +090056/* correctly size the local cpu masks */
Ingo Molnar4369f1f2009-01-27 12:03:24 +010057void __init setup_cpu_local_masks(void)
Brian Gerst2f2f52b2009-01-27 12:56:47 +090058{
59 alloc_bootmem_cpumask_var(&cpu_initialized_mask);
60 alloc_bootmem_cpumask_var(&cpu_callin_mask);
61 alloc_bootmem_cpumask_var(&cpu_callout_mask);
62 alloc_bootmem_cpumask_var(&cpu_sibling_setup_mask);
63}
64
Mike Travisc2d1cec2009-01-04 05:18:03 -080065#else /* CONFIG_X86_32 */
66
67cpumask_t cpu_callin_map;
68cpumask_t cpu_callout_map;
69cpumask_t cpu_initialized;
70cpumask_t cpu_sibling_setup_map;
71
72#endif /* CONFIG_X86_32 */
73
74
Yinghai Lu0a488a52008-09-04 21:09:47 +020075static struct cpu_dev *this_cpu __cpuinitdata;
76
Brian Gerst06deef82009-01-21 17:26:05 +090077DEFINE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page) = { .gdt = {
Yinghai Lu950ad7f2008-09-04 20:09:01 -070078#ifdef CONFIG_X86_64
Brian Gerst06deef82009-01-21 17:26:05 +090079 /*
80 * We need valid kernel segments for data and code in long mode too
81 * IRET will check the segment types kkeil 2000/10/28
82 * Also sysret mandates a special GDT layout
83 *
84 * The TLS descriptors are currently at a different place compared to i386.
85 * Hopefully nobody expects them at a fixed place (Wine?)
86 */
Yinghai Lu950ad7f2008-09-04 20:09:01 -070087 [GDT_ENTRY_KERNEL32_CS] = { { { 0x0000ffff, 0x00cf9b00 } } },
88 [GDT_ENTRY_KERNEL_CS] = { { { 0x0000ffff, 0x00af9b00 } } },
89 [GDT_ENTRY_KERNEL_DS] = { { { 0x0000ffff, 0x00cf9300 } } },
90 [GDT_ENTRY_DEFAULT_USER32_CS] = { { { 0x0000ffff, 0x00cffb00 } } },
91 [GDT_ENTRY_DEFAULT_USER_DS] = { { { 0x0000ffff, 0x00cff300 } } },
92 [GDT_ENTRY_DEFAULT_USER_CS] = { { { 0x0000ffff, 0x00affb00 } } },
Yinghai Lu950ad7f2008-09-04 20:09:01 -070093#else
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +010094 [GDT_ENTRY_KERNEL_CS] = { { { 0x0000ffff, 0x00cf9a00 } } },
95 [GDT_ENTRY_KERNEL_DS] = { { { 0x0000ffff, 0x00cf9200 } } },
96 [GDT_ENTRY_DEFAULT_USER_CS] = { { { 0x0000ffff, 0x00cffa00 } } },
97 [GDT_ENTRY_DEFAULT_USER_DS] = { { { 0x0000ffff, 0x00cff200 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +020098 /*
99 * Segments used for calling PnP BIOS have byte granularity.
100 * They code segments and data segments have fixed 64k limits,
101 * the transfer segment sizes are set at run time.
102 */
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100103 /* 32-bit code */
104 [GDT_ENTRY_PNPBIOS_CS32] = { { { 0x0000ffff, 0x00409a00 } } },
105 /* 16-bit code */
106 [GDT_ENTRY_PNPBIOS_CS16] = { { { 0x0000ffff, 0x00009a00 } } },
107 /* 16-bit data */
108 [GDT_ENTRY_PNPBIOS_DS] = { { { 0x0000ffff, 0x00009200 } } },
109 /* 16-bit data */
110 [GDT_ENTRY_PNPBIOS_TS1] = { { { 0x00000000, 0x00009200 } } },
111 /* 16-bit data */
112 [GDT_ENTRY_PNPBIOS_TS2] = { { { 0x00000000, 0x00009200 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +0200113 /*
114 * The APM segments have byte granularity and their bases
115 * are set at run time. All have 64k limits.
116 */
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100117 /* 32-bit code */
118 [GDT_ENTRY_APMBIOS_BASE] = { { { 0x0000ffff, 0x00409a00 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +0200119 /* 16-bit code */
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100120 [GDT_ENTRY_APMBIOS_BASE+1] = { { { 0x0000ffff, 0x00009a00 } } },
121 /* data */
122 [GDT_ENTRY_APMBIOS_BASE+2] = { { { 0x0000ffff, 0x00409200 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +0200123
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100124 [GDT_ENTRY_ESPFIX_SS] = { { { 0x00000000, 0x00c09200 } } },
Brian Gerst0dd76d72009-01-21 17:26:05 +0900125 [GDT_ENTRY_PERCPU] = { { { 0x0000ffff, 0x00cf9200 } } },
Tejun Heo60a53172009-02-09 22:17:40 +0900126 GDT_STACK_CANARY_INIT
Yinghai Lu950ad7f2008-09-04 20:09:01 -0700127#endif
Brian Gerst06deef82009-01-21 17:26:05 +0900128} };
Jeremy Fitzhardinge7a61d352007-05-02 19:27:15 +0200129EXPORT_PER_CPU_SYMBOL_GPL(gdt_page);
Rusty Russellae1ee112007-05-02 19:27:10 +0200130
Yinghai Luba51dce2008-09-04 20:09:02 -0700131#ifdef CONFIG_X86_32
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800132static int cachesize_override __cpuinitdata = -1;
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800133static int disable_x86_serial_nr __cpuinitdata = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135static int __init cachesize_setup(char *str)
136{
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100137 get_option(&str, &cachesize_override);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return 1;
139}
140__setup("cachesize=", cachesize_setup);
141
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100142static int __init x86_fxsr_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Andi Kleen13530252008-01-30 13:33:20 +0100144 setup_clear_cpu_cap(X86_FEATURE_FXSR);
145 setup_clear_cpu_cap(X86_FEATURE_XMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return 1;
147}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148__setup("nofxsr", x86_fxsr_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100150static int __init x86_sep_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Andi Kleen13530252008-01-30 13:33:20 +0100152 setup_clear_cpu_cap(X86_FEATURE_SEP);
Chuck Ebbert4f886512006-03-23 02:59:34 -0800153 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
Chuck Ebbert4f886512006-03-23 02:59:34 -0800155__setup("nosep", x86_sep_setup);
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/* Standard macro to see if a specific flag is changeable */
158static inline int flag_is_changeable_p(u32 flag)
159{
160 u32 f1, f2;
161
Krzysztof Helt94f6bac2008-09-30 23:17:51 +0200162 /*
163 * Cyrix and IDT cpus allow disabling of CPUID
164 * so the code below may return different results
165 * when it is executed before and after enabling
166 * the CPUID. Add "volatile" to not allow gcc to
167 * optimize the subsequent calls to this function.
168 */
169 asm volatile ("pushfl\n\t"
170 "pushfl\n\t"
171 "popl %0\n\t"
172 "movl %0,%1\n\t"
173 "xorl %2,%0\n\t"
174 "pushl %0\n\t"
175 "popfl\n\t"
176 "pushfl\n\t"
177 "popl %0\n\t"
178 "popfl\n\t"
179 : "=&r" (f1), "=&r" (f2)
180 : "ir" (flag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 return ((f1^f2) & flag) != 0;
183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/* Probe for the CPUID instruction */
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800186static int __cpuinit have_cpuid_p(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 return flag_is_changeable_p(X86_EFLAGS_ID);
189}
190
Yinghai Lu0a488a52008-09-04 21:09:47 +0200191static void __cpuinit squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
192{
193 if (cpu_has(c, X86_FEATURE_PN) && disable_x86_serial_nr) {
194 /* Disable processor serial number */
195 unsigned long lo, hi;
196 rdmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
197 lo |= 0x200000;
198 wrmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
199 printk(KERN_NOTICE "CPU serial number disabled.\n");
200 clear_cpu_cap(c, X86_FEATURE_PN);
201
202 /* Disabling the serial number may affect the cpuid level */
203 c->cpuid_level = cpuid_eax(0);
204 }
205}
206
207static int __init x86_serial_nr_setup(char *s)
208{
209 disable_x86_serial_nr = 0;
210 return 1;
211}
212__setup("serialnumber", x86_serial_nr_setup);
Yinghai Luba51dce2008-09-04 20:09:02 -0700213#else
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700214static inline int flag_is_changeable_p(u32 flag)
215{
216 return 1;
217}
Yinghai Luba51dce2008-09-04 20:09:02 -0700218/* Probe for the CPUID instruction */
219static inline int have_cpuid_p(void)
220{
221 return 1;
222}
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700223static inline void squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
224{
225}
Yinghai Luba51dce2008-09-04 20:09:02 -0700226#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228/*
229 * Naming convention should be: <Name> [(<Codename>)]
230 * This table only is used unless init_<vendor>() below doesn't set it;
231 * in particular, if CPUID levels 0x80000002..4 are supported, this isn't used
232 *
233 */
234
235/* Look up CPU names by table lookup. */
236static char __cpuinit *table_lookup_model(struct cpuinfo_x86 *c)
237{
238 struct cpu_model_info *info;
239
240 if (c->x86_model >= 16)
241 return NULL; /* Range check */
242
243 if (!this_cpu)
244 return NULL;
245
246 info = this_cpu->c_models;
247
248 while (info && info->family) {
249 if (info->family == c->x86)
250 return info->model_names[c->x86_model];
251 info++;
252 }
253 return NULL; /* Not found */
254}
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256__u32 cleared_cpu_caps[NCAPINTS] __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Jeremy Fitzhardinge11e3a842009-01-30 17:47:54 +0900258void load_percpu_segment(int cpu)
259{
260#ifdef CONFIG_X86_32
261 loadsegment(fs, __KERNEL_PERCPU);
262#else
263 loadsegment(gs, 0);
264 wrmsrl(MSR_GS_BASE, (unsigned long)per_cpu(irq_stack_union.gs_base, cpu));
265#endif
Tejun Heo60a53172009-02-09 22:17:40 +0900266 load_stack_canary_segment();
Jeremy Fitzhardinge11e3a842009-01-30 17:47:54 +0900267}
268
Yinghai Lu9d31d352008-09-04 21:09:44 +0200269/* Current gdt points %fs at the "master" per-cpu area: after this,
270 * it's on the real one. */
Brian Gerst552be872009-01-30 17:47:53 +0900271void switch_to_new_gdt(int cpu)
Yinghai Lu9d31d352008-09-04 21:09:44 +0200272{
273 struct desc_ptr gdt_descr;
274
Brian Gerst2697fbd2009-01-27 12:56:48 +0900275 gdt_descr.address = (long)get_cpu_gdt_table(cpu);
Yinghai Lu9d31d352008-09-04 21:09:44 +0200276 gdt_descr.size = GDT_SIZE - 1;
277 load_gdt(&gdt_descr);
Brian Gerst2697fbd2009-01-27 12:56:48 +0900278 /* Reload the per-cpu base */
Jeremy Fitzhardinge11e3a842009-01-30 17:47:54 +0900279
280 load_percpu_segment(cpu);
Yinghai Lu9d31d352008-09-04 21:09:44 +0200281}
282
Yinghai Lu10a434f2008-09-04 21:09:45 +0200283static struct cpu_dev *cpu_devs[X86_VENDOR_NUM] = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285static void __cpuinit default_init(struct cpuinfo_x86 *c)
286{
Yinghai Lub9e67f02008-09-04 20:09:06 -0700287#ifdef CONFIG_X86_64
288 display_cacheinfo(c);
289#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /* Not much we can do here... */
291 /* Check if at least it has cpuid */
292 if (c->cpuid_level == -1) {
293 /* No cpuid. It must be an ancient CPU */
294 if (c->x86 == 4)
295 strcpy(c->x86_model_id, "486");
296 else if (c->x86 == 3)
297 strcpy(c->x86_model_id, "386");
298 }
Yinghai Lub9e67f02008-09-04 20:09:06 -0700299#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302static struct cpu_dev __cpuinitdata default_cpu = {
303 .c_init = default_init,
304 .c_vendor = "Unknown",
Yinghai Lu10a434f2008-09-04 21:09:45 +0200305 .c_x86_vendor = X86_VENDOR_UNKNOWN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Yinghai Lu1b05d602008-09-06 01:52:27 -0700308static void __cpuinit get_model_name(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 unsigned int *v;
311 char *p, *q;
312
Yinghai Lu3da99c92008-09-04 21:09:44 +0200313 if (c->extended_cpuid_level < 0x80000004)
Yinghai Lu1b05d602008-09-06 01:52:27 -0700314 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 v = (unsigned int *) c->x86_model_id;
317 cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]);
318 cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]);
319 cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]);
320 c->x86_model_id[48] = 0;
321
322 /* Intel chips right-justify this string for some dumb reason;
323 undo that brain damage */
324 p = q = &c->x86_model_id[0];
325 while (*p == ' ')
326 p++;
327 if (p != q) {
328 while (*p)
329 *q++ = *p++;
330 while (q <= &c->x86_model_id[48])
331 *q++ = '\0'; /* Zero-pad the rest */
332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c)
336{
Yinghai Lu9d31d352008-09-04 21:09:44 +0200337 unsigned int n, dummy, ebx, ecx, edx, l2size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Yinghai Lu3da99c92008-09-04 21:09:44 +0200339 n = c->extended_cpuid_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 if (n >= 0x80000005) {
Yinghai Lu9d31d352008-09-04 21:09:44 +0200342 cpuid(0x80000005, &dummy, &ebx, &ecx, &edx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 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 +0200344 edx>>24, edx&0xFF, ecx>>24, ecx&0xFF);
345 c->x86_cache_size = (ecx>>24) + (edx>>24);
Yinghai Lu140fc722008-09-04 20:09:07 -0700346#ifdef CONFIG_X86_64
347 /* On K8 L1 TLB is inclusive, so don't count it */
348 c->x86_tlbsize = 0;
349#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351
352 if (n < 0x80000006) /* Some chips just has a large L1. */
353 return;
354
Yinghai Lu0a488a52008-09-04 21:09:47 +0200355 cpuid(0x80000006, &dummy, &ebx, &ecx, &edx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 l2size = ecx >> 16;
357
Yinghai Lu140fc722008-09-04 20:09:07 -0700358#ifdef CONFIG_X86_64
359 c->x86_tlbsize += ((ebx >> 16) & 0xfff) + (ebx & 0xfff);
360#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 /* do processor-specific cache resizing */
362 if (this_cpu->c_size_cache)
363 l2size = this_cpu->c_size_cache(c, l2size);
364
365 /* Allow user to override all this if necessary. */
366 if (cachesize_override != -1)
367 l2size = cachesize_override;
368
369 if (l2size == 0)
370 return; /* Again, no L2 cache is possible */
Yinghai Lu140fc722008-09-04 20:09:07 -0700371#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 c->x86_cache_size = l2size;
374
375 printk(KERN_INFO "CPU: L2 Cache: %dK (%d bytes/line)\n",
Yinghai Lu0a488a52008-09-04 21:09:47 +0200376 l2size, ecx & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Yinghai Lu9d31d352008-09-04 21:09:44 +0200379void __cpuinit detect_ht(struct cpuinfo_x86 *c)
380{
Yinghai Lu97e4db72008-09-04 20:08:59 -0700381#ifdef CONFIG_X86_HT
Yinghai Lu0a488a52008-09-04 21:09:47 +0200382 u32 eax, ebx, ecx, edx;
383 int index_msb, core_bits;
384
385 if (!cpu_has(c, X86_FEATURE_HT))
386 return;
387
388 if (cpu_has(c, X86_FEATURE_CMP_LEGACY))
389 goto out;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200390
Yinghai Lu1cd78772008-09-04 20:09:08 -0700391 if (cpu_has(c, X86_FEATURE_XTOPOLOGY))
392 return;
393
Yinghai Lu9d31d352008-09-04 21:09:44 +0200394 cpuid(1, &eax, &ebx, &ecx, &edx);
395
Yinghai Lu9d31d352008-09-04 21:09:44 +0200396 smp_num_siblings = (ebx & 0xff0000) >> 16;
397
398 if (smp_num_siblings == 1) {
399 printk(KERN_INFO "CPU: Hyper-Threading is disabled\n");
400 } else if (smp_num_siblings > 1) {
401
Mike Travis96289372008-12-31 18:08:46 -0800402 if (smp_num_siblings > nr_cpu_ids) {
Yinghai Lu9d31d352008-09-04 21:09:44 +0200403 printk(KERN_WARNING "CPU: Unsupported number of siblings %d",
404 smp_num_siblings);
405 smp_num_siblings = 1;
406 return;
407 }
408
409 index_msb = get_count_order(smp_num_siblings);
Yinghai Lu1cd78772008-09-04 20:09:08 -0700410#ifdef CONFIG_X86_64
411 c->phys_proc_id = phys_pkg_id(index_msb);
412#else
Yinghai Lu9d31d352008-09-04 21:09:44 +0200413 c->phys_proc_id = phys_pkg_id(c->initial_apicid, index_msb);
Yinghai Lu1cd78772008-09-04 20:09:08 -0700414#endif
Yinghai Lu9d31d352008-09-04 21:09:44 +0200415
416 smp_num_siblings = smp_num_siblings / c->x86_max_cores;
417
418 index_msb = get_count_order(smp_num_siblings);
419
420 core_bits = get_count_order(c->x86_max_cores);
421
Yinghai Lu1cd78772008-09-04 20:09:08 -0700422#ifdef CONFIG_X86_64
423 c->cpu_core_id = phys_pkg_id(index_msb) &
424 ((1 << core_bits) - 1);
425#else
Yinghai Lu9d31d352008-09-04 21:09:44 +0200426 c->cpu_core_id = phys_pkg_id(c->initial_apicid, index_msb) &
427 ((1 << core_bits) - 1);
Yinghai Lu1cd78772008-09-04 20:09:08 -0700428#endif
Yinghai Lu0a488a52008-09-04 21:09:47 +0200429 }
Yinghai Lu9d31d352008-09-04 21:09:44 +0200430
Yinghai Lu0a488a52008-09-04 21:09:47 +0200431out:
432 if ((c->x86_max_cores * smp_num_siblings) > 1) {
433 printk(KERN_INFO "CPU: Physical Processor ID: %d\n",
434 c->phys_proc_id);
435 printk(KERN_INFO "CPU: Processor Core ID: %d\n",
436 c->cpu_core_id);
Yinghai Lu9d31d352008-09-04 21:09:44 +0200437 }
Yinghai Lu9d31d352008-09-04 21:09:44 +0200438#endif
Yinghai Lu97e4db72008-09-04 20:08:59 -0700439}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Yinghai Lu3da99c92008-09-04 21:09:44 +0200441static void __cpuinit get_cpu_vendor(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 char *v = c->x86_vendor_id;
444 int i;
445 static int printed;
446
447 for (i = 0; i < X86_VENDOR_NUM; i++) {
Yinghai Lu10a434f2008-09-04 21:09:45 +0200448 if (!cpu_devs[i])
449 break;
450
451 if (!strcmp(v, cpu_devs[i]->c_ident[0]) ||
452 (cpu_devs[i]->c_ident[1] &&
453 !strcmp(v, cpu_devs[i]->c_ident[1]))) {
454 this_cpu = cpu_devs[i];
455 c->x86_vendor = this_cpu->c_x86_vendor;
456 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458 }
Yinghai Lu10a434f2008-09-04 21:09:45 +0200459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (!printed) {
461 printed++;
Hans Schou43603c82008-10-09 20:47:24 +0200462 printk(KERN_ERR "CPU: vendor_id '%s' unknown, using generic init.\n", v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 printk(KERN_ERR "CPU: Your system may be unstable.\n");
464 }
Yinghai Lu10a434f2008-09-04 21:09:45 +0200465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 c->x86_vendor = X86_VENDOR_UNKNOWN;
467 this_cpu = &default_cpu;
468}
469
Yinghai Lu9d31d352008-09-04 21:09:44 +0200470void __cpuinit cpu_detect(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 /* Get vendor name */
Harvey Harrison4a148512008-02-01 17:49:43 +0100473 cpuid(0x00000000, (unsigned int *)&c->cpuid_level,
474 (unsigned int *)&c->x86_vendor_id[0],
475 (unsigned int *)&c->x86_vendor_id[8],
476 (unsigned int *)&c->x86_vendor_id[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 c->x86 = 4;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200479 /* Intel-defined flags: level 0x00000001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (c->cpuid_level >= 0x00000001) {
481 u32 junk, tfms, cap0, misc;
482 cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
Yinghai Lu9d31d352008-09-04 21:09:44 +0200483 c->x86 = (tfms >> 8) & 0xf;
484 c->x86_model = (tfms >> 4) & 0xf;
485 c->x86_mask = tfms & 0xf;
Suresh Siddhaf5f786d2005-11-05 17:25:53 +0100486 if (c->x86 == 0xf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 c->x86 += (tfms >> 20) & 0xff;
Suresh Siddhaf5f786d2005-11-05 17:25:53 +0100488 if (c->x86 >= 0x6)
Yinghai Lu9d31d352008-09-04 21:09:44 +0200489 c->x86_model += ((tfms >> 16) & 0xf) << 4;
Huang, Yingd4387bd2008-01-31 22:05:45 +0100490 if (cap0 & (1<<19)) {
Huang, Yingd4387bd2008-01-31 22:05:45 +0100491 c->x86_clflush_size = ((misc >> 8) & 0xff) * 8;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200492 c->x86_cache_alignment = c->x86_clflush_size;
Huang, Yingd4387bd2008-01-31 22:05:45 +0100493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
Yinghai Lu3da99c92008-09-04 21:09:44 +0200496
497static void __cpuinit get_cpu_cap(struct cpuinfo_x86 *c)
Yinghai Lu093af8d2008-01-30 13:33:32 +0100498{
499 u32 tfms, xlvl;
Yinghai Lu3da99c92008-09-04 21:09:44 +0200500 u32 ebx;
Yinghai Lu093af8d2008-01-30 13:33:32 +0100501
Yinghai Lu3da99c92008-09-04 21:09:44 +0200502 /* Intel-defined flags: level 0x00000001 */
503 if (c->cpuid_level >= 0x00000001) {
504 u32 capability, excap;
505 cpuid(0x00000001, &tfms, &ebx, &excap, &capability);
506 c->x86_capability[0] = capability;
507 c->x86_capability[4] = excap;
Yinghai Lu093af8d2008-01-30 13:33:32 +0100508 }
509
Yinghai Lu3da99c92008-09-04 21:09:44 +0200510 /* AMD-defined flags: level 0x80000001 */
511 xlvl = cpuid_eax(0x80000000);
512 c->extended_cpuid_level = xlvl;
513 if ((xlvl & 0xffff0000) == 0x80000000) {
514 if (xlvl >= 0x80000001) {
515 c->x86_capability[1] = cpuid_edx(0x80000001);
516 c->x86_capability[6] = cpuid_ecx(0x80000001);
517 }
518 }
Yinghai Lu5122c892008-09-04 20:09:09 -0700519
520#ifdef CONFIG_X86_64
Yinghai Lu5122c892008-09-04 20:09:09 -0700521 if (c->extended_cpuid_level >= 0x80000008) {
522 u32 eax = cpuid_eax(0x80000008);
523
524 c->x86_virt_bits = (eax >> 8) & 0xff;
525 c->x86_phys_bits = eax & 0xff;
526 }
527#endif
Yinghai Lue3224232008-09-06 01:52:28 -0700528
529 if (c->extended_cpuid_level >= 0x80000007)
530 c->x86_power = cpuid_edx(0x80000007);
531
Yinghai Lu093af8d2008-01-30 13:33:32 +0100532}
Yinghai Luaef93c82008-09-14 02:33:15 -0700533
534static void __cpuinit identify_cpu_without_cpuid(struct cpuinfo_x86 *c)
535{
536#ifdef CONFIG_X86_32
537 int i;
538
539 /*
540 * First of all, decide if this is a 486 or higher
541 * It's a 486 if we can modify the AC flag
542 */
543 if (flag_is_changeable_p(X86_EFLAGS_AC))
544 c->x86 = 4;
545 else
546 c->x86 = 3;
547
548 for (i = 0; i < X86_VENDOR_NUM; i++)
549 if (cpu_devs[i] && cpu_devs[i]->c_identify) {
550 c->x86_vendor_id[0] = 0;
551 cpu_devs[i]->c_identify(c);
552 if (c->x86_vendor_id[0]) {
553 get_cpu_vendor(c);
554 break;
555 }
556 }
557#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100560/*
561 * Do minimum CPU detection early.
562 * Fields really needed: vendor, cpuid_level, family, model, mask,
563 * cache alignment.
564 * The others are not touched to avoid unwanted side effects.
565 *
566 * WARNING: this function is only called on the BP. Don't add code here
567 * that is supposed to run on all CPUs.
568 */
Yinghai Lu3da99c92008-09-04 21:09:44 +0200569static void __init early_identify_cpu(struct cpuinfo_x86 *c)
Rusty Russelld7cd5612006-12-07 02:14:08 +0100570{
Yinghai Lu6627d242008-09-04 20:09:10 -0700571#ifdef CONFIG_X86_64
572 c->x86_clflush_size = 64;
573#else
Huang, Yingd4387bd2008-01-31 22:05:45 +0100574 c->x86_clflush_size = 32;
Yinghai Lu6627d242008-09-04 20:09:10 -0700575#endif
Yinghai Lu0a488a52008-09-04 21:09:47 +0200576 c->x86_cache_alignment = c->x86_clflush_size;
Rusty Russelld7cd5612006-12-07 02:14:08 +0100577
Yinghai Lu3da99c92008-09-04 21:09:44 +0200578 memset(&c->x86_capability, 0, sizeof c->x86_capability);
Yinghai Lu0a488a52008-09-04 21:09:47 +0200579 c->extended_cpuid_level = 0;
580
Yinghai Luaef93c82008-09-14 02:33:15 -0700581 if (!have_cpuid_p())
582 identify_cpu_without_cpuid(c);
583
584 /* cyrix could have cpuid enabled via c_identify()*/
Rusty Russelld7cd5612006-12-07 02:14:08 +0100585 if (!have_cpuid_p())
586 return;
587
588 cpu_detect(c);
589
Yinghai Lu3da99c92008-09-04 21:09:44 +0200590 get_cpu_vendor(c);
Andi Kleen2b16a232008-01-30 13:32:40 +0100591
Yinghai Lu3da99c92008-09-04 21:09:44 +0200592 get_cpu_cap(c);
Krzysztof Helt12cf1052008-09-04 21:09:43 +0200593
Yinghai Lu10a434f2008-09-04 21:09:45 +0200594 if (this_cpu->c_early_init)
595 this_cpu->c_early_init(c);
Yinghai Lu3da99c92008-09-04 21:09:44 +0200596
597 validate_pat_support(c);
James Bottomleybfcb4c12008-10-30 16:13:37 -0500598
Ingo Molnar1c4acdb2008-10-31 00:43:03 +0100599#ifdef CONFIG_SMP
James Bottomleybfcb4c12008-10-30 16:13:37 -0500600 c->cpu_index = boot_cpu_id;
Ingo Molnar1c4acdb2008-10-31 00:43:03 +0100601#endif
Rusty Russelld7cd5612006-12-07 02:14:08 +0100602}
603
Yinghai Lu9d31d352008-09-04 21:09:44 +0200604void __init early_cpu_init(void)
605{
Yinghai Lu10a434f2008-09-04 21:09:45 +0200606 struct cpu_dev **cdev;
607 int count = 0;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200608
Yinghai Lu10a434f2008-09-04 21:09:45 +0200609 printk("KERNEL supported cpus:\n");
610 for (cdev = __x86_cpu_dev_start; cdev < __x86_cpu_dev_end; cdev++) {
611 struct cpu_dev *cpudev = *cdev;
612 unsigned int j;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200613
Yinghai Lu10a434f2008-09-04 21:09:45 +0200614 if (count >= X86_VENDOR_NUM)
615 break;
616 cpu_devs[count] = cpudev;
617 count++;
618
619 for (j = 0; j < 2; j++) {
620 if (!cpudev->c_ident[j])
621 continue;
622 printk(" %s %s\n", cpudev->c_vendor,
623 cpudev->c_ident[j]);
624 }
625 }
626
Yinghai Lu9d31d352008-09-04 21:09:44 +0200627 early_identify_cpu(&boot_cpu_data);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800628}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700630/*
631 * The NOPL instruction is supposed to exist on all CPUs with
H. Peter Anvinba0593b2008-09-16 09:29:40 -0700632 * family >= 6; unfortunately, that's not true in practice because
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700633 * of early VIA chips and (more importantly) broken virtualizers that
H. Peter Anvinba0593b2008-09-16 09:29:40 -0700634 * are not easy to detect. In the latter case it doesn't even *fail*
635 * reliably, so probing for it doesn't even work. Disable it completely
636 * unless we can find a reliable way to detect all the broken cases.
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700637 */
638static void __cpuinit detect_nopl(struct cpuinfo_x86 *c)
639{
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700640 clear_cpu_cap(c, X86_FEATURE_NOPL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100643static void __cpuinit generic_identify(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Yinghai Lu3da99c92008-09-04 21:09:44 +0200645 c->extended_cpuid_level = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Yinghai Luaef93c82008-09-14 02:33:15 -0700647 if (!have_cpuid_p())
648 identify_cpu_without_cpuid(c);
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100649
Yinghai Luaef93c82008-09-14 02:33:15 -0700650 /* cyrix could have cpuid enabled via c_identify()*/
Ingo Molnara9853dd2008-09-14 14:46:58 +0200651 if (!have_cpuid_p())
Yinghai Luaef93c82008-09-14 02:33:15 -0700652 return;
653
Yinghai Lu3da99c92008-09-04 21:09:44 +0200654 cpu_detect(c);
655
656 get_cpu_vendor(c);
657
658 get_cpu_cap(c);
659
660 if (c->cpuid_level >= 0x00000001) {
661 c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xFF;
Yinghai Lub89d3b32008-09-04 20:09:12 -0700662#ifdef CONFIG_X86_32
663# ifdef CONFIG_X86_HT
Yinghai Lu3da99c92008-09-04 21:09:44 +0200664 c->apicid = phys_pkg_id(c->initial_apicid, 0);
Yinghai Lub89d3b32008-09-04 20:09:12 -0700665# else
Yinghai Lu3da99c92008-09-04 21:09:44 +0200666 c->apicid = c->initial_apicid;
Yinghai Lub89d3b32008-09-04 20:09:12 -0700667# endif
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800668#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Yinghai Lub89d3b32008-09-04 20:09:12 -0700670#ifdef CONFIG_X86_HT
671 c->phys_proc_id = c->initial_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Yinghai Lu3da99c92008-09-04 21:09:44 +0200674
Yinghai Lu1b05d602008-09-06 01:52:27 -0700675 get_model_name(c); /* Default name */
Yinghai Lu3da99c92008-09-04 21:09:44 +0200676
677 init_scattered_cpuid_features(c);
678 detect_nopl(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/*
682 * This does the hard work of actually picking apart the CPU stuff...
683 */
Yinghai Lu9a250342008-06-21 03:24:00 -0700684static void __cpuinit identify_cpu(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 int i;
687
688 c->loops_per_jiffy = loops_per_jiffy;
689 c->x86_cache_size = -1;
690 c->x86_vendor = X86_VENDOR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 c->x86_model = c->x86_mask = 0; /* So far unknown... */
692 c->x86_vendor_id[0] = '\0'; /* Unset */
693 c->x86_model_id[0] = '\0'; /* Unset */
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100694 c->x86_max_cores = 1;
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700695 c->x86_coreid_bits = 0;
Yinghai Lu11fdd252008-09-07 17:58:50 -0700696#ifdef CONFIG_X86_64
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700697 c->x86_clflush_size = 64;
698#else
699 c->cpuid_level = -1; /* CPUID not detected */
Andi Kleen770d1322006-12-07 02:14:05 +0100700 c->x86_clflush_size = 32;
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700701#endif
702 c->x86_cache_alignment = c->x86_clflush_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 memset(&c->x86_capability, 0, sizeof c->x86_capability);
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 generic_identify(c);
706
Andi Kleen38985342008-01-30 13:32:49 +0100707 if (this_cpu->c_identify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 this_cpu->c_identify(c);
709
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700710#ifdef CONFIG_X86_64
711 c->apicid = phys_pkg_id(0);
712#endif
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /*
715 * Vendor-specific initialization. In this section we
716 * canonicalize the feature flags, meaning if there are
717 * features a certain CPU supports which CPUID doesn't
718 * tell us, CPUID claiming incorrect flags, or other bugs,
719 * we handle them here.
720 *
721 * At the end of this section, c->x86_capability better
722 * indicate the features this CPU genuinely supports!
723 */
724 if (this_cpu->c_init)
725 this_cpu->c_init(c);
726
727 /* Disable the PN if appropriate */
728 squash_the_stupid_serial_number(c);
729
730 /*
731 * The vendor-specific functions might have changed features. Now
732 * we do "generic changes."
733 */
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 /* If the model name is still unset, do table lookup. */
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100736 if (!c->x86_model_id[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 char *p;
738 p = table_lookup_model(c);
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100739 if (p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 strcpy(c->x86_model_id, p);
741 else
742 /* Last resort... */
743 sprintf(c->x86_model_id, "%02x/%02x",
Chuck Ebbert54a20f82006-03-23 02:59:36 -0800744 c->x86, c->x86_model);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700747#ifdef CONFIG_X86_64
748 detect_ht(c);
749#endif
750
Alok Kataria88b094f2008-10-27 10:41:46 -0700751 init_hypervisor(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 /*
753 * On SMP, boot_cpu_data holds the common feature set between
754 * all CPUs; so make sure that we indicate which features are
755 * common between the CPUs. The first time this routine gets
756 * executed, c == &boot_cpu_data.
757 */
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100758 if (c != &boot_cpu_data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 /* AND the already accumulated flags with these */
Yinghai Lu9d31d352008-09-04 21:09:44 +0200760 for (i = 0; i < NCAPINTS; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 boot_cpu_data.x86_capability[i] &= c->x86_capability[i];
762 }
763
Andi Kleen7d851c82008-01-30 13:33:20 +0100764 /* Clear all flags overriden by options */
765 for (i = 0; i < NCAPINTS; i++)
Mikael Pettersson12c247a2008-02-24 18:27:03 +0100766 c->x86_capability[i] &= ~cleared_cpu_caps[i];
Andi Kleen7d851c82008-01-30 13:33:20 +0100767
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700768#ifdef CONFIG_X86_MCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /* Init Machine Check Exception if available. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 mcheck_init(c);
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700771#endif
Andi Kleen30d432d2008-01-30 13:33:16 +0100772
773 select_idle_routine(c);
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700774
775#if defined(CONFIG_NUMA) && defined(CONFIG_X86_64)
776 numa_add_cpu(smp_processor_id());
777#endif
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200778}
Shaohua Li31ab2692005-11-07 00:58:42 -0800779
Glauber Costae04d6452008-09-22 14:35:08 -0300780#ifdef CONFIG_X86_64
781static void vgetcpu_set_mode(void)
782{
783 if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP))
784 vgetcpu_mode = VGETCPU_RDTSCP;
785 else
786 vgetcpu_mode = VGETCPU_LSL;
787}
788#endif
789
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200790void __init identify_boot_cpu(void)
791{
792 identify_cpu(&boot_cpu_data);
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700793#ifdef CONFIG_X86_32
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200794 sysenter_setup();
Li Shaohua6fe940d2005-06-25 14:54:53 -0700795 enable_sep_cpu();
Glauber Costae04d6452008-09-22 14:35:08 -0300796#else
797 vgetcpu_set_mode();
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700798#endif
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200799}
Shaohua Li3b520b22005-07-07 17:56:38 -0700800
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200801void __cpuinit identify_secondary_cpu(struct cpuinfo_x86 *c)
802{
803 BUG_ON(c == &boot_cpu_data);
804 identify_cpu(c);
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700805#ifdef CONFIG_X86_32
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200806 enable_sep_cpu();
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700807#endif
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200808 mtrr_ap_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
Yinghai Lua0854a42008-09-04 21:09:46 +0200811struct msr_range {
812 unsigned min;
813 unsigned max;
814};
815
816static struct msr_range msr_range_array[] __cpuinitdata = {
817 { 0x00000000, 0x00000418},
818 { 0xc0000000, 0xc000040b},
819 { 0xc0010000, 0xc0010142},
820 { 0xc0011000, 0xc001103b},
821};
822
823static void __cpuinit print_cpu_msr(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Yinghai Lua0854a42008-09-04 21:09:46 +0200825 unsigned index;
826 u64 val;
827 int i;
828 unsigned index_min, index_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Yinghai Lua0854a42008-09-04 21:09:46 +0200830 for (i = 0; i < ARRAY_SIZE(msr_range_array); i++) {
831 index_min = msr_range_array[i].min;
832 index_max = msr_range_array[i].max;
833 for (index = index_min; index < index_max; index++) {
834 if (rdmsrl_amd_safe(index, &val))
835 continue;
836 printk(KERN_INFO " MSR%08x: %016llx\n", index, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839}
Yinghai Lua0854a42008-09-04 21:09:46 +0200840
841static int show_msr __cpuinitdata;
842static __init int setup_show_msr(char *arg)
843{
844 int num;
845
846 get_option(&arg, &num);
847
848 if (num > 0)
849 show_msr = num;
850 return 1;
851}
852__setup("show_msr=", setup_show_msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Andi Kleen191679f2008-01-30 13:33:21 +0100854static __init int setup_noclflush(char *arg)
855{
856 setup_clear_cpu_cap(X86_FEATURE_CLFLSH);
857 return 1;
858}
859__setup("noclflush", setup_noclflush);
860
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800861void __cpuinit print_cpu_info(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
863 char *vendor = NULL;
864
865 if (c->x86_vendor < X86_VENDOR_NUM)
866 vendor = this_cpu->c_vendor;
867 else if (c->cpuid_level >= 0)
868 vendor = c->x86_vendor_id;
869
Yinghai Lubd32a8cf2008-09-19 18:41:16 -0700870 if (vendor && !strstr(c->x86_model_id, vendor))
Yinghai Lu9d31d352008-09-04 21:09:44 +0200871 printk(KERN_CONT "%s ", vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Yinghai Lu9d31d352008-09-04 21:09:44 +0200873 if (c->x86_model_id[0])
874 printk(KERN_CONT "%s", c->x86_model_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 else
Yinghai Lu9d31d352008-09-04 21:09:44 +0200876 printk(KERN_CONT "%d86", c->x86);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100878 if (c->x86_mask || c->cpuid_level >= 0)
Yinghai Lu9d31d352008-09-04 21:09:44 +0200879 printk(KERN_CONT " stepping %02x\n", c->x86_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 else
Yinghai Lu9d31d352008-09-04 21:09:44 +0200881 printk(KERN_CONT "\n");
Yinghai Lua0854a42008-09-04 21:09:46 +0200882
883#ifdef CONFIG_SMP
884 if (c->cpu_index < show_msr)
885 print_cpu_msr();
886#else
887 if (show_msr)
888 print_cpu_msr();
889#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Andi Kleenac72e782008-01-30 13:33:21 +0100892static __init int setup_disablecpuid(char *arg)
893{
894 int bit;
895 if (get_option(&arg, &bit) && bit < NCAPINTS*32)
896 setup_clear_cpu_cap(bit);
897 else
898 return 0;
899 return 1;
900}
901__setup("clearcpuid=", setup_disablecpuid);
902
Yinghai Lud5494d42008-09-04 20:09:03 -0700903#ifdef CONFIG_X86_64
Yinghai Lud5494d42008-09-04 20:09:03 -0700904struct desc_ptr idt_descr = { 256 * 16 - 1, (unsigned long) idt_table };
905
Brian Gerst947e76c2009-01-19 12:21:28 +0900906DEFINE_PER_CPU_FIRST(union irq_stack_union,
907 irq_stack_union) __aligned(PAGE_SIZE);
Brian Gerst26f80bd2009-01-19 00:38:58 +0900908DEFINE_PER_CPU(char *, irq_stack_ptr) =
Brian Gerst2add8e22009-02-08 09:58:39 -0500909 init_per_cpu_var(irq_stack_union.irq_stack) + IRQ_STACK_SIZE - 64;
Yinghai Lud5494d42008-09-04 20:09:03 -0700910
Brian Gerst9af45652009-01-19 00:38:58 +0900911DEFINE_PER_CPU(unsigned long, kernel_stack) =
912 (unsigned long)&init_thread_union - KERNEL_STACK_OFFSET + THREAD_SIZE;
913EXPORT_PER_CPU_SYMBOL(kernel_stack);
914
Brian Gerst56895532009-01-19 00:38:58 +0900915DEFINE_PER_CPU(unsigned int, irq_count) = -1;
916
Brian Gerst92d65b22009-01-19 00:38:58 +0900917static DEFINE_PER_CPU_PAGE_ALIGNED(char, exception_stacks
918 [(N_EXCEPTION_STACKS - 1) * EXCEPTION_STKSZ + DEBUG_STKSZ])
919 __aligned(PAGE_SIZE);
Yinghai Lud5494d42008-09-04 20:09:03 -0700920
921extern asmlinkage void ignore_sysret(void);
922
923/* May not be marked __init: used by software suspend */
924void syscall_init(void)
925{
926 /*
927 * LSTAR and STAR live in a bit strange symbiosis.
928 * They both write to the same internal register. STAR allows to
929 * set CS/DS but only a 32bit target. LSTAR sets the 64bit rip.
930 */
931 wrmsrl(MSR_STAR, ((u64)__USER32_CS)<<48 | ((u64)__KERNEL_CS)<<32);
932 wrmsrl(MSR_LSTAR, system_call);
933 wrmsrl(MSR_CSTAR, ignore_sysret);
934
935#ifdef CONFIG_IA32_EMULATION
936 syscall32_cpu_init();
937#endif
938
939 /* Flags to clear on syscall */
940 wrmsrl(MSR_SYSCALL_MASK,
941 X86_EFLAGS_TF|X86_EFLAGS_DF|X86_EFLAGS_IF|X86_EFLAGS_IOPL);
942}
943
Yinghai Lud5494d42008-09-04 20:09:03 -0700944unsigned long kernel_eflags;
945
946/*
947 * Copies of the original ist values from the tss are only accessed during
948 * debugging, no special alignment required.
949 */
950DEFINE_PER_CPU(struct orig_ist, orig_ist);
951
Tejun Heo60a53172009-02-09 22:17:40 +0900952#else /* x86_64 */
Yinghai Lud5494d42008-09-04 20:09:03 -0700953
Tejun Heo60a53172009-02-09 22:17:40 +0900954#ifdef CONFIG_CC_STACKPROTECTOR
955DEFINE_PER_CPU(unsigned long, stack_canary);
956#endif
957
958/* Make sure %fs and %gs are initialized properly in idle threads */
Adrian Bunk6b2fb3c2008-02-06 01:37:55 -0800959struct pt_regs * __cpuinit idle_regs(struct pt_regs *regs)
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100960{
961 memset(regs, 0, sizeof(struct pt_regs));
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100962 regs->fs = __KERNEL_PERCPU;
Tejun Heo60a53172009-02-09 22:17:40 +0900963 regs->gs = __KERNEL_STACK_CANARY;
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100964 return regs;
965}
Tejun Heo60a53172009-02-09 22:17:40 +0900966#endif /* x86_64 */
Jeremy Fitzhardingec5413fb2007-05-02 19:27:16 +0200967
Rusty Russelld2cbcc42007-05-02 19:27:10 +0200968/*
969 * cpu_init() initializes state that is per-CPU. Some data is already
970 * initialized (naturally) in the bootstrap process, such as the GDT
971 * and IDT. We reload them nevertheless, this function acts as a
972 * 'CPU state barrier', nothing should get across.
Yinghai Lu1ba76582008-09-04 20:09:04 -0700973 * A lot of state is already set up in PDA init for 64 bit
Rusty Russelld2cbcc42007-05-02 19:27:10 +0200974 */
Yinghai Lu1ba76582008-09-04 20:09:04 -0700975#ifdef CONFIG_X86_64
976void __cpuinit cpu_init(void)
977{
978 int cpu = stack_smp_processor_id();
979 struct tss_struct *t = &per_cpu(init_tss, cpu);
980 struct orig_ist *orig_ist = &per_cpu(orig_ist, cpu);
981 unsigned long v;
Yinghai Lu1ba76582008-09-04 20:09:04 -0700982 struct task_struct *me;
983 int i;
984
Brian Gerste7a22c12009-01-19 00:38:59 +0900985#ifdef CONFIG_NUMA
986 if (cpu != 0 && percpu_read(node_number) == 0 &&
987 cpu_to_node(cpu) != NUMA_NO_NODE)
988 percpu_write(node_number, cpu_to_node(cpu));
989#endif
990
Yinghai Lu1ba76582008-09-04 20:09:04 -0700991 me = current;
992
Mike Travisc2d1cec2009-01-04 05:18:03 -0800993 if (cpumask_test_and_set_cpu(cpu, cpu_initialized_mask))
Yinghai Lu1ba76582008-09-04 20:09:04 -0700994 panic("CPU#%d already initialized!\n", cpu);
995
996 printk(KERN_INFO "Initializing CPU#%d\n", cpu);
997
998 clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
999
1000 /*
1001 * Initialize the per-CPU GDT with the boot GDT,
1002 * and set up the GDT descriptor:
1003 */
1004
Brian Gerst552be872009-01-30 17:47:53 +09001005 switch_to_new_gdt(cpu);
Brian Gerst2697fbd2009-01-27 12:56:48 +09001006 loadsegment(fs, 0);
1007
Yinghai Lu1ba76582008-09-04 20:09:04 -07001008 load_idt((const struct desc_ptr *)&idt_descr);
1009
1010 memset(me->thread.tls_array, 0, GDT_ENTRY_TLS_ENTRIES * 8);
1011 syscall_init();
1012
1013 wrmsrl(MSR_FS_BASE, 0);
1014 wrmsrl(MSR_KERNEL_GS_BASE, 0);
1015 barrier();
1016
1017 check_efer();
1018 if (cpu != 0 && x2apic)
1019 enable_x2apic();
1020
1021 /*
1022 * set up and load the per-CPU TSS
1023 */
1024 if (!orig_ist->ist[0]) {
Brian Gerst92d65b22009-01-19 00:38:58 +09001025 static const unsigned int sizes[N_EXCEPTION_STACKS] = {
1026 [0 ... N_EXCEPTION_STACKS - 1] = EXCEPTION_STKSZ,
1027 [DEBUG_STACK - 1] = DEBUG_STKSZ
Yinghai Lu1ba76582008-09-04 20:09:04 -07001028 };
Brian Gerst92d65b22009-01-19 00:38:58 +09001029 char *estacks = per_cpu(exception_stacks, cpu);
Yinghai Lu1ba76582008-09-04 20:09:04 -07001030 for (v = 0; v < N_EXCEPTION_STACKS; v++) {
Brian Gerst92d65b22009-01-19 00:38:58 +09001031 estacks += sizes[v];
Yinghai Lu1ba76582008-09-04 20:09:04 -07001032 orig_ist->ist[v] = t->x86_tss.ist[v] =
1033 (unsigned long)estacks;
1034 }
1035 }
1036
1037 t->x86_tss.io_bitmap_base = offsetof(struct tss_struct, io_bitmap);
1038 /*
1039 * <= is required because the CPU will access up to
1040 * 8 bits beyond the end of the IO permission bitmap.
1041 */
1042 for (i = 0; i <= IO_BITMAP_LONGS; i++)
1043 t->io_bitmap[i] = ~0UL;
1044
1045 atomic_inc(&init_mm.mm_count);
1046 me->active_mm = &init_mm;
1047 if (me->mm)
1048 BUG();
1049 enter_lazy_tlb(&init_mm, me);
1050
1051 load_sp0(t, &current->thread);
1052 set_tss_desc(cpu, t);
1053 load_TR_desc();
1054 load_LDT(&init_mm.context);
1055
1056#ifdef CONFIG_KGDB
1057 /*
1058 * If the kgdb is connected no debug regs should be altered. This
1059 * is only applicable when KGDB and a KGDB I/O module are built
1060 * into the kernel and you are using early debugging with
1061 * kgdbwait. KGDB will control the kernel HW breakpoint registers.
1062 */
1063 if (kgdb_connected && arch_kgdb_ops.correct_hw_break)
1064 arch_kgdb_ops.correct_hw_break();
1065 else {
1066#endif
1067 /*
1068 * Clear all 6 debug registers:
1069 */
1070
1071 set_debugreg(0UL, 0);
1072 set_debugreg(0UL, 1);
1073 set_debugreg(0UL, 2);
1074 set_debugreg(0UL, 3);
1075 set_debugreg(0UL, 6);
1076 set_debugreg(0UL, 7);
1077#ifdef CONFIG_KGDB
1078 /* If the kgdb is connected no debug regs should be altered. */
1079 }
1080#endif
1081
1082 fpu_init();
1083
1084 raw_local_save_flags(kernel_eflags);
1085
1086 if (is_uv_system())
1087 uv_cpu_init();
1088}
1089
1090#else
1091
Rusty Russelld2cbcc42007-05-02 19:27:10 +02001092void __cpuinit cpu_init(void)
James Bottomley9ee79a32007-01-22 09:18:31 -06001093{
Rusty Russelld2cbcc42007-05-02 19:27:10 +02001094 int cpu = smp_processor_id();
1095 struct task_struct *curr = current;
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +01001096 struct tss_struct *t = &per_cpu(init_tss, cpu);
James Bottomley9ee79a32007-01-22 09:18:31 -06001097 struct thread_struct *thread = &curr->thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Mike Travisc2d1cec2009-01-04 05:18:03 -08001099 if (cpumask_test_and_set_cpu(cpu, cpu_initialized_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 printk(KERN_WARNING "CPU#%d already initialized!\n", cpu);
1101 for (;;) local_irq_enable();
1102 }
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +01001103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 printk(KERN_INFO "Initializing CPU#%d\n", cpu);
1105
1106 if (cpu_has_vme || cpu_has_tsc || cpu_has_de)
1107 clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Zachary Amsden4d37e7e2005-09-03 15:56:38 -07001109 load_idt(&idt_descr);
Brian Gerst552be872009-01-30 17:47:53 +09001110 switch_to_new_gdt(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 * Set up and load the per-CPU TSS and LDT
1114 */
1115 atomic_inc(&init_mm.mm_count);
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +01001116 curr->active_mm = &init_mm;
1117 if (curr->mm)
1118 BUG();
1119 enter_lazy_tlb(&init_mm, curr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
H. Peter Anvinfaca6222008-01-30 13:31:02 +01001121 load_sp0(t, thread);
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +01001122 set_tss_desc(cpu, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 load_TR_desc();
1124 load_LDT(&init_mm.context);
1125
Matt Mackall22c4e302006-01-08 01:05:24 -08001126#ifdef CONFIG_DOUBLEFAULT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 /* Set up doublefault TSS pointer in the GDT */
1128 __set_tss_desc(cpu, GDT_ENTRY_DOUBLEFAULT_TSS, &doublefault_tss);
Matt Mackall22c4e302006-01-08 01:05:24 -08001129#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 /* Clear all 6 debug registers: */
Zachary Amsden4bb0d3e2005-09-03 15:56:36 -07001132 set_debugreg(0, 0);
1133 set_debugreg(0, 1);
1134 set_debugreg(0, 2);
1135 set_debugreg(0, 3);
1136 set_debugreg(0, 6);
1137 set_debugreg(0, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 /*
1140 * Force FPU initialization:
1141 */
Suresh Siddhab359e8a2008-07-29 10:29:20 -07001142 if (cpu_has_xsave)
1143 current_thread_info()->status = TS_XSAVE;
1144 else
1145 current_thread_info()->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 clear_used_math();
1147 mxcsr_feature_mask_init();
Suresh Siddhadc1e35c2008-07-29 10:29:19 -07001148
1149 /*
1150 * Boot processor to setup the FP and extended state context info.
1151 */
James Bottomleyb3572e32008-10-30 16:00:59 -05001152 if (smp_processor_id() == boot_cpu_id)
Suresh Siddhadc1e35c2008-07-29 10:29:19 -07001153 init_thread_xstate();
1154
1155 xsave_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
Li Shaohuae1367da2005-06-25 14:54:56 -07001157
Yinghai Lu1ba76582008-09-04 20:09:04 -07001158
1159#endif