blob: e5f8f8eaf2258b38fc6e04866fc8b2afa5a64f1d [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
13#include <linux/kernel_stat.h>
14#include <linux/regset.h>
Suresh Siddha050902c2012-07-24 16:05:27 -070015#include <linux/compat.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080016#include <linux/slab.h>
17#include <asm/asm.h>
18#include <asm/cpufeature.h>
19#include <asm/processor.h>
20#include <asm/sigcontext.h>
21#include <asm/user.h>
22#include <asm/uaccess.h>
23#include <asm/xsave.h>
H. Peter Anvin49b8c6952012-09-21 17:18:44 -070024#include <asm/smap.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080025
Suresh Siddha72a671c2012-07-24 16:05:29 -070026#ifdef CONFIG_X86_64
27# include <asm/sigcontext32.h>
28# include <asm/user32.h>
Al Viro235b8022012-11-09 23:51:47 -050029struct ksignal;
30int ia32_setup_rt_frame(int sig, struct ksignal *ksig,
Suresh Siddha72a671c2012-07-24 16:05:29 -070031 compat_sigset_t *set, struct pt_regs *regs);
Al Viro235b8022012-11-09 23:51:47 -050032int ia32_setup_frame(int sig, struct ksignal *ksig,
Suresh Siddha72a671c2012-07-24 16:05:29 -070033 compat_sigset_t *set, struct pt_regs *regs);
34#else
35# define user_i387_ia32_struct user_i387_struct
36# define user32_fxsr_struct user_fxsr_struct
37# define ia32_setup_frame __setup_frame
38# define ia32_setup_rt_frame __setup_rt_frame
39#endif
40
41extern unsigned int mxcsr_feature_mask;
Linus Torvalds1361b832012-02-21 13:19:22 -080042extern void fpu_init(void);
Suresh Siddha5d2bd702012-09-06 14:58:52 -070043extern void eager_fpu_init(void);
Linus Torvalds1361b832012-02-21 13:19:22 -080044
45DECLARE_PER_CPU(struct task_struct *, fpu_owner_task);
46
Suresh Siddha72a671c2012-07-24 16:05:29 -070047extern void convert_from_fxsr(struct user_i387_ia32_struct *env,
48 struct task_struct *tsk);
49extern void convert_to_fxsr(struct task_struct *tsk,
50 const struct user_i387_ia32_struct *env);
51
Linus Torvalds1361b832012-02-21 13:19:22 -080052extern user_regset_active_fn fpregs_active, xfpregs_active;
53extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get,
54 xstateregs_get;
55extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set,
56 xstateregs_set;
57
Linus Torvalds1361b832012-02-21 13:19:22 -080058/*
59 * xstateregs_active == fpregs_active. Please refer to the comment
60 * at the definition of fpregs_active.
61 */
62#define xstateregs_active fpregs_active
63
Linus Torvalds1361b832012-02-21 13:19:22 -080064#ifdef CONFIG_MATH_EMULATION
65extern void finit_soft_fpu(struct i387_soft_struct *soft);
66#else
67static inline void finit_soft_fpu(struct i387_soft_struct *soft) {}
68#endif
69
Rik van Riel1c927ee2015-02-06 15:02:01 -050070/*
71 * Must be run with preemption disabled: this clears the fpu_owner_task,
72 * on this CPU.
73 *
74 * This will disable any lazy FPU state restore of the current FPU state,
75 * but if the current thread owns the FPU, it will still be saved by.
76 */
77static inline void __cpu_disable_lazy_restore(unsigned int cpu)
78{
79 per_cpu(fpu_owner_task, cpu) = NULL;
80}
81
Rik van Riel33e03de2015-02-06 15:02:02 -050082/*
83 * Used to indicate that the FPU state in memory is newer than the FPU
84 * state in registers, and the FPU state should be reloaded next time the
85 * task is run. Only safe on the current task, or non-running tasks.
86 */
87static inline void task_disable_lazy_fpu_restore(struct task_struct *tsk)
88{
89 tsk->thread.fpu.last_cpu = ~0;
90}
91
Rik van Riel1c927ee2015-02-06 15:02:01 -050092static inline int fpu_lazy_restore(struct task_struct *new, unsigned int cpu)
93{
94 return new == this_cpu_read_stable(fpu_owner_task) &&
95 cpu == new->thread.fpu.last_cpu;
96}
97
Suresh Siddha050902c2012-07-24 16:05:27 -070098static inline int is_ia32_compat_frame(void)
99{
100 return config_enabled(CONFIG_IA32_EMULATION) &&
101 test_thread_flag(TIF_IA32);
102}
103
104static inline int is_ia32_frame(void)
105{
106 return config_enabled(CONFIG_X86_32) || is_ia32_compat_frame();
107}
108
109static inline int is_x32_frame(void)
110{
111 return config_enabled(CONFIG_X86_X32_ABI) && test_thread_flag(TIF_X32);
112}
113
Linus Torvalds1361b832012-02-21 13:19:22 -0800114#define X87_FSW_ES (1 << 7) /* Exception Summary */
115
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700116static __always_inline __pure bool use_eager_fpu(void)
117{
Matt Flemingc6b40692014-03-27 15:10:40 -0700118 return static_cpu_has_safe(X86_FEATURE_EAGER_FPU);
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700119}
120
Linus Torvalds1361b832012-02-21 13:19:22 -0800121static __always_inline __pure bool use_xsaveopt(void)
122{
Matt Flemingc6b40692014-03-27 15:10:40 -0700123 return static_cpu_has_safe(X86_FEATURE_XSAVEOPT);
Linus Torvalds1361b832012-02-21 13:19:22 -0800124}
125
126static __always_inline __pure bool use_xsave(void)
127{
Matt Flemingc6b40692014-03-27 15:10:40 -0700128 return static_cpu_has_safe(X86_FEATURE_XSAVE);
Linus Torvalds1361b832012-02-21 13:19:22 -0800129}
130
131static __always_inline __pure bool use_fxsr(void)
132{
Matt Flemingc6b40692014-03-27 15:10:40 -0700133 return static_cpu_has_safe(X86_FEATURE_FXSR);
Linus Torvalds1361b832012-02-21 13:19:22 -0800134}
135
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700136static inline void fx_finit(struct i387_fxsave_struct *fx)
137{
138 memset(fx, 0, xstate_size);
139 fx->cwd = 0x37f;
Suresh Siddhaa8615af2012-09-10 10:40:08 -0700140 fx->mxcsr = MXCSR_DEFAULT;
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700141}
142
Linus Torvalds1361b832012-02-21 13:19:22 -0800143extern void __sanitize_i387_state(struct task_struct *);
144
145static inline void sanitize_i387_state(struct task_struct *tsk)
146{
147 if (!use_xsaveopt())
148 return;
149 __sanitize_i387_state(tsk);
150}
151
H. Peter Anvin49b8c6952012-09-21 17:18:44 -0700152#define user_insn(insn, output, input...) \
153({ \
154 int err; \
155 asm volatile(ASM_STAC "\n" \
156 "1:" #insn "\n\t" \
157 "2: " ASM_CLAC "\n" \
158 ".section .fixup,\"ax\"\n" \
159 "3: movl $-1,%[err]\n" \
160 " jmp 2b\n" \
161 ".previous\n" \
162 _ASM_EXTABLE(1b, 3b) \
163 : [err] "=r" (err), output \
164 : "0"(0), input); \
165 err; \
166})
Linus Torvalds1361b832012-02-21 13:19:22 -0800167
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700168#define check_insn(insn, output, input...) \
169({ \
170 int err; \
171 asm volatile("1:" #insn "\n\t" \
172 "2:\n" \
173 ".section .fixup,\"ax\"\n" \
174 "3: movl $-1,%[err]\n" \
175 " jmp 2b\n" \
176 ".previous\n" \
177 _ASM_EXTABLE(1b, 3b) \
178 : [err] "=r" (err), output \
179 : "0"(0), input); \
180 err; \
181})
Linus Torvalds1361b832012-02-21 13:19:22 -0800182
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700183static inline int fsave_user(struct i387_fsave_struct __user *fx)
184{
H. Peter Anvin49b8c6952012-09-21 17:18:44 -0700185 return user_insn(fnsave %[fx]; fwait, [fx] "=m" (*fx), "m" (*fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800186}
187
188static inline int fxsave_user(struct i387_fxsave_struct __user *fx)
189{
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700190 if (config_enabled(CONFIG_X86_32))
H. Peter Anvin49b8c6952012-09-21 17:18:44 -0700191 return user_insn(fxsave %[fx], [fx] "=m" (*fx), "m" (*fx));
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700192 else if (config_enabled(CONFIG_AS_FXSAVEQ))
H. Peter Anvin49b8c6952012-09-21 17:18:44 -0700193 return user_insn(fxsaveq %[fx], [fx] "=m" (*fx), "m" (*fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800194
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700195 /* See comment in fpu_fxsave() below. */
H. Peter Anvin49b8c6952012-09-21 17:18:44 -0700196 return user_insn(rex64/fxsave (%[fx]), "=m" (*fx), [fx] "R" (fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800197}
198
Linus Torvalds1361b832012-02-21 13:19:22 -0800199static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
200{
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700201 if (config_enabled(CONFIG_X86_32))
202 return check_insn(fxrstor %[fx], "=m" (*fx), [fx] "m" (*fx));
203 else if (config_enabled(CONFIG_AS_FXSAVEQ))
204 return check_insn(fxrstorq %[fx], "=m" (*fx), [fx] "m" (*fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800205
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700206 /* See comment in fpu_fxsave() below. */
207 return check_insn(rex64/fxrstor (%[fx]), "=m" (*fx), [fx] "R" (fx),
208 "m" (*fx));
209}
210
H. Peter Anvine139e952012-09-25 15:42:18 -0700211static inline int fxrstor_user(struct i387_fxsave_struct __user *fx)
212{
213 if (config_enabled(CONFIG_X86_32))
214 return user_insn(fxrstor %[fx], "=m" (*fx), [fx] "m" (*fx));
215 else if (config_enabled(CONFIG_AS_FXSAVEQ))
216 return user_insn(fxrstorq %[fx], "=m" (*fx), [fx] "m" (*fx));
217
218 /* See comment in fpu_fxsave() below. */
219 return user_insn(rex64/fxrstor (%[fx]), "=m" (*fx), [fx] "R" (fx),
220 "m" (*fx));
221}
222
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700223static inline int frstor_checking(struct i387_fsave_struct *fx)
224{
225 return check_insn(frstor %[fx], "=m" (*fx), [fx] "m" (*fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800226}
227
H. Peter Anvine139e952012-09-25 15:42:18 -0700228static inline int frstor_user(struct i387_fsave_struct __user *fx)
229{
230 return user_insn(frstor %[fx], "=m" (*fx), [fx] "m" (*fx));
231}
232
Linus Torvalds1361b832012-02-21 13:19:22 -0800233static inline void fpu_fxsave(struct fpu *fpu)
234{
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700235 if (config_enabled(CONFIG_X86_32))
236 asm volatile( "fxsave %[fx]" : [fx] "=m" (fpu->state->fxsave));
237 else if (config_enabled(CONFIG_AS_FXSAVEQ))
238 asm volatile("fxsaveq %0" : "=m" (fpu->state->fxsave));
239 else {
240 /* Using "rex64; fxsave %0" is broken because, if the memory
241 * operand uses any extended registers for addressing, a second
242 * REX prefix will be generated (to the assembler, rex64
243 * followed by semicolon is a separate instruction), and hence
244 * the 64-bitness is lost.
245 *
246 * Using "fxsaveq %0" would be the ideal choice, but is only
247 * supported starting with gas 2.16.
248 *
249 * Using, as a workaround, the properly prefixed form below
250 * isn't accepted by any binutils version so far released,
251 * complaining that the same type of prefix is used twice if
252 * an extended register is needed for addressing (fix submitted
253 * to mainline 2005-11-21).
254 *
255 * asm volatile("rex64/fxsave %0" : "=m" (fpu->state->fxsave));
256 *
257 * This, however, we can work around by forcing the compiler to
258 * select an addressing mode that doesn't require extended
259 * registers.
260 */
261 asm volatile( "rex64/fxsave (%[fx])"
262 : "=m" (fpu->state->fxsave)
263 : [fx] "R" (&fpu->state->fxsave));
264 }
Linus Torvalds1361b832012-02-21 13:19:22 -0800265}
266
Linus Torvalds1361b832012-02-21 13:19:22 -0800267/*
268 * These must be called with preempt disabled. Returns
269 * 'true' if the FPU state is still intact.
270 */
271static inline int fpu_save_init(struct fpu *fpu)
272{
273 if (use_xsave()) {
274 fpu_xsave(fpu);
275
276 /*
277 * xsave header may indicate the init state of the FP.
278 */
279 if (!(fpu->state->xsave.xsave_hdr.xstate_bv & XSTATE_FP))
280 return 1;
281 } else if (use_fxsr()) {
282 fpu_fxsave(fpu);
283 } else {
284 asm volatile("fnsave %[fx]; fwait"
285 : [fx] "=m" (fpu->state->fsave));
286 return 0;
287 }
288
289 /*
290 * If exceptions are pending, we need to clear them so
291 * that we don't randomly get exceptions later.
292 *
293 * FIXME! Is this perhaps only true for the old-style
294 * irq13 case? Maybe we could leave the x87 state
295 * intact otherwise?
296 */
297 if (unlikely(fpu->state->fxsave.swd & X87_FSW_ES)) {
298 asm volatile("fnclex");
299 return 0;
300 }
301 return 1;
302}
303
304static inline int __save_init_fpu(struct task_struct *tsk)
305{
306 return fpu_save_init(&tsk->thread.fpu);
307}
308
Linus Torvalds1361b832012-02-21 13:19:22 -0800309static inline int fpu_restore_checking(struct fpu *fpu)
310{
311 if (use_xsave())
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700312 return fpu_xrstor_checking(&fpu->state->xsave);
313 else if (use_fxsr())
314 return fxrstor_checking(&fpu->state->fxsave);
Linus Torvalds1361b832012-02-21 13:19:22 -0800315 else
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700316 return frstor_checking(&fpu->state->fsave);
Linus Torvalds1361b832012-02-21 13:19:22 -0800317}
318
319static inline int restore_fpu_checking(struct task_struct *tsk)
320{
321 /* AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception
322 is pending. Clear the x87 state here by setting it to fixed
323 values. "m" is a random variable that should be in L1 */
Borislav Petkov9b13a932014-06-18 00:06:23 +0200324 if (unlikely(static_cpu_has_bug_safe(X86_BUG_FXSAVE_LEAK))) {
Linus Torvalds26bef132014-01-11 19:15:52 -0800325 asm volatile(
326 "fnclex\n\t"
327 "emms\n\t"
328 "fildl %P[addr]" /* set F?P to defined value */
329 : : [addr] "m" (tsk->thread.fpu.has_fpu));
330 }
Linus Torvalds1361b832012-02-21 13:19:22 -0800331
332 return fpu_restore_checking(&tsk->thread.fpu);
333}
334
335/*
336 * Software FPU state helpers. Careful: these need to
337 * be preemption protection *and* they need to be
338 * properly paired with the CR0.TS changes!
339 */
340static inline int __thread_has_fpu(struct task_struct *tsk)
341{
342 return tsk->thread.fpu.has_fpu;
343}
344
345/* Must be paired with an 'stts' after! */
346static inline void __thread_clear_has_fpu(struct task_struct *tsk)
347{
348 tsk->thread.fpu.has_fpu = 0;
Alex Shic6ae41e2012-05-11 15:35:27 +0800349 this_cpu_write(fpu_owner_task, NULL);
Linus Torvalds1361b832012-02-21 13:19:22 -0800350}
351
352/* Must be paired with a 'clts' before! */
353static inline void __thread_set_has_fpu(struct task_struct *tsk)
354{
355 tsk->thread.fpu.has_fpu = 1;
Alex Shic6ae41e2012-05-11 15:35:27 +0800356 this_cpu_write(fpu_owner_task, tsk);
Linus Torvalds1361b832012-02-21 13:19:22 -0800357}
358
359/*
360 * Encapsulate the CR0.TS handling together with the
361 * software flag.
362 *
363 * These generally need preemption protection to work,
364 * do try to avoid using these on their own.
365 */
366static inline void __thread_fpu_end(struct task_struct *tsk)
367{
368 __thread_clear_has_fpu(tsk);
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700369 if (!use_eager_fpu())
Suresh Siddha304bced2012-08-24 14:13:02 -0700370 stts();
Linus Torvalds1361b832012-02-21 13:19:22 -0800371}
372
373static inline void __thread_fpu_begin(struct task_struct *tsk)
374{
Oleg Nesterov31d96332014-09-02 19:57:20 +0200375 if (!use_eager_fpu())
Suresh Siddha304bced2012-08-24 14:13:02 -0700376 clts();
Linus Torvalds1361b832012-02-21 13:19:22 -0800377 __thread_set_has_fpu(tsk);
378}
379
Suresh Siddha304bced2012-08-24 14:13:02 -0700380static inline void __drop_fpu(struct task_struct *tsk)
381{
382 if (__thread_has_fpu(tsk)) {
383 /* Ignore delayed exceptions from user space */
384 asm volatile("1: fwait\n"
385 "2:\n"
386 _ASM_EXTABLE(1b, 2b));
387 __thread_fpu_end(tsk);
388 }
389}
390
391static inline void drop_fpu(struct task_struct *tsk)
392{
393 /*
394 * Forget coprocessor state..
395 */
396 preempt_disable();
Vineet Guptac375f152013-11-12 15:08:46 -0800397 tsk->thread.fpu_counter = 0;
Suresh Siddha304bced2012-08-24 14:13:02 -0700398 __drop_fpu(tsk);
399 clear_used_math();
400 preempt_enable();
401}
402
403static inline void drop_init_fpu(struct task_struct *tsk)
404{
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700405 if (!use_eager_fpu())
Suresh Siddha304bced2012-08-24 14:13:02 -0700406 drop_fpu(tsk);
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700407 else {
408 if (use_xsave())
409 xrstor_state(init_xstate_buf, -1);
410 else
411 fxrstor_checking(&init_xstate_buf->i387);
412 }
Suresh Siddha304bced2012-08-24 14:13:02 -0700413}
414
Linus Torvalds1361b832012-02-21 13:19:22 -0800415/*
416 * FPU state switching for scheduling.
417 *
418 * This is a two-stage process:
419 *
420 * - switch_fpu_prepare() saves the old state and
421 * sets the new state of the CR0.TS bit. This is
422 * done within the context of the old process.
423 *
424 * - switch_fpu_finish() restores the new state as
425 * necessary.
426 */
427typedef struct { int preload; } fpu_switch_t;
428
Linus Torvalds1361b832012-02-21 13:19:22 -0800429static inline fpu_switch_t switch_fpu_prepare(struct task_struct *old, struct task_struct *new, int cpu)
430{
431 fpu_switch_t fpu;
432
Suresh Siddha304bced2012-08-24 14:13:02 -0700433 /*
434 * If the task has used the math, pre-load the FPU on xsave processors
435 * or if the past 5 consecutive context-switches used math.
436 */
Rik van Riel1361ef22015-02-06 15:02:03 -0500437 fpu.preload = tsk_used_math(new) &&
438 (use_eager_fpu() || new->thread.fpu_counter > 5);
439
Linus Torvalds1361b832012-02-21 13:19:22 -0800440 if (__thread_has_fpu(old)) {
441 if (!__save_init_fpu(old))
Rik van Riel6a5fe892015-02-06 15:02:04 -0500442 task_disable_lazy_fpu_restore(old);
Rik van Riel1361ef22015-02-06 15:02:03 -0500443 else
444 old->thread.fpu.last_cpu = cpu;
445
446 /* But leave fpu_owner_task! */
447 old->thread.fpu.has_fpu = 0;
Linus Torvalds1361b832012-02-21 13:19:22 -0800448
449 /* Don't change CR0.TS if we just switch! */
450 if (fpu.preload) {
Vineet Guptac375f152013-11-12 15:08:46 -0800451 new->thread.fpu_counter++;
Linus Torvalds1361b832012-02-21 13:19:22 -0800452 __thread_set_has_fpu(new);
453 prefetch(new->thread.fpu.state);
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700454 } else if (!use_eager_fpu())
Linus Torvalds1361b832012-02-21 13:19:22 -0800455 stts();
456 } else {
Vineet Guptac375f152013-11-12 15:08:46 -0800457 old->thread.fpu_counter = 0;
Rik van Riel6a5fe892015-02-06 15:02:04 -0500458 task_disable_lazy_fpu_restore(old);
Linus Torvalds1361b832012-02-21 13:19:22 -0800459 if (fpu.preload) {
Vineet Guptac375f152013-11-12 15:08:46 -0800460 new->thread.fpu_counter++;
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700461 if (!use_eager_fpu() && fpu_lazy_restore(new, cpu))
Linus Torvalds1361b832012-02-21 13:19:22 -0800462 fpu.preload = 0;
463 else
464 prefetch(new->thread.fpu.state);
465 __thread_fpu_begin(new);
466 }
467 }
468 return fpu;
469}
470
471/*
472 * By the time this gets called, we've already cleared CR0.TS and
473 * given the process the FPU if we are going to preload the FPU
474 * state - all we need to do is to conditionally restore the register
475 * state itself.
476 */
477static inline void switch_fpu_finish(struct task_struct *new, fpu_switch_t fpu)
478{
479 if (fpu.preload) {
480 if (unlikely(restore_fpu_checking(new)))
Suresh Siddha304bced2012-08-24 14:13:02 -0700481 drop_init_fpu(new);
Linus Torvalds1361b832012-02-21 13:19:22 -0800482 }
483}
484
485/*
486 * Signal frame handlers...
487 */
Suresh Siddha72a671c2012-07-24 16:05:29 -0700488extern int save_xstate_sig(void __user *buf, void __user *fx, int size);
489extern int __restore_xstate_sig(void __user *buf, void __user *fx, int size);
Linus Torvalds1361b832012-02-21 13:19:22 -0800490
Suresh Siddha72a671c2012-07-24 16:05:29 -0700491static inline int xstate_sigframe_size(void)
Linus Torvalds1361b832012-02-21 13:19:22 -0800492{
Suresh Siddha72a671c2012-07-24 16:05:29 -0700493 return use_xsave() ? xstate_size + FP_XSTATE_MAGIC2_SIZE : xstate_size;
494}
495
496static inline int restore_xstate_sig(void __user *buf, int ia32_frame)
497{
498 void __user *buf_fx = buf;
499 int size = xstate_sigframe_size();
500
501 if (ia32_frame && use_fxsr()) {
502 buf_fx = buf + sizeof(struct i387_fsave_struct);
503 size += sizeof(struct i387_fsave_struct);
Linus Torvalds1361b832012-02-21 13:19:22 -0800504 }
Suresh Siddha72a671c2012-07-24 16:05:29 -0700505
506 return __restore_xstate_sig(buf, buf_fx, size);
Linus Torvalds1361b832012-02-21 13:19:22 -0800507}
508
509/*
Suresh Siddha377ffbc2012-08-24 14:12:58 -0700510 * Need to be preemption-safe.
Linus Torvalds1361b832012-02-21 13:19:22 -0800511 *
Suresh Siddha377ffbc2012-08-24 14:12:58 -0700512 * NOTE! user_fpu_begin() must be used only immediately before restoring
513 * it. This function does not do any save/restore on their own.
Linus Torvalds1361b832012-02-21 13:19:22 -0800514 */
Linus Torvalds1361b832012-02-21 13:19:22 -0800515static inline void user_fpu_begin(void)
516{
517 preempt_disable();
518 if (!user_has_fpu())
519 __thread_fpu_begin(current);
520 preempt_enable();
521}
522
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700523static inline void __save_fpu(struct task_struct *tsk)
524{
Fenghua Yuf41d8302014-05-29 11:12:41 -0700525 if (use_xsave()) {
526 if (unlikely(system_state == SYSTEM_BOOTING))
527 xsave_state_booting(&tsk->thread.fpu.state->xsave, -1);
528 else
529 xsave_state(&tsk->thread.fpu.state->xsave, -1);
530 } else
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700531 fpu_fxsave(&tsk->thread.fpu);
532}
533
Linus Torvalds1361b832012-02-21 13:19:22 -0800534/*
Linus Torvalds1361b832012-02-21 13:19:22 -0800535 * i387 state interaction
536 */
537static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
538{
539 if (cpu_has_fxsr) {
540 return tsk->thread.fpu.state->fxsave.cwd;
541 } else {
542 return (unsigned short)tsk->thread.fpu.state->fsave.cwd;
543 }
544}
545
546static inline unsigned short get_fpu_swd(struct task_struct *tsk)
547{
548 if (cpu_has_fxsr) {
549 return tsk->thread.fpu.state->fxsave.swd;
550 } else {
551 return (unsigned short)tsk->thread.fpu.state->fsave.swd;
552 }
553}
554
555static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
556{
557 if (cpu_has_xmm) {
558 return tsk->thread.fpu.state->fxsave.mxcsr;
559 } else {
560 return MXCSR_DEFAULT;
561 }
562}
563
564static bool fpu_allocated(struct fpu *fpu)
565{
566 return fpu->state != NULL;
567}
568
569static inline int fpu_alloc(struct fpu *fpu)
570{
571 if (fpu_allocated(fpu))
572 return 0;
573 fpu->state = kmem_cache_alloc(task_xstate_cachep, GFP_KERNEL);
574 if (!fpu->state)
575 return -ENOMEM;
576 WARN_ON((unsigned long)fpu->state & 15);
577 return 0;
578}
579
580static inline void fpu_free(struct fpu *fpu)
581{
582 if (fpu->state) {
583 kmem_cache_free(task_xstate_cachep, fpu->state);
584 fpu->state = NULL;
585 }
586}
587
Suresh Siddha304bced2012-08-24 14:13:02 -0700588static inline void fpu_copy(struct task_struct *dst, struct task_struct *src)
Linus Torvalds1361b832012-02-21 13:19:22 -0800589{
Suresh Siddha5d2bd702012-09-06 14:58:52 -0700590 if (use_eager_fpu()) {
591 memset(&dst->thread.fpu.state->xsave, 0, xstate_size);
592 __save_fpu(dst);
Suresh Siddha304bced2012-08-24 14:13:02 -0700593 } else {
594 struct fpu *dfpu = &dst->thread.fpu;
595 struct fpu *sfpu = &src->thread.fpu;
596
597 unlazy_fpu(src);
598 memcpy(dfpu->state, sfpu->state, xstate_size);
599 }
Linus Torvalds1361b832012-02-21 13:19:22 -0800600}
601
Suresh Siddha72a671c2012-07-24 16:05:29 -0700602static inline unsigned long
603alloc_mathframe(unsigned long sp, int ia32_frame, unsigned long *buf_fx,
604 unsigned long *size)
605{
606 unsigned long frame_size = xstate_sigframe_size();
607
608 *buf_fx = sp = round_down(sp - frame_size, 64);
609 if (ia32_frame && use_fxsr()) {
610 frame_size += sizeof(struct i387_fsave_struct);
611 sp -= sizeof(struct i387_fsave_struct);
612 }
613
614 *size = frame_size;
615 return sp;
616}
Linus Torvalds1361b832012-02-21 13:19:22 -0800617
618#endif