2 * x86 FPU boot time init code:
4 #include <asm/fpu/internal.h>
5 #include <asm/tlbflush.h>
7 #include <asm/cmdline.h>
9 #include <linux/sched.h>
10 #include <linux/sched/task.h>
11 #include <linux/init.h>
14 * Initialize the registers found in all CPUs, CR0 and CR4:
16 static void fpu__init_cpu_generic(void)
19 unsigned long cr4_mask
= 0;
21 if (boot_cpu_has(X86_FEATURE_FXSR
))
22 cr4_mask
|= X86_CR4_OSFXSR
;
23 if (boot_cpu_has(X86_FEATURE_XMM
))
24 cr4_mask
|= X86_CR4_OSXMMEXCPT
;
26 cr4_set_bits(cr4_mask
);
29 cr0
&= ~(X86_CR0_TS
|X86_CR0_EM
); /* clear TS and EM */
30 if (!boot_cpu_has(X86_FEATURE_FPU
))
34 /* Flush out any pending x87 state: */
35 #ifdef CONFIG_MATH_EMULATION
36 if (!boot_cpu_has(X86_FEATURE_FPU
))
37 fpstate_init_soft(¤t
->thread
.fpu
.state
.soft
);
40 asm volatile ("fninit");
44 * Enable all supported FPU features. Called when a CPU is brought online:
46 void fpu__init_cpu(void)
48 fpu__init_cpu_generic();
49 fpu__init_cpu_xstate();
52 static bool fpu__probe_without_cpuid(void)
60 cr0
&= ~(X86_CR0_TS
| X86_CR0_EM
);
63 asm volatile("fninit ; fnstsw %0 ; fnstcw %1" : "+m" (fsw
), "+m" (fcw
));
65 pr_info("x86/fpu: Probing for FPU: FSW=0x%04hx FCW=0x%04hx\n", fsw
, fcw
);
67 return fsw
== 0 && (fcw
& 0x103f) == 0x003f;
70 static void fpu__init_system_early_generic(struct cpuinfo_x86
*c
)
72 if (!boot_cpu_has(X86_FEATURE_CPUID
) &&
73 !test_bit(X86_FEATURE_FPU
, (unsigned long *)cpu_caps_cleared
)) {
74 if (fpu__probe_without_cpuid())
75 setup_force_cpu_cap(X86_FEATURE_FPU
);
77 setup_clear_cpu_cap(X86_FEATURE_FPU
);
80 #ifndef CONFIG_MATH_EMULATION
81 if (!test_cpu_cap(&boot_cpu_data
, X86_FEATURE_FPU
)) {
82 pr_emerg("x86/fpu: Giving up, no FPU found and no math emulation present\n");
90 * Boot time FPU feature detection code:
92 unsigned int mxcsr_feature_mask __read_mostly
= 0xffffffffu
;
93 EXPORT_SYMBOL_GPL(mxcsr_feature_mask
);
95 static void __init
fpu__init_system_mxcsr(void)
97 unsigned int mask
= 0;
99 if (boot_cpu_has(X86_FEATURE_FXSR
)) {
100 /* Static because GCC does not get 16-byte stack alignment right: */
101 static struct fxregs_state fxregs __initdata
;
103 asm volatile("fxsave %0" : "+m" (fxregs
));
105 mask
= fxregs
.mxcsr_mask
;
108 * If zero then use the default features mask,
109 * which has all features set, except the
110 * denormals-are-zero feature bit:
115 mxcsr_feature_mask
&= mask
;
119 * Once per bootup FPU initialization sequences that will run on most x86 CPUs:
121 static void __init
fpu__init_system_generic(void)
124 * Set up the legacy init FPU context. (xstate init might overwrite this
125 * with a more modern format, if the CPU supports it.)
127 fpstate_init(&init_fpstate
);
129 fpu__init_system_mxcsr();
133 * Size of the FPU context state. All tasks in the system use the
134 * same context size, regardless of what portion they use.
135 * This is inherent to the XSAVE architecture which puts all state
136 * components into a single, continuous memory block:
138 unsigned int fpu_kernel_xstate_size
;
139 EXPORT_SYMBOL_GPL(fpu_kernel_xstate_size
);
141 /* Get alignment of the TYPE. */
142 #define TYPE_ALIGN(TYPE) offsetof(struct { char x; TYPE test; }, test)
145 * Enforce that 'MEMBER' is the last field of 'TYPE'.
147 * Align the computed size with alignment of the TYPE,
148 * because that's how C aligns structs.
150 #define CHECK_MEMBER_AT_END_OF(TYPE, MEMBER) \
151 BUILD_BUG_ON(sizeof(TYPE) != ALIGN(offsetofend(TYPE, MEMBER), \
155 * We append the 'struct fpu' to the task_struct:
157 static void __init
fpu__init_task_struct_size(void)
159 int task_size
= sizeof(struct task_struct
);
162 * Subtract off the static size of the register state.
163 * It potentially has a bunch of padding.
165 task_size
-= sizeof(((struct task_struct
*)0)->thread
.fpu
.state
);
168 * Add back the dynamically-calculated register state
171 task_size
+= fpu_kernel_xstate_size
;
174 * We dynamically size 'struct fpu', so we require that
175 * it be at the end of 'thread_struct' and that
176 * 'thread_struct' be at the end of 'task_struct'. If
177 * you hit a compile error here, check the structure to
178 * see if something got added to the end.
180 CHECK_MEMBER_AT_END_OF(struct fpu
, state
);
181 CHECK_MEMBER_AT_END_OF(struct thread_struct
, fpu
);
182 CHECK_MEMBER_AT_END_OF(struct task_struct
, thread
);
184 arch_task_struct_size
= task_size
;
188 * Set up the user and kernel xstate sizes based on the legacy FPU context size.
190 * We set this up first, and later it will be overwritten by
191 * fpu__init_system_xstate() if the CPU knows about xstates.
193 static void __init
fpu__init_system_xstate_size_legacy(void)
195 static int on_boot_cpu __initdata
= 1;
197 WARN_ON_FPU(!on_boot_cpu
);
201 * Note that xstate sizes might be overwritten later during
202 * fpu__init_system_xstate().
205 if (!boot_cpu_has(X86_FEATURE_FPU
)) {
207 * Disable xsave as we do not support it if i387
208 * emulation is enabled.
210 setup_clear_cpu_cap(X86_FEATURE_XSAVE
);
211 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT
);
212 fpu_kernel_xstate_size
= sizeof(struct swregs_state
);
214 if (boot_cpu_has(X86_FEATURE_FXSR
))
215 fpu_kernel_xstate_size
=
216 sizeof(struct fxregs_state
);
218 fpu_kernel_xstate_size
=
219 sizeof(struct fregs_state
);
222 fpu_user_xstate_size
= fpu_kernel_xstate_size
;
226 * Find supported xfeatures based on cpu features and command-line input.
227 * This must be called after fpu__init_parse_early_param() is called and
228 * xfeatures_mask is enumerated.
230 u64 __init
fpu__get_supported_xfeatures_mask(void)
235 /* Legacy code to initialize eager fpu mode. */
236 static void __init
fpu__init_system_ctx_switch(void)
238 static bool on_boot_cpu __initdata
= 1;
240 WARN_ON_FPU(!on_boot_cpu
);
243 WARN_ON_FPU(current
->thread
.fpu
.initialized
);
247 * We parse fpu parameters early because fpu__init_system() is executed
248 * before parse_early_param().
250 static void __init
fpu__init_parse_early_param(void)
256 if (cmdline_find_option_bool(boot_command_line
, "no387"))
257 setup_clear_cpu_cap(X86_FEATURE_FPU
);
259 if (cmdline_find_option_bool(boot_command_line
, "nofxsr")) {
260 setup_clear_cpu_cap(X86_FEATURE_FXSR
);
261 setup_clear_cpu_cap(X86_FEATURE_FXSR_OPT
);
262 setup_clear_cpu_cap(X86_FEATURE_XMM
);
265 if (cmdline_find_option_bool(boot_command_line
, "noxsave"))
266 fpu__xstate_clear_all_cpu_caps();
268 if (cmdline_find_option_bool(boot_command_line
, "noxsaveopt"))
269 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT
);
271 if (cmdline_find_option_bool(boot_command_line
, "noxsaves"))
272 setup_clear_cpu_cap(X86_FEATURE_XSAVES
);
274 if (cmdline_find_option(boot_command_line
, "clearcpuid", arg
,
276 get_option(&argptr
, &bit
) &&
279 setup_clear_cpu_cap(bit
);
283 * Called on the boot CPU once per system bootup, to set up the initial
284 * FPU state that is later cloned into all processes:
286 void __init
fpu__init_system(struct cpuinfo_x86
*c
)
288 fpu__init_parse_early_param();
289 fpu__init_system_early_generic(c
);
292 * The FPU has to be operational for some of the
293 * later FPU init activities:
297 fpu__init_system_generic();
298 fpu__init_system_xstate_size_legacy();
299 fpu__init_system_xstate();
300 fpu__init_task_struct_size();
302 fpu__init_system_ctx_switch();