blob: f250431fb50574727a6407f8b7618bdedb5a1885 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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 */
Alexey Dobriyan129f6942005-06-23 00:08:33 -07008#include <linux/module.h>
Roland McGrath44210112008-01-30 13:31:50 +01009#include <linux/regset.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010010#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010012
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/sigcontext.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010014#include <asm/processor.h>
15#include <asm/math_emu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/uaccess.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010017#include <asm/ptrace.h>
18#include <asm/i387.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080019#include <asm/fpu-internal.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010020#include <asm/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Roland McGrath44210112008-01-30 13:31:50 +010022#ifdef CONFIG_X86_64
Ingo Molnarf6689642008-03-05 15:37:32 +010023# include <asm/sigcontext32.h>
24# include <asm/user32.h>
Roland McGrath44210112008-01-30 13:31:50 +010025#else
Suresh Siddhaab513702008-07-29 10:29:22 -070026# define save_i387_xstate_ia32 save_i387_xstate
27# define restore_i387_xstate_ia32 restore_i387_xstate
Ingo Molnarf6689642008-03-05 15:37:32 +010028# define _fpstate_ia32 _fpstate
Suresh Siddhaab513702008-07-29 10:29:22 -070029# define _xstate_ia32 _xstate
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070030# define sig_xstate_ia32_size sig_xstate_size
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070031# define fx_sw_reserved_ia32 fx_sw_reserved
Ingo Molnarf6689642008-03-05 15:37:32 +010032# define user_i387_ia32_struct user_i387_struct
33# define user32_fxsr_struct user_fxsr_struct
Roland McGrath44210112008-01-30 13:31:50 +010034#endif
35
Linus Torvalds8546c002012-02-21 10:25:45 -080036/*
37 * Were we in an interrupt that interrupted kernel mode?
38 *
39 * We can do a kernel_fpu_begin/end() pair *ONLY* if that
40 * pair does nothing at all: the thread must not have fpu (so
41 * that we don't try to save the FPU state), and TS must
42 * be set (so that the clts/stts pair does nothing that is
43 * visible in the interrupted kernel thread).
44 */
45static inline bool interrupted_kernel_fpu_idle(void)
46{
47 return !__thread_has_fpu(current) &&
48 (read_cr0() & X86_CR0_TS);
49}
50
51/*
52 * Were we in user mode (or vm86 mode) when we were
53 * interrupted?
54 *
55 * Doing kernel_fpu_begin/end() is ok if we are running
56 * in an interrupt context from user mode - we'll just
57 * save the FPU state as required.
58 */
59static inline bool interrupted_user_mode(void)
60{
61 struct pt_regs *regs = get_irq_regs();
62 return regs && user_mode_vm(regs);
63}
64
65/*
66 * Can we use the FPU in kernel mode with the
67 * whole "kernel_fpu_begin/end()" sequence?
68 *
69 * It's always ok in process context (ie "not interrupt")
70 * but it is sometimes ok even from an irq.
71 */
72bool irq_fpu_usable(void)
73{
74 return !in_interrupt() ||
75 interrupted_user_mode() ||
76 interrupted_kernel_fpu_idle();
77}
78EXPORT_SYMBOL(irq_fpu_usable);
79
80void kernel_fpu_begin(void)
81{
82 struct task_struct *me = current;
83
84 WARN_ON_ONCE(!irq_fpu_usable());
85 preempt_disable();
86 if (__thread_has_fpu(me)) {
87 __save_init_fpu(me);
88 __thread_clear_has_fpu(me);
89 /* We do 'stts()' in kernel_fpu_end() */
90 } else {
Alex Shic6ae41e2012-05-11 15:35:27 +080091 this_cpu_write(fpu_owner_task, NULL);
Linus Torvalds8546c002012-02-21 10:25:45 -080092 clts();
93 }
94}
95EXPORT_SYMBOL(kernel_fpu_begin);
96
97void kernel_fpu_end(void)
98{
99 stts();
100 preempt_enable();
101}
102EXPORT_SYMBOL(kernel_fpu_end);
103
104void unlazy_fpu(struct task_struct *tsk)
105{
106 preempt_disable();
107 if (__thread_has_fpu(tsk)) {
108 __save_init_fpu(tsk);
109 __thread_fpu_end(tsk);
110 } else
111 tsk->fpu_counter = 0;
112 preempt_enable();
113}
114EXPORT_SYMBOL(unlazy_fpu);
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#ifdef CONFIG_MATH_EMULATION
Ingo Molnarf6689642008-03-05 15:37:32 +0100117# define HAVE_HWFP (boot_cpu_data.hard_math)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#else
Ingo Molnarf6689642008-03-05 15:37:32 +0100119# define HAVE_HWFP 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#endif
121
Ingo Molnarf6689642008-03-05 15:37:32 +0100122static unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu;
Suresh Siddha61c46282008-03-10 15:28:04 -0700123unsigned int xstate_size;
Xiaotian Fengf45755b2010-08-13 15:19:11 +0800124EXPORT_SYMBOL_GPL(xstate_size);
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700125unsigned int sig_xstate_ia32_size = sizeof(struct _fpstate_ia32);
Suresh Siddha61c46282008-03-10 15:28:04 -0700126static struct i387_fxsave_struct fx_scratch __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds1361b832012-02-21 13:19:22 -0800128static void __cpuinit mxcsr_feature_mask_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 unsigned long mask = 0;
Ingo Molnarf6689642008-03-05 15:37:32 +0100131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 clts();
133 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700134 memset(&fx_scratch, 0, sizeof(struct i387_fxsave_struct));
135 asm volatile("fxsave %0" : : "m" (fx_scratch));
136 mask = fx_scratch.mxcsr_mask;
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100137 if (mask == 0)
138 mask = 0x0000ffbf;
139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 mxcsr_feature_mask &= mask;
141 stts();
142}
143
Robert Richter0e49bf62010-07-21 19:03:52 +0200144static void __cpuinit init_thread_xstate(void)
Suresh Siddha61c46282008-03-10 15:28:04 -0700145{
Robert Richter0e49bf62010-07-21 19:03:52 +0200146 /*
147 * Note that xstate_size might be overwriten later during
148 * xsave_init().
149 */
150
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700151 if (!HAVE_HWFP) {
Robert Richter1f999ab2010-07-21 19:03:57 +0200152 /*
153 * Disable xsave as we do not support it if i387
154 * emulation is enabled.
155 */
156 setup_clear_cpu_cap(X86_FEATURE_XSAVE);
157 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700158 xstate_size = sizeof(struct i387_soft_struct);
159 return;
160 }
161
Suresh Siddha61c46282008-03-10 15:28:04 -0700162 if (cpu_has_fxsr)
163 xstate_size = sizeof(struct i387_fxsave_struct);
Suresh Siddha61c46282008-03-10 15:28:04 -0700164 else
165 xstate_size = sizeof(struct i387_fsave_struct);
Suresh Siddha61c46282008-03-10 15:28:04 -0700166}
167
Roland McGrath44210112008-01-30 13:31:50 +0100168/*
169 * Called at bootup to set up the initial FPU state that is later cloned
170 * into all processes.
171 */
Robert Richter0e49bf62010-07-21 19:03:52 +0200172
Roland McGrath44210112008-01-30 13:31:50 +0100173void __cpuinit fpu_init(void)
174{
Brian Gerst6ac8bac2010-09-03 21:17:09 -0400175 unsigned long cr0;
176 unsigned long cr4_mask = 0;
Ingo Molnarf6689642008-03-05 15:37:32 +0100177
Brian Gerst6ac8bac2010-09-03 21:17:09 -0400178 if (cpu_has_fxsr)
179 cr4_mask |= X86_CR4_OSFXSR;
180 if (cpu_has_xmm)
181 cr4_mask |= X86_CR4_OSXMMEXCPT;
182 if (cr4_mask)
183 set_in_cr4(cr4_mask);
Roland McGrath44210112008-01-30 13:31:50 +0100184
Brian Gerst6ac8bac2010-09-03 21:17:09 -0400185 cr0 = read_cr0();
186 cr0 &= ~(X86_CR0_TS|X86_CR0_EM); /* clear TS and EM */
187 if (!HAVE_HWFP)
188 cr0 |= X86_CR0_EM;
189 write_cr0(cr0);
Roland McGrath44210112008-01-30 13:31:50 +0100190
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700191 if (!smp_processor_id())
192 init_thread_xstate();
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700193
Roland McGrath44210112008-01-30 13:31:50 +0100194 mxcsr_feature_mask_init();
195 /* clean state in init */
Avi Kivityc9ad4882010-05-06 11:45:45 +0300196 current_thread_info()->status = 0;
Roland McGrath44210112008-01-30 13:31:50 +0100197 clear_used_math();
198}
Robert Richter0e49bf62010-07-21 19:03:52 +0200199
Sheng Yang5ee481d2010-05-17 17:22:23 +0800200void fpu_finit(struct fpu *fpu)
Avi Kivity86603282010-05-06 11:45:46 +0300201{
Avi Kivity86603282010-05-06 11:45:46 +0300202 if (!HAVE_HWFP) {
203 finit_soft_fpu(&fpu->state->soft);
204 return;
205 }
Avi Kivity86603282010-05-06 11:45:46 +0300206
207 if (cpu_has_fxsr) {
208 struct i387_fxsave_struct *fx = &fpu->state->fxsave;
209
210 memset(fx, 0, xstate_size);
211 fx->cwd = 0x37f;
212 if (cpu_has_xmm)
213 fx->mxcsr = MXCSR_DEFAULT;
214 } else {
215 struct i387_fsave_struct *fp = &fpu->state->fsave;
216 memset(fp, 0, xstate_size);
217 fp->cwd = 0xffff037fu;
218 fp->swd = 0xffff0000u;
219 fp->twd = 0xffffffffu;
220 fp->fos = 0xffff0000u;
221 }
222}
Sheng Yang5ee481d2010-05-17 17:22:23 +0800223EXPORT_SYMBOL_GPL(fpu_finit);
Avi Kivity86603282010-05-06 11:45:46 +0300224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/*
226 * The _current_ task is using the FPU for the first time
227 * so initialize it and set the mxcsr to its default
228 * value at reset if we support XMM instructions and then
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300229 * remember the current task has used the FPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700231int init_fpu(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Avi Kivity86603282010-05-06 11:45:46 +0300233 int ret;
234
Roland McGrath44210112008-01-30 13:31:50 +0100235 if (tsk_used_math(tsk)) {
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700236 if (HAVE_HWFP && tsk == current)
Roland McGrath44210112008-01-30 13:31:50 +0100237 unlazy_fpu(tsk);
Oleg Nesterov089f9fb2012-04-16 22:48:15 +0200238 tsk->thread.fpu.last_cpu = ~0;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700239 return 0;
240 }
241
242 /*
243 * Memory allocation at the first usage of the FPU and other state.
244 */
Avi Kivity86603282010-05-06 11:45:46 +0300245 ret = fpu_alloc(&tsk->thread.fpu);
246 if (ret)
247 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100248
Avi Kivity86603282010-05-06 11:45:46 +0300249 fpu_finit(&tsk->thread.fpu);
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 set_stopped_child_used_math(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700252 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
Avi Kivitye5c30142011-01-11 12:15:54 +0200254EXPORT_SYMBOL_GPL(init_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800256/*
257 * The xstateregs_active() routine is the same as the fpregs_active() routine,
258 * as the "regset->n" for the xstate regset will be updated based on the feature
259 * capabilites supported by the xsave.
260 */
Roland McGrath44210112008-01-30 13:31:50 +0100261int fpregs_active(struct task_struct *target, const struct user_regset *regset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Roland McGrath44210112008-01-30 13:31:50 +0100263 return tsk_used_math(target) ? regset->n : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
Roland McGrath44210112008-01-30 13:31:50 +0100265
266int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
267{
268 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
269}
270
271int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
272 unsigned int pos, unsigned int count,
273 void *kbuf, void __user *ubuf)
274{
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700275 int ret;
276
Roland McGrath44210112008-01-30 13:31:50 +0100277 if (!cpu_has_fxsr)
278 return -ENODEV;
279
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700280 ret = init_fpu(target);
281 if (ret)
282 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100283
Suresh Siddha29104e12010-07-19 16:05:49 -0700284 sanitize_i387_state(target);
285
Roland McGrath44210112008-01-30 13:31:50 +0100286 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300287 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100288}
289
290int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
291 unsigned int pos, unsigned int count,
292 const void *kbuf, const void __user *ubuf)
293{
294 int ret;
295
296 if (!cpu_has_fxsr)
297 return -ENODEV;
298
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700299 ret = init_fpu(target);
300 if (ret)
301 return ret;
302
Suresh Siddha29104e12010-07-19 16:05:49 -0700303 sanitize_i387_state(target);
304
Roland McGrath44210112008-01-30 13:31:50 +0100305 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300306 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100307
308 /*
309 * mxcsr reserved bits must be masked to zero for security reasons.
310 */
Avi Kivity86603282010-05-06 11:45:46 +0300311 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100312
Suresh Siddha42deec62008-07-29 10:29:26 -0700313 /*
314 * update the header bits in the xsave header, indicating the
315 * presence of FP and SSE state.
316 */
317 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300318 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha42deec62008-07-29 10:29:26 -0700319
Roland McGrath44210112008-01-30 13:31:50 +0100320 return ret;
321}
322
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800323int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
324 unsigned int pos, unsigned int count,
325 void *kbuf, void __user *ubuf)
326{
327 int ret;
328
329 if (!cpu_has_xsave)
330 return -ENODEV;
331
332 ret = init_fpu(target);
333 if (ret)
334 return ret;
335
336 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800337 * Copy the 48bytes defined by the software first into the xstate
338 * memory layout in the thread struct, so that we can copy the entire
339 * xstateregs to the user using one user_regset_copyout().
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800340 */
Avi Kivity86603282010-05-06 11:45:46 +0300341 memcpy(&target->thread.fpu.state->fxsave.sw_reserved,
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800342 xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes));
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800343
344 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800345 * Copy the xstate memory layout.
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800346 */
347 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300348 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800349 return ret;
350}
351
352int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
353 unsigned int pos, unsigned int count,
354 const void *kbuf, const void __user *ubuf)
355{
356 int ret;
357 struct xsave_hdr_struct *xsave_hdr;
358
359 if (!cpu_has_xsave)
360 return -ENODEV;
361
362 ret = init_fpu(target);
363 if (ret)
364 return ret;
365
366 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300367 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800368
369 /*
370 * mxcsr reserved bits must be masked to zero for security reasons.
371 */
Avi Kivity86603282010-05-06 11:45:46 +0300372 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800373
Avi Kivity86603282010-05-06 11:45:46 +0300374 xsave_hdr = &target->thread.fpu.state->xsave.xsave_hdr;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800375
376 xsave_hdr->xstate_bv &= pcntxt_mask;
377 /*
378 * These bits must be zero.
379 */
380 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
381
382 return ret;
383}
384
Roland McGrath44210112008-01-30 13:31:50 +0100385#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/*
388 * FPU tag word conversions.
389 */
390
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100391static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100396 tmp = ~twd;
Roland McGrath44210112008-01-30 13:31:50 +0100397 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100398 /* and move the valid bits to the lower byte. */
399 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
400 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
401 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
Ingo Molnarf6689642008-03-05 15:37:32 +0100402
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100403 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
Phil Carmody497888c2011-07-14 15:07:13 +0300406#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16)
Roland McGrath44210112008-01-30 13:31:50 +0100407#define FP_EXP_TAG_VALID 0
408#define FP_EXP_TAG_ZERO 1
409#define FP_EXP_TAG_SPECIAL 2
410#define FP_EXP_TAG_EMPTY 3
411
412static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Roland McGrath44210112008-01-30 13:31:50 +0100414 struct _fpxreg *st;
415 u32 tos = (fxsave->swd >> 11) & 7;
416 u32 twd = (unsigned long) fxsave->twd;
417 u32 tag;
418 u32 ret = 0xffff0000u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 int i;
420
Roland McGrath44210112008-01-30 13:31:50 +0100421 for (i = 0; i < 8; i++, twd >>= 1) {
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100422 if (twd & 0x1) {
423 st = FPREG_ADDR(fxsave, (i - tos) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100425 switch (st->exponent & 0x7fff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 case 0x7fff:
Roland McGrath44210112008-01-30 13:31:50 +0100427 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 break;
429 case 0x0000:
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100430 if (!st->significand[0] &&
431 !st->significand[1] &&
432 !st->significand[2] &&
Roland McGrath44210112008-01-30 13:31:50 +0100433 !st->significand[3])
434 tag = FP_EXP_TAG_ZERO;
435 else
436 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 break;
438 default:
Roland McGrath44210112008-01-30 13:31:50 +0100439 if (st->significand[3] & 0x8000)
440 tag = FP_EXP_TAG_VALID;
441 else
442 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 break;
444 }
445 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100446 tag = FP_EXP_TAG_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
Roland McGrath44210112008-01-30 13:31:50 +0100448 ret |= tag << (2 * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450 return ret;
451}
452
453/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 * FXSR floating point environment conversions.
455 */
456
Ingo Molnarf6689642008-03-05 15:37:32 +0100457static void
458convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Avi Kivity86603282010-05-06 11:45:46 +0300460 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100461 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
462 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 int i;
464
Roland McGrath44210112008-01-30 13:31:50 +0100465 env->cwd = fxsave->cwd | 0xffff0000u;
466 env->swd = fxsave->swd | 0xffff0000u;
467 env->twd = twd_fxsr_to_i387(fxsave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Roland McGrath44210112008-01-30 13:31:50 +0100469#ifdef CONFIG_X86_64
470 env->fip = fxsave->rip;
471 env->foo = fxsave->rdp;
Brian Gerst10c11f32010-09-03 21:17:13 -0400472 /*
473 * should be actually ds/cs at fpu exception time, but
474 * that information is not available in 64bit mode.
475 */
476 env->fcs = task_pt_regs(tsk)->cs;
Roland McGrath44210112008-01-30 13:31:50 +0100477 if (tsk == current) {
Brian Gerst10c11f32010-09-03 21:17:13 -0400478 savesegment(ds, env->fos);
Roland McGrath44210112008-01-30 13:31:50 +0100479 } else {
Brian Gerst10c11f32010-09-03 21:17:13 -0400480 env->fos = tsk->thread.ds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
Brian Gerst10c11f32010-09-03 21:17:13 -0400482 env->fos |= 0xffff0000;
Roland McGrath44210112008-01-30 13:31:50 +0100483#else
484 env->fip = fxsave->fip;
Jan Beulich609b5292008-03-05 08:35:14 +0000485 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
Roland McGrath44210112008-01-30 13:31:50 +0100486 env->foo = fxsave->foo;
487 env->fos = fxsave->fos;
488#endif
489
490 for (i = 0; i < 8; ++i)
491 memcpy(&to[i], &from[i], sizeof(to[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Roland McGrath44210112008-01-30 13:31:50 +0100494static void convert_to_fxsr(struct task_struct *tsk,
495 const struct user_i387_ia32_struct *env)
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Avi Kivity86603282010-05-06 11:45:46 +0300498 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100499 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
500 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 int i;
502
Roland McGrath44210112008-01-30 13:31:50 +0100503 fxsave->cwd = env->cwd;
504 fxsave->swd = env->swd;
505 fxsave->twd = twd_i387_to_fxsr(env->twd);
506 fxsave->fop = (u16) ((u32) env->fcs >> 16);
507#ifdef CONFIG_X86_64
508 fxsave->rip = env->fip;
509 fxsave->rdp = env->foo;
510 /* cs and ds ignored */
511#else
512 fxsave->fip = env->fip;
513 fxsave->fcs = (env->fcs & 0xffff);
514 fxsave->foo = env->foo;
515 fxsave->fos = env->fos;
516#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Roland McGrath44210112008-01-30 13:31:50 +0100518 for (i = 0; i < 8; ++i)
519 memcpy(&to[i], &from[i], sizeof(from[0]));
520}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Roland McGrath44210112008-01-30 13:31:50 +0100522int fpregs_get(struct task_struct *target, const struct user_regset *regset,
523 unsigned int pos, unsigned int count,
524 void *kbuf, void __user *ubuf)
525{
526 struct user_i387_ia32_struct env;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700527 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700529 ret = init_fpu(target);
530 if (ret)
531 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100532
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700533 if (!HAVE_HWFP)
534 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
535
Ingo Molnarf6689642008-03-05 15:37:32 +0100536 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100537 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300538 &target->thread.fpu.state->fsave, 0,
Suresh Siddha61c46282008-03-10 15:28:04 -0700539 -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100540 }
Roland McGrath44210112008-01-30 13:31:50 +0100541
Suresh Siddha29104e12010-07-19 16:05:49 -0700542 sanitize_i387_state(target);
543
Roland McGrath44210112008-01-30 13:31:50 +0100544 if (kbuf && pos == 0 && count == sizeof(env)) {
545 convert_from_fxsr(kbuf, target);
546 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
Roland McGrath44210112008-01-30 13:31:50 +0100548
549 convert_from_fxsr(&env, target);
Ingo Molnarf6689642008-03-05 15:37:32 +0100550
Roland McGrath44210112008-01-30 13:31:50 +0100551 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
552}
553
554int fpregs_set(struct task_struct *target, const struct user_regset *regset,
555 unsigned int pos, unsigned int count,
556 const void *kbuf, const void __user *ubuf)
557{
558 struct user_i387_ia32_struct env;
559 int ret;
560
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700561 ret = init_fpu(target);
562 if (ret)
563 return ret;
564
Suresh Siddha29104e12010-07-19 16:05:49 -0700565 sanitize_i387_state(target);
566
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700567 if (!HAVE_HWFP)
568 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
569
Ingo Molnarf6689642008-03-05 15:37:32 +0100570 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100571 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300572 &target->thread.fpu.state->fsave, 0, -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100573 }
Roland McGrath44210112008-01-30 13:31:50 +0100574
575 if (pos > 0 || count < sizeof(env))
576 convert_from_fxsr(&env, target);
577
578 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
579 if (!ret)
580 convert_to_fxsr(target, &env);
581
Suresh Siddha42deec62008-07-29 10:29:26 -0700582 /*
583 * update the header bit in the xsave header, indicating the
584 * presence of FP.
585 */
586 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300587 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FP;
Roland McGrath44210112008-01-30 13:31:50 +0100588 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
591/*
592 * Signal frame handlers.
593 */
594
Roland McGrath44210112008-01-30 13:31:50 +0100595static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300598 struct i387_fsave_struct *fp = &tsk->thread.fpu.state->fsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Suresh Siddha61c46282008-03-10 15:28:04 -0700600 fp->status = fp->swd;
601 if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return -1;
603 return 1;
604}
605
Roland McGrath44210112008-01-30 13:31:50 +0100606static int save_i387_fxsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
608 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300609 struct i387_fxsave_struct *fx = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100610 struct user_i387_ia32_struct env;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 int err = 0;
612
Roland McGrath44210112008-01-30 13:31:50 +0100613 convert_from_fxsr(&env, tsk);
614 if (__copy_to_user(buf, &env, sizeof(env)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return -1;
616
Suresh Siddha61c46282008-03-10 15:28:04 -0700617 err |= __put_user(fx->swd, &buf->status);
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100618 err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
619 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return -1;
621
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700622 if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return -1;
624 return 1;
625}
626
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700627static int save_i387_xsave(void __user *buf)
628{
Suresh Siddha04944b72008-10-07 14:04:28 -0700629 struct task_struct *tsk = current;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700630 struct _fpstate_ia32 __user *fx = buf;
631 int err = 0;
632
Suresh Siddha29104e12010-07-19 16:05:49 -0700633
634 sanitize_i387_state(tsk);
635
Suresh Siddha04944b72008-10-07 14:04:28 -0700636 /*
637 * For legacy compatible, we always set FP/SSE bits in the bit
638 * vector while saving the state to the user context.
639 * This will enable us capturing any changes(during sigreturn) to
640 * the FP/SSE bits by the legacy applications which don't touch
641 * xstate_bv in the xsave header.
642 *
643 * xsave aware applications can change the xstate_bv in the xsave
644 * header as well as change any contents in the memory layout.
645 * xrestore as part of sigreturn will capture all the changes.
646 */
Avi Kivity86603282010-05-06 11:45:46 +0300647 tsk->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha04944b72008-10-07 14:04:28 -0700648
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700649 if (save_i387_fxsave(fx) < 0)
650 return -1;
651
652 err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32,
653 sizeof(struct _fpx_sw_bytes));
654 err |= __put_user(FP_XSTATE_MAGIC2,
655 (__u32 __user *) (buf + sig_xstate_ia32_size
656 - FP_XSTATE_MAGIC2_SIZE));
657 if (err)
658 return -1;
659
660 return 1;
661}
662
Suresh Siddhaab513702008-07-29 10:29:22 -0700663int save_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Suresh Siddhaab513702008-07-29 10:29:22 -0700665 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
666 struct task_struct *tsk = current;
667
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100668 if (!used_math())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700670
671 if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size))
672 return -EACCES;
Ingo Molnarf6689642008-03-05 15:37:32 +0100673 /*
674 * This will cause a "finit" to be triggered by the next
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 * attempted FPU operation by the 'current' process.
676 */
677 clear_used_math();
678
Ingo Molnarf6689642008-03-05 15:37:32 +0100679 if (!HAVE_HWFP) {
Roland McGrath44210112008-01-30 13:31:50 +0100680 return fpregs_soft_get(current, NULL,
681 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700682 NULL, fp) ? -1 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
Ingo Molnarf6689642008-03-05 15:37:32 +0100684
Suresh Siddhaab513702008-07-29 10:29:22 -0700685 unlazy_fpu(tsk);
686
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700687 if (cpu_has_xsave)
688 return save_i387_xsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100689 if (cpu_has_fxsr)
Suresh Siddhaab513702008-07-29 10:29:22 -0700690 return save_i387_fxsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100691 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700692 return save_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Roland McGrath44210112008-01-30 13:31:50 +0100695static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100698
Avi Kivity86603282010-05-06 11:45:46 +0300699 return __copy_from_user(&tsk->thread.fpu.state->fsave, buf,
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100700 sizeof(struct i387_fsave_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700703static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf,
704 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct task_struct *tsk = current;
Roland McGrath44210112008-01-30 13:31:50 +0100707 struct user_i387_ia32_struct env;
Ingo Molnarf6689642008-03-05 15:37:32 +0100708 int err;
709
Avi Kivity86603282010-05-06 11:45:46 +0300710 err = __copy_from_user(&tsk->thread.fpu.state->fxsave, &buf->_fxsr_env[0],
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700711 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 /* mxcsr reserved bits must be masked to zero for security reasons */
Avi Kivity86603282010-05-06 11:45:46 +0300713 tsk->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100714 if (err || __copy_from_user(&env, buf, sizeof(env)))
715 return 1;
716 convert_to_fxsr(tsk, &env);
Ingo Molnarf6689642008-03-05 15:37:32 +0100717
Roland McGrath44210112008-01-30 13:31:50 +0100718 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700721static int restore_i387_xsave(void __user *buf)
722{
723 struct _fpx_sw_bytes fx_sw_user;
724 struct _fpstate_ia32 __user *fx_user =
725 ((struct _fpstate_ia32 __user *) buf);
726 struct i387_fxsave_struct __user *fx =
727 (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0];
728 struct xsave_hdr_struct *xsave_hdr =
Avi Kivity86603282010-05-06 11:45:46 +0300729 &current->thread.fpu.state->xsave.xsave_hdr;
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700730 u64 mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700731 int err;
732
733 if (check_for_xstate(fx, buf, &fx_sw_user))
734 goto fx_only;
735
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700736 mask = fx_sw_user.xstate_bv;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700737
738 err = restore_i387_fxsave(buf, fx_sw_user.xstate_size);
739
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700740 xsave_hdr->xstate_bv &= pcntxt_mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700741 /*
742 * These bits must be zero.
743 */
744 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
745
746 /*
747 * Init the state that is not present in the memory layout
748 * and enabled by the OS.
749 */
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700750 mask = ~(pcntxt_mask & ~mask);
751 xsave_hdr->xstate_bv &= mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700752
753 return err;
754fx_only:
755 /*
756 * Couldn't find the extended state information in the memory
757 * layout. Restore the FP/SSE and init the other extended state
758 * enabled by the OS.
759 */
760 xsave_hdr->xstate_bv = XSTATE_FPSSE;
761 return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct));
762}
763
Suresh Siddhaab513702008-07-29 10:29:22 -0700764int restore_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
766 int err;
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700767 struct task_struct *tsk = current;
Suresh Siddhaab513702008-07-29 10:29:22 -0700768 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700770 if (HAVE_HWFP)
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700771 clear_fpu(tsk);
772
Suresh Siddhaab513702008-07-29 10:29:22 -0700773 if (!buf) {
774 if (used_math()) {
775 clear_fpu(tsk);
776 clear_used_math();
777 }
778
779 return 0;
780 } else
781 if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size))
782 return -EACCES;
783
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700784 if (!used_math()) {
785 err = init_fpu(tsk);
786 if (err)
787 return err;
788 }
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700789
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700790 if (HAVE_HWFP) {
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700791 if (cpu_has_xsave)
792 err = restore_i387_xsave(buf);
793 else if (cpu_has_fxsr)
794 err = restore_i387_fxsave(fp, sizeof(struct
795 i387_fxsave_struct));
Ingo Molnarf6689642008-03-05 15:37:32 +0100796 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700797 err = restore_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100799 err = fpregs_soft_set(current, NULL,
800 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700801 NULL, fp) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803 set_used_math();
Ingo Molnarf6689642008-03-05 15:37:32 +0100804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return err;
806}
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808/*
809 * FPU state for core dumps.
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100810 * This is only used for a.out dumps now.
811 * It is declared generically using elf_fpregset_t (which is
812 * struct user_i387_struct) but is in fact only used for 32-bit
813 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100815int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100818 int fpvalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 fpvalid = !!used_math();
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100821 if (fpvalid)
822 fpvalid = !fpregs_get(tsk, NULL,
823 0, sizeof(struct user_i387_ia32_struct),
824 fpu, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 return fpvalid;
827}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700828EXPORT_SYMBOL(dump_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100830#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */