1
2
3
4#include <asm/fpu/internal.h>
5
6
7
8
9
10static double __initdata x = 4195835.0;
11static double __initdata y = 3145727.0;
12
13
14
15
16
17
18
19
20
21
22
23
24void __init fpu__init_check_bugs(void)
25{
26 u32 cr0_saved;
27 s32 fdiv_bug;
28
29
30 if (!boot_cpu_has(X86_FEATURE_FPU))
31 return;
32
33
34 cr0_saved = read_cr0();
35 write_cr0(cr0_saved & ~X86_CR0_TS);
36
37 kernel_fpu_begin();
38
39
40
41
42
43
44
45 __asm__("fninit\n\t"
46 "fldl %1\n\t"
47 "fdivl %2\n\t"
48 "fmull %2\n\t"
49 "fldl %1\n\t"
50 "fsubp %%st,%%st(1)\n\t"
51 "fistpl %0\n\t"
52 "fwait\n\t"
53 "fninit"
54 : "=m" (*&fdiv_bug)
55 : "m" (*&x), "m" (*&y));
56
57 kernel_fpu_end();
58
59 write_cr0(cr0_saved);
60
61 if (fdiv_bug) {
62 set_cpu_bug(&boot_cpu_data, X86_BUG_FDIV);
63 pr_warn("Hmm, FPU with FDIV bug\n");
64 }
65}
66