1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/types.h>
5 #include <asm/processor-flags.h>
6 #include <asm/required-features.h>
7 #include <asm/msr-index.h>
10 struct cpu_features cpu
;
13 static bool loaded_flags
;
15 static int has_fpu(void)
17 u16 fcw
= -1, fsw
= -1;
20 asm volatile("mov %%cr0,%0" : "=r" (cr0
));
21 if (cr0
& (X86_CR0_EM
|X86_CR0_TS
)) {
22 cr0
&= ~(X86_CR0_EM
|X86_CR0_TS
);
23 asm volatile("mov %0,%%cr0" : : "r" (cr0
));
26 asm volatile("fninit ; fnstsw %0 ; fnstcw %1"
27 : "+m" (fsw
), "+m" (fcw
));
29 return fsw
== 0 && (fcw
& 0x103f) == 0x003f;
33 * For building the 16-bit code we want to explicitly specify 32-bit
34 * push/pop operations, rather than just saying 'pushf' or 'popf' and
35 * letting the compiler choose. But this is also included from the
36 * compressed/ directory where it may be 64-bit code, and thus needs
37 * to be 'pushfq' or 'popfq' in that case.
40 #define PUSHF "pushfq"
43 #define PUSHF "pushfl"
47 int has_eflag(unsigned long mask
)
51 asm volatile(PUSHF
" \n\t"
61 : "=&r" (f0
), "=&r" (f1
)
64 return !!((f0
^f1
) & mask
);
67 void cpuid_count(u32 id
, u32 count
, u32
*a
, u32
*b
, u32
*c
, u32
*d
)
70 : "=a" (*a
), "=b" (*b
), "=c" (*c
), "=d" (*d
)
71 : "0" (id
), "2" (count
)
75 #define cpuid(id, a, b, c, d) cpuid_count(id, 0, a, b, c, d)
77 void get_cpuflags(void)
79 u32 max_intel_level
, max_amd_level
;
88 set_bit(X86_FEATURE_FPU
, cpu
.flags
);
90 if (has_eflag(X86_EFLAGS_ID
)) {
91 cpuid(0x0, &max_intel_level
, &cpu_vendor
[0], &cpu_vendor
[2],
94 if (max_intel_level
>= 0x00000001 &&
95 max_intel_level
<= 0x0000ffff) {
96 cpuid(0x1, &tfms
, &ignored
, &cpu
.flags
[4],
98 cpu
.level
= (tfms
>> 8) & 15;
99 cpu
.family
= cpu
.level
;
100 cpu
.model
= (tfms
>> 4) & 15;
102 cpu
.model
+= ((tfms
>> 16) & 0xf) << 4;
105 if (max_intel_level
>= 0x00000007) {
106 cpuid_count(0x00000007, 0, &ignored
, &ignored
,
107 &cpu
.flags
[16], &ignored
);
110 cpuid(0x80000000, &max_amd_level
, &ignored
, &ignored
,
113 if (max_amd_level
>= 0x80000001 &&
114 max_amd_level
<= 0x8000ffff) {
115 cpuid(0x80000001, &ignored
, &ignored
, &cpu
.flags
[6],