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