]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kernel/cpu/common.c
i387: Split up <asm/i387.h> into exported and internal interfaces
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kernel / cpu / common.c
CommitLineData
f0fc4aff 1#include <linux/bootmem.h>
9766cdbc 2#include <linux/linkage.h>
f0fc4aff 3#include <linux/bitops.h>
9766cdbc 4#include <linux/kernel.h>
f0fc4aff 5#include <linux/module.h>
9766cdbc
JSR
6#include <linux/percpu.h>
7#include <linux/string.h>
1da177e4 8#include <linux/delay.h>
9766cdbc
JSR
9#include <linux/sched.h>
10#include <linux/init.h>
11#include <linux/kgdb.h>
1da177e4 12#include <linux/smp.h>
9766cdbc
JSR
13#include <linux/io.h>
14
15#include <asm/stackprotector.h>
cdd6c482 16#include <asm/perf_event.h>
1da177e4 17#include <asm/mmu_context.h>
49d859d7 18#include <asm/archrandom.h>
9766cdbc
JSR
19#include <asm/hypervisor.h>
20#include <asm/processor.h>
21#include <asm/sections.h>
8bdbd962
AC
22#include <linux/topology.h>
23#include <linux/cpumask.h>
9766cdbc 24#include <asm/pgtable.h>
60063497 25#include <linux/atomic.h>
9766cdbc
JSR
26#include <asm/proto.h>
27#include <asm/setup.h>
28#include <asm/apic.h>
29#include <asm/desc.h>
30#include <asm/i387.h>
1361b83a 31#include <asm/fpu-internal.h>
27b07da7 32#include <asm/mtrr.h>
8bdbd962 33#include <linux/numa.h>
9766cdbc
JSR
34#include <asm/asm.h>
35#include <asm/cpu.h>
a03a3e28 36#include <asm/mce.h>
9766cdbc 37#include <asm/msr.h>
8d4a4300 38#include <asm/pat.h>
e641f5f5
IM
39
40#ifdef CONFIG_X86_LOCAL_APIC
bdbcdd48 41#include <asm/uv/uv.h>
1da177e4
LT
42#endif
43
44#include "cpu.h"
45
c2d1cec1 46/* all of these masks are initialized in setup_cpu_local_masks() */
c2d1cec1 47cpumask_var_t cpu_initialized_mask;
9766cdbc
JSR
48cpumask_var_t cpu_callout_mask;
49cpumask_var_t cpu_callin_mask;
c2d1cec1
MT
50
51/* representing cpus for which sibling maps can be computed */
52cpumask_var_t cpu_sibling_setup_mask;
53
2f2f52ba 54/* correctly size the local cpu masks */
4369f1fb 55void __init setup_cpu_local_masks(void)
2f2f52ba
BG
56{
57 alloc_bootmem_cpumask_var(&cpu_initialized_mask);
58 alloc_bootmem_cpumask_var(&cpu_callin_mask);
59 alloc_bootmem_cpumask_var(&cpu_callout_mask);
60 alloc_bootmem_cpumask_var(&cpu_sibling_setup_mask);
61}
62
e8055139
OZ
63static void __cpuinit default_init(struct cpuinfo_x86 *c)
64{
65#ifdef CONFIG_X86_64
27c13ece 66 cpu_detect_cache_sizes(c);
e8055139
OZ
67#else
68 /* Not much we can do here... */
69 /* Check if at least it has cpuid */
70 if (c->cpuid_level == -1) {
71 /* No cpuid. It must be an ancient CPU */
72 if (c->x86 == 4)
73 strcpy(c->x86_model_id, "486");
74 else if (c->x86 == 3)
75 strcpy(c->x86_model_id, "386");
76 }
77#endif
78}
79
80static const struct cpu_dev __cpuinitconst default_cpu = {
81 .c_init = default_init,
82 .c_vendor = "Unknown",
83 .c_x86_vendor = X86_VENDOR_UNKNOWN,
84};
85
86static const struct cpu_dev *this_cpu __cpuinitdata = &default_cpu;
0a488a53 87
06deef89 88DEFINE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page) = { .gdt = {
950ad7ff 89#ifdef CONFIG_X86_64
06deef89
BG
90 /*
91 * We need valid kernel segments for data and code in long mode too
92 * IRET will check the segment types kkeil 2000/10/28
93 * Also sysret mandates a special GDT layout
94 *
9766cdbc 95 * TLS descriptors are currently at a different place compared to i386.
06deef89
BG
96 * Hopefully nobody expects them at a fixed place (Wine?)
97 */
1e5de182
AM
98 [GDT_ENTRY_KERNEL32_CS] = GDT_ENTRY_INIT(0xc09b, 0, 0xfffff),
99 [GDT_ENTRY_KERNEL_CS] = GDT_ENTRY_INIT(0xa09b, 0, 0xfffff),
100 [GDT_ENTRY_KERNEL_DS] = GDT_ENTRY_INIT(0xc093, 0, 0xfffff),
101 [GDT_ENTRY_DEFAULT_USER32_CS] = GDT_ENTRY_INIT(0xc0fb, 0, 0xfffff),
102 [GDT_ENTRY_DEFAULT_USER_DS] = GDT_ENTRY_INIT(0xc0f3, 0, 0xfffff),
103 [GDT_ENTRY_DEFAULT_USER_CS] = GDT_ENTRY_INIT(0xa0fb, 0, 0xfffff),
950ad7ff 104#else
1e5de182
AM
105 [GDT_ENTRY_KERNEL_CS] = GDT_ENTRY_INIT(0xc09a, 0, 0xfffff),
106 [GDT_ENTRY_KERNEL_DS] = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
107 [GDT_ENTRY_DEFAULT_USER_CS] = GDT_ENTRY_INIT(0xc0fa, 0, 0xfffff),
108 [GDT_ENTRY_DEFAULT_USER_DS] = GDT_ENTRY_INIT(0xc0f2, 0, 0xfffff),
bf504672
RR
109 /*
110 * Segments used for calling PnP BIOS have byte granularity.
111 * They code segments and data segments have fixed 64k limits,
112 * the transfer segment sizes are set at run time.
113 */
6842ef0e 114 /* 32-bit code */
1e5de182 115 [GDT_ENTRY_PNPBIOS_CS32] = GDT_ENTRY_INIT(0x409a, 0, 0xffff),
6842ef0e 116 /* 16-bit code */
1e5de182 117 [GDT_ENTRY_PNPBIOS_CS16] = GDT_ENTRY_INIT(0x009a, 0, 0xffff),
6842ef0e 118 /* 16-bit data */
1e5de182 119 [GDT_ENTRY_PNPBIOS_DS] = GDT_ENTRY_INIT(0x0092, 0, 0xffff),
6842ef0e 120 /* 16-bit data */
1e5de182 121 [GDT_ENTRY_PNPBIOS_TS1] = GDT_ENTRY_INIT(0x0092, 0, 0),
6842ef0e 122 /* 16-bit data */
1e5de182 123 [GDT_ENTRY_PNPBIOS_TS2] = GDT_ENTRY_INIT(0x0092, 0, 0),
bf504672
RR
124 /*
125 * The APM segments have byte granularity and their bases
126 * are set at run time. All have 64k limits.
127 */
6842ef0e 128 /* 32-bit code */
1e5de182 129 [GDT_ENTRY_APMBIOS_BASE] = GDT_ENTRY_INIT(0x409a, 0, 0xffff),
bf504672 130 /* 16-bit code */
1e5de182 131 [GDT_ENTRY_APMBIOS_BASE+1] = GDT_ENTRY_INIT(0x009a, 0, 0xffff),
6842ef0e 132 /* data */
72c4d853 133 [GDT_ENTRY_APMBIOS_BASE+2] = GDT_ENTRY_INIT(0x4092, 0, 0xffff),
bf504672 134
1e5de182
AM
135 [GDT_ENTRY_ESPFIX_SS] = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
136 [GDT_ENTRY_PERCPU] = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
60a5317f 137 GDT_STACK_CANARY_INIT
950ad7ff 138#endif
06deef89 139} };
7a61d35d 140EXPORT_PER_CPU_SYMBOL_GPL(gdt_page);
ae1ee11b 141
0c752a93
SS
142static int __init x86_xsave_setup(char *s)
143{
144 setup_clear_cpu_cap(X86_FEATURE_XSAVE);
6bad06b7 145 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
0c752a93
SS
146 return 1;
147}
148__setup("noxsave", x86_xsave_setup);
149
6bad06b7
SS
150static int __init x86_xsaveopt_setup(char *s)
151{
152 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
153 return 1;
154}
155__setup("noxsaveopt", x86_xsaveopt_setup);
156
ba51dced 157#ifdef CONFIG_X86_32
3bc9b76b 158static int cachesize_override __cpuinitdata = -1;
3bc9b76b 159static int disable_x86_serial_nr __cpuinitdata = 1;
1da177e4 160
0a488a53
YL
161static int __init cachesize_setup(char *str)
162{
163 get_option(&str, &cachesize_override);
164 return 1;
165}
166__setup("cachesize=", cachesize_setup);
167
0a488a53
YL
168static int __init x86_fxsr_setup(char *s)
169{
170 setup_clear_cpu_cap(X86_FEATURE_FXSR);
171 setup_clear_cpu_cap(X86_FEATURE_XMM);
172 return 1;
173}
174__setup("nofxsr", x86_fxsr_setup);
175
176static int __init x86_sep_setup(char *s)
177{
178 setup_clear_cpu_cap(X86_FEATURE_SEP);
179 return 1;
180}
181__setup("nosep", x86_sep_setup);
182
183/* Standard macro to see if a specific flag is changeable */
184static inline int flag_is_changeable_p(u32 flag)
185{
186 u32 f1, f2;
187
94f6bac1
KH
188 /*
189 * Cyrix and IDT cpus allow disabling of CPUID
190 * so the code below may return different results
191 * when it is executed before and after enabling
192 * the CPUID. Add "volatile" to not allow gcc to
193 * optimize the subsequent calls to this function.
194 */
0f3fa48a
IM
195 asm volatile ("pushfl \n\t"
196 "pushfl \n\t"
197 "popl %0 \n\t"
198 "movl %0, %1 \n\t"
199 "xorl %2, %0 \n\t"
200 "pushl %0 \n\t"
201 "popfl \n\t"
202 "pushfl \n\t"
203 "popl %0 \n\t"
204 "popfl \n\t"
205
94f6bac1
KH
206 : "=&r" (f1), "=&r" (f2)
207 : "ir" (flag));
0a488a53
YL
208
209 return ((f1^f2) & flag) != 0;
210}
211
212/* Probe for the CPUID instruction */
213static int __cpuinit have_cpuid_p(void)
214{
215 return flag_is_changeable_p(X86_EFLAGS_ID);
216}
217
218static void __cpuinit squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
219{
0f3fa48a
IM
220 unsigned long lo, hi;
221
222 if (!cpu_has(c, X86_FEATURE_PN) || !disable_x86_serial_nr)
223 return;
224
225 /* Disable processor serial number: */
226
227 rdmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
228 lo |= 0x200000;
229 wrmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
230
231 printk(KERN_NOTICE "CPU serial number disabled.\n");
232 clear_cpu_cap(c, X86_FEATURE_PN);
233
234 /* Disabling the serial number may affect the cpuid level */
235 c->cpuid_level = cpuid_eax(0);
0a488a53
YL
236}
237
238static int __init x86_serial_nr_setup(char *s)
239{
240 disable_x86_serial_nr = 0;
241 return 1;
242}
243__setup("serialnumber", x86_serial_nr_setup);
ba51dced 244#else
102bbe3a
YL
245static inline int flag_is_changeable_p(u32 flag)
246{
247 return 1;
248}
ba51dced
YL
249/* Probe for the CPUID instruction */
250static inline int have_cpuid_p(void)
251{
252 return 1;
253}
102bbe3a
YL
254static inline void squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
255{
256}
ba51dced 257#endif
0a488a53 258
82da65da 259static int disable_smep __cpuinitdata;
de5397ad
FY
260static __init int setup_disable_smep(char *arg)
261{
262 disable_smep = 1;
263 return 1;
264}
265__setup("nosmep", setup_disable_smep);
266
82da65da 267static __cpuinit void setup_smep(struct cpuinfo_x86 *c)
de5397ad
FY
268{
269 if (cpu_has(c, X86_FEATURE_SMEP)) {
270 if (unlikely(disable_smep)) {
271 setup_clear_cpu_cap(X86_FEATURE_SMEP);
272 clear_in_cr4(X86_CR4_SMEP);
273 } else
274 set_in_cr4(X86_CR4_SMEP);
275 }
276}
277
b38b0665
PA
278/*
279 * Some CPU features depend on higher CPUID levels, which may not always
280 * be available due to CPUID level capping or broken virtualization
281 * software. Add those features to this table to auto-disable them.
282 */
283struct cpuid_dependent_feature {
284 u32 feature;
285 u32 level;
286};
0f3fa48a 287
b38b0665
PA
288static const struct cpuid_dependent_feature __cpuinitconst
289cpuid_dependent_features[] = {
290 { X86_FEATURE_MWAIT, 0x00000005 },
291 { X86_FEATURE_DCA, 0x00000009 },
292 { X86_FEATURE_XSAVE, 0x0000000d },
293 { 0, 0 }
294};
295
296static void __cpuinit filter_cpuid_features(struct cpuinfo_x86 *c, bool warn)
297{
298 const struct cpuid_dependent_feature *df;
9766cdbc 299
b38b0665 300 for (df = cpuid_dependent_features; df->feature; df++) {
0f3fa48a
IM
301
302 if (!cpu_has(c, df->feature))
303 continue;
b38b0665
PA
304 /*
305 * Note: cpuid_level is set to -1 if unavailable, but
306 * extended_extended_level is set to 0 if unavailable
307 * and the legitimate extended levels are all negative
308 * when signed; hence the weird messing around with
309 * signs here...
310 */
0f3fa48a 311 if (!((s32)df->level < 0 ?
f6db44df 312 (u32)df->level > (u32)c->extended_cpuid_level :
0f3fa48a
IM
313 (s32)df->level > (s32)c->cpuid_level))
314 continue;
315
316 clear_cpu_cap(c, df->feature);
317 if (!warn)
318 continue;
319
320 printk(KERN_WARNING
321 "CPU: CPU feature %s disabled, no CPUID level 0x%x\n",
322 x86_cap_flags[df->feature], df->level);
b38b0665 323 }
f6db44df 324}
b38b0665 325
102bbe3a
YL
326/*
327 * Naming convention should be: <Name> [(<Codename>)]
328 * This table only is used unless init_<vendor>() below doesn't set it;
0f3fa48a
IM
329 * in particular, if CPUID levels 0x80000002..4 are supported, this
330 * isn't used
102bbe3a
YL
331 */
332
333/* Look up CPU names by table lookup. */
02dde8b4 334static const char *__cpuinit table_lookup_model(struct cpuinfo_x86 *c)
102bbe3a 335{
02dde8b4 336 const struct cpu_model_info *info;
102bbe3a
YL
337
338 if (c->x86_model >= 16)
339 return NULL; /* Range check */
340
341 if (!this_cpu)
342 return NULL;
343
344 info = this_cpu->c_models;
345
346 while (info && info->family) {
347 if (info->family == c->x86)
348 return info->model_names[c->x86_model];
349 info++;
350 }
351 return NULL; /* Not found */
352}
353
3e0c3737
YL
354__u32 cpu_caps_cleared[NCAPINTS] __cpuinitdata;
355__u32 cpu_caps_set[NCAPINTS] __cpuinitdata;
7d851c8d 356
11e3a840
JF
357void load_percpu_segment(int cpu)
358{
359#ifdef CONFIG_X86_32
360 loadsegment(fs, __KERNEL_PERCPU);
361#else
362 loadsegment(gs, 0);
363 wrmsrl(MSR_GS_BASE, (unsigned long)per_cpu(irq_stack_union.gs_base, cpu));
364#endif
60a5317f 365 load_stack_canary_segment();
11e3a840
JF
366}
367
0f3fa48a
IM
368/*
369 * Current gdt points %fs at the "master" per-cpu area: after this,
370 * it's on the real one.
371 */
552be871 372void switch_to_new_gdt(int cpu)
9d31d35b
YL
373{
374 struct desc_ptr gdt_descr;
375
2697fbd5 376 gdt_descr.address = (long)get_cpu_gdt_table(cpu);
9d31d35b
YL
377 gdt_descr.size = GDT_SIZE - 1;
378 load_gdt(&gdt_descr);
2697fbd5 379 /* Reload the per-cpu base */
11e3a840
JF
380
381 load_percpu_segment(cpu);
9d31d35b
YL
382}
383
02dde8b4 384static const struct cpu_dev *__cpuinitdata cpu_devs[X86_VENDOR_NUM] = {};
1da177e4 385
1b05d60d 386static void __cpuinit get_model_name(struct cpuinfo_x86 *c)
1da177e4
LT
387{
388 unsigned int *v;
389 char *p, *q;
390
3da99c97 391 if (c->extended_cpuid_level < 0x80000004)
1b05d60d 392 return;
1da177e4 393
0f3fa48a 394 v = (unsigned int *)c->x86_model_id;
1da177e4
LT
395 cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]);
396 cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]);
397 cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]);
398 c->x86_model_id[48] = 0;
399
0f3fa48a
IM
400 /*
401 * Intel chips right-justify this string for some dumb reason;
402 * undo that brain damage:
403 */
1da177e4 404 p = q = &c->x86_model_id[0];
34048c9e 405 while (*p == ' ')
9766cdbc 406 p++;
34048c9e 407 if (p != q) {
9766cdbc
JSR
408 while (*p)
409 *q++ = *p++;
410 while (q <= &c->x86_model_id[48])
411 *q++ = '\0'; /* Zero-pad the rest */
1da177e4 412 }
1da177e4
LT
413}
414
27c13ece 415void __cpuinit cpu_detect_cache_sizes(struct cpuinfo_x86 *c)
1da177e4 416{
9d31d35b 417 unsigned int n, dummy, ebx, ecx, edx, l2size;
1da177e4 418
3da99c97 419 n = c->extended_cpuid_level;
1da177e4
LT
420
421 if (n >= 0x80000005) {
9d31d35b 422 cpuid(0x80000005, &dummy, &ebx, &ecx, &edx);
9d31d35b 423 c->x86_cache_size = (ecx>>24) + (edx>>24);
140fc727
YL
424#ifdef CONFIG_X86_64
425 /* On K8 L1 TLB is inclusive, so don't count it */
426 c->x86_tlbsize = 0;
427#endif
1da177e4
LT
428 }
429
430 if (n < 0x80000006) /* Some chips just has a large L1. */
431 return;
432
0a488a53 433 cpuid(0x80000006, &dummy, &ebx, &ecx, &edx);
1da177e4 434 l2size = ecx >> 16;
34048c9e 435
140fc727
YL
436#ifdef CONFIG_X86_64
437 c->x86_tlbsize += ((ebx >> 16) & 0xfff) + (ebx & 0xfff);
438#else
1da177e4
LT
439 /* do processor-specific cache resizing */
440 if (this_cpu->c_size_cache)
34048c9e 441 l2size = this_cpu->c_size_cache(c, l2size);
1da177e4
LT
442
443 /* Allow user to override all this if necessary. */
444 if (cachesize_override != -1)
445 l2size = cachesize_override;
446
34048c9e 447 if (l2size == 0)
1da177e4 448 return; /* Again, no L2 cache is possible */
140fc727 449#endif
1da177e4
LT
450
451 c->x86_cache_size = l2size;
1da177e4
LT
452}
453
9d31d35b 454void __cpuinit detect_ht(struct cpuinfo_x86 *c)
1da177e4 455{
97e4db7c 456#ifdef CONFIG_X86_HT
0a488a53
YL
457 u32 eax, ebx, ecx, edx;
458 int index_msb, core_bits;
2eaad1fd 459 static bool printed;
1da177e4 460
0a488a53 461 if (!cpu_has(c, X86_FEATURE_HT))
9d31d35b 462 return;
1da177e4 463
0a488a53
YL
464 if (cpu_has(c, X86_FEATURE_CMP_LEGACY))
465 goto out;
1da177e4 466
1cd78776
YL
467 if (cpu_has(c, X86_FEATURE_XTOPOLOGY))
468 return;
1da177e4 469
0a488a53 470 cpuid(1, &eax, &ebx, &ecx, &edx);
1da177e4 471
9d31d35b
YL
472 smp_num_siblings = (ebx & 0xff0000) >> 16;
473
474 if (smp_num_siblings == 1) {
2eaad1fd 475 printk_once(KERN_INFO "CPU0: Hyper-Threading is disabled\n");
0f3fa48a
IM
476 goto out;
477 }
9d31d35b 478
0f3fa48a
IM
479 if (smp_num_siblings <= 1)
480 goto out;
9d31d35b 481
0f3fa48a
IM
482 index_msb = get_count_order(smp_num_siblings);
483 c->phys_proc_id = apic->phys_pkg_id(c->initial_apicid, index_msb);
9d31d35b 484
0f3fa48a 485 smp_num_siblings = smp_num_siblings / c->x86_max_cores;
9d31d35b 486
0f3fa48a 487 index_msb = get_count_order(smp_num_siblings);
9d31d35b 488
0f3fa48a 489 core_bits = get_count_order(c->x86_max_cores);
9d31d35b 490
0f3fa48a
IM
491 c->cpu_core_id = apic->phys_pkg_id(c->initial_apicid, index_msb) &
492 ((1 << core_bits) - 1);
1da177e4 493
0a488a53 494out:
2eaad1fd 495 if (!printed && (c->x86_max_cores * smp_num_siblings) > 1) {
0a488a53
YL
496 printk(KERN_INFO "CPU: Physical Processor ID: %d\n",
497 c->phys_proc_id);
498 printk(KERN_INFO "CPU: Processor Core ID: %d\n",
499 c->cpu_core_id);
2eaad1fd 500 printed = 1;
9d31d35b 501 }
9d31d35b 502#endif
97e4db7c 503}
1da177e4 504
3da99c97 505static void __cpuinit get_cpu_vendor(struct cpuinfo_x86 *c)
1da177e4
LT
506{
507 char *v = c->x86_vendor_id;
0f3fa48a 508 int i;
1da177e4
LT
509
510 for (i = 0; i < X86_VENDOR_NUM; i++) {
10a434fc
YL
511 if (!cpu_devs[i])
512 break;
513
514 if (!strcmp(v, cpu_devs[i]->c_ident[0]) ||
515 (cpu_devs[i]->c_ident[1] &&
516 !strcmp(v, cpu_devs[i]->c_ident[1]))) {
0f3fa48a 517
10a434fc
YL
518 this_cpu = cpu_devs[i];
519 c->x86_vendor = this_cpu->c_x86_vendor;
520 return;
1da177e4
LT
521 }
522 }
10a434fc 523
a9c56953
MK
524 printk_once(KERN_ERR
525 "CPU: vendor_id '%s' unknown, using generic init.\n" \
526 "CPU: Your system may be unstable.\n", v);
10a434fc 527
fe38d855
CE
528 c->x86_vendor = X86_VENDOR_UNKNOWN;
529 this_cpu = &default_cpu;
1da177e4
LT
530}
531
9d31d35b 532void __cpuinit cpu_detect(struct cpuinfo_x86 *c)
1da177e4 533{
1da177e4 534 /* Get vendor name */
4a148513
HH
535 cpuid(0x00000000, (unsigned int *)&c->cpuid_level,
536 (unsigned int *)&c->x86_vendor_id[0],
537 (unsigned int *)&c->x86_vendor_id[8],
538 (unsigned int *)&c->x86_vendor_id[4]);
1da177e4 539
1da177e4 540 c->x86 = 4;
9d31d35b 541 /* Intel-defined flags: level 0x00000001 */
1da177e4
LT
542 if (c->cpuid_level >= 0x00000001) {
543 u32 junk, tfms, cap0, misc;
0f3fa48a 544
1da177e4 545 cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
9d31d35b
YL
546 c->x86 = (tfms >> 8) & 0xf;
547 c->x86_model = (tfms >> 4) & 0xf;
548 c->x86_mask = tfms & 0xf;
0f3fa48a 549
f5f786d0 550 if (c->x86 == 0xf)
1da177e4 551 c->x86 += (tfms >> 20) & 0xff;
f5f786d0 552 if (c->x86 >= 0x6)
9d31d35b 553 c->x86_model += ((tfms >> 16) & 0xf) << 4;
0f3fa48a 554
d4387bd3 555 if (cap0 & (1<<19)) {
d4387bd3 556 c->x86_clflush_size = ((misc >> 8) & 0xff) * 8;
9d31d35b 557 c->x86_cache_alignment = c->x86_clflush_size;
d4387bd3 558 }
1da177e4 559 }
1da177e4 560}
3da99c97 561
d900329e 562void __cpuinit get_cpu_cap(struct cpuinfo_x86 *c)
093af8d7
YL
563{
564 u32 tfms, xlvl;
3da99c97 565 u32 ebx;
093af8d7 566
3da99c97
YL
567 /* Intel-defined flags: level 0x00000001 */
568 if (c->cpuid_level >= 0x00000001) {
569 u32 capability, excap;
0f3fa48a 570
3da99c97
YL
571 cpuid(0x00000001, &tfms, &ebx, &excap, &capability);
572 c->x86_capability[0] = capability;
573 c->x86_capability[4] = excap;
574 }
093af8d7 575
bdc802dc
PA
576 /* Additional Intel-defined flags: level 0x00000007 */
577 if (c->cpuid_level >= 0x00000007) {
578 u32 eax, ebx, ecx, edx;
579
580 cpuid_count(0x00000007, 0, &eax, &ebx, &ecx, &edx);
581
2494b030 582 c->x86_capability[9] = ebx;
bdc802dc
PA
583 }
584
3da99c97
YL
585 /* AMD-defined flags: level 0x80000001 */
586 xlvl = cpuid_eax(0x80000000);
587 c->extended_cpuid_level = xlvl;
0f3fa48a 588
3da99c97
YL
589 if ((xlvl & 0xffff0000) == 0x80000000) {
590 if (xlvl >= 0x80000001) {
591 c->x86_capability[1] = cpuid_edx(0x80000001);
592 c->x86_capability[6] = cpuid_ecx(0x80000001);
093af8d7 593 }
093af8d7 594 }
093af8d7 595
5122c890
YL
596 if (c->extended_cpuid_level >= 0x80000008) {
597 u32 eax = cpuid_eax(0x80000008);
598
599 c->x86_virt_bits = (eax >> 8) & 0xff;
600 c->x86_phys_bits = eax & 0xff;
093af8d7 601 }
13c6c532
JB
602#ifdef CONFIG_X86_32
603 else if (cpu_has(c, X86_FEATURE_PAE) || cpu_has(c, X86_FEATURE_PSE36))
604 c->x86_phys_bits = 36;
5122c890 605#endif
e3224234
YL
606
607 if (c->extended_cpuid_level >= 0x80000007)
608 c->x86_power = cpuid_edx(0x80000007);
093af8d7 609
1dedefd1 610 init_scattered_cpuid_features(c);
093af8d7 611}
1da177e4 612
aef93c8b
YL
613static void __cpuinit identify_cpu_without_cpuid(struct cpuinfo_x86 *c)
614{
615#ifdef CONFIG_X86_32
616 int i;
617
618 /*
619 * First of all, decide if this is a 486 or higher
620 * It's a 486 if we can modify the AC flag
621 */
622 if (flag_is_changeable_p(X86_EFLAGS_AC))
623 c->x86 = 4;
624 else
625 c->x86 = 3;
626
627 for (i = 0; i < X86_VENDOR_NUM; i++)
628 if (cpu_devs[i] && cpu_devs[i]->c_identify) {
629 c->x86_vendor_id[0] = 0;
630 cpu_devs[i]->c_identify(c);
631 if (c->x86_vendor_id[0]) {
632 get_cpu_vendor(c);
633 break;
634 }
635 }
636#endif
637}
638
34048c9e
PC
639/*
640 * Do minimum CPU detection early.
641 * Fields really needed: vendor, cpuid_level, family, model, mask,
642 * cache alignment.
643 * The others are not touched to avoid unwanted side effects.
644 *
645 * WARNING: this function is only called on the BP. Don't add code here
646 * that is supposed to run on all CPUs.
647 */
3da99c97 648static void __init early_identify_cpu(struct cpuinfo_x86 *c)
d7cd5611 649{
6627d242
YL
650#ifdef CONFIG_X86_64
651 c->x86_clflush_size = 64;
13c6c532
JB
652 c->x86_phys_bits = 36;
653 c->x86_virt_bits = 48;
6627d242 654#else
d4387bd3 655 c->x86_clflush_size = 32;
13c6c532
JB
656 c->x86_phys_bits = 32;
657 c->x86_virt_bits = 32;
6627d242 658#endif
0a488a53 659 c->x86_cache_alignment = c->x86_clflush_size;
d7cd5611 660
3da99c97 661 memset(&c->x86_capability, 0, sizeof c->x86_capability);
0a488a53 662 c->extended_cpuid_level = 0;
d7cd5611 663
aef93c8b
YL
664 if (!have_cpuid_p())
665 identify_cpu_without_cpuid(c);
666
667 /* cyrix could have cpuid enabled via c_identify()*/
d7cd5611
RR
668 if (!have_cpuid_p())
669 return;
670
671 cpu_detect(c);
672
3da99c97 673 get_cpu_vendor(c);
2b16a235 674
3da99c97 675 get_cpu_cap(c);
12cf105c 676
10a434fc
YL
677 if (this_cpu->c_early_init)
678 this_cpu->c_early_init(c);
093af8d7 679
f6e9456c 680 c->cpu_index = 0;
b38b0665 681 filter_cpuid_features(c, false);
de5397ad
FY
682
683 setup_smep(c);
a110b5ec
BP
684
685 if (this_cpu->c_bsp_init)
686 this_cpu->c_bsp_init(c);
d7cd5611
RR
687}
688
9d31d35b
YL
689void __init early_cpu_init(void)
690{
02dde8b4 691 const struct cpu_dev *const *cdev;
10a434fc
YL
692 int count = 0;
693
ac23f253 694#ifdef CONFIG_PROCESSOR_SELECT
9766cdbc 695 printk(KERN_INFO "KERNEL supported cpus:\n");
31c997ca
IM
696#endif
697
10a434fc 698 for (cdev = __x86_cpu_dev_start; cdev < __x86_cpu_dev_end; cdev++) {
02dde8b4 699 const struct cpu_dev *cpudev = *cdev;
9d31d35b 700
10a434fc
YL
701 if (count >= X86_VENDOR_NUM)
702 break;
703 cpu_devs[count] = cpudev;
704 count++;
705
ac23f253 706#ifdef CONFIG_PROCESSOR_SELECT
31c997ca
IM
707 {
708 unsigned int j;
709
710 for (j = 0; j < 2; j++) {
711 if (!cpudev->c_ident[j])
712 continue;
713 printk(KERN_INFO " %s %s\n", cpudev->c_vendor,
714 cpudev->c_ident[j]);
715 }
10a434fc 716 }
0388423d 717#endif
10a434fc 718 }
9d31d35b 719 early_identify_cpu(&boot_cpu_data);
d7cd5611 720}
093af8d7 721
b6734c35 722/*
366d4a43
BP
723 * The NOPL instruction is supposed to exist on all CPUs of family >= 6;
724 * unfortunately, that's not true in practice because of early VIA
725 * chips and (more importantly) broken virtualizers that are not easy
726 * to detect. In the latter case it doesn't even *fail* reliably, so
727 * probing for it doesn't even work. Disable it completely on 32-bit
ba0593bf 728 * unless we can find a reliable way to detect all the broken cases.
366d4a43 729 * Enable it explicitly on 64-bit for non-constant inputs of cpu_has().
b6734c35
PA
730 */
731static void __cpuinit detect_nopl(struct cpuinfo_x86 *c)
732{
366d4a43 733#ifdef CONFIG_X86_32
b6734c35 734 clear_cpu_cap(c, X86_FEATURE_NOPL);
366d4a43
BP
735#else
736 set_cpu_cap(c, X86_FEATURE_NOPL);
737#endif
d7cd5611
RR
738}
739
34048c9e 740static void __cpuinit generic_identify(struct cpuinfo_x86 *c)
1da177e4 741{
aef93c8b 742 c->extended_cpuid_level = 0;
1da177e4 743
3da99c97 744 if (!have_cpuid_p())
aef93c8b 745 identify_cpu_without_cpuid(c);
1d67953f 746
aef93c8b 747 /* cyrix could have cpuid enabled via c_identify()*/
a9853dd6 748 if (!have_cpuid_p())
aef93c8b 749 return;
1da177e4 750
3da99c97 751 cpu_detect(c);
1da177e4 752
3da99c97 753 get_cpu_vendor(c);
1da177e4 754
3da99c97 755 get_cpu_cap(c);
1da177e4 756
3da99c97
YL
757 if (c->cpuid_level >= 0x00000001) {
758 c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xFF;
b89d3b3e
YL
759#ifdef CONFIG_X86_32
760# ifdef CONFIG_X86_HT
cb8cc442 761 c->apicid = apic->phys_pkg_id(c->initial_apicid, 0);
b89d3b3e 762# else
3da99c97 763 c->apicid = c->initial_apicid;
b89d3b3e
YL
764# endif
765#endif
b89d3b3e 766 c->phys_proc_id = c->initial_apicid;
3da99c97 767 }
1da177e4 768
de5397ad
FY
769 setup_smep(c);
770
1b05d60d 771 get_model_name(c); /* Default name */
1da177e4 772
3da99c97 773 detect_nopl(c);
1da177e4 774}
1da177e4
LT
775
776/*
777 * This does the hard work of actually picking apart the CPU stuff...
778 */
9a250347 779static void __cpuinit identify_cpu(struct cpuinfo_x86 *c)
1da177e4
LT
780{
781 int i;
782
783 c->loops_per_jiffy = loops_per_jiffy;
784 c->x86_cache_size = -1;
785 c->x86_vendor = X86_VENDOR_UNKNOWN;
1da177e4
LT
786 c->x86_model = c->x86_mask = 0; /* So far unknown... */
787 c->x86_vendor_id[0] = '\0'; /* Unset */
788 c->x86_model_id[0] = '\0'; /* Unset */
94605eff 789 c->x86_max_cores = 1;
102bbe3a 790 c->x86_coreid_bits = 0;
11fdd252 791#ifdef CONFIG_X86_64
102bbe3a 792 c->x86_clflush_size = 64;
13c6c532
JB
793 c->x86_phys_bits = 36;
794 c->x86_virt_bits = 48;
102bbe3a
YL
795#else
796 c->cpuid_level = -1; /* CPUID not detected */
770d132f 797 c->x86_clflush_size = 32;
13c6c532
JB
798 c->x86_phys_bits = 32;
799 c->x86_virt_bits = 32;
102bbe3a
YL
800#endif
801 c->x86_cache_alignment = c->x86_clflush_size;
1da177e4
LT
802 memset(&c->x86_capability, 0, sizeof c->x86_capability);
803
1da177e4
LT
804 generic_identify(c);
805
3898534d 806 if (this_cpu->c_identify)
1da177e4
LT
807 this_cpu->c_identify(c);
808
2759c328
YL
809 /* Clear/Set all flags overriden by options, after probe */
810 for (i = 0; i < NCAPINTS; i++) {
811 c->x86_capability[i] &= ~cpu_caps_cleared[i];
812 c->x86_capability[i] |= cpu_caps_set[i];
813 }
814
102bbe3a 815#ifdef CONFIG_X86_64
cb8cc442 816 c->apicid = apic->phys_pkg_id(c->initial_apicid, 0);
102bbe3a
YL
817#endif
818
1da177e4
LT
819 /*
820 * Vendor-specific initialization. In this section we
821 * canonicalize the feature flags, meaning if there are
822 * features a certain CPU supports which CPUID doesn't
823 * tell us, CPUID claiming incorrect flags, or other bugs,
824 * we handle them here.
825 *
826 * At the end of this section, c->x86_capability better
827 * indicate the features this CPU genuinely supports!
828 */
829 if (this_cpu->c_init)
830 this_cpu->c_init(c);
831
832 /* Disable the PN if appropriate */
833 squash_the_stupid_serial_number(c);
834
835 /*
0f3fa48a
IM
836 * The vendor-specific functions might have changed features.
837 * Now we do "generic changes."
1da177e4
LT
838 */
839
b38b0665
PA
840 /* Filter out anything that depends on CPUID levels we don't have */
841 filter_cpuid_features(c, true);
842
1da177e4 843 /* If the model name is still unset, do table lookup. */
34048c9e 844 if (!c->x86_model_id[0]) {
02dde8b4 845 const char *p;
1da177e4 846 p = table_lookup_model(c);
34048c9e 847 if (p)
1da177e4
LT
848 strcpy(c->x86_model_id, p);
849 else
850 /* Last resort... */
851 sprintf(c->x86_model_id, "%02x/%02x",
54a20f8c 852 c->x86, c->x86_model);
1da177e4
LT
853 }
854
102bbe3a
YL
855#ifdef CONFIG_X86_64
856 detect_ht(c);
857#endif
858
88b094fb 859 init_hypervisor(c);
49d859d7 860 x86_init_rdrand(c);
3e0c3737
YL
861
862 /*
863 * Clear/Set all flags overriden by options, need do it
864 * before following smp all cpus cap AND.
865 */
866 for (i = 0; i < NCAPINTS; i++) {
867 c->x86_capability[i] &= ~cpu_caps_cleared[i];
868 c->x86_capability[i] |= cpu_caps_set[i];
869 }
870
1da177e4
LT
871 /*
872 * On SMP, boot_cpu_data holds the common feature set between
873 * all CPUs; so make sure that we indicate which features are
874 * common between the CPUs. The first time this routine gets
875 * executed, c == &boot_cpu_data.
876 */
34048c9e 877 if (c != &boot_cpu_data) {
1da177e4 878 /* AND the already accumulated flags with these */
9d31d35b 879 for (i = 0; i < NCAPINTS; i++)
1da177e4
LT
880 boot_cpu_data.x86_capability[i] &= c->x86_capability[i];
881 }
882
883 /* Init Machine Check Exception if available. */
5e09954a 884 mcheck_cpu_init(c);
30d432df
AK
885
886 select_idle_routine(c);
102bbe3a 887
de2d9445 888#ifdef CONFIG_NUMA
102bbe3a
YL
889 numa_add_cpu(smp_processor_id());
890#endif
a6c4e076 891}
31ab269a 892
e04d645f
GC
893#ifdef CONFIG_X86_64
894static void vgetcpu_set_mode(void)
895{
896 if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP))
897 vgetcpu_mode = VGETCPU_RDTSCP;
898 else
899 vgetcpu_mode = VGETCPU_LSL;
900}
901#endif
902
a6c4e076
JF
903void __init identify_boot_cpu(void)
904{
905 identify_cpu(&boot_cpu_data);
02c68a02 906 init_amd_e400_c1e_mask();
102bbe3a 907#ifdef CONFIG_X86_32
a6c4e076 908 sysenter_setup();
6fe940d6 909 enable_sep_cpu();
e04d645f
GC
910#else
911 vgetcpu_set_mode();
102bbe3a 912#endif
a6c4e076 913}
3b520b23 914
a6c4e076
JF
915void __cpuinit identify_secondary_cpu(struct cpuinfo_x86 *c)
916{
917 BUG_ON(c == &boot_cpu_data);
918 identify_cpu(c);
102bbe3a 919#ifdef CONFIG_X86_32
a6c4e076 920 enable_sep_cpu();
102bbe3a 921#endif
a6c4e076 922 mtrr_ap_init();
1da177e4
LT
923}
924
a0854a46 925struct msr_range {
0f3fa48a
IM
926 unsigned min;
927 unsigned max;
a0854a46 928};
1da177e4 929
02dde8b4 930static const struct msr_range msr_range_array[] __cpuinitconst = {
a0854a46
YL
931 { 0x00000000, 0x00000418},
932 { 0xc0000000, 0xc000040b},
933 { 0xc0010000, 0xc0010142},
934 { 0xc0011000, 0xc001103b},
935};
1da177e4 936
a0854a46
YL
937static void __cpuinit print_cpu_msr(void)
938{
0f3fa48a 939 unsigned index_min, index_max;
a0854a46
YL
940 unsigned index;
941 u64 val;
942 int i;
a0854a46
YL
943
944 for (i = 0; i < ARRAY_SIZE(msr_range_array); i++) {
945 index_min = msr_range_array[i].min;
946 index_max = msr_range_array[i].max;
0f3fa48a 947
a0854a46
YL
948 for (index = index_min; index < index_max; index++) {
949 if (rdmsrl_amd_safe(index, &val))
950 continue;
951 printk(KERN_INFO " MSR%08x: %016llx\n", index, val);
1da177e4 952 }
a0854a46
YL
953 }
954}
94605eff 955
a0854a46 956static int show_msr __cpuinitdata;
0f3fa48a 957
a0854a46
YL
958static __init int setup_show_msr(char *arg)
959{
960 int num;
3dd9d514 961
a0854a46 962 get_option(&arg, &num);
3dd9d514 963
a0854a46
YL
964 if (num > 0)
965 show_msr = num;
966 return 1;
1da177e4 967}
a0854a46 968__setup("show_msr=", setup_show_msr);
1da177e4 969
191679fd
AK
970static __init int setup_noclflush(char *arg)
971{
972 setup_clear_cpu_cap(X86_FEATURE_CLFLSH);
973 return 1;
974}
975__setup("noclflush", setup_noclflush);
976
3bc9b76b 977void __cpuinit print_cpu_info(struct cpuinfo_x86 *c)
1da177e4 978{
02dde8b4 979 const char *vendor = NULL;
1da177e4 980
0f3fa48a 981 if (c->x86_vendor < X86_VENDOR_NUM) {
1da177e4 982 vendor = this_cpu->c_vendor;
0f3fa48a
IM
983 } else {
984 if (c->cpuid_level >= 0)
985 vendor = c->x86_vendor_id;
986 }
1da177e4 987
bd32a8cf 988 if (vendor && !strstr(c->x86_model_id, vendor))
9d31d35b 989 printk(KERN_CONT "%s ", vendor);
1da177e4 990
9d31d35b
YL
991 if (c->x86_model_id[0])
992 printk(KERN_CONT "%s", c->x86_model_id);
1da177e4 993 else
9d31d35b 994 printk(KERN_CONT "%d86", c->x86);
1da177e4 995
34048c9e 996 if (c->x86_mask || c->cpuid_level >= 0)
9d31d35b 997 printk(KERN_CONT " stepping %02x\n", c->x86_mask);
1da177e4 998 else
9d31d35b 999 printk(KERN_CONT "\n");
a0854a46
YL
1000
1001#ifdef CONFIG_SMP
1002 if (c->cpu_index < show_msr)
1003 print_cpu_msr();
1004#else
1005 if (show_msr)
1006 print_cpu_msr();
1007#endif
1da177e4
LT
1008}
1009
ac72e788
AK
1010static __init int setup_disablecpuid(char *arg)
1011{
1012 int bit;
0f3fa48a 1013
ac72e788
AK
1014 if (get_option(&arg, &bit) && bit < NCAPINTS*32)
1015 setup_clear_cpu_cap(bit);
1016 else
1017 return 0;
0f3fa48a 1018
ac72e788
AK
1019 return 1;
1020}
1021__setup("clearcpuid=", setup_disablecpuid);
1022
d5494d4f 1023#ifdef CONFIG_X86_64
9ff80942 1024struct desc_ptr idt_descr = { NR_VECTORS * 16 - 1, (unsigned long) idt_table };
228bdaa9
SR
1025struct desc_ptr nmi_idt_descr = { NR_VECTORS * 16 - 1,
1026 (unsigned long) nmi_idt_table };
d5494d4f 1027
947e76cd
BG
1028DEFINE_PER_CPU_FIRST(union irq_stack_union,
1029 irq_stack_union) __aligned(PAGE_SIZE);
0f3fa48a 1030
bdf977b3
TH
1031/*
1032 * The following four percpu variables are hot. Align current_task to
1033 * cacheline size such that all four fall in the same cacheline.
1034 */
1035DEFINE_PER_CPU(struct task_struct *, current_task) ____cacheline_aligned =
1036 &init_task;
1037EXPORT_PER_CPU_SYMBOL(current_task);
d5494d4f 1038
9af45651
BG
1039DEFINE_PER_CPU(unsigned long, kernel_stack) =
1040 (unsigned long)&init_thread_union - KERNEL_STACK_OFFSET + THREAD_SIZE;
1041EXPORT_PER_CPU_SYMBOL(kernel_stack);
1042
bdf977b3
TH
1043DEFINE_PER_CPU(char *, irq_stack_ptr) =
1044 init_per_cpu_var(irq_stack_union.irq_stack) + IRQ_STACK_SIZE - 64;
1045
56895530 1046DEFINE_PER_CPU(unsigned int, irq_count) = -1;
d5494d4f 1047
7e16838d
LT
1048DEFINE_PER_CPU(struct task_struct *, fpu_owner_task);
1049
0f3fa48a
IM
1050/*
1051 * Special IST stacks which the CPU switches to when it calls
1052 * an IST-marked descriptor entry. Up to 7 stacks (hardware
1053 * limit), all of them are 4K, except the debug stack which
1054 * is 8K.
1055 */
1056static const unsigned int exception_stack_sizes[N_EXCEPTION_STACKS] = {
1057 [0 ... N_EXCEPTION_STACKS - 1] = EXCEPTION_STKSZ,
1058 [DEBUG_STACK - 1] = DEBUG_STKSZ
1059};
1060
92d65b23 1061static DEFINE_PER_CPU_PAGE_ALIGNED(char, exception_stacks
3e352aa8 1062 [(N_EXCEPTION_STACKS - 1) * EXCEPTION_STKSZ + DEBUG_STKSZ]);
d5494d4f 1063
d5494d4f
YL
1064/* May not be marked __init: used by software suspend */
1065void syscall_init(void)
1da177e4 1066{
d5494d4f
YL
1067 /*
1068 * LSTAR and STAR live in a bit strange symbiosis.
1069 * They both write to the same internal register. STAR allows to
1070 * set CS/DS but only a 32bit target. LSTAR sets the 64bit rip.
1071 */
1072 wrmsrl(MSR_STAR, ((u64)__USER32_CS)<<48 | ((u64)__KERNEL_CS)<<32);
1073 wrmsrl(MSR_LSTAR, system_call);
1074 wrmsrl(MSR_CSTAR, ignore_sysret);
03ae5768 1075
d5494d4f
YL
1076#ifdef CONFIG_IA32_EMULATION
1077 syscall32_cpu_init();
1078#endif
03ae5768 1079
d5494d4f
YL
1080 /* Flags to clear on syscall */
1081 wrmsrl(MSR_SYSCALL_MASK,
1082 X86_EFLAGS_TF|X86_EFLAGS_DF|X86_EFLAGS_IF|X86_EFLAGS_IOPL);
1da177e4 1083}
62111195 1084
d5494d4f
YL
1085unsigned long kernel_eflags;
1086
1087/*
1088 * Copies of the original ist values from the tss are only accessed during
1089 * debugging, no special alignment required.
1090 */
1091DEFINE_PER_CPU(struct orig_ist, orig_ist);
1092
228bdaa9 1093static DEFINE_PER_CPU(unsigned long, debug_stack_addr);
42181186 1094DEFINE_PER_CPU(int, debug_stack_usage);
228bdaa9
SR
1095
1096int is_debug_stack(unsigned long addr)
1097{
42181186
SR
1098 return __get_cpu_var(debug_stack_usage) ||
1099 (addr <= __get_cpu_var(debug_stack_addr) &&
1100 addr > (__get_cpu_var(debug_stack_addr) - DEBUG_STKSZ));
228bdaa9
SR
1101}
1102
1103void debug_stack_set_zero(void)
1104{
1105 load_idt((const struct desc_ptr *)&nmi_idt_descr);
1106}
1107
1108void debug_stack_reset(void)
1109{
1110 load_idt((const struct desc_ptr *)&idt_descr);
1111}
1112
0f3fa48a 1113#else /* CONFIG_X86_64 */
d5494d4f 1114
bdf977b3
TH
1115DEFINE_PER_CPU(struct task_struct *, current_task) = &init_task;
1116EXPORT_PER_CPU_SYMBOL(current_task);
27e74da9 1117DEFINE_PER_CPU(struct task_struct *, fpu_owner_task);
bdf977b3 1118
60a5317f 1119#ifdef CONFIG_CC_STACKPROTECTOR
53f82452 1120DEFINE_PER_CPU_ALIGNED(struct stack_canary, stack_canary);
60a5317f 1121#endif
d5494d4f 1122
60a5317f 1123/* Make sure %fs and %gs are initialized properly in idle threads */
6b2fb3c6 1124struct pt_regs * __cpuinit idle_regs(struct pt_regs *regs)
f95d47ca
JF
1125{
1126 memset(regs, 0, sizeof(struct pt_regs));
65ea5b03 1127 regs->fs = __KERNEL_PERCPU;
60a5317f 1128 regs->gs = __KERNEL_STACK_CANARY;
0f3fa48a 1129
f95d47ca
JF
1130 return regs;
1131}
0f3fa48a 1132#endif /* CONFIG_X86_64 */
c5413fbe 1133
9766cdbc
JSR
1134/*
1135 * Clear all 6 debug registers:
1136 */
1137static void clear_all_debug_regs(void)
1138{
1139 int i;
1140
1141 for (i = 0; i < 8; i++) {
1142 /* Ignore db4, db5 */
1143 if ((i == 4) || (i == 5))
1144 continue;
1145
1146 set_debugreg(0, i);
1147 }
1148}
c5413fbe 1149
0bb9fef9
JW
1150#ifdef CONFIG_KGDB
1151/*
1152 * Restore debug regs if using kgdbwait and you have a kernel debugger
1153 * connection established.
1154 */
1155static void dbg_restore_debug_regs(void)
1156{
1157 if (unlikely(kgdb_connected && arch_kgdb_ops.correct_hw_break))
1158 arch_kgdb_ops.correct_hw_break();
1159}
1160#else /* ! CONFIG_KGDB */
1161#define dbg_restore_debug_regs()
1162#endif /* ! CONFIG_KGDB */
1163
64be4c1c
DB
1164/*
1165 * Prints an error where the NUMA and configured core-number mismatch and the
1166 * platform didn't override this to fix it up
1167 */
1168void __cpuinit x86_default_fixup_cpu_id(struct cpuinfo_x86 *c, int node)
1169{
1170 pr_err("NUMA core number %d differs from configured core number %d\n", node, c->phys_proc_id);
1171}
1172
d2cbcc49
RR
1173/*
1174 * cpu_init() initializes state that is per-CPU. Some data is already
1175 * initialized (naturally) in the bootstrap process, such as the GDT
1176 * and IDT. We reload them nevertheless, this function acts as a
1177 * 'CPU state barrier', nothing should get across.
1ba76586 1178 * A lot of state is already set up in PDA init for 64 bit
d2cbcc49 1179 */
1ba76586 1180#ifdef CONFIG_X86_64
0f3fa48a 1181
1ba76586
YL
1182void __cpuinit cpu_init(void)
1183{
0fe1e009 1184 struct orig_ist *oist;
1ba76586 1185 struct task_struct *me;
0f3fa48a
IM
1186 struct tss_struct *t;
1187 unsigned long v;
1188 int cpu;
1ba76586
YL
1189 int i;
1190
0f3fa48a
IM
1191 cpu = stack_smp_processor_id();
1192 t = &per_cpu(init_tss, cpu);
0fe1e009 1193 oist = &per_cpu(orig_ist, cpu);
0f3fa48a 1194
e7a22c1e 1195#ifdef CONFIG_NUMA
e534c7c5
LS
1196 if (cpu != 0 && percpu_read(numa_node) == 0 &&
1197 early_cpu_to_node(cpu) != NUMA_NO_NODE)
1198 set_numa_node(early_cpu_to_node(cpu));
e7a22c1e 1199#endif
1ba76586
YL
1200
1201 me = current;
1202
c2d1cec1 1203 if (cpumask_test_and_set_cpu(cpu, cpu_initialized_mask))
1ba76586
YL
1204 panic("CPU#%d already initialized!\n", cpu);
1205
2eaad1fd 1206 pr_debug("Initializing CPU#%d\n", cpu);
1ba76586
YL
1207
1208 clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
1209
1210 /*
1211 * Initialize the per-CPU GDT with the boot GDT,
1212 * and set up the GDT descriptor:
1213 */
1214
552be871 1215 switch_to_new_gdt(cpu);
2697fbd5
BG
1216 loadsegment(fs, 0);
1217
1ba76586
YL
1218 load_idt((const struct desc_ptr *)&idt_descr);
1219
1220 memset(me->thread.tls_array, 0, GDT_ENTRY_TLS_ENTRIES * 8);
1221 syscall_init();
1222
1223 wrmsrl(MSR_FS_BASE, 0);
1224 wrmsrl(MSR_KERNEL_GS_BASE, 0);
1225 barrier();
1226
4763ed4d 1227 x86_configure_nx();
06cd9a7d 1228 if (cpu != 0)
1ba76586
YL
1229 enable_x2apic();
1230
1231 /*
1232 * set up and load the per-CPU TSS
1233 */
0fe1e009 1234 if (!oist->ist[0]) {
92d65b23 1235 char *estacks = per_cpu(exception_stacks, cpu);
0f3fa48a 1236
1ba76586 1237 for (v = 0; v < N_EXCEPTION_STACKS; v++) {
0f3fa48a 1238 estacks += exception_stack_sizes[v];
0fe1e009 1239 oist->ist[v] = t->x86_tss.ist[v] =
1ba76586 1240 (unsigned long)estacks;
228bdaa9
SR
1241 if (v == DEBUG_STACK-1)
1242 per_cpu(debug_stack_addr, cpu) = (unsigned long)estacks;
1ba76586
YL
1243 }
1244 }
1245
1246 t->x86_tss.io_bitmap_base = offsetof(struct tss_struct, io_bitmap);
0f3fa48a 1247
1ba76586
YL
1248 /*
1249 * <= is required because the CPU will access up to
1250 * 8 bits beyond the end of the IO permission bitmap.
1251 */
1252 for (i = 0; i <= IO_BITMAP_LONGS; i++)
1253 t->io_bitmap[i] = ~0UL;
1254
1255 atomic_inc(&init_mm.mm_count);
1256 me->active_mm = &init_mm;
8c5dfd25 1257 BUG_ON(me->mm);
1ba76586
YL
1258 enter_lazy_tlb(&init_mm, me);
1259
1260 load_sp0(t, &current->thread);
1261 set_tss_desc(cpu, t);
1262 load_TR_desc();
1263 load_LDT(&init_mm.context);
1264
0bb9fef9
JW
1265 clear_all_debug_regs();
1266 dbg_restore_debug_regs();
1ba76586
YL
1267
1268 fpu_init();
0e49bf66 1269 xsave_init();
1ba76586
YL
1270
1271 raw_local_save_flags(kernel_eflags);
1272
1273 if (is_uv_system())
1274 uv_cpu_init();
1275}
1276
1277#else
1278
d2cbcc49 1279void __cpuinit cpu_init(void)
9ee79a3d 1280{
d2cbcc49
RR
1281 int cpu = smp_processor_id();
1282 struct task_struct *curr = current;
34048c9e 1283 struct tss_struct *t = &per_cpu(init_tss, cpu);
9ee79a3d 1284 struct thread_struct *thread = &curr->thread;
62111195 1285
c2d1cec1 1286 if (cpumask_test_and_set_cpu(cpu, cpu_initialized_mask)) {
62111195 1287 printk(KERN_WARNING "CPU#%d already initialized!\n", cpu);
9766cdbc
JSR
1288 for (;;)
1289 local_irq_enable();
62111195
JF
1290 }
1291
1292 printk(KERN_INFO "Initializing CPU#%d\n", cpu);
1293
1294 if (cpu_has_vme || cpu_has_tsc || cpu_has_de)
1295 clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
62111195 1296
4d37e7e3 1297 load_idt(&idt_descr);
552be871 1298 switch_to_new_gdt(cpu);
1da177e4 1299
1da177e4
LT
1300 /*
1301 * Set up and load the per-CPU TSS and LDT
1302 */
1303 atomic_inc(&init_mm.mm_count);
62111195 1304 curr->active_mm = &init_mm;
8c5dfd25 1305 BUG_ON(curr->mm);
62111195 1306 enter_lazy_tlb(&init_mm, curr);
1da177e4 1307
faca6227 1308 load_sp0(t, thread);
34048c9e 1309 set_tss_desc(cpu, t);
1da177e4
LT
1310 load_TR_desc();
1311 load_LDT(&init_mm.context);
1312
f9a196b8
TG
1313 t->x86_tss.io_bitmap_base = offsetof(struct tss_struct, io_bitmap);
1314
22c4e308 1315#ifdef CONFIG_DOUBLEFAULT
1da177e4
LT
1316 /* Set up doublefault TSS pointer in the GDT */
1317 __set_tss_desc(cpu, GDT_ENTRY_DOUBLEFAULT_TSS, &doublefault_tss);
22c4e308 1318#endif
1da177e4 1319
9766cdbc 1320 clear_all_debug_regs();
0bb9fef9 1321 dbg_restore_debug_regs();
1da177e4 1322
0e49bf66 1323 fpu_init();
dc1e35c6 1324 xsave_init();
1da177e4 1325}
1ba76586 1326#endif