blob: 6fd316689c47a17388bdb6621662e1adbba4f7a6 [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>
Ingo Molnar5c167b82008-12-17 09:02:19 +010020#include <asm/perf_counter.h>
Thomas Gleixner8d4a4302008-05-08 09:18:43 +020021#include <asm/pat.h>
H. Peter Anvinb6734c32008-08-18 17:39:32 -070022#include <asm/asm.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -070023#include <asm/numa.h>
Ingo Molnarb3427972008-10-31 09:31:38 +010024#include <asm/smp.h>
Jaswinder Singh Rajputf472cdb2009-01-07 21:34:25 +053025#include <asm/cpu.h>
Jaswinder Singh Rajput06879032009-01-10 12:17:37 +053026#include <asm/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#ifdef CONFIG_X86_LOCAL_APIC
28#include <asm/mpspec.h>
29#include <asm/apic.h>
30#include <mach_apic.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -070031#include <asm/genapic.h>
Tejun Heobdbcdd42009-01-21 17:26:06 +090032#include <asm/uv/uv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#endif
34
Yinghai Luf0fc4af2008-09-04 20:09:00 -070035#include <asm/pgtable.h>
36#include <asm/processor.h>
37#include <asm/desc.h>
38#include <asm/atomic.h>
39#include <asm/proto.h>
40#include <asm/sections.h>
41#include <asm/setup.h>
Alok Kataria88b094f2008-10-27 10:41:46 -070042#include <asm/hypervisor.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
56#else /* CONFIG_X86_32 */
57
58cpumask_t cpu_callin_map;
59cpumask_t cpu_callout_map;
60cpumask_t cpu_initialized;
61cpumask_t cpu_sibling_setup_map;
62
63#endif /* CONFIG_X86_32 */
64
65
Yinghai Lu0a488a52008-09-04 21:09:47 +020066static struct cpu_dev *this_cpu __cpuinitdata;
67
Brian Gerst06deef82009-01-21 17:26:05 +090068DEFINE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page) = { .gdt = {
Yinghai Lu950ad7f2008-09-04 20:09:01 -070069#ifdef CONFIG_X86_64
Brian Gerst06deef82009-01-21 17:26:05 +090070 /*
71 * We need valid kernel segments for data and code in long mode too
72 * IRET will check the segment types kkeil 2000/10/28
73 * Also sysret mandates a special GDT layout
74 *
75 * The TLS descriptors are currently at a different place compared to i386.
76 * Hopefully nobody expects them at a fixed place (Wine?)
77 */
Yinghai Lu950ad7f2008-09-04 20:09:01 -070078 [GDT_ENTRY_KERNEL32_CS] = { { { 0x0000ffff, 0x00cf9b00 } } },
79 [GDT_ENTRY_KERNEL_CS] = { { { 0x0000ffff, 0x00af9b00 } } },
80 [GDT_ENTRY_KERNEL_DS] = { { { 0x0000ffff, 0x00cf9300 } } },
81 [GDT_ENTRY_DEFAULT_USER32_CS] = { { { 0x0000ffff, 0x00cffb00 } } },
82 [GDT_ENTRY_DEFAULT_USER_DS] = { { { 0x0000ffff, 0x00cff300 } } },
83 [GDT_ENTRY_DEFAULT_USER_CS] = { { { 0x0000ffff, 0x00affb00 } } },
Yinghai Lu950ad7f2008-09-04 20:09:01 -070084#else
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +010085 [GDT_ENTRY_KERNEL_CS] = { { { 0x0000ffff, 0x00cf9a00 } } },
86 [GDT_ENTRY_KERNEL_DS] = { { { 0x0000ffff, 0x00cf9200 } } },
87 [GDT_ENTRY_DEFAULT_USER_CS] = { { { 0x0000ffff, 0x00cffa00 } } },
88 [GDT_ENTRY_DEFAULT_USER_DS] = { { { 0x0000ffff, 0x00cff200 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +020089 /*
90 * Segments used for calling PnP BIOS have byte granularity.
91 * They code segments and data segments have fixed 64k limits,
92 * the transfer segment sizes are set at run time.
93 */
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +010094 /* 32-bit code */
95 [GDT_ENTRY_PNPBIOS_CS32] = { { { 0x0000ffff, 0x00409a00 } } },
96 /* 16-bit code */
97 [GDT_ENTRY_PNPBIOS_CS16] = { { { 0x0000ffff, 0x00009a00 } } },
98 /* 16-bit data */
99 [GDT_ENTRY_PNPBIOS_DS] = { { { 0x0000ffff, 0x00009200 } } },
100 /* 16-bit data */
101 [GDT_ENTRY_PNPBIOS_TS1] = { { { 0x00000000, 0x00009200 } } },
102 /* 16-bit data */
103 [GDT_ENTRY_PNPBIOS_TS2] = { { { 0x00000000, 0x00009200 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +0200104 /*
105 * The APM segments have byte granularity and their bases
106 * are set at run time. All have 64k limits.
107 */
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100108 /* 32-bit code */
109 [GDT_ENTRY_APMBIOS_BASE] = { { { 0x0000ffff, 0x00409a00 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +0200110 /* 16-bit code */
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100111 [GDT_ENTRY_APMBIOS_BASE+1] = { { { 0x0000ffff, 0x00009a00 } } },
112 /* data */
113 [GDT_ENTRY_APMBIOS_BASE+2] = { { { 0x0000ffff, 0x00409200 } } },
Rusty Russellbf5046722007-05-02 19:27:10 +0200114
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100115 [GDT_ENTRY_ESPFIX_SS] = { { { 0x00000000, 0x00c09200 } } },
Brian Gerst0dd76d72009-01-21 17:26:05 +0900116 [GDT_ENTRY_PERCPU] = { { { 0x0000ffff, 0x00cf9200 } } },
Yinghai Lu950ad7f2008-09-04 20:09:01 -0700117#endif
Brian Gerst06deef82009-01-21 17:26:05 +0900118} };
Jeremy Fitzhardinge7a61d352007-05-02 19:27:15 +0200119EXPORT_PER_CPU_SYMBOL_GPL(gdt_page);
Rusty Russellae1ee112007-05-02 19:27:10 +0200120
Yinghai Luba51dce2008-09-04 20:09:02 -0700121#ifdef CONFIG_X86_32
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800122static int cachesize_override __cpuinitdata = -1;
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800123static int disable_x86_serial_nr __cpuinitdata = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static int __init cachesize_setup(char *str)
126{
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100127 get_option(&str, &cachesize_override);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return 1;
129}
130__setup("cachesize=", cachesize_setup);
131
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100132static int __init x86_fxsr_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Andi Kleen13530252008-01-30 13:33:20 +0100134 setup_clear_cpu_cap(X86_FEATURE_FXSR);
135 setup_clear_cpu_cap(X86_FEATURE_XMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return 1;
137}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138__setup("nofxsr", x86_fxsr_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100140static int __init x86_sep_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Andi Kleen13530252008-01-30 13:33:20 +0100142 setup_clear_cpu_cap(X86_FEATURE_SEP);
Chuck Ebbert4f886512006-03-23 02:59:34 -0800143 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
Chuck Ebbert4f886512006-03-23 02:59:34 -0800145__setup("nosep", x86_sep_setup);
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/* Standard macro to see if a specific flag is changeable */
148static inline int flag_is_changeable_p(u32 flag)
149{
150 u32 f1, f2;
151
Krzysztof Helt94f6bac2008-09-30 23:17:51 +0200152 /*
153 * Cyrix and IDT cpus allow disabling of CPUID
154 * so the code below may return different results
155 * when it is executed before and after enabling
156 * the CPUID. Add "volatile" to not allow gcc to
157 * optimize the subsequent calls to this function.
158 */
159 asm volatile ("pushfl\n\t"
160 "pushfl\n\t"
161 "popl %0\n\t"
162 "movl %0,%1\n\t"
163 "xorl %2,%0\n\t"
164 "pushl %0\n\t"
165 "popfl\n\t"
166 "pushfl\n\t"
167 "popl %0\n\t"
168 "popfl\n\t"
169 : "=&r" (f1), "=&r" (f2)
170 : "ir" (flag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 return ((f1^f2) & flag) != 0;
173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/* Probe for the CPUID instruction */
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800176static int __cpuinit have_cpuid_p(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 return flag_is_changeable_p(X86_EFLAGS_ID);
179}
180
Yinghai Lu0a488a52008-09-04 21:09:47 +0200181static void __cpuinit squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
182{
183 if (cpu_has(c, X86_FEATURE_PN) && disable_x86_serial_nr) {
184 /* Disable processor serial number */
185 unsigned long lo, hi;
186 rdmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
187 lo |= 0x200000;
188 wrmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
189 printk(KERN_NOTICE "CPU serial number disabled.\n");
190 clear_cpu_cap(c, X86_FEATURE_PN);
191
192 /* Disabling the serial number may affect the cpuid level */
193 c->cpuid_level = cpuid_eax(0);
194 }
195}
196
197static int __init x86_serial_nr_setup(char *s)
198{
199 disable_x86_serial_nr = 0;
200 return 1;
201}
202__setup("serialnumber", x86_serial_nr_setup);
Yinghai Luba51dce2008-09-04 20:09:02 -0700203#else
Yinghai Lu102bbe32008-09-04 20:09:13 -0700204static inline int flag_is_changeable_p(u32 flag)
205{
206 return 1;
207}
Yinghai Luba51dce2008-09-04 20:09:02 -0700208/* Probe for the CPUID instruction */
209static inline int have_cpuid_p(void)
210{
211 return 1;
212}
Yinghai Lu102bbe32008-09-04 20:09:13 -0700213static inline void squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
214{
215}
Yinghai Luba51dce2008-09-04 20:09:02 -0700216#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218/*
219 * Naming convention should be: <Name> [(<Codename>)]
220 * This table only is used unless init_<vendor>() below doesn't set it;
221 * in particular, if CPUID levels 0x80000002..4 are supported, this isn't used
222 *
223 */
224
225/* Look up CPU names by table lookup. */
226static char __cpuinit *table_lookup_model(struct cpuinfo_x86 *c)
227{
228 struct cpu_model_info *info;
229
230 if (c->x86_model >= 16)
231 return NULL; /* Range check */
232
233 if (!this_cpu)
234 return NULL;
235
236 info = this_cpu->c_models;
237
238 while (info && info->family) {
239 if (info->family == c->x86)
240 return info->model_names[c->x86_model];
241 info++;
242 }
243 return NULL; /* Not found */
244}
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246__u32 cleared_cpu_caps[NCAPINTS] __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Yinghai Lu9d31d352008-09-04 21:09:44 +0200248/* Current gdt points %fs at the "master" per-cpu area: after this,
249 * it's on the real one. */
250void switch_to_new_gdt(void)
251{
252 struct desc_ptr gdt_descr;
253
254 gdt_descr.address = (long)get_cpu_gdt_table(smp_processor_id());
255 gdt_descr.size = GDT_SIZE - 1;
256 load_gdt(&gdt_descr);
Yinghai Lufab334c2008-09-04 20:09:05 -0700257#ifdef CONFIG_X86_32
Yinghai Lu9d31d352008-09-04 21:09:44 +0200258 asm("mov %0, %%fs" : : "r" (__KERNEL_PERCPU) : "memory");
Yinghai Lufab334c2008-09-04 20:09:05 -0700259#endif
Yinghai Lu9d31d352008-09-04 21:09:44 +0200260}
261
Yinghai Lu10a434f2008-09-04 21:09:45 +0200262static struct cpu_dev *cpu_devs[X86_VENDOR_NUM] = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264static void __cpuinit default_init(struct cpuinfo_x86 *c)
265{
Yinghai Lub9e67f02008-09-04 20:09:06 -0700266#ifdef CONFIG_X86_64
267 display_cacheinfo(c);
268#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /* Not much we can do here... */
270 /* Check if at least it has cpuid */
271 if (c->cpuid_level == -1) {
272 /* No cpuid. It must be an ancient CPU */
273 if (c->x86 == 4)
274 strcpy(c->x86_model_id, "486");
275 else if (c->x86 == 3)
276 strcpy(c->x86_model_id, "386");
277 }
Yinghai Lub9e67f02008-09-04 20:09:06 -0700278#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281static struct cpu_dev __cpuinitdata default_cpu = {
282 .c_init = default_init,
283 .c_vendor = "Unknown",
Yinghai Lu10a434f2008-09-04 21:09:45 +0200284 .c_x86_vendor = X86_VENDOR_UNKNOWN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Yinghai Lu1b05d602008-09-06 01:52:27 -0700287static void __cpuinit get_model_name(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 unsigned int *v;
290 char *p, *q;
291
Yinghai Lu3da99c92008-09-04 21:09:44 +0200292 if (c->extended_cpuid_level < 0x80000004)
Yinghai Lu1b05d602008-09-06 01:52:27 -0700293 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 v = (unsigned int *) c->x86_model_id;
296 cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]);
297 cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]);
298 cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]);
299 c->x86_model_id[48] = 0;
300
301 /* Intel chips right-justify this string for some dumb reason;
302 undo that brain damage */
303 p = q = &c->x86_model_id[0];
304 while (*p == ' ')
305 p++;
306 if (p != q) {
307 while (*p)
308 *q++ = *p++;
309 while (q <= &c->x86_model_id[48])
310 *q++ = '\0'; /* Zero-pad the rest */
311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c)
315{
Yinghai Lu9d31d352008-09-04 21:09:44 +0200316 unsigned int n, dummy, ebx, ecx, edx, l2size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Yinghai Lu3da99c92008-09-04 21:09:44 +0200318 n = c->extended_cpuid_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 if (n >= 0x80000005) {
Yinghai Lu9d31d352008-09-04 21:09:44 +0200321 cpuid(0x80000005, &dummy, &ebx, &ecx, &edx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 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 +0200323 edx>>24, edx&0xFF, ecx>>24, ecx&0xFF);
324 c->x86_cache_size = (ecx>>24) + (edx>>24);
Yinghai Lu140fc722008-09-04 20:09:07 -0700325#ifdef CONFIG_X86_64
326 /* On K8 L1 TLB is inclusive, so don't count it */
327 c->x86_tlbsize = 0;
328#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330
331 if (n < 0x80000006) /* Some chips just has a large L1. */
332 return;
333
Yinghai Lu0a488a52008-09-04 21:09:47 +0200334 cpuid(0x80000006, &dummy, &ebx, &ecx, &edx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 l2size = ecx >> 16;
336
Yinghai Lu140fc722008-09-04 20:09:07 -0700337#ifdef CONFIG_X86_64
338 c->x86_tlbsize += ((ebx >> 16) & 0xfff) + (ebx & 0xfff);
339#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /* do processor-specific cache resizing */
341 if (this_cpu->c_size_cache)
342 l2size = this_cpu->c_size_cache(c, l2size);
343
344 /* Allow user to override all this if necessary. */
345 if (cachesize_override != -1)
346 l2size = cachesize_override;
347
348 if (l2size == 0)
349 return; /* Again, no L2 cache is possible */
Yinghai Lu140fc722008-09-04 20:09:07 -0700350#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 c->x86_cache_size = l2size;
353
354 printk(KERN_INFO "CPU: L2 Cache: %dK (%d bytes/line)\n",
Yinghai Lu0a488a52008-09-04 21:09:47 +0200355 l2size, ecx & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
Yinghai Lu9d31d352008-09-04 21:09:44 +0200358void __cpuinit detect_ht(struct cpuinfo_x86 *c)
359{
Yinghai Lu97e4db72008-09-04 20:08:59 -0700360#ifdef CONFIG_X86_HT
Yinghai Lu0a488a52008-09-04 21:09:47 +0200361 u32 eax, ebx, ecx, edx;
362 int index_msb, core_bits;
363
364 if (!cpu_has(c, X86_FEATURE_HT))
365 return;
366
367 if (cpu_has(c, X86_FEATURE_CMP_LEGACY))
368 goto out;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200369
Yinghai Lu1cd78772008-09-04 20:09:08 -0700370 if (cpu_has(c, X86_FEATURE_XTOPOLOGY))
371 return;
372
Yinghai Lu9d31d352008-09-04 21:09:44 +0200373 cpuid(1, &eax, &ebx, &ecx, &edx);
374
Yinghai Lu9d31d352008-09-04 21:09:44 +0200375 smp_num_siblings = (ebx & 0xff0000) >> 16;
376
377 if (smp_num_siblings == 1) {
378 printk(KERN_INFO "CPU: Hyper-Threading is disabled\n");
379 } else if (smp_num_siblings > 1) {
380
Mike Travis96289372008-12-31 18:08:46 -0800381 if (smp_num_siblings > nr_cpu_ids) {
Yinghai Lu9d31d352008-09-04 21:09:44 +0200382 printk(KERN_WARNING "CPU: Unsupported number of siblings %d",
383 smp_num_siblings);
384 smp_num_siblings = 1;
385 return;
386 }
387
388 index_msb = get_count_order(smp_num_siblings);
Yinghai Lu1cd78772008-09-04 20:09:08 -0700389#ifdef CONFIG_X86_64
390 c->phys_proc_id = phys_pkg_id(index_msb);
391#else
Yinghai Lu9d31d352008-09-04 21:09:44 +0200392 c->phys_proc_id = phys_pkg_id(c->initial_apicid, index_msb);
Yinghai Lu1cd78772008-09-04 20:09:08 -0700393#endif
Yinghai Lu9d31d352008-09-04 21:09:44 +0200394
395 smp_num_siblings = smp_num_siblings / c->x86_max_cores;
396
397 index_msb = get_count_order(smp_num_siblings);
398
399 core_bits = get_count_order(c->x86_max_cores);
400
Yinghai Lu1cd78772008-09-04 20:09:08 -0700401#ifdef CONFIG_X86_64
402 c->cpu_core_id = phys_pkg_id(index_msb) &
403 ((1 << core_bits) - 1);
404#else
Yinghai Lu9d31d352008-09-04 21:09:44 +0200405 c->cpu_core_id = phys_pkg_id(c->initial_apicid, index_msb) &
406 ((1 << core_bits) - 1);
Yinghai Lu1cd78772008-09-04 20:09:08 -0700407#endif
Yinghai Lu0a488a52008-09-04 21:09:47 +0200408 }
Yinghai Lu9d31d352008-09-04 21:09:44 +0200409
Yinghai Lu0a488a52008-09-04 21:09:47 +0200410out:
411 if ((c->x86_max_cores * smp_num_siblings) > 1) {
412 printk(KERN_INFO "CPU: Physical Processor ID: %d\n",
413 c->phys_proc_id);
414 printk(KERN_INFO "CPU: Processor Core ID: %d\n",
415 c->cpu_core_id);
Yinghai Lu9d31d352008-09-04 21:09:44 +0200416 }
Yinghai Lu9d31d352008-09-04 21:09:44 +0200417#endif
Yinghai Lu97e4db72008-09-04 20:08:59 -0700418}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Yinghai Lu3da99c92008-09-04 21:09:44 +0200420static void __cpuinit get_cpu_vendor(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 char *v = c->x86_vendor_id;
423 int i;
424 static int printed;
425
426 for (i = 0; i < X86_VENDOR_NUM; i++) {
Yinghai Lu10a434f2008-09-04 21:09:45 +0200427 if (!cpu_devs[i])
428 break;
429
430 if (!strcmp(v, cpu_devs[i]->c_ident[0]) ||
431 (cpu_devs[i]->c_ident[1] &&
432 !strcmp(v, cpu_devs[i]->c_ident[1]))) {
433 this_cpu = cpu_devs[i];
434 c->x86_vendor = this_cpu->c_x86_vendor;
435 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437 }
Yinghai Lu10a434f2008-09-04 21:09:45 +0200438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (!printed) {
440 printed++;
Hans Schou43603c82008-10-09 20:47:24 +0200441 printk(KERN_ERR "CPU: vendor_id '%s' unknown, using generic init.\n", v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 printk(KERN_ERR "CPU: Your system may be unstable.\n");
443 }
Yinghai Lu10a434f2008-09-04 21:09:45 +0200444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 c->x86_vendor = X86_VENDOR_UNKNOWN;
446 this_cpu = &default_cpu;
447}
448
Yinghai Lu9d31d352008-09-04 21:09:44 +0200449void __cpuinit cpu_detect(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /* Get vendor name */
Harvey Harrison4a148512008-02-01 17:49:43 +0100452 cpuid(0x00000000, (unsigned int *)&c->cpuid_level,
453 (unsigned int *)&c->x86_vendor_id[0],
454 (unsigned int *)&c->x86_vendor_id[8],
455 (unsigned int *)&c->x86_vendor_id[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 c->x86 = 4;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200458 /* Intel-defined flags: level 0x00000001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (c->cpuid_level >= 0x00000001) {
460 u32 junk, tfms, cap0, misc;
461 cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
Yinghai Lu9d31d352008-09-04 21:09:44 +0200462 c->x86 = (tfms >> 8) & 0xf;
463 c->x86_model = (tfms >> 4) & 0xf;
464 c->x86_mask = tfms & 0xf;
Suresh Siddhaf5f786d2005-11-05 17:25:53 +0100465 if (c->x86 == 0xf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 c->x86 += (tfms >> 20) & 0xff;
Suresh Siddhaf5f786d2005-11-05 17:25:53 +0100467 if (c->x86 >= 0x6)
Yinghai Lu9d31d352008-09-04 21:09:44 +0200468 c->x86_model += ((tfms >> 16) & 0xf) << 4;
Huang, Yingd4387bd2008-01-31 22:05:45 +0100469 if (cap0 & (1<<19)) {
Huang, Yingd4387bd2008-01-31 22:05:45 +0100470 c->x86_clflush_size = ((misc >> 8) & 0xff) * 8;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200471 c->x86_cache_alignment = c->x86_clflush_size;
Huang, Yingd4387bd2008-01-31 22:05:45 +0100472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
Yinghai Lu3da99c92008-09-04 21:09:44 +0200475
476static void __cpuinit get_cpu_cap(struct cpuinfo_x86 *c)
Yinghai Lu093af8d2008-01-30 13:33:32 +0100477{
478 u32 tfms, xlvl;
Yinghai Lu3da99c92008-09-04 21:09:44 +0200479 u32 ebx;
Yinghai Lu093af8d2008-01-30 13:33:32 +0100480
Yinghai Lu3da99c92008-09-04 21:09:44 +0200481 /* Intel-defined flags: level 0x00000001 */
482 if (c->cpuid_level >= 0x00000001) {
483 u32 capability, excap;
484 cpuid(0x00000001, &tfms, &ebx, &excap, &capability);
485 c->x86_capability[0] = capability;
486 c->x86_capability[4] = excap;
Yinghai Lu093af8d2008-01-30 13:33:32 +0100487 }
488
Yinghai Lu3da99c92008-09-04 21:09:44 +0200489 /* AMD-defined flags: level 0x80000001 */
490 xlvl = cpuid_eax(0x80000000);
491 c->extended_cpuid_level = xlvl;
492 if ((xlvl & 0xffff0000) == 0x80000000) {
493 if (xlvl >= 0x80000001) {
494 c->x86_capability[1] = cpuid_edx(0x80000001);
495 c->x86_capability[6] = cpuid_ecx(0x80000001);
496 }
497 }
Yinghai Lu5122c892008-09-04 20:09:09 -0700498
499#ifdef CONFIG_X86_64
Yinghai Lu5122c892008-09-04 20:09:09 -0700500 if (c->extended_cpuid_level >= 0x80000008) {
501 u32 eax = cpuid_eax(0x80000008);
502
503 c->x86_virt_bits = (eax >> 8) & 0xff;
504 c->x86_phys_bits = eax & 0xff;
505 }
506#endif
Yinghai Lue3224232008-09-06 01:52:28 -0700507
508 if (c->extended_cpuid_level >= 0x80000007)
509 c->x86_power = cpuid_edx(0x80000007);
510
Yinghai Lu093af8d2008-01-30 13:33:32 +0100511}
Yinghai Luaef93c82008-09-14 02:33:15 -0700512
513static void __cpuinit identify_cpu_without_cpuid(struct cpuinfo_x86 *c)
514{
515#ifdef CONFIG_X86_32
516 int i;
517
518 /*
519 * First of all, decide if this is a 486 or higher
520 * It's a 486 if we can modify the AC flag
521 */
522 if (flag_is_changeable_p(X86_EFLAGS_AC))
523 c->x86 = 4;
524 else
525 c->x86 = 3;
526
527 for (i = 0; i < X86_VENDOR_NUM; i++)
528 if (cpu_devs[i] && cpu_devs[i]->c_identify) {
529 c->x86_vendor_id[0] = 0;
530 cpu_devs[i]->c_identify(c);
531 if (c->x86_vendor_id[0]) {
532 get_cpu_vendor(c);
533 break;
534 }
535 }
536#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100539/*
540 * Do minimum CPU detection early.
541 * Fields really needed: vendor, cpuid_level, family, model, mask,
542 * cache alignment.
543 * The others are not touched to avoid unwanted side effects.
544 *
545 * WARNING: this function is only called on the BP. Don't add code here
546 * that is supposed to run on all CPUs.
547 */
Yinghai Lu3da99c92008-09-04 21:09:44 +0200548static void __init early_identify_cpu(struct cpuinfo_x86 *c)
Rusty Russelld7cd5612006-12-07 02:14:08 +0100549{
Yinghai Lu6627d242008-09-04 20:09:10 -0700550#ifdef CONFIG_X86_64
551 c->x86_clflush_size = 64;
552#else
Huang, Yingd4387bd2008-01-31 22:05:45 +0100553 c->x86_clflush_size = 32;
Yinghai Lu6627d242008-09-04 20:09:10 -0700554#endif
Yinghai Lu0a488a52008-09-04 21:09:47 +0200555 c->x86_cache_alignment = c->x86_clflush_size;
Rusty Russelld7cd5612006-12-07 02:14:08 +0100556
Yinghai Lu3da99c92008-09-04 21:09:44 +0200557 memset(&c->x86_capability, 0, sizeof c->x86_capability);
Yinghai Lu0a488a52008-09-04 21:09:47 +0200558 c->extended_cpuid_level = 0;
559
Yinghai Luaef93c82008-09-14 02:33:15 -0700560 if (!have_cpuid_p())
561 identify_cpu_without_cpuid(c);
562
563 /* cyrix could have cpuid enabled via c_identify()*/
Rusty Russelld7cd5612006-12-07 02:14:08 +0100564 if (!have_cpuid_p())
565 return;
566
567 cpu_detect(c);
568
Yinghai Lu3da99c92008-09-04 21:09:44 +0200569 get_cpu_vendor(c);
Andi Kleen2b16a232008-01-30 13:32:40 +0100570
Yinghai Lu3da99c92008-09-04 21:09:44 +0200571 get_cpu_cap(c);
Krzysztof Helt12cf1052008-09-04 21:09:43 +0200572
Yinghai Lu10a434f2008-09-04 21:09:45 +0200573 if (this_cpu->c_early_init)
574 this_cpu->c_early_init(c);
Yinghai Lu3da99c92008-09-04 21:09:44 +0200575
576 validate_pat_support(c);
James Bottomleybfcb4c12008-10-30 16:13:37 -0500577
Ingo Molnar1c4acdb2008-10-31 00:43:03 +0100578#ifdef CONFIG_SMP
James Bottomleybfcb4c12008-10-30 16:13:37 -0500579 c->cpu_index = boot_cpu_id;
Ingo Molnar1c4acdb2008-10-31 00:43:03 +0100580#endif
Rusty Russelld7cd5612006-12-07 02:14:08 +0100581}
582
Yinghai Lu9d31d352008-09-04 21:09:44 +0200583void __init early_cpu_init(void)
584{
Yinghai Lu10a434f2008-09-04 21:09:45 +0200585 struct cpu_dev **cdev;
586 int count = 0;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200587
Yinghai Lu10a434f2008-09-04 21:09:45 +0200588 printk("KERNEL supported cpus:\n");
589 for (cdev = __x86_cpu_dev_start; cdev < __x86_cpu_dev_end; cdev++) {
590 struct cpu_dev *cpudev = *cdev;
591 unsigned int j;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200592
Yinghai Lu10a434f2008-09-04 21:09:45 +0200593 if (count >= X86_VENDOR_NUM)
594 break;
595 cpu_devs[count] = cpudev;
596 count++;
597
598 for (j = 0; j < 2; j++) {
599 if (!cpudev->c_ident[j])
600 continue;
601 printk(" %s %s\n", cpudev->c_vendor,
602 cpudev->c_ident[j]);
603 }
604 }
605
Yinghai Lu9d31d352008-09-04 21:09:44 +0200606 early_identify_cpu(&boot_cpu_data);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800607}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700609/*
610 * The NOPL instruction is supposed to exist on all CPUs with
H. Peter Anvinba0593b2008-09-16 09:29:40 -0700611 * family >= 6; unfortunately, that's not true in practice because
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700612 * of early VIA chips and (more importantly) broken virtualizers that
H. Peter Anvinba0593b2008-09-16 09:29:40 -0700613 * are not easy to detect. In the latter case it doesn't even *fail*
614 * reliably, so probing for it doesn't even work. Disable it completely
615 * unless we can find a reliable way to detect all the broken cases.
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700616 */
617static void __cpuinit detect_nopl(struct cpuinfo_x86 *c)
618{
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700619 clear_cpu_cap(c, X86_FEATURE_NOPL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100622static void __cpuinit generic_identify(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Yinghai Lu3da99c92008-09-04 21:09:44 +0200624 c->extended_cpuid_level = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Yinghai Luaef93c82008-09-14 02:33:15 -0700626 if (!have_cpuid_p())
627 identify_cpu_without_cpuid(c);
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100628
Yinghai Luaef93c82008-09-14 02:33:15 -0700629 /* cyrix could have cpuid enabled via c_identify()*/
Ingo Molnara9853dd2008-09-14 14:46:58 +0200630 if (!have_cpuid_p())
Yinghai Luaef93c82008-09-14 02:33:15 -0700631 return;
632
Yinghai Lu3da99c92008-09-04 21:09:44 +0200633 cpu_detect(c);
634
635 get_cpu_vendor(c);
636
637 get_cpu_cap(c);
638
639 if (c->cpuid_level >= 0x00000001) {
640 c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xFF;
Yinghai Lub89d3b32008-09-04 20:09:12 -0700641#ifdef CONFIG_X86_32
642# ifdef CONFIG_X86_HT
Yinghai Lu3da99c92008-09-04 21:09:44 +0200643 c->apicid = phys_pkg_id(c->initial_apicid, 0);
Yinghai Lub89d3b32008-09-04 20:09:12 -0700644# else
Yinghai Lu3da99c92008-09-04 21:09:44 +0200645 c->apicid = c->initial_apicid;
Yinghai Lub89d3b32008-09-04 20:09:12 -0700646# endif
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800647#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Yinghai Lub89d3b32008-09-04 20:09:12 -0700649#ifdef CONFIG_X86_HT
650 c->phys_proc_id = c->initial_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
Yinghai Lu3da99c92008-09-04 21:09:44 +0200653
Yinghai Lu1b05d602008-09-06 01:52:27 -0700654 get_model_name(c); /* Default name */
Yinghai Lu3da99c92008-09-04 21:09:44 +0200655
656 init_scattered_cpuid_features(c);
657 detect_nopl(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660/*
661 * This does the hard work of actually picking apart the CPU stuff...
662 */
Yinghai Lu9a250342008-06-21 03:24:00 -0700663static void __cpuinit identify_cpu(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 int i;
666
667 c->loops_per_jiffy = loops_per_jiffy;
668 c->x86_cache_size = -1;
669 c->x86_vendor = X86_VENDOR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 c->x86_model = c->x86_mask = 0; /* So far unknown... */
671 c->x86_vendor_id[0] = '\0'; /* Unset */
672 c->x86_model_id[0] = '\0'; /* Unset */
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100673 c->x86_max_cores = 1;
Yinghai Lu102bbe32008-09-04 20:09:13 -0700674 c->x86_coreid_bits = 0;
Yinghai Lu11fdd252008-09-07 17:58:50 -0700675#ifdef CONFIG_X86_64
Yinghai Lu102bbe32008-09-04 20:09:13 -0700676 c->x86_clflush_size = 64;
677#else
678 c->cpuid_level = -1; /* CPUID not detected */
Andi Kleen770d1322006-12-07 02:14:05 +0100679 c->x86_clflush_size = 32;
Yinghai Lu102bbe32008-09-04 20:09:13 -0700680#endif
681 c->x86_cache_alignment = c->x86_clflush_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 memset(&c->x86_capability, 0, sizeof c->x86_capability);
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 generic_identify(c);
685
Andi Kleen38985342008-01-30 13:32:49 +0100686 if (this_cpu->c_identify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 this_cpu->c_identify(c);
688
Yinghai Lu102bbe32008-09-04 20:09:13 -0700689#ifdef CONFIG_X86_64
690 c->apicid = phys_pkg_id(0);
691#endif
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /*
694 * Vendor-specific initialization. In this section we
695 * canonicalize the feature flags, meaning if there are
696 * features a certain CPU supports which CPUID doesn't
697 * tell us, CPUID claiming incorrect flags, or other bugs,
698 * we handle them here.
699 *
700 * At the end of this section, c->x86_capability better
701 * indicate the features this CPU genuinely supports!
702 */
703 if (this_cpu->c_init)
704 this_cpu->c_init(c);
705
706 /* Disable the PN if appropriate */
707 squash_the_stupid_serial_number(c);
708
709 /*
710 * The vendor-specific functions might have changed features. Now
711 * we do "generic changes."
712 */
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /* If the model name is still unset, do table lookup. */
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100715 if (!c->x86_model_id[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 char *p;
717 p = table_lookup_model(c);
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100718 if (p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 strcpy(c->x86_model_id, p);
720 else
721 /* Last resort... */
722 sprintf(c->x86_model_id, "%02x/%02x",
Chuck Ebbert54a20f82006-03-23 02:59:36 -0800723 c->x86, c->x86_model);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725
Yinghai Lu102bbe32008-09-04 20:09:13 -0700726#ifdef CONFIG_X86_64
727 detect_ht(c);
728#endif
729
Alok Kataria88b094f2008-10-27 10:41:46 -0700730 init_hypervisor(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /*
732 * On SMP, boot_cpu_data holds the common feature set between
733 * all CPUs; so make sure that we indicate which features are
734 * common between the CPUs. The first time this routine gets
735 * executed, c == &boot_cpu_data.
736 */
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100737 if (c != &boot_cpu_data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /* AND the already accumulated flags with these */
Yinghai Lu9d31d352008-09-04 21:09:44 +0200739 for (i = 0; i < NCAPINTS; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 boot_cpu_data.x86_capability[i] &= c->x86_capability[i];
741 }
742
Andi Kleen7d851c82008-01-30 13:33:20 +0100743 /* Clear all flags overriden by options */
744 for (i = 0; i < NCAPINTS; i++)
Mikael Pettersson12c247a2008-02-24 18:27:03 +0100745 c->x86_capability[i] &= ~cleared_cpu_caps[i];
Andi Kleen7d851c82008-01-30 13:33:20 +0100746
Yinghai Lu102bbe32008-09-04 20:09:13 -0700747#ifdef CONFIG_X86_MCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* Init Machine Check Exception if available. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 mcheck_init(c);
Yinghai Lu102bbe32008-09-04 20:09:13 -0700750#endif
Andi Kleen30d432d2008-01-30 13:33:16 +0100751
752 select_idle_routine(c);
Yinghai Lu102bbe32008-09-04 20:09:13 -0700753
754#if defined(CONFIG_NUMA) && defined(CONFIG_X86_64)
755 numa_add_cpu(smp_processor_id());
756#endif
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200757}
Shaohua Li31ab2692005-11-07 00:58:42 -0800758
Glauber Costae04d6452008-09-22 14:35:08 -0300759#ifdef CONFIG_X86_64
760static void vgetcpu_set_mode(void)
761{
762 if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP))
763 vgetcpu_mode = VGETCPU_RDTSCP;
764 else
765 vgetcpu_mode = VGETCPU_LSL;
766}
767#endif
768
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200769void __init identify_boot_cpu(void)
770{
771 identify_cpu(&boot_cpu_data);
Yinghai Lu102bbe32008-09-04 20:09:13 -0700772#ifdef CONFIG_X86_32
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200773 sysenter_setup();
Li Shaohua6fe940d2005-06-25 14:54:53 -0700774 enable_sep_cpu();
Glauber Costae04d6452008-09-22 14:35:08 -0300775#else
776 vgetcpu_set_mode();
Yinghai Lu102bbe32008-09-04 20:09:13 -0700777#endif
Ingo Molnar241771e2008-12-03 10:39:53 +0100778 init_hw_perf_counters();
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200779}
Shaohua Li3b520b22005-07-07 17:56:38 -0700780
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200781void __cpuinit identify_secondary_cpu(struct cpuinfo_x86 *c)
782{
783 BUG_ON(c == &boot_cpu_data);
784 identify_cpu(c);
Yinghai Lu102bbe32008-09-04 20:09:13 -0700785#ifdef CONFIG_X86_32
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200786 enable_sep_cpu();
Yinghai Lu102bbe32008-09-04 20:09:13 -0700787#endif
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200788 mtrr_ap_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790
Yinghai Lua0854a42008-09-04 21:09:46 +0200791struct msr_range {
792 unsigned min;
793 unsigned max;
794};
795
796static struct msr_range msr_range_array[] __cpuinitdata = {
797 { 0x00000000, 0x00000418},
798 { 0xc0000000, 0xc000040b},
799 { 0xc0010000, 0xc0010142},
800 { 0xc0011000, 0xc001103b},
801};
802
803static void __cpuinit print_cpu_msr(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Yinghai Lua0854a42008-09-04 21:09:46 +0200805 unsigned index;
806 u64 val;
807 int i;
808 unsigned index_min, index_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Yinghai Lua0854a42008-09-04 21:09:46 +0200810 for (i = 0; i < ARRAY_SIZE(msr_range_array); i++) {
811 index_min = msr_range_array[i].min;
812 index_max = msr_range_array[i].max;
813 for (index = index_min; index < index_max; index++) {
814 if (rdmsrl_amd_safe(index, &val))
815 continue;
816 printk(KERN_INFO " MSR%08x: %016llx\n", index, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
819}
Yinghai Lua0854a42008-09-04 21:09:46 +0200820
821static int show_msr __cpuinitdata;
822static __init int setup_show_msr(char *arg)
823{
824 int num;
825
826 get_option(&arg, &num);
827
828 if (num > 0)
829 show_msr = num;
830 return 1;
831}
832__setup("show_msr=", setup_show_msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Andi Kleen191679f2008-01-30 13:33:21 +0100834static __init int setup_noclflush(char *arg)
835{
836 setup_clear_cpu_cap(X86_FEATURE_CLFLSH);
837 return 1;
838}
839__setup("noclflush", setup_noclflush);
840
Chuck Ebbert3bc9b762006-03-23 02:59:33 -0800841void __cpuinit print_cpu_info(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 char *vendor = NULL;
844
845 if (c->x86_vendor < X86_VENDOR_NUM)
846 vendor = this_cpu->c_vendor;
847 else if (c->cpuid_level >= 0)
848 vendor = c->x86_vendor_id;
849
Yinghai Lubd32a8c2008-09-19 18:41:16 -0700850 if (vendor && !strstr(c->x86_model_id, vendor))
Yinghai Lu9d31d352008-09-04 21:09:44 +0200851 printk(KERN_CONT "%s ", vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Yinghai Lu9d31d352008-09-04 21:09:44 +0200853 if (c->x86_model_id[0])
854 printk(KERN_CONT "%s", c->x86_model_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 else
Yinghai Lu9d31d352008-09-04 21:09:44 +0200856 printk(KERN_CONT "%d86", c->x86);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100858 if (c->x86_mask || c->cpuid_level >= 0)
Yinghai Lu9d31d352008-09-04 21:09:44 +0200859 printk(KERN_CONT " stepping %02x\n", c->x86_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 else
Yinghai Lu9d31d352008-09-04 21:09:44 +0200861 printk(KERN_CONT "\n");
Yinghai Lua0854a42008-09-04 21:09:46 +0200862
863#ifdef CONFIG_SMP
864 if (c->cpu_index < show_msr)
865 print_cpu_msr();
866#else
867 if (show_msr)
868 print_cpu_msr();
869#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
Andi Kleenac72e782008-01-30 13:33:21 +0100872static __init int setup_disablecpuid(char *arg)
873{
874 int bit;
875 if (get_option(&arg, &bit) && bit < NCAPINTS*32)
876 setup_clear_cpu_cap(bit);
877 else
878 return 0;
879 return 1;
880}
881__setup("clearcpuid=", setup_disablecpuid);
882
Yinghai Lud5494d42008-09-04 20:09:03 -0700883#ifdef CONFIG_X86_64
Yinghai Lud5494d42008-09-04 20:09:03 -0700884struct desc_ptr idt_descr = { 256 * 16 - 1, (unsigned long) idt_table };
885
Brian Gerst947e76c2009-01-19 12:21:28 +0900886DEFINE_PER_CPU_FIRST(union irq_stack_union,
887 irq_stack_union) __aligned(PAGE_SIZE);
Brian Gerst26f80bd2009-01-19 00:38:58 +0900888#ifdef CONFIG_SMP
889DEFINE_PER_CPU(char *, irq_stack_ptr); /* will be set during per cpu init */
890#else
891DEFINE_PER_CPU(char *, irq_stack_ptr) =
Brian Gerst947e76c2009-01-19 12:21:28 +0900892 per_cpu_var(irq_stack_union.irq_stack) + IRQ_STACK_SIZE - 64;
Brian Gerst26f80bd2009-01-19 00:38:58 +0900893#endif
Yinghai Lud5494d42008-09-04 20:09:03 -0700894
Brian Gerst9af45652009-01-19 00:38:58 +0900895DEFINE_PER_CPU(unsigned long, kernel_stack) =
896 (unsigned long)&init_thread_union - KERNEL_STACK_OFFSET + THREAD_SIZE;
897EXPORT_PER_CPU_SYMBOL(kernel_stack);
898
Brian Gerst56895532009-01-19 00:38:58 +0900899DEFINE_PER_CPU(unsigned int, irq_count) = -1;
Yinghai Lud5494d42008-09-04 20:09:03 -0700900
Brian Gerst92d65b22009-01-19 00:38:58 +0900901static DEFINE_PER_CPU_PAGE_ALIGNED(char, exception_stacks
902 [(N_EXCEPTION_STACKS - 1) * EXCEPTION_STKSZ + DEBUG_STKSZ])
903 __aligned(PAGE_SIZE);
Yinghai Lud5494d42008-09-04 20:09:03 -0700904
905extern asmlinkage void ignore_sysret(void);
906
907/* May not be marked __init: used by software suspend */
908void syscall_init(void)
909{
910 /*
911 * LSTAR and STAR live in a bit strange symbiosis.
912 * They both write to the same internal register. STAR allows to
913 * set CS/DS but only a 32bit target. LSTAR sets the 64bit rip.
914 */
915 wrmsrl(MSR_STAR, ((u64)__USER32_CS)<<48 | ((u64)__KERNEL_CS)<<32);
916 wrmsrl(MSR_LSTAR, system_call);
917 wrmsrl(MSR_CSTAR, ignore_sysret);
918
919#ifdef CONFIG_IA32_EMULATION
920 syscall32_cpu_init();
921#endif
922
923 /* Flags to clear on syscall */
924 wrmsrl(MSR_SYSCALL_MASK,
925 X86_EFLAGS_TF|X86_EFLAGS_DF|X86_EFLAGS_IF|X86_EFLAGS_IOPL);
926}
927
Yinghai Lud5494d42008-09-04 20:09:03 -0700928unsigned long kernel_eflags;
929
930/*
931 * Copies of the original ist values from the tss are only accessed during
932 * debugging, no special alignment required.
933 */
934DEFINE_PER_CPU(struct orig_ist, orig_ist);
935
936#else
937
Jeremy Fitzhardinge7c3576d2007-05-02 19:27:16 +0200938/* Make sure %fs is initialized properly in idle threads */
Adrian Bunk6b2fb3c2008-02-06 01:37:55 -0800939struct pt_regs * __cpuinit idle_regs(struct pt_regs *regs)
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100940{
941 memset(regs, 0, sizeof(struct pt_regs));
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100942 regs->fs = __KERNEL_PERCPU;
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100943 return regs;
944}
Yinghai Lud5494d42008-09-04 20:09:03 -0700945#endif
Jeremy Fitzhardingec5413fb2007-05-02 19:27:16 +0200946
Rusty Russelld2cbcc42007-05-02 19:27:10 +0200947/*
948 * cpu_init() initializes state that is per-CPU. Some data is already
949 * initialized (naturally) in the bootstrap process, such as the GDT
950 * and IDT. We reload them nevertheless, this function acts as a
951 * 'CPU state barrier', nothing should get across.
Yinghai Lu1ba76582008-09-04 20:09:04 -0700952 * A lot of state is already set up in PDA init for 64 bit
Rusty Russelld2cbcc42007-05-02 19:27:10 +0200953 */
Yinghai Lu1ba76582008-09-04 20:09:04 -0700954#ifdef CONFIG_X86_64
955void __cpuinit cpu_init(void)
956{
957 int cpu = stack_smp_processor_id();
958 struct tss_struct *t = &per_cpu(init_tss, cpu);
959 struct orig_ist *orig_ist = &per_cpu(orig_ist, cpu);
960 unsigned long v;
Yinghai Lu1ba76582008-09-04 20:09:04 -0700961 struct task_struct *me;
962 int i;
963
Brian Gerst8ce03192009-01-19 12:21:27 +0900964 loadsegment(fs, 0);
965 loadsegment(gs, 0);
Brian Gerst947e76c2009-01-19 12:21:28 +0900966 load_gs_base(cpu);
Yinghai Lu1ba76582008-09-04 20:09:04 -0700967
Brian Gerste7a22c12009-01-19 00:38:59 +0900968#ifdef CONFIG_NUMA
969 if (cpu != 0 && percpu_read(node_number) == 0 &&
970 cpu_to_node(cpu) != NUMA_NO_NODE)
971 percpu_write(node_number, cpu_to_node(cpu));
972#endif
Yinghai Lu1ba76582008-09-04 20:09:04 -0700973
974 me = current;
975
Mike Travisc2d1cec2009-01-04 05:18:03 -0800976 if (cpumask_test_and_set_cpu(cpu, cpu_initialized_mask))
Yinghai Lu1ba76582008-09-04 20:09:04 -0700977 panic("CPU#%d already initialized!\n", cpu);
978
979 printk(KERN_INFO "Initializing CPU#%d\n", cpu);
980
981 clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
982
983 /*
984 * Initialize the per-CPU GDT with the boot GDT,
985 * and set up the GDT descriptor:
986 */
987
988 switch_to_new_gdt();
989 load_idt((const struct desc_ptr *)&idt_descr);
990
991 memset(me->thread.tls_array, 0, GDT_ENTRY_TLS_ENTRIES * 8);
992 syscall_init();
993
994 wrmsrl(MSR_FS_BASE, 0);
995 wrmsrl(MSR_KERNEL_GS_BASE, 0);
996 barrier();
997
998 check_efer();
999 if (cpu != 0 && x2apic)
1000 enable_x2apic();
1001
1002 /*
1003 * set up and load the per-CPU TSS
1004 */
1005 if (!orig_ist->ist[0]) {
Brian Gerst92d65b22009-01-19 00:38:58 +09001006 static const unsigned int sizes[N_EXCEPTION_STACKS] = {
1007 [0 ... N_EXCEPTION_STACKS - 1] = EXCEPTION_STKSZ,
1008 [DEBUG_STACK - 1] = DEBUG_STKSZ
Yinghai Lu1ba76582008-09-04 20:09:04 -07001009 };
Brian Gerst92d65b22009-01-19 00:38:58 +09001010 char *estacks = per_cpu(exception_stacks, cpu);
Yinghai Lu1ba76582008-09-04 20:09:04 -07001011 for (v = 0; v < N_EXCEPTION_STACKS; v++) {
Brian Gerst92d65b22009-01-19 00:38:58 +09001012 estacks += sizes[v];
Yinghai Lu1ba76582008-09-04 20:09:04 -07001013 orig_ist->ist[v] = t->x86_tss.ist[v] =
1014 (unsigned long)estacks;
1015 }
1016 }
1017
1018 t->x86_tss.io_bitmap_base = offsetof(struct tss_struct, io_bitmap);
1019 /*
1020 * <= is required because the CPU will access up to
1021 * 8 bits beyond the end of the IO permission bitmap.
1022 */
1023 for (i = 0; i <= IO_BITMAP_LONGS; i++)
1024 t->io_bitmap[i] = ~0UL;
1025
1026 atomic_inc(&init_mm.mm_count);
1027 me->active_mm = &init_mm;
1028 if (me->mm)
1029 BUG();
1030 enter_lazy_tlb(&init_mm, me);
1031
1032 load_sp0(t, &current->thread);
1033 set_tss_desc(cpu, t);
1034 load_TR_desc();
1035 load_LDT(&init_mm.context);
1036
1037#ifdef CONFIG_KGDB
1038 /*
1039 * If the kgdb is connected no debug regs should be altered. This
1040 * is only applicable when KGDB and a KGDB I/O module are built
1041 * into the kernel and you are using early debugging with
1042 * kgdbwait. KGDB will control the kernel HW breakpoint registers.
1043 */
1044 if (kgdb_connected && arch_kgdb_ops.correct_hw_break)
1045 arch_kgdb_ops.correct_hw_break();
1046 else {
1047#endif
1048 /*
1049 * Clear all 6 debug registers:
1050 */
1051
1052 set_debugreg(0UL, 0);
1053 set_debugreg(0UL, 1);
1054 set_debugreg(0UL, 2);
1055 set_debugreg(0UL, 3);
1056 set_debugreg(0UL, 6);
1057 set_debugreg(0UL, 7);
1058#ifdef CONFIG_KGDB
1059 /* If the kgdb is connected no debug regs should be altered. */
1060 }
1061#endif
1062
1063 fpu_init();
1064
1065 raw_local_save_flags(kernel_eflags);
1066
1067 if (is_uv_system())
1068 uv_cpu_init();
1069}
1070
1071#else
1072
Rusty Russelld2cbcc42007-05-02 19:27:10 +02001073void __cpuinit cpu_init(void)
James Bottomley9ee79a32007-01-22 09:18:31 -06001074{
Rusty Russelld2cbcc42007-05-02 19:27:10 +02001075 int cpu = smp_processor_id();
1076 struct task_struct *curr = current;
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +01001077 struct tss_struct *t = &per_cpu(init_tss, cpu);
James Bottomley9ee79a32007-01-22 09:18:31 -06001078 struct thread_struct *thread = &curr->thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Mike Travisc2d1cec2009-01-04 05:18:03 -08001080 if (cpumask_test_and_set_cpu(cpu, cpu_initialized_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 printk(KERN_WARNING "CPU#%d already initialized!\n", cpu);
1082 for (;;) local_irq_enable();
1083 }
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +01001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 printk(KERN_INFO "Initializing CPU#%d\n", cpu);
1086
1087 if (cpu_has_vme || cpu_has_tsc || cpu_has_de)
1088 clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Zachary Amsden4d37e7e2005-09-03 15:56:38 -07001090 load_idt(&idt_descr);
Jeremy Fitzhardingec5413fb2007-05-02 19:27:16 +02001091 switch_to_new_gdt();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 * Set up and load the per-CPU TSS and LDT
1095 */
1096 atomic_inc(&init_mm.mm_count);
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +01001097 curr->active_mm = &init_mm;
1098 if (curr->mm)
1099 BUG();
1100 enter_lazy_tlb(&init_mm, curr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
H. Peter Anvinfaca6222008-01-30 13:31:02 +01001102 load_sp0(t, thread);
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +01001103 set_tss_desc(cpu, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 load_TR_desc();
1105 load_LDT(&init_mm.context);
1106
Matt Mackall22c4e302006-01-08 01:05:24 -08001107#ifdef CONFIG_DOUBLEFAULT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /* Set up doublefault TSS pointer in the GDT */
1109 __set_tss_desc(cpu, GDT_ENTRY_DOUBLEFAULT_TSS, &doublefault_tss);
Matt Mackall22c4e302006-01-08 01:05:24 -08001110#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Jeremy Fitzhardinge464d1a72007-02-13 13:26:20 +01001112 /* Clear %gs. */
1113 asm volatile ("mov %0, %%gs" : : "r" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 /* Clear all 6 debug registers: */
Zachary Amsden4bb0d3e2005-09-03 15:56:36 -07001116 set_debugreg(0, 0);
1117 set_debugreg(0, 1);
1118 set_debugreg(0, 2);
1119 set_debugreg(0, 3);
1120 set_debugreg(0, 6);
1121 set_debugreg(0, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 /*
1124 * Force FPU initialization:
1125 */
Suresh Siddhab359e8a2008-07-29 10:29:20 -07001126 if (cpu_has_xsave)
1127 current_thread_info()->status = TS_XSAVE;
1128 else
1129 current_thread_info()->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 clear_used_math();
1131 mxcsr_feature_mask_init();
Suresh Siddhadc1e35c2008-07-29 10:29:19 -07001132
1133 /*
1134 * Boot processor to setup the FP and extended state context info.
1135 */
James Bottomleyb3572e32008-10-30 16:00:59 -05001136 if (smp_processor_id() == boot_cpu_id)
Suresh Siddhadc1e35c2008-07-29 10:29:19 -07001137 init_thread_xstate();
1138
1139 xsave_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140}
Li Shaohuae1367da2005-06-25 14:54:56 -07001141
Yinghai Lu1ba76582008-09-04 20:09:04 -07001142
1143#endif