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