blob: 0c1031d354f294c74a410a568c29160bf2aee62c [file] [log] [blame]
Roland McGrath1eeaed72008-01-30 13:31:51 +01001/*
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
H. Peter Anvin1965aae2008-10-22 22:26:29 -070010#ifndef _ASM_X86_I387_H
11#define _ASM_X86_I387_H
Roland McGrath1eeaed72008-01-30 13:31:51 +010012
Herbert Xu3b0d6592009-11-03 09:11:15 -050013#ifndef __ASSEMBLY__
14
Roland McGrath1eeaed72008-01-30 13:31:51 +010015#include <linux/sched.h>
16#include <linux/kernel_stat.h>
17#include <linux/regset.h>
Suresh Siddhae4914012008-08-13 22:02:26 +100018#include <linux/hardirq.h>
Avi Kivity86603282010-05-06 11:45:46 +030019#include <linux/slab.h>
H. Peter Anvin92c37fa2008-02-04 16:47:58 +010020#include <asm/asm.h>
H. Peter Anvinc9775b42010-05-11 17:49:54 -070021#include <asm/cpufeature.h>
Roland McGrath1eeaed72008-01-30 13:31:51 +010022#include <asm/processor.h>
23#include <asm/sigcontext.h>
24#include <asm/user.h>
25#include <asm/uaccess.h>
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070026#include <asm/xsave.h>
Roland McGrath1eeaed72008-01-30 13:31:51 +010027
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070028extern unsigned int sig_xstate_size;
Roland McGrath1eeaed72008-01-30 13:31:51 +010029extern void fpu_init(void);
Roland McGrath1eeaed72008-01-30 13:31:51 +010030extern void mxcsr_feature_mask_init(void);
Suresh Siddhaaa283f42008-03-10 15:28:05 -070031extern int init_fpu(struct task_struct *child);
Linus Torvaldsbe98c2c2012-02-13 13:47:25 -080032extern void math_state_restore(void);
Jaswinder Singh36454932008-07-21 22:31:57 +053033extern int dump_fpu(struct pt_regs *, struct user_i387_struct *);
Roland McGrath1eeaed72008-01-30 13:31:51 +010034
Linus Torvalds7e168382012-02-19 13:27:00 -080035DECLARE_PER_CPU(struct task_struct *, fpu_owner_task);
36
Roland McGrath1eeaed72008-01-30 13:31:51 +010037extern user_regset_active_fn fpregs_active, xfpregs_active;
Suresh Siddha5b3efd52010-02-11 11:50:59 -080038extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get,
39 xstateregs_get;
40extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set,
41 xstateregs_set;
42
43/*
44 * xstateregs_active == fpregs_active. Please refer to the comment
45 * at the definition of fpregs_active.
46 */
47#define xstateregs_active fpregs_active
Roland McGrath1eeaed72008-01-30 13:31:51 +010048
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070049extern struct _fpx_sw_bytes fx_sw_reserved;
Roland McGrath1eeaed72008-01-30 13:31:51 +010050#ifdef CONFIG_IA32_EMULATION
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070051extern unsigned int sig_xstate_ia32_size;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070052extern struct _fpx_sw_bytes fx_sw_reserved_ia32;
Roland McGrath1eeaed72008-01-30 13:31:51 +010053struct _fpstate_ia32;
Suresh Siddhaab513702008-07-29 10:29:22 -070054struct _xstate_ia32;
55extern int save_i387_xstate_ia32(void __user *buf);
56extern int restore_i387_xstate_ia32(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +010057#endif
58
Brian Gerst8eb91a52010-09-03 21:17:16 -040059#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
Suresh Siddhab359e8a2008-07-29 10:29:20 -070065#define X87_FSW_ES (1 << 7) /* Exception Summary */
66
Suresh Siddha29104e12010-07-19 16:05:49 -070067static __always_inline __pure bool use_xsaveopt(void)
68{
Suresh Siddha6bad06b2010-07-19 16:05:52 -070069 return static_cpu_has(X86_FEATURE_XSAVEOPT);
Suresh Siddha29104e12010-07-19 16:05:49 -070070}
71
H. Peter Anvinc9775b42010-05-11 17:49:54 -070072static __always_inline __pure bool use_xsave(void)
Avi Kivityc9ad4882010-05-06 11:45:45 +030073{
H. Peter Anvinc9775b42010-05-11 17:49:54 -070074 return static_cpu_has(X86_FEATURE_XSAVE);
Avi Kivityc9ad4882010-05-06 11:45:45 +030075}
76
Brian Gerst58a992b2010-09-03 21:17:18 -040077static __always_inline __pure bool use_fxsr(void)
78{
79 return static_cpu_has(X86_FEATURE_FXSR);
80}
81
Suresh Siddha29104e12010-07-19 16:05:49 -070082extern void __sanitize_i387_state(struct task_struct *);
83
84static inline void sanitize_i387_state(struct task_struct *tsk)
85{
86 if (!use_xsaveopt())
87 return;
88 __sanitize_i387_state(tsk);
89}
90
Roland McGrath1eeaed72008-01-30 13:31:51 +010091#ifdef CONFIG_X86_64
Suresh Siddhab359e8a2008-07-29 10:29:20 -070092static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +010093{
94 int err;
95
Brian Gerst82024132010-09-03 21:17:14 -040096 /* See comment in fxsave() below. */
H. Peter Anvinfd35fbc2010-10-22 15:33:38 -070097#ifdef CONFIG_AS_FXSAVEQ
98 asm volatile("1: fxrstorq %[fx]\n\t"
99 "2:\n"
100 ".section .fixup,\"ax\"\n"
101 "3: movl $-1,%[err]\n"
102 " jmp 2b\n"
103 ".previous\n"
104 _ASM_EXTABLE(1b, 3b)
105 : [err] "=r" (err)
106 : [fx] "m" (*fx), "0" (0));
107#else
Roland McGrath1eeaed72008-01-30 13:31:51 +0100108 asm volatile("1: rex64/fxrstor (%[fx])\n\t"
109 "2:\n"
110 ".section .fixup,\"ax\"\n"
111 "3: movl $-1,%[err]\n"
112 " jmp 2b\n"
113 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -0700114 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100115 : [err] "=r" (err)
Brian Gerst82024132010-09-03 21:17:14 -0400116 : [fx] "R" (fx), "m" (*fx), "0" (0));
H. Peter Anvinfd35fbc2010-10-22 15:33:38 -0700117#endif
Roland McGrath1eeaed72008-01-30 13:31:51 +0100118 return err;
119}
120
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700121static inline int fxsave_user(struct i387_fxsave_struct __user *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100122{
123 int err;
124
Suresh Siddha8e221b62010-06-22 16:23:37 -0700125 /*
126 * Clear the bytes not touched by the fxsave and reserved
127 * for the SW usage.
128 */
129 err = __clear_user(&fx->sw_reserved,
130 sizeof(struct _fpx_sw_bytes));
131 if (unlikely(err))
132 return -EFAULT;
133
Brian Gerst82024132010-09-03 21:17:14 -0400134 /* See comment in fxsave() below. */
H. Peter Anvinfd35fbc2010-10-22 15:33:38 -0700135#ifdef CONFIG_AS_FXSAVEQ
136 asm volatile("1: fxsaveq %[fx]\n\t"
137 "2:\n"
138 ".section .fixup,\"ax\"\n"
139 "3: movl $-1,%[err]\n"
140 " jmp 2b\n"
141 ".previous\n"
142 _ASM_EXTABLE(1b, 3b)
143 : [err] "=r" (err), [fx] "=m" (*fx)
144 : "0" (0));
145#else
Roland McGrath1eeaed72008-01-30 13:31:51 +0100146 asm volatile("1: rex64/fxsave (%[fx])\n\t"
147 "2:\n"
148 ".section .fixup,\"ax\"\n"
149 "3: movl $-1,%[err]\n"
150 " jmp 2b\n"
151 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -0700152 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100153 : [err] "=r" (err), "=m" (*fx)
Brian Gerst82024132010-09-03 21:17:14 -0400154 : [fx] "R" (fx), "0" (0));
H. Peter Anvinfd35fbc2010-10-22 15:33:38 -0700155#endif
Joe Perchesaffe6632008-03-23 01:02:18 -0700156 if (unlikely(err) &&
157 __clear_user(fx, sizeof(struct i387_fxsave_struct)))
Roland McGrath1eeaed72008-01-30 13:31:51 +0100158 err = -EFAULT;
159 /* No need to clear here because the caller clears USED_MATH */
160 return err;
161}
162
Avi Kivity86603282010-05-06 11:45:46 +0300163static inline void fpu_fxsave(struct fpu *fpu)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100164{
165 /* Using "rex64; fxsave %0" is broken because, if the memory operand
166 uses any extended registers for addressing, a second REX prefix
167 will be generated (to the assembler, rex64 followed by semicolon
168 is a separate instruction), and hence the 64-bitness is lost. */
Linus Torvaldsb6f7e382010-10-21 13:34:32 -0700169
H. Peter Anvind7acb922010-10-13 16:00:29 -0700170#ifdef CONFIG_AS_FXSAVEQ
Roland McGrath1eeaed72008-01-30 13:31:51 +0100171 /* Using "fxsaveq %0" would be the ideal choice, but is only supported
172 starting with gas 2.16. */
173 __asm__ __volatile__("fxsaveq %0"
Avi Kivity86603282010-05-06 11:45:46 +0300174 : "=m" (fpu->state->fxsave));
Linus Torvaldsb6f7e382010-10-21 13:34:32 -0700175#else
Roland McGrath1eeaed72008-01-30 13:31:51 +0100176 /* Using, as a workaround, the properly prefixed form below isn't
177 accepted by any binutils version so far released, complaining that
178 the same type of prefix is used twice if an extended register is
Brian Gerst82024132010-09-03 21:17:14 -0400179 needed for addressing (fix submitted to mainline 2005-11-21).
180 asm volatile("rex64/fxsave %0"
181 : "=m" (fpu->state->fxsave));
182 This, however, we can work around by forcing the compiler to select
Roland McGrath1eeaed72008-01-30 13:31:51 +0100183 an addressing mode that doesn't require extended registers. */
Brian Gerst82024132010-09-03 21:17:14 -0400184 asm volatile("rex64/fxsave (%[fx])"
185 : "=m" (fpu->state->fxsave)
186 : [fx] "R" (&fpu->state->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100187#endif
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700188}
189
Roland McGrath1eeaed72008-01-30 13:31:51 +0100190#else /* CONFIG_X86_32 */
191
Jiri Slaby34ba4762009-04-08 13:31:59 +0200192/* perform fxrstor iff the processor has extended states, otherwise frstor */
193static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100194{
195 /*
196 * The "nop" is needed to make the instructions the same
197 * length.
198 */
199 alternative_input(
200 "nop ; frstor %1",
201 "fxrstor %1",
202 X86_FEATURE_FXSR,
Jiri Slaby34ba4762009-04-08 13:31:59 +0200203 "m" (*fx));
204
Jiri Slabyfcb2ac52009-04-08 13:31:58 +0200205 return 0;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100206}
207
Brian Gerst58a992b2010-09-03 21:17:18 -0400208static inline void fpu_fxsave(struct fpu *fpu)
209{
210 asm volatile("fxsave %[fx]"
211 : [fx] "=m" (fpu->state->fxsave));
212}
213
Brian Gerstb2b57fe2010-09-03 21:17:19 -0400214#endif /* CONFIG_X86_64 */
215
Roland McGrath1eeaed72008-01-30 13:31:51 +0100216/*
Linus Torvalds34ddc812012-02-18 12:56:35 -0800217 * These must be called with preempt disabled. Returns
218 * 'true' if the FPU state is still intact.
Roland McGrath1eeaed72008-01-30 13:31:51 +0100219 */
Linus Torvalds34ddc812012-02-18 12:56:35 -0800220static inline int fpu_save_init(struct fpu *fpu)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100221{
Avi Kivityc9ad4882010-05-06 11:45:45 +0300222 if (use_xsave()) {
Avi Kivity86603282010-05-06 11:45:46 +0300223 fpu_xsave(fpu);
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700224
225 /*
226 * xsave header may indicate the init state of the FP.
227 */
Brian Gerst58a992b2010-09-03 21:17:18 -0400228 if (!(fpu->state->xsave.xsave_hdr.xstate_bv & XSTATE_FP))
Linus Torvalds34ddc812012-02-18 12:56:35 -0800229 return 1;
Brian Gerst58a992b2010-09-03 21:17:18 -0400230 } else if (use_fxsr()) {
231 fpu_fxsave(fpu);
232 } else {
Hans Rosenfeldf994d992011-04-06 18:06:43 +0200233 asm volatile("fnsave %[fx]; fwait"
Brian Gerst58a992b2010-09-03 21:17:18 -0400234 : [fx] "=m" (fpu->state->fsave));
Linus Torvalds34ddc812012-02-18 12:56:35 -0800235 return 0;
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700236 }
237
Linus Torvalds34ddc812012-02-18 12:56:35 -0800238 /*
239 * If exceptions are pending, we need to clear them so
240 * that we don't randomly get exceptions later.
241 *
242 * FIXME! Is this perhaps only true for the old-style
243 * irq13 case? Maybe we could leave the x87 state
244 * intact otherwise?
245 */
246 if (unlikely(fpu->state->fxsave.swd & X87_FSW_ES)) {
Brian Gerst58a992b2010-09-03 21:17:18 -0400247 asm volatile("fnclex");
Linus Torvalds34ddc812012-02-18 12:56:35 -0800248 return 0;
249 }
250 return 1;
Avi Kivity86603282010-05-06 11:45:46 +0300251}
252
Linus Torvalds34ddc812012-02-18 12:56:35 -0800253static inline int __save_init_fpu(struct task_struct *tsk)
Avi Kivity86603282010-05-06 11:45:46 +0300254{
Linus Torvalds34ddc812012-02-18 12:56:35 -0800255 return fpu_save_init(&tsk->thread.fpu);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100256}
257
Avi Kivity86603282010-05-06 11:45:46 +0300258static inline int fpu_fxrstor_checking(struct fpu *fpu)
259{
260 return fxrstor_checking(&fpu->state->fxsave);
261}
262
263static inline int fpu_restore_checking(struct fpu *fpu)
264{
265 if (use_xsave())
266 return fpu_xrstor_checking(fpu);
267 else
268 return fpu_fxrstor_checking(fpu);
269}
270
Jiri Slaby34ba4762009-04-08 13:31:59 +0200271static inline int restore_fpu_checking(struct task_struct *tsk)
272{
Linus Torvalds80ab6f12012-02-19 11:48:44 -0800273 /* AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception
274 is pending. Clear the x87 state here by setting it to fixed
275 values. "m" is a random variable that should be in L1 */
276 alternative_input(
277 ASM_NOP8 ASM_NOP2,
278 "emms\n\t" /* clear stack tags */
279 "fildl %P[addr]", /* set F?P to defined value */
280 X86_FEATURE_FXSAVE_LEAK,
Linus Torvalds7e168382012-02-19 13:27:00 -0800281 [addr] "m" (tsk->thread.fpu.has_fpu));
Linus Torvalds80ab6f12012-02-19 11:48:44 -0800282
Avi Kivity86603282010-05-06 11:45:46 +0300283 return fpu_restore_checking(&tsk->thread.fpu);
Jiri Slaby34ba4762009-04-08 13:31:59 +0200284}
285
Roland McGrath1eeaed72008-01-30 13:31:51 +0100286/*
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800287 * Software FPU state helpers. Careful: these need to
288 * be preemption protection *and* they need to be
289 * properly paired with the CR0.TS changes!
290 */
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800291static inline int __thread_has_fpu(struct task_struct *tsk)
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800292{
Linus Torvalds7e168382012-02-19 13:27:00 -0800293 return tsk->thread.fpu.has_fpu;
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800294}
295
296/* Must be paired with an 'stts' after! */
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800297static inline void __thread_clear_has_fpu(struct task_struct *tsk)
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800298{
Linus Torvalds7e168382012-02-19 13:27:00 -0800299 tsk->thread.fpu.has_fpu = 0;
300 percpu_write(fpu_owner_task, NULL);
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800301}
302
303/* Must be paired with a 'clts' before! */
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800304static inline void __thread_set_has_fpu(struct task_struct *tsk)
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800305{
Linus Torvalds7e168382012-02-19 13:27:00 -0800306 tsk->thread.fpu.has_fpu = 1;
307 percpu_write(fpu_owner_task, tsk);
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800308}
309
310/*
311 * Encapsulate the CR0.TS handling together with the
312 * software flag.
313 *
314 * These generally need preemption protection to work,
315 * do try to avoid using these on their own.
316 */
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800317static inline void __thread_fpu_end(struct task_struct *tsk)
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800318{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800319 __thread_clear_has_fpu(tsk);
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800320 stts();
321}
322
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800323static inline void __thread_fpu_begin(struct task_struct *tsk)
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800324{
325 clts();
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800326 __thread_set_has_fpu(tsk);
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800327}
328
329/*
Linus Torvalds34ddc812012-02-18 12:56:35 -0800330 * FPU state switching for scheduling.
331 *
332 * This is a two-stage process:
333 *
334 * - switch_fpu_prepare() saves the old state and
335 * sets the new state of the CR0.TS bit. This is
336 * done within the context of the old process.
337 *
338 * - switch_fpu_finish() restores the new state as
339 * necessary.
340 */
341typedef struct { int preload; } fpu_switch_t;
342
343/*
344 * FIXME! We could do a totally lazy restore, but we need to
345 * add a per-cpu "this was the task that last touched the FPU
346 * on this CPU" variable, and the task needs to have a "I last
347 * touched the FPU on this CPU" and check them.
348 *
349 * We don't do that yet, so "fpu_lazy_restore()" always returns
350 * false, but some day..
351 */
Linus Torvalds7e168382012-02-19 13:27:00 -0800352static inline int fpu_lazy_restore(struct task_struct *new, unsigned int cpu)
353{
354 return new == percpu_read_stable(fpu_owner_task) &&
355 cpu == new->thread.fpu.last_cpu;
356}
Linus Torvalds34ddc812012-02-18 12:56:35 -0800357
Linus Torvalds7e168382012-02-19 13:27:00 -0800358static inline fpu_switch_t switch_fpu_prepare(struct task_struct *old, struct task_struct *new, int cpu)
Linus Torvalds34ddc812012-02-18 12:56:35 -0800359{
360 fpu_switch_t fpu;
361
362 fpu.preload = tsk_used_math(new) && new->fpu_counter > 5;
363 if (__thread_has_fpu(old)) {
Linus Torvalds7e168382012-02-19 13:27:00 -0800364 if (!__save_init_fpu(old))
365 cpu = ~0;
366 old->thread.fpu.last_cpu = cpu;
367 old->thread.fpu.has_fpu = 0; /* But leave fpu_owner_task! */
Linus Torvalds34ddc812012-02-18 12:56:35 -0800368
369 /* Don't change CR0.TS if we just switch! */
370 if (fpu.preload) {
Linus Torvaldscea20ca2012-02-20 10:24:09 -0800371 new->fpu_counter++;
Linus Torvalds34ddc812012-02-18 12:56:35 -0800372 __thread_set_has_fpu(new);
373 prefetch(new->thread.fpu.state);
374 } else
375 stts();
376 } else {
377 old->fpu_counter = 0;
Linus Torvalds7e168382012-02-19 13:27:00 -0800378 old->thread.fpu.last_cpu = ~0;
Linus Torvalds34ddc812012-02-18 12:56:35 -0800379 if (fpu.preload) {
Linus Torvaldscea20ca2012-02-20 10:24:09 -0800380 new->fpu_counter++;
Linus Torvalds7e168382012-02-19 13:27:00 -0800381 if (fpu_lazy_restore(new, cpu))
Linus Torvalds34ddc812012-02-18 12:56:35 -0800382 fpu.preload = 0;
383 else
384 prefetch(new->thread.fpu.state);
385 __thread_fpu_begin(new);
386 }
387 }
388 return fpu;
389}
390
391/*
392 * By the time this gets called, we've already cleared CR0.TS and
393 * given the process the FPU if we are going to preload the FPU
394 * state - all we need to do is to conditionally restore the register
395 * state itself.
396 */
397static inline void switch_fpu_finish(struct task_struct *new, fpu_switch_t fpu)
398{
Linus Torvalds80ab6f12012-02-19 11:48:44 -0800399 if (fpu.preload) {
400 if (unlikely(restore_fpu_checking(new)))
401 __thread_fpu_end(new);
402 }
Linus Torvalds34ddc812012-02-18 12:56:35 -0800403}
404
405/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100406 * Signal frame handlers...
407 */
Suresh Siddhaab513702008-07-29 10:29:22 -0700408extern int save_i387_xstate(void __user *buf);
409extern int restore_i387_xstate(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100410
Roland McGrath1eeaed72008-01-30 13:31:51 +0100411static inline void __clear_fpu(struct task_struct *tsk)
412{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800413 if (__thread_has_fpu(tsk)) {
Brian Gerst51115d42010-09-03 21:17:10 -0400414 /* Ignore delayed exceptions from user space */
415 asm volatile("1: fwait\n"
416 "2:\n"
417 _ASM_EXTABLE(1b, 2b));
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800418 __thread_fpu_end(tsk);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100419 }
420}
421
Linus Torvalds8546c002012-02-21 10:25:45 -0800422extern bool irq_fpu_usable(void);
423extern void kernel_fpu_begin(void);
424extern void kernel_fpu_end(void);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100425
Suresh Siddhae4914012008-08-13 22:02:26 +1000426/*
427 * Some instructions like VIA's padlock instructions generate a spurious
428 * DNA fault but don't modify SSE registers. And these instructions
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400429 * get used from interrupt context as well. To prevent these kernel instructions
430 * in interrupt context interacting wrongly with other user/kernel fpu usage, we
Suresh Siddhae4914012008-08-13 22:02:26 +1000431 * should use them only in the context of irq_ts_save/restore()
432 */
433static inline int irq_ts_save(void)
434{
435 /*
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400436 * If in process context and not atomic, we can take a spurious DNA fault.
437 * Otherwise, doing clts() in process context requires disabling preemption
438 * or some heavy lifting like kernel_fpu_begin()
Suresh Siddhae4914012008-08-13 22:02:26 +1000439 */
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400440 if (!in_atomic())
Suresh Siddhae4914012008-08-13 22:02:26 +1000441 return 0;
442
443 if (read_cr0() & X86_CR0_TS) {
444 clts();
445 return 1;
446 }
447
448 return 0;
449}
450
451static inline void irq_ts_restore(int TS_state)
452{
453 if (TS_state)
454 stts();
455}
456
Roland McGrath1eeaed72008-01-30 13:31:51 +0100457/*
Linus Torvalds15d87912012-02-16 09:15:04 -0800458 * The question "does this thread have fpu access?"
459 * is slightly racy, since preemption could come in
460 * and revoke it immediately after the test.
461 *
462 * However, even in that very unlikely scenario,
463 * we can just assume we have FPU access - typically
464 * to save the FP state - we'll just take a #NM
465 * fault and get the FPU access back.
466 *
467 * The actual user_fpu_begin/end() functions
468 * need to be preemption-safe, though.
469 *
470 * NOTE! user_fpu_end() must be used only after you
471 * have saved the FP state, and user_fpu_begin() must
472 * be used only immediately before restoring it.
473 * These functions do not do any save/restore on
474 * their own.
475 */
476static inline int user_has_fpu(void)
477{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800478 return __thread_has_fpu(current);
Linus Torvalds15d87912012-02-16 09:15:04 -0800479}
480
481static inline void user_fpu_end(void)
482{
483 preempt_disable();
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800484 __thread_fpu_end(current);
Linus Torvalds15d87912012-02-16 09:15:04 -0800485 preempt_enable();
486}
487
488static inline void user_fpu_begin(void)
489{
490 preempt_disable();
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800491 if (!user_has_fpu())
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800492 __thread_fpu_begin(current);
Linus Torvalds15d87912012-02-16 09:15:04 -0800493 preempt_enable();
494}
495
496/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100497 * These disable preemption on their own and are safe
498 */
499static inline void save_init_fpu(struct task_struct *tsk)
500{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800501 WARN_ON_ONCE(!__thread_has_fpu(tsk));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100502 preempt_disable();
503 __save_init_fpu(tsk);
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800504 __thread_fpu_end(tsk);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100505 preempt_enable();
506}
507
Linus Torvalds8546c002012-02-21 10:25:45 -0800508extern void unlazy_fpu(struct task_struct *tsk);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100509
510static inline void clear_fpu(struct task_struct *tsk)
511{
512 preempt_disable();
513 __clear_fpu(tsk);
514 preempt_enable();
515}
516
Roland McGrath1eeaed72008-01-30 13:31:51 +0100517/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100518 * i387 state interaction
519 */
520static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
521{
522 if (cpu_has_fxsr) {
Avi Kivity86603282010-05-06 11:45:46 +0300523 return tsk->thread.fpu.state->fxsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100524 } else {
Avi Kivity86603282010-05-06 11:45:46 +0300525 return (unsigned short)tsk->thread.fpu.state->fsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100526 }
527}
528
529static inline unsigned short get_fpu_swd(struct task_struct *tsk)
530{
531 if (cpu_has_fxsr) {
Avi Kivity86603282010-05-06 11:45:46 +0300532 return tsk->thread.fpu.state->fxsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100533 } else {
Avi Kivity86603282010-05-06 11:45:46 +0300534 return (unsigned short)tsk->thread.fpu.state->fsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100535 }
536}
537
538static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
539{
540 if (cpu_has_xmm) {
Avi Kivity86603282010-05-06 11:45:46 +0300541 return tsk->thread.fpu.state->fxsave.mxcsr;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100542 } else {
543 return MXCSR_DEFAULT;
544 }
545}
546
Avi Kivity86603282010-05-06 11:45:46 +0300547static bool fpu_allocated(struct fpu *fpu)
548{
549 return fpu->state != NULL;
550}
551
552static inline int fpu_alloc(struct fpu *fpu)
553{
554 if (fpu_allocated(fpu))
555 return 0;
556 fpu->state = kmem_cache_alloc(task_xstate_cachep, GFP_KERNEL);
557 if (!fpu->state)
558 return -ENOMEM;
559 WARN_ON((unsigned long)fpu->state & 15);
560 return 0;
561}
562
563static inline void fpu_free(struct fpu *fpu)
564{
565 if (fpu->state) {
566 kmem_cache_free(task_xstate_cachep, fpu->state);
567 fpu->state = NULL;
568 }
569}
570
571static inline void fpu_copy(struct fpu *dst, struct fpu *src)
572{
573 memcpy(dst->state, src->state, xstate_size);
574}
575
Sheng Yang5ee481d2010-05-17 17:22:23 +0800576extern void fpu_finit(struct fpu *fpu);
577
Herbert Xu3b0d6592009-11-03 09:11:15 -0500578#endif /* __ASSEMBLY__ */
579
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700580#endif /* _ASM_X86_I387_H */