1 #include <linux/types.h>
4 #include <asm/processor-flags.h>
5 #include <asm/required-features.h>
6 #include <asm/msr-index.h>
9 struct cpu_features cpu
;
12 static bool loaded_flags
;
14 static int has_fpu(void)
16 u16 fcw
= -1, fsw
= -1;
19 asm volatile("mov %%cr0,%0" : "=r" (cr0
));
20 if (cr0
& (X86_CR0_EM
|X86_CR0_TS
)) {
21 cr0
&= ~(X86_CR0_EM
|X86_CR0_TS
);
22 asm volatile("mov %0,%%cr0" : : "r" (cr0
));
25 asm volatile("fninit ; fnstsw %0 ; fnstcw %1"
26 : "+m" (fsw
), "+m" (fcw
));
28 return fsw
== 0 && (fcw
& 0x103f) == 0x003f;
32 * For building the 16-bit code we want to explicitly specify 32-bit
33 * push/pop operations, rather than just saying 'pushf' or 'popf' and
34 * letting the compiler choose. But this is also included from the
35 * compressed/ directory where it may be 64-bit code, and thus needs
36 * to be 'pushfq' or 'popfq' in that case.
39 #define PUSHF "pushfq"
42 #define PUSHF "pushfl"
46 int has_eflag(unsigned long mask
)
50 asm volatile(PUSHF
" \n\t"
60 : "=&r" (f0
), "=&r" (f1
)
63 return !!((f0
^f1
) & mask
);
66 /* Handle x86_32 PIC using ebx. */
67 #if defined(__i386__) && defined(__PIC__)
73 static inline void cpuid(u32 id
, u32
*a
, u32
*b
, u32
*c
, u32
*d
)
75 asm volatile(".ifnc %%ebx,%3 ; movl %%ebx,%3 ; .endif \n\t"
77 ".ifnc %%ebx,%3 ; xchgl %%ebx,%3 ; .endif \n\t"
78 : "=a" (*a
), "=c" (*c
), "=d" (*d
), EBX_REG (*b
)
83 void get_cpuflags(void)
85 u32 max_intel_level
, max_amd_level
;
94 set_bit(X86_FEATURE_FPU
, cpu
.flags
);
96 if (has_eflag(X86_EFLAGS_ID
)) {
97 cpuid(0x0, &max_intel_level
, &cpu_vendor
[0], &cpu_vendor
[2],
100 if (max_intel_level
>= 0x00000001 &&
101 max_intel_level
<= 0x0000ffff) {
102 cpuid(0x1, &tfms
, &ignored
, &cpu
.flags
[4],
104 cpu
.level
= (tfms
>> 8) & 15;
105 cpu
.model
= (tfms
>> 4) & 15;
107 cpu
.model
+= ((tfms
>> 16) & 0xf) << 4;
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],