2 * Copyright (C) 1994 Linus Torvalds
4 * Pentium III FXSR, SSE support
5 * General FPU state handling cleanups
6 * Gareth Hughes <gareth@valinux.com>, May 2000
8 #include <linux/module.h>
9 #include <linux/regset.h>
10 #include <linux/sched.h>
12 #include <asm/sigcontext.h>
13 #include <asm/processor.h>
14 #include <asm/math_emu.h>
15 #include <asm/uaccess.h>
16 #include <asm/ptrace.h>
21 # include <asm/sigcontext32.h>
22 # include <asm/user32.h>
24 # define save_i387_xstate_ia32 save_i387_xstate
25 # define restore_i387_xstate_ia32 restore_i387_xstate
26 # define _fpstate_ia32 _fpstate
27 # define _xstate_ia32 _xstate
28 # define sig_xstate_ia32_size sig_xstate_size
29 # define fx_sw_reserved_ia32 fx_sw_reserved
30 # define user_i387_ia32_struct user_i387_struct
31 # define user32_fxsr_struct user_fxsr_struct
34 #ifdef CONFIG_MATH_EMULATION
35 # define HAVE_HWFP (boot_cpu_data.hard_math)
40 static unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu;
41 unsigned int xstate_size;
42 unsigned int sig_xstate_ia32_size = sizeof(struct _fpstate_ia32);
43 static struct i387_fxsave_struct fx_scratch __cpuinitdata;
45 void __cpuinit mxcsr_feature_mask_init(void)
47 unsigned long mask = 0;
51 memset(&fx_scratch, 0, sizeof(struct i387_fxsave_struct));
52 asm volatile("fxsave %0" : : "m" (fx_scratch));
53 mask = fx_scratch.mxcsr_mask;
57 mxcsr_feature_mask &= mask;
61 void __init init_thread_xstate(void)
64 xstate_size = sizeof(struct i387_soft_struct);
74 xstate_size = sizeof(struct i387_fxsave_struct);
77 xstate_size = sizeof(struct i387_fsave_struct);
83 * Called at bootup to set up the initial FPU state that is later cloned
86 void __cpuinit fpu_init(void)
88 unsigned long oldcr0 = read_cr0();
90 set_in_cr4(X86_CR4_OSFXSR);
91 set_in_cr4(X86_CR4_OSXMMEXCPT);
93 write_cr0(oldcr0 & ~(X86_CR0_TS|X86_CR0_EM)); /* clear TS and EM */
96 * Boot processor to setup the FP and extended state context info.
98 if (!smp_processor_id())
102 mxcsr_feature_mask_init();
103 /* clean state in init */
105 current_thread_info()->status = TS_XSAVE;
107 current_thread_info()->status = 0;
110 #endif /* CONFIG_X86_64 */
113 * The _current_ task is using the FPU for the first time
114 * so initialize it and set the mxcsr to its default
115 * value at reset if we support XMM instructions and then
116 * remeber the current task has used the FPU.
118 int init_fpu(struct task_struct *tsk)
120 if (tsk_used_math(tsk)) {
121 if (HAVE_HWFP && tsk == current)
127 * Memory allocation at the first usage of the FPU and other state.
129 if (!tsk->thread.xstate) {
130 tsk->thread.xstate = kmem_cache_alloc(task_xstate_cachep,
132 if (!tsk->thread.xstate)
138 memset(tsk->thread.xstate, 0, xstate_size);
140 set_stopped_child_used_math(tsk);
146 struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave;
148 memset(fx, 0, xstate_size);
151 fx->mxcsr = MXCSR_DEFAULT;
153 struct i387_fsave_struct *fp = &tsk->thread.xstate->fsave;
154 memset(fp, 0, xstate_size);
155 fp->cwd = 0xffff037fu;
156 fp->swd = 0xffff0000u;
157 fp->twd = 0xffffffffu;
158 fp->fos = 0xffff0000u;
161 * Only the device not available exception or ptrace can call init_fpu.
163 set_stopped_child_used_math(tsk);
167 int fpregs_active(struct task_struct *target, const struct user_regset *regset)
169 return tsk_used_math(target) ? regset->n : 0;
172 int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
174 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
177 int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
178 unsigned int pos, unsigned int count,
179 void *kbuf, void __user *ubuf)
186 ret = init_fpu(target);
190 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
191 &target->thread.xstate->fxsave, 0, -1);
194 int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
195 unsigned int pos, unsigned int count,
196 const void *kbuf, const void __user *ubuf)
203 ret = init_fpu(target);
207 set_stopped_child_used_math(target);
209 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
210 &target->thread.xstate->fxsave, 0, -1);
213 * mxcsr reserved bits must be masked to zero for security reasons.
215 target->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask;
218 * update the header bits in the xsave header, indicating the
219 * presence of FP and SSE state.
222 target->thread.xstate->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
227 #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
230 * FPU tag word conversions.
233 static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
235 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
237 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
239 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
240 /* and move the valid bits to the lower byte. */
241 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
242 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
243 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
248 #define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16);
249 #define FP_EXP_TAG_VALID 0
250 #define FP_EXP_TAG_ZERO 1
251 #define FP_EXP_TAG_SPECIAL 2
252 #define FP_EXP_TAG_EMPTY 3
254 static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
257 u32 tos = (fxsave->swd >> 11) & 7;
258 u32 twd = (unsigned long) fxsave->twd;
260 u32 ret = 0xffff0000u;
263 for (i = 0; i < 8; i++, twd >>= 1) {
265 st = FPREG_ADDR(fxsave, (i - tos) & 7);
267 switch (st->exponent & 0x7fff) {
269 tag = FP_EXP_TAG_SPECIAL;
272 if (!st->significand[0] &&
273 !st->significand[1] &&
274 !st->significand[2] &&
276 tag = FP_EXP_TAG_ZERO;
278 tag = FP_EXP_TAG_SPECIAL;
281 if (st->significand[3] & 0x8000)
282 tag = FP_EXP_TAG_VALID;
284 tag = FP_EXP_TAG_SPECIAL;
288 tag = FP_EXP_TAG_EMPTY;
290 ret |= tag << (2 * i);
296 * FXSR floating point environment conversions.
300 convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
302 struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave;
303 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
304 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
307 env->cwd = fxsave->cwd | 0xffff0000u;
308 env->swd = fxsave->swd | 0xffff0000u;
309 env->twd = twd_fxsr_to_i387(fxsave);
312 env->fip = fxsave->rip;
313 env->foo = fxsave->rdp;
314 if (tsk == current) {
316 * should be actually ds/cs at fpu exception time, but
317 * that information is not available in 64bit mode.
319 asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos));
320 asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs));
322 struct pt_regs *regs = task_pt_regs(tsk);
324 env->fos = 0xffff0000 | tsk->thread.ds;
328 env->fip = fxsave->fip;
329 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
330 env->foo = fxsave->foo;
331 env->fos = fxsave->fos;
334 for (i = 0; i < 8; ++i)
335 memcpy(&to[i], &from[i], sizeof(to[0]));
338 static void convert_to_fxsr(struct task_struct *tsk,
339 const struct user_i387_ia32_struct *env)
342 struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave;
343 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
344 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
347 fxsave->cwd = env->cwd;
348 fxsave->swd = env->swd;
349 fxsave->twd = twd_i387_to_fxsr(env->twd);
350 fxsave->fop = (u16) ((u32) env->fcs >> 16);
352 fxsave->rip = env->fip;
353 fxsave->rdp = env->foo;
354 /* cs and ds ignored */
356 fxsave->fip = env->fip;
357 fxsave->fcs = (env->fcs & 0xffff);
358 fxsave->foo = env->foo;
359 fxsave->fos = env->fos;
362 for (i = 0; i < 8; ++i)
363 memcpy(&to[i], &from[i], sizeof(from[0]));
366 int fpregs_get(struct task_struct *target, const struct user_regset *regset,
367 unsigned int pos, unsigned int count,
368 void *kbuf, void __user *ubuf)
370 struct user_i387_ia32_struct env;
373 ret = init_fpu(target);
378 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
381 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
382 &target->thread.xstate->fsave, 0,
386 if (kbuf && pos == 0 && count == sizeof(env)) {
387 convert_from_fxsr(kbuf, target);
391 convert_from_fxsr(&env, target);
393 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
396 int fpregs_set(struct task_struct *target, const struct user_regset *regset,
397 unsigned int pos, unsigned int count,
398 const void *kbuf, const void __user *ubuf)
400 struct user_i387_ia32_struct env;
403 ret = init_fpu(target);
407 set_stopped_child_used_math(target);
410 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
413 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
414 &target->thread.xstate->fsave, 0, -1);
417 if (pos > 0 || count < sizeof(env))
418 convert_from_fxsr(&env, target);
420 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
422 convert_to_fxsr(target, &env);
425 * update the header bit in the xsave header, indicating the
429 target->thread.xstate->xsave.xsave_hdr.xstate_bv |= XSTATE_FP;
434 * Signal frame handlers.
437 static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf)
439 struct task_struct *tsk = current;
440 struct i387_fsave_struct *fp = &tsk->thread.xstate->fsave;
442 fp->status = fp->swd;
443 if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct)))
448 static int save_i387_fxsave(struct _fpstate_ia32 __user *buf)
450 struct task_struct *tsk = current;
451 struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave;
452 struct user_i387_ia32_struct env;
455 convert_from_fxsr(&env, tsk);
456 if (__copy_to_user(buf, &env, sizeof(env)))
459 err |= __put_user(fx->swd, &buf->status);
460 err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
464 if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size))
469 static int save_i387_xsave(void __user *buf)
471 struct _fpstate_ia32 __user *fx = buf;
474 if (save_i387_fxsave(fx) < 0)
477 err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32,
478 sizeof(struct _fpx_sw_bytes));
479 err |= __put_user(FP_XSTATE_MAGIC2,
480 (__u32 __user *) (buf + sig_xstate_ia32_size
481 - FP_XSTATE_MAGIC2_SIZE));
488 int save_i387_xstate_ia32(void __user *buf)
490 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
491 struct task_struct *tsk = current;
496 if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size))
499 * This will cause a "finit" to be triggered by the next
500 * attempted FPU operation by the 'current' process.
505 return fpregs_soft_get(current, NULL,
506 0, sizeof(struct user_i387_ia32_struct),
513 return save_i387_xsave(fp);
515 return save_i387_fxsave(fp);
517 return save_i387_fsave(fp);
520 static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf)
522 struct task_struct *tsk = current;
524 return __copy_from_user(&tsk->thread.xstate->fsave, buf,
525 sizeof(struct i387_fsave_struct));
528 static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf,
531 struct task_struct *tsk = current;
532 struct user_i387_ia32_struct env;
535 err = __copy_from_user(&tsk->thread.xstate->fxsave, &buf->_fxsr_env[0],
537 /* mxcsr reserved bits must be masked to zero for security reasons */
538 tsk->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask;
539 if (err || __copy_from_user(&env, buf, sizeof(env)))
541 convert_to_fxsr(tsk, &env);
546 static int restore_i387_xsave(void __user *buf)
548 struct _fpx_sw_bytes fx_sw_user;
549 struct _fpstate_ia32 __user *fx_user =
550 ((struct _fpstate_ia32 __user *) buf);
551 struct i387_fxsave_struct __user *fx =
552 (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0];
553 struct xsave_hdr_struct *xsave_hdr =
554 ¤t->thread.xstate->xsave.xsave_hdr;
558 if (check_for_xstate(fx, buf, &fx_sw_user))
561 mask = fx_sw_user.xstate_bv;
563 err = restore_i387_fxsave(buf, fx_sw_user.xstate_size);
565 xsave_hdr->xstate_bv &= pcntxt_mask;
567 * These bits must be zero.
569 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
572 * Init the state that is not present in the memory layout
573 * and enabled by the OS.
575 mask = ~(pcntxt_mask & ~mask);
576 xsave_hdr->xstate_bv &= mask;
581 * Couldn't find the extended state information in the memory
582 * layout. Restore the FP/SSE and init the other extended state
585 xsave_hdr->xstate_bv = XSTATE_FPSSE;
586 return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct));
589 int restore_i387_xstate_ia32(void __user *buf)
592 struct task_struct *tsk = current;
593 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
606 if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size))
617 err = restore_i387_xsave(buf);
618 else if (cpu_has_fxsr)
619 err = restore_i387_fxsave(fp, sizeof(struct
620 i387_fxsave_struct));
622 err = restore_i387_fsave(fp);
624 err = fpregs_soft_set(current, NULL,
625 0, sizeof(struct user_i387_ia32_struct),
634 * FPU state for core dumps.
635 * This is only used for a.out dumps now.
636 * It is declared generically using elf_fpregset_t (which is
637 * struct user_i387_struct) but is in fact only used for 32-bit
638 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
640 int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
642 struct task_struct *tsk = current;
645 fpvalid = !!used_math();
647 fpvalid = !fpregs_get(tsk, NULL,
648 0, sizeof(struct user_i387_ia32_struct),
653 EXPORT_SYMBOL(dump_fpu);
655 #endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */