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