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