]> asedeno.scripts.mit.edu Git - linux.git/blob - arch/x86/kernel/cpu/common.c
Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux.git] / arch / x86 / kernel / cpu / common.c
1 #include <linux/bootmem.h>
2 #include <linux/linkage.h>
3 #include <linux/bitops.h>
4 #include <linux/kernel.h>
5 #include <linux/export.h>
6 #include <linux/percpu.h>
7 #include <linux/string.h>
8 #include <linux/ctype.h>
9 #include <linux/delay.h>
10 #include <linux/sched.h>
11 #include <linux/init.h>
12 #include <linux/kprobes.h>
13 #include <linux/kgdb.h>
14 #include <linux/smp.h>
15 #include <linux/io.h>
16 #include <linux/syscore_ops.h>
17
18 #include <asm/stackprotector.h>
19 #include <asm/perf_event.h>
20 #include <asm/mmu_context.h>
21 #include <asm/archrandom.h>
22 #include <asm/hypervisor.h>
23 #include <asm/processor.h>
24 #include <asm/tlbflush.h>
25 #include <asm/debugreg.h>
26 #include <asm/sections.h>
27 #include <asm/vsyscall.h>
28 #include <linux/topology.h>
29 #include <linux/cpumask.h>
30 #include <asm/pgtable.h>
31 #include <linux/atomic.h>
32 #include <asm/proto.h>
33 #include <asm/setup.h>
34 #include <asm/apic.h>
35 #include <asm/desc.h>
36 #include <asm/fpu/internal.h>
37 #include <asm/mtrr.h>
38 #include <linux/numa.h>
39 #include <asm/asm.h>
40 #include <asm/bugs.h>
41 #include <asm/cpu.h>
42 #include <asm/mce.h>
43 #include <asm/msr.h>
44 #include <asm/pat.h>
45 #include <asm/microcode.h>
46 #include <asm/microcode_intel.h>
47
48 #ifdef CONFIG_X86_LOCAL_APIC
49 #include <asm/uv/uv.h>
50 #endif
51
52 #include "cpu.h"
53
54 /* all of these masks are initialized in setup_cpu_local_masks() */
55 cpumask_var_t cpu_initialized_mask;
56 cpumask_var_t cpu_callout_mask;
57 cpumask_var_t cpu_callin_mask;
58
59 /* representing cpus for which sibling maps can be computed */
60 cpumask_var_t cpu_sibling_setup_mask;
61
62 /* correctly size the local cpu masks */
63 void __init setup_cpu_local_masks(void)
64 {
65         alloc_bootmem_cpumask_var(&cpu_initialized_mask);
66         alloc_bootmem_cpumask_var(&cpu_callin_mask);
67         alloc_bootmem_cpumask_var(&cpu_callout_mask);
68         alloc_bootmem_cpumask_var(&cpu_sibling_setup_mask);
69 }
70
71 static void default_init(struct cpuinfo_x86 *c)
72 {
73 #ifdef CONFIG_X86_64
74         cpu_detect_cache_sizes(c);
75 #else
76         /* Not much we can do here... */
77         /* Check if at least it has cpuid */
78         if (c->cpuid_level == -1) {
79                 /* No cpuid. It must be an ancient CPU */
80                 if (c->x86 == 4)
81                         strcpy(c->x86_model_id, "486");
82                 else if (c->x86 == 3)
83                         strcpy(c->x86_model_id, "386");
84         }
85 #endif
86         clear_sched_clock_stable();
87 }
88
89 static const struct cpu_dev default_cpu = {
90         .c_init         = default_init,
91         .c_vendor       = "Unknown",
92         .c_x86_vendor   = X86_VENDOR_UNKNOWN,
93 };
94
95 static const struct cpu_dev *this_cpu = &default_cpu;
96
97 DEFINE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page) = { .gdt = {
98 #ifdef CONFIG_X86_64
99         /*
100          * We need valid kernel segments for data and code in long mode too
101          * IRET will check the segment types  kkeil 2000/10/28
102          * Also sysret mandates a special GDT layout
103          *
104          * TLS descriptors are currently at a different place compared to i386.
105          * Hopefully nobody expects them at a fixed place (Wine?)
106          */
107         [GDT_ENTRY_KERNEL32_CS]         = GDT_ENTRY_INIT(0xc09b, 0, 0xfffff),
108         [GDT_ENTRY_KERNEL_CS]           = GDT_ENTRY_INIT(0xa09b, 0, 0xfffff),
109         [GDT_ENTRY_KERNEL_DS]           = GDT_ENTRY_INIT(0xc093, 0, 0xfffff),
110         [GDT_ENTRY_DEFAULT_USER32_CS]   = GDT_ENTRY_INIT(0xc0fb, 0, 0xfffff),
111         [GDT_ENTRY_DEFAULT_USER_DS]     = GDT_ENTRY_INIT(0xc0f3, 0, 0xfffff),
112         [GDT_ENTRY_DEFAULT_USER_CS]     = GDT_ENTRY_INIT(0xa0fb, 0, 0xfffff),
113 #else
114         [GDT_ENTRY_KERNEL_CS]           = GDT_ENTRY_INIT(0xc09a, 0, 0xfffff),
115         [GDT_ENTRY_KERNEL_DS]           = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
116         [GDT_ENTRY_DEFAULT_USER_CS]     = GDT_ENTRY_INIT(0xc0fa, 0, 0xfffff),
117         [GDT_ENTRY_DEFAULT_USER_DS]     = GDT_ENTRY_INIT(0xc0f2, 0, 0xfffff),
118         /*
119          * Segments used for calling PnP BIOS have byte granularity.
120          * They code segments and data segments have fixed 64k limits,
121          * the transfer segment sizes are set at run time.
122          */
123         /* 32-bit code */
124         [GDT_ENTRY_PNPBIOS_CS32]        = GDT_ENTRY_INIT(0x409a, 0, 0xffff),
125         /* 16-bit code */
126         [GDT_ENTRY_PNPBIOS_CS16]        = GDT_ENTRY_INIT(0x009a, 0, 0xffff),
127         /* 16-bit data */
128         [GDT_ENTRY_PNPBIOS_DS]          = GDT_ENTRY_INIT(0x0092, 0, 0xffff),
129         /* 16-bit data */
130         [GDT_ENTRY_PNPBIOS_TS1]         = GDT_ENTRY_INIT(0x0092, 0, 0),
131         /* 16-bit data */
132         [GDT_ENTRY_PNPBIOS_TS2]         = GDT_ENTRY_INIT(0x0092, 0, 0),
133         /*
134          * The APM segments have byte granularity and their bases
135          * are set at run time.  All have 64k limits.
136          */
137         /* 32-bit code */
138         [GDT_ENTRY_APMBIOS_BASE]        = GDT_ENTRY_INIT(0x409a, 0, 0xffff),
139         /* 16-bit code */
140         [GDT_ENTRY_APMBIOS_BASE+1]      = GDT_ENTRY_INIT(0x009a, 0, 0xffff),
141         /* data */
142         [GDT_ENTRY_APMBIOS_BASE+2]      = GDT_ENTRY_INIT(0x4092, 0, 0xffff),
143
144         [GDT_ENTRY_ESPFIX_SS]           = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
145         [GDT_ENTRY_PERCPU]              = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
146         GDT_STACK_CANARY_INIT
147 #endif
148 } };
149 EXPORT_PER_CPU_SYMBOL_GPL(gdt_page);
150
151 static int __init x86_mpx_setup(char *s)
152 {
153         /* require an exact match without trailing characters */
154         if (strlen(s))
155                 return 0;
156
157         /* do not emit a message if the feature is not present */
158         if (!boot_cpu_has(X86_FEATURE_MPX))
159                 return 1;
160
161         setup_clear_cpu_cap(X86_FEATURE_MPX);
162         pr_info("nompx: Intel Memory Protection Extensions (MPX) disabled\n");
163         return 1;
164 }
165 __setup("nompx", x86_mpx_setup);
166
167 static int __init x86_noinvpcid_setup(char *s)
168 {
169         /* noinvpcid doesn't accept parameters */
170         if (s)
171                 return -EINVAL;
172
173         /* do not emit a message if the feature is not present */
174         if (!boot_cpu_has(X86_FEATURE_INVPCID))
175                 return 0;
176
177         setup_clear_cpu_cap(X86_FEATURE_INVPCID);
178         pr_info("noinvpcid: INVPCID feature disabled\n");
179         return 0;
180 }
181 early_param("noinvpcid", x86_noinvpcid_setup);
182
183 #ifdef CONFIG_X86_32
184 static int cachesize_override = -1;
185 static int disable_x86_serial_nr = 1;
186
187 static int __init cachesize_setup(char *str)
188 {
189         get_option(&str, &cachesize_override);
190         return 1;
191 }
192 __setup("cachesize=", cachesize_setup);
193
194 static int __init x86_sep_setup(char *s)
195 {
196         setup_clear_cpu_cap(X86_FEATURE_SEP);
197         return 1;
198 }
199 __setup("nosep", x86_sep_setup);
200
201 /* Standard macro to see if a specific flag is changeable */
202 static inline int flag_is_changeable_p(u32 flag)
203 {
204         u32 f1, f2;
205
206         /*
207          * Cyrix and IDT cpus allow disabling of CPUID
208          * so the code below may return different results
209          * when it is executed before and after enabling
210          * the CPUID. Add "volatile" to not allow gcc to
211          * optimize the subsequent calls to this function.
212          */
213         asm volatile ("pushfl           \n\t"
214                       "pushfl           \n\t"
215                       "popl %0          \n\t"
216                       "movl %0, %1      \n\t"
217                       "xorl %2, %0      \n\t"
218                       "pushl %0         \n\t"
219                       "popfl            \n\t"
220                       "pushfl           \n\t"
221                       "popl %0          \n\t"
222                       "popfl            \n\t"
223
224                       : "=&r" (f1), "=&r" (f2)
225                       : "ir" (flag));
226
227         return ((f1^f2) & flag) != 0;
228 }
229
230 /* Probe for the CPUID instruction */
231 int have_cpuid_p(void)
232 {
233         return flag_is_changeable_p(X86_EFLAGS_ID);
234 }
235
236 static void squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
237 {
238         unsigned long lo, hi;
239
240         if (!cpu_has(c, X86_FEATURE_PN) || !disable_x86_serial_nr)
241                 return;
242
243         /* Disable processor serial number: */
244
245         rdmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
246         lo |= 0x200000;
247         wrmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
248
249         pr_notice("CPU serial number disabled.\n");
250         clear_cpu_cap(c, X86_FEATURE_PN);
251
252         /* Disabling the serial number may affect the cpuid level */
253         c->cpuid_level = cpuid_eax(0);
254 }
255
256 static int __init x86_serial_nr_setup(char *s)
257 {
258         disable_x86_serial_nr = 0;
259         return 1;
260 }
261 __setup("serialnumber", x86_serial_nr_setup);
262 #else
263 static inline int flag_is_changeable_p(u32 flag)
264 {
265         return 1;
266 }
267 static inline void squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
268 {
269 }
270 #endif
271
272 static __init int setup_disable_smep(char *arg)
273 {
274         setup_clear_cpu_cap(X86_FEATURE_SMEP);
275         /* Check for things that depend on SMEP being enabled: */
276         check_mpx_erratum(&boot_cpu_data);
277         return 1;
278 }
279 __setup("nosmep", setup_disable_smep);
280
281 static __always_inline void setup_smep(struct cpuinfo_x86 *c)
282 {
283         if (cpu_has(c, X86_FEATURE_SMEP))
284                 cr4_set_bits(X86_CR4_SMEP);
285 }
286
287 static __init int setup_disable_smap(char *arg)
288 {
289         setup_clear_cpu_cap(X86_FEATURE_SMAP);
290         return 1;
291 }
292 __setup("nosmap", setup_disable_smap);
293
294 static __always_inline void setup_smap(struct cpuinfo_x86 *c)
295 {
296         unsigned long eflags = native_save_fl();
297
298         /* This should have been cleared long ago */
299         BUG_ON(eflags & X86_EFLAGS_AC);
300
301         if (cpu_has(c, X86_FEATURE_SMAP)) {
302 #ifdef CONFIG_X86_SMAP
303                 cr4_set_bits(X86_CR4_SMAP);
304 #else
305                 cr4_clear_bits(X86_CR4_SMAP);
306 #endif
307         }
308 }
309
310 /*
311  * Protection Keys are not available in 32-bit mode.
312  */
313 static bool pku_disabled;
314
315 static __always_inline void setup_pku(struct cpuinfo_x86 *c)
316 {
317         /* check the boot processor, plus compile options for PKU: */
318         if (!cpu_feature_enabled(X86_FEATURE_PKU))
319                 return;
320         /* checks the actual processor's cpuid bits: */
321         if (!cpu_has(c, X86_FEATURE_PKU))
322                 return;
323         if (pku_disabled)
324                 return;
325
326         cr4_set_bits(X86_CR4_PKE);
327         /*
328          * Seting X86_CR4_PKE will cause the X86_FEATURE_OSPKE
329          * cpuid bit to be set.  We need to ensure that we
330          * update that bit in this CPU's "cpu_info".
331          */
332         get_cpu_cap(c);
333 }
334
335 #ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS
336 static __init int setup_disable_pku(char *arg)
337 {
338         /*
339          * Do not clear the X86_FEATURE_PKU bit.  All of the
340          * runtime checks are against OSPKE so clearing the
341          * bit does nothing.
342          *
343          * This way, we will see "pku" in cpuinfo, but not
344          * "ospke", which is exactly what we want.  It shows
345          * that the CPU has PKU, but the OS has not enabled it.
346          * This happens to be exactly how a system would look
347          * if we disabled the config option.
348          */
349         pr_info("x86: 'nopku' specified, disabling Memory Protection Keys\n");
350         pku_disabled = true;
351         return 1;
352 }
353 __setup("nopku", setup_disable_pku);
354 #endif /* CONFIG_X86_64 */
355
356 /*
357  * Some CPU features depend on higher CPUID levels, which may not always
358  * be available due to CPUID level capping or broken virtualization
359  * software.  Add those features to this table to auto-disable them.
360  */
361 struct cpuid_dependent_feature {
362         u32 feature;
363         u32 level;
364 };
365
366 static const struct cpuid_dependent_feature
367 cpuid_dependent_features[] = {
368         { X86_FEATURE_MWAIT,            0x00000005 },
369         { X86_FEATURE_DCA,              0x00000009 },
370         { X86_FEATURE_XSAVE,            0x0000000d },
371         { 0, 0 }
372 };
373
374 static void filter_cpuid_features(struct cpuinfo_x86 *c, bool warn)
375 {
376         const struct cpuid_dependent_feature *df;
377
378         for (df = cpuid_dependent_features; df->feature; df++) {
379
380                 if (!cpu_has(c, df->feature))
381                         continue;
382                 /*
383                  * Note: cpuid_level is set to -1 if unavailable, but
384                  * extended_extended_level is set to 0 if unavailable
385                  * and the legitimate extended levels are all negative
386                  * when signed; hence the weird messing around with
387                  * signs here...
388                  */
389                 if (!((s32)df->level < 0 ?
390                      (u32)df->level > (u32)c->extended_cpuid_level :
391                      (s32)df->level > (s32)c->cpuid_level))
392                         continue;
393
394                 clear_cpu_cap(c, df->feature);
395                 if (!warn)
396                         continue;
397
398                 pr_warn("CPU: CPU feature " X86_CAP_FMT " disabled, no CPUID level 0x%x\n",
399                         x86_cap_flag(df->feature), df->level);
400         }
401 }
402
403 /*
404  * Naming convention should be: <Name> [(<Codename>)]
405  * This table only is used unless init_<vendor>() below doesn't set it;
406  * in particular, if CPUID levels 0x80000002..4 are supported, this
407  * isn't used
408  */
409
410 /* Look up CPU names by table lookup. */
411 static const char *table_lookup_model(struct cpuinfo_x86 *c)
412 {
413 #ifdef CONFIG_X86_32
414         const struct legacy_cpu_model_info *info;
415
416         if (c->x86_model >= 16)
417                 return NULL;    /* Range check */
418
419         if (!this_cpu)
420                 return NULL;
421
422         info = this_cpu->legacy_models;
423
424         while (info->family) {
425                 if (info->family == c->x86)
426                         return info->model_names[c->x86_model];
427                 info++;
428         }
429 #endif
430         return NULL;            /* Not found */
431 }
432
433 __u32 cpu_caps_cleared[NCAPINTS];
434 __u32 cpu_caps_set[NCAPINTS];
435
436 void load_percpu_segment(int cpu)
437 {
438 #ifdef CONFIG_X86_32
439         loadsegment(fs, __KERNEL_PERCPU);
440 #else
441         __loadsegment_simple(gs, 0);
442         wrmsrl(MSR_GS_BASE, (unsigned long)per_cpu(irq_stack_union.gs_base, cpu));
443 #endif
444         load_stack_canary_segment();
445 }
446
447 /*
448  * Current gdt points %fs at the "master" per-cpu area: after this,
449  * it's on the real one.
450  */
451 void switch_to_new_gdt(int cpu)
452 {
453         struct desc_ptr gdt_descr;
454
455         gdt_descr.address = (long)get_cpu_gdt_table(cpu);
456         gdt_descr.size = GDT_SIZE - 1;
457         load_gdt(&gdt_descr);
458         /* Reload the per-cpu base */
459
460         load_percpu_segment(cpu);
461 }
462
463 static const struct cpu_dev *cpu_devs[X86_VENDOR_NUM] = {};
464
465 static void get_model_name(struct cpuinfo_x86 *c)
466 {
467         unsigned int *v;
468         char *p, *q, *s;
469
470         if (c->extended_cpuid_level < 0x80000004)
471                 return;
472
473         v = (unsigned int *)c->x86_model_id;
474         cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]);
475         cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]);
476         cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]);
477         c->x86_model_id[48] = 0;
478
479         /* Trim whitespace */
480         p = q = s = &c->x86_model_id[0];
481
482         while (*p == ' ')
483                 p++;
484
485         while (*p) {
486                 /* Note the last non-whitespace index */
487                 if (!isspace(*p))
488                         s = q;
489
490                 *q++ = *p++;
491         }
492
493         *(s + 1) = '\0';
494 }
495
496 void cpu_detect_cache_sizes(struct cpuinfo_x86 *c)
497 {
498         unsigned int n, dummy, ebx, ecx, edx, l2size;
499
500         n = c->extended_cpuid_level;
501
502         if (n >= 0x80000005) {
503                 cpuid(0x80000005, &dummy, &ebx, &ecx, &edx);
504                 c->x86_cache_size = (ecx>>24) + (edx>>24);
505 #ifdef CONFIG_X86_64
506                 /* On K8 L1 TLB is inclusive, so don't count it */
507                 c->x86_tlbsize = 0;
508 #endif
509         }
510
511         if (n < 0x80000006)     /* Some chips just has a large L1. */
512                 return;
513
514         cpuid(0x80000006, &dummy, &ebx, &ecx, &edx);
515         l2size = ecx >> 16;
516
517 #ifdef CONFIG_X86_64
518         c->x86_tlbsize += ((ebx >> 16) & 0xfff) + (ebx & 0xfff);
519 #else
520         /* do processor-specific cache resizing */
521         if (this_cpu->legacy_cache_size)
522                 l2size = this_cpu->legacy_cache_size(c, l2size);
523
524         /* Allow user to override all this if necessary. */
525         if (cachesize_override != -1)
526                 l2size = cachesize_override;
527
528         if (l2size == 0)
529                 return;         /* Again, no L2 cache is possible */
530 #endif
531
532         c->x86_cache_size = l2size;
533 }
534
535 u16 __read_mostly tlb_lli_4k[NR_INFO];
536 u16 __read_mostly tlb_lli_2m[NR_INFO];
537 u16 __read_mostly tlb_lli_4m[NR_INFO];
538 u16 __read_mostly tlb_lld_4k[NR_INFO];
539 u16 __read_mostly tlb_lld_2m[NR_INFO];
540 u16 __read_mostly tlb_lld_4m[NR_INFO];
541 u16 __read_mostly tlb_lld_1g[NR_INFO];
542
543 static void cpu_detect_tlb(struct cpuinfo_x86 *c)
544 {
545         if (this_cpu->c_detect_tlb)
546                 this_cpu->c_detect_tlb(c);
547
548         pr_info("Last level iTLB entries: 4KB %d, 2MB %d, 4MB %d\n",
549                 tlb_lli_4k[ENTRIES], tlb_lli_2m[ENTRIES],
550                 tlb_lli_4m[ENTRIES]);
551
552         pr_info("Last level dTLB entries: 4KB %d, 2MB %d, 4MB %d, 1GB %d\n",
553                 tlb_lld_4k[ENTRIES], tlb_lld_2m[ENTRIES],
554                 tlb_lld_4m[ENTRIES], tlb_lld_1g[ENTRIES]);
555 }
556
557 void detect_ht(struct cpuinfo_x86 *c)
558 {
559 #ifdef CONFIG_SMP
560         u32 eax, ebx, ecx, edx;
561         int index_msb, core_bits;
562         static bool printed;
563
564         if (!cpu_has(c, X86_FEATURE_HT))
565                 return;
566
567         if (cpu_has(c, X86_FEATURE_CMP_LEGACY))
568                 goto out;
569
570         if (cpu_has(c, X86_FEATURE_XTOPOLOGY))
571                 return;
572
573         cpuid(1, &eax, &ebx, &ecx, &edx);
574
575         smp_num_siblings = (ebx & 0xff0000) >> 16;
576
577         if (smp_num_siblings == 1) {
578                 pr_info_once("CPU0: Hyper-Threading is disabled\n");
579                 goto out;
580         }
581
582         if (smp_num_siblings <= 1)
583                 goto out;
584
585         index_msb = get_count_order(smp_num_siblings);
586         c->phys_proc_id = apic->phys_pkg_id(c->initial_apicid, index_msb);
587
588         smp_num_siblings = smp_num_siblings / c->x86_max_cores;
589
590         index_msb = get_count_order(smp_num_siblings);
591
592         core_bits = get_count_order(c->x86_max_cores);
593
594         c->cpu_core_id = apic->phys_pkg_id(c->initial_apicid, index_msb) &
595                                        ((1 << core_bits) - 1);
596
597 out:
598         if (!printed && (c->x86_max_cores * smp_num_siblings) > 1) {
599                 pr_info("CPU: Physical Processor ID: %d\n",
600                         c->phys_proc_id);
601                 pr_info("CPU: Processor Core ID: %d\n",
602                         c->cpu_core_id);
603                 printed = 1;
604         }
605 #endif
606 }
607
608 static void get_cpu_vendor(struct cpuinfo_x86 *c)
609 {
610         char *v = c->x86_vendor_id;
611         int i;
612
613         for (i = 0; i < X86_VENDOR_NUM; i++) {
614                 if (!cpu_devs[i])
615                         break;
616
617                 if (!strcmp(v, cpu_devs[i]->c_ident[0]) ||
618                     (cpu_devs[i]->c_ident[1] &&
619                      !strcmp(v, cpu_devs[i]->c_ident[1]))) {
620
621                         this_cpu = cpu_devs[i];
622                         c->x86_vendor = this_cpu->c_x86_vendor;
623                         return;
624                 }
625         }
626
627         pr_err_once("CPU: vendor_id '%s' unknown, using generic init.\n" \
628                     "CPU: Your system may be unstable.\n", v);
629
630         c->x86_vendor = X86_VENDOR_UNKNOWN;
631         this_cpu = &default_cpu;
632 }
633
634 void cpu_detect(struct cpuinfo_x86 *c)
635 {
636         /* Get vendor name */
637         cpuid(0x00000000, (unsigned int *)&c->cpuid_level,
638               (unsigned int *)&c->x86_vendor_id[0],
639               (unsigned int *)&c->x86_vendor_id[8],
640               (unsigned int *)&c->x86_vendor_id[4]);
641
642         c->x86 = 4;
643         /* Intel-defined flags: level 0x00000001 */
644         if (c->cpuid_level >= 0x00000001) {
645                 u32 junk, tfms, cap0, misc;
646
647                 cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
648                 c->x86          = x86_family(tfms);
649                 c->x86_model    = x86_model(tfms);
650                 c->x86_mask     = x86_stepping(tfms);
651
652                 if (cap0 & (1<<19)) {
653                         c->x86_clflush_size = ((misc >> 8) & 0xff) * 8;
654                         c->x86_cache_alignment = c->x86_clflush_size;
655                 }
656         }
657 }
658
659 void get_cpu_cap(struct cpuinfo_x86 *c)
660 {
661         u32 eax, ebx, ecx, edx;
662
663         /* Intel-defined flags: level 0x00000001 */
664         if (c->cpuid_level >= 0x00000001) {
665                 cpuid(0x00000001, &eax, &ebx, &ecx, &edx);
666
667                 c->x86_capability[CPUID_1_ECX] = ecx;
668                 c->x86_capability[CPUID_1_EDX] = edx;
669         }
670
671         /* Thermal and Power Management Leaf: level 0x00000006 (eax) */
672         if (c->cpuid_level >= 0x00000006)
673                 c->x86_capability[CPUID_6_EAX] = cpuid_eax(0x00000006);
674
675         /* Additional Intel-defined flags: level 0x00000007 */
676         if (c->cpuid_level >= 0x00000007) {
677                 cpuid_count(0x00000007, 0, &eax, &ebx, &ecx, &edx);
678                 c->x86_capability[CPUID_7_0_EBX] = ebx;
679                 c->x86_capability[CPUID_7_ECX] = ecx;
680         }
681
682         /* Extended state features: level 0x0000000d */
683         if (c->cpuid_level >= 0x0000000d) {
684                 cpuid_count(0x0000000d, 1, &eax, &ebx, &ecx, &edx);
685
686                 c->x86_capability[CPUID_D_1_EAX] = eax;
687         }
688
689         /* Additional Intel-defined flags: level 0x0000000F */
690         if (c->cpuid_level >= 0x0000000F) {
691
692                 /* QoS sub-leaf, EAX=0Fh, ECX=0 */
693                 cpuid_count(0x0000000F, 0, &eax, &ebx, &ecx, &edx);
694                 c->x86_capability[CPUID_F_0_EDX] = edx;
695
696                 if (cpu_has(c, X86_FEATURE_CQM_LLC)) {
697                         /* will be overridden if occupancy monitoring exists */
698                         c->x86_cache_max_rmid = ebx;
699
700                         /* QoS sub-leaf, EAX=0Fh, ECX=1 */
701                         cpuid_count(0x0000000F, 1, &eax, &ebx, &ecx, &edx);
702                         c->x86_capability[CPUID_F_1_EDX] = edx;
703
704                         if ((cpu_has(c, X86_FEATURE_CQM_OCCUP_LLC)) ||
705                               ((cpu_has(c, X86_FEATURE_CQM_MBM_TOTAL)) ||
706                                (cpu_has(c, X86_FEATURE_CQM_MBM_LOCAL)))) {
707                                 c->x86_cache_max_rmid = ecx;
708                                 c->x86_cache_occ_scale = ebx;
709                         }
710                 } else {
711                         c->x86_cache_max_rmid = -1;
712                         c->x86_cache_occ_scale = -1;
713                 }
714         }
715
716         /* AMD-defined flags: level 0x80000001 */
717         eax = cpuid_eax(0x80000000);
718         c->extended_cpuid_level = eax;
719
720         if ((eax & 0xffff0000) == 0x80000000) {
721                 if (eax >= 0x80000001) {
722                         cpuid(0x80000001, &eax, &ebx, &ecx, &edx);
723
724                         c->x86_capability[CPUID_8000_0001_ECX] = ecx;
725                         c->x86_capability[CPUID_8000_0001_EDX] = edx;
726                 }
727         }
728
729         if (c->extended_cpuid_level >= 0x80000007) {
730                 cpuid(0x80000007, &eax, &ebx, &ecx, &edx);
731
732                 c->x86_capability[CPUID_8000_0007_EBX] = ebx;
733                 c->x86_power = edx;
734         }
735
736         if (c->extended_cpuid_level >= 0x80000008) {
737                 cpuid(0x80000008, &eax, &ebx, &ecx, &edx);
738
739                 c->x86_virt_bits = (eax >> 8) & 0xff;
740                 c->x86_phys_bits = eax & 0xff;
741                 c->x86_capability[CPUID_8000_0008_EBX] = ebx;
742         }
743 #ifdef CONFIG_X86_32
744         else if (cpu_has(c, X86_FEATURE_PAE) || cpu_has(c, X86_FEATURE_PSE36))
745                 c->x86_phys_bits = 36;
746 #endif
747
748         if (c->extended_cpuid_level >= 0x8000000a)
749                 c->x86_capability[CPUID_8000_000A_EDX] = cpuid_edx(0x8000000a);
750
751         init_scattered_cpuid_features(c);
752 }
753
754 static void identify_cpu_without_cpuid(struct cpuinfo_x86 *c)
755 {
756 #ifdef CONFIG_X86_32
757         int i;
758
759         /*
760          * First of all, decide if this is a 486 or higher
761          * It's a 486 if we can modify the AC flag
762          */
763         if (flag_is_changeable_p(X86_EFLAGS_AC))
764                 c->x86 = 4;
765         else
766                 c->x86 = 3;
767
768         for (i = 0; i < X86_VENDOR_NUM; i++)
769                 if (cpu_devs[i] && cpu_devs[i]->c_identify) {
770                         c->x86_vendor_id[0] = 0;
771                         cpu_devs[i]->c_identify(c);
772                         if (c->x86_vendor_id[0]) {
773                                 get_cpu_vendor(c);
774                                 break;
775                         }
776                 }
777 #endif
778 }
779
780 /*
781  * Do minimum CPU detection early.
782  * Fields really needed: vendor, cpuid_level, family, model, mask,
783  * cache alignment.
784  * The others are not touched to avoid unwanted side effects.
785  *
786  * WARNING: this function is only called on the BP.  Don't add code here
787  * that is supposed to run on all CPUs.
788  */
789 static void __init early_identify_cpu(struct cpuinfo_x86 *c)
790 {
791 #ifdef CONFIG_X86_64
792         c->x86_clflush_size = 64;
793         c->x86_phys_bits = 36;
794         c->x86_virt_bits = 48;
795 #else
796         c->x86_clflush_size = 32;
797         c->x86_phys_bits = 32;
798         c->x86_virt_bits = 32;
799 #endif
800         c->x86_cache_alignment = c->x86_clflush_size;
801
802         memset(&c->x86_capability, 0, sizeof c->x86_capability);
803         c->extended_cpuid_level = 0;
804
805         if (!have_cpuid_p())
806                 identify_cpu_without_cpuid(c);
807
808         /* cyrix could have cpuid enabled via c_identify()*/
809         if (have_cpuid_p()) {
810                 cpu_detect(c);
811                 get_cpu_vendor(c);
812                 get_cpu_cap(c);
813
814                 if (this_cpu->c_early_init)
815                         this_cpu->c_early_init(c);
816
817                 c->cpu_index = 0;
818                 filter_cpuid_features(c, false);
819
820                 if (this_cpu->c_bsp_init)
821                         this_cpu->c_bsp_init(c);
822         }
823
824         setup_force_cpu_cap(X86_FEATURE_ALWAYS);
825         fpu__init_system(c);
826 }
827
828 void __init early_cpu_init(void)
829 {
830         const struct cpu_dev *const *cdev;
831         int count = 0;
832
833 #ifdef CONFIG_PROCESSOR_SELECT
834         pr_info("KERNEL supported cpus:\n");
835 #endif
836
837         for (cdev = __x86_cpu_dev_start; cdev < __x86_cpu_dev_end; cdev++) {
838                 const struct cpu_dev *cpudev = *cdev;
839
840                 if (count >= X86_VENDOR_NUM)
841                         break;
842                 cpu_devs[count] = cpudev;
843                 count++;
844
845 #ifdef CONFIG_PROCESSOR_SELECT
846                 {
847                         unsigned int j;
848
849                         for (j = 0; j < 2; j++) {
850                                 if (!cpudev->c_ident[j])
851                                         continue;
852                                 pr_info("  %s %s\n", cpudev->c_vendor,
853                                         cpudev->c_ident[j]);
854                         }
855                 }
856 #endif
857         }
858         early_identify_cpu(&boot_cpu_data);
859 }
860
861 /*
862  * The NOPL instruction is supposed to exist on all CPUs of family >= 6;
863  * unfortunately, that's not true in practice because of early VIA
864  * chips and (more importantly) broken virtualizers that are not easy
865  * to detect. In the latter case it doesn't even *fail* reliably, so
866  * probing for it doesn't even work. Disable it completely on 32-bit
867  * unless we can find a reliable way to detect all the broken cases.
868  * Enable it explicitly on 64-bit for non-constant inputs of cpu_has().
869  */
870 static void detect_nopl(struct cpuinfo_x86 *c)
871 {
872 #ifdef CONFIG_X86_32
873         clear_cpu_cap(c, X86_FEATURE_NOPL);
874 #else
875         set_cpu_cap(c, X86_FEATURE_NOPL);
876 #endif
877 }
878
879 static void detect_null_seg_behavior(struct cpuinfo_x86 *c)
880 {
881 #ifdef CONFIG_X86_64
882         /*
883          * Empirically, writing zero to a segment selector on AMD does
884          * not clear the base, whereas writing zero to a segment
885          * selector on Intel does clear the base.  Intel's behavior
886          * allows slightly faster context switches in the common case
887          * where GS is unused by the prev and next threads.
888          *
889          * Since neither vendor documents this anywhere that I can see,
890          * detect it directly instead of hardcoding the choice by
891          * vendor.
892          *
893          * I've designated AMD's behavior as the "bug" because it's
894          * counterintuitive and less friendly.
895          */
896
897         unsigned long old_base, tmp;
898         rdmsrl(MSR_FS_BASE, old_base);
899         wrmsrl(MSR_FS_BASE, 1);
900         loadsegment(fs, 0);
901         rdmsrl(MSR_FS_BASE, tmp);
902         if (tmp != 0)
903                 set_cpu_bug(c, X86_BUG_NULL_SEG);
904         wrmsrl(MSR_FS_BASE, old_base);
905 #endif
906 }
907
908 static void generic_identify(struct cpuinfo_x86 *c)
909 {
910         c->extended_cpuid_level = 0;
911
912         if (!have_cpuid_p())
913                 identify_cpu_without_cpuid(c);
914
915         /* cyrix could have cpuid enabled via c_identify()*/
916         if (!have_cpuid_p())
917                 return;
918
919         cpu_detect(c);
920
921         get_cpu_vendor(c);
922
923         get_cpu_cap(c);
924
925         if (c->cpuid_level >= 0x00000001) {
926                 c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xFF;
927 #ifdef CONFIG_X86_32
928 # ifdef CONFIG_SMP
929                 c->apicid = apic->phys_pkg_id(c->initial_apicid, 0);
930 # else
931                 c->apicid = c->initial_apicid;
932 # endif
933 #endif
934                 c->phys_proc_id = c->initial_apicid;
935         }
936
937         get_model_name(c); /* Default name */
938
939         detect_nopl(c);
940
941         detect_null_seg_behavior(c);
942
943         /*
944          * ESPFIX is a strange bug.  All real CPUs have it.  Paravirt
945          * systems that run Linux at CPL > 0 may or may not have the
946          * issue, but, even if they have the issue, there's absolutely
947          * nothing we can do about it because we can't use the real IRET
948          * instruction.
949          *
950          * NB: For the time being, only 32-bit kernels support
951          * X86_BUG_ESPFIX as such.  64-bit kernels directly choose
952          * whether to apply espfix using paravirt hooks.  If any
953          * non-paravirt system ever shows up that does *not* have the
954          * ESPFIX issue, we can change this.
955          */
956 #ifdef CONFIG_X86_32
957 # ifdef CONFIG_PARAVIRT
958         do {
959                 extern void native_iret(void);
960                 if (pv_cpu_ops.iret == native_iret)
961                         set_cpu_bug(c, X86_BUG_ESPFIX);
962         } while (0);
963 # else
964         set_cpu_bug(c, X86_BUG_ESPFIX);
965 # endif
966 #endif
967 }
968
969 static void x86_init_cache_qos(struct cpuinfo_x86 *c)
970 {
971         /*
972          * The heavy lifting of max_rmid and cache_occ_scale are handled
973          * in get_cpu_cap().  Here we just set the max_rmid for the boot_cpu
974          * in case CQM bits really aren't there in this CPU.
975          */
976         if (c != &boot_cpu_data) {
977                 boot_cpu_data.x86_cache_max_rmid =
978                         min(boot_cpu_data.x86_cache_max_rmid,
979                             c->x86_cache_max_rmid);
980         }
981 }
982
983 /*
984  * Validate that ACPI/mptables have the same information about the
985  * effective APIC id and update the package map.
986  */
987 static void validate_apic_and_package_id(struct cpuinfo_x86 *c)
988 {
989 #ifdef CONFIG_SMP
990         unsigned int apicid, cpu = smp_processor_id();
991
992         apicid = apic->cpu_present_to_apicid(cpu);
993
994         if (apicid != c->apicid) {
995                 pr_err(FW_BUG "CPU%u: APIC id mismatch. Firmware: %x APIC: %x\n",
996                        cpu, apicid, c->initial_apicid);
997         }
998         BUG_ON(topology_update_package_map(c->phys_proc_id, cpu));
999 #else
1000         c->logical_proc_id = 0;
1001 #endif
1002 }
1003
1004 /*
1005  * This does the hard work of actually picking apart the CPU stuff...
1006  */
1007 static void identify_cpu(struct cpuinfo_x86 *c)
1008 {
1009         int i;
1010
1011         c->loops_per_jiffy = loops_per_jiffy;
1012         c->x86_cache_size = -1;
1013         c->x86_vendor = X86_VENDOR_UNKNOWN;
1014         c->x86_model = c->x86_mask = 0; /* So far unknown... */
1015         c->x86_vendor_id[0] = '\0'; /* Unset */
1016         c->x86_model_id[0] = '\0';  /* Unset */
1017         c->x86_max_cores = 1;
1018         c->x86_coreid_bits = 0;
1019         c->cu_id = 0xff;
1020 #ifdef CONFIG_X86_64
1021         c->x86_clflush_size = 64;
1022         c->x86_phys_bits = 36;
1023         c->x86_virt_bits = 48;
1024 #else
1025         c->cpuid_level = -1;    /* CPUID not detected */
1026         c->x86_clflush_size = 32;
1027         c->x86_phys_bits = 32;
1028         c->x86_virt_bits = 32;
1029 #endif
1030         c->x86_cache_alignment = c->x86_clflush_size;
1031         memset(&c->x86_capability, 0, sizeof c->x86_capability);
1032
1033         generic_identify(c);
1034
1035         if (this_cpu->c_identify)
1036                 this_cpu->c_identify(c);
1037
1038         /* Clear/Set all flags overridden by options, after probe */
1039         for (i = 0; i < NCAPINTS; i++) {
1040                 c->x86_capability[i] &= ~cpu_caps_cleared[i];
1041                 c->x86_capability[i] |= cpu_caps_set[i];
1042         }
1043
1044 #ifdef CONFIG_X86_64
1045         c->apicid = apic->phys_pkg_id(c->initial_apicid, 0);
1046 #endif
1047
1048         /*
1049          * Vendor-specific initialization.  In this section we
1050          * canonicalize the feature flags, meaning if there are
1051          * features a certain CPU supports which CPUID doesn't
1052          * tell us, CPUID claiming incorrect flags, or other bugs,
1053          * we handle them here.
1054          *
1055          * At the end of this section, c->x86_capability better
1056          * indicate the features this CPU genuinely supports!
1057          */
1058         if (this_cpu->c_init)
1059                 this_cpu->c_init(c);
1060         else
1061                 clear_sched_clock_stable();
1062
1063         /* Disable the PN if appropriate */
1064         squash_the_stupid_serial_number(c);
1065
1066         /* Set up SMEP/SMAP */
1067         setup_smep(c);
1068         setup_smap(c);
1069
1070         /*
1071          * The vendor-specific functions might have changed features.
1072          * Now we do "generic changes."
1073          */
1074
1075         /* Filter out anything that depends on CPUID levels we don't have */
1076         filter_cpuid_features(c, true);
1077
1078         /* If the model name is still unset, do table lookup. */
1079         if (!c->x86_model_id[0]) {
1080                 const char *p;
1081                 p = table_lookup_model(c);
1082                 if (p)
1083                         strcpy(c->x86_model_id, p);
1084                 else
1085                         /* Last resort... */
1086                         sprintf(c->x86_model_id, "%02x/%02x",
1087                                 c->x86, c->x86_model);
1088         }
1089
1090 #ifdef CONFIG_X86_64
1091         detect_ht(c);
1092 #endif
1093
1094         init_hypervisor(c);
1095         x86_init_rdrand(c);
1096         x86_init_cache_qos(c);
1097         setup_pku(c);
1098
1099         /*
1100          * Clear/Set all flags overridden by options, need do it
1101          * before following smp all cpus cap AND.
1102          */
1103         for (i = 0; i < NCAPINTS; i++) {
1104                 c->x86_capability[i] &= ~cpu_caps_cleared[i];
1105                 c->x86_capability[i] |= cpu_caps_set[i];
1106         }
1107
1108         /*
1109          * On SMP, boot_cpu_data holds the common feature set between
1110          * all CPUs; so make sure that we indicate which features are
1111          * common between the CPUs.  The first time this routine gets
1112          * executed, c == &boot_cpu_data.
1113          */
1114         if (c != &boot_cpu_data) {
1115                 /* AND the already accumulated flags with these */
1116                 for (i = 0; i < NCAPINTS; i++)
1117                         boot_cpu_data.x86_capability[i] &= c->x86_capability[i];
1118
1119                 /* OR, i.e. replicate the bug flags */
1120                 for (i = NCAPINTS; i < NCAPINTS + NBUGINTS; i++)
1121                         c->x86_capability[i] |= boot_cpu_data.x86_capability[i];
1122         }
1123
1124         /* Init Machine Check Exception if available. */
1125         mcheck_cpu_init(c);
1126
1127         select_idle_routine(c);
1128
1129 #ifdef CONFIG_NUMA
1130         numa_add_cpu(smp_processor_id());
1131 #endif
1132 }
1133
1134 /*
1135  * Set up the CPU state needed to execute SYSENTER/SYSEXIT instructions
1136  * on 32-bit kernels:
1137  */
1138 #ifdef CONFIG_X86_32
1139 void enable_sep_cpu(void)
1140 {
1141         struct tss_struct *tss;
1142         int cpu;
1143
1144         if (!boot_cpu_has(X86_FEATURE_SEP))
1145                 return;
1146
1147         cpu = get_cpu();
1148         tss = &per_cpu(cpu_tss, cpu);
1149
1150         /*
1151          * We cache MSR_IA32_SYSENTER_CS's value in the TSS's ss1 field --
1152          * see the big comment in struct x86_hw_tss's definition.
1153          */
1154
1155         tss->x86_tss.ss1 = __KERNEL_CS;
1156         wrmsr(MSR_IA32_SYSENTER_CS, tss->x86_tss.ss1, 0);
1157
1158         wrmsr(MSR_IA32_SYSENTER_ESP,
1159               (unsigned long)tss + offsetofend(struct tss_struct, SYSENTER_stack),
1160               0);
1161
1162         wrmsr(MSR_IA32_SYSENTER_EIP, (unsigned long)entry_SYSENTER_32, 0);
1163
1164         put_cpu();
1165 }
1166 #endif
1167
1168 void __init identify_boot_cpu(void)
1169 {
1170         identify_cpu(&boot_cpu_data);
1171 #ifdef CONFIG_X86_32
1172         sysenter_setup();
1173         enable_sep_cpu();
1174 #endif
1175         cpu_detect_tlb(&boot_cpu_data);
1176 }
1177
1178 void identify_secondary_cpu(struct cpuinfo_x86 *c)
1179 {
1180         BUG_ON(c == &boot_cpu_data);
1181         identify_cpu(c);
1182 #ifdef CONFIG_X86_32
1183         enable_sep_cpu();
1184 #endif
1185         mtrr_ap_init();
1186         validate_apic_and_package_id(c);
1187 }
1188
1189 static __init int setup_noclflush(char *arg)
1190 {
1191         setup_clear_cpu_cap(X86_FEATURE_CLFLUSH);
1192         setup_clear_cpu_cap(X86_FEATURE_CLFLUSHOPT);
1193         return 1;
1194 }
1195 __setup("noclflush", setup_noclflush);
1196
1197 void print_cpu_info(struct cpuinfo_x86 *c)
1198 {
1199         const char *vendor = NULL;
1200
1201         if (c->x86_vendor < X86_VENDOR_NUM) {
1202                 vendor = this_cpu->c_vendor;
1203         } else {
1204                 if (c->cpuid_level >= 0)
1205                         vendor = c->x86_vendor_id;
1206         }
1207
1208         if (vendor && !strstr(c->x86_model_id, vendor))
1209                 pr_cont("%s ", vendor);
1210
1211         if (c->x86_model_id[0])
1212                 pr_cont("%s", c->x86_model_id);
1213         else
1214                 pr_cont("%d86", c->x86);
1215
1216         pr_cont(" (family: 0x%x, model: 0x%x", c->x86, c->x86_model);
1217
1218         if (c->x86_mask || c->cpuid_level >= 0)
1219                 pr_cont(", stepping: 0x%x)\n", c->x86_mask);
1220         else
1221                 pr_cont(")\n");
1222 }
1223
1224 static __init int setup_disablecpuid(char *arg)
1225 {
1226         int bit;
1227
1228         if (get_option(&arg, &bit) && bit >= 0 && bit < NCAPINTS * 32)
1229                 setup_clear_cpu_cap(bit);
1230         else
1231                 return 0;
1232
1233         return 1;
1234 }
1235 __setup("clearcpuid=", setup_disablecpuid);
1236
1237 #ifdef CONFIG_X86_64
1238 struct desc_ptr idt_descr __ro_after_init = {
1239         .size = NR_VECTORS * 16 - 1,
1240         .address = (unsigned long) idt_table,
1241 };
1242 const struct desc_ptr debug_idt_descr = {
1243         .size = NR_VECTORS * 16 - 1,
1244         .address = (unsigned long) debug_idt_table,
1245 };
1246
1247 DEFINE_PER_CPU_FIRST(union irq_stack_union,
1248                      irq_stack_union) __aligned(PAGE_SIZE) __visible;
1249
1250 /*
1251  * The following percpu variables are hot.  Align current_task to
1252  * cacheline size such that they fall in the same cacheline.
1253  */
1254 DEFINE_PER_CPU(struct task_struct *, current_task) ____cacheline_aligned =
1255         &init_task;
1256 EXPORT_PER_CPU_SYMBOL(current_task);
1257
1258 DEFINE_PER_CPU(char *, irq_stack_ptr) =
1259         init_per_cpu_var(irq_stack_union.irq_stack) + IRQ_STACK_SIZE;
1260
1261 DEFINE_PER_CPU(unsigned int, irq_count) __visible = -1;
1262
1263 DEFINE_PER_CPU(int, __preempt_count) = INIT_PREEMPT_COUNT;
1264 EXPORT_PER_CPU_SYMBOL(__preempt_count);
1265
1266 /*
1267  * Special IST stacks which the CPU switches to when it calls
1268  * an IST-marked descriptor entry. Up to 7 stacks (hardware
1269  * limit), all of them are 4K, except the debug stack which
1270  * is 8K.
1271  */
1272 static const unsigned int exception_stack_sizes[N_EXCEPTION_STACKS] = {
1273           [0 ... N_EXCEPTION_STACKS - 1]        = EXCEPTION_STKSZ,
1274           [DEBUG_STACK - 1]                     = DEBUG_STKSZ
1275 };
1276
1277 static DEFINE_PER_CPU_PAGE_ALIGNED(char, exception_stacks
1278         [(N_EXCEPTION_STACKS - 1) * EXCEPTION_STKSZ + DEBUG_STKSZ]);
1279
1280 /* May not be marked __init: used by software suspend */
1281 void syscall_init(void)
1282 {
1283         wrmsr(MSR_STAR, 0, (__USER32_CS << 16) | __KERNEL_CS);
1284         wrmsrl(MSR_LSTAR, (unsigned long)entry_SYSCALL_64);
1285
1286 #ifdef CONFIG_IA32_EMULATION
1287         wrmsrl(MSR_CSTAR, (unsigned long)entry_SYSCALL_compat);
1288         /*
1289          * This only works on Intel CPUs.
1290          * On AMD CPUs these MSRs are 32-bit, CPU truncates MSR_IA32_SYSENTER_EIP.
1291          * This does not cause SYSENTER to jump to the wrong location, because
1292          * AMD doesn't allow SYSENTER in long mode (either 32- or 64-bit).
1293          */
1294         wrmsrl_safe(MSR_IA32_SYSENTER_CS, (u64)__KERNEL_CS);
1295         wrmsrl_safe(MSR_IA32_SYSENTER_ESP, 0ULL);
1296         wrmsrl_safe(MSR_IA32_SYSENTER_EIP, (u64)entry_SYSENTER_compat);
1297 #else
1298         wrmsrl(MSR_CSTAR, (unsigned long)ignore_sysret);
1299         wrmsrl_safe(MSR_IA32_SYSENTER_CS, (u64)GDT_ENTRY_INVALID_SEG);
1300         wrmsrl_safe(MSR_IA32_SYSENTER_ESP, 0ULL);
1301         wrmsrl_safe(MSR_IA32_SYSENTER_EIP, 0ULL);
1302 #endif
1303
1304         /* Flags to clear on syscall */
1305         wrmsrl(MSR_SYSCALL_MASK,
1306                X86_EFLAGS_TF|X86_EFLAGS_DF|X86_EFLAGS_IF|
1307                X86_EFLAGS_IOPL|X86_EFLAGS_AC|X86_EFLAGS_NT);
1308 }
1309
1310 /*
1311  * Copies of the original ist values from the tss are only accessed during
1312  * debugging, no special alignment required.
1313  */
1314 DEFINE_PER_CPU(struct orig_ist, orig_ist);
1315
1316 static DEFINE_PER_CPU(unsigned long, debug_stack_addr);
1317 DEFINE_PER_CPU(int, debug_stack_usage);
1318
1319 int is_debug_stack(unsigned long addr)
1320 {
1321         return __this_cpu_read(debug_stack_usage) ||
1322                 (addr <= __this_cpu_read(debug_stack_addr) &&
1323                  addr > (__this_cpu_read(debug_stack_addr) - DEBUG_STKSZ));
1324 }
1325 NOKPROBE_SYMBOL(is_debug_stack);
1326
1327 DEFINE_PER_CPU(u32, debug_idt_ctr);
1328
1329 void debug_stack_set_zero(void)
1330 {
1331         this_cpu_inc(debug_idt_ctr);
1332         load_current_idt();
1333 }
1334 NOKPROBE_SYMBOL(debug_stack_set_zero);
1335
1336 void debug_stack_reset(void)
1337 {
1338         if (WARN_ON(!this_cpu_read(debug_idt_ctr)))
1339                 return;
1340         if (this_cpu_dec_return(debug_idt_ctr) == 0)
1341                 load_current_idt();
1342 }
1343 NOKPROBE_SYMBOL(debug_stack_reset);
1344
1345 #else   /* CONFIG_X86_64 */
1346
1347 DEFINE_PER_CPU(struct task_struct *, current_task) = &init_task;
1348 EXPORT_PER_CPU_SYMBOL(current_task);
1349 DEFINE_PER_CPU(int, __preempt_count) = INIT_PREEMPT_COUNT;
1350 EXPORT_PER_CPU_SYMBOL(__preempt_count);
1351
1352 /*
1353  * On x86_32, vm86 modifies tss.sp0, so sp0 isn't a reliable way to find
1354  * the top of the kernel stack.  Use an extra percpu variable to track the
1355  * top of the kernel stack directly.
1356  */
1357 DEFINE_PER_CPU(unsigned long, cpu_current_top_of_stack) =
1358         (unsigned long)&init_thread_union + THREAD_SIZE;
1359 EXPORT_PER_CPU_SYMBOL(cpu_current_top_of_stack);
1360
1361 #ifdef CONFIG_CC_STACKPROTECTOR
1362 DEFINE_PER_CPU_ALIGNED(struct stack_canary, stack_canary);
1363 #endif
1364
1365 #endif  /* CONFIG_X86_64 */
1366
1367 /*
1368  * Clear all 6 debug registers:
1369  */
1370 static void clear_all_debug_regs(void)
1371 {
1372         int i;
1373
1374         for (i = 0; i < 8; i++) {
1375                 /* Ignore db4, db5 */
1376                 if ((i == 4) || (i == 5))
1377                         continue;
1378
1379                 set_debugreg(0, i);
1380         }
1381 }
1382
1383 #ifdef CONFIG_KGDB
1384 /*
1385  * Restore debug regs if using kgdbwait and you have a kernel debugger
1386  * connection established.
1387  */
1388 static void dbg_restore_debug_regs(void)
1389 {
1390         if (unlikely(kgdb_connected && arch_kgdb_ops.correct_hw_break))
1391                 arch_kgdb_ops.correct_hw_break();
1392 }
1393 #else /* ! CONFIG_KGDB */
1394 #define dbg_restore_debug_regs()
1395 #endif /* ! CONFIG_KGDB */
1396
1397 static void wait_for_master_cpu(int cpu)
1398 {
1399 #ifdef CONFIG_SMP
1400         /*
1401          * wait for ACK from master CPU before continuing
1402          * with AP initialization
1403          */
1404         WARN_ON(cpumask_test_and_set_cpu(cpu, cpu_initialized_mask));
1405         while (!cpumask_test_cpu(cpu, cpu_callout_mask))
1406                 cpu_relax();
1407 #endif
1408 }
1409
1410 /*
1411  * cpu_init() initializes state that is per-CPU. Some data is already
1412  * initialized (naturally) in the bootstrap process, such as the GDT
1413  * and IDT. We reload them nevertheless, this function acts as a
1414  * 'CPU state barrier', nothing should get across.
1415  * A lot of state is already set up in PDA init for 64 bit
1416  */
1417 #ifdef CONFIG_X86_64
1418
1419 void cpu_init(void)
1420 {
1421         struct orig_ist *oist;
1422         struct task_struct *me;
1423         struct tss_struct *t;
1424         unsigned long v;
1425         int cpu = raw_smp_processor_id();
1426         int i;
1427
1428         wait_for_master_cpu(cpu);
1429
1430         /*
1431          * Initialize the CR4 shadow before doing anything that could
1432          * try to read it.
1433          */
1434         cr4_init_shadow();
1435
1436         if (cpu)
1437                 load_ucode_ap();
1438
1439         t = &per_cpu(cpu_tss, cpu);
1440         oist = &per_cpu(orig_ist, cpu);
1441
1442 #ifdef CONFIG_NUMA
1443         if (this_cpu_read(numa_node) == 0 &&
1444             early_cpu_to_node(cpu) != NUMA_NO_NODE)
1445                 set_numa_node(early_cpu_to_node(cpu));
1446 #endif
1447
1448         me = current;
1449
1450         pr_debug("Initializing CPU#%d\n", cpu);
1451
1452         cr4_clear_bits(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
1453
1454         /*
1455          * Initialize the per-CPU GDT with the boot GDT,
1456          * and set up the GDT descriptor:
1457          */
1458
1459         switch_to_new_gdt(cpu);
1460         loadsegment(fs, 0);
1461
1462         load_current_idt();
1463
1464         memset(me->thread.tls_array, 0, GDT_ENTRY_TLS_ENTRIES * 8);
1465         syscall_init();
1466
1467         wrmsrl(MSR_FS_BASE, 0);
1468         wrmsrl(MSR_KERNEL_GS_BASE, 0);
1469         barrier();
1470
1471         x86_configure_nx();
1472         x2apic_setup();
1473
1474         /*
1475          * set up and load the per-CPU TSS
1476          */
1477         if (!oist->ist[0]) {
1478                 char *estacks = per_cpu(exception_stacks, cpu);
1479
1480                 for (v = 0; v < N_EXCEPTION_STACKS; v++) {
1481                         estacks += exception_stack_sizes[v];
1482                         oist->ist[v] = t->x86_tss.ist[v] =
1483                                         (unsigned long)estacks;
1484                         if (v == DEBUG_STACK-1)
1485                                 per_cpu(debug_stack_addr, cpu) = (unsigned long)estacks;
1486                 }
1487         }
1488
1489         t->x86_tss.io_bitmap_base = offsetof(struct tss_struct, io_bitmap);
1490
1491         /*
1492          * <= is required because the CPU will access up to
1493          * 8 bits beyond the end of the IO permission bitmap.
1494          */
1495         for (i = 0; i <= IO_BITMAP_LONGS; i++)
1496                 t->io_bitmap[i] = ~0UL;
1497
1498         atomic_inc(&init_mm.mm_count);
1499         me->active_mm = &init_mm;
1500         BUG_ON(me->mm);
1501         enter_lazy_tlb(&init_mm, me);
1502
1503         load_sp0(t, &current->thread);
1504         set_tss_desc(cpu, t);
1505         load_TR_desc();
1506         load_mm_ldt(&init_mm);
1507
1508         clear_all_debug_regs();
1509         dbg_restore_debug_regs();
1510
1511         fpu__init_cpu();
1512
1513         if (is_uv_system())
1514                 uv_cpu_init();
1515 }
1516
1517 #else
1518
1519 void cpu_init(void)
1520 {
1521         int cpu = smp_processor_id();
1522         struct task_struct *curr = current;
1523         struct tss_struct *t = &per_cpu(cpu_tss, cpu);
1524         struct thread_struct *thread = &curr->thread;
1525
1526         wait_for_master_cpu(cpu);
1527
1528         /*
1529          * Initialize the CR4 shadow before doing anything that could
1530          * try to read it.
1531          */
1532         cr4_init_shadow();
1533
1534         show_ucode_info_early();
1535
1536         pr_info("Initializing CPU#%d\n", cpu);
1537
1538         if (cpu_feature_enabled(X86_FEATURE_VME) ||
1539             boot_cpu_has(X86_FEATURE_TSC) ||
1540             boot_cpu_has(X86_FEATURE_DE))
1541                 cr4_clear_bits(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
1542
1543         load_current_idt();
1544         switch_to_new_gdt(cpu);
1545
1546         /*
1547          * Set up and load the per-CPU TSS and LDT
1548          */
1549         atomic_inc(&init_mm.mm_count);
1550         curr->active_mm = &init_mm;
1551         BUG_ON(curr->mm);
1552         enter_lazy_tlb(&init_mm, curr);
1553
1554         load_sp0(t, thread);
1555         set_tss_desc(cpu, t);
1556         load_TR_desc();
1557         load_mm_ldt(&init_mm);
1558
1559         t->x86_tss.io_bitmap_base = offsetof(struct tss_struct, io_bitmap);
1560
1561 #ifdef CONFIG_DOUBLEFAULT
1562         /* Set up doublefault TSS pointer in the GDT */
1563         __set_tss_desc(cpu, GDT_ENTRY_DOUBLEFAULT_TSS, &doublefault_tss);
1564 #endif
1565
1566         clear_all_debug_regs();
1567         dbg_restore_debug_regs();
1568
1569         fpu__init_cpu();
1570 }
1571 #endif
1572
1573 static void bsp_resume(void)
1574 {
1575         if (this_cpu->c_bsp_resume)
1576                 this_cpu->c_bsp_resume(&boot_cpu_data);
1577 }
1578
1579 static struct syscore_ops cpu_syscore_ops = {
1580         .resume         = bsp_resume,
1581 };
1582
1583 static int __init init_cpu_syscore(void)
1584 {
1585         register_syscore_ops(&cpu_syscore_ops);
1586         return 0;
1587 }
1588 core_initcall(init_cpu_syscore);