blob: 7c65b4666c243300309130b6be9ef5da1f9f0b7b [file] [log] [blame]
Yinghai Luf0fc4af2008-09-04 20:09:00 -07001#include <linux/bootmem.h>
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +05302#include <linux/linkage.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -07003#include <linux/bitops.h>
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +05304#include <linux/kernel.h>
Yinghai Luf0fc4af2008-09-04 20:09:00 -07005#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/percpu.h>
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +05307#include <linux/string.h>
8#include <linux/delay.h>
9#include <linux/sched.h>
10#include <linux/init.h>
11#include <linux/kgdb.h>
12#include <linux/smp.h>
13#include <linux/io.h>
14
15#include <asm/stackprotector.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020016#include <asm/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/mmu_context.h>
H. Peter Anvin49d859d2011-07-31 14:02:19 -070018#include <asm/archrandom.h>
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +053019#include <asm/hypervisor.h>
20#include <asm/processor.h>
Paul Gortmakerf649e932012-01-20 16:24:09 -050021#include <asm/debugreg.h>
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +053022#include <asm/sections.h>
Alan Cox8bdbd962009-07-04 00:35:45 +010023#include <linux/topology.h>
24#include <linux/cpumask.h>
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +053025#include <asm/pgtable.h>
Arun Sharma600634972011-07-26 16:09:06 -070026#include <linux/atomic.h>
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +053027#include <asm/proto.h>
28#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/apic.h>
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +053030#include <asm/desc.h>
31#include <asm/i387.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080032#include <asm/fpu-internal.h>
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +053033#include <asm/mtrr.h>
Alan Cox8bdbd962009-07-04 00:35:45 +010034#include <linux/numa.h>
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +053035#include <asm/asm.h>
36#include <asm/cpu.h>
37#include <asm/mce.h>
38#include <asm/msr.h>
39#include <asm/pat.h>
Fenghua Yud288e1c2012-12-20 23:44:23 -080040#include <asm/microcode.h>
41#include <asm/microcode_intel.h>
Ingo Molnare641f5f2009-02-17 14:02:01 +010042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#ifdef CONFIG_X86_LOCAL_APIC
Tejun Heobdbcdd42009-01-21 17:26:06 +090044#include <asm/uv/uv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#endif
46
47#include "cpu.h"
48
Mike Travisc2d1cec2009-01-04 05:18:03 -080049/* all of these masks are initialized in setup_cpu_local_masks() */
Mike Travisc2d1cec2009-01-04 05:18:03 -080050cpumask_var_t cpu_initialized_mask;
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +053051cpumask_var_t cpu_callout_mask;
52cpumask_var_t cpu_callin_mask;
Mike Travisc2d1cec2009-01-04 05:18:03 -080053
54/* representing cpus for which sibling maps can be computed */
55cpumask_var_t cpu_sibling_setup_mask;
56
Brian Gerst2f2f52b2009-01-27 12:56:47 +090057/* correctly size the local cpu masks */
Ingo Molnar4369f1f2009-01-27 12:03:24 +010058void __init setup_cpu_local_masks(void)
Brian Gerst2f2f52b2009-01-27 12:56:47 +090059{
60 alloc_bootmem_cpumask_var(&cpu_initialized_mask);
61 alloc_bootmem_cpumask_var(&cpu_callin_mask);
62 alloc_bootmem_cpumask_var(&cpu_callout_mask);
63 alloc_bootmem_cpumask_var(&cpu_sibling_setup_mask);
64}
65
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040066static void default_init(struct cpuinfo_x86 *c)
Ondrej Zarye8055132009-08-11 20:00:11 +020067{
68#ifdef CONFIG_X86_64
Borislav Petkov27c13ec2009-11-21 14:01:45 +010069 cpu_detect_cache_sizes(c);
Ondrej Zarye8055132009-08-11 20:00:11 +020070#else
71 /* Not much we can do here... */
72 /* Check if at least it has cpuid */
73 if (c->cpuid_level == -1) {
74 /* No cpuid. It must be an ancient CPU */
75 if (c->x86 == 4)
76 strcpy(c->x86_model_id, "486");
77 else if (c->x86 == 3)
78 strcpy(c->x86_model_id, "386");
79 }
80#endif
81}
82
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040083static const struct cpu_dev default_cpu = {
Ondrej Zarye8055132009-08-11 20:00:11 +020084 .c_init = default_init,
85 .c_vendor = "Unknown",
86 .c_x86_vendor = X86_VENDOR_UNKNOWN,
87};
88
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040089static const struct cpu_dev *this_cpu = &default_cpu;
Yinghai Lu0a488a52008-09-04 21:09:47 +020090
Brian Gerst06deef82009-01-21 17:26:05 +090091DEFINE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page) = { .gdt = {
Yinghai Lu950ad7f2008-09-04 20:09:01 -070092#ifdef CONFIG_X86_64
Brian Gerst06deef82009-01-21 17:26:05 +090093 /*
94 * We need valid kernel segments for data and code in long mode too
95 * IRET will check the segment types kkeil 2000/10/28
96 * Also sysret mandates a special GDT layout
97 *
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +053098 * TLS descriptors are currently at a different place compared to i386.
Brian Gerst06deef82009-01-21 17:26:05 +090099 * Hopefully nobody expects them at a fixed place (Wine?)
100 */
Akinobu Mita1e5de182009-07-19 00:12:20 +0900101 [GDT_ENTRY_KERNEL32_CS] = GDT_ENTRY_INIT(0xc09b, 0, 0xfffff),
102 [GDT_ENTRY_KERNEL_CS] = GDT_ENTRY_INIT(0xa09b, 0, 0xfffff),
103 [GDT_ENTRY_KERNEL_DS] = GDT_ENTRY_INIT(0xc093, 0, 0xfffff),
104 [GDT_ENTRY_DEFAULT_USER32_CS] = GDT_ENTRY_INIT(0xc0fb, 0, 0xfffff),
105 [GDT_ENTRY_DEFAULT_USER_DS] = GDT_ENTRY_INIT(0xc0f3, 0, 0xfffff),
106 [GDT_ENTRY_DEFAULT_USER_CS] = GDT_ENTRY_INIT(0xa0fb, 0, 0xfffff),
Yinghai Lu950ad7f2008-09-04 20:09:01 -0700107#else
Akinobu Mita1e5de182009-07-19 00:12:20 +0900108 [GDT_ENTRY_KERNEL_CS] = GDT_ENTRY_INIT(0xc09a, 0, 0xfffff),
109 [GDT_ENTRY_KERNEL_DS] = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
110 [GDT_ENTRY_DEFAULT_USER_CS] = GDT_ENTRY_INIT(0xc0fa, 0, 0xfffff),
111 [GDT_ENTRY_DEFAULT_USER_DS] = GDT_ENTRY_INIT(0xc0f2, 0, 0xfffff),
Rusty Russellbf5046722007-05-02 19:27:10 +0200112 /*
113 * Segments used for calling PnP BIOS have byte granularity.
114 * They code segments and data segments have fixed 64k limits,
115 * the transfer segment sizes are set at run time.
116 */
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100117 /* 32-bit code */
Akinobu Mita1e5de182009-07-19 00:12:20 +0900118 [GDT_ENTRY_PNPBIOS_CS32] = GDT_ENTRY_INIT(0x409a, 0, 0xffff),
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100119 /* 16-bit code */
Akinobu Mita1e5de182009-07-19 00:12:20 +0900120 [GDT_ENTRY_PNPBIOS_CS16] = GDT_ENTRY_INIT(0x009a, 0, 0xffff),
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100121 /* 16-bit data */
Akinobu Mita1e5de182009-07-19 00:12:20 +0900122 [GDT_ENTRY_PNPBIOS_DS] = GDT_ENTRY_INIT(0x0092, 0, 0xffff),
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100123 /* 16-bit data */
Akinobu Mita1e5de182009-07-19 00:12:20 +0900124 [GDT_ENTRY_PNPBIOS_TS1] = GDT_ENTRY_INIT(0x0092, 0, 0),
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100125 /* 16-bit data */
Akinobu Mita1e5de182009-07-19 00:12:20 +0900126 [GDT_ENTRY_PNPBIOS_TS2] = GDT_ENTRY_INIT(0x0092, 0, 0),
Rusty Russellbf5046722007-05-02 19:27:10 +0200127 /*
128 * The APM segments have byte granularity and their bases
129 * are set at run time. All have 64k limits.
130 */
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100131 /* 32-bit code */
Akinobu Mita1e5de182009-07-19 00:12:20 +0900132 [GDT_ENTRY_APMBIOS_BASE] = GDT_ENTRY_INIT(0x409a, 0, 0xffff),
Rusty Russellbf5046722007-05-02 19:27:10 +0200133 /* 16-bit code */
Akinobu Mita1e5de182009-07-19 00:12:20 +0900134 [GDT_ENTRY_APMBIOS_BASE+1] = GDT_ENTRY_INIT(0x009a, 0, 0xffff),
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +0100135 /* data */
Ingo Molnar72c4d852009-08-03 08:47:07 +0200136 [GDT_ENTRY_APMBIOS_BASE+2] = GDT_ENTRY_INIT(0x4092, 0, 0xffff),
Rusty Russellbf5046722007-05-02 19:27:10 +0200137
Akinobu Mita1e5de182009-07-19 00:12:20 +0900138 [GDT_ENTRY_ESPFIX_SS] = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
139 [GDT_ENTRY_PERCPU] = GDT_ENTRY_INIT(0xc092, 0, 0xfffff),
Tejun Heo60a53172009-02-09 22:17:40 +0900140 GDT_STACK_CANARY_INIT
Yinghai Lu950ad7f2008-09-04 20:09:01 -0700141#endif
Brian Gerst06deef82009-01-21 17:26:05 +0900142} };
Jeremy Fitzhardinge7a61d352007-05-02 19:27:15 +0200143EXPORT_PER_CPU_SYMBOL_GPL(gdt_page);
Rusty Russellae1ee112007-05-02 19:27:10 +0200144
Suresh Siddha0c752a92009-05-22 12:17:45 -0700145static int __init x86_xsave_setup(char *s)
146{
147 setup_clear_cpu_cap(X86_FEATURE_XSAVE);
Suresh Siddha6bad06b2010-07-19 16:05:52 -0700148 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
Suresh Siddhac6fd8932012-07-31 10:29:14 -0700149 setup_clear_cpu_cap(X86_FEATURE_AVX);
150 setup_clear_cpu_cap(X86_FEATURE_AVX2);
Suresh Siddha0c752a92009-05-22 12:17:45 -0700151 return 1;
152}
153__setup("noxsave", x86_xsave_setup);
154
Suresh Siddha6bad06b2010-07-19 16:05:52 -0700155static int __init x86_xsaveopt_setup(char *s)
156{
157 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
158 return 1;
159}
160__setup("noxsaveopt", x86_xsaveopt_setup);
161
Yinghai Luba51dce2008-09-04 20:09:02 -0700162#ifdef CONFIG_X86_32
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400163static int cachesize_override = -1;
164static int disable_x86_serial_nr = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static int __init cachesize_setup(char *str)
167{
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100168 get_option(&str, &cachesize_override);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return 1;
170}
171__setup("cachesize=", cachesize_setup);
172
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100173static int __init x86_fxsr_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Andi Kleen13530252008-01-30 13:33:20 +0100175 setup_clear_cpu_cap(X86_FEATURE_FXSR);
176 setup_clear_cpu_cap(X86_FEATURE_XMM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return 1;
178}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179__setup("nofxsr", x86_fxsr_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100181static int __init x86_sep_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Andi Kleen13530252008-01-30 13:33:20 +0100183 setup_clear_cpu_cap(X86_FEATURE_SEP);
Chuck Ebbert4f886512006-03-23 02:59:34 -0800184 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
Chuck Ebbert4f886512006-03-23 02:59:34 -0800186__setup("nosep", x86_sep_setup);
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/* Standard macro to see if a specific flag is changeable */
189static inline int flag_is_changeable_p(u32 flag)
190{
191 u32 f1, f2;
192
Krzysztof Helt94f6bac2008-09-30 23:17:51 +0200193 /*
194 * Cyrix and IDT cpus allow disabling of CPUID
195 * so the code below may return different results
196 * when it is executed before and after enabling
197 * the CPUID. Add "volatile" to not allow gcc to
198 * optimize the subsequent calls to this function.
199 */
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100200 asm volatile ("pushfl \n\t"
201 "pushfl \n\t"
202 "popl %0 \n\t"
203 "movl %0, %1 \n\t"
204 "xorl %2, %0 \n\t"
205 "pushl %0 \n\t"
206 "popfl \n\t"
207 "pushfl \n\t"
208 "popl %0 \n\t"
209 "popfl \n\t"
210
Krzysztof Helt94f6bac2008-09-30 23:17:51 +0200211 : "=&r" (f1), "=&r" (f2)
212 : "ir" (flag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 return ((f1^f2) & flag) != 0;
215}
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/* Probe for the CPUID instruction */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400218int have_cpuid_p(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 return flag_is_changeable_p(X86_EFLAGS_ID);
221}
222
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400223static void squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
Yinghai Lu0a488a52008-09-04 21:09:47 +0200224{
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100225 unsigned long lo, hi;
Yinghai Lu0a488a52008-09-04 21:09:47 +0200226
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100227 if (!cpu_has(c, X86_FEATURE_PN) || !disable_x86_serial_nr)
228 return;
229
230 /* Disable processor serial number: */
231
232 rdmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
233 lo |= 0x200000;
234 wrmsr(MSR_IA32_BBL_CR_CTL, lo, hi);
235
236 printk(KERN_NOTICE "CPU serial number disabled.\n");
237 clear_cpu_cap(c, X86_FEATURE_PN);
238
239 /* Disabling the serial number may affect the cpuid level */
240 c->cpuid_level = cpuid_eax(0);
Yinghai Lu0a488a52008-09-04 21:09:47 +0200241}
242
243static int __init x86_serial_nr_setup(char *s)
244{
245 disable_x86_serial_nr = 0;
246 return 1;
247}
248__setup("serialnumber", x86_serial_nr_setup);
Yinghai Luba51dce2008-09-04 20:09:02 -0700249#else
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700250static inline int flag_is_changeable_p(u32 flag)
251{
252 return 1;
253}
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700254static inline void squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
255{
256}
Yinghai Luba51dce2008-09-04 20:09:02 -0700257#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Fenghua Yude5397a2011-05-11 16:51:05 -0700259static __init int setup_disable_smep(char *arg)
260{
H. Peter Anvinb2cc2a02012-09-26 18:02:28 -0700261 setup_clear_cpu_cap(X86_FEATURE_SMEP);
Fenghua Yude5397a2011-05-11 16:51:05 -0700262 return 1;
263}
264__setup("nosmep", setup_disable_smep);
265
H. Peter Anvinb2cc2a02012-09-26 18:02:28 -0700266static __always_inline void setup_smep(struct cpuinfo_x86 *c)
Fenghua Yude5397a2011-05-11 16:51:05 -0700267{
H. Peter Anvinb2cc2a02012-09-26 18:02:28 -0700268 if (cpu_has(c, X86_FEATURE_SMEP))
269 set_in_cr4(X86_CR4_SMEP);
Fenghua Yude5397a2011-05-11 16:51:05 -0700270}
271
H. Peter Anvin52b61792012-09-21 12:43:13 -0700272static __init int setup_disable_smap(char *arg)
273{
H. Peter Anvinb2cc2a02012-09-26 18:02:28 -0700274 setup_clear_cpu_cap(X86_FEATURE_SMAP);
H. Peter Anvin52b61792012-09-21 12:43:13 -0700275 return 1;
276}
277__setup("nosmap", setup_disable_smap);
278
H. Peter Anvinb2cc2a02012-09-26 18:02:28 -0700279static __always_inline void setup_smap(struct cpuinfo_x86 *c)
H. Peter Anvin52b61792012-09-21 12:43:13 -0700280{
H. Peter Anvinb2cc2a02012-09-26 18:02:28 -0700281 unsigned long eflags;
282
283 /* This should have been cleared long ago */
284 raw_local_save_flags(eflags);
285 BUG_ON(eflags & X86_EFLAGS_AC);
286
H. Peter Anvin03bbd592014-02-13 07:34:30 -0800287 if (cpu_has(c, X86_FEATURE_SMAP)) {
288#ifdef CONFIG_X86_SMAP
H. Peter Anvinb2cc2a02012-09-26 18:02:28 -0700289 set_in_cr4(X86_CR4_SMAP);
H. Peter Anvin03bbd592014-02-13 07:34:30 -0800290#else
291 clear_in_cr4(X86_CR4_SMAP);
292#endif
293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
296/*
H. Peter Anvinb38b0662009-01-23 17:20:50 -0800297 * Some CPU features depend on higher CPUID levels, which may not always
298 * be available due to CPUID level capping or broken virtualization
299 * software. Add those features to this table to auto-disable them.
300 */
301struct cpuid_dependent_feature {
302 u32 feature;
303 u32 level;
304};
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100305
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400306static const struct cpuid_dependent_feature
H. Peter Anvinb38b0662009-01-23 17:20:50 -0800307cpuid_dependent_features[] = {
308 { X86_FEATURE_MWAIT, 0x00000005 },
309 { X86_FEATURE_DCA, 0x00000009 },
310 { X86_FEATURE_XSAVE, 0x0000000d },
311 { 0, 0 }
312};
313
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400314static void filter_cpuid_features(struct cpuinfo_x86 *c, bool warn)
H. Peter Anvinb38b0662009-01-23 17:20:50 -0800315{
316 const struct cpuid_dependent_feature *df;
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530317
H. Peter Anvinb38b0662009-01-23 17:20:50 -0800318 for (df = cpuid_dependent_features; df->feature; df++) {
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100319
320 if (!cpu_has(c, df->feature))
321 continue;
H. Peter Anvinb38b0662009-01-23 17:20:50 -0800322 /*
323 * Note: cpuid_level is set to -1 if unavailable, but
324 * extended_extended_level is set to 0 if unavailable
325 * and the legitimate extended levels are all negative
326 * when signed; hence the weird messing around with
327 * signs here...
328 */
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100329 if (!((s32)df->level < 0 ?
Yinghai Luf6db44d2009-02-14 23:59:18 -0800330 (u32)df->level > (u32)c->extended_cpuid_level :
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100331 (s32)df->level > (s32)c->cpuid_level))
332 continue;
333
334 clear_cpu_cap(c, df->feature);
335 if (!warn)
336 continue;
337
338 printk(KERN_WARNING
339 "CPU: CPU feature %s disabled, no CPUID level 0x%x\n",
340 x86_cap_flags[df->feature], df->level);
H. Peter Anvinb38b0662009-01-23 17:20:50 -0800341 }
Yinghai Luf6db44d2009-02-14 23:59:18 -0800342}
H. Peter Anvinb38b0662009-01-23 17:20:50 -0800343
344/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * Naming convention should be: <Name> [(<Codename>)]
346 * This table only is used unless init_<vendor>() below doesn't set it;
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100347 * in particular, if CPUID levels 0x80000002..4 are supported, this
348 * isn't used
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 */
350
351/* Look up CPU names by table lookup. */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400352static const char *table_lookup_model(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Jan Beulich09dc68d2013-10-21 09:35:20 +0100354#ifdef CONFIG_X86_32
355 const struct legacy_cpu_model_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 if (c->x86_model >= 16)
358 return NULL; /* Range check */
359
360 if (!this_cpu)
361 return NULL;
362
Jan Beulich09dc68d2013-10-21 09:35:20 +0100363 info = this_cpu->legacy_models;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Jan Beulich09dc68d2013-10-21 09:35:20 +0100365 while (info->family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (info->family == c->x86)
367 return info->model_names[c->x86_model];
368 info++;
369 }
Jan Beulich09dc68d2013-10-21 09:35:20 +0100370#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return NULL; /* Not found */
372}
373
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400374__u32 cpu_caps_cleared[NCAPINTS];
375__u32 cpu_caps_set[NCAPINTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Jeremy Fitzhardinge11e3a842009-01-30 17:47:54 +0900377void load_percpu_segment(int cpu)
Yinghai Lu9d31d352008-09-04 21:09:44 +0200378{
Yinghai Lufab334c2008-09-04 20:09:05 -0700379#ifdef CONFIG_X86_32
Brian Gerst2697fbd2009-01-27 12:56:48 +0900380 loadsegment(fs, __KERNEL_PERCPU);
381#else
382 loadsegment(gs, 0);
383 wrmsrl(MSR_GS_BASE, (unsigned long)per_cpu(irq_stack_union.gs_base, cpu));
Yinghai Lufab334c2008-09-04 20:09:05 -0700384#endif
Tejun Heo60a53172009-02-09 22:17:40 +0900385 load_stack_canary_segment();
Yinghai Lu9d31d352008-09-04 21:09:44 +0200386}
387
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100388/*
389 * Current gdt points %fs at the "master" per-cpu area: after this,
390 * it's on the real one.
391 */
Brian Gerst552be872009-01-30 17:47:53 +0900392void switch_to_new_gdt(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 struct desc_ptr gdt_descr;
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 gdt_descr.address = (long)get_cpu_gdt_table(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 gdt_descr.size = GDT_SIZE - 1;
398 load_gdt(&gdt_descr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 /* Reload the per-cpu base */
Jeremy Fitzhardinge11e3a842009-01-30 17:47:54 +0900400
401 load_percpu_segment(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400404static const struct cpu_dev *cpu_devs[X86_VENDOR_NUM] = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400406static void get_model_name(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 unsigned int *v;
409 char *p, *q;
410
Yinghai Lu3da99c92008-09-04 21:09:44 +0200411 if (c->extended_cpuid_level < 0x80000004)
Yinghai Lu1b05d602008-09-06 01:52:27 -0700412 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100414 v = (unsigned int *)c->x86_model_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]);
416 cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]);
417 cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]);
418 c->x86_model_id[48] = 0;
419
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100420 /*
421 * Intel chips right-justify this string for some dumb reason;
422 * undo that brain damage:
423 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 p = q = &c->x86_model_id[0];
425 while (*p == ' ')
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530426 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (p != q) {
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530428 while (*p)
429 *q++ = *p++;
430 while (q <= &c->x86_model_id[48])
431 *q++ = '\0'; /* Zero-pad the rest */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400435void cpu_detect_cache_sizes(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Yinghai Lu9d31d352008-09-04 21:09:44 +0200437 unsigned int n, dummy, ebx, ecx, edx, l2size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Yinghai Lu3da99c92008-09-04 21:09:44 +0200439 n = c->extended_cpuid_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 if (n >= 0x80000005) {
Yinghai Lu9d31d352008-09-04 21:09:44 +0200442 cpuid(0x80000005, &dummy, &ebx, &ecx, &edx);
Yinghai Lu9d31d352008-09-04 21:09:44 +0200443 c->x86_cache_size = (ecx>>24) + (edx>>24);
Yinghai Lu140fc722008-09-04 20:09:07 -0700444#ifdef CONFIG_X86_64
445 /* On K8 L1 TLB is inclusive, so don't count it */
446 c->x86_tlbsize = 0;
447#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449
450 if (n < 0x80000006) /* Some chips just has a large L1. */
451 return;
452
Yinghai Lu0a488a52008-09-04 21:09:47 +0200453 cpuid(0x80000006, &dummy, &ebx, &ecx, &edx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 l2size = ecx >> 16;
455
Yinghai Lu140fc722008-09-04 20:09:07 -0700456#ifdef CONFIG_X86_64
457 c->x86_tlbsize += ((ebx >> 16) & 0xfff) + (ebx & 0xfff);
458#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 /* do processor-specific cache resizing */
Jan Beulich09dc68d2013-10-21 09:35:20 +0100460 if (this_cpu->legacy_cache_size)
461 l2size = this_cpu->legacy_cache_size(c, l2size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /* Allow user to override all this if necessary. */
464 if (cachesize_override != -1)
465 l2size = cachesize_override;
466
467 if (l2size == 0)
468 return; /* Again, no L2 cache is possible */
Yinghai Lu140fc722008-09-04 20:09:07 -0700469#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 c->x86_cache_size = l2size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Alex Shie0ba94f2012-06-28 09:02:16 +0800474u16 __read_mostly tlb_lli_4k[NR_INFO];
475u16 __read_mostly tlb_lli_2m[NR_INFO];
476u16 __read_mostly tlb_lli_4m[NR_INFO];
477u16 __read_mostly tlb_lld_4k[NR_INFO];
478u16 __read_mostly tlb_lld_2m[NR_INFO];
479u16 __read_mostly tlb_lld_4m[NR_INFO];
Kirill A. Shutemovdd360392013-12-23 14:16:58 +0200480u16 __read_mostly tlb_lld_1g[NR_INFO];
Alex Shie0ba94f2012-06-28 09:02:16 +0800481
Alex Shic4211f42012-06-28 09:02:19 +0800482/*
483 * tlb_flushall_shift shows the balance point in replacing cr3 write
484 * with multiple 'invlpg'. It will do this replacement when
485 * flush_tlb_lines <= active_lines/2^tlb_flushall_shift.
486 * If tlb_flushall_shift is -1, means the replacement will be disabled.
487 */
488s8 __read_mostly tlb_flushall_shift = -1;
489
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400490void cpu_detect_tlb(struct cpuinfo_x86 *c)
Alex Shie0ba94f2012-06-28 09:02:16 +0800491{
492 if (this_cpu->c_detect_tlb)
493 this_cpu->c_detect_tlb(c);
494
Kirill A. Shutemovdd360392013-12-23 14:16:58 +0200495 printk(KERN_INFO "Last level iTLB entries: 4KB %d, 2MB %d, 4MB %d\n"
496 "Last level dTLB entries: 4KB %d, 2MB %d, 4MB %d, 1GB %d\n"
Borislav Petkova9ad7732012-08-06 19:00:36 +0200497 "tlb_flushall_shift: %d\n",
Alex Shie0ba94f2012-06-28 09:02:16 +0800498 tlb_lli_4k[ENTRIES], tlb_lli_2m[ENTRIES],
499 tlb_lli_4m[ENTRIES], tlb_lld_4k[ENTRIES],
Alex Shic4211f42012-06-28 09:02:19 +0800500 tlb_lld_2m[ENTRIES], tlb_lld_4m[ENTRIES],
Kirill A. Shutemovdd360392013-12-23 14:16:58 +0200501 tlb_lld_1g[ENTRIES], tlb_flushall_shift);
Alex Shie0ba94f2012-06-28 09:02:16 +0800502}
503
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400504void detect_ht(struct cpuinfo_x86 *c)
Yinghai Lu9d31d352008-09-04 21:09:44 +0200505{
Yinghai Lu97e4db72008-09-04 20:08:59 -0700506#ifdef CONFIG_X86_HT
Yinghai Lu0a488a52008-09-04 21:09:47 +0200507 u32 eax, ebx, ecx, edx;
508 int index_msb, core_bits;
Mike Travis2eaad1f2009-12-10 17:19:36 -0800509 static bool printed;
Yinghai Lu0a488a52008-09-04 21:09:47 +0200510
511 if (!cpu_has(c, X86_FEATURE_HT))
512 return;
513
514 if (cpu_has(c, X86_FEATURE_CMP_LEGACY))
515 goto out;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200516
Yinghai Lu1cd78772008-09-04 20:09:08 -0700517 if (cpu_has(c, X86_FEATURE_XTOPOLOGY))
518 return;
519
Yinghai Lu9d31d352008-09-04 21:09:44 +0200520 cpuid(1, &eax, &ebx, &ecx, &edx);
521
Yinghai Lu9d31d352008-09-04 21:09:44 +0200522 smp_num_siblings = (ebx & 0xff0000) >> 16;
523
524 if (smp_num_siblings == 1) {
Mike Travis2eaad1f2009-12-10 17:19:36 -0800525 printk_once(KERN_INFO "CPU0: Hyper-Threading is disabled\n");
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100526 goto out;
Yinghai Lu0a488a52008-09-04 21:09:47 +0200527 }
Yinghai Lu9d31d352008-09-04 21:09:44 +0200528
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100529 if (smp_num_siblings <= 1)
530 goto out;
531
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100532 index_msb = get_count_order(smp_num_siblings);
533 c->phys_proc_id = apic->phys_pkg_id(c->initial_apicid, index_msb);
534
535 smp_num_siblings = smp_num_siblings / c->x86_max_cores;
536
537 index_msb = get_count_order(smp_num_siblings);
538
539 core_bits = get_count_order(c->x86_max_cores);
540
541 c->cpu_core_id = apic->phys_pkg_id(c->initial_apicid, index_msb) &
542 ((1 << core_bits) - 1);
543
Yinghai Lu0a488a52008-09-04 21:09:47 +0200544out:
Mike Travis2eaad1f2009-12-10 17:19:36 -0800545 if (!printed && (c->x86_max_cores * smp_num_siblings) > 1) {
Yinghai Lu0a488a52008-09-04 21:09:47 +0200546 printk(KERN_INFO "CPU: Physical Processor ID: %d\n",
547 c->phys_proc_id);
548 printk(KERN_INFO "CPU: Processor Core ID: %d\n",
549 c->cpu_core_id);
Mike Travis2eaad1f2009-12-10 17:19:36 -0800550 printed = 1;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200551 }
Yinghai Lu9d31d352008-09-04 21:09:44 +0200552#endif
Yinghai Lu97e4db72008-09-04 20:08:59 -0700553}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400555static void get_cpu_vendor(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 char *v = c->x86_vendor_id;
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100558 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 for (i = 0; i < X86_VENDOR_NUM; i++) {
Yinghai Lu10a434f2008-09-04 21:09:45 +0200561 if (!cpu_devs[i])
562 break;
563
564 if (!strcmp(v, cpu_devs[i]->c_ident[0]) ||
565 (cpu_devs[i]->c_ident[1] &&
566 !strcmp(v, cpu_devs[i]->c_ident[1]))) {
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100567
Yinghai Lu10a434f2008-09-04 21:09:45 +0200568 this_cpu = cpu_devs[i];
569 c->x86_vendor = this_cpu->c_x86_vendor;
570 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
572 }
Yinghai Lu10a434f2008-09-04 21:09:45 +0200573
Minchan Kima9c56952009-06-16 15:33:44 -0700574 printk_once(KERN_ERR
575 "CPU: vendor_id '%s' unknown, using generic init.\n" \
576 "CPU: Your system may be unstable.\n", v);
Yinghai Lu10a434f2008-09-04 21:09:45 +0200577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 c->x86_vendor = X86_VENDOR_UNKNOWN;
579 this_cpu = &default_cpu;
580}
581
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400582void cpu_detect(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 /* Get vendor name */
Harvey Harrison4a148512008-02-01 17:49:43 +0100585 cpuid(0x00000000, (unsigned int *)&c->cpuid_level,
586 (unsigned int *)&c->x86_vendor_id[0],
587 (unsigned int *)&c->x86_vendor_id[8],
588 (unsigned int *)&c->x86_vendor_id[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 c->x86 = 4;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200591 /* Intel-defined flags: level 0x00000001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (c->cpuid_level >= 0x00000001) {
593 u32 junk, tfms, cap0, misc;
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
Yinghai Lu9d31d352008-09-04 21:09:44 +0200596 c->x86 = (tfms >> 8) & 0xf;
597 c->x86_model = (tfms >> 4) & 0xf;
598 c->x86_mask = tfms & 0xf;
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100599
Suresh Siddhaf5f786d2005-11-05 17:25:53 +0100600 if (c->x86 == 0xf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 c->x86 += (tfms >> 20) & 0xff;
Suresh Siddhaf5f786d2005-11-05 17:25:53 +0100602 if (c->x86 >= 0x6)
Yinghai Lu9d31d352008-09-04 21:09:44 +0200603 c->x86_model += ((tfms >> 16) & 0xf) << 4;
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100604
Huang, Yingd4387bd2008-01-31 22:05:45 +0100605 if (cap0 & (1<<19)) {
Huang, Yingd4387bd2008-01-31 22:05:45 +0100606 c->x86_clflush_size = ((misc >> 8) & 0xff) * 8;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200607 c->x86_cache_alignment = c->x86_clflush_size;
Huang, Yingd4387bd2008-01-31 22:05:45 +0100608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
Yinghai Lu3da99c92008-09-04 21:09:44 +0200611
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400612void get_cpu_cap(struct cpuinfo_x86 *c)
Yinghai Lu093af8d2008-01-30 13:33:32 +0100613{
614 u32 tfms, xlvl;
Yinghai Lu3da99c92008-09-04 21:09:44 +0200615 u32 ebx;
Yinghai Lu093af8d2008-01-30 13:33:32 +0100616
Yinghai Lu3da99c92008-09-04 21:09:44 +0200617 /* Intel-defined flags: level 0x00000001 */
618 if (c->cpuid_level >= 0x00000001) {
619 u32 capability, excap;
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100620
Yinghai Lu3da99c92008-09-04 21:09:44 +0200621 cpuid(0x00000001, &tfms, &ebx, &excap, &capability);
622 c->x86_capability[0] = capability;
623 c->x86_capability[4] = excap;
Yinghai Lu093af8d2008-01-30 13:33:32 +0100624 }
625
H. Peter Anvinbdc802d2010-07-07 17:29:18 -0700626 /* Additional Intel-defined flags: level 0x00000007 */
627 if (c->cpuid_level >= 0x00000007) {
628 u32 eax, ebx, ecx, edx;
629
630 cpuid_count(0x00000007, 0, &eax, &ebx, &ecx, &edx);
631
Fenghua Yu2494b032011-05-17 12:33:26 -0700632 c->x86_capability[9] = ebx;
H. Peter Anvinbdc802d2010-07-07 17:29:18 -0700633 }
634
Yinghai Lu3da99c92008-09-04 21:09:44 +0200635 /* AMD-defined flags: level 0x80000001 */
636 xlvl = cpuid_eax(0x80000000);
637 c->extended_cpuid_level = xlvl;
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100638
Yinghai Lu3da99c92008-09-04 21:09:44 +0200639 if ((xlvl & 0xffff0000) == 0x80000000) {
640 if (xlvl >= 0x80000001) {
641 c->x86_capability[1] = cpuid_edx(0x80000001);
642 c->x86_capability[6] = cpuid_ecx(0x80000001);
643 }
644 }
Yinghai Lu5122c892008-09-04 20:09:09 -0700645
Yinghai Lu5122c892008-09-04 20:09:09 -0700646 if (c->extended_cpuid_level >= 0x80000008) {
647 u32 eax = cpuid_eax(0x80000008);
648
649 c->x86_virt_bits = (eax >> 8) & 0xff;
650 c->x86_phys_bits = eax & 0xff;
651 }
Jan Beulich13c6c532009-03-12 12:37:34 +0000652#ifdef CONFIG_X86_32
653 else if (cpu_has(c, X86_FEATURE_PAE) || cpu_has(c, X86_FEATURE_PSE36))
654 c->x86_phys_bits = 36;
Yinghai Lu5122c892008-09-04 20:09:09 -0700655#endif
Yinghai Lue3224232008-09-06 01:52:28 -0700656
657 if (c->extended_cpuid_level >= 0x80000007)
658 c->x86_power = cpuid_edx(0x80000007);
659
Jacob Pan1dedefd2010-05-19 12:01:23 -0700660 init_scattered_cpuid_features(c);
Yinghai Lu093af8d2008-01-30 13:33:32 +0100661}
Yinghai Luaef93c82008-09-14 02:33:15 -0700662
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400663static void identify_cpu_without_cpuid(struct cpuinfo_x86 *c)
Yinghai Luaef93c82008-09-14 02:33:15 -0700664{
665#ifdef CONFIG_X86_32
666 int i;
667
668 /*
669 * First of all, decide if this is a 486 or higher
670 * It's a 486 if we can modify the AC flag
671 */
672 if (flag_is_changeable_p(X86_EFLAGS_AC))
673 c->x86 = 4;
674 else
675 c->x86 = 3;
676
677 for (i = 0; i < X86_VENDOR_NUM; i++)
678 if (cpu_devs[i] && cpu_devs[i]->c_identify) {
679 c->x86_vendor_id[0] = 0;
680 cpu_devs[i]->c_identify(c);
681 if (c->x86_vendor_id[0]) {
682 get_cpu_vendor(c);
683 break;
684 }
685 }
686#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100689/*
690 * Do minimum CPU detection early.
691 * Fields really needed: vendor, cpuid_level, family, model, mask,
692 * cache alignment.
693 * The others are not touched to avoid unwanted side effects.
694 *
695 * WARNING: this function is only called on the BP. Don't add code here
696 * that is supposed to run on all CPUs.
697 */
Yinghai Lu3da99c92008-09-04 21:09:44 +0200698static void __init early_identify_cpu(struct cpuinfo_x86 *c)
Rusty Russelld7cd5612006-12-07 02:14:08 +0100699{
Yinghai Lu6627d242008-09-04 20:09:10 -0700700#ifdef CONFIG_X86_64
701 c->x86_clflush_size = 64;
Jan Beulich13c6c532009-03-12 12:37:34 +0000702 c->x86_phys_bits = 36;
703 c->x86_virt_bits = 48;
Yinghai Lu6627d242008-09-04 20:09:10 -0700704#else
Huang, Yingd4387bd2008-01-31 22:05:45 +0100705 c->x86_clflush_size = 32;
Jan Beulich13c6c532009-03-12 12:37:34 +0000706 c->x86_phys_bits = 32;
707 c->x86_virt_bits = 32;
Yinghai Lu6627d242008-09-04 20:09:10 -0700708#endif
Yinghai Lu0a488a52008-09-04 21:09:47 +0200709 c->x86_cache_alignment = c->x86_clflush_size;
Rusty Russelld7cd5612006-12-07 02:14:08 +0100710
Yinghai Lu3da99c92008-09-04 21:09:44 +0200711 memset(&c->x86_capability, 0, sizeof c->x86_capability);
Yinghai Lu0a488a52008-09-04 21:09:47 +0200712 c->extended_cpuid_level = 0;
713
Yinghai Luaef93c82008-09-14 02:33:15 -0700714 if (!have_cpuid_p())
715 identify_cpu_without_cpuid(c);
716
717 /* cyrix could have cpuid enabled via c_identify()*/
Rusty Russelld7cd5612006-12-07 02:14:08 +0100718 if (!have_cpuid_p())
719 return;
720
721 cpu_detect(c);
Yinghai Lu3da99c92008-09-04 21:09:44 +0200722 get_cpu_vendor(c);
Yinghai Lu3da99c92008-09-04 21:09:44 +0200723 get_cpu_cap(c);
H. Peter Anvin60e019e2013-04-29 16:04:20 +0200724 fpu_detect(c);
Krzysztof Helt12cf1052008-09-04 21:09:43 +0200725
Yinghai Lu10a434f2008-09-04 21:09:45 +0200726 if (this_cpu->c_early_init)
727 this_cpu->c_early_init(c);
Yinghai Lu3da99c92008-09-04 21:09:44 +0200728
Robert Richterf6e9456c2010-07-21 19:03:58 +0200729 c->cpu_index = 0;
H. Peter Anvinb38b0662009-01-23 17:20:50 -0800730 filter_cpuid_features(c, false);
Fenghua Yude5397a2011-05-11 16:51:05 -0700731
Borislav Petkova110b5e2011-08-05 20:01:16 +0200732 if (this_cpu->c_bsp_init)
733 this_cpu->c_bsp_init(c);
Borislav Petkovc3b83592013-06-09 12:07:30 +0200734
735 setup_force_cpu_cap(X86_FEATURE_ALWAYS);
Rusty Russelld7cd5612006-12-07 02:14:08 +0100736}
737
Yinghai Lu9d31d352008-09-04 21:09:44 +0200738void __init early_cpu_init(void)
739{
Jan Beulich02dde8b2009-03-12 12:08:49 +0000740 const struct cpu_dev *const *cdev;
Yinghai Lu10a434f2008-09-04 21:09:45 +0200741 int count = 0;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200742
Jan Beulichac23f252011-03-04 15:52:35 +0000743#ifdef CONFIG_PROCESSOR_SELECT
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530744 printk(KERN_INFO "KERNEL supported cpus:\n");
Ingo Molnar31c997c2009-11-14 10:34:41 +0100745#endif
746
Yinghai Lu10a434f2008-09-04 21:09:45 +0200747 for (cdev = __x86_cpu_dev_start; cdev < __x86_cpu_dev_end; cdev++) {
Jan Beulich02dde8b2009-03-12 12:08:49 +0000748 const struct cpu_dev *cpudev = *cdev;
Yinghai Lu9d31d352008-09-04 21:09:44 +0200749
Yinghai Lu10a434f2008-09-04 21:09:45 +0200750 if (count >= X86_VENDOR_NUM)
751 break;
752 cpu_devs[count] = cpudev;
753 count++;
754
Jan Beulichac23f252011-03-04 15:52:35 +0000755#ifdef CONFIG_PROCESSOR_SELECT
Ingo Molnar31c997c2009-11-14 10:34:41 +0100756 {
757 unsigned int j;
Yinghai Lu10a434f2008-09-04 21:09:45 +0200758
Ingo Molnar31c997c2009-11-14 10:34:41 +0100759 for (j = 0; j < 2; j++) {
760 if (!cpudev->c_ident[j])
761 continue;
762 printk(KERN_INFO " %s %s\n", cpudev->c_vendor,
763 cpudev->c_ident[j]);
764 }
Yinghai Lu9d31d352008-09-04 21:09:44 +0200765 }
Dave Jones03884232009-11-13 15:30:00 -0500766#endif
Ingo Molnar31c997c2009-11-14 10:34:41 +0100767 }
Yinghai Lu9d31d352008-09-04 21:09:44 +0200768 early_identify_cpu(&boot_cpu_data);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800769}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700771/*
Borislav Petkov366d4a42010-10-04 09:31:27 +0200772 * The NOPL instruction is supposed to exist on all CPUs of family >= 6;
773 * unfortunately, that's not true in practice because of early VIA
774 * chips and (more importantly) broken virtualizers that are not easy
775 * to detect. In the latter case it doesn't even *fail* reliably, so
776 * probing for it doesn't even work. Disable it completely on 32-bit
H. Peter Anvinba0593b2008-09-16 09:29:40 -0700777 * unless we can find a reliable way to detect all the broken cases.
Borislav Petkov366d4a42010-10-04 09:31:27 +0200778 * Enable it explicitly on 64-bit for non-constant inputs of cpu_has().
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700779 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400780static void detect_nopl(struct cpuinfo_x86 *c)
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700781{
Borislav Petkov366d4a42010-10-04 09:31:27 +0200782#ifdef CONFIG_X86_32
H. Peter Anvinb6734c32008-08-18 17:39:32 -0700783 clear_cpu_cap(c, X86_FEATURE_NOPL);
Borislav Petkov366d4a42010-10-04 09:31:27 +0200784#else
785 set_cpu_cap(c, X86_FEATURE_NOPL);
786#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400789static void generic_identify(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Yinghai Lu3da99c92008-09-04 21:09:44 +0200791 c->extended_cpuid_level = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Yinghai Luaef93c82008-09-14 02:33:15 -0700793 if (!have_cpuid_p())
794 identify_cpu_without_cpuid(c);
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100795
Yinghai Luaef93c82008-09-14 02:33:15 -0700796 /* cyrix could have cpuid enabled via c_identify()*/
Ingo Molnara9853dd2008-09-14 14:46:58 +0200797 if (!have_cpuid_p())
Yinghai Luaef93c82008-09-14 02:33:15 -0700798 return;
799
Yinghai Lu3da99c92008-09-04 21:09:44 +0200800 cpu_detect(c);
801
802 get_cpu_vendor(c);
803
804 get_cpu_cap(c);
805
806 if (c->cpuid_level >= 0x00000001) {
807 c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xFF;
Yinghai Lub89d3b32008-09-04 20:09:12 -0700808#ifdef CONFIG_X86_32
809# ifdef CONFIG_X86_HT
Ingo Molnarcb8cc442009-01-28 13:24:54 +0100810 c->apicid = apic->phys_pkg_id(c->initial_apicid, 0);
Yinghai Lub89d3b32008-09-04 20:09:12 -0700811# else
Yinghai Lu3da99c92008-09-04 21:09:44 +0200812 c->apicid = c->initial_apicid;
Yinghai Lub89d3b32008-09-04 20:09:12 -0700813# endif
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800814#endif
Yinghai Lub89d3b32008-09-04 20:09:12 -0700815 c->phys_proc_id = c->initial_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
Yinghai Lu3da99c92008-09-04 21:09:44 +0200817
Yinghai Lu1b05d602008-09-06 01:52:27 -0700818 get_model_name(c); /* Default name */
Yinghai Lu3da99c92008-09-04 21:09:44 +0200819
Yinghai Lu3da99c92008-09-04 21:09:44 +0200820 detect_nopl(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823/*
824 * This does the hard work of actually picking apart the CPU stuff...
825 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400826static void identify_cpu(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 int i;
829
830 c->loops_per_jiffy = loops_per_jiffy;
831 c->x86_cache_size = -1;
832 c->x86_vendor = X86_VENDOR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 c->x86_model = c->x86_mask = 0; /* So far unknown... */
834 c->x86_vendor_id[0] = '\0'; /* Unset */
835 c->x86_model_id[0] = '\0'; /* Unset */
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100836 c->x86_max_cores = 1;
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700837 c->x86_coreid_bits = 0;
Yinghai Lu11fdd252008-09-07 17:58:50 -0700838#ifdef CONFIG_X86_64
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700839 c->x86_clflush_size = 64;
Jan Beulich13c6c532009-03-12 12:37:34 +0000840 c->x86_phys_bits = 36;
841 c->x86_virt_bits = 48;
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700842#else
843 c->cpuid_level = -1; /* CPUID not detected */
Andi Kleen770d1322006-12-07 02:14:05 +0100844 c->x86_clflush_size = 32;
Jan Beulich13c6c532009-03-12 12:37:34 +0000845 c->x86_phys_bits = 32;
846 c->x86_virt_bits = 32;
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700847#endif
848 c->x86_cache_alignment = c->x86_clflush_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 memset(&c->x86_capability, 0, sizeof c->x86_capability);
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 generic_identify(c);
852
Andi Kleen38985342008-01-30 13:32:49 +0100853 if (this_cpu->c_identify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 this_cpu->c_identify(c);
855
Yinghai Lu2759c322009-05-15 13:05:16 -0700856 /* Clear/Set all flags overriden by options, after probe */
857 for (i = 0; i < NCAPINTS; i++) {
858 c->x86_capability[i] &= ~cpu_caps_cleared[i];
859 c->x86_capability[i] |= cpu_caps_set[i];
860 }
861
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700862#ifdef CONFIG_X86_64
Ingo Molnarcb8cc442009-01-28 13:24:54 +0100863 c->apicid = apic->phys_pkg_id(c->initial_apicid, 0);
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700864#endif
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /*
867 * Vendor-specific initialization. In this section we
868 * canonicalize the feature flags, meaning if there are
869 * features a certain CPU supports which CPUID doesn't
870 * tell us, CPUID claiming incorrect flags, or other bugs,
871 * we handle them here.
872 *
873 * At the end of this section, c->x86_capability better
874 * indicate the features this CPU genuinely supports!
875 */
876 if (this_cpu->c_init)
877 this_cpu->c_init(c);
878
879 /* Disable the PN if appropriate */
880 squash_the_stupid_serial_number(c);
881
H. Peter Anvinb2cc2a02012-09-26 18:02:28 -0700882 /* Set up SMEP/SMAP */
883 setup_smep(c);
884 setup_smap(c);
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 /*
Ingo Molnar0f3fa482009-03-14 08:46:17 +0100887 * The vendor-specific functions might have changed features.
888 * Now we do "generic changes."
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 */
890
H. Peter Anvinb38b0662009-01-23 17:20:50 -0800891 /* Filter out anything that depends on CPUID levels we don't have */
892 filter_cpuid_features(c, true);
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /* If the model name is still unset, do table lookup. */
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100895 if (!c->x86_model_id[0]) {
Jan Beulich02dde8b2009-03-12 12:08:49 +0000896 const char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 p = table_lookup_model(c);
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100898 if (p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 strcpy(c->x86_model_id, p);
900 else
901 /* Last resort... */
902 sprintf(c->x86_model_id, "%02x/%02x",
Chuck Ebbert54a20f82006-03-23 02:59:36 -0800903 c->x86, c->x86_model);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
905
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700906#ifdef CONFIG_X86_64
907 detect_ht(c);
908#endif
909
Alok Kataria88b094f2008-10-27 10:41:46 -0700910 init_hypervisor(c);
H. Peter Anvin49d859d2011-07-31 14:02:19 -0700911 x86_init_rdrand(c);
Yinghai Lu3e0c3732009-05-09 23:47:42 -0700912
913 /*
914 * Clear/Set all flags overriden by options, need do it
915 * before following smp all cpus cap AND.
916 */
917 for (i = 0; i < NCAPINTS; i++) {
918 c->x86_capability[i] &= ~cpu_caps_cleared[i];
919 c->x86_capability[i] |= cpu_caps_set[i];
920 }
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 /*
923 * On SMP, boot_cpu_data holds the common feature set between
924 * all CPUs; so make sure that we indicate which features are
925 * common between the CPUs. The first time this routine gets
926 * executed, c == &boot_cpu_data.
927 */
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +0100928 if (c != &boot_cpu_data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 /* AND the already accumulated flags with these */
Yinghai Lu9d31d352008-09-04 21:09:44 +0200930 for (i = 0; i < NCAPINTS; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 boot_cpu_data.x86_capability[i] &= c->x86_capability[i];
Borislav Petkov65fc9852013-03-20 15:07:23 +0100932
933 /* OR, i.e. replicate the bug flags */
934 for (i = NCAPINTS; i < NCAPINTS + NBUGINTS; i++)
935 c->x86_capability[i] |= boot_cpu_data.x86_capability[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937
938 /* Init Machine Check Exception if available. */
Borislav Petkov5e099542009-10-16 12:31:32 +0200939 mcheck_cpu_init(c);
Andi Kleen30d432d2008-01-30 13:33:16 +0100940
941 select_idle_routine(c);
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700942
Tejun Heode2d9442011-01-23 14:37:41 +0100943#ifdef CONFIG_NUMA
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700944 numa_add_cpu(smp_processor_id());
945#endif
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200946}
Shaohua Li31ab2692005-11-07 00:58:42 -0800947
Glauber Costae04d6452008-09-22 14:35:08 -0300948#ifdef CONFIG_X86_64
949static void vgetcpu_set_mode(void)
950{
951 if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP))
952 vgetcpu_mode = VGETCPU_RDTSCP;
953 else
954 vgetcpu_mode = VGETCPU_LSL;
955}
Andy Lutomirskicfda7bb2014-05-05 12:19:33 -0700956
957/* May not be __init: called during resume */
958static void syscall32_cpu_init(void)
959{
960 /* Load these always in case some future AMD CPU supports
961 SYSENTER from compat mode too. */
962 wrmsrl_safe(MSR_IA32_SYSENTER_CS, (u64)__KERNEL_CS);
963 wrmsrl_safe(MSR_IA32_SYSENTER_ESP, 0ULL);
964 wrmsrl_safe(MSR_IA32_SYSENTER_EIP, (u64)ia32_sysenter_target);
965
966 wrmsrl(MSR_CSTAR, ia32_cstar_target);
967}
968#endif
969
970#ifdef CONFIG_X86_32
971void enable_sep_cpu(void)
972{
973 int cpu = get_cpu();
974 struct tss_struct *tss = &per_cpu(init_tss, cpu);
975
976 if (!boot_cpu_has(X86_FEATURE_SEP)) {
977 put_cpu();
978 return;
979 }
980
981 tss->x86_tss.ss1 = __KERNEL_CS;
982 tss->x86_tss.sp1 = sizeof(struct tss_struct) + (unsigned long) tss;
983 wrmsr(MSR_IA32_SYSENTER_CS, __KERNEL_CS, 0);
984 wrmsr(MSR_IA32_SYSENTER_ESP, tss->x86_tss.sp1, 0);
985 wrmsr(MSR_IA32_SYSENTER_EIP, (unsigned long) ia32_sysenter_target, 0);
986 put_cpu();
987}
Glauber Costae04d6452008-09-22 14:35:08 -0300988#endif
989
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200990void __init identify_boot_cpu(void)
991{
992 identify_cpu(&boot_cpu_data);
Len Brown02c68a02011-04-01 16:59:53 -0400993 init_amd_e400_c1e_mask();
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700994#ifdef CONFIG_X86_32
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200995 sysenter_setup();
Li Shaohua6fe940d2005-06-25 14:54:53 -0700996 enable_sep_cpu();
Glauber Costae04d6452008-09-22 14:35:08 -0300997#else
998 vgetcpu_set_mode();
Yinghai Lu102bbe3a2008-09-04 20:09:13 -0700999#endif
Borislav Petkov5b5563322012-08-06 19:00:37 +02001000 cpu_detect_tlb(&boot_cpu_data);
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +02001001}
Shaohua Li3b520b22005-07-07 17:56:38 -07001002
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001003void identify_secondary_cpu(struct cpuinfo_x86 *c)
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +02001004{
1005 BUG_ON(c == &boot_cpu_data);
1006 identify_cpu(c);
Yinghai Lu102bbe3a2008-09-04 20:09:13 -07001007#ifdef CONFIG_X86_32
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +02001008 enable_sep_cpu();
Yinghai Lu102bbe3a2008-09-04 20:09:13 -07001009#endif
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +02001010 mtrr_ap_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
Yinghai Lua0854a42008-09-04 21:09:46 +02001013struct msr_range {
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001014 unsigned min;
1015 unsigned max;
Yinghai Lua0854a42008-09-04 21:09:46 +02001016};
1017
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001018static const struct msr_range msr_range_array[] = {
Yinghai Lua0854a42008-09-04 21:09:46 +02001019 { 0x00000000, 0x00000418},
1020 { 0xc0000000, 0xc000040b},
1021 { 0xc0010000, 0xc0010142},
1022 { 0xc0011000, 0xc001103b},
1023};
1024
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001025static void __print_cpu_msr(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001027 unsigned index_min, index_max;
Yinghai Lua0854a42008-09-04 21:09:46 +02001028 unsigned index;
1029 u64 val;
1030 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Yinghai Lua0854a42008-09-04 21:09:46 +02001032 for (i = 0; i < ARRAY_SIZE(msr_range_array); i++) {
1033 index_min = msr_range_array[i].min;
1034 index_max = msr_range_array[i].max;
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001035
Yinghai Lua0854a42008-09-04 21:09:46 +02001036 for (index = index_min; index < index_max; index++) {
Borislav Petkovecd431d2012-06-01 16:52:36 +02001037 if (rdmsrl_safe(index, &val))
Yinghai Lua0854a42008-09-04 21:09:46 +02001038 continue;
1039 printk(KERN_INFO " MSR%08x: %016llx\n", index, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
1042}
Yinghai Lua0854a42008-09-04 21:09:46 +02001043
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001044static int show_msr;
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001045
Yinghai Lua0854a42008-09-04 21:09:46 +02001046static __init int setup_show_msr(char *arg)
1047{
1048 int num;
1049
1050 get_option(&arg, &num);
1051
1052 if (num > 0)
1053 show_msr = num;
1054 return 1;
1055}
1056__setup("show_msr=", setup_show_msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Andi Kleen191679f2008-01-30 13:33:21 +01001058static __init int setup_noclflush(char *arg)
1059{
H. Peter Anvin840d2832014-02-27 08:31:30 -08001060 setup_clear_cpu_cap(X86_FEATURE_CLFLUSH);
H. Peter Anvinda4aaa72014-02-27 08:36:31 -08001061 setup_clear_cpu_cap(X86_FEATURE_CLFLUSHOPT);
Andi Kleen191679f2008-01-30 13:33:21 +01001062 return 1;
1063}
1064__setup("noclflush", setup_noclflush);
1065
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001066void print_cpu_info(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Jan Beulich02dde8b2009-03-12 12:08:49 +00001068 const char *vendor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001070 if (c->x86_vendor < X86_VENDOR_NUM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 vendor = this_cpu->c_vendor;
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001072 } else {
1073 if (c->cpuid_level >= 0)
1074 vendor = c->x86_vendor_id;
1075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Yinghai Lubd32a8cf2008-09-19 18:41:16 -07001077 if (vendor && !strstr(c->x86_model_id, vendor))
Yinghai Lu9d31d352008-09-04 21:09:44 +02001078 printk(KERN_CONT "%s ", vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Yinghai Lu9d31d352008-09-04 21:09:44 +02001080 if (c->x86_model_id[0])
Borislav Petkov924e1012012-09-14 18:37:46 +02001081 printk(KERN_CONT "%s", strim(c->x86_model_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 else
Yinghai Lu9d31d352008-09-04 21:09:44 +02001083 printk(KERN_CONT "%d86", c->x86);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Borislav Petkov924e1012012-09-14 18:37:46 +02001085 printk(KERN_CONT " (fam: %02x, model: %02x", c->x86, c->x86_model);
1086
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +01001087 if (c->x86_mask || c->cpuid_level >= 0)
Borislav Petkov924e1012012-09-14 18:37:46 +02001088 printk(KERN_CONT ", stepping: %02x)\n", c->x86_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 else
Borislav Petkov924e1012012-09-14 18:37:46 +02001090 printk(KERN_CONT ")\n");
Yinghai Lua0854a42008-09-04 21:09:46 +02001091
Yinghai Lu0b8b8072012-03-22 21:31:43 -07001092 print_cpu_msr(c);
Yinghai Lu21c3fcf2012-02-12 09:53:57 -08001093}
1094
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001095void print_cpu_msr(struct cpuinfo_x86 *c)
Yinghai Lu21c3fcf2012-02-12 09:53:57 -08001096{
Yinghai Lua0854a42008-09-04 21:09:46 +02001097 if (c->cpu_index < show_msr)
Yinghai Lu21c3fcf2012-02-12 09:53:57 -08001098 __print_cpu_msr();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
Andi Kleenac72e782008-01-30 13:33:21 +01001101static __init int setup_disablecpuid(char *arg)
1102{
1103 int bit;
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001104
Andi Kleenac72e782008-01-30 13:33:21 +01001105 if (get_option(&arg, &bit) && bit < NCAPINTS*32)
1106 setup_clear_cpu_cap(bit);
1107 else
1108 return 0;
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001109
Andi Kleenac72e782008-01-30 13:33:21 +01001110 return 1;
1111}
1112__setup("clearcpuid=", setup_disablecpuid);
1113
Steven Rostedt198d2082014-02-06 09:41:31 -05001114DEFINE_PER_CPU(unsigned long, kernel_stack) =
1115 (unsigned long)&init_thread_union - KERNEL_STACK_OFFSET + THREAD_SIZE;
1116EXPORT_PER_CPU_SYMBOL(kernel_stack);
1117
Yinghai Lud5494d42008-09-04 20:09:03 -07001118#ifdef CONFIG_X86_64
Cyrill Gorcunov9ff809422009-07-08 22:03:53 +04001119struct desc_ptr idt_descr = { NR_VECTORS * 16 - 1, (unsigned long) idt_table };
Seiji Aguchi629f4f92013-06-20 11:45:44 -04001120struct desc_ptr debug_idt_descr = { NR_VECTORS * 16 - 1,
1121 (unsigned long) debug_idt_table };
Yinghai Lud5494d42008-09-04 20:09:03 -07001122
Brian Gerst947e76c2009-01-19 12:21:28 +09001123DEFINE_PER_CPU_FIRST(union irq_stack_union,
Andi Kleen277d5b42013-08-05 15:02:43 -07001124 irq_stack_union) __aligned(PAGE_SIZE) __visible;
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001125
Tejun Heobdf977b2009-08-03 14:12:19 +09001126/*
1127 * The following four percpu variables are hot. Align current_task to
1128 * cacheline size such that all four fall in the same cacheline.
1129 */
1130DEFINE_PER_CPU(struct task_struct *, current_task) ____cacheline_aligned =
1131 &init_task;
1132EXPORT_PER_CPU_SYMBOL(current_task);
Yinghai Lud5494d42008-09-04 20:09:03 -07001133
Tejun Heobdf977b2009-08-03 14:12:19 +09001134DEFINE_PER_CPU(char *, irq_stack_ptr) =
1135 init_per_cpu_var(irq_stack_union.irq_stack) + IRQ_STACK_SIZE - 64;
1136
Andi Kleen277d5b42013-08-05 15:02:43 -07001137DEFINE_PER_CPU(unsigned int, irq_count) __visible = -1;
Yinghai Lud5494d42008-09-04 20:09:03 -07001138
Peter Zijlstrac2daa3b2013-08-14 14:51:00 +02001139DEFINE_PER_CPU(int, __preempt_count) = INIT_PREEMPT_COUNT;
1140EXPORT_PER_CPU_SYMBOL(__preempt_count);
1141
Linus Torvalds7e168382012-02-19 13:27:00 -08001142DEFINE_PER_CPU(struct task_struct *, fpu_owner_task);
1143
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001144/*
1145 * Special IST stacks which the CPU switches to when it calls
1146 * an IST-marked descriptor entry. Up to 7 stacks (hardware
1147 * limit), all of them are 4K, except the debug stack which
1148 * is 8K.
1149 */
1150static const unsigned int exception_stack_sizes[N_EXCEPTION_STACKS] = {
1151 [0 ... N_EXCEPTION_STACKS - 1] = EXCEPTION_STKSZ,
1152 [DEBUG_STACK - 1] = DEBUG_STKSZ
1153};
1154
Brian Gerst92d65b22009-01-19 00:38:58 +09001155static DEFINE_PER_CPU_PAGE_ALIGNED(char, exception_stacks
Tejun Heo3e352aa2009-08-03 14:10:11 +09001156 [(N_EXCEPTION_STACKS - 1) * EXCEPTION_STKSZ + DEBUG_STKSZ]);
Yinghai Lud5494d42008-09-04 20:09:03 -07001157
Yinghai Lud5494d42008-09-04 20:09:03 -07001158/* May not be marked __init: used by software suspend */
1159void syscall_init(void)
1160{
1161 /*
1162 * LSTAR and STAR live in a bit strange symbiosis.
1163 * They both write to the same internal register. STAR allows to
1164 * set CS/DS but only a 32bit target. LSTAR sets the 64bit rip.
1165 */
1166 wrmsrl(MSR_STAR, ((u64)__USER32_CS)<<48 | ((u64)__KERNEL_CS)<<32);
1167 wrmsrl(MSR_LSTAR, system_call);
1168 wrmsrl(MSR_CSTAR, ignore_sysret);
1169
1170#ifdef CONFIG_IA32_EMULATION
1171 syscall32_cpu_init();
1172#endif
1173
1174 /* Flags to clear on syscall */
1175 wrmsrl(MSR_SYSCALL_MASK,
H. Peter Anvin63bcff22012-09-21 12:43:12 -07001176 X86_EFLAGS_TF|X86_EFLAGS_DF|X86_EFLAGS_IF|
1177 X86_EFLAGS_IOPL|X86_EFLAGS_AC);
Yinghai Lud5494d42008-09-04 20:09:03 -07001178}
1179
Yinghai Lud5494d42008-09-04 20:09:03 -07001180/*
1181 * Copies of the original ist values from the tss are only accessed during
1182 * debugging, no special alignment required.
1183 */
1184DEFINE_PER_CPU(struct orig_ist, orig_ist);
1185
Steven Rostedt228bdaa2011-12-09 03:02:19 -05001186static DEFINE_PER_CPU(unsigned long, debug_stack_addr);
Steven Rostedt42181182011-12-16 11:43:02 -05001187DEFINE_PER_CPU(int, debug_stack_usage);
Steven Rostedt228bdaa2011-12-09 03:02:19 -05001188
1189int is_debug_stack(unsigned long addr)
1190{
Steven Rostedt42181182011-12-16 11:43:02 -05001191 return __get_cpu_var(debug_stack_usage) ||
1192 (addr <= __get_cpu_var(debug_stack_addr) &&
1193 addr > (__get_cpu_var(debug_stack_addr) - DEBUG_STKSZ));
Steven Rostedt228bdaa2011-12-09 03:02:19 -05001194}
1195
Seiji Aguchi629f4f92013-06-20 11:45:44 -04001196DEFINE_PER_CPU(u32, debug_idt_ctr);
Steven Rostedtf8988172012-05-30 11:47:00 -04001197
Steven Rostedt228bdaa2011-12-09 03:02:19 -05001198void debug_stack_set_zero(void)
1199{
Seiji Aguchi629f4f92013-06-20 11:45:44 -04001200 this_cpu_inc(debug_idt_ctr);
1201 load_current_idt();
Steven Rostedt228bdaa2011-12-09 03:02:19 -05001202}
1203
1204void debug_stack_reset(void)
1205{
Seiji Aguchi629f4f92013-06-20 11:45:44 -04001206 if (WARN_ON(!this_cpu_read(debug_idt_ctr)))
Steven Rostedtf8988172012-05-30 11:47:00 -04001207 return;
Seiji Aguchi629f4f92013-06-20 11:45:44 -04001208 if (this_cpu_dec_return(debug_idt_ctr) == 0)
1209 load_current_idt();
Steven Rostedt228bdaa2011-12-09 03:02:19 -05001210}
1211
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001212#else /* CONFIG_X86_64 */
Yinghai Lud5494d42008-09-04 20:09:03 -07001213
Tejun Heobdf977b2009-08-03 14:12:19 +09001214DEFINE_PER_CPU(struct task_struct *, current_task) = &init_task;
1215EXPORT_PER_CPU_SYMBOL(current_task);
Peter Zijlstrac2daa3b2013-08-14 14:51:00 +02001216DEFINE_PER_CPU(int, __preempt_count) = INIT_PREEMPT_COUNT;
1217EXPORT_PER_CPU_SYMBOL(__preempt_count);
Linus Torvalds27e74da2012-02-20 19:34:10 -08001218DEFINE_PER_CPU(struct task_struct *, fpu_owner_task);
Tejun Heobdf977b2009-08-03 14:12:19 +09001219
Tejun Heo60a53172009-02-09 22:17:40 +09001220#ifdef CONFIG_CC_STACKPROTECTOR
Jeremy Fitzhardinge53f82452009-09-03 14:31:44 -07001221DEFINE_PER_CPU_ALIGNED(struct stack_canary, stack_canary);
Tejun Heo60a53172009-02-09 22:17:40 +09001222#endif
1223
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001224#endif /* CONFIG_X86_64 */
Jeremy Fitzhardingec5413fb2007-05-02 19:27:16 +02001225
Rusty Russelld2cbcc42007-05-02 19:27:10 +02001226/*
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +05301227 * Clear all 6 debug registers:
1228 */
1229static void clear_all_debug_regs(void)
1230{
1231 int i;
1232
1233 for (i = 0; i < 8; i++) {
1234 /* Ignore db4, db5 */
1235 if ((i == 4) || (i == 5))
1236 continue;
1237
1238 set_debugreg(0, i);
1239 }
1240}
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +01001241
Jason Wessel0bb9fef2010-05-20 21:04:30 -05001242#ifdef CONFIG_KGDB
1243/*
1244 * Restore debug regs if using kgdbwait and you have a kernel debugger
1245 * connection established.
1246 */
1247static void dbg_restore_debug_regs(void)
1248{
1249 if (unlikely(kgdb_connected && arch_kgdb_ops.correct_hw_break))
1250 arch_kgdb_ops.correct_hw_break();
1251}
1252#else /* ! CONFIG_KGDB */
1253#define dbg_restore_debug_regs()
1254#endif /* ! CONFIG_KGDB */
1255
Rusty Russelld2cbcc42007-05-02 19:27:10 +02001256/*
1257 * cpu_init() initializes state that is per-CPU. Some data is already
1258 * initialized (naturally) in the bootstrap process, such as the GDT
1259 * and IDT. We reload them nevertheless, this function acts as a
1260 * 'CPU state barrier', nothing should get across.
Yinghai Lu1ba76582008-09-04 20:09:04 -07001261 * A lot of state is already set up in PDA init for 64 bit
Rusty Russelld2cbcc42007-05-02 19:27:10 +02001262 */
Yinghai Lu1ba76582008-09-04 20:09:04 -07001263#ifdef CONFIG_X86_64
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001264
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001265void cpu_init(void)
Yinghai Lu1ba76582008-09-04 20:09:04 -07001266{
Tejun Heo0fe1e002009-10-29 22:34:14 +09001267 struct orig_ist *oist;
Yinghai Lu1ba76582008-09-04 20:09:04 -07001268 struct task_struct *me;
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001269 struct tss_struct *t;
1270 unsigned long v;
1271 int cpu;
Yinghai Lu1ba76582008-09-04 20:09:04 -07001272 int i;
1273
Fenghua Yue6ebf5d2012-12-20 23:44:24 -08001274 /*
1275 * Load microcode on this cpu if a valid microcode is available.
1276 * This is early microcode loading procedure.
1277 */
1278 load_ucode_ap();
1279
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001280 cpu = stack_smp_processor_id();
1281 t = &per_cpu(init_tss, cpu);
Tejun Heo0fe1e002009-10-29 22:34:14 +09001282 oist = &per_cpu(orig_ist, cpu);
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001283
Brian Gerste7a22c12009-01-19 00:38:59 +09001284#ifdef CONFIG_NUMA
Fenghua Yu27fd1852012-11-13 11:32:47 -08001285 if (this_cpu_read(numa_node) == 0 &&
Lee Schermerhorne534c7c2010-05-26 14:44:58 -07001286 early_cpu_to_node(cpu) != NUMA_NO_NODE)
1287 set_numa_node(early_cpu_to_node(cpu));
Brian Gerste7a22c12009-01-19 00:38:59 +09001288#endif
Yinghai Lu1ba76582008-09-04 20:09:04 -07001289
1290 me = current;
1291
Mike Travisc2d1cec2009-01-04 05:18:03 -08001292 if (cpumask_test_and_set_cpu(cpu, cpu_initialized_mask))
Yinghai Lu1ba76582008-09-04 20:09:04 -07001293 panic("CPU#%d already initialized!\n", cpu);
1294
Mike Travis2eaad1f2009-12-10 17:19:36 -08001295 pr_debug("Initializing CPU#%d\n", cpu);
Yinghai Lu1ba76582008-09-04 20:09:04 -07001296
1297 clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
1298
1299 /*
1300 * Initialize the per-CPU GDT with the boot GDT,
1301 * and set up the GDT descriptor:
1302 */
1303
Brian Gerst552be872009-01-30 17:47:53 +09001304 switch_to_new_gdt(cpu);
Brian Gerst2697fbd2009-01-27 12:56:48 +09001305 loadsegment(fs, 0);
1306
Seiji Aguchicf910e82013-06-20 11:46:53 -04001307 load_current_idt();
Yinghai Lu1ba76582008-09-04 20:09:04 -07001308
1309 memset(me->thread.tls_array, 0, GDT_ENTRY_TLS_ENTRIES * 8);
1310 syscall_init();
1311
1312 wrmsrl(MSR_FS_BASE, 0);
1313 wrmsrl(MSR_KERNEL_GS_BASE, 0);
1314 barrier();
1315
H. Peter Anvin4763ed42009-11-13 15:28:16 -08001316 x86_configure_nx();
Fenghua Yu27fd1852012-11-13 11:32:47 -08001317 enable_x2apic();
Yinghai Lu1ba76582008-09-04 20:09:04 -07001318
1319 /*
1320 * set up and load the per-CPU TSS
1321 */
Tejun Heo0fe1e002009-10-29 22:34:14 +09001322 if (!oist->ist[0]) {
Brian Gerst92d65b22009-01-19 00:38:58 +09001323 char *estacks = per_cpu(exception_stacks, cpu);
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001324
Yinghai Lu1ba76582008-09-04 20:09:04 -07001325 for (v = 0; v < N_EXCEPTION_STACKS; v++) {
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001326 estacks += exception_stack_sizes[v];
Tejun Heo0fe1e002009-10-29 22:34:14 +09001327 oist->ist[v] = t->x86_tss.ist[v] =
Yinghai Lu1ba76582008-09-04 20:09:04 -07001328 (unsigned long)estacks;
Steven Rostedt228bdaa2011-12-09 03:02:19 -05001329 if (v == DEBUG_STACK-1)
1330 per_cpu(debug_stack_addr, cpu) = (unsigned long)estacks;
Yinghai Lu1ba76582008-09-04 20:09:04 -07001331 }
1332 }
1333
1334 t->x86_tss.io_bitmap_base = offsetof(struct tss_struct, io_bitmap);
Ingo Molnar0f3fa482009-03-14 08:46:17 +01001335
Yinghai Lu1ba76582008-09-04 20:09:04 -07001336 /*
1337 * <= is required because the CPU will access up to
1338 * 8 bits beyond the end of the IO permission bitmap.
1339 */
1340 for (i = 0; i <= IO_BITMAP_LONGS; i++)
1341 t->io_bitmap[i] = ~0UL;
1342
1343 atomic_inc(&init_mm.mm_count);
1344 me->active_mm = &init_mm;
Stoyan Gaydarov8c5dfd22009-03-10 00:10:32 -05001345 BUG_ON(me->mm);
Yinghai Lu1ba76582008-09-04 20:09:04 -07001346 enter_lazy_tlb(&init_mm, me);
1347
1348 load_sp0(t, &current->thread);
1349 set_tss_desc(cpu, t);
1350 load_TR_desc();
1351 load_LDT(&init_mm.context);
1352
Jason Wessel0bb9fef2010-05-20 21:04:30 -05001353 clear_all_debug_regs();
1354 dbg_restore_debug_regs();
Yinghai Lu1ba76582008-09-04 20:09:04 -07001355
1356 fpu_init();
1357
Yinghai Lu1ba76582008-09-04 20:09:04 -07001358 if (is_uv_system())
1359 uv_cpu_init();
1360}
1361
1362#else
1363
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001364void cpu_init(void)
James Bottomley9ee79a32007-01-22 09:18:31 -06001365{
Rusty Russelld2cbcc42007-05-02 19:27:10 +02001366 int cpu = smp_processor_id();
1367 struct task_struct *curr = current;
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +01001368 struct tss_struct *t = &per_cpu(init_tss, cpu);
James Bottomley9ee79a32007-01-22 09:18:31 -06001369 struct thread_struct *thread = &curr->thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Fenghua Yue6ebf5d2012-12-20 23:44:24 -08001371 show_ucode_info_early();
1372
Mike Travisc2d1cec2009-01-04 05:18:03 -08001373 if (cpumask_test_and_set_cpu(cpu, cpu_initialized_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 printk(KERN_WARNING "CPU#%d already initialized!\n", cpu);
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +05301375 for (;;)
1376 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +01001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 printk(KERN_INFO "Initializing CPU#%d\n", cpu);
1380
1381 if (cpu_has_vme || cpu_has_tsc || cpu_has_de)
1382 clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Seiji Aguchicf910e82013-06-20 11:46:53 -04001384 load_current_idt();
Brian Gerst552be872009-01-30 17:47:53 +09001385 switch_to_new_gdt(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 * Set up and load the per-CPU TSS and LDT
1389 */
1390 atomic_inc(&init_mm.mm_count);
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +01001391 curr->active_mm = &init_mm;
Stoyan Gaydarov8c5dfd22009-03-10 00:10:32 -05001392 BUG_ON(curr->mm);
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +01001393 enter_lazy_tlb(&init_mm, curr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
H. Peter Anvinfaca6222008-01-30 13:31:02 +01001395 load_sp0(t, thread);
Paolo Ciarrocchi34048c92008-02-24 11:58:13 +01001396 set_tss_desc(cpu, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 load_TR_desc();
1398 load_LDT(&init_mm.context);
1399
Thomas Gleixnerf9a196b2009-05-01 20:59:25 +02001400 t->x86_tss.io_bitmap_base = offsetof(struct tss_struct, io_bitmap);
1401
Matt Mackall22c4e302006-01-08 01:05:24 -08001402#ifdef CONFIG_DOUBLEFAULT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 /* Set up doublefault TSS pointer in the GDT */
1404 __set_tss_desc(cpu, GDT_ENTRY_DOUBLEFAULT_TSS, &doublefault_tss);
Matt Mackall22c4e302006-01-08 01:05:24 -08001405#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +05301407 clear_all_debug_regs();
Jason Wessel0bb9fef2010-05-20 21:04:30 -05001408 dbg_restore_debug_regs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Robert Richter0e49bf62010-07-21 19:03:52 +02001410 fpu_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
Yinghai Lu1ba76582008-09-04 20:09:04 -07001412#endif
Borislav Petkov5700f742013-06-09 12:07:32 +02001413
1414#ifdef CONFIG_X86_DEBUG_STATIC_CPU_HAS
1415void warn_pre_alternatives(void)
1416{
1417 WARN(1, "You're using static_cpu_has before alternatives have run!\n");
1418}
1419EXPORT_SYMBOL_GPL(warn_pre_alternatives);
1420#endif
Borislav Petkov4a90a992013-06-09 12:07:33 +02001421
1422inline bool __static_cpu_has_safe(u16 bit)
1423{
1424 return boot_cpu_has(bit);
1425}
1426EXPORT_SYMBOL_GPL(__static_cpu_has_safe);