Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * x86 FPU boot time init code:
4 */
5#include <asm/fpu/api.h>
6#include <asm/tlbflush.h>
7#include <asm/setup.h>
8
9#include <linux/sched.h>
10#include <linux/sched/task.h>
11#include <linux/init.h>
12
13#include "internal.h"
14#include "legacy.h"
15#include "xstate.h"
16
17/*
18 * Initialize the registers found in all CPUs, CR0 and CR4:
19 */
20static void fpu__init_cpu_generic(void)
21{
22 unsigned long cr0;
23 unsigned long cr4_mask = 0;
24
25 if (boot_cpu_has(X86_FEATURE_FXSR))
26 cr4_mask |= X86_CR4_OSFXSR;
27 if (boot_cpu_has(X86_FEATURE_XMM))
28 cr4_mask |= X86_CR4_OSXMMEXCPT;
29 if (cr4_mask)
30 cr4_set_bits(cr4_mask);
31
32 cr0 = read_cr0();
33 cr0 &= ~(X86_CR0_TS|X86_CR0_EM); /* clear TS and EM */
34 if (!boot_cpu_has(X86_FEATURE_FPU))
35 cr0 |= X86_CR0_EM;
36 write_cr0(cr0);
37
38 /* Flush out any pending x87 state: */
39#ifdef CONFIG_MATH_EMULATION
40 if (!boot_cpu_has(X86_FEATURE_FPU))
41 fpstate_init_soft(¤t->thread.fpu.fpstate->regs.soft);
42 else
43#endif
44 asm volatile ("fninit");
45}
46
47/*
48 * Enable all supported FPU features. Called when a CPU is brought online:
49 */
50void fpu__init_cpu(void)
51{
52 fpu__init_cpu_generic();
53 fpu__init_cpu_xstate();
54}
55
56static bool fpu__probe_without_cpuid(void)
57{
58 unsigned long cr0;
59 u16 fsw, fcw;
60
61 fsw = fcw = 0xffff;
62
63 cr0 = read_cr0();
64 cr0 &= ~(X86_CR0_TS | X86_CR0_EM);
65 write_cr0(cr0);
66
67 asm volatile("fninit ; fnstsw %0 ; fnstcw %1" : "+m" (fsw), "+m" (fcw));
68
69 pr_info("x86/fpu: Probing for FPU: FSW=0x%04hx FCW=0x%04hx\n", fsw, fcw);
70
71 return fsw == 0 && (fcw & 0x103f) == 0x003f;
72}
73
74static void fpu__init_system_early_generic(struct cpuinfo_x86 *c)
75{
76 if (!boot_cpu_has(X86_FEATURE_CPUID) &&
77 !test_bit(X86_FEATURE_FPU, (unsigned long *)cpu_caps_cleared)) {
78 if (fpu__probe_without_cpuid())
79 setup_force_cpu_cap(X86_FEATURE_FPU);
80 else
81 setup_clear_cpu_cap(X86_FEATURE_FPU);
82 }
83
84#ifndef CONFIG_MATH_EMULATION
85 if (!test_cpu_cap(&boot_cpu_data, X86_FEATURE_FPU)) {
86 pr_emerg("x86/fpu: Giving up, no FPU found and no math emulation present\n");
87 for (;;)
88 asm volatile("hlt");
89 }
90#endif
91}
92
93/*
94 * Boot time FPU feature detection code:
95 */
96unsigned int mxcsr_feature_mask __ro_after_init = 0xffffffffu;
97EXPORT_SYMBOL_GPL(mxcsr_feature_mask);
98
99static void __init fpu__init_system_mxcsr(void)
100{
101 unsigned int mask = 0;
102
103 if (boot_cpu_has(X86_FEATURE_FXSR)) {
104 /* Static because GCC does not get 16-byte stack alignment right: */
105 static struct fxregs_state fxregs __initdata;
106
107 asm volatile("fxsave %0" : "+m" (fxregs));
108
109 mask = fxregs.mxcsr_mask;
110
111 /*
112 * If zero then use the default features mask,
113 * which has all features set, except the
114 * denormals-are-zero feature bit:
115 */
116 if (mask == 0)
117 mask = 0x0000ffbf;
118 }
119 mxcsr_feature_mask &= mask;
120}
121
122/*
123 * Once per bootup FPU initialization sequences that will run on most x86 CPUs:
124 */
125static void __init fpu__init_system_generic(void)
126{
127 /*
128 * Set up the legacy init FPU context. Will be updated when the
129 * CPU supports XSAVE[S].
130 */
131 fpstate_init_user(&init_fpstate);
132
133 fpu__init_system_mxcsr();
134}
135
136/*
137 * Enforce that 'MEMBER' is the last field of 'TYPE'.
138 *
139 * Align the computed size with alignment of the TYPE,
140 * because that's how C aligns structs.
141 */
142#define CHECK_MEMBER_AT_END_OF(TYPE, MEMBER) \
143 BUILD_BUG_ON(sizeof(TYPE) != \
144 ALIGN(offsetofend(TYPE, MEMBER), _Alignof(TYPE)))
145
146/*
147 * We append the 'struct fpu' to the task_struct:
148 */
149static void __init fpu__init_task_struct_size(void)
150{
151 int task_size = sizeof(struct task_struct);
152
153 /*
154 * Subtract off the static size of the register state.
155 * It potentially has a bunch of padding.
156 */
157 task_size -= sizeof(current->thread.fpu.__fpstate.regs);
158
159 /*
160 * Add back the dynamically-calculated register state
161 * size.
162 */
163 task_size += fpu_kernel_cfg.default_size;
164
165 /*
166 * We dynamically size 'struct fpu', so we require that
167 * it be at the end of 'thread_struct' and that
168 * 'thread_struct' be at the end of 'task_struct'. If
169 * you hit a compile error here, check the structure to
170 * see if something got added to the end.
171 */
172 CHECK_MEMBER_AT_END_OF(struct fpu, __fpstate);
173 CHECK_MEMBER_AT_END_OF(struct thread_struct, fpu);
174 CHECK_MEMBER_AT_END_OF(struct task_struct, thread);
175
176 arch_task_struct_size = task_size;
177}
178
179/*
180 * Set up the user and kernel xstate sizes based on the legacy FPU context size.
181 *
182 * We set this up first, and later it will be overwritten by
183 * fpu__init_system_xstate() if the CPU knows about xstates.
184 */
185static void __init fpu__init_system_xstate_size_legacy(void)
186{
187 unsigned int size;
188
189 /*
190 * Note that the size configuration might be overwritten later
191 * during fpu__init_system_xstate().
192 */
193 if (!cpu_feature_enabled(X86_FEATURE_FPU)) {
194 size = sizeof(struct swregs_state);
195 } else if (cpu_feature_enabled(X86_FEATURE_FXSR)) {
196 size = sizeof(struct fxregs_state);
197 fpu_user_cfg.legacy_features = XFEATURE_MASK_FPSSE;
198 } else {
199 size = sizeof(struct fregs_state);
200 fpu_user_cfg.legacy_features = XFEATURE_MASK_FP;
201 }
202
203 fpu_kernel_cfg.max_size = size;
204 fpu_kernel_cfg.default_size = size;
205 fpu_user_cfg.max_size = size;
206 fpu_user_cfg.default_size = size;
207 fpstate_reset(¤t->thread.fpu);
208}
209
210/*
211 * Called on the boot CPU once per system bootup, to set up the initial
212 * FPU state that is later cloned into all processes:
213 */
214void __init fpu__init_system(struct cpuinfo_x86 *c)
215{
216 fpstate_reset(¤t->thread.fpu);
217 fpu__init_system_early_generic(c);
218
219 /*
220 * The FPU has to be operational for some of the
221 * later FPU init activities:
222 */
223 fpu__init_cpu();
224
225 fpu__init_system_generic();
226 fpu__init_system_xstate_size_legacy();
227 fpu__init_system_xstate(fpu_kernel_cfg.max_size);
228 fpu__init_task_struct_size();
229}
1/*
2 * x86 FPU boot time init code:
3 */
4#include <asm/fpu/internal.h>
5#include <asm/tlbflush.h>
6#include <asm/setup.h>
7#include <asm/cmdline.h>
8
9#include <linux/sched.h>
10#include <linux/init.h>
11
12/*
13 * Initialize the registers found in all CPUs, CR0 and CR4:
14 */
15static void fpu__init_cpu_generic(void)
16{
17 unsigned long cr0;
18 unsigned long cr4_mask = 0;
19
20 if (boot_cpu_has(X86_FEATURE_FXSR))
21 cr4_mask |= X86_CR4_OSFXSR;
22 if (boot_cpu_has(X86_FEATURE_XMM))
23 cr4_mask |= X86_CR4_OSXMMEXCPT;
24 if (cr4_mask)
25 cr4_set_bits(cr4_mask);
26
27 cr0 = read_cr0();
28 cr0 &= ~(X86_CR0_TS|X86_CR0_EM); /* clear TS and EM */
29 if (!boot_cpu_has(X86_FEATURE_FPU))
30 cr0 |= X86_CR0_EM;
31 write_cr0(cr0);
32
33 /* Flush out any pending x87 state: */
34#ifdef CONFIG_MATH_EMULATION
35 if (!boot_cpu_has(X86_FEATURE_FPU))
36 fpstate_init_soft(¤t->thread.fpu.state.soft);
37 else
38#endif
39 asm volatile ("fninit");
40}
41
42/*
43 * Enable all supported FPU features. Called when a CPU is brought online:
44 */
45void fpu__init_cpu(void)
46{
47 fpu__init_cpu_generic();
48 fpu__init_cpu_xstate();
49}
50
51/*
52 * The earliest FPU detection code.
53 *
54 * Set the X86_FEATURE_FPU CPU-capability bit based on
55 * trying to execute an actual sequence of FPU instructions:
56 */
57static void fpu__init_system_early_generic(struct cpuinfo_x86 *c)
58{
59 unsigned long cr0;
60 u16 fsw, fcw;
61
62 fsw = fcw = 0xffff;
63
64 cr0 = read_cr0();
65 cr0 &= ~(X86_CR0_TS | X86_CR0_EM);
66 write_cr0(cr0);
67
68 if (!test_bit(X86_FEATURE_FPU, (unsigned long *)cpu_caps_cleared)) {
69 asm volatile("fninit ; fnstsw %0 ; fnstcw %1"
70 : "+m" (fsw), "+m" (fcw));
71
72 if (fsw == 0 && (fcw & 0x103f) == 0x003f)
73 set_cpu_cap(c, X86_FEATURE_FPU);
74 else
75 clear_cpu_cap(c, X86_FEATURE_FPU);
76 }
77
78#ifndef CONFIG_MATH_EMULATION
79 if (!boot_cpu_has(X86_FEATURE_FPU)) {
80 pr_emerg("x86/fpu: Giving up, no FPU found and no math emulation present\n");
81 for (;;)
82 asm volatile("hlt");
83 }
84#endif
85}
86
87/*
88 * Boot time FPU feature detection code:
89 */
90unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu;
91
92static void __init fpu__init_system_mxcsr(void)
93{
94 unsigned int mask = 0;
95
96 if (boot_cpu_has(X86_FEATURE_FXSR)) {
97 /* Static because GCC does not get 16-byte stack alignment right: */
98 static struct fxregs_state fxregs __initdata;
99
100 asm volatile("fxsave %0" : "+m" (fxregs));
101
102 mask = fxregs.mxcsr_mask;
103
104 /*
105 * If zero then use the default features mask,
106 * which has all features set, except the
107 * denormals-are-zero feature bit:
108 */
109 if (mask == 0)
110 mask = 0x0000ffbf;
111 }
112 mxcsr_feature_mask &= mask;
113}
114
115/*
116 * Once per bootup FPU initialization sequences that will run on most x86 CPUs:
117 */
118static void __init fpu__init_system_generic(void)
119{
120 /*
121 * Set up the legacy init FPU context. (xstate init might overwrite this
122 * with a more modern format, if the CPU supports it.)
123 */
124 fpstate_init(&init_fpstate);
125
126 fpu__init_system_mxcsr();
127}
128
129/*
130 * Size of the FPU context state. All tasks in the system use the
131 * same context size, regardless of what portion they use.
132 * This is inherent to the XSAVE architecture which puts all state
133 * components into a single, continuous memory block:
134 */
135unsigned int fpu_kernel_xstate_size;
136EXPORT_SYMBOL_GPL(fpu_kernel_xstate_size);
137
138/* Get alignment of the TYPE. */
139#define TYPE_ALIGN(TYPE) offsetof(struct { char x; TYPE test; }, test)
140
141/*
142 * Enforce that 'MEMBER' is the last field of 'TYPE'.
143 *
144 * Align the computed size with alignment of the TYPE,
145 * because that's how C aligns structs.
146 */
147#define CHECK_MEMBER_AT_END_OF(TYPE, MEMBER) \
148 BUILD_BUG_ON(sizeof(TYPE) != ALIGN(offsetofend(TYPE, MEMBER), \
149 TYPE_ALIGN(TYPE)))
150
151/*
152 * We append the 'struct fpu' to the task_struct:
153 */
154static void __init fpu__init_task_struct_size(void)
155{
156 int task_size = sizeof(struct task_struct);
157
158 /*
159 * Subtract off the static size of the register state.
160 * It potentially has a bunch of padding.
161 */
162 task_size -= sizeof(((struct task_struct *)0)->thread.fpu.state);
163
164 /*
165 * Add back the dynamically-calculated register state
166 * size.
167 */
168 task_size += fpu_kernel_xstate_size;
169
170 /*
171 * We dynamically size 'struct fpu', so we require that
172 * it be at the end of 'thread_struct' and that
173 * 'thread_struct' be at the end of 'task_struct'. If
174 * you hit a compile error here, check the structure to
175 * see if something got added to the end.
176 */
177 CHECK_MEMBER_AT_END_OF(struct fpu, state);
178 CHECK_MEMBER_AT_END_OF(struct thread_struct, fpu);
179 CHECK_MEMBER_AT_END_OF(struct task_struct, thread);
180
181 arch_task_struct_size = task_size;
182}
183
184/*
185 * Set up the user and kernel xstate sizes based on the legacy FPU context size.
186 *
187 * We set this up first, and later it will be overwritten by
188 * fpu__init_system_xstate() if the CPU knows about xstates.
189 */
190static void __init fpu__init_system_xstate_size_legacy(void)
191{
192 static int on_boot_cpu __initdata = 1;
193
194 WARN_ON_FPU(!on_boot_cpu);
195 on_boot_cpu = 0;
196
197 /*
198 * Note that xstate sizes might be overwritten later during
199 * fpu__init_system_xstate().
200 */
201
202 if (!boot_cpu_has(X86_FEATURE_FPU)) {
203 /*
204 * Disable xsave as we do not support it if i387
205 * emulation is enabled.
206 */
207 setup_clear_cpu_cap(X86_FEATURE_XSAVE);
208 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
209 fpu_kernel_xstate_size = sizeof(struct swregs_state);
210 } else {
211 if (boot_cpu_has(X86_FEATURE_FXSR))
212 fpu_kernel_xstate_size =
213 sizeof(struct fxregs_state);
214 else
215 fpu_kernel_xstate_size =
216 sizeof(struct fregs_state);
217 }
218
219 fpu_user_xstate_size = fpu_kernel_xstate_size;
220}
221
222/*
223 * Find supported xfeatures based on cpu features and command-line input.
224 * This must be called after fpu__init_parse_early_param() is called and
225 * xfeatures_mask is enumerated.
226 */
227u64 __init fpu__get_supported_xfeatures_mask(void)
228{
229 return XCNTXT_MASK;
230}
231
232/* Legacy code to initialize eager fpu mode. */
233static void __init fpu__init_system_ctx_switch(void)
234{
235 static bool on_boot_cpu __initdata = 1;
236
237 WARN_ON_FPU(!on_boot_cpu);
238 on_boot_cpu = 0;
239
240 WARN_ON_FPU(current->thread.fpu.fpstate_active);
241}
242
243/*
244 * We parse fpu parameters early because fpu__init_system() is executed
245 * before parse_early_param().
246 */
247static void __init fpu__init_parse_early_param(void)
248{
249 if (cmdline_find_option_bool(boot_command_line, "no387"))
250 setup_clear_cpu_cap(X86_FEATURE_FPU);
251
252 if (cmdline_find_option_bool(boot_command_line, "nofxsr")) {
253 setup_clear_cpu_cap(X86_FEATURE_FXSR);
254 setup_clear_cpu_cap(X86_FEATURE_FXSR_OPT);
255 setup_clear_cpu_cap(X86_FEATURE_XMM);
256 }
257
258 if (cmdline_find_option_bool(boot_command_line, "noxsave"))
259 fpu__xstate_clear_all_cpu_caps();
260
261 if (cmdline_find_option_bool(boot_command_line, "noxsaveopt"))
262 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
263
264 if (cmdline_find_option_bool(boot_command_line, "noxsaves"))
265 setup_clear_cpu_cap(X86_FEATURE_XSAVES);
266}
267
268/*
269 * Called on the boot CPU once per system bootup, to set up the initial
270 * FPU state that is later cloned into all processes:
271 */
272void __init fpu__init_system(struct cpuinfo_x86 *c)
273{
274 fpu__init_parse_early_param();
275 fpu__init_system_early_generic(c);
276
277 /*
278 * The FPU has to be operational for some of the
279 * later FPU init activities:
280 */
281 fpu__init_cpu();
282
283 fpu__init_system_generic();
284 fpu__init_system_xstate_size_legacy();
285 fpu__init_system_xstate();
286 fpu__init_task_struct_size();
287
288 fpu__init_system_ctx_switch();
289}