Thomas Gleixner | 97873a3 | 2019-06-04 10:11:30 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 2 | /* -*- linux-c -*- ------------------------------------------------------- * |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | * Copyright 2007 rPath, Inc. - All Rights Reserved |
| 6 | * |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 7 | * ----------------------------------------------------------------------- */ |
| 8 | |
| 9 | /* |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 10 | * Check for obligatory CPU features and abort if the features are not |
| 11 | * present. This code should be compilable as 16-, 32- or 64-bit |
| 12 | * code, so be very careful with types and inline assembly. |
| 13 | * |
| 14 | * This code should not contain any messages; that requires an |
| 15 | * additional wrapper. |
| 16 | * |
| 17 | * As written, this code is not safe for inclusion into the kernel |
| 18 | * proper (after FPU initialization, in particular). |
| 19 | */ |
| 20 | |
| 21 | #ifdef _SETUP |
| 22 | # include "boot.h" |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 23 | #endif |
| 24 | #include <linux/types.h> |
Dave Hansen | e4a84be | 2016-07-07 17:19:14 -0700 | [diff] [blame] | 25 | #include <asm/intel-family.h> |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 26 | #include <asm/processor-flags.h> |
| 27 | #include <asm/required-features.h> |
| 28 | #include <asm/msr-index.h> |
Vivek Goyal | c041b5a | 2014-03-18 15:26:37 -0400 | [diff] [blame] | 29 | #include "string.h" |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 30 | |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 31 | static u32 err_flags[NCAPINTS]; |
| 32 | |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 33 | static const int req_level = CONFIG_X86_MINIMUM_CPU_FAMILY; |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 34 | |
| 35 | static const u32 req_flags[NCAPINTS] = |
| 36 | { |
| 37 | REQUIRED_MASK0, |
| 38 | REQUIRED_MASK1, |
H. Peter Anvin | b74b06c | 2008-08-15 15:36:31 -0700 | [diff] [blame] | 39 | 0, /* REQUIRED_MASK2 not implemented in this file */ |
| 40 | 0, /* REQUIRED_MASK3 not implemented in this file */ |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 41 | REQUIRED_MASK4, |
H. Peter Anvin | b74b06c | 2008-08-15 15:36:31 -0700 | [diff] [blame] | 42 | 0, /* REQUIRED_MASK5 not implemented in this file */ |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 43 | REQUIRED_MASK6, |
H. Peter Anvin | b74b06c | 2008-08-15 15:36:31 -0700 | [diff] [blame] | 44 | 0, /* REQUIRED_MASK7 not implemented in this file */ |
Kirill A. Shutemov | 3677d4c | 2017-03-30 11:07:25 +0300 | [diff] [blame] | 45 | 0, /* REQUIRED_MASK8 not implemented in this file */ |
| 46 | 0, /* REQUIRED_MASK9 not implemented in this file */ |
| 47 | 0, /* REQUIRED_MASK10 not implemented in this file */ |
| 48 | 0, /* REQUIRED_MASK11 not implemented in this file */ |
| 49 | 0, /* REQUIRED_MASK12 not implemented in this file */ |
| 50 | 0, /* REQUIRED_MASK13 not implemented in this file */ |
| 51 | 0, /* REQUIRED_MASK14 not implemented in this file */ |
| 52 | 0, /* REQUIRED_MASK15 not implemented in this file */ |
| 53 | REQUIRED_MASK16, |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 54 | }; |
| 55 | |
Paolo Ciarrocchi | 7030760 | 2008-02-22 23:11:12 +0100 | [diff] [blame] | 56 | #define A32(a, b, c, d) (((d) << 24)+((c) << 16)+((b) << 8)+(a)) |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 57 | |
| 58 | static int is_amd(void) |
| 59 | { |
Paolo Ciarrocchi | 7030760 | 2008-02-22 23:11:12 +0100 | [diff] [blame] | 60 | return cpu_vendor[0] == A32('A', 'u', 't', 'h') && |
| 61 | cpu_vendor[1] == A32('e', 'n', 't', 'i') && |
| 62 | cpu_vendor[2] == A32('c', 'A', 'M', 'D'); |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | static int is_centaur(void) |
| 66 | { |
Paolo Ciarrocchi | 7030760 | 2008-02-22 23:11:12 +0100 | [diff] [blame] | 67 | return cpu_vendor[0] == A32('C', 'e', 'n', 't') && |
| 68 | cpu_vendor[1] == A32('a', 'u', 'r', 'H') && |
| 69 | cpu_vendor[2] == A32('a', 'u', 'l', 's'); |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | static int is_transmeta(void) |
| 73 | { |
Paolo Ciarrocchi | 7030760 | 2008-02-22 23:11:12 +0100 | [diff] [blame] | 74 | return cpu_vendor[0] == A32('G', 'e', 'n', 'u') && |
| 75 | cpu_vendor[1] == A32('i', 'n', 'e', 'T') && |
| 76 | cpu_vendor[2] == A32('M', 'x', '8', '6'); |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Chris Bainbridge | 69f2366 | 2014-03-07 18:40:42 +0700 | [diff] [blame] | 79 | static int is_intel(void) |
| 80 | { |
| 81 | return cpu_vendor[0] == A32('G', 'e', 'n', 'u') && |
| 82 | cpu_vendor[1] == A32('i', 'n', 'e', 'I') && |
| 83 | cpu_vendor[2] == A32('n', 't', 'e', 'l'); |
| 84 | } |
| 85 | |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 86 | /* Returns a bitmask of which words we have error bits in */ |
H. Peter Anvin | 6e6a493 | 2013-10-13 04:08:56 -0700 | [diff] [blame] | 87 | static int check_cpuflags(void) |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 88 | { |
| 89 | u32 err; |
| 90 | int i; |
| 91 | |
| 92 | err = 0; |
| 93 | for (i = 0; i < NCAPINTS; i++) { |
| 94 | err_flags[i] = req_flags[i] & ~cpu.flags[i]; |
| 95 | if (err_flags[i]) |
| 96 | err |= 1 << i; |
| 97 | } |
| 98 | |
| 99 | return err; |
| 100 | } |
| 101 | |
| 102 | /* |
| 103 | * Returns -1 on error. |
| 104 | * |
| 105 | * *cpu_level is set to the current CPU level; *req_level to the required |
| 106 | * level. x86-64 is considered level 64 for this purpose. |
| 107 | * |
| 108 | * *err_flags_ptr is set to the flags error array if there are flags missing. |
| 109 | */ |
| 110 | int check_cpu(int *cpu_level_ptr, int *req_level_ptr, u32 **err_flags_ptr) |
| 111 | { |
| 112 | int err; |
| 113 | |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 114 | memset(&cpu.flags, 0, sizeof(cpu.flags)); |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 115 | cpu.level = 3; |
| 116 | |
| 117 | if (has_eflag(X86_EFLAGS_AC)) |
| 118 | cpu.level = 4; |
| 119 | |
H. Peter Anvin | 6e6a493 | 2013-10-13 04:08:56 -0700 | [diff] [blame] | 120 | get_cpuflags(); |
| 121 | err = check_cpuflags(); |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 122 | |
| 123 | if (test_bit(X86_FEATURE_LM, cpu.flags)) |
| 124 | cpu.level = 64; |
| 125 | |
| 126 | if (err == 0x01 && |
| 127 | !(err_flags[0] & |
| 128 | ~((1 << X86_FEATURE_XMM)|(1 << X86_FEATURE_XMM2))) && |
| 129 | is_amd()) { |
| 130 | /* If this is an AMD and we're only missing SSE+SSE2, try to |
| 131 | turn them on */ |
| 132 | |
| 133 | u32 ecx = MSR_K7_HWCR; |
| 134 | u32 eax, edx; |
| 135 | |
| 136 | asm("rdmsr" : "=a" (eax), "=d" (edx) : "c" (ecx)); |
| 137 | eax &= ~(1 << 15); |
| 138 | asm("wrmsr" : : "a" (eax), "d" (edx), "c" (ecx)); |
| 139 | |
H. Peter Anvin | 6e6a493 | 2013-10-13 04:08:56 -0700 | [diff] [blame] | 140 | get_cpuflags(); /* Make sure it really did something */ |
| 141 | err = check_cpuflags(); |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 142 | } else if (err == 0x01 && |
| 143 | !(err_flags[0] & ~(1 << X86_FEATURE_CX8)) && |
| 144 | is_centaur() && cpu.model >= 6) { |
| 145 | /* If this is a VIA C3, we might have to enable CX8 |
| 146 | explicitly */ |
| 147 | |
| 148 | u32 ecx = MSR_VIA_FCR; |
| 149 | u32 eax, edx; |
| 150 | |
| 151 | asm("rdmsr" : "=a" (eax), "=d" (edx) : "c" (ecx)); |
| 152 | eax |= (1<<1)|(1<<7); |
| 153 | asm("wrmsr" : : "a" (eax), "d" (edx), "c" (ecx)); |
| 154 | |
| 155 | set_bit(X86_FEATURE_CX8, cpu.flags); |
H. Peter Anvin | 6e6a493 | 2013-10-13 04:08:56 -0700 | [diff] [blame] | 156 | err = check_cpuflags(); |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 157 | } else if (err == 0x01 && is_transmeta()) { |
| 158 | /* Transmeta might have masked feature bits in word 0 */ |
| 159 | |
| 160 | u32 ecx = 0x80860004; |
| 161 | u32 eax, edx; |
| 162 | u32 level = 1; |
| 163 | |
| 164 | asm("rdmsr" : "=a" (eax), "=d" (edx) : "c" (ecx)); |
| 165 | asm("wrmsr" : : "a" (~0), "d" (edx), "c" (ecx)); |
| 166 | asm("cpuid" |
| 167 | : "+a" (level), "=d" (cpu.flags[0]) |
| 168 | : : "ecx", "ebx"); |
| 169 | asm("wrmsr" : : "a" (eax), "d" (edx), "c" (ecx)); |
| 170 | |
H. Peter Anvin | 6e6a493 | 2013-10-13 04:08:56 -0700 | [diff] [blame] | 171 | err = check_cpuflags(); |
Chris Bainbridge | 69f2366 | 2014-03-07 18:40:42 +0700 | [diff] [blame] | 172 | } else if (err == 0x01 && |
| 173 | !(err_flags[0] & ~(1 << X86_FEATURE_PAE)) && |
| 174 | is_intel() && cpu.level == 6 && |
| 175 | (cpu.model == 9 || cpu.model == 13)) { |
| 176 | /* PAE is disabled on this Pentium M but can be forced */ |
| 177 | if (cmdline_find_option_bool("forcepae")) { |
| 178 | puts("WARNING: Forcing PAE in CPU flags\n"); |
| 179 | set_bit(X86_FEATURE_PAE, cpu.flags); |
| 180 | err = check_cpuflags(); |
| 181 | } |
| 182 | else { |
| 183 | puts("WARNING: PAE disabled. Use parameter 'forcepae' to enable at your own risk!\n"); |
| 184 | } |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 185 | } |
Dave Hansen | e4a84be | 2016-07-07 17:19:14 -0700 | [diff] [blame] | 186 | if (!err) |
| 187 | err = check_knl_erratum(); |
H. Peter Anvin | 31b54f4 | 2007-07-11 12:18:47 -0700 | [diff] [blame] | 188 | |
| 189 | if (err_flags_ptr) |
| 190 | *err_flags_ptr = err ? err_flags : NULL; |
| 191 | if (cpu_level_ptr) |
| 192 | *cpu_level_ptr = cpu.level; |
| 193 | if (req_level_ptr) |
| 194 | *req_level_ptr = req_level; |
| 195 | |
| 196 | return (cpu.level < req_level || err) ? -1 : 0; |
| 197 | } |
Dave Hansen | e4a84be | 2016-07-07 17:19:14 -0700 | [diff] [blame] | 198 | |
| 199 | int check_knl_erratum(void) |
| 200 | { |
| 201 | /* |
| 202 | * First check for the affected model/family: |
| 203 | */ |
| 204 | if (!is_intel() || |
| 205 | cpu.family != 6 || |
| 206 | cpu.model != INTEL_FAM6_XEON_PHI_KNL) |
| 207 | return 0; |
| 208 | |
| 209 | /* |
| 210 | * This erratum affects the Accessed/Dirty bits, and can |
| 211 | * cause stray bits to be set in !Present PTEs. We have |
| 212 | * enough bits in our 64-bit PTEs (which we have on real |
| 213 | * 64-bit mode or PAE) to avoid using these troublesome |
| 214 | * bits. But, we do not have enough space in our 32-bit |
| 215 | * PTEs. So, refuse to run on 32-bit non-PAE kernels. |
| 216 | */ |
| 217 | if (IS_ENABLED(CONFIG_X86_64) || IS_ENABLED(CONFIG_X86_PAE)) |
| 218 | return 0; |
| 219 | |
| 220 | puts("This 32-bit kernel can not run on this Xeon Phi x200\n" |
| 221 | "processor due to a processor erratum. Use a 64-bit\n" |
| 222 | "kernel, or enable PAE in this 32-bit kernel.\n\n"); |
| 223 | |
| 224 | return -1; |
| 225 | } |
| 226 | |
| 227 | |