blob: 8df95849721dbfb04b0e4040f4da9f892be67d09 [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 Torvalds34ddc812012-02-18 12:56:35 -080032extern void __math_state_restore(struct task_struct *);
Linus Torvaldsbe98c2c2012-02-13 13:47:25 -080033extern void math_state_restore(void);
Jaswinder Singh36454932008-07-21 22:31:57 +053034extern int dump_fpu(struct pt_regs *, struct user_i387_struct *);
Roland McGrath1eeaed72008-01-30 13:31:51 +010035
36extern user_regset_active_fn fpregs_active, xfpregs_active;
Suresh Siddha5b3efd52010-02-11 11:50:59 -080037extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get,
38 xstateregs_get;
39extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set,
40 xstateregs_set;
41
42/*
43 * xstateregs_active == fpregs_active. Please refer to the comment
44 * at the definition of fpregs_active.
45 */
46#define xstateregs_active fpregs_active
Roland McGrath1eeaed72008-01-30 13:31:51 +010047
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070048extern struct _fpx_sw_bytes fx_sw_reserved;
Roland McGrath1eeaed72008-01-30 13:31:51 +010049#ifdef CONFIG_IA32_EMULATION
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070050extern unsigned int sig_xstate_ia32_size;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070051extern struct _fpx_sw_bytes fx_sw_reserved_ia32;
Roland McGrath1eeaed72008-01-30 13:31:51 +010052struct _fpstate_ia32;
Suresh Siddhaab513702008-07-29 10:29:22 -070053struct _xstate_ia32;
54extern int save_i387_xstate_ia32(void __user *buf);
55extern int restore_i387_xstate_ia32(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +010056#endif
57
Brian Gerst8eb91a52010-09-03 21:17:16 -040058#ifdef CONFIG_MATH_EMULATION
59extern void finit_soft_fpu(struct i387_soft_struct *soft);
60#else
61static inline void finit_soft_fpu(struct i387_soft_struct *soft) {}
62#endif
63
Suresh Siddhab359e8a2008-07-29 10:29:20 -070064#define X87_FSW_ES (1 << 7) /* Exception Summary */
65
Suresh Siddha29104e12010-07-19 16:05:49 -070066static __always_inline __pure bool use_xsaveopt(void)
67{
Suresh Siddha6bad06b2010-07-19 16:05:52 -070068 return static_cpu_has(X86_FEATURE_XSAVEOPT);
Suresh Siddha29104e12010-07-19 16:05:49 -070069}
70
H. Peter Anvinc9775b42010-05-11 17:49:54 -070071static __always_inline __pure bool use_xsave(void)
Avi Kivityc9ad4882010-05-06 11:45:45 +030072{
H. Peter Anvinc9775b42010-05-11 17:49:54 -070073 return static_cpu_has(X86_FEATURE_XSAVE);
Avi Kivityc9ad4882010-05-06 11:45:45 +030074}
75
Brian Gerst58a992b2010-09-03 21:17:18 -040076static __always_inline __pure bool use_fxsr(void)
77{
78 return static_cpu_has(X86_FEATURE_FXSR);
79}
80
Suresh Siddha29104e12010-07-19 16:05:49 -070081extern void __sanitize_i387_state(struct task_struct *);
82
83static inline void sanitize_i387_state(struct task_struct *tsk)
84{
85 if (!use_xsaveopt())
86 return;
87 __sanitize_i387_state(tsk);
88}
89
Roland McGrath1eeaed72008-01-30 13:31:51 +010090#ifdef CONFIG_X86_64
Suresh Siddhab359e8a2008-07-29 10:29:20 -070091static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +010092{
93 int err;
94
Brian Gerst82024132010-09-03 21:17:14 -040095 /* See comment in fxsave() below. */
H. Peter Anvinfd35fbc2010-10-22 15:33:38 -070096#ifdef CONFIG_AS_FXSAVEQ
97 asm volatile("1: fxrstorq %[fx]\n\t"
98 "2:\n"
99 ".section .fixup,\"ax\"\n"
100 "3: movl $-1,%[err]\n"
101 " jmp 2b\n"
102 ".previous\n"
103 _ASM_EXTABLE(1b, 3b)
104 : [err] "=r" (err)
105 : [fx] "m" (*fx), "0" (0));
106#else
Roland McGrath1eeaed72008-01-30 13:31:51 +0100107 asm volatile("1: rex64/fxrstor (%[fx])\n\t"
108 "2:\n"
109 ".section .fixup,\"ax\"\n"
110 "3: movl $-1,%[err]\n"
111 " jmp 2b\n"
112 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -0700113 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100114 : [err] "=r" (err)
Brian Gerst82024132010-09-03 21:17:14 -0400115 : [fx] "R" (fx), "m" (*fx), "0" (0));
H. Peter Anvinfd35fbc2010-10-22 15:33:38 -0700116#endif
Roland McGrath1eeaed72008-01-30 13:31:51 +0100117 return err;
118}
119
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700120static inline int fxsave_user(struct i387_fxsave_struct __user *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100121{
122 int err;
123
Suresh Siddha8e221b62010-06-22 16:23:37 -0700124 /*
125 * Clear the bytes not touched by the fxsave and reserved
126 * for the SW usage.
127 */
128 err = __clear_user(&fx->sw_reserved,
129 sizeof(struct _fpx_sw_bytes));
130 if (unlikely(err))
131 return -EFAULT;
132
Brian Gerst82024132010-09-03 21:17:14 -0400133 /* See comment in fxsave() below. */
H. Peter Anvinfd35fbc2010-10-22 15:33:38 -0700134#ifdef CONFIG_AS_FXSAVEQ
135 asm volatile("1: fxsaveq %[fx]\n\t"
136 "2:\n"
137 ".section .fixup,\"ax\"\n"
138 "3: movl $-1,%[err]\n"
139 " jmp 2b\n"
140 ".previous\n"
141 _ASM_EXTABLE(1b, 3b)
142 : [err] "=r" (err), [fx] "=m" (*fx)
143 : "0" (0));
144#else
Roland McGrath1eeaed72008-01-30 13:31:51 +0100145 asm volatile("1: rex64/fxsave (%[fx])\n\t"
146 "2:\n"
147 ".section .fixup,\"ax\"\n"
148 "3: movl $-1,%[err]\n"
149 " jmp 2b\n"
150 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -0700151 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100152 : [err] "=r" (err), "=m" (*fx)
Brian Gerst82024132010-09-03 21:17:14 -0400153 : [fx] "R" (fx), "0" (0));
H. Peter Anvinfd35fbc2010-10-22 15:33:38 -0700154#endif
Joe Perchesaffe6632008-03-23 01:02:18 -0700155 if (unlikely(err) &&
156 __clear_user(fx, sizeof(struct i387_fxsave_struct)))
Roland McGrath1eeaed72008-01-30 13:31:51 +0100157 err = -EFAULT;
158 /* No need to clear here because the caller clears USED_MATH */
159 return err;
160}
161
Avi Kivity86603282010-05-06 11:45:46 +0300162static inline void fpu_fxsave(struct fpu *fpu)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100163{
164 /* Using "rex64; fxsave %0" is broken because, if the memory operand
165 uses any extended registers for addressing, a second REX prefix
166 will be generated (to the assembler, rex64 followed by semicolon
167 is a separate instruction), and hence the 64-bitness is lost. */
Linus Torvaldsb6f7e382010-10-21 13:34:32 -0700168
H. Peter Anvind7acb922010-10-13 16:00:29 -0700169#ifdef CONFIG_AS_FXSAVEQ
Roland McGrath1eeaed72008-01-30 13:31:51 +0100170 /* Using "fxsaveq %0" would be the ideal choice, but is only supported
171 starting with gas 2.16. */
172 __asm__ __volatile__("fxsaveq %0"
Avi Kivity86603282010-05-06 11:45:46 +0300173 : "=m" (fpu->state->fxsave));
Linus Torvaldsb6f7e382010-10-21 13:34:32 -0700174#else
Roland McGrath1eeaed72008-01-30 13:31:51 +0100175 /* Using, as a workaround, the properly prefixed form below isn't
176 accepted by any binutils version so far released, complaining that
177 the same type of prefix is used twice if an extended register is
Brian Gerst82024132010-09-03 21:17:14 -0400178 needed for addressing (fix submitted to mainline 2005-11-21).
179 asm volatile("rex64/fxsave %0"
180 : "=m" (fpu->state->fxsave));
181 This, however, we can work around by forcing the compiler to select
Roland McGrath1eeaed72008-01-30 13:31:51 +0100182 an addressing mode that doesn't require extended registers. */
Brian Gerst82024132010-09-03 21:17:14 -0400183 asm volatile("rex64/fxsave (%[fx])"
184 : "=m" (fpu->state->fxsave)
185 : [fx] "R" (&fpu->state->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100186#endif
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700187}
188
Roland McGrath1eeaed72008-01-30 13:31:51 +0100189#else /* CONFIG_X86_32 */
190
Jiri Slaby34ba4762009-04-08 13:31:59 +0200191/* perform fxrstor iff the processor has extended states, otherwise frstor */
192static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100193{
194 /*
195 * The "nop" is needed to make the instructions the same
196 * length.
197 */
198 alternative_input(
199 "nop ; frstor %1",
200 "fxrstor %1",
201 X86_FEATURE_FXSR,
Jiri Slaby34ba4762009-04-08 13:31:59 +0200202 "m" (*fx));
203
Jiri Slabyfcb2ac52009-04-08 13:31:58 +0200204 return 0;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100205}
206
Brian Gerst58a992b2010-09-03 21:17:18 -0400207static inline void fpu_fxsave(struct fpu *fpu)
208{
209 asm volatile("fxsave %[fx]"
210 : [fx] "=m" (fpu->state->fxsave));
211}
212
Brian Gerstb2b57fe2010-09-03 21:17:19 -0400213#endif /* CONFIG_X86_64 */
214
Roland McGrath1eeaed72008-01-30 13:31:51 +0100215/*
Linus Torvalds34ddc812012-02-18 12:56:35 -0800216 * These must be called with preempt disabled. Returns
217 * 'true' if the FPU state is still intact.
Roland McGrath1eeaed72008-01-30 13:31:51 +0100218 */
Linus Torvalds34ddc812012-02-18 12:56:35 -0800219static inline int fpu_save_init(struct fpu *fpu)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100220{
Avi Kivityc9ad4882010-05-06 11:45:45 +0300221 if (use_xsave()) {
Avi Kivity86603282010-05-06 11:45:46 +0300222 fpu_xsave(fpu);
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700223
224 /*
225 * xsave header may indicate the init state of the FP.
226 */
Brian Gerst58a992b2010-09-03 21:17:18 -0400227 if (!(fpu->state->xsave.xsave_hdr.xstate_bv & XSTATE_FP))
Linus Torvalds34ddc812012-02-18 12:56:35 -0800228 return 1;
Brian Gerst58a992b2010-09-03 21:17:18 -0400229 } else if (use_fxsr()) {
230 fpu_fxsave(fpu);
231 } else {
Hans Rosenfeldf994d992011-04-06 18:06:43 +0200232 asm volatile("fnsave %[fx]; fwait"
Brian Gerst58a992b2010-09-03 21:17:18 -0400233 : [fx] "=m" (fpu->state->fsave));
Linus Torvalds34ddc812012-02-18 12:56:35 -0800234 return 0;
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700235 }
236
Linus Torvalds34ddc812012-02-18 12:56:35 -0800237 /*
238 * If exceptions are pending, we need to clear them so
239 * that we don't randomly get exceptions later.
240 *
241 * FIXME! Is this perhaps only true for the old-style
242 * irq13 case? Maybe we could leave the x87 state
243 * intact otherwise?
244 */
245 if (unlikely(fpu->state->fxsave.swd & X87_FSW_ES)) {
Brian Gerst58a992b2010-09-03 21:17:18 -0400246 asm volatile("fnclex");
Linus Torvalds34ddc812012-02-18 12:56:35 -0800247 return 0;
248 }
249 return 1;
Avi Kivity86603282010-05-06 11:45:46 +0300250}
251
Linus Torvalds34ddc812012-02-18 12:56:35 -0800252static inline int __save_init_fpu(struct task_struct *tsk)
Avi Kivity86603282010-05-06 11:45:46 +0300253{
Linus Torvalds34ddc812012-02-18 12:56:35 -0800254 return fpu_save_init(&tsk->thread.fpu);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100255}
256
Avi Kivity86603282010-05-06 11:45:46 +0300257static inline int fpu_fxrstor_checking(struct fpu *fpu)
258{
259 return fxrstor_checking(&fpu->state->fxsave);
260}
261
262static inline int fpu_restore_checking(struct fpu *fpu)
263{
264 if (use_xsave())
265 return fpu_xrstor_checking(fpu);
266 else
267 return fpu_fxrstor_checking(fpu);
268}
269
Jiri Slaby34ba4762009-04-08 13:31:59 +0200270static inline int restore_fpu_checking(struct task_struct *tsk)
271{
Avi Kivity86603282010-05-06 11:45:46 +0300272 return fpu_restore_checking(&tsk->thread.fpu);
Jiri Slaby34ba4762009-04-08 13:31:59 +0200273}
274
Roland McGrath1eeaed72008-01-30 13:31:51 +0100275/*
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800276 * Software FPU state helpers. Careful: these need to
277 * be preemption protection *and* they need to be
278 * properly paired with the CR0.TS changes!
279 */
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800280static inline int __thread_has_fpu(struct task_struct *tsk)
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800281{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800282 return tsk->thread.has_fpu;
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800283}
284
285/* Must be paired with an 'stts' after! */
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800286static inline void __thread_clear_has_fpu(struct task_struct *tsk)
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800287{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800288 tsk->thread.has_fpu = 0;
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800289}
290
291/* Must be paired with a 'clts' before! */
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800292static inline void __thread_set_has_fpu(struct task_struct *tsk)
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800293{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800294 tsk->thread.has_fpu = 1;
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800295}
296
297/*
298 * Encapsulate the CR0.TS handling together with the
299 * software flag.
300 *
301 * These generally need preemption protection to work,
302 * do try to avoid using these on their own.
303 */
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800304static inline void __thread_fpu_end(struct task_struct *tsk)
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800305{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800306 __thread_clear_has_fpu(tsk);
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800307 stts();
308}
309
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800310static inline void __thread_fpu_begin(struct task_struct *tsk)
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800311{
312 clts();
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800313 __thread_set_has_fpu(tsk);
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800314}
315
316/*
Linus Torvalds34ddc812012-02-18 12:56:35 -0800317 * FPU state switching for scheduling.
318 *
319 * This is a two-stage process:
320 *
321 * - switch_fpu_prepare() saves the old state and
322 * sets the new state of the CR0.TS bit. This is
323 * done within the context of the old process.
324 *
325 * - switch_fpu_finish() restores the new state as
326 * necessary.
327 */
328typedef struct { int preload; } fpu_switch_t;
329
330/*
331 * FIXME! We could do a totally lazy restore, but we need to
332 * add a per-cpu "this was the task that last touched the FPU
333 * on this CPU" variable, and the task needs to have a "I last
334 * touched the FPU on this CPU" and check them.
335 *
336 * We don't do that yet, so "fpu_lazy_restore()" always returns
337 * false, but some day..
338 */
339#define fpu_lazy_restore(tsk) (0)
340#define fpu_lazy_state_intact(tsk) do { } while (0)
341
342static inline fpu_switch_t switch_fpu_prepare(struct task_struct *old, struct task_struct *new)
343{
344 fpu_switch_t fpu;
345
346 fpu.preload = tsk_used_math(new) && new->fpu_counter > 5;
347 if (__thread_has_fpu(old)) {
348 if (__save_init_fpu(old))
349 fpu_lazy_state_intact(old);
350 __thread_clear_has_fpu(old);
Linus Torvalds34ddc812012-02-18 12:56:35 -0800351
352 /* Don't change CR0.TS if we just switch! */
353 if (fpu.preload) {
Linus Torvaldscea20ca2012-02-20 10:24:09 -0800354 new->fpu_counter++;
Linus Torvalds34ddc812012-02-18 12:56:35 -0800355 __thread_set_has_fpu(new);
356 prefetch(new->thread.fpu.state);
357 } else
358 stts();
359 } else {
360 old->fpu_counter = 0;
361 if (fpu.preload) {
Linus Torvaldscea20ca2012-02-20 10:24:09 -0800362 new->fpu_counter++;
Linus Torvalds34ddc812012-02-18 12:56:35 -0800363 if (fpu_lazy_restore(new))
364 fpu.preload = 0;
365 else
366 prefetch(new->thread.fpu.state);
367 __thread_fpu_begin(new);
368 }
369 }
370 return fpu;
371}
372
373/*
374 * By the time this gets called, we've already cleared CR0.TS and
375 * given the process the FPU if we are going to preload the FPU
376 * state - all we need to do is to conditionally restore the register
377 * state itself.
378 */
379static inline void switch_fpu_finish(struct task_struct *new, fpu_switch_t fpu)
380{
381 if (fpu.preload)
382 __math_state_restore(new);
383}
384
385/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100386 * Signal frame handlers...
387 */
Suresh Siddhaab513702008-07-29 10:29:22 -0700388extern int save_i387_xstate(void __user *buf);
389extern int restore_i387_xstate(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100390
Roland McGrath1eeaed72008-01-30 13:31:51 +0100391static inline void __clear_fpu(struct task_struct *tsk)
392{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800393 if (__thread_has_fpu(tsk)) {
Brian Gerst51115d42010-09-03 21:17:10 -0400394 /* Ignore delayed exceptions from user space */
395 asm volatile("1: fwait\n"
396 "2:\n"
397 _ASM_EXTABLE(1b, 2b));
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800398 __thread_fpu_end(tsk);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100399 }
400}
401
Linus Torvalds5b1cbac2012-02-13 13:56:14 -0800402/*
403 * Were we in an interrupt that interrupted kernel mode?
404 *
405 * We can do a kernel_fpu_begin/end() pair *ONLY* if that
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800406 * pair does nothing at all: the thread must not have fpu (so
Linus Torvalds5b1cbac2012-02-13 13:56:14 -0800407 * that we don't try to save the FPU state), and TS must
408 * be set (so that the clts/stts pair does nothing that is
409 * visible in the interrupted kernel thread).
410 */
411static inline bool interrupted_kernel_fpu_idle(void)
412{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800413 return !__thread_has_fpu(current) &&
Linus Torvalds5b1cbac2012-02-13 13:56:14 -0800414 (read_cr0() & X86_CR0_TS);
415}
416
417/*
418 * Were we in user mode (or vm86 mode) when we were
419 * interrupted?
420 *
421 * Doing kernel_fpu_begin/end() is ok if we are running
422 * in an interrupt context from user mode - we'll just
423 * save the FPU state as required.
424 */
425static inline bool interrupted_user_mode(void)
426{
427 struct pt_regs *regs = get_irq_regs();
428 return regs && user_mode_vm(regs);
429}
430
431/*
432 * Can we use the FPU in kernel mode with the
433 * whole "kernel_fpu_begin/end()" sequence?
434 *
435 * It's always ok in process context (ie "not interrupt")
436 * but it is sometimes ok even from an irq.
437 */
438static inline bool irq_fpu_usable(void)
439{
440 return !in_interrupt() ||
441 interrupted_user_mode() ||
442 interrupted_kernel_fpu_idle();
443}
444
Roland McGrath1eeaed72008-01-30 13:31:51 +0100445static inline void kernel_fpu_begin(void)
446{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800447 struct task_struct *me = current;
Linus Torvalds5b1cbac2012-02-13 13:56:14 -0800448
449 WARN_ON_ONCE(!irq_fpu_usable());
Roland McGrath1eeaed72008-01-30 13:31:51 +0100450 preempt_disable();
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800451 if (__thread_has_fpu(me)) {
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800452 __save_init_fpu(me);
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800453 __thread_clear_has_fpu(me);
Linus Torvaldsb6c66412012-02-16 12:22:48 -0800454 /* We do 'stts()' in kernel_fpu_end() */
455 } else
Roland McGrath1eeaed72008-01-30 13:31:51 +0100456 clts();
457}
458
459static inline void kernel_fpu_end(void)
460{
461 stts();
462 preempt_enable();
463}
464
Suresh Siddhae4914012008-08-13 22:02:26 +1000465/*
466 * Some instructions like VIA's padlock instructions generate a spurious
467 * DNA fault but don't modify SSE registers. And these instructions
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400468 * get used from interrupt context as well. To prevent these kernel instructions
469 * in interrupt context interacting wrongly with other user/kernel fpu usage, we
Suresh Siddhae4914012008-08-13 22:02:26 +1000470 * should use them only in the context of irq_ts_save/restore()
471 */
472static inline int irq_ts_save(void)
473{
474 /*
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400475 * If in process context and not atomic, we can take a spurious DNA fault.
476 * Otherwise, doing clts() in process context requires disabling preemption
477 * or some heavy lifting like kernel_fpu_begin()
Suresh Siddhae4914012008-08-13 22:02:26 +1000478 */
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400479 if (!in_atomic())
Suresh Siddhae4914012008-08-13 22:02:26 +1000480 return 0;
481
482 if (read_cr0() & X86_CR0_TS) {
483 clts();
484 return 1;
485 }
486
487 return 0;
488}
489
490static inline void irq_ts_restore(int TS_state)
491{
492 if (TS_state)
493 stts();
494}
495
Roland McGrath1eeaed72008-01-30 13:31:51 +0100496/*
Linus Torvalds15d87912012-02-16 09:15:04 -0800497 * The question "does this thread have fpu access?"
498 * is slightly racy, since preemption could come in
499 * and revoke it immediately after the test.
500 *
501 * However, even in that very unlikely scenario,
502 * we can just assume we have FPU access - typically
503 * to save the FP state - we'll just take a #NM
504 * fault and get the FPU access back.
505 *
506 * The actual user_fpu_begin/end() functions
507 * need to be preemption-safe, though.
508 *
509 * NOTE! user_fpu_end() must be used only after you
510 * have saved the FP state, and user_fpu_begin() must
511 * be used only immediately before restoring it.
512 * These functions do not do any save/restore on
513 * their own.
514 */
515static inline int user_has_fpu(void)
516{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800517 return __thread_has_fpu(current);
Linus Torvalds15d87912012-02-16 09:15:04 -0800518}
519
520static inline void user_fpu_end(void)
521{
522 preempt_disable();
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800523 __thread_fpu_end(current);
Linus Torvalds15d87912012-02-16 09:15:04 -0800524 preempt_enable();
525}
526
527static inline void user_fpu_begin(void)
528{
529 preempt_disable();
Linus Torvalds6d59d7a2012-02-16 13:33:12 -0800530 if (!user_has_fpu())
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800531 __thread_fpu_begin(current);
Linus Torvalds15d87912012-02-16 09:15:04 -0800532 preempt_enable();
533}
534
535/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100536 * These disable preemption on their own and are safe
537 */
538static inline void save_init_fpu(struct task_struct *tsk)
539{
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800540 WARN_ON_ONCE(!__thread_has_fpu(tsk));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100541 preempt_disable();
542 __save_init_fpu(tsk);
Linus Torvaldsf94edac2012-02-17 21:48:54 -0800543 __thread_fpu_end(tsk);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100544 preempt_enable();
545}
546
547static inline void unlazy_fpu(struct task_struct *tsk)
548{
549 preempt_disable();
Linus Torvalds34ddc812012-02-18 12:56:35 -0800550 if (__thread_has_fpu(tsk)) {
551 __save_init_fpu(tsk);
552 __thread_fpu_end(tsk);
553 } else
554 tsk->fpu_counter = 0;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100555 preempt_enable();
556}
557
558static inline void clear_fpu(struct task_struct *tsk)
559{
560 preempt_disable();
561 __clear_fpu(tsk);
562 preempt_enable();
563}
564
Roland McGrath1eeaed72008-01-30 13:31:51 +0100565/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100566 * i387 state interaction
567 */
568static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
569{
570 if (cpu_has_fxsr) {
Avi Kivity86603282010-05-06 11:45:46 +0300571 return tsk->thread.fpu.state->fxsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100572 } else {
Avi Kivity86603282010-05-06 11:45:46 +0300573 return (unsigned short)tsk->thread.fpu.state->fsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100574 }
575}
576
577static inline unsigned short get_fpu_swd(struct task_struct *tsk)
578{
579 if (cpu_has_fxsr) {
Avi Kivity86603282010-05-06 11:45:46 +0300580 return tsk->thread.fpu.state->fxsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100581 } else {
Avi Kivity86603282010-05-06 11:45:46 +0300582 return (unsigned short)tsk->thread.fpu.state->fsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100583 }
584}
585
586static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
587{
588 if (cpu_has_xmm) {
Avi Kivity86603282010-05-06 11:45:46 +0300589 return tsk->thread.fpu.state->fxsave.mxcsr;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100590 } else {
591 return MXCSR_DEFAULT;
592 }
593}
594
Avi Kivity86603282010-05-06 11:45:46 +0300595static bool fpu_allocated(struct fpu *fpu)
596{
597 return fpu->state != NULL;
598}
599
600static inline int fpu_alloc(struct fpu *fpu)
601{
602 if (fpu_allocated(fpu))
603 return 0;
604 fpu->state = kmem_cache_alloc(task_xstate_cachep, GFP_KERNEL);
605 if (!fpu->state)
606 return -ENOMEM;
607 WARN_ON((unsigned long)fpu->state & 15);
608 return 0;
609}
610
611static inline void fpu_free(struct fpu *fpu)
612{
613 if (fpu->state) {
614 kmem_cache_free(task_xstate_cachep, fpu->state);
615 fpu->state = NULL;
616 }
617}
618
619static inline void fpu_copy(struct fpu *dst, struct fpu *src)
620{
621 memcpy(dst->state, src->state, xstate_size);
622}
623
Sheng Yang5ee481d2010-05-17 17:22:23 +0800624extern void fpu_finit(struct fpu *fpu);
625
Herbert Xu3b0d6592009-11-03 09:11:15 -0500626#endif /* __ASSEMBLY__ */
627
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700628#endif /* _ASM_X86_I387_H */