]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/x86/kernel/cpu/common.c
x86/entry: Correct reference to intended CONFIG_64_BIT
[mirror_ubuntu-jammy-kernel.git] / arch / x86 / kernel / cpu / common.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
2458e53f
KS
2/* cpu_feature_enabled() cannot be used this early */
3#define USE_EARLY_PGTABLE_L5
4
57c8a661 5#include <linux/memblock.h>
9766cdbc 6#include <linux/linkage.h>
f0fc4aff 7#include <linux/bitops.h>
9766cdbc 8#include <linux/kernel.h>
186f4360 9#include <linux/export.h>
9766cdbc
JSR
10#include <linux/percpu.h>
11#include <linux/string.h>
ee098e1a 12#include <linux/ctype.h>
1da177e4 13#include <linux/delay.h>
68e21be2 14#include <linux/sched/mm.h>
e6017571 15#include <linux/sched/clock.h>
9164bb4a 16#include <linux/sched/task.h>
b47a3698 17#include <linux/sched/smt.h>
9766cdbc 18#include <linux/init.h>
0f46efeb 19#include <linux/kprobes.h>
9766cdbc 20#include <linux/kgdb.h>
1da177e4 21#include <linux/smp.h>
9766cdbc 22#include <linux/io.h>
b51ef52d 23#include <linux/syscore_ops.h>
65fddcfc 24#include <linux/pgtable.h>
9766cdbc 25
1ef5423a 26#include <asm/cmdline.h>
9766cdbc 27#include <asm/stackprotector.h>
cdd6c482 28#include <asm/perf_event.h>
1da177e4 29#include <asm/mmu_context.h>
dc4e0021 30#include <asm/doublefault.h>
49d859d7 31#include <asm/archrandom.h>
9766cdbc
JSR
32#include <asm/hypervisor.h>
33#include <asm/processor.h>
1e02ce4c 34#include <asm/tlbflush.h>
f649e938 35#include <asm/debugreg.h>
9766cdbc 36#include <asm/sections.h>
f40c3300 37#include <asm/vsyscall.h>
8bdbd962
AC
38#include <linux/topology.h>
39#include <linux/cpumask.h>
60063497 40#include <linux/atomic.h>
9766cdbc
JSR
41#include <asm/proto.h>
42#include <asm/setup.h>
43#include <asm/apic.h>
44#include <asm/desc.h>
78f7f1e5 45#include <asm/fpu/internal.h>
27b07da7 46#include <asm/mtrr.h>
0274f955 47#include <asm/hwcap2.h>
8bdbd962 48#include <linux/numa.h>
0cd39f46 49#include <asm/numa.h>
9766cdbc 50#include <asm/asm.h>
0f6ff2bc 51#include <asm/bugs.h>
9766cdbc 52#include <asm/cpu.h>
a03a3e28 53#include <asm/mce.h>
9766cdbc 54#include <asm/msr.h>
eb243d1d 55#include <asm/memtype.h>
d288e1cf
FY
56#include <asm/microcode.h>
57#include <asm/microcode_intel.h>
fec9434a
DW
58#include <asm/intel-family.h>
59#include <asm/cpu_device_id.h>
bdbcdd48 60#include <asm/uv/uv.h>
939ef713 61#include <asm/sigframe.h>
1da177e4
LT
62
63#include "cpu.h"
64
0274f955
GA
65u32 elf_hwcap2 __read_mostly;
66
c2d1cec1 67/* all of these masks are initialized in setup_cpu_local_masks() */
c2d1cec1 68cpumask_var_t cpu_initialized_mask;
9766cdbc
JSR
69cpumask_var_t cpu_callout_mask;
70cpumask_var_t cpu_callin_mask;
c2d1cec1
MT
71
72/* representing cpus for which sibling maps can be computed */
73cpumask_var_t cpu_sibling_setup_mask;
74
f8b64d08
BP
75/* Number of siblings per CPU package */
76int smp_num_siblings = 1;
77EXPORT_SYMBOL(smp_num_siblings);
78
79/* Last level cache ID of each logical CPU */
80DEFINE_PER_CPU_READ_MOSTLY(u16, cpu_llc_id) = BAD_APICID;
81
9164d949
KP
82u16 get_llc_id(unsigned int cpu)
83{
84 return per_cpu(cpu_llc_id, cpu);
85}
86EXPORT_SYMBOL_GPL(get_llc_id);
87
2f2f52ba 88/* correctly size the local cpu masks */
4369f1fb 89void __init setup_cpu_local_masks(void)
2f2f52ba
BG
90{
91 alloc_bootmem_cpumask_var(&cpu_initialized_mask);
92 alloc_bootmem_cpumask_var(&cpu_callin_mask);
93 alloc_bootmem_cpumask_var(&cpu_callout_mask);
94 alloc_bootmem_cpumask_var(&cpu_sibling_setup_mask);
95}
96
148f9bb8 97static void default_init(struct cpuinfo_x86 *c)
e8055139
OZ
98{
99#ifdef CONFIG_X86_64
27c13ece 100 cpu_detect_cache_sizes(c);
e8055139
OZ
101#else
102 /* Not much we can do here... */
103 /* Check if at least it has cpuid */
104 if (c->cpuid_level == -1) {
105 /* No cpuid. It must be an ancient CPU */
106 if (c->x86 == 4)
107 strcpy(c->x86_model_id, "486");
108 else if (c->x86 == 3)
109 strcpy(c->x86_model_id, "386");
110 }
111#endif
112}
113
148f9bb8 114static const struct cpu_dev default_cpu = {
e8055139
OZ
115 .c_init = default_init,
116 .c_vendor = "Unknown",
117 .c_x86_vendor = X86_VENDOR_UNKNOWN,
118};
119
148f9bb8 120static const struct cpu_dev *this_cpu = &default_cpu;
0a488a53 121
06deef89 122DEFINE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page) = { .gdt = {
950ad7ff 123#ifdef CONFIG_X86_64
06deef89
BG
124 /*
125 * We need valid kernel segments for data and code in long mode too
126 * IRET will check the segment types kkeil 2000/10/28
127 * Also sysret mandates a special GDT layout
128 *
9766cdbc 129 * TLS descriptors are currently at a different place compared to i386.
06deef89
BG
130 * Hopefully nobody expects them at a fixed place (Wine?)
131 */
1e5de182
AM
132 [GDT_ENTRY_KERNEL32_CS] = GDT_ENTRY_INIT(0xc09b, 0, 0xfffff),
133 [GDT_ENTRY_KERNEL_CS] = GDT_ENTRY_INIT(0xa09b, 0, 0xfffff),
134 [GDT_ENTRY_KERNEL_DS] = GDT_ENTRY_INIT(0xc093, 0, 0xfffff),
135 [GDT_ENTRY_DEFAULT_USER32_CS] = GDT_ENTRY_INIT(0xc0fb, 0, 0xfffff),
136 [GDT_ENTRY_DEFAULT_USER_DS] = GDT_ENTRY_INIT(0xc0f3, 0, 0xfffff),
137 [GDT_ENTRY_DEFAULT_USER_CS] = GDT_ENTRY_INIT(0xa0fb, 0, 0xfffff),
950ad7ff 138#else
1e5de182
AM
139 [GDT_ENTRY_KERNEL_CS] = GDT_ENTRY_INIT(0xc09a, 0, 0xfffff),
140 [GDT_ENTRY_KERNEL_DS] = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
141 [GDT_ENTRY_DEFAULT_USER_CS] = GDT_ENTRY_INIT(0xc0fa, 0, 0xfffff),
142 [GDT_ENTRY_DEFAULT_USER_DS] = GDT_ENTRY_INIT(0xc0f2, 0, 0xfffff),
bf504672
RR
143 /*
144 * Segments used for calling PnP BIOS have byte granularity.
145 * They code segments and data segments have fixed 64k limits,
146 * the transfer segment sizes are set at run time.
147 */
6842ef0e 148 /* 32-bit code */
1e5de182 149 [GDT_ENTRY_PNPBIOS_CS32] = GDT_ENTRY_INIT(0x409a, 0, 0xffff),
6842ef0e 150 /* 16-bit code */
1e5de182 151 [GDT_ENTRY_PNPBIOS_CS16] = GDT_ENTRY_INIT(0x009a, 0, 0xffff),
6842ef0e 152 /* 16-bit data */
1e5de182 153 [GDT_ENTRY_PNPBIOS_DS] = GDT_ENTRY_INIT(0x0092, 0, 0xffff),
6842ef0e 154 /* 16-bit data */
1e5de182 155 [GDT_ENTRY_PNPBIOS_TS1] = GDT_ENTRY_INIT(0x0092, 0, 0),
6842ef0e 156 /* 16-bit data */
1e5de182 157 [GDT_ENTRY_PNPBIOS_TS2] = GDT_ENTRY_INIT(0x0092, 0, 0),
bf504672
RR
158 /*
159 * The APM segments have byte granularity and their bases
160 * are set at run time. All have 64k limits.
161 */
6842ef0e 162 /* 32-bit code */
1e5de182 163 [GDT_ENTRY_APMBIOS_BASE] = GDT_ENTRY_INIT(0x409a, 0, 0xffff),
bf504672 164 /* 16-bit code */
1e5de182 165 [GDT_ENTRY_APMBIOS_BASE+1] = GDT_ENTRY_INIT(0x009a, 0, 0xffff),
6842ef0e 166 /* data */
72c4d853 167 [GDT_ENTRY_APMBIOS_BASE+2] = GDT_ENTRY_INIT(0x4092, 0, 0xffff),
bf504672 168
1e5de182
AM
169 [GDT_ENTRY_ESPFIX_SS] = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
170 [GDT_ENTRY_PERCPU] = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
950ad7ff 171#endif
06deef89 172} };
7a61d35d 173EXPORT_PER_CPU_SYMBOL_GPL(gdt_page);
ae1ee11b 174
0790c9aa 175#ifdef CONFIG_X86_64
c7ad5ad2 176static int __init x86_nopcid_setup(char *s)
0790c9aa 177{
c7ad5ad2
AL
178 /* nopcid doesn't accept parameters */
179 if (s)
180 return -EINVAL;
0790c9aa
AL
181
182 /* do not emit a message if the feature is not present */
183 if (!boot_cpu_has(X86_FEATURE_PCID))
c7ad5ad2 184 return 0;
0790c9aa
AL
185
186 setup_clear_cpu_cap(X86_FEATURE_PCID);
187 pr_info("nopcid: PCID feature disabled\n");
c7ad5ad2 188 return 0;
0790c9aa 189}
c7ad5ad2 190early_param("nopcid", x86_nopcid_setup);
0790c9aa
AL
191#endif
192
d12a72b8
AL
193static int __init x86_noinvpcid_setup(char *s)
194{
195 /* noinvpcid doesn't accept parameters */
196 if (s)
197 return -EINVAL;
198
199 /* do not emit a message if the feature is not present */
200 if (!boot_cpu_has(X86_FEATURE_INVPCID))
201 return 0;
202
203 setup_clear_cpu_cap(X86_FEATURE_INVPCID);
204 pr_info("noinvpcid: INVPCID feature disabled\n");
205 return 0;
206}
207early_param("noinvpcid", x86_noinvpcid_setup);
208
ba51dced 209#ifdef CONFIG_X86_32
148f9bb8
PG
210static int cachesize_override = -1;
211static int disable_x86_serial_nr = 1;
1da177e4 212
0a488a53
YL
213static int __init cachesize_setup(char *str)
214{
215 get_option(&str, &cachesize_override);
216 return 1;
217}
218__setup("cachesize=", cachesize_setup);
219
0a488a53
YL
220static int __init x86_sep_setup(char *s)
221{
222 setup_clear_cpu_cap(X86_FEATURE_SEP);
223 return 1;
224}
225__setup("nosep", x86_sep_setup);
226
227/* Standard macro to see if a specific flag is changeable */
228static inline int flag_is_changeable_p(u32 flag)
229{
230 u32 f1, f2;
231
94f6bac1
KH
232 /*
233 * Cyrix and IDT cpus allow disabling of CPUID
234 * so the code below may return different results
235 * when it is executed before and after enabling
236 * the CPUID. Add "volatile" to not allow gcc to
237 * optimize the subsequent calls to this function.
238 */
0f3fa48a
IM
239 asm volatile ("pushfl \n\t"
240 "pushfl \n\t"
241 "popl %0 \n\t"
242 "movl %0, %1 \n\t"
243 "xorl %2, %0 \n\t"
244 "pushl %0 \n\t"
245 "popfl \n\t"
246 "pushfl \n\t"
247 "popl %0 \n\t"
248 "popfl \n\t"
249
94f6bac1
KH
250 : "=&r" (f1), "=&r" (f2)
251 : "ir" (flag));
0a488a53
YL
252
253 return ((f1^f2) & flag) != 0;
254}
255
256/* Probe for the CPUID instruction */
148f9bb8 257int have_cpuid_p(void)
0a488a53
YL
258{
259 return flag_is_changeable_p(X86_EFLAGS_ID);
260}
261
148f9bb8 262static void squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
0a488a53 263{
0f3fa48a
IM
264 unsigned long lo, hi;
265
266 if (!cpu_has(c, X86_FEATURE_PN) || !disable_x86_serial_nr)
267 return;
268
269 /* Disable processor serial number: */
270
271 rdmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
272 lo |= 0x200000;
273 wrmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
274
1b74dde7 275 pr_notice("CPU serial number disabled.\n");
0f3fa48a
IM
276 clear_cpu_cap(c, X86_FEATURE_PN);
277
278 /* Disabling the serial number may affect the cpuid level */
279 c->cpuid_level = cpuid_eax(0);
0a488a53
YL
280}
281
282static int __init x86_serial_nr_setup(char *s)
283{
284 disable_x86_serial_nr = 0;
285 return 1;
286}
287__setup("serialnumber", x86_serial_nr_setup);
ba51dced 288#else
102bbe3a
YL
289static inline int flag_is_changeable_p(u32 flag)
290{
291 return 1;
292}
102bbe3a
YL
293static inline void squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
294{
295}
ba51dced 296#endif
0a488a53 297
de5397ad
FY
298static __init int setup_disable_smep(char *arg)
299{
b2cc2a07 300 setup_clear_cpu_cap(X86_FEATURE_SMEP);
de5397ad
FY
301 return 1;
302}
303__setup("nosmep", setup_disable_smep);
304
b2cc2a07 305static __always_inline void setup_smep(struct cpuinfo_x86 *c)
de5397ad 306{
b2cc2a07 307 if (cpu_has(c, X86_FEATURE_SMEP))
375074cc 308 cr4_set_bits(X86_CR4_SMEP);
de5397ad
FY
309}
310
52b6179a
PA
311static __init int setup_disable_smap(char *arg)
312{
b2cc2a07 313 setup_clear_cpu_cap(X86_FEATURE_SMAP);
52b6179a
PA
314 return 1;
315}
316__setup("nosmap", setup_disable_smap);
317
b2cc2a07
PA
318static __always_inline void setup_smap(struct cpuinfo_x86 *c)
319{
581b7f15 320 unsigned long eflags = native_save_fl();
b2cc2a07
PA
321
322 /* This should have been cleared long ago */
b2cc2a07
PA
323 BUG_ON(eflags & X86_EFLAGS_AC);
324
03bbd596
PA
325 if (cpu_has(c, X86_FEATURE_SMAP)) {
326#ifdef CONFIG_X86_SMAP
375074cc 327 cr4_set_bits(X86_CR4_SMAP);
03bbd596 328#else
375074cc 329 cr4_clear_bits(X86_CR4_SMAP);
03bbd596
PA
330#endif
331 }
de5397ad
FY
332}
333
aa35f896
RN
334static __always_inline void setup_umip(struct cpuinfo_x86 *c)
335{
336 /* Check the boot processor, plus build option for UMIP. */
337 if (!cpu_feature_enabled(X86_FEATURE_UMIP))
338 goto out;
339
340 /* Check the current processor's cpuid bits. */
341 if (!cpu_has(c, X86_FEATURE_UMIP))
342 goto out;
343
344 cr4_set_bits(X86_CR4_UMIP);
345
438cbf88 346 pr_info_once("x86/cpu: User Mode Instruction Prevention (UMIP) activated\n");
770c7755 347
aa35f896
RN
348 return;
349
350out:
351 /*
352 * Make sure UMIP is disabled in case it was enabled in a
353 * previous boot (e.g., via kexec).
354 */
355 cr4_clear_bits(X86_CR4_UMIP);
356}
357
a13b9d0b
KC
358/* These bits should not change their value after CPU init is finished. */
359static const unsigned long cr4_pinned_mask =
360 X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_UMIP | X86_CR4_FSGSBASE;
7652ac92
TG
361static DEFINE_STATIC_KEY_FALSE_RO(cr_pinning);
362static unsigned long cr4_pinned_bits __ro_after_init;
363
364void native_write_cr0(unsigned long val)
365{
366 unsigned long bits_missing = 0;
367
368set_register:
aa5cacdc 369 asm volatile("mov %0,%%cr0": "+r" (val) : : "memory");
7652ac92
TG
370
371 if (static_branch_likely(&cr_pinning)) {
372 if (unlikely((val & X86_CR0_WP) != X86_CR0_WP)) {
373 bits_missing = X86_CR0_WP;
374 val |= bits_missing;
375 goto set_register;
376 }
377 /* Warn after we've set the missing bits. */
378 WARN_ONCE(bits_missing, "CR0 WP bit went missing!?\n");
379 }
380}
381EXPORT_SYMBOL(native_write_cr0);
382
383void native_write_cr4(unsigned long val)
384{
a13b9d0b 385 unsigned long bits_changed = 0;
7652ac92
TG
386
387set_register:
aa5cacdc 388 asm volatile("mov %0,%%cr4": "+r" (val) : : "memory");
7652ac92
TG
389
390 if (static_branch_likely(&cr_pinning)) {
a13b9d0b
KC
391 if (unlikely((val & cr4_pinned_mask) != cr4_pinned_bits)) {
392 bits_changed = (val & cr4_pinned_mask) ^ cr4_pinned_bits;
393 val = (val & ~cr4_pinned_mask) | cr4_pinned_bits;
7652ac92
TG
394 goto set_register;
395 }
a13b9d0b
KC
396 /* Warn after we've corrected the changed bits. */
397 WARN_ONCE(bits_changed, "pinned CR4 bits changed: 0x%lx!?\n",
398 bits_changed);
7652ac92
TG
399 }
400}
21953ee5 401#if IS_MODULE(CONFIG_LKDTM)
d8f0b353 402EXPORT_SYMBOL_GPL(native_write_cr4);
21953ee5 403#endif
d8f0b353
TG
404
405void cr4_update_irqsoff(unsigned long set, unsigned long clear)
406{
407 unsigned long newval, cr4 = this_cpu_read(cpu_tlbstate.cr4);
408
409 lockdep_assert_irqs_disabled();
410
411 newval = (cr4 & ~clear) | set;
412 if (newval != cr4) {
413 this_cpu_write(cpu_tlbstate.cr4, newval);
414 __write_cr4(newval);
415 }
416}
417EXPORT_SYMBOL(cr4_update_irqsoff);
418
419/* Read the CR4 shadow. */
420unsigned long cr4_read_shadow(void)
421{
422 return this_cpu_read(cpu_tlbstate.cr4);
423}
424EXPORT_SYMBOL_GPL(cr4_read_shadow);
7652ac92
TG
425
426void cr4_init(void)
427{
428 unsigned long cr4 = __read_cr4();
429
430 if (boot_cpu_has(X86_FEATURE_PCID))
431 cr4 |= X86_CR4_PCIDE;
432 if (static_branch_likely(&cr_pinning))
a13b9d0b 433 cr4 = (cr4 & ~cr4_pinned_mask) | cr4_pinned_bits;
7652ac92
TG
434
435 __write_cr4(cr4);
436
437 /* Initialize cr4 shadow for this CPU. */
438 this_cpu_write(cpu_tlbstate.cr4, cr4);
439}
873d50d5
KC
440
441/*
442 * Once CPU feature detection is finished (and boot params have been
443 * parsed), record any of the sensitive CR bits that are set, and
444 * enable CR pinning.
445 */
446static void __init setup_cr_pinning(void)
447{
a13b9d0b 448 cr4_pinned_bits = this_cpu_read(cpu_tlbstate.cr4) & cr4_pinned_mask;
873d50d5
KC
449 static_key_enable(&cr_pinning.key);
450}
451
b745cfba 452static __init int x86_nofsgsbase_setup(char *arg)
dd649bd0 453{
b745cfba
AL
454 /* Require an exact match without trailing characters. */
455 if (strlen(arg))
456 return 0;
457
458 /* Do not emit a message if the feature is not present. */
459 if (!boot_cpu_has(X86_FEATURE_FSGSBASE))
460 return 1;
461
462 setup_clear_cpu_cap(X86_FEATURE_FSGSBASE);
463 pr_info("FSGSBASE disabled via kernel command line\n");
dd649bd0
AL
464 return 1;
465}
b745cfba 466__setup("nofsgsbase", x86_nofsgsbase_setup);
dd649bd0 467
06976945
DH
468/*
469 * Protection Keys are not available in 32-bit mode.
470 */
471static bool pku_disabled;
472
473static __always_inline void setup_pku(struct cpuinfo_x86 *c)
474{
8a1dc55a
TG
475 if (c == &boot_cpu_data) {
476 if (pku_disabled || !cpu_feature_enabled(X86_FEATURE_PKU))
477 return;
478 /*
479 * Setting CR4.PKE will cause the X86_FEATURE_OSPKE cpuid
480 * bit to be set. Enforce it.
481 */
482 setup_force_cpu_cap(X86_FEATURE_OSPKE);
a5eff725 483
8a1dc55a 484 } else if (!cpu_feature_enabled(X86_FEATURE_OSPKE)) {
06976945 485 return;
8a1dc55a 486 }
06976945
DH
487
488 cr4_set_bits(X86_CR4_PKE);
fa8c84b7
TG
489 /* Load the default PKRU value */
490 pkru_write_default();
06976945
DH
491}
492
493#ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS
494static __init int setup_disable_pku(char *arg)
495{
496 /*
497 * Do not clear the X86_FEATURE_PKU bit. All of the
498 * runtime checks are against OSPKE so clearing the
499 * bit does nothing.
500 *
501 * This way, we will see "pku" in cpuinfo, but not
502 * "ospke", which is exactly what we want. It shows
503 * that the CPU has PKU, but the OS has not enabled it.
504 * This happens to be exactly how a system would look
505 * if we disabled the config option.
506 */
507 pr_info("x86: 'nopku' specified, disabling Memory Protection Keys\n");
508 pku_disabled = true;
509 return 1;
510}
511__setup("nopku", setup_disable_pku);
512#endif /* CONFIG_X86_64 */
513
b38b0665
PA
514/*
515 * Some CPU features depend on higher CPUID levels, which may not always
516 * be available due to CPUID level capping or broken virtualization
517 * software. Add those features to this table to auto-disable them.
518 */
519struct cpuid_dependent_feature {
520 u32 feature;
521 u32 level;
522};
0f3fa48a 523
148f9bb8 524static const struct cpuid_dependent_feature
b38b0665
PA
525cpuid_dependent_features[] = {
526 { X86_FEATURE_MWAIT, 0x00000005 },
527 { X86_FEATURE_DCA, 0x00000009 },
528 { X86_FEATURE_XSAVE, 0x0000000d },
529 { 0, 0 }
530};
531
148f9bb8 532static void filter_cpuid_features(struct cpuinfo_x86 *c, bool warn)
b38b0665
PA
533{
534 const struct cpuid_dependent_feature *df;
9766cdbc 535
b38b0665 536 for (df = cpuid_dependent_features; df->feature; df++) {
0f3fa48a
IM
537
538 if (!cpu_has(c, df->feature))
539 continue;
b38b0665
PA
540 /*
541 * Note: cpuid_level is set to -1 if unavailable, but
542 * extended_extended_level is set to 0 if unavailable
543 * and the legitimate extended levels are all negative
544 * when signed; hence the weird messing around with
545 * signs here...
546 */
0f3fa48a 547 if (!((s32)df->level < 0 ?
f6db44df 548 (u32)df->level > (u32)c->extended_cpuid_level :
0f3fa48a
IM
549 (s32)df->level > (s32)c->cpuid_level))
550 continue;
551
552 clear_cpu_cap(c, df->feature);
553 if (!warn)
554 continue;
555
1b74dde7
CY
556 pr_warn("CPU: CPU feature " X86_CAP_FMT " disabled, no CPUID level 0x%x\n",
557 x86_cap_flag(df->feature), df->level);
b38b0665 558 }
f6db44df 559}
b38b0665 560
102bbe3a
YL
561/*
562 * Naming convention should be: <Name> [(<Codename>)]
563 * This table only is used unless init_<vendor>() below doesn't set it;
0f3fa48a
IM
564 * in particular, if CPUID levels 0x80000002..4 are supported, this
565 * isn't used
102bbe3a
YL
566 */
567
568/* Look up CPU names by table lookup. */
148f9bb8 569static const char *table_lookup_model(struct cpuinfo_x86 *c)
102bbe3a 570{
09dc68d9
JB
571#ifdef CONFIG_X86_32
572 const struct legacy_cpu_model_info *info;
102bbe3a
YL
573
574 if (c->x86_model >= 16)
575 return NULL; /* Range check */
576
577 if (!this_cpu)
578 return NULL;
579
09dc68d9 580 info = this_cpu->legacy_models;
102bbe3a 581
09dc68d9 582 while (info->family) {
102bbe3a
YL
583 if (info->family == c->x86)
584 return info->model_names[c->x86_model];
585 info++;
586 }
09dc68d9 587#endif
102bbe3a
YL
588 return NULL; /* Not found */
589}
590
f6a892dd
FY
591/* Aligned to unsigned long to avoid split lock in atomic bitmap ops */
592__u32 cpu_caps_cleared[NCAPINTS + NBUGINTS] __aligned(sizeof(unsigned long));
593__u32 cpu_caps_set[NCAPINTS + NBUGINTS] __aligned(sizeof(unsigned long));
7d851c8d 594
11e3a840
JF
595void load_percpu_segment(int cpu)
596{
597#ifdef CONFIG_X86_32
598 loadsegment(fs, __KERNEL_PERCPU);
599#else
45e876f7 600 __loadsegment_simple(gs, 0);
35060ed6 601 wrmsrl(MSR_GS_BASE, cpu_kernelmode_gs_base(cpu));
11e3a840
JF
602#endif
603}
604
72f5e08d
AL
605#ifdef CONFIG_X86_32
606/* The 32-bit entry code needs to find cpu_entry_area. */
607DEFINE_PER_CPU(struct cpu_entry_area *, cpu_entry_area);
608#endif
609
45fc8757
TG
610/* Load the original GDT from the per-cpu structure */
611void load_direct_gdt(int cpu)
612{
613 struct desc_ptr gdt_descr;
614
615 gdt_descr.address = (long)get_cpu_gdt_rw(cpu);
616 gdt_descr.size = GDT_SIZE - 1;
617 load_gdt(&gdt_descr);
618}
619EXPORT_SYMBOL_GPL(load_direct_gdt);
620
69218e47
TG
621/* Load a fixmap remapping of the per-cpu GDT */
622void load_fixmap_gdt(int cpu)
623{
624 struct desc_ptr gdt_descr;
625
626 gdt_descr.address = (long)get_cpu_gdt_ro(cpu);
627 gdt_descr.size = GDT_SIZE - 1;
628 load_gdt(&gdt_descr);
629}
45fc8757 630EXPORT_SYMBOL_GPL(load_fixmap_gdt);
69218e47 631
0f3fa48a
IM
632/*
633 * Current gdt points %fs at the "master" per-cpu area: after this,
634 * it's on the real one.
635 */
552be871 636void switch_to_new_gdt(int cpu)
9d31d35b 637{
45fc8757
TG
638 /* Load the original GDT */
639 load_direct_gdt(cpu);
2697fbd5 640 /* Reload the per-cpu base */
11e3a840 641 load_percpu_segment(cpu);
9d31d35b
YL
642}
643
148f9bb8 644static const struct cpu_dev *cpu_devs[X86_VENDOR_NUM] = {};
1da177e4 645
148f9bb8 646static void get_model_name(struct cpuinfo_x86 *c)
1da177e4
LT
647{
648 unsigned int *v;
ee098e1a 649 char *p, *q, *s;
1da177e4 650
3da99c97 651 if (c->extended_cpuid_level < 0x80000004)
1b05d60d 652 return;
1da177e4 653
0f3fa48a 654 v = (unsigned int *)c->x86_model_id;
1da177e4
LT
655 cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]);
656 cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]);
657 cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]);
658 c->x86_model_id[48] = 0;
659
ee098e1a
BP
660 /* Trim whitespace */
661 p = q = s = &c->x86_model_id[0];
662
663 while (*p == ' ')
664 p++;
665
666 while (*p) {
667 /* Note the last non-whitespace index */
668 if (!isspace(*p))
669 s = q;
670
671 *q++ = *p++;
672 }
673
674 *(s + 1) = '\0';
1da177e4
LT
675}
676
9305bd6c 677void detect_num_cpu_cores(struct cpuinfo_x86 *c)
2cc61be6
DW
678{
679 unsigned int eax, ebx, ecx, edx;
680
9305bd6c 681 c->x86_max_cores = 1;
2cc61be6 682 if (!IS_ENABLED(CONFIG_SMP) || c->cpuid_level < 4)
9305bd6c 683 return;
2cc61be6
DW
684
685 cpuid_count(4, 0, &eax, &ebx, &ecx, &edx);
686 if (eax & 0x1f)
9305bd6c 687 c->x86_max_cores = (eax >> 26) + 1;
2cc61be6
DW
688}
689
148f9bb8 690void cpu_detect_cache_sizes(struct cpuinfo_x86 *c)
1da177e4 691{
9d31d35b 692 unsigned int n, dummy, ebx, ecx, edx, l2size;
1da177e4 693
3da99c97 694 n = c->extended_cpuid_level;
1da177e4
LT
695
696 if (n >= 0x80000005) {
9d31d35b 697 cpuid(0x80000005, &dummy, &ebx, &ecx, &edx);
9d31d35b 698 c->x86_cache_size = (ecx>>24) + (edx>>24);
140fc727
YL
699#ifdef CONFIG_X86_64
700 /* On K8 L1 TLB is inclusive, so don't count it */
701 c->x86_tlbsize = 0;
702#endif
1da177e4
LT
703 }
704
705 if (n < 0x80000006) /* Some chips just has a large L1. */
706 return;
707
0a488a53 708 cpuid(0x80000006, &dummy, &ebx, &ecx, &edx);
1da177e4 709 l2size = ecx >> 16;
34048c9e 710
140fc727
YL
711#ifdef CONFIG_X86_64
712 c->x86_tlbsize += ((ebx >> 16) & 0xfff) + (ebx & 0xfff);
713#else
1da177e4 714 /* do processor-specific cache resizing */
09dc68d9
JB
715 if (this_cpu->legacy_cache_size)
716 l2size = this_cpu->legacy_cache_size(c, l2size);
1da177e4
LT
717
718 /* Allow user to override all this if necessary. */
719 if (cachesize_override != -1)
720 l2size = cachesize_override;
721
34048c9e 722 if (l2size == 0)
1da177e4 723 return; /* Again, no L2 cache is possible */
140fc727 724#endif
1da177e4
LT
725
726 c->x86_cache_size = l2size;
1da177e4
LT
727}
728
e0ba94f1
AS
729u16 __read_mostly tlb_lli_4k[NR_INFO];
730u16 __read_mostly tlb_lli_2m[NR_INFO];
731u16 __read_mostly tlb_lli_4m[NR_INFO];
732u16 __read_mostly tlb_lld_4k[NR_INFO];
733u16 __read_mostly tlb_lld_2m[NR_INFO];
734u16 __read_mostly tlb_lld_4m[NR_INFO];
dd360393 735u16 __read_mostly tlb_lld_1g[NR_INFO];
e0ba94f1 736
f94fe119 737static void cpu_detect_tlb(struct cpuinfo_x86 *c)
e0ba94f1
AS
738{
739 if (this_cpu->c_detect_tlb)
740 this_cpu->c_detect_tlb(c);
741
f94fe119 742 pr_info("Last level iTLB entries: 4KB %d, 2MB %d, 4MB %d\n",
e0ba94f1 743 tlb_lli_4k[ENTRIES], tlb_lli_2m[ENTRIES],
f94fe119
SH
744 tlb_lli_4m[ENTRIES]);
745
746 pr_info("Last level dTLB entries: 4KB %d, 2MB %d, 4MB %d, 1GB %d\n",
747 tlb_lld_4k[ENTRIES], tlb_lld_2m[ENTRIES],
748 tlb_lld_4m[ENTRIES], tlb_lld_1g[ENTRIES]);
e0ba94f1
AS
749}
750
545401f4 751int detect_ht_early(struct cpuinfo_x86 *c)
1da177e4 752{
c8e56d20 753#ifdef CONFIG_SMP
0a488a53 754 u32 eax, ebx, ecx, edx;
1da177e4 755
0a488a53 756 if (!cpu_has(c, X86_FEATURE_HT))
545401f4 757 return -1;
1da177e4 758
0a488a53 759 if (cpu_has(c, X86_FEATURE_CMP_LEGACY))
545401f4 760 return -1;
1da177e4 761
1cd78776 762 if (cpu_has(c, X86_FEATURE_XTOPOLOGY))
545401f4 763 return -1;
1da177e4 764
0a488a53 765 cpuid(1, &eax, &ebx, &ecx, &edx);
1da177e4 766
9d31d35b 767 smp_num_siblings = (ebx & 0xff0000) >> 16;
545401f4 768 if (smp_num_siblings == 1)
1b74dde7 769 pr_info_once("CPU0: Hyper-Threading is disabled\n");
545401f4
TG
770#endif
771 return 0;
772}
9d31d35b 773
545401f4
TG
774void detect_ht(struct cpuinfo_x86 *c)
775{
776#ifdef CONFIG_SMP
777 int index_msb, core_bits;
55e6d279 778
545401f4 779 if (detect_ht_early(c) < 0)
55e6d279 780 return;
9d31d35b 781
0f3fa48a
IM
782 index_msb = get_count_order(smp_num_siblings);
783 c->phys_proc_id = apic->phys_pkg_id(c->initial_apicid, index_msb);
9d31d35b 784
0f3fa48a 785 smp_num_siblings = smp_num_siblings / c->x86_max_cores;
9d31d35b 786
0f3fa48a 787 index_msb = get_count_order(smp_num_siblings);
9d31d35b 788
0f3fa48a 789 core_bits = get_count_order(c->x86_max_cores);
9d31d35b 790
0f3fa48a
IM
791 c->cpu_core_id = apic->phys_pkg_id(c->initial_apicid, index_msb) &
792 ((1 << core_bits) - 1);
9d31d35b 793#endif
97e4db7c 794}
1da177e4 795
148f9bb8 796static void get_cpu_vendor(struct cpuinfo_x86 *c)
1da177e4
LT
797{
798 char *v = c->x86_vendor_id;
0f3fa48a 799 int i;
1da177e4
LT
800
801 for (i = 0; i < X86_VENDOR_NUM; i++) {
10a434fc
YL
802 if (!cpu_devs[i])
803 break;
804
805 if (!strcmp(v, cpu_devs[i]->c_ident[0]) ||
806 (cpu_devs[i]->c_ident[1] &&
807 !strcmp(v, cpu_devs[i]->c_ident[1]))) {
0f3fa48a 808
10a434fc
YL
809 this_cpu = cpu_devs[i];
810 c->x86_vendor = this_cpu->c_x86_vendor;
811 return;
1da177e4
LT
812 }
813 }
10a434fc 814
1b74dde7
CY
815 pr_err_once("CPU: vendor_id '%s' unknown, using generic init.\n" \
816 "CPU: Your system may be unstable.\n", v);
10a434fc 817
fe38d855
CE
818 c->x86_vendor = X86_VENDOR_UNKNOWN;
819 this_cpu = &default_cpu;
1da177e4
LT
820}
821
148f9bb8 822void cpu_detect(struct cpuinfo_x86 *c)
1da177e4 823{
1da177e4 824 /* Get vendor name */
4a148513
HH
825 cpuid(0x00000000, (unsigned int *)&c->cpuid_level,
826 (unsigned int *)&c->x86_vendor_id[0],
827 (unsigned int *)&c->x86_vendor_id[8],
828 (unsigned int *)&c->x86_vendor_id[4]);
1da177e4 829
1da177e4 830 c->x86 = 4;
9d31d35b 831 /* Intel-defined flags: level 0x00000001 */
1da177e4
LT
832 if (c->cpuid_level >= 0x00000001) {
833 u32 junk, tfms, cap0, misc;
0f3fa48a 834
1da177e4 835 cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
99f925ce
BP
836 c->x86 = x86_family(tfms);
837 c->x86_model = x86_model(tfms);
b399151c 838 c->x86_stepping = x86_stepping(tfms);
0f3fa48a 839
d4387bd3 840 if (cap0 & (1<<19)) {
d4387bd3 841 c->x86_clflush_size = ((misc >> 8) & 0xff) * 8;
9d31d35b 842 c->x86_cache_alignment = c->x86_clflush_size;
d4387bd3 843 }
1da177e4 844 }
1da177e4 845}
3da99c97 846
8bf1ebca
AL
847static void apply_forced_caps(struct cpuinfo_x86 *c)
848{
849 int i;
850
6cbd2171 851 for (i = 0; i < NCAPINTS + NBUGINTS; i++) {
8bf1ebca
AL
852 c->x86_capability[i] &= ~cpu_caps_cleared[i];
853 c->x86_capability[i] |= cpu_caps_set[i];
854 }
855}
856
7fcae111
DW
857static void init_speculation_control(struct cpuinfo_x86 *c)
858{
859 /*
860 * The Intel SPEC_CTRL CPUID bit implies IBRS and IBPB support,
861 * and they also have a different bit for STIBP support. Also,
862 * a hypervisor might have set the individual AMD bits even on
863 * Intel CPUs, for finer-grained selection of what's available.
7fcae111
DW
864 */
865 if (cpu_has(c, X86_FEATURE_SPEC_CTRL)) {
866 set_cpu_cap(c, X86_FEATURE_IBRS);
867 set_cpu_cap(c, X86_FEATURE_IBPB);
7eb8956a 868 set_cpu_cap(c, X86_FEATURE_MSR_SPEC_CTRL);
7fcae111 869 }
e7c587da 870
7fcae111
DW
871 if (cpu_has(c, X86_FEATURE_INTEL_STIBP))
872 set_cpu_cap(c, X86_FEATURE_STIBP);
e7c587da 873
bc226f07
TL
874 if (cpu_has(c, X86_FEATURE_SPEC_CTRL_SSBD) ||
875 cpu_has(c, X86_FEATURE_VIRT_SSBD))
52817587
TG
876 set_cpu_cap(c, X86_FEATURE_SSBD);
877
7eb8956a 878 if (cpu_has(c, X86_FEATURE_AMD_IBRS)) {
e7c587da 879 set_cpu_cap(c, X86_FEATURE_IBRS);
7eb8956a
TG
880 set_cpu_cap(c, X86_FEATURE_MSR_SPEC_CTRL);
881 }
e7c587da
BP
882
883 if (cpu_has(c, X86_FEATURE_AMD_IBPB))
884 set_cpu_cap(c, X86_FEATURE_IBPB);
885
7eb8956a 886 if (cpu_has(c, X86_FEATURE_AMD_STIBP)) {
e7c587da 887 set_cpu_cap(c, X86_FEATURE_STIBP);
7eb8956a
TG
888 set_cpu_cap(c, X86_FEATURE_MSR_SPEC_CTRL);
889 }
6ac2f49e
KRW
890
891 if (cpu_has(c, X86_FEATURE_AMD_SSBD)) {
892 set_cpu_cap(c, X86_FEATURE_SSBD);
893 set_cpu_cap(c, X86_FEATURE_MSR_SPEC_CTRL);
894 clear_cpu_cap(c, X86_FEATURE_VIRT_SSBD);
895 }
7fcae111
DW
896}
897
148f9bb8 898void get_cpu_cap(struct cpuinfo_x86 *c)
093af8d7 899{
39c06df4 900 u32 eax, ebx, ecx, edx;
093af8d7 901
3da99c97
YL
902 /* Intel-defined flags: level 0x00000001 */
903 if (c->cpuid_level >= 0x00000001) {
39c06df4 904 cpuid(0x00000001, &eax, &ebx, &ecx, &edx);
0f3fa48a 905
39c06df4
BP
906 c->x86_capability[CPUID_1_ECX] = ecx;
907 c->x86_capability[CPUID_1_EDX] = edx;
3da99c97 908 }
093af8d7 909
3df8d920
AL
910 /* Thermal and Power Management Leaf: level 0x00000006 (eax) */
911 if (c->cpuid_level >= 0x00000006)
912 c->x86_capability[CPUID_6_EAX] = cpuid_eax(0x00000006);
913
bdc802dc
PA
914 /* Additional Intel-defined flags: level 0x00000007 */
915 if (c->cpuid_level >= 0x00000007) {
bdc802dc 916 cpuid_count(0x00000007, 0, &eax, &ebx, &ecx, &edx);
39c06df4 917 c->x86_capability[CPUID_7_0_EBX] = ebx;
dfb4a70f 918 c->x86_capability[CPUID_7_ECX] = ecx;
95ca0ee8 919 c->x86_capability[CPUID_7_EDX] = edx;
b302e4b1
FY
920
921 /* Check valid sub-leaf index before accessing it */
922 if (eax >= 1) {
923 cpuid_count(0x00000007, 1, &eax, &ebx, &ecx, &edx);
924 c->x86_capability[CPUID_7_1_EAX] = eax;
925 }
bdc802dc
PA
926 }
927
6229ad27
FY
928 /* Extended state features: level 0x0000000d */
929 if (c->cpuid_level >= 0x0000000d) {
6229ad27
FY
930 cpuid_count(0x0000000d, 1, &eax, &ebx, &ecx, &edx);
931
39c06df4 932 c->x86_capability[CPUID_D_1_EAX] = eax;
6229ad27
FY
933 }
934
3da99c97 935 /* AMD-defined flags: level 0x80000001 */
39c06df4
BP
936 eax = cpuid_eax(0x80000000);
937 c->extended_cpuid_level = eax;
938
939 if ((eax & 0xffff0000) == 0x80000000) {
940 if (eax >= 0x80000001) {
941 cpuid(0x80000001, &eax, &ebx, &ecx, &edx);
0f3fa48a 942
39c06df4
BP
943 c->x86_capability[CPUID_8000_0001_ECX] = ecx;
944 c->x86_capability[CPUID_8000_0001_EDX] = edx;
093af8d7 945 }
093af8d7 946 }
093af8d7 947
71faad43
YG
948 if (c->extended_cpuid_level >= 0x80000007) {
949 cpuid(0x80000007, &eax, &ebx, &ecx, &edx);
950
951 c->x86_capability[CPUID_8000_0007_EBX] = ebx;
952 c->x86_power = edx;
953 }
954
c65732e4
TG
955 if (c->extended_cpuid_level >= 0x80000008) {
956 cpuid(0x80000008, &eax, &ebx, &ecx, &edx);
957 c->x86_capability[CPUID_8000_0008_EBX] = ebx;
958 }
959
2ccd71f1 960 if (c->extended_cpuid_level >= 0x8000000a)
39c06df4 961 c->x86_capability[CPUID_8000_000A_EDX] = cpuid_edx(0x8000000a);
093af8d7 962
fb35d30f
SC
963 if (c->extended_cpuid_level >= 0x8000001f)
964 c->x86_capability[CPUID_8000_001F_EAX] = cpuid_eax(0x8000001f);
965
1dedefd1 966 init_scattered_cpuid_features(c);
7fcae111 967 init_speculation_control(c);
60d34501
AL
968
969 /*
970 * Clear/Set all flags overridden by options, after probe.
971 * This needs to happen each time we re-probe, which may happen
972 * several times during CPU initialization.
973 */
974 apply_forced_caps(c);
093af8d7 975}
1da177e4 976
405c018a 977void get_cpu_address_sizes(struct cpuinfo_x86 *c)
d94a155c
KS
978{
979 u32 eax, ebx, ecx, edx;
980
981 if (c->extended_cpuid_level >= 0x80000008) {
982 cpuid(0x80000008, &eax, &ebx, &ecx, &edx);
983
984 c->x86_virt_bits = (eax >> 8) & 0xff;
985 c->x86_phys_bits = eax & 0xff;
d94a155c
KS
986 }
987#ifdef CONFIG_X86_32
988 else if (cpu_has(c, X86_FEATURE_PAE) || cpu_has(c, X86_FEATURE_PSE36))
989 c->x86_phys_bits = 36;
990#endif
cc51e542 991 c->x86_cache_bits = c->x86_phys_bits;
d94a155c
KS
992}
993
148f9bb8 994static void identify_cpu_without_cpuid(struct cpuinfo_x86 *c)
aef93c8b
YL
995{
996#ifdef CONFIG_X86_32
997 int i;
998
999 /*
1000 * First of all, decide if this is a 486 or higher
1001 * It's a 486 if we can modify the AC flag
1002 */
1003 if (flag_is_changeable_p(X86_EFLAGS_AC))
1004 c->x86 = 4;
1005 else
1006 c->x86 = 3;
1007
1008 for (i = 0; i < X86_VENDOR_NUM; i++)
1009 if (cpu_devs[i] && cpu_devs[i]->c_identify) {
1010 c->x86_vendor_id[0] = 0;
1011 cpu_devs[i]->c_identify(c);
1012 if (c->x86_vendor_id[0]) {
1013 get_cpu_vendor(c);
1014 break;
1015 }
1016 }
1017#endif
1018}
1019
db4d30fb
VT
1020#define NO_SPECULATION BIT(0)
1021#define NO_MELTDOWN BIT(1)
1022#define NO_SSB BIT(2)
1023#define NO_L1TF BIT(3)
1024#define NO_MDS BIT(4)
1025#define MSBDS_ONLY BIT(5)
1026#define NO_SWAPGS BIT(6)
1027#define NO_ITLB_MULTIHIT BIT(7)
1e41a766 1028#define NO_SPECTRE_V2 BIT(8)
36ad3513 1029
f6d502fc
TG
1030#define VULNWL(vendor, family, model, whitelist) \
1031 X86_MATCH_VENDOR_FAM_MODEL(vendor, family, model, whitelist)
36ad3513
TG
1032
1033#define VULNWL_INTEL(model, whitelist) \
1034 VULNWL(INTEL, 6, INTEL_FAM6_##model, whitelist)
1035
1036#define VULNWL_AMD(family, whitelist) \
1037 VULNWL(AMD, family, X86_MODEL_ANY, whitelist)
1038
1039#define VULNWL_HYGON(family, whitelist) \
1040 VULNWL(HYGON, family, X86_MODEL_ANY, whitelist)
1041
1042static const __initconst struct x86_cpu_id cpu_vuln_whitelist[] = {
1043 VULNWL(ANY, 4, X86_MODEL_ANY, NO_SPECULATION),
1044 VULNWL(CENTAUR, 5, X86_MODEL_ANY, NO_SPECULATION),
1045 VULNWL(INTEL, 5, X86_MODEL_ANY, NO_SPECULATION),
1046 VULNWL(NSC, 5, X86_MODEL_ANY, NO_SPECULATION),
1047
ed5194c2 1048 /* Intel Family 6 */
db4d30fb
VT
1049 VULNWL_INTEL(ATOM_SALTWELL, NO_SPECULATION | NO_ITLB_MULTIHIT),
1050 VULNWL_INTEL(ATOM_SALTWELL_TABLET, NO_SPECULATION | NO_ITLB_MULTIHIT),
1051 VULNWL_INTEL(ATOM_SALTWELL_MID, NO_SPECULATION | NO_ITLB_MULTIHIT),
1052 VULNWL_INTEL(ATOM_BONNELL, NO_SPECULATION | NO_ITLB_MULTIHIT),
1053 VULNWL_INTEL(ATOM_BONNELL_MID, NO_SPECULATION | NO_ITLB_MULTIHIT),
1054
1055 VULNWL_INTEL(ATOM_SILVERMONT, NO_SSB | NO_L1TF | MSBDS_ONLY | NO_SWAPGS | NO_ITLB_MULTIHIT),
1056 VULNWL_INTEL(ATOM_SILVERMONT_D, NO_SSB | NO_L1TF | MSBDS_ONLY | NO_SWAPGS | NO_ITLB_MULTIHIT),
1057 VULNWL_INTEL(ATOM_SILVERMONT_MID, NO_SSB | NO_L1TF | MSBDS_ONLY | NO_SWAPGS | NO_ITLB_MULTIHIT),
1058 VULNWL_INTEL(ATOM_AIRMONT, NO_SSB | NO_L1TF | MSBDS_ONLY | NO_SWAPGS | NO_ITLB_MULTIHIT),
1059 VULNWL_INTEL(XEON_PHI_KNL, NO_SSB | NO_L1TF | MSBDS_ONLY | NO_SWAPGS | NO_ITLB_MULTIHIT),
1060 VULNWL_INTEL(XEON_PHI_KNM, NO_SSB | NO_L1TF | MSBDS_ONLY | NO_SWAPGS | NO_ITLB_MULTIHIT),
36ad3513
TG
1061
1062 VULNWL_INTEL(CORE_YONAH, NO_SSB),
1063
db4d30fb
VT
1064 VULNWL_INTEL(ATOM_AIRMONT_MID, NO_L1TF | MSBDS_ONLY | NO_SWAPGS | NO_ITLB_MULTIHIT),
1065 VULNWL_INTEL(ATOM_AIRMONT_NP, NO_L1TF | NO_SWAPGS | NO_ITLB_MULTIHIT),
36ad3513 1066
db4d30fb
VT
1067 VULNWL_INTEL(ATOM_GOLDMONT, NO_MDS | NO_L1TF | NO_SWAPGS | NO_ITLB_MULTIHIT),
1068 VULNWL_INTEL(ATOM_GOLDMONT_D, NO_MDS | NO_L1TF | NO_SWAPGS | NO_ITLB_MULTIHIT),
1069 VULNWL_INTEL(ATOM_GOLDMONT_PLUS, NO_MDS | NO_L1TF | NO_SWAPGS | NO_ITLB_MULTIHIT),
f36cf386
TG
1070
1071 /*
1072 * Technically, swapgs isn't serializing on AMD (despite it previously
1073 * being documented as such in the APM). But according to AMD, %gs is
1074 * updated non-speculatively, and the issuing of %gs-relative memory
1075 * operands will be blocked until the %gs update completes, which is
1076 * good enough for our purposes.
1077 */
ed5194c2 1078
cad14885
PG
1079 VULNWL_INTEL(ATOM_TREMONT_D, NO_ITLB_MULTIHIT),
1080
ed5194c2 1081 /* AMD Family 0xf - 0x12 */
db4d30fb
VT
1082 VULNWL_AMD(0x0f, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT),
1083 VULNWL_AMD(0x10, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT),
1084 VULNWL_AMD(0x11, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT),
1085 VULNWL_AMD(0x12, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT),
36ad3513
TG
1086
1087 /* FAMILY_ANY must be last, otherwise 0x0f - 0x12 matches won't work */
db4d30fb
VT
1088 VULNWL_AMD(X86_FAMILY_ANY, NO_MELTDOWN | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT),
1089 VULNWL_HYGON(X86_FAMILY_ANY, NO_MELTDOWN | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT),
1e41a766
TW
1090
1091 /* Zhaoxin Family 7 */
a84de2fa
TW
1092 VULNWL(CENTAUR, 7, X86_MODEL_ANY, NO_SPECTRE_V2 | NO_SWAPGS),
1093 VULNWL(ZHAOXIN, 7, X86_MODEL_ANY, NO_SPECTRE_V2 | NO_SWAPGS),
fec9434a
DW
1094 {}
1095};
1096
7e5b3c26
MG
1097#define VULNBL_INTEL_STEPPINGS(model, steppings, issues) \
1098 X86_MATCH_VENDOR_FAM_MODEL_STEPPINGS_FEATURE(INTEL, 6, \
1099 INTEL_FAM6_##model, steppings, \
1100 X86_FEATURE_ANY, issues)
1101
1102#define SRBDS BIT(0)
1103
1104static const struct x86_cpu_id cpu_vuln_blacklist[] __initconst = {
1105 VULNBL_INTEL_STEPPINGS(IVYBRIDGE, X86_STEPPING_ANY, SRBDS),
1106 VULNBL_INTEL_STEPPINGS(HASWELL, X86_STEPPING_ANY, SRBDS),
1107 VULNBL_INTEL_STEPPINGS(HASWELL_L, X86_STEPPING_ANY, SRBDS),
1108 VULNBL_INTEL_STEPPINGS(HASWELL_G, X86_STEPPING_ANY, SRBDS),
1109 VULNBL_INTEL_STEPPINGS(BROADWELL_G, X86_STEPPING_ANY, SRBDS),
1110 VULNBL_INTEL_STEPPINGS(BROADWELL, X86_STEPPING_ANY, SRBDS),
1111 VULNBL_INTEL_STEPPINGS(SKYLAKE_L, X86_STEPPING_ANY, SRBDS),
1112 VULNBL_INTEL_STEPPINGS(SKYLAKE, X86_STEPPING_ANY, SRBDS),
1113 VULNBL_INTEL_STEPPINGS(KABYLAKE_L, X86_STEPPINGS(0x0, 0xC), SRBDS),
1114 VULNBL_INTEL_STEPPINGS(KABYLAKE, X86_STEPPINGS(0x0, 0xD), SRBDS),
1115 {}
1116};
1117
93920f61 1118static bool __init cpu_matches(const struct x86_cpu_id *table, unsigned long which)
36ad3513 1119{
93920f61 1120 const struct x86_cpu_id *m = x86_match_cpu(table);
c456442c 1121
36ad3513
TG
1122 return m && !!(m->driver_data & which);
1123}
17dbca11 1124
286836a7 1125u64 x86_read_arch_cap_msr(void)
fec9434a
DW
1126{
1127 u64 ia32_cap = 0;
1128
286836a7
PG
1129 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1130 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, ia32_cap);
1131
1132 return ia32_cap;
1133}
1134
1135static void __init cpu_set_bug_bits(struct cpuinfo_x86 *c)
1136{
1137 u64 ia32_cap = x86_read_arch_cap_msr();
1138
db4d30fb 1139 /* Set ITLB_MULTIHIT bug if cpu is not in the whitelist and not mitigated */
93920f61
MG
1140 if (!cpu_matches(cpu_vuln_whitelist, NO_ITLB_MULTIHIT) &&
1141 !(ia32_cap & ARCH_CAP_PSCHANGE_MC_NO))
db4d30fb
VT
1142 setup_force_cpu_bug(X86_BUG_ITLB_MULTIHIT);
1143
93920f61 1144 if (cpu_matches(cpu_vuln_whitelist, NO_SPECULATION))
8ecc4979
DB
1145 return;
1146
1147 setup_force_cpu_bug(X86_BUG_SPECTRE_V1);
1e41a766 1148
93920f61 1149 if (!cpu_matches(cpu_vuln_whitelist, NO_SPECTRE_V2))
1e41a766 1150 setup_force_cpu_bug(X86_BUG_SPECTRE_V2);
8ecc4979 1151
93920f61
MG
1152 if (!cpu_matches(cpu_vuln_whitelist, NO_SSB) &&
1153 !(ia32_cap & ARCH_CAP_SSB_NO) &&
24809860 1154 !cpu_has(c, X86_FEATURE_AMD_SSB_NO))
c456442c
KRW
1155 setup_force_cpu_bug(X86_BUG_SPEC_STORE_BYPASS);
1156
706d5168
SP
1157 if (ia32_cap & ARCH_CAP_IBRS_ALL)
1158 setup_force_cpu_cap(X86_FEATURE_IBRS_ENHANCED);
1159
93920f61
MG
1160 if (!cpu_matches(cpu_vuln_whitelist, NO_MDS) &&
1161 !(ia32_cap & ARCH_CAP_MDS_NO)) {
ed5194c2 1162 setup_force_cpu_bug(X86_BUG_MDS);
93920f61 1163 if (cpu_matches(cpu_vuln_whitelist, MSBDS_ONLY))
e261f209
TG
1164 setup_force_cpu_bug(X86_BUG_MSBDS_ONLY);
1165 }
ed5194c2 1166
93920f61 1167 if (!cpu_matches(cpu_vuln_whitelist, NO_SWAPGS))
f36cf386
TG
1168 setup_force_cpu_bug(X86_BUG_SWAPGS);
1169
1b42f017
PG
1170 /*
1171 * When the CPU is not mitigated for TAA (TAA_NO=0) set TAA bug when:
1172 * - TSX is supported or
1173 * - TSX_CTRL is present
1174 *
1175 * TSX_CTRL check is needed for cases when TSX could be disabled before
1176 * the kernel boot e.g. kexec.
1177 * TSX_CTRL check alone is not sufficient for cases when the microcode
1178 * update is not present or running as guest that don't get TSX_CTRL.
1179 */
1180 if (!(ia32_cap & ARCH_CAP_TAA_NO) &&
1181 (cpu_has(c, X86_FEATURE_RTM) ||
1182 (ia32_cap & ARCH_CAP_TSX_CTRL_MSR)))
1183 setup_force_cpu_bug(X86_BUG_TAA);
1184
7e5b3c26
MG
1185 /*
1186 * SRBDS affects CPUs which support RDRAND or RDSEED and are listed
1187 * in the vulnerability blacklist.
1188 */
1189 if ((cpu_has(c, X86_FEATURE_RDRAND) ||
1190 cpu_has(c, X86_FEATURE_RDSEED)) &&
1191 cpu_matches(cpu_vuln_blacklist, SRBDS))
1192 setup_force_cpu_bug(X86_BUG_SRBDS);
1193
93920f61 1194 if (cpu_matches(cpu_vuln_whitelist, NO_MELTDOWN))
4a28bfe3 1195 return;
fec9434a 1196
fec9434a
DW
1197 /* Rogue Data Cache Load? No! */
1198 if (ia32_cap & ARCH_CAP_RDCL_NO)
4a28bfe3 1199 return;
fec9434a 1200
4a28bfe3 1201 setup_force_cpu_bug(X86_BUG_CPU_MELTDOWN);
17dbca11 1202
93920f61 1203 if (cpu_matches(cpu_vuln_whitelist, NO_L1TF))
17dbca11
AK
1204 return;
1205
1206 setup_force_cpu_bug(X86_BUG_L1TF);
fec9434a
DW
1207}
1208
8990cac6
PT
1209/*
1210 * The NOPL instruction is supposed to exist on all CPUs of family >= 6;
1211 * unfortunately, that's not true in practice because of early VIA
1212 * chips and (more importantly) broken virtualizers that are not easy
1213 * to detect. In the latter case it doesn't even *fail* reliably, so
1214 * probing for it doesn't even work. Disable it completely on 32-bit
1215 * unless we can find a reliable way to detect all the broken cases.
1216 * Enable it explicitly on 64-bit for non-constant inputs of cpu_has().
1217 */
9b3661cd 1218static void detect_nopl(void)
8990cac6
PT
1219{
1220#ifdef CONFIG_X86_32
9b3661cd 1221 setup_clear_cpu_cap(X86_FEATURE_NOPL);
8990cac6 1222#else
9b3661cd 1223 setup_force_cpu_cap(X86_FEATURE_NOPL);
8990cac6
PT
1224#endif
1225}
1226
1ef5423a
MH
1227/*
1228 * We parse cpu parameters early because fpu__init_system() is executed
1229 * before parse_early_param().
1230 */
1231static void __init cpu_parse_early_param(void)
1232{
1233 char arg[128];
1234 char *argptr = arg;
1235 int arglen, res, bit;
1236
1237#ifdef CONFIG_X86_32
1238 if (cmdline_find_option_bool(boot_command_line, "no387"))
1239#ifdef CONFIG_MATH_EMULATION
1240 setup_clear_cpu_cap(X86_FEATURE_FPU);
1241#else
1242 pr_err("Option 'no387' required CONFIG_MATH_EMULATION enabled.\n");
1243#endif
1244
1245 if (cmdline_find_option_bool(boot_command_line, "nofxsr"))
1246 setup_clear_cpu_cap(X86_FEATURE_FXSR);
1247#endif
1248
1249 if (cmdline_find_option_bool(boot_command_line, "noxsave"))
1250 setup_clear_cpu_cap(X86_FEATURE_XSAVE);
1251
1252 if (cmdline_find_option_bool(boot_command_line, "noxsaveopt"))
1253 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
1254
1255 if (cmdline_find_option_bool(boot_command_line, "noxsaves"))
1256 setup_clear_cpu_cap(X86_FEATURE_XSAVES);
1257
1258 arglen = cmdline_find_option(boot_command_line, "clearcpuid", arg, sizeof(arg));
1259 if (arglen <= 0)
1260 return;
1261
1262 pr_info("Clearing CPUID bits:");
1263 do {
1264 res = get_option(&argptr, &bit);
1265 if (res == 0 || res == 3)
1266 break;
1267
1268 /* If the argument was too long, the last bit may be cut off */
1269 if (res == 1 && arglen >= sizeof(arg))
1270 break;
1271
1272 if (bit >= 0 && bit < NCAPINTS * 32) {
1273 pr_cont(" " X86_CAP_FMT, x86_cap_flag(bit));
1274 setup_clear_cpu_cap(bit);
1275 }
1276 } while (res == 2);
1277 pr_cont("\n");
1278}
1279
34048c9e
PC
1280/*
1281 * Do minimum CPU detection early.
1282 * Fields really needed: vendor, cpuid_level, family, model, mask,
1283 * cache alignment.
1284 * The others are not touched to avoid unwanted side effects.
1285 *
a1652bb8
JD
1286 * WARNING: this function is only called on the boot CPU. Don't add code
1287 * here that is supposed to run on all CPUs.
34048c9e 1288 */
3da99c97 1289static void __init early_identify_cpu(struct cpuinfo_x86 *c)
d7cd5611 1290{
6627d242
YL
1291#ifdef CONFIG_X86_64
1292 c->x86_clflush_size = 64;
13c6c532
JB
1293 c->x86_phys_bits = 36;
1294 c->x86_virt_bits = 48;
6627d242 1295#else
d4387bd3 1296 c->x86_clflush_size = 32;
13c6c532
JB
1297 c->x86_phys_bits = 32;
1298 c->x86_virt_bits = 32;
6627d242 1299#endif
0a488a53 1300 c->x86_cache_alignment = c->x86_clflush_size;
d7cd5611 1301
0e96f31e 1302 memset(&c->x86_capability, 0, sizeof(c->x86_capability));
0a488a53 1303 c->extended_cpuid_level = 0;
d7cd5611 1304
2893cc8f
MW
1305 if (!have_cpuid_p())
1306 identify_cpu_without_cpuid(c);
1307
aef93c8b 1308 /* cyrix could have cpuid enabled via c_identify()*/
05fb3c19
AL
1309 if (have_cpuid_p()) {
1310 cpu_detect(c);
1311 get_cpu_vendor(c);
1312 get_cpu_cap(c);
d94a155c 1313 get_cpu_address_sizes(c);
78d1b296 1314 setup_force_cpu_cap(X86_FEATURE_CPUID);
1ef5423a 1315 cpu_parse_early_param();
d7cd5611 1316
05fb3c19
AL
1317 if (this_cpu->c_early_init)
1318 this_cpu->c_early_init(c);
12cf105c 1319
05fb3c19
AL
1320 c->cpu_index = 0;
1321 filter_cpuid_features(c, false);
093af8d7 1322
05fb3c19
AL
1323 if (this_cpu->c_bsp_init)
1324 this_cpu->c_bsp_init(c);
78d1b296 1325 } else {
78d1b296 1326 setup_clear_cpu_cap(X86_FEATURE_CPUID);
05fb3c19 1327 }
c3b83598
BP
1328
1329 setup_force_cpu_cap(X86_FEATURE_ALWAYS);
a89f040f 1330
4a28bfe3 1331 cpu_set_bug_bits(c);
99c6fa25 1332
ebb1064e 1333 sld_setup(c);
6650cdd9 1334
db52ef74 1335 fpu__init_system(c);
b8b7abae 1336
939ef713
CB
1337 init_sigframe_size();
1338
b8b7abae
AL
1339#ifdef CONFIG_X86_32
1340 /*
1341 * Regardless of whether PCID is enumerated, the SDM says
1342 * that it can't be enabled in 32-bit mode.
1343 */
1344 setup_clear_cpu_cap(X86_FEATURE_PCID);
1345#endif
372fddf7
KS
1346
1347 /*
1348 * Later in the boot process pgtable_l5_enabled() relies on
1349 * cpu_feature_enabled(X86_FEATURE_LA57). If 5-level paging is not
1350 * enabled by this point we need to clear the feature bit to avoid
1351 * false-positives at the later stage.
1352 *
1353 * pgtable_l5_enabled() can be false here for several reasons:
1354 * - 5-level paging is disabled compile-time;
1355 * - it's 32-bit kernel;
1356 * - machine doesn't support 5-level paging;
1357 * - user specified 'no5lvl' in kernel command line.
1358 */
1359 if (!pgtable_l5_enabled())
1360 setup_clear_cpu_cap(X86_FEATURE_LA57);
8990cac6 1361
9b3661cd 1362 detect_nopl();
d7cd5611
RR
1363}
1364
9d31d35b
YL
1365void __init early_cpu_init(void)
1366{
02dde8b4 1367 const struct cpu_dev *const *cdev;
10a434fc
YL
1368 int count = 0;
1369
ac23f253 1370#ifdef CONFIG_PROCESSOR_SELECT
1b74dde7 1371 pr_info("KERNEL supported cpus:\n");
31c997ca
IM
1372#endif
1373
10a434fc 1374 for (cdev = __x86_cpu_dev_start; cdev < __x86_cpu_dev_end; cdev++) {
02dde8b4 1375 const struct cpu_dev *cpudev = *cdev;
9d31d35b 1376
10a434fc
YL
1377 if (count >= X86_VENDOR_NUM)
1378 break;
1379 cpu_devs[count] = cpudev;
1380 count++;
1381
ac23f253 1382#ifdef CONFIG_PROCESSOR_SELECT
31c997ca
IM
1383 {
1384 unsigned int j;
1385
1386 for (j = 0; j < 2; j++) {
1387 if (!cpudev->c_ident[j])
1388 continue;
1b74dde7 1389 pr_info(" %s %s\n", cpudev->c_vendor,
31c997ca
IM
1390 cpudev->c_ident[j]);
1391 }
10a434fc 1392 }
0388423d 1393#endif
10a434fc 1394 }
9d31d35b 1395 early_identify_cpu(&boot_cpu_data);
d7cd5611 1396}
093af8d7 1397
7a5d6704
AL
1398static void detect_null_seg_behavior(struct cpuinfo_x86 *c)
1399{
1400#ifdef CONFIG_X86_64
58a5aac5 1401 /*
7a5d6704
AL
1402 * Empirically, writing zero to a segment selector on AMD does
1403 * not clear the base, whereas writing zero to a segment
1404 * selector on Intel does clear the base. Intel's behavior
1405 * allows slightly faster context switches in the common case
1406 * where GS is unused by the prev and next threads.
58a5aac5 1407 *
7a5d6704 1408 * Since neither vendor documents this anywhere that I can see,
d9f6e12f 1409 * detect it directly instead of hard-coding the choice by
7a5d6704
AL
1410 * vendor.
1411 *
1412 * I've designated AMD's behavior as the "bug" because it's
1413 * counterintuitive and less friendly.
58a5aac5 1414 */
7a5d6704
AL
1415
1416 unsigned long old_base, tmp;
1417 rdmsrl(MSR_FS_BASE, old_base);
1418 wrmsrl(MSR_FS_BASE, 1);
1419 loadsegment(fs, 0);
1420 rdmsrl(MSR_FS_BASE, tmp);
1421 if (tmp != 0)
1422 set_cpu_bug(c, X86_BUG_NULL_SEG);
1423 wrmsrl(MSR_FS_BASE, old_base);
366d4a43 1424#endif
d7cd5611
RR
1425}
1426
148f9bb8 1427static void generic_identify(struct cpuinfo_x86 *c)
1da177e4 1428{
aef93c8b 1429 c->extended_cpuid_level = 0;
1da177e4 1430
3da99c97 1431 if (!have_cpuid_p())
aef93c8b 1432 identify_cpu_without_cpuid(c);
1d67953f 1433
aef93c8b 1434 /* cyrix could have cpuid enabled via c_identify()*/
a9853dd6 1435 if (!have_cpuid_p())
aef93c8b 1436 return;
1da177e4 1437
3da99c97 1438 cpu_detect(c);
1da177e4 1439
3da99c97 1440 get_cpu_vendor(c);
1da177e4 1441
3da99c97 1442 get_cpu_cap(c);
1da177e4 1443
d94a155c
KS
1444 get_cpu_address_sizes(c);
1445
3da99c97
YL
1446 if (c->cpuid_level >= 0x00000001) {
1447 c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xFF;
b89d3b3e 1448#ifdef CONFIG_X86_32
c8e56d20 1449# ifdef CONFIG_SMP
cb8cc442 1450 c->apicid = apic->phys_pkg_id(c->initial_apicid, 0);
b89d3b3e 1451# else
3da99c97 1452 c->apicid = c->initial_apicid;
b89d3b3e
YL
1453# endif
1454#endif
b89d3b3e 1455 c->phys_proc_id = c->initial_apicid;
3da99c97 1456 }
1da177e4 1457
1b05d60d 1458 get_model_name(c); /* Default name */
1da177e4 1459
7a5d6704 1460 detect_null_seg_behavior(c);
0230bb03
AL
1461
1462 /*
1463 * ESPFIX is a strange bug. All real CPUs have it. Paravirt
1464 * systems that run Linux at CPL > 0 may or may not have the
1465 * issue, but, even if they have the issue, there's absolutely
1466 * nothing we can do about it because we can't use the real IRET
1467 * instruction.
1468 *
1469 * NB: For the time being, only 32-bit kernels support
1470 * X86_BUG_ESPFIX as such. 64-bit kernels directly choose
1471 * whether to apply espfix using paravirt hooks. If any
1472 * non-paravirt system ever shows up that does *not* have the
1473 * ESPFIX issue, we can change this.
1474 */
1475#ifdef CONFIG_X86_32
0230bb03 1476 set_cpu_bug(c, X86_BUG_ESPFIX);
0230bb03 1477#endif
1da177e4 1478}
1da177e4 1479
d49597fd 1480/*
9d85eb91
TG
1481 * Validate that ACPI/mptables have the same information about the
1482 * effective APIC id and update the package map.
d49597fd 1483 */
9d85eb91 1484static void validate_apic_and_package_id(struct cpuinfo_x86 *c)
d49597fd
TG
1485{
1486#ifdef CONFIG_SMP
9d85eb91 1487 unsigned int apicid, cpu = smp_processor_id();
d49597fd
TG
1488
1489 apicid = apic->cpu_present_to_apicid(cpu);
d49597fd 1490
9d85eb91
TG
1491 if (apicid != c->apicid) {
1492 pr_err(FW_BUG "CPU%u: APIC id mismatch. Firmware: %x APIC: %x\n",
d49597fd 1493 cpu, apicid, c->initial_apicid);
d49597fd 1494 }
9d85eb91 1495 BUG_ON(topology_update_package_map(c->phys_proc_id, cpu));
212bf4fd 1496 BUG_ON(topology_update_die_map(c->cpu_die_id, cpu));
d49597fd
TG
1497#else
1498 c->logical_proc_id = 0;
1499#endif
1500}
1501
1da177e4
LT
1502/*
1503 * This does the hard work of actually picking apart the CPU stuff...
1504 */
148f9bb8 1505static void identify_cpu(struct cpuinfo_x86 *c)
1da177e4
LT
1506{
1507 int i;
1508
1509 c->loops_per_jiffy = loops_per_jiffy;
24dbc600 1510 c->x86_cache_size = 0;
1da177e4 1511 c->x86_vendor = X86_VENDOR_UNKNOWN;
b399151c 1512 c->x86_model = c->x86_stepping = 0; /* So far unknown... */
1da177e4
LT
1513 c->x86_vendor_id[0] = '\0'; /* Unset */
1514 c->x86_model_id[0] = '\0'; /* Unset */
94605eff 1515 c->x86_max_cores = 1;
102bbe3a 1516 c->x86_coreid_bits = 0;
79a8b9aa 1517 c->cu_id = 0xff;
11fdd252 1518#ifdef CONFIG_X86_64
102bbe3a 1519 c->x86_clflush_size = 64;
13c6c532
JB
1520 c->x86_phys_bits = 36;
1521 c->x86_virt_bits = 48;
102bbe3a
YL
1522#else
1523 c->cpuid_level = -1; /* CPUID not detected */
770d132f 1524 c->x86_clflush_size = 32;
13c6c532
JB
1525 c->x86_phys_bits = 32;
1526 c->x86_virt_bits = 32;
102bbe3a
YL
1527#endif
1528 c->x86_cache_alignment = c->x86_clflush_size;
0e96f31e 1529 memset(&c->x86_capability, 0, sizeof(c->x86_capability));
b47ce1fe
SC
1530#ifdef CONFIG_X86_VMX_FEATURE_NAMES
1531 memset(&c->vmx_capability, 0, sizeof(c->vmx_capability));
1532#endif
1da177e4 1533
1da177e4
LT
1534 generic_identify(c);
1535
3898534d 1536 if (this_cpu->c_identify)
1da177e4
LT
1537 this_cpu->c_identify(c);
1538
6a6256f9 1539 /* Clear/Set all flags overridden by options, after probe */
8bf1ebca 1540 apply_forced_caps(c);
2759c328 1541
102bbe3a 1542#ifdef CONFIG_X86_64
cb8cc442 1543 c->apicid = apic->phys_pkg_id(c->initial_apicid, 0);
102bbe3a
YL
1544#endif
1545
1da177e4
LT
1546 /*
1547 * Vendor-specific initialization. In this section we
1548 * canonicalize the feature flags, meaning if there are
1549 * features a certain CPU supports which CPUID doesn't
1550 * tell us, CPUID claiming incorrect flags, or other bugs,
1551 * we handle them here.
1552 *
1553 * At the end of this section, c->x86_capability better
1554 * indicate the features this CPU genuinely supports!
1555 */
1556 if (this_cpu->c_init)
1557 this_cpu->c_init(c);
1558
1559 /* Disable the PN if appropriate */
1560 squash_the_stupid_serial_number(c);
1561
aa35f896 1562 /* Set up SMEP/SMAP/UMIP */
b2cc2a07
PA
1563 setup_smep(c);
1564 setup_smap(c);
aa35f896 1565 setup_umip(c);
b2cc2a07 1566
dd649bd0 1567 /* Enable FSGSBASE instructions if available. */
742c45c3 1568 if (cpu_has(c, X86_FEATURE_FSGSBASE)) {
b745cfba 1569 cr4_set_bits(X86_CR4_FSGSBASE);
742c45c3
AK
1570 elf_hwcap2 |= HWCAP2_FSGSBASE;
1571 }
dd649bd0 1572
1da177e4 1573 /*
0f3fa48a
IM
1574 * The vendor-specific functions might have changed features.
1575 * Now we do "generic changes."
1da177e4
LT
1576 */
1577
b38b0665
PA
1578 /* Filter out anything that depends on CPUID levels we don't have */
1579 filter_cpuid_features(c, true);
1580
1da177e4 1581 /* If the model name is still unset, do table lookup. */
34048c9e 1582 if (!c->x86_model_id[0]) {
02dde8b4 1583 const char *p;
1da177e4 1584 p = table_lookup_model(c);
34048c9e 1585 if (p)
1da177e4
LT
1586 strcpy(c->x86_model_id, p);
1587 else
1588 /* Last resort... */
1589 sprintf(c->x86_model_id, "%02x/%02x",
54a20f8c 1590 c->x86, c->x86_model);
1da177e4
LT
1591 }
1592
102bbe3a
YL
1593#ifdef CONFIG_X86_64
1594 detect_ht(c);
1595#endif
1596
49d859d7 1597 x86_init_rdrand(c);
06976945 1598 setup_pku(c);
3e0c3737
YL
1599
1600 /*
6a6256f9 1601 * Clear/Set all flags overridden by options, need do it
3e0c3737
YL
1602 * before following smp all cpus cap AND.
1603 */
8bf1ebca 1604 apply_forced_caps(c);
3e0c3737 1605
1da177e4
LT
1606 /*
1607 * On SMP, boot_cpu_data holds the common feature set between
1608 * all CPUs; so make sure that we indicate which features are
1609 * common between the CPUs. The first time this routine gets
1610 * executed, c == &boot_cpu_data.
1611 */
34048c9e 1612 if (c != &boot_cpu_data) {
1da177e4 1613 /* AND the already accumulated flags with these */
9d31d35b 1614 for (i = 0; i < NCAPINTS; i++)
1da177e4 1615 boot_cpu_data.x86_capability[i] &= c->x86_capability[i];
65fc985b
BP
1616
1617 /* OR, i.e. replicate the bug flags */
1618 for (i = NCAPINTS; i < NCAPINTS + NBUGINTS; i++)
1619 c->x86_capability[i] |= boot_cpu_data.x86_capability[i];
1da177e4
LT
1620 }
1621
1622 /* Init Machine Check Exception if available. */
5e09954a 1623 mcheck_cpu_init(c);
30d432df
AK
1624
1625 select_idle_routine(c);
102bbe3a 1626
de2d9445 1627#ifdef CONFIG_NUMA
102bbe3a
YL
1628 numa_add_cpu(smp_processor_id());
1629#endif
a6c4e076 1630}
31ab269a 1631
8b6c0ab1
IM
1632/*
1633 * Set up the CPU state needed to execute SYSENTER/SYSEXIT instructions
1634 * on 32-bit kernels:
1635 */
cfda7bb9
AL
1636#ifdef CONFIG_X86_32
1637void enable_sep_cpu(void)
1638{
8b6c0ab1
IM
1639 struct tss_struct *tss;
1640 int cpu;
cfda7bb9 1641
b3edfda4
BP
1642 if (!boot_cpu_has(X86_FEATURE_SEP))
1643 return;
1644
8b6c0ab1 1645 cpu = get_cpu();
c482feef 1646 tss = &per_cpu(cpu_tss_rw, cpu);
8b6c0ab1 1647
8b6c0ab1 1648 /*
cf9328cc
AL
1649 * We cache MSR_IA32_SYSENTER_CS's value in the TSS's ss1 field --
1650 * see the big comment in struct x86_hw_tss's definition.
8b6c0ab1 1651 */
cfda7bb9
AL
1652
1653 tss->x86_tss.ss1 = __KERNEL_CS;
8b6c0ab1 1654 wrmsr(MSR_IA32_SYSENTER_CS, tss->x86_tss.ss1, 0);
4fe2d8b1 1655 wrmsr(MSR_IA32_SYSENTER_ESP, (unsigned long)(cpu_entry_stack(cpu) + 1), 0);
4c8cd0c5 1656 wrmsr(MSR_IA32_SYSENTER_EIP, (unsigned long)entry_SYSENTER_32, 0);
8b6c0ab1 1657
cfda7bb9
AL
1658 put_cpu();
1659}
e04d645f
GC
1660#endif
1661
a6c4e076
JF
1662void __init identify_boot_cpu(void)
1663{
1664 identify_cpu(&boot_cpu_data);
102bbe3a 1665#ifdef CONFIG_X86_32
a6c4e076 1666 sysenter_setup();
6fe940d6 1667 enable_sep_cpu();
102bbe3a 1668#endif
5b556332 1669 cpu_detect_tlb(&boot_cpu_data);
873d50d5 1670 setup_cr_pinning();
95c5824f
PG
1671
1672 tsx_init();
a6c4e076 1673}
3b520b23 1674
148f9bb8 1675void identify_secondary_cpu(struct cpuinfo_x86 *c)
a6c4e076
JF
1676{
1677 BUG_ON(c == &boot_cpu_data);
1678 identify_cpu(c);
102bbe3a 1679#ifdef CONFIG_X86_32
a6c4e076 1680 enable_sep_cpu();
102bbe3a 1681#endif
a6c4e076 1682 mtrr_ap_init();
9d85eb91 1683 validate_apic_and_package_id(c);
77243971 1684 x86_spec_ctrl_setup_ap();
7e5b3c26 1685 update_srbds_msr();
1da177e4
LT
1686}
1687
191679fd
AK
1688static __init int setup_noclflush(char *arg)
1689{
840d2830 1690 setup_clear_cpu_cap(X86_FEATURE_CLFLUSH);
da4aaa7d 1691 setup_clear_cpu_cap(X86_FEATURE_CLFLUSHOPT);
191679fd
AK
1692 return 1;
1693}
1694__setup("noclflush", setup_noclflush);
1695
148f9bb8 1696void print_cpu_info(struct cpuinfo_x86 *c)
1da177e4 1697{
02dde8b4 1698 const char *vendor = NULL;
1da177e4 1699
0f3fa48a 1700 if (c->x86_vendor < X86_VENDOR_NUM) {
1da177e4 1701 vendor = this_cpu->c_vendor;
0f3fa48a
IM
1702 } else {
1703 if (c->cpuid_level >= 0)
1704 vendor = c->x86_vendor_id;
1705 }
1da177e4 1706
bd32a8cf 1707 if (vendor && !strstr(c->x86_model_id, vendor))
1b74dde7 1708 pr_cont("%s ", vendor);
1da177e4 1709
9d31d35b 1710 if (c->x86_model_id[0])
1b74dde7 1711 pr_cont("%s", c->x86_model_id);
1da177e4 1712 else
1b74dde7 1713 pr_cont("%d86", c->x86);
1da177e4 1714
1b74dde7 1715 pr_cont(" (family: 0x%x, model: 0x%x", c->x86, c->x86_model);
924e101a 1716
b399151c
JZ
1717 if (c->x86_stepping || c->cpuid_level >= 0)
1718 pr_cont(", stepping: 0x%x)\n", c->x86_stepping);
1da177e4 1719 else
1b74dde7 1720 pr_cont(")\n");
1da177e4
LT
1721}
1722
0c2a3913 1723/*
ce38f038
TG
1724 * clearcpuid= was already parsed in cpu_parse_early_param(). This dummy
1725 * function prevents it from becoming an environment variable for init.
0c2a3913
AK
1726 */
1727static __init int setup_clearcpuid(char *arg)
ac72e788 1728{
ac72e788
AK
1729 return 1;
1730}
0c2a3913 1731__setup("clearcpuid=", setup_clearcpuid);
ac72e788 1732
d5494d4f 1733#ifdef CONFIG_X86_64
e6401c13
AL
1734DEFINE_PER_CPU_FIRST(struct fixed_percpu_data,
1735 fixed_percpu_data) __aligned(PAGE_SIZE) __visible;
1736EXPORT_PER_CPU_SYMBOL_GPL(fixed_percpu_data);
0f3fa48a 1737
bdf977b3 1738/*
a7fcf28d
AL
1739 * The following percpu variables are hot. Align current_task to
1740 * cacheline size such that they fall in the same cacheline.
bdf977b3
TH
1741 */
1742DEFINE_PER_CPU(struct task_struct *, current_task) ____cacheline_aligned =
1743 &init_task;
1744EXPORT_PER_CPU_SYMBOL(current_task);
d5494d4f 1745
951c2a51 1746DEFINE_PER_CPU(void *, hardirq_stack_ptr);
e7f89001 1747DEFINE_PER_CPU(bool, hardirq_stack_inuse);
d5494d4f 1748
c2daa3be
PZ
1749DEFINE_PER_CPU(int, __preempt_count) = INIT_PREEMPT_COUNT;
1750EXPORT_PER_CPU_SYMBOL(__preempt_count);
1751
1591584e
LJ
1752DEFINE_PER_CPU(unsigned long, cpu_current_top_of_stack) = TOP_OF_INIT_STACK;
1753
d5494d4f
YL
1754/* May not be marked __init: used by software suspend */
1755void syscall_init(void)
1da177e4 1756{
31ac34ca 1757 wrmsr(MSR_STAR, 0, (__USER32_CS << 16) | __KERNEL_CS);
bf904d27 1758 wrmsrl(MSR_LSTAR, (unsigned long)entry_SYSCALL_64);
d56fe4bf
IM
1759
1760#ifdef CONFIG_IA32_EMULATION
47edb651 1761 wrmsrl(MSR_CSTAR, (unsigned long)entry_SYSCALL_compat);
a76c7f46 1762 /*
487d1edb
DV
1763 * This only works on Intel CPUs.
1764 * On AMD CPUs these MSRs are 32-bit, CPU truncates MSR_IA32_SYSENTER_EIP.
1765 * This does not cause SYSENTER to jump to the wrong location, because
1766 * AMD doesn't allow SYSENTER in long mode (either 32- or 64-bit).
a76c7f46
DV
1767 */
1768 wrmsrl_safe(MSR_IA32_SYSENTER_CS, (u64)__KERNEL_CS);
8e6b65a1 1769 wrmsrl_safe(MSR_IA32_SYSENTER_ESP,
1770 (unsigned long)(cpu_entry_stack(smp_processor_id()) + 1));
4c8cd0c5 1771 wrmsrl_safe(MSR_IA32_SYSENTER_EIP, (u64)entry_SYSENTER_compat);
d56fe4bf 1772#else
47edb651 1773 wrmsrl(MSR_CSTAR, (unsigned long)ignore_sysret);
6b51311c 1774 wrmsrl_safe(MSR_IA32_SYSENTER_CS, (u64)GDT_ENTRY_INVALID_SEG);
d56fe4bf
IM
1775 wrmsrl_safe(MSR_IA32_SYSENTER_ESP, 0ULL);
1776 wrmsrl_safe(MSR_IA32_SYSENTER_EIP, 0ULL);
d5494d4f 1777#endif
03ae5768 1778
6de4ac1d
PAI
1779 /*
1780 * Flags to clear on syscall; clear as much as possible
1781 * to minimize user space-kernel interference.
1782 */
d5494d4f 1783 wrmsrl(MSR_SYSCALL_MASK,
6de4ac1d
PAI
1784 X86_EFLAGS_CF|X86_EFLAGS_PF|X86_EFLAGS_AF|
1785 X86_EFLAGS_ZF|X86_EFLAGS_SF|X86_EFLAGS_TF|
1786 X86_EFLAGS_IF|X86_EFLAGS_DF|X86_EFLAGS_OF|
1787 X86_EFLAGS_IOPL|X86_EFLAGS_NT|X86_EFLAGS_RF|
1788 X86_EFLAGS_AC|X86_EFLAGS_ID);
1da177e4 1789}
62111195 1790
0f3fa48a 1791#else /* CONFIG_X86_64 */
d5494d4f 1792
bdf977b3
TH
1793DEFINE_PER_CPU(struct task_struct *, current_task) = &init_task;
1794EXPORT_PER_CPU_SYMBOL(current_task);
c2daa3be
PZ
1795DEFINE_PER_CPU(int, __preempt_count) = INIT_PREEMPT_COUNT;
1796EXPORT_PER_CPU_SYMBOL(__preempt_count);
bdf977b3 1797
a7fcf28d
AL
1798/*
1799 * On x86_32, vm86 modifies tss.sp0, so sp0 isn't a reliable way to find
1800 * the top of the kernel stack. Use an extra percpu variable to track the
1801 * top of the kernel stack directly.
1802 */
1803DEFINE_PER_CPU(unsigned long, cpu_current_top_of_stack) =
1804 (unsigned long)&init_thread_union + THREAD_SIZE;
1805EXPORT_PER_CPU_SYMBOL(cpu_current_top_of_stack);
1806
050e9baa 1807#ifdef CONFIG_STACKPROTECTOR
3fb0fdb3
AL
1808DEFINE_PER_CPU(unsigned long, __stack_chk_guard);
1809EXPORT_PER_CPU_SYMBOL(__stack_chk_guard);
60a5317f 1810#endif
d5494d4f 1811
0f3fa48a 1812#endif /* CONFIG_X86_64 */
c5413fbe 1813
9766cdbc
JSR
1814/*
1815 * Clear all 6 debug registers:
1816 */
1817static void clear_all_debug_regs(void)
1818{
1819 int i;
1820
1821 for (i = 0; i < 8; i++) {
1822 /* Ignore db4, db5 */
1823 if ((i == 4) || (i == 5))
1824 continue;
1825
1826 set_debugreg(0, i);
1827 }
1828}
c5413fbe 1829
0bb9fef9
JW
1830#ifdef CONFIG_KGDB
1831/*
1832 * Restore debug regs if using kgdbwait and you have a kernel debugger
1833 * connection established.
1834 */
1835static void dbg_restore_debug_regs(void)
1836{
1837 if (unlikely(kgdb_connected && arch_kgdb_ops.correct_hw_break))
1838 arch_kgdb_ops.correct_hw_break();
1839}
1840#else /* ! CONFIG_KGDB */
1841#define dbg_restore_debug_regs()
1842#endif /* ! CONFIG_KGDB */
1843
ce4b1b16
IM
1844static void wait_for_master_cpu(int cpu)
1845{
1846#ifdef CONFIG_SMP
1847 /*
1848 * wait for ACK from master CPU before continuing
1849 * with AP initialization
1850 */
1851 WARN_ON(cpumask_test_and_set_cpu(cpu, cpu_initialized_mask));
1852 while (!cpumask_test_cpu(cpu, cpu_callout_mask))
1853 cpu_relax();
1854#endif
1855}
1856
b2e2ba57 1857#ifdef CONFIG_X86_64
505b7899 1858static inline void setup_getcpu(int cpu)
b2e2ba57 1859{
22245bdf 1860 unsigned long cpudata = vdso_encode_cpunode(cpu, early_cpu_to_node(cpu));
b2e2ba57
CB
1861 struct desc_struct d = { };
1862
b6b4fbd9 1863 if (boot_cpu_has(X86_FEATURE_RDTSCP) || boot_cpu_has(X86_FEATURE_RDPID))
fc48a6d1 1864 wrmsr(MSR_TSC_AUX, cpudata, 0);
b2e2ba57
CB
1865
1866 /* Store CPU and node number in limit. */
1867 d.limit0 = cpudata;
1868 d.limit1 = cpudata >> 16;
1869
1870 d.type = 5; /* RO data, expand down, accessed */
1871 d.dpl = 3; /* Visible to user code */
1872 d.s = 1; /* Not a system segment */
1873 d.p = 1; /* Present */
1874 d.d = 1; /* 32-bit */
1875
22245bdf 1876 write_gdt_entry(get_cpu_gdt_rw(cpu), GDT_ENTRY_CPUNODE, &d, DESCTYPE_S);
b2e2ba57 1877}
505b7899
TG
1878
1879static inline void ucode_cpu_init(int cpu)
1880{
1881 if (cpu)
1882 load_ucode_ap();
1883}
1884
1885static inline void tss_setup_ist(struct tss_struct *tss)
1886{
1887 /* Set up the per-CPU TSS IST stacks */
1888 tss->x86_tss.ist[IST_INDEX_DF] = __this_cpu_ist_top_va(DF);
1889 tss->x86_tss.ist[IST_INDEX_NMI] = __this_cpu_ist_top_va(NMI);
1890 tss->x86_tss.ist[IST_INDEX_DB] = __this_cpu_ist_top_va(DB);
1891 tss->x86_tss.ist[IST_INDEX_MCE] = __this_cpu_ist_top_va(MCE);
02772fb9
JR
1892 /* Only mapped when SEV-ES is active */
1893 tss->x86_tss.ist[IST_INDEX_VC] = __this_cpu_ist_top_va(VC);
505b7899
TG
1894}
1895
505b7899
TG
1896#else /* CONFIG_X86_64 */
1897
1898static inline void setup_getcpu(int cpu) { }
1899
1900static inline void ucode_cpu_init(int cpu)
1901{
1902 show_ucode_info_early();
1903}
1904
1905static inline void tss_setup_ist(struct tss_struct *tss) { }
1906
505b7899 1907#endif /* !CONFIG_X86_64 */
b2e2ba57 1908
111e7b15
TG
1909static inline void tss_setup_io_bitmap(struct tss_struct *tss)
1910{
1911 tss->x86_tss.io_bitmap_base = IO_BITMAP_OFFSET_INVALID;
1912
1913#ifdef CONFIG_X86_IOPL_IOPERM
1914 tss->io_bitmap.prev_max = 0;
1915 tss->io_bitmap.prev_sequence = 0;
1916 memset(tss->io_bitmap.bitmap, 0xff, sizeof(tss->io_bitmap.bitmap));
1917 /*
1918 * Invalidate the extra array entry past the end of the all
1919 * permission bitmap as required by the hardware.
1920 */
1921 tss->io_bitmap.mapall[IO_BITMAP_LONGS] = ~0UL;
b2e2ba57 1922#endif
111e7b15 1923}
b2e2ba57 1924
520d0308
JR
1925/*
1926 * Setup everything needed to handle exceptions from the IDT, including the IST
1927 * exceptions which use paranoid_entry().
1928 */
1929void cpu_init_exception_handling(void)
1930{
1931 struct tss_struct *tss = this_cpu_ptr(&cpu_tss_rw);
1932 int cpu = raw_smp_processor_id();
1933
1934 /* paranoid_entry() gets the CPU number from the GDT */
1935 setup_getcpu(cpu);
1936
1937 /* IST vectors need TSS to be set up. */
1938 tss_setup_ist(tss);
1939 tss_setup_io_bitmap(tss);
1940 set_tss_desc(cpu, &get_cpu_entry_area(cpu)->tss.x86_tss);
1941
1942 load_TR_desc();
1943
1944 /* Finally load the IDT */
1945 load_current_idt();
1946}
1947
d2cbcc49
RR
1948/*
1949 * cpu_init() initializes state that is per-CPU. Some data is already
b1efd0ff
BP
1950 * initialized (naturally) in the bootstrap process, such as the GDT. We
1951 * reload it nevertheless, this function acts as a 'CPU state barrier',
1952 * nothing should get across.
d2cbcc49 1953 */
148f9bb8 1954void cpu_init(void)
1ba76586 1955{
505b7899 1956 struct task_struct *cur = current;
f6ef7322 1957 int cpu = raw_smp_processor_id();
1ba76586 1958
ce4b1b16
IM
1959 wait_for_master_cpu(cpu);
1960
505b7899 1961 ucode_cpu_init(cpu);
0f3fa48a 1962
e7a22c1e 1963#ifdef CONFIG_NUMA
27fd185f 1964 if (this_cpu_read(numa_node) == 0 &&
e534c7c5
LS
1965 early_cpu_to_node(cpu) != NUMA_NO_NODE)
1966 set_numa_node(early_cpu_to_node(cpu));
e7a22c1e 1967#endif
2eaad1fd 1968 pr_debug("Initializing CPU#%d\n", cpu);
1ba76586 1969
505b7899
TG
1970 if (IS_ENABLED(CONFIG_X86_64) || cpu_feature_enabled(X86_FEATURE_VME) ||
1971 boot_cpu_has(X86_FEATURE_TSC) || boot_cpu_has(X86_FEATURE_DE))
1972 cr4_clear_bits(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
1ba76586
YL
1973
1974 /*
1975 * Initialize the per-CPU GDT with the boot GDT,
1976 * and set up the GDT descriptor:
1977 */
552be871 1978 switch_to_new_gdt(cpu);
1ba76586 1979
505b7899
TG
1980 if (IS_ENABLED(CONFIG_X86_64)) {
1981 loadsegment(fs, 0);
1982 memset(cur->thread.tls_array, 0, GDT_ENTRY_TLS_ENTRIES * 8);
1983 syscall_init();
1ba76586 1984
505b7899
TG
1985 wrmsrl(MSR_FS_BASE, 0);
1986 wrmsrl(MSR_KERNEL_GS_BASE, 0);
1987 barrier();
1ba76586 1988
505b7899 1989 x2apic_setup();
1ba76586
YL
1990 }
1991
f1f10076 1992 mmgrab(&init_mm);
505b7899
TG
1993 cur->active_mm = &init_mm;
1994 BUG_ON(cur->mm);
72c0098d 1995 initialize_tlbstate_and_flush();
505b7899 1996 enter_lazy_tlb(&init_mm, cur);
1ba76586 1997
505b7899
TG
1998 /*
1999 * sp0 points to the entry trampoline stack regardless of what task
2000 * is running.
2001 */
4fe2d8b1 2002 load_sp0((unsigned long)(cpu_entry_stack(cpu) + 1));
20bb8344 2003
37868fe1 2004 load_mm_ldt(&init_mm);
1ba76586 2005
0bb9fef9
JW
2006 clear_all_debug_regs();
2007 dbg_restore_debug_regs();
1ba76586 2008
dc4e0021 2009 doublefault_init_cpu_tss();
505b7899 2010
21c4cd10 2011 fpu__init_cpu();
1ba76586 2012
1ba76586
YL
2013 if (is_uv_system())
2014 uv_cpu_init();
69218e47 2015
69218e47 2016 load_fixmap_gdt(cpu);
1ba76586
YL
2017}
2018
b1efd0ff
BP
2019#ifdef CONFIG_SMP
2020void cpu_init_secondary(void)
2021{
2022 /*
2023 * Relies on the BP having set-up the IDT tables, which are loaded
2024 * on this CPU in cpu_init_exception_handling().
2025 */
2026 cpu_init_exception_handling();
2027 cpu_init();
2028}
2029#endif
2030
1008c52c
BP
2031/*
2032 * The microcode loader calls this upon late microcode load to recheck features,
2033 * only when microcode has been updated. Caller holds microcode_mutex and CPU
2034 * hotplug lock.
2035 */
2036void microcode_check(void)
2037{
42ca8082
BP
2038 struct cpuinfo_x86 info;
2039
1008c52c 2040 perf_check_microcode();
42ca8082
BP
2041
2042 /* Reload CPUID max function as it might've changed. */
2043 info.cpuid_level = cpuid_eax(0);
2044
2045 /*
2046 * Copy all capability leafs to pick up the synthetic ones so that
2047 * memcmp() below doesn't fail on that. The ones coming from CPUID will
2048 * get overwritten in get_cpu_cap().
2049 */
2050 memcpy(&info.x86_capability, &boot_cpu_data.x86_capability, sizeof(info.x86_capability));
2051
2052 get_cpu_cap(&info);
2053
2054 if (!memcmp(&info.x86_capability, &boot_cpu_data.x86_capability, sizeof(info.x86_capability)))
2055 return;
2056
2057 pr_warn("x86/CPU: CPU features have changed after loading microcode, but might not take effect.\n");
2058 pr_warn("x86/CPU: Please consider either early loading through initrd/built-in or a potential BIOS update.\n");
1008c52c 2059}
9c92374b
TG
2060
2061/*
2062 * Invoked from core CPU hotplug code after hotplug operations
2063 */
2064void arch_smt_update(void)
2065{
2066 /* Handle the speculative execution misfeatures */
2067 cpu_bugs_smt_update();
6a1cb5f5
TG
2068 /* Check whether IPI broadcasting can be enabled */
2069 apic_smt_update();
9c92374b 2070}