1 /* -*- linux-c -*- ------------------------------------------------------- *
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright 2007 rPath, Inc. - All Rights Reserved
6 * This file is part of the Linux kernel, and is made available under
7 * the terms of the GNU General Public License version 2.
9 * ----------------------------------------------------------------------- */
12 * Check for obligatory CPU features and abort if the features are not
13 * present. This code should be compilable as 16-, 32- or 64-bit
14 * code, so be very careful with types and inline assembly.
16 * This code should not contain any messages; that requires an
19 * As written, this code is not safe for inclusion into the kernel
20 * proper (after FPU initialization, in particular).
26 #include <linux/types.h>
27 #include <asm/intel-family.h>
28 #include <asm/processor-flags.h>
29 #include <asm/required-features.h>
30 #include <asm/msr-index.h>
33 static u32 err_flags
[NCAPINTS
];
35 static const int req_level
= CONFIG_X86_MINIMUM_CPU_FAMILY
;
37 static const u32 req_flags
[NCAPINTS
] =
41 0, /* REQUIRED_MASK2 not implemented in this file */
42 0, /* REQUIRED_MASK3 not implemented in this file */
44 0, /* REQUIRED_MASK5 not implemented in this file */
46 0, /* REQUIRED_MASK7 not implemented in this file */
47 0, /* REQUIRED_MASK8 not implemented in this file */
48 0, /* REQUIRED_MASK9 not implemented in this file */
49 0, /* REQUIRED_MASK10 not implemented in this file */
50 0, /* REQUIRED_MASK11 not implemented in this file */
51 0, /* REQUIRED_MASK12 not implemented in this file */
52 0, /* REQUIRED_MASK13 not implemented in this file */
53 0, /* REQUIRED_MASK14 not implemented in this file */
54 0, /* REQUIRED_MASK15 not implemented in this file */
58 #define A32(a, b, c, d) (((d) << 24)+((c) << 16)+((b) << 8)+(a))
60 static int is_amd(void)
62 return cpu_vendor
[0] == A32('A', 'u', 't', 'h') &&
63 cpu_vendor
[1] == A32('e', 'n', 't', 'i') &&
64 cpu_vendor
[2] == A32('c', 'A', 'M', 'D');
67 static int is_centaur(void)
69 return cpu_vendor
[0] == A32('C', 'e', 'n', 't') &&
70 cpu_vendor
[1] == A32('a', 'u', 'r', 'H') &&
71 cpu_vendor
[2] == A32('a', 'u', 'l', 's');
74 static int is_transmeta(void)
76 return cpu_vendor
[0] == A32('G', 'e', 'n', 'u') &&
77 cpu_vendor
[1] == A32('i', 'n', 'e', 'T') &&
78 cpu_vendor
[2] == A32('M', 'x', '8', '6');
81 static int is_intel(void)
83 return cpu_vendor
[0] == A32('G', 'e', 'n', 'u') &&
84 cpu_vendor
[1] == A32('i', 'n', 'e', 'I') &&
85 cpu_vendor
[2] == A32('n', 't', 'e', 'l');
88 /* Returns a bitmask of which words we have error bits in */
89 static int check_cpuflags(void)
95 for (i
= 0; i
< NCAPINTS
; i
++) {
96 err_flags
[i
] = req_flags
[i
] & ~cpu
.flags
[i
];
105 * Returns -1 on error.
107 * *cpu_level is set to the current CPU level; *req_level to the required
108 * level. x86-64 is considered level 64 for this purpose.
110 * *err_flags_ptr is set to the flags error array if there are flags missing.
112 int check_cpu(int *cpu_level_ptr
, int *req_level_ptr
, u32
**err_flags_ptr
)
116 memset(&cpu
.flags
, 0, sizeof cpu
.flags
);
119 if (has_eflag(X86_EFLAGS_AC
))
123 err
= check_cpuflags();
125 if (test_bit(X86_FEATURE_LM
, cpu
.flags
))
130 ~((1 << X86_FEATURE_XMM
)|(1 << X86_FEATURE_XMM2
))) &&
132 /* If this is an AMD and we're only missing SSE+SSE2, try to
135 u32 ecx
= MSR_K7_HWCR
;
138 asm("rdmsr" : "=a" (eax
), "=d" (edx
) : "c" (ecx
));
140 asm("wrmsr" : : "a" (eax
), "d" (edx
), "c" (ecx
));
142 get_cpuflags(); /* Make sure it really did something */
143 err
= check_cpuflags();
144 } else if (err
== 0x01 &&
145 !(err_flags
[0] & ~(1 << X86_FEATURE_CX8
)) &&
146 is_centaur() && cpu
.model
>= 6) {
147 /* If this is a VIA C3, we might have to enable CX8
150 u32 ecx
= MSR_VIA_FCR
;
153 asm("rdmsr" : "=a" (eax
), "=d" (edx
) : "c" (ecx
));
154 eax
|= (1<<1)|(1<<7);
155 asm("wrmsr" : : "a" (eax
), "d" (edx
), "c" (ecx
));
157 set_bit(X86_FEATURE_CX8
, cpu
.flags
);
158 err
= check_cpuflags();
159 } else if (err
== 0x01 && is_transmeta()) {
160 /* Transmeta might have masked feature bits in word 0 */
162 u32 ecx
= 0x80860004;
166 asm("rdmsr" : "=a" (eax
), "=d" (edx
) : "c" (ecx
));
167 asm("wrmsr" : : "a" (~0), "d" (edx
), "c" (ecx
));
169 : "+a" (level
), "=d" (cpu
.flags
[0])
171 asm("wrmsr" : : "a" (eax
), "d" (edx
), "c" (ecx
));
173 err
= check_cpuflags();
174 } else if (err
== 0x01 &&
175 !(err_flags
[0] & ~(1 << X86_FEATURE_PAE
)) &&
176 is_intel() && cpu
.level
== 6 &&
177 (cpu
.model
== 9 || cpu
.model
== 13)) {
178 /* PAE is disabled on this Pentium M but can be forced */
179 if (cmdline_find_option_bool("forcepae")) {
180 puts("WARNING: Forcing PAE in CPU flags\n");
181 set_bit(X86_FEATURE_PAE
, cpu
.flags
);
182 err
= check_cpuflags();
185 puts("WARNING: PAE disabled. Use parameter 'forcepae' to enable at your own risk!\n");
189 err
= check_knl_erratum();
192 *err_flags_ptr
= err
? err_flags
: NULL
;
194 *cpu_level_ptr
= cpu
.level
;
196 *req_level_ptr
= req_level
;
198 return (cpu
.level
< req_level
|| err
) ? -1 : 0;
201 int check_knl_erratum(void)
204 * First check for the affected model/family:
208 cpu
.model
!= INTEL_FAM6_XEON_PHI_KNL
)
212 * This erratum affects the Accessed/Dirty bits, and can
213 * cause stray bits to be set in !Present PTEs. We have
214 * enough bits in our 64-bit PTEs (which we have on real
215 * 64-bit mode or PAE) to avoid using these troublesome
216 * bits. But, we do not have enough space in our 32-bit
217 * PTEs. So, refuse to run on 32-bit non-PAE kernels.
219 if (IS_ENABLED(CONFIG_X86_64
) || IS_ENABLED(CONFIG_X86_PAE
))
222 puts("This 32-bit kernel can not run on this Xeon Phi x200\n"
223 "processor due to a processor erratum. Use a 64-bit\n"
224 "kernel, or enable PAE in this 32-bit kernel.\n\n");