1 // SPDX-License-Identifier: GPL-2.0
5 #include <asm/fpu/internal.h>
8 * Boot time CPU/FPU FDIV bug detection code:
11 static double __initdata x
= 4195835.0;
12 static double __initdata y
= 3145727.0;
15 * This used to check for exceptions..
16 * However, it turns out that to support that,
17 * the XMM trap handlers basically had to
18 * be buggy. So let's have a correct XMM trap
19 * handler, and forget about printing out
20 * some status at boot.
22 * We should really only care about bugs here
23 * anyway. Not features.
25 void __init
fpu__init_check_bugs(void)
29 /* kernel_fpu_begin/end() relies on patched alternative instructions. */
30 if (!boot_cpu_has(X86_FEATURE_FPU
))
36 * trap_init() enabled FXSR and company _before_ testing for FP
39 * Test for the divl bug: http://en.wikipedia.org/wiki/Fdiv_bug
46 "fsubp %%st,%%st(1)\n\t"
51 : "m" (*&x
), "m" (*&y
));
56 set_cpu_bug(&boot_cpu_data
, X86_BUG_FDIV
);
57 pr_warn("Hmm, FPU with FDIV bug\n");