blob: b778e17e4b01cde0f51f317ce79d722ba2a90a0d [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>
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/sigcontext.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010013#include <asm/processor.h>
14#include <asm/math_emu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/uaccess.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010016#include <asm/ptrace.h>
17#include <asm/i387.h>
18#include <asm/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Roland McGrath44210112008-01-30 13:31:50 +010020#ifdef CONFIG_X86_64
Ingo Molnarf6689642008-03-05 15:37:32 +010021# include <asm/sigcontext32.h>
22# include <asm/user32.h>
Roland McGrath44210112008-01-30 13:31:50 +010023#else
Ingo Molnarf6689642008-03-05 15:37:32 +010024# define save_i387_ia32 save_i387
25# define restore_i387_ia32 restore_i387
26# define _fpstate_ia32 _fpstate
27# define user_i387_ia32_struct user_i387_struct
28# define user32_fxsr_struct user_fxsr_struct
Roland McGrath44210112008-01-30 13:31:50 +010029#endif
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#ifdef CONFIG_MATH_EMULATION
Ingo Molnarf6689642008-03-05 15:37:32 +010032# define HAVE_HWFP (boot_cpu_data.hard_math)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#else
Ingo Molnarf6689642008-03-05 15:37:32 +010034# define HAVE_HWFP 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#endif
36
Ingo Molnarf6689642008-03-05 15:37:32 +010037static unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu;
Suresh Siddha61c46282008-03-10 15:28:04 -070038unsigned int xstate_size;
39static struct i387_fxsave_struct fx_scratch __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Suresh Siddha61c46282008-03-10 15:28:04 -070041void __cpuinit mxcsr_feature_mask_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 unsigned long mask = 0;
Ingo Molnarf6689642008-03-05 15:37:32 +010044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 clts();
46 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -070047 memset(&fx_scratch, 0, sizeof(struct i387_fxsave_struct));
48 asm volatile("fxsave %0" : : "m" (fx_scratch));
49 mask = fx_scratch.mxcsr_mask;
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +010050 if (mask == 0)
51 mask = 0x0000ffbf;
52 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 mxcsr_feature_mask &= mask;
54 stts();
55}
56
Suresh Siddha61c46282008-03-10 15:28:04 -070057void __init init_thread_xstate(void)
58{
Suresh Siddhae8a496a2008-05-23 16:26:37 -070059 if (!HAVE_HWFP) {
60 xstate_size = sizeof(struct i387_soft_struct);
61 return;
62 }
63
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070064 if (cpu_has_xsave) {
65 xsave_cntxt_init();
66 return;
67 }
68
Suresh Siddha61c46282008-03-10 15:28:04 -070069 if (cpu_has_fxsr)
70 xstate_size = sizeof(struct i387_fxsave_struct);
71#ifdef CONFIG_X86_32
72 else
73 xstate_size = sizeof(struct i387_fsave_struct);
74#endif
Suresh Siddha61c46282008-03-10 15:28:04 -070075}
76
Roland McGrath44210112008-01-30 13:31:50 +010077#ifdef CONFIG_X86_64
78/*
79 * Called at bootup to set up the initial FPU state that is later cloned
80 * into all processes.
81 */
82void __cpuinit fpu_init(void)
83{
84 unsigned long oldcr0 = read_cr0();
Ingo Molnarf6689642008-03-05 15:37:32 +010085
Roland McGrath44210112008-01-30 13:31:50 +010086 set_in_cr4(X86_CR4_OSFXSR);
87 set_in_cr4(X86_CR4_OSXMMEXCPT);
88
Ingo Molnarf6689642008-03-05 15:37:32 +010089 write_cr0(oldcr0 & ~(X86_CR0_TS|X86_CR0_EM)); /* clear TS and EM */
Roland McGrath44210112008-01-30 13:31:50 +010090
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070091 /*
92 * Boot processor to setup the FP and extended state context info.
93 */
94 if (!smp_processor_id())
95 init_thread_xstate();
96 xsave_init();
97
Roland McGrath44210112008-01-30 13:31:50 +010098 mxcsr_feature_mask_init();
99 /* clean state in init */
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700100 if (cpu_has_xsave)
101 current_thread_info()->status = TS_XSAVE;
102 else
103 current_thread_info()->status = 0;
Roland McGrath44210112008-01-30 13:31:50 +0100104 clear_used_math();
105}
106#endif /* CONFIG_X86_64 */
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 * The _current_ task is using the FPU for the first time
110 * so initialize it and set the mxcsr to its default
111 * value at reset if we support XMM instructions and then
112 * remeber the current task has used the FPU.
113 */
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700114int init_fpu(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Roland McGrath44210112008-01-30 13:31:50 +0100116 if (tsk_used_math(tsk)) {
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700117 if (HAVE_HWFP && tsk == current)
Roland McGrath44210112008-01-30 13:31:50 +0100118 unlazy_fpu(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700119 return 0;
120 }
121
122 /*
123 * Memory allocation at the first usage of the FPU and other state.
124 */
125 if (!tsk->thread.xstate) {
126 tsk->thread.xstate = kmem_cache_alloc(task_xstate_cachep,
127 GFP_KERNEL);
128 if (!tsk->thread.xstate)
129 return -ENOMEM;
Roland McGrath44210112008-01-30 13:31:50 +0100130 }
131
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700132#ifdef CONFIG_X86_32
133 if (!HAVE_HWFP) {
134 memset(tsk->thread.xstate, 0, xstate_size);
135 finit();
136 set_stopped_child_used_math(tsk);
137 return 0;
138 }
139#endif
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700142 struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave;
143
144 memset(fx, 0, xstate_size);
145 fx->cwd = 0x37f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (cpu_has_xmm)
Suresh Siddha61c46282008-03-10 15:28:04 -0700147 fx->mxcsr = MXCSR_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 } else {
Suresh Siddha61c46282008-03-10 15:28:04 -0700149 struct i387_fsave_struct *fp = &tsk->thread.xstate->fsave;
150 memset(fp, 0, xstate_size);
151 fp->cwd = 0xffff037fu;
152 fp->swd = 0xffff0000u;
153 fp->twd = 0xffffffffu;
154 fp->fos = 0xffff0000u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
Roland McGrath44210112008-01-30 13:31:50 +0100156 /*
157 * Only the device not available exception or ptrace can call init_fpu.
158 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 set_stopped_child_used_math(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700160 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Roland McGrath44210112008-01-30 13:31:50 +0100163int fpregs_active(struct task_struct *target, const struct user_regset *regset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Roland McGrath44210112008-01-30 13:31:50 +0100165 return tsk_used_math(target) ? regset->n : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
Roland McGrath44210112008-01-30 13:31:50 +0100167
168int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
169{
170 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
171}
172
173int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
174 unsigned int pos, unsigned int count,
175 void *kbuf, void __user *ubuf)
176{
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700177 int ret;
178
Roland McGrath44210112008-01-30 13:31:50 +0100179 if (!cpu_has_fxsr)
180 return -ENODEV;
181
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700182 ret = init_fpu(target);
183 if (ret)
184 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100185
186 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700187 &target->thread.xstate->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100188}
189
190int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
191 unsigned int pos, unsigned int count,
192 const void *kbuf, const void __user *ubuf)
193{
194 int ret;
195
196 if (!cpu_has_fxsr)
197 return -ENODEV;
198
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700199 ret = init_fpu(target);
200 if (ret)
201 return ret;
202
Roland McGrath44210112008-01-30 13:31:50 +0100203 set_stopped_child_used_math(target);
204
205 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700206 &target->thread.xstate->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100207
208 /*
209 * mxcsr reserved bits must be masked to zero for security reasons.
210 */
Suresh Siddha61c46282008-03-10 15:28:04 -0700211 target->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100212
213 return ret;
214}
215
216#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/*
219 * FPU tag word conversions.
220 */
221
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100222static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100227 tmp = ~twd;
Roland McGrath44210112008-01-30 13:31:50 +0100228 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100229 /* and move the valid bits to the lower byte. */
230 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
231 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
232 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
Ingo Molnarf6689642008-03-05 15:37:32 +0100233
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100234 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
Roland McGrath44210112008-01-30 13:31:50 +0100237#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16);
238#define FP_EXP_TAG_VALID 0
239#define FP_EXP_TAG_ZERO 1
240#define FP_EXP_TAG_SPECIAL 2
241#define FP_EXP_TAG_EMPTY 3
242
243static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Roland McGrath44210112008-01-30 13:31:50 +0100245 struct _fpxreg *st;
246 u32 tos = (fxsave->swd >> 11) & 7;
247 u32 twd = (unsigned long) fxsave->twd;
248 u32 tag;
249 u32 ret = 0xffff0000u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 int i;
251
Roland McGrath44210112008-01-30 13:31:50 +0100252 for (i = 0; i < 8; i++, twd >>= 1) {
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100253 if (twd & 0x1) {
254 st = FPREG_ADDR(fxsave, (i - tos) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100256 switch (st->exponent & 0x7fff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 case 0x7fff:
Roland McGrath44210112008-01-30 13:31:50 +0100258 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 break;
260 case 0x0000:
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100261 if (!st->significand[0] &&
262 !st->significand[1] &&
263 !st->significand[2] &&
Roland McGrath44210112008-01-30 13:31:50 +0100264 !st->significand[3])
265 tag = FP_EXP_TAG_ZERO;
266 else
267 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 break;
269 default:
Roland McGrath44210112008-01-30 13:31:50 +0100270 if (st->significand[3] & 0x8000)
271 tag = FP_EXP_TAG_VALID;
272 else
273 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 break;
275 }
276 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100277 tag = FP_EXP_TAG_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Roland McGrath44210112008-01-30 13:31:50 +0100279 ret |= tag << (2 * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281 return ret;
282}
283
284/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * FXSR floating point environment conversions.
286 */
287
Ingo Molnarf6689642008-03-05 15:37:32 +0100288static void
289convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Suresh Siddha61c46282008-03-10 15:28:04 -0700291 struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100292 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
293 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 int i;
295
Roland McGrath44210112008-01-30 13:31:50 +0100296 env->cwd = fxsave->cwd | 0xffff0000u;
297 env->swd = fxsave->swd | 0xffff0000u;
298 env->twd = twd_fxsr_to_i387(fxsave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Roland McGrath44210112008-01-30 13:31:50 +0100300#ifdef CONFIG_X86_64
301 env->fip = fxsave->rip;
302 env->foo = fxsave->rdp;
303 if (tsk == current) {
304 /*
305 * should be actually ds/cs at fpu exception time, but
306 * that information is not available in 64bit mode.
307 */
Ingo Molnarf6689642008-03-05 15:37:32 +0100308 asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos));
309 asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs));
Roland McGrath44210112008-01-30 13:31:50 +0100310 } else {
311 struct pt_regs *regs = task_pt_regs(tsk);
Ingo Molnarf6689642008-03-05 15:37:32 +0100312
Roland McGrath44210112008-01-30 13:31:50 +0100313 env->fos = 0xffff0000 | tsk->thread.ds;
314 env->fcs = regs->cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
Roland McGrath44210112008-01-30 13:31:50 +0100316#else
317 env->fip = fxsave->fip;
Jan Beulich609b5292008-03-05 08:35:14 +0000318 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
Roland McGrath44210112008-01-30 13:31:50 +0100319 env->foo = fxsave->foo;
320 env->fos = fxsave->fos;
321#endif
322
323 for (i = 0; i < 8; ++i)
324 memcpy(&to[i], &from[i], sizeof(to[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Roland McGrath44210112008-01-30 13:31:50 +0100327static void convert_to_fxsr(struct task_struct *tsk,
328 const struct user_i387_ia32_struct *env)
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Suresh Siddha61c46282008-03-10 15:28:04 -0700331 struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100332 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
333 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 int i;
335
Roland McGrath44210112008-01-30 13:31:50 +0100336 fxsave->cwd = env->cwd;
337 fxsave->swd = env->swd;
338 fxsave->twd = twd_i387_to_fxsr(env->twd);
339 fxsave->fop = (u16) ((u32) env->fcs >> 16);
340#ifdef CONFIG_X86_64
341 fxsave->rip = env->fip;
342 fxsave->rdp = env->foo;
343 /* cs and ds ignored */
344#else
345 fxsave->fip = env->fip;
346 fxsave->fcs = (env->fcs & 0xffff);
347 fxsave->foo = env->foo;
348 fxsave->fos = env->fos;
349#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Roland McGrath44210112008-01-30 13:31:50 +0100351 for (i = 0; i < 8; ++i)
352 memcpy(&to[i], &from[i], sizeof(from[0]));
353}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Roland McGrath44210112008-01-30 13:31:50 +0100355int fpregs_get(struct task_struct *target, const struct user_regset *regset,
356 unsigned int pos, unsigned int count,
357 void *kbuf, void __user *ubuf)
358{
359 struct user_i387_ia32_struct env;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700360 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700362 ret = init_fpu(target);
363 if (ret)
364 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100365
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700366 if (!HAVE_HWFP)
367 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
368
Ingo Molnarf6689642008-03-05 15:37:32 +0100369 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100370 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700371 &target->thread.xstate->fsave, 0,
372 -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100373 }
Roland McGrath44210112008-01-30 13:31:50 +0100374
375 if (kbuf && pos == 0 && count == sizeof(env)) {
376 convert_from_fxsr(kbuf, target);
377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Roland McGrath44210112008-01-30 13:31:50 +0100379
380 convert_from_fxsr(&env, target);
Ingo Molnarf6689642008-03-05 15:37:32 +0100381
Roland McGrath44210112008-01-30 13:31:50 +0100382 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
383}
384
385int fpregs_set(struct task_struct *target, const struct user_regset *regset,
386 unsigned int pos, unsigned int count,
387 const void *kbuf, const void __user *ubuf)
388{
389 struct user_i387_ia32_struct env;
390 int ret;
391
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700392 ret = init_fpu(target);
393 if (ret)
394 return ret;
395
Roland McGrath44210112008-01-30 13:31:50 +0100396 set_stopped_child_used_math(target);
397
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700398 if (!HAVE_HWFP)
399 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
400
Ingo Molnarf6689642008-03-05 15:37:32 +0100401 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100402 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700403 &target->thread.xstate->fsave, 0, -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100404 }
Roland McGrath44210112008-01-30 13:31:50 +0100405
406 if (pos > 0 || count < sizeof(env))
407 convert_from_fxsr(&env, target);
408
409 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
410 if (!ret)
411 convert_to_fxsr(target, &env);
412
413 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
416/*
417 * Signal frame handlers.
418 */
419
Roland McGrath44210112008-01-30 13:31:50 +0100420static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 struct task_struct *tsk = current;
Suresh Siddha61c46282008-03-10 15:28:04 -0700423 struct i387_fsave_struct *fp = &tsk->thread.xstate->fsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100425 unlazy_fpu(tsk);
Suresh Siddha61c46282008-03-10 15:28:04 -0700426 fp->status = fp->swd;
427 if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return -1;
429 return 1;
430}
431
Roland McGrath44210112008-01-30 13:31:50 +0100432static int save_i387_fxsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 struct task_struct *tsk = current;
Suresh Siddha61c46282008-03-10 15:28:04 -0700435 struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100436 struct user_i387_ia32_struct env;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 int err = 0;
438
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100439 unlazy_fpu(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Roland McGrath44210112008-01-30 13:31:50 +0100441 convert_from_fxsr(&env, tsk);
442 if (__copy_to_user(buf, &env, sizeof(env)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return -1;
444
Suresh Siddha61c46282008-03-10 15:28:04 -0700445 err |= __put_user(fx->swd, &buf->status);
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100446 err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
447 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return -1;
449
Suresh Siddha61c46282008-03-10 15:28:04 -0700450 if (__copy_to_user(&buf->_fxsr_env[0], fx,
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100451 sizeof(struct i387_fxsave_struct)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return -1;
453 return 1;
454}
455
Roland McGrath44210112008-01-30 13:31:50 +0100456int save_i387_ia32(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100458 if (!used_math())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return 0;
Ingo Molnarf6689642008-03-05 15:37:32 +0100460 /*
461 * This will cause a "finit" to be triggered by the next
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 * attempted FPU operation by the 'current' process.
463 */
464 clear_used_math();
465
Ingo Molnarf6689642008-03-05 15:37:32 +0100466 if (!HAVE_HWFP) {
Roland McGrath44210112008-01-30 13:31:50 +0100467 return fpregs_soft_get(current, NULL,
468 0, sizeof(struct user_i387_ia32_struct),
469 NULL, buf) ? -1 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
Ingo Molnarf6689642008-03-05 15:37:32 +0100471
472 if (cpu_has_fxsr)
473 return save_i387_fxsave(buf);
474 else
475 return save_i387_fsave(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Roland McGrath44210112008-01-30 13:31:50 +0100478static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100481
Suresh Siddha61c46282008-03-10 15:28:04 -0700482 return __copy_from_user(&tsk->thread.xstate->fsave, buf,
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100483 sizeof(struct i387_fsave_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Roland McGrath44210112008-01-30 13:31:50 +0100486static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 struct task_struct *tsk = current;
Roland McGrath44210112008-01-30 13:31:50 +0100489 struct user_i387_ia32_struct env;
Ingo Molnarf6689642008-03-05 15:37:32 +0100490 int err;
491
Suresh Siddha61c46282008-03-10 15:28:04 -0700492 err = __copy_from_user(&tsk->thread.xstate->fxsave, &buf->_fxsr_env[0],
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100493 sizeof(struct i387_fxsave_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /* mxcsr reserved bits must be masked to zero for security reasons */
Suresh Siddha61c46282008-03-10 15:28:04 -0700495 tsk->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100496 if (err || __copy_from_user(&env, buf, sizeof(env)))
497 return 1;
498 convert_to_fxsr(tsk, &env);
Ingo Molnarf6689642008-03-05 15:37:32 +0100499
Roland McGrath44210112008-01-30 13:31:50 +0100500 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Roland McGrath44210112008-01-30 13:31:50 +0100503int restore_i387_ia32(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
505 int err;
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700506 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700508 if (HAVE_HWFP)
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700509 clear_fpu(tsk);
510
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700511 if (!used_math()) {
512 err = init_fpu(tsk);
513 if (err)
514 return err;
515 }
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700516
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700517 if (HAVE_HWFP) {
Ingo Molnarf6689642008-03-05 15:37:32 +0100518 if (cpu_has_fxsr)
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100519 err = restore_i387_fxsave(buf);
Ingo Molnarf6689642008-03-05 15:37:32 +0100520 else
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100521 err = restore_i387_fsave(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100523 err = fpregs_soft_set(current, NULL,
524 0, sizeof(struct user_i387_ia32_struct),
525 NULL, buf) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527 set_used_math();
Ingo Molnarf6689642008-03-05 15:37:32 +0100528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return err;
530}
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532/*
533 * FPU state for core dumps.
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100534 * This is only used for a.out dumps now.
535 * It is declared generically using elf_fpregset_t (which is
536 * struct user_i387_struct) but is in fact only used for 32-bit
537 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100539int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100542 int fpvalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 fpvalid = !!used_math();
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100545 if (fpvalid)
546 fpvalid = !fpregs_get(tsk, NULL,
547 0, sizeof(struct user_i387_ia32_struct),
548 fpu, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 return fpvalid;
551}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700552EXPORT_SYMBOL(dump_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100554#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */