blob: 44516ad6c890ef0bc1235bfcc0bd356511f45146 [file] [log] [blame]
Linus Torvalds1361b832012-02-21 13:19:22 -08001/*
2 * Copyright (C) 1994 Linus Torvalds
3 *
4 * Pentium III FXSR, SSE support
5 * General FPU state handling cleanups
6 * Gareth Hughes <gareth@valinux.com>, May 2000
7 * x86-64 work by Andi Kleen 2002
8 */
9
10#ifndef _FPU_INTERNAL_H
11#define _FPU_INTERNAL_H
12
Linus Torvalds1361b832012-02-21 13:19:22 -080013#include <linux/regset.h>
Suresh Siddha050902c2012-07-24 16:05:27 -070014#include <linux/compat.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080015#include <linux/slab.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020016
Linus Torvalds1361b832012-02-21 13:19:22 -080017#include <asm/user.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020018#include <asm/i387.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080019#include <asm/xsave.h>
20
Suresh Siddha72a671c2012-07-24 16:05:29 -070021#ifdef CONFIG_X86_64
22# include <asm/sigcontext32.h>
23# include <asm/user32.h>
Al Viro235b8022012-11-09 23:51:47 -050024struct ksignal;
25int ia32_setup_rt_frame(int sig, struct ksignal *ksig,
Suresh Siddha72a671c2012-07-24 16:05:29 -070026 compat_sigset_t *set, struct pt_regs *regs);
Al Viro235b8022012-11-09 23:51:47 -050027int ia32_setup_frame(int sig, struct ksignal *ksig,
Suresh Siddha72a671c2012-07-24 16:05:29 -070028 compat_sigset_t *set, struct pt_regs *regs);
29#else
30# define user_i387_ia32_struct user_i387_struct
31# define user32_fxsr_struct user_fxsr_struct
32# define ia32_setup_frame __setup_frame
33# define ia32_setup_rt_frame __setup_rt_frame
34#endif
35
36extern unsigned int mxcsr_feature_mask;
Ingo Molnar3a9c4b02015-04-03 13:16:51 +020037extern void fpu__cpu_init(void);
Suresh Siddha5d2bd702012-09-06 14:58:52 -070038extern void eager_fpu_init(void);
Linus Torvalds1361b832012-02-21 13:19:22 -080039
Ingo Molnar36b544d2015-04-23 12:18:28 +020040DECLARE_PER_CPU(struct fpu *, fpu_fpregs_owner_ctx);
Linus Torvalds1361b832012-02-21 13:19:22 -080041
Suresh Siddha72a671c2012-07-24 16:05:29 -070042extern void convert_from_fxsr(struct user_i387_ia32_struct *env,
43 struct task_struct *tsk);
44extern void convert_to_fxsr(struct task_struct *tsk,
45 const struct user_i387_ia32_struct *env);
46
Linus Torvalds1361b832012-02-21 13:19:22 -080047extern user_regset_active_fn fpregs_active, xfpregs_active;
48extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get,
49 xstateregs_get;
50extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set,
51 xstateregs_set;
52
Linus Torvalds1361b832012-02-21 13:19:22 -080053/*
54 * xstateregs_active == fpregs_active. Please refer to the comment
55 * at the definition of fpregs_active.
56 */
57#define xstateregs_active fpregs_active
58
Linus Torvalds1361b832012-02-21 13:19:22 -080059#ifdef CONFIG_MATH_EMULATION
60extern void finit_soft_fpu(struct i387_soft_struct *soft);
61#else
62static inline void finit_soft_fpu(struct i387_soft_struct *soft) {}
63#endif
64
Rik van Riel1c927ee2015-02-06 15:02:01 -050065/*
Ingo Molnar36b544d2015-04-23 12:18:28 +020066 * Must be run with preemption disabled: this clears the fpu_fpregs_owner_ctx,
Rik van Riel1c927ee2015-02-06 15:02:01 -050067 * on this CPU.
68 *
69 * This will disable any lazy FPU state restore of the current FPU state,
70 * but if the current thread owns the FPU, it will still be saved by.
71 */
72static inline void __cpu_disable_lazy_restore(unsigned int cpu)
73{
Ingo Molnar36b544d2015-04-23 12:18:28 +020074 per_cpu(fpu_fpregs_owner_ctx, cpu) = NULL;
Rik van Riel1c927ee2015-02-06 15:02:01 -050075}
76
Rik van Riel33e03de2015-02-06 15:02:02 -050077/*
78 * Used to indicate that the FPU state in memory is newer than the FPU
79 * state in registers, and the FPU state should be reloaded next time the
80 * task is run. Only safe on the current task, or non-running tasks.
81 */
82static inline void task_disable_lazy_fpu_restore(struct task_struct *tsk)
83{
84 tsk->thread.fpu.last_cpu = ~0;
85}
86
Rik van Riel1c927ee2015-02-06 15:02:01 -050087static inline int fpu_lazy_restore(struct task_struct *new, unsigned int cpu)
88{
Ingo Molnar36b544d2015-04-23 12:18:28 +020089 return &new->thread.fpu == this_cpu_read_stable(fpu_fpregs_owner_ctx) &&
Rik van Riel1c927ee2015-02-06 15:02:01 -050090 cpu == new->thread.fpu.last_cpu;
91}
92
Suresh Siddha050902c2012-07-24 16:05:27 -070093static inline int is_ia32_compat_frame(void)
94{
95 return config_enabled(CONFIG_IA32_EMULATION) &&
96 test_thread_flag(TIF_IA32);
97}
98
99static inline int is_ia32_frame(void)
100{
101 return config_enabled(CONFIG_X86_32) || is_ia32_compat_frame();
102}
103
104static inline int is_x32_frame(void)
105{
106 return config_enabled(CONFIG_X86_X32_ABI) && test_thread_flag(TIF_X32);
107}
108
Linus Torvalds1361b832012-02-21 13:19:22 -0800109#define X87_FSW_ES (1 << 7) /* Exception Summary */
110
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700111static __always_inline __pure bool use_eager_fpu(void)
112{
Matt Flemingc6b40692014-03-27 15:10:40 -0700113 return static_cpu_has_safe(X86_FEATURE_EAGER_FPU);
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700114}
115
Linus Torvalds1361b832012-02-21 13:19:22 -0800116static __always_inline __pure bool use_xsaveopt(void)
117{
Matt Flemingc6b40692014-03-27 15:10:40 -0700118 return static_cpu_has_safe(X86_FEATURE_XSAVEOPT);
Linus Torvalds1361b832012-02-21 13:19:22 -0800119}
120
121static __always_inline __pure bool use_xsave(void)
122{
Matt Flemingc6b40692014-03-27 15:10:40 -0700123 return static_cpu_has_safe(X86_FEATURE_XSAVE);
Linus Torvalds1361b832012-02-21 13:19:22 -0800124}
125
126static __always_inline __pure bool use_fxsr(void)
127{
Matt Flemingc6b40692014-03-27 15:10:40 -0700128 return static_cpu_has_safe(X86_FEATURE_FXSR);
Linus Torvalds1361b832012-02-21 13:19:22 -0800129}
130
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700131static inline void fx_finit(struct i387_fxsave_struct *fx)
132{
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700133 fx->cwd = 0x37f;
Suresh Siddhaa8615af2012-09-10 10:40:08 -0700134 fx->mxcsr = MXCSR_DEFAULT;
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700135}
136
Linus Torvalds1361b832012-02-21 13:19:22 -0800137extern void __sanitize_i387_state(struct task_struct *);
138
139static inline void sanitize_i387_state(struct task_struct *tsk)
140{
141 if (!use_xsaveopt())
142 return;
143 __sanitize_i387_state(tsk);
144}
145
H. Peter Anvin49b8c692012-09-21 17:18:44 -0700146#define user_insn(insn, output, input...) \
147({ \
148 int err; \
149 asm volatile(ASM_STAC "\n" \
150 "1:" #insn "\n\t" \
151 "2: " ASM_CLAC "\n" \
152 ".section .fixup,\"ax\"\n" \
153 "3: movl $-1,%[err]\n" \
154 " jmp 2b\n" \
155 ".previous\n" \
156 _ASM_EXTABLE(1b, 3b) \
157 : [err] "=r" (err), output \
158 : "0"(0), input); \
159 err; \
160})
Linus Torvalds1361b832012-02-21 13:19:22 -0800161
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700162#define check_insn(insn, output, input...) \
163({ \
164 int err; \
165 asm volatile("1:" #insn "\n\t" \
166 "2:\n" \
167 ".section .fixup,\"ax\"\n" \
168 "3: movl $-1,%[err]\n" \
169 " jmp 2b\n" \
170 ".previous\n" \
171 _ASM_EXTABLE(1b, 3b) \
172 : [err] "=r" (err), output \
173 : "0"(0), input); \
174 err; \
175})
Linus Torvalds1361b832012-02-21 13:19:22 -0800176
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700177static inline int fsave_user(struct i387_fsave_struct __user *fx)
178{
H. Peter Anvin49b8c692012-09-21 17:18:44 -0700179 return user_insn(fnsave %[fx]; fwait, [fx] "=m" (*fx), "m" (*fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800180}
181
182static inline int fxsave_user(struct i387_fxsave_struct __user *fx)
183{
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700184 if (config_enabled(CONFIG_X86_32))
H. Peter Anvin49b8c692012-09-21 17:18:44 -0700185 return user_insn(fxsave %[fx], [fx] "=m" (*fx), "m" (*fx));
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700186 else if (config_enabled(CONFIG_AS_FXSAVEQ))
H. Peter Anvin49b8c692012-09-21 17:18:44 -0700187 return user_insn(fxsaveq %[fx], [fx] "=m" (*fx), "m" (*fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800188
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700189 /* See comment in fpu_fxsave() below. */
H. Peter Anvin49b8c692012-09-21 17:18:44 -0700190 return user_insn(rex64/fxsave (%[fx]), "=m" (*fx), [fx] "R" (fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800191}
192
Linus Torvalds1361b832012-02-21 13:19:22 -0800193static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
194{
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700195 if (config_enabled(CONFIG_X86_32))
196 return check_insn(fxrstor %[fx], "=m" (*fx), [fx] "m" (*fx));
197 else if (config_enabled(CONFIG_AS_FXSAVEQ))
198 return check_insn(fxrstorq %[fx], "=m" (*fx), [fx] "m" (*fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800199
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700200 /* See comment in fpu_fxsave() below. */
201 return check_insn(rex64/fxrstor (%[fx]), "=m" (*fx), [fx] "R" (fx),
202 "m" (*fx));
203}
204
H. Peter Anvine139e952012-09-25 15:42:18 -0700205static inline int fxrstor_user(struct i387_fxsave_struct __user *fx)
206{
207 if (config_enabled(CONFIG_X86_32))
208 return user_insn(fxrstor %[fx], "=m" (*fx), [fx] "m" (*fx));
209 else if (config_enabled(CONFIG_AS_FXSAVEQ))
210 return user_insn(fxrstorq %[fx], "=m" (*fx), [fx] "m" (*fx));
211
212 /* See comment in fpu_fxsave() below. */
213 return user_insn(rex64/fxrstor (%[fx]), "=m" (*fx), [fx] "R" (fx),
214 "m" (*fx));
215}
216
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700217static inline int frstor_checking(struct i387_fsave_struct *fx)
218{
219 return check_insn(frstor %[fx], "=m" (*fx), [fx] "m" (*fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800220}
221
H. Peter Anvine139e952012-09-25 15:42:18 -0700222static inline int frstor_user(struct i387_fsave_struct __user *fx)
223{
224 return user_insn(frstor %[fx], "=m" (*fx), [fx] "m" (*fx));
225}
226
Linus Torvalds1361b832012-02-21 13:19:22 -0800227static inline void fpu_fxsave(struct fpu *fpu)
228{
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700229 if (config_enabled(CONFIG_X86_32))
230 asm volatile( "fxsave %[fx]" : [fx] "=m" (fpu->state->fxsave));
231 else if (config_enabled(CONFIG_AS_FXSAVEQ))
Borislav Petkov6ca7a8a2014-12-21 15:02:23 +0100232 asm volatile("fxsaveq %[fx]" : [fx] "=m" (fpu->state->fxsave));
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700233 else {
234 /* Using "rex64; fxsave %0" is broken because, if the memory
235 * operand uses any extended registers for addressing, a second
236 * REX prefix will be generated (to the assembler, rex64
237 * followed by semicolon is a separate instruction), and hence
238 * the 64-bitness is lost.
239 *
240 * Using "fxsaveq %0" would be the ideal choice, but is only
241 * supported starting with gas 2.16.
242 *
243 * Using, as a workaround, the properly prefixed form below
244 * isn't accepted by any binutils version so far released,
245 * complaining that the same type of prefix is used twice if
246 * an extended register is needed for addressing (fix submitted
247 * to mainline 2005-11-21).
248 *
249 * asm volatile("rex64/fxsave %0" : "=m" (fpu->state->fxsave));
250 *
251 * This, however, we can work around by forcing the compiler to
252 * select an addressing mode that doesn't require extended
253 * registers.
254 */
255 asm volatile( "rex64/fxsave (%[fx])"
256 : "=m" (fpu->state->fxsave)
257 : [fx] "R" (&fpu->state->fxsave));
258 }
Linus Torvalds1361b832012-02-21 13:19:22 -0800259}
260
Linus Torvalds1361b832012-02-21 13:19:22 -0800261/*
262 * These must be called with preempt disabled. Returns
263 * 'true' if the FPU state is still intact.
264 */
265static inline int fpu_save_init(struct fpu *fpu)
266{
267 if (use_xsave()) {
Ingo Molnar0afc4a92015-04-22 15:14:44 +0200268 xsave_state(&fpu->state->xsave);
Linus Torvalds1361b832012-02-21 13:19:22 -0800269
270 /*
271 * xsave header may indicate the init state of the FP.
272 */
273 if (!(fpu->state->xsave.xsave_hdr.xstate_bv & XSTATE_FP))
274 return 1;
275 } else if (use_fxsr()) {
276 fpu_fxsave(fpu);
277 } else {
278 asm volatile("fnsave %[fx]; fwait"
279 : [fx] "=m" (fpu->state->fsave));
280 return 0;
281 }
282
283 /*
284 * If exceptions are pending, we need to clear them so
285 * that we don't randomly get exceptions later.
286 *
287 * FIXME! Is this perhaps only true for the old-style
288 * irq13 case? Maybe we could leave the x87 state
289 * intact otherwise?
290 */
291 if (unlikely(fpu->state->fxsave.swd & X87_FSW_ES)) {
292 asm volatile("fnclex");
293 return 0;
294 }
295 return 1;
296}
297
Linus Torvalds1361b832012-02-21 13:19:22 -0800298static inline int fpu_restore_checking(struct fpu *fpu)
299{
300 if (use_xsave())
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700301 return fpu_xrstor_checking(&fpu->state->xsave);
302 else if (use_fxsr())
303 return fxrstor_checking(&fpu->state->fxsave);
Linus Torvalds1361b832012-02-21 13:19:22 -0800304 else
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700305 return frstor_checking(&fpu->state->fsave);
Linus Torvalds1361b832012-02-21 13:19:22 -0800306}
307
308static inline int restore_fpu_checking(struct task_struct *tsk)
309{
Borislav Petkov6ca7a8a2014-12-21 15:02:23 +0100310 /*
311 * AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception is
312 * pending. Clear the x87 state here by setting it to fixed values.
313 * "m" is a random variable that should be in L1.
314 */
Borislav Petkov9b13a932014-06-18 00:06:23 +0200315 if (unlikely(static_cpu_has_bug_safe(X86_BUG_FXSAVE_LEAK))) {
Linus Torvalds26bef132014-01-11 19:15:52 -0800316 asm volatile(
317 "fnclex\n\t"
318 "emms\n\t"
319 "fildl %P[addr]" /* set F?P to defined value */
320 : : [addr] "m" (tsk->thread.fpu.has_fpu));
321 }
Linus Torvalds1361b832012-02-21 13:19:22 -0800322
323 return fpu_restore_checking(&tsk->thread.fpu);
324}
325
Linus Torvalds1361b832012-02-21 13:19:22 -0800326/* Must be paired with an 'stts' after! */
Ingo Molnar36fe6172015-04-23 12:08:58 +0200327static inline void __thread_clear_has_fpu(struct fpu *fpu)
Linus Torvalds1361b832012-02-21 13:19:22 -0800328{
Ingo Molnar36fe6172015-04-23 12:08:58 +0200329 fpu->has_fpu = 0;
Ingo Molnar36b544d2015-04-23 12:18:28 +0200330 this_cpu_write(fpu_fpregs_owner_ctx, NULL);
Linus Torvalds1361b832012-02-21 13:19:22 -0800331}
332
333/* Must be paired with a 'clts' before! */
Ingo Molnarc0311f62015-04-23 12:24:59 +0200334static inline void __thread_set_has_fpu(struct fpu *fpu)
Linus Torvalds1361b832012-02-21 13:19:22 -0800335{
Ingo Molnarc0311f62015-04-23 12:24:59 +0200336 fpu->has_fpu = 1;
337 this_cpu_write(fpu_fpregs_owner_ctx, fpu);
Linus Torvalds1361b832012-02-21 13:19:22 -0800338}
339
340/*
341 * Encapsulate the CR0.TS handling together with the
342 * software flag.
343 *
344 * These generally need preemption protection to work,
345 * do try to avoid using these on their own.
346 */
Ingo Molnar35191e32015-04-23 12:26:55 +0200347static inline void __thread_fpu_end(struct fpu *fpu)
Linus Torvalds1361b832012-02-21 13:19:22 -0800348{
Ingo Molnar35191e32015-04-23 12:26:55 +0200349 __thread_clear_has_fpu(fpu);
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700350 if (!use_eager_fpu())
Suresh Siddha304bced2012-08-24 14:13:02 -0700351 stts();
Linus Torvalds1361b832012-02-21 13:19:22 -0800352}
353
Ingo Molnar4540d3f2015-04-23 12:31:17 +0200354static inline void __thread_fpu_begin(struct fpu *fpu)
Linus Torvalds1361b832012-02-21 13:19:22 -0800355{
Oleg Nesterov31d96332014-09-02 19:57:20 +0200356 if (!use_eager_fpu())
Suresh Siddha304bced2012-08-24 14:13:02 -0700357 clts();
Ingo Molnar4540d3f2015-04-23 12:31:17 +0200358 __thread_set_has_fpu(fpu);
Linus Torvalds1361b832012-02-21 13:19:22 -0800359}
360
Suresh Siddha304bced2012-08-24 14:13:02 -0700361static inline void drop_fpu(struct task_struct *tsk)
362{
Ingo Molnar276983f2015-04-23 11:55:18 +0200363 struct fpu *fpu = &tsk->thread.fpu;
Suresh Siddha304bced2012-08-24 14:13:02 -0700364 /*
365 * Forget coprocessor state..
366 */
367 preempt_disable();
Ingo Molnarc0c28032015-04-22 09:52:56 +0200368 tsk->thread.fpu.counter = 0;
Borislav Petkovd2d0ac92015-03-14 11:52:12 +0100369
Ingo Molnar276983f2015-04-23 11:55:18 +0200370 if (fpu->has_fpu) {
Borislav Petkovd2d0ac92015-03-14 11:52:12 +0100371 /* Ignore delayed exceptions from user space */
372 asm volatile("1: fwait\n"
373 "2:\n"
374 _ASM_EXTABLE(1b, 2b));
Ingo Molnar35191e32015-04-23 12:26:55 +0200375 __thread_fpu_end(fpu);
Borislav Petkovd2d0ac92015-03-14 11:52:12 +0100376 }
377
Oleg Nesterovf4c36862015-03-13 09:53:10 +0100378 clear_stopped_child_used_math(tsk);
Suresh Siddha304bced2012-08-24 14:13:02 -0700379 preempt_enable();
380}
381
Oleg Nesterov8f4d8182015-03-11 18:34:29 +0100382static inline void restore_init_xstate(void)
383{
384 if (use_xsave())
385 xrstor_state(init_xstate_buf, -1);
386 else
387 fxrstor_checking(&init_xstate_buf->i387);
388}
389
Borislav Petkovb85e67d2015-03-16 10:21:55 +0100390/*
391 * Reset the FPU state in the eager case and drop it in the lazy case (later use
392 * will reinit it).
393 */
394static inline void fpu_reset_state(struct task_struct *tsk)
Suresh Siddha304bced2012-08-24 14:13:02 -0700395{
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700396 if (!use_eager_fpu())
Suresh Siddha304bced2012-08-24 14:13:02 -0700397 drop_fpu(tsk);
Oleg Nesterov8f4d8182015-03-11 18:34:29 +0100398 else
399 restore_init_xstate();
Suresh Siddha304bced2012-08-24 14:13:02 -0700400}
401
Linus Torvalds1361b832012-02-21 13:19:22 -0800402/*
403 * FPU state switching for scheduling.
404 *
405 * This is a two-stage process:
406 *
407 * - switch_fpu_prepare() saves the old state and
408 * sets the new state of the CR0.TS bit. This is
409 * done within the context of the old process.
410 *
411 * - switch_fpu_finish() restores the new state as
412 * necessary.
413 */
414typedef struct { int preload; } fpu_switch_t;
415
Linus Torvalds1361b832012-02-21 13:19:22 -0800416static inline fpu_switch_t switch_fpu_prepare(struct task_struct *old, struct task_struct *new, int cpu)
417{
Ingo Molnar276983f2015-04-23 11:55:18 +0200418 struct fpu *old_fpu = &old->thread.fpu;
Ingo Molnarc0311f62015-04-23 12:24:59 +0200419 struct fpu *new_fpu = &new->thread.fpu;
Linus Torvalds1361b832012-02-21 13:19:22 -0800420 fpu_switch_t fpu;
421
Suresh Siddha304bced2012-08-24 14:13:02 -0700422 /*
423 * If the task has used the math, pre-load the FPU on xsave processors
424 * or if the past 5 consecutive context-switches used math.
425 */
Rik van Riel1361ef22015-02-06 15:02:03 -0500426 fpu.preload = tsk_used_math(new) &&
Ingo Molnarc0c28032015-04-22 09:52:56 +0200427 (use_eager_fpu() || new->thread.fpu.counter > 5);
Rik van Riel1361ef22015-02-06 15:02:03 -0500428
Ingo Molnar276983f2015-04-23 11:55:18 +0200429 if (old_fpu->has_fpu) {
Ingo Molnar6522d782015-04-22 19:54:09 +0200430 if (!fpu_save_init(&old->thread.fpu))
Rik van Riel6a5fe892015-02-06 15:02:04 -0500431 task_disable_lazy_fpu_restore(old);
Rik van Riel1361ef22015-02-06 15:02:03 -0500432 else
433 old->thread.fpu.last_cpu = cpu;
434
Ingo Molnar36b544d2015-04-23 12:18:28 +0200435 /* But leave fpu_fpregs_owner_ctx! */
Rik van Riel1361ef22015-02-06 15:02:03 -0500436 old->thread.fpu.has_fpu = 0;
Linus Torvalds1361b832012-02-21 13:19:22 -0800437
438 /* Don't change CR0.TS if we just switch! */
439 if (fpu.preload) {
Ingo Molnarc0c28032015-04-22 09:52:56 +0200440 new->thread.fpu.counter++;
Ingo Molnarc0311f62015-04-23 12:24:59 +0200441 __thread_set_has_fpu(new_fpu);
Linus Torvalds1361b832012-02-21 13:19:22 -0800442 prefetch(new->thread.fpu.state);
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700443 } else if (!use_eager_fpu())
Linus Torvalds1361b832012-02-21 13:19:22 -0800444 stts();
445 } else {
Ingo Molnarc0c28032015-04-22 09:52:56 +0200446 old->thread.fpu.counter = 0;
Rik van Riel6a5fe892015-02-06 15:02:04 -0500447 task_disable_lazy_fpu_restore(old);
Linus Torvalds1361b832012-02-21 13:19:22 -0800448 if (fpu.preload) {
Ingo Molnarc0c28032015-04-22 09:52:56 +0200449 new->thread.fpu.counter++;
Rik van Riel728e53f2015-02-06 15:02:05 -0500450 if (fpu_lazy_restore(new, cpu))
Linus Torvalds1361b832012-02-21 13:19:22 -0800451 fpu.preload = 0;
452 else
453 prefetch(new->thread.fpu.state);
Ingo Molnar4540d3f2015-04-23 12:31:17 +0200454 __thread_fpu_begin(new_fpu);
Linus Torvalds1361b832012-02-21 13:19:22 -0800455 }
456 }
457 return fpu;
458}
459
460/*
461 * By the time this gets called, we've already cleared CR0.TS and
462 * given the process the FPU if we are going to preload the FPU
463 * state - all we need to do is to conditionally restore the register
464 * state itself.
465 */
466static inline void switch_fpu_finish(struct task_struct *new, fpu_switch_t fpu)
467{
468 if (fpu.preload) {
469 if (unlikely(restore_fpu_checking(new)))
Borislav Petkovb85e67d2015-03-16 10:21:55 +0100470 fpu_reset_state(new);
Linus Torvalds1361b832012-02-21 13:19:22 -0800471 }
472}
473
474/*
475 * Signal frame handlers...
476 */
Suresh Siddha72a671c2012-07-24 16:05:29 -0700477extern int save_xstate_sig(void __user *buf, void __user *fx, int size);
478extern int __restore_xstate_sig(void __user *buf, void __user *fx, int size);
Linus Torvalds1361b832012-02-21 13:19:22 -0800479
Suresh Siddha72a671c2012-07-24 16:05:29 -0700480static inline int xstate_sigframe_size(void)
Linus Torvalds1361b832012-02-21 13:19:22 -0800481{
Suresh Siddha72a671c2012-07-24 16:05:29 -0700482 return use_xsave() ? xstate_size + FP_XSTATE_MAGIC2_SIZE : xstate_size;
483}
484
485static inline int restore_xstate_sig(void __user *buf, int ia32_frame)
486{
487 void __user *buf_fx = buf;
488 int size = xstate_sigframe_size();
489
490 if (ia32_frame && use_fxsr()) {
491 buf_fx = buf + sizeof(struct i387_fsave_struct);
492 size += sizeof(struct i387_fsave_struct);
Linus Torvalds1361b832012-02-21 13:19:22 -0800493 }
Suresh Siddha72a671c2012-07-24 16:05:29 -0700494
495 return __restore_xstate_sig(buf, buf_fx, size);
Linus Torvalds1361b832012-02-21 13:19:22 -0800496}
497
498/*
Oleg Nesterovfb14b4e2015-03-11 18:34:09 +0100499 * Needs to be preemption-safe.
Linus Torvalds1361b832012-02-21 13:19:22 -0800500 *
Suresh Siddha377ffbc2012-08-24 14:12:58 -0700501 * NOTE! user_fpu_begin() must be used only immediately before restoring
Oleg Nesterovfb14b4e2015-03-11 18:34:09 +0100502 * the save state. It does not do any saving/restoring on its own. In
503 * lazy FPU mode, it is just an optimization to avoid a #NM exception,
504 * the task can lose the FPU right after preempt_enable().
Linus Torvalds1361b832012-02-21 13:19:22 -0800505 */
Linus Torvalds1361b832012-02-21 13:19:22 -0800506static inline void user_fpu_begin(void)
507{
Ingo Molnar4540d3f2015-04-23 12:31:17 +0200508 struct fpu *fpu = &current->thread.fpu;
509
Linus Torvalds1361b832012-02-21 13:19:22 -0800510 preempt_disable();
511 if (!user_has_fpu())
Ingo Molnar4540d3f2015-04-23 12:31:17 +0200512 __thread_fpu_begin(fpu);
Linus Torvalds1361b832012-02-21 13:19:22 -0800513 preempt_enable();
514}
515
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700516static inline void __save_fpu(struct task_struct *tsk)
517{
Fenghua Yuf41d8302014-05-29 11:12:41 -0700518 if (use_xsave()) {
519 if (unlikely(system_state == SYSTEM_BOOTING))
Ingo Molnar3e261c12015-04-22 15:08:34 +0200520 xsave_state_booting(&tsk->thread.fpu.state->xsave);
Fenghua Yuf41d8302014-05-29 11:12:41 -0700521 else
Ingo Molnar3e261c12015-04-22 15:08:34 +0200522 xsave_state(&tsk->thread.fpu.state->xsave);
Fenghua Yuf41d8302014-05-29 11:12:41 -0700523 } else
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700524 fpu_fxsave(&tsk->thread.fpu);
525}
526
Linus Torvalds1361b832012-02-21 13:19:22 -0800527/*
Linus Torvalds1361b832012-02-21 13:19:22 -0800528 * i387 state interaction
529 */
530static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
531{
532 if (cpu_has_fxsr) {
533 return tsk->thread.fpu.state->fxsave.cwd;
534 } else {
535 return (unsigned short)tsk->thread.fpu.state->fsave.cwd;
536 }
537}
538
539static inline unsigned short get_fpu_swd(struct task_struct *tsk)
540{
541 if (cpu_has_fxsr) {
542 return tsk->thread.fpu.state->fxsave.swd;
543 } else {
544 return (unsigned short)tsk->thread.fpu.state->fsave.swd;
545 }
546}
547
548static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
549{
550 if (cpu_has_xmm) {
551 return tsk->thread.fpu.state->fxsave.mxcsr;
552 } else {
553 return MXCSR_DEFAULT;
554 }
555}
556
Ingo Molnar8ffb53a2015-04-22 15:41:56 +0200557extern void fpstate_cache_init(void);
558
Ingo Molnared97b082015-04-03 12:41:14 +0200559extern int fpstate_alloc(struct fpu *fpu);
Ingo Molnar5a12bf62015-04-22 15:58:37 +0200560extern void fpstate_free(struct fpu *fpu);
Ingo Molnara752b532015-04-22 15:47:05 +0200561extern int fpu__copy(struct task_struct *dst, struct task_struct *src);
Linus Torvalds1361b832012-02-21 13:19:22 -0800562
Suresh Siddha72a671c2012-07-24 16:05:29 -0700563static inline unsigned long
564alloc_mathframe(unsigned long sp, int ia32_frame, unsigned long *buf_fx,
565 unsigned long *size)
566{
567 unsigned long frame_size = xstate_sigframe_size();
568
569 *buf_fx = sp = round_down(sp - frame_size, 64);
570 if (ia32_frame && use_fxsr()) {
571 frame_size += sizeof(struct i387_fsave_struct);
572 sp -= sizeof(struct i387_fsave_struct);
573 }
574
575 *size = frame_size;
576 return sp;
577}
Linus Torvalds1361b832012-02-21 13:19:22 -0800578
579#endif