x86/fpu: Don't reset thread.fpu_counter
[linux/fpc-iii.git] / arch / x86 / kernel / i387.c
blob4d0db9ed58e06f02401260b24e0b04a3cc80e62e
1 /*
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
7 */
8 #include <linux/module.h>
9 #include <linux/regset.h>
10 #include <linux/sched.h>
11 #include <linux/slab.h>
13 #include <asm/sigcontext.h>
14 #include <asm/processor.h>
15 #include <asm/math_emu.h>
16 #include <asm/uaccess.h>
17 #include <asm/ptrace.h>
18 #include <asm/i387.h>
19 #include <asm/fpu-internal.h>
20 #include <asm/user.h>
23 * Were we in an interrupt that interrupted kernel mode?
25 * On others, we can do a kernel_fpu_begin/end() pair *ONLY* if that
26 * pair does nothing at all: the thread must not have fpu (so
27 * that we don't try to save the FPU state), and TS must
28 * be set (so that the clts/stts pair does nothing that is
29 * visible in the interrupted kernel thread).
31 * Except for the eagerfpu case when we return 1 unless we've already
32 * been eager and saved the state in kernel_fpu_begin().
34 static inline bool interrupted_kernel_fpu_idle(void)
36 if (use_eager_fpu())
37 return __thread_has_fpu(current);
39 return !__thread_has_fpu(current) &&
40 (read_cr0() & X86_CR0_TS);
44 * Were we in user mode (or vm86 mode) when we were
45 * interrupted?
47 * Doing kernel_fpu_begin/end() is ok if we are running
48 * in an interrupt context from user mode - we'll just
49 * save the FPU state as required.
51 static inline bool interrupted_user_mode(void)
53 struct pt_regs *regs = get_irq_regs();
54 return regs && user_mode_vm(regs);
58 * Can we use the FPU in kernel mode with the
59 * whole "kernel_fpu_begin/end()" sequence?
61 * It's always ok in process context (ie "not interrupt")
62 * but it is sometimes ok even from an irq.
64 bool irq_fpu_usable(void)
66 return !in_interrupt() ||
67 interrupted_user_mode() ||
68 interrupted_kernel_fpu_idle();
70 EXPORT_SYMBOL(irq_fpu_usable);
72 void __kernel_fpu_begin(void)
74 struct task_struct *me = current;
76 if (__thread_has_fpu(me)) {
77 __thread_clear_has_fpu(me);
78 __save_init_fpu(me);
79 /* We do 'stts()' in __kernel_fpu_end() */
80 } else if (!use_eager_fpu()) {
81 this_cpu_write(fpu_owner_task, NULL);
82 clts();
85 EXPORT_SYMBOL(__kernel_fpu_begin);
87 void __kernel_fpu_end(void)
89 if (use_eager_fpu()) {
91 * For eager fpu, most the time, tsk_used_math() is true.
92 * Restore the user math as we are done with the kernel usage.
93 * At few instances during thread exit, signal handling etc,
94 * tsk_used_math() is false. Those few places will take proper
95 * actions, so we don't need to restore the math here.
97 if (likely(tsk_used_math(current)))
98 math_state_restore();
99 } else {
100 stts();
103 EXPORT_SYMBOL(__kernel_fpu_end);
105 void unlazy_fpu(struct task_struct *tsk)
107 preempt_disable();
108 if (__thread_has_fpu(tsk)) {
109 __save_init_fpu(tsk);
110 __thread_fpu_end(tsk);
112 preempt_enable();
114 EXPORT_SYMBOL(unlazy_fpu);
116 unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu;
117 unsigned int xstate_size;
118 EXPORT_SYMBOL_GPL(xstate_size);
119 static struct i387_fxsave_struct fx_scratch;
121 static void mxcsr_feature_mask_init(void)
123 unsigned long mask = 0;
125 if (cpu_has_fxsr) {
126 memset(&fx_scratch, 0, sizeof(struct i387_fxsave_struct));
127 asm volatile("fxsave %0" : "+m" (fx_scratch));
128 mask = fx_scratch.mxcsr_mask;
129 if (mask == 0)
130 mask = 0x0000ffbf;
132 mxcsr_feature_mask &= mask;
135 static void init_thread_xstate(void)
138 * Note that xstate_size might be overwriten later during
139 * xsave_init().
142 if (!cpu_has_fpu) {
144 * Disable xsave as we do not support it if i387
145 * emulation is enabled.
147 setup_clear_cpu_cap(X86_FEATURE_XSAVE);
148 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
149 xstate_size = sizeof(struct i387_soft_struct);
150 return;
153 if (cpu_has_fxsr)
154 xstate_size = sizeof(struct i387_fxsave_struct);
155 else
156 xstate_size = sizeof(struct i387_fsave_struct);
160 * Called at bootup to set up the initial FPU state that is later cloned
161 * into all processes.
164 void fpu_init(void)
166 unsigned long cr0;
167 unsigned long cr4_mask = 0;
169 #ifndef CONFIG_MATH_EMULATION
170 if (!cpu_has_fpu) {
171 pr_emerg("No FPU found and no math emulation present\n");
172 pr_emerg("Giving up\n");
173 for (;;)
174 asm volatile("hlt");
176 #endif
177 if (cpu_has_fxsr)
178 cr4_mask |= X86_CR4_OSFXSR;
179 if (cpu_has_xmm)
180 cr4_mask |= X86_CR4_OSXMMEXCPT;
181 if (cr4_mask)
182 set_in_cr4(cr4_mask);
184 cr0 = read_cr0();
185 cr0 &= ~(X86_CR0_TS|X86_CR0_EM); /* clear TS and EM */
186 if (!cpu_has_fpu)
187 cr0 |= X86_CR0_EM;
188 write_cr0(cr0);
191 * init_thread_xstate is only called once to avoid overriding
192 * xstate_size during boot time or during CPU hotplug.
194 if (xstate_size == 0)
195 init_thread_xstate();
197 mxcsr_feature_mask_init();
198 xsave_init();
199 eager_fpu_init();
202 void fpu_finit(struct fpu *fpu)
204 if (!cpu_has_fpu) {
205 finit_soft_fpu(&fpu->state->soft);
206 return;
209 if (cpu_has_fxsr) {
210 fx_finit(&fpu->state->fxsave);
211 } else {
212 struct i387_fsave_struct *fp = &fpu->state->fsave;
213 memset(fp, 0, xstate_size);
214 fp->cwd = 0xffff037fu;
215 fp->swd = 0xffff0000u;
216 fp->twd = 0xffffffffu;
217 fp->fos = 0xffff0000u;
220 EXPORT_SYMBOL_GPL(fpu_finit);
223 * The _current_ task is using the FPU for the first time
224 * so initialize it and set the mxcsr to its default
225 * value at reset if we support XMM instructions and then
226 * remember the current task has used the FPU.
228 int init_fpu(struct task_struct *tsk)
230 int ret;
232 if (tsk_used_math(tsk)) {
233 if (cpu_has_fpu && tsk == current)
234 unlazy_fpu(tsk);
235 tsk->thread.fpu.last_cpu = ~0;
236 return 0;
240 * Memory allocation at the first usage of the FPU and other state.
242 ret = fpu_alloc(&tsk->thread.fpu);
243 if (ret)
244 return ret;
246 fpu_finit(&tsk->thread.fpu);
248 set_stopped_child_used_math(tsk);
249 return 0;
251 EXPORT_SYMBOL_GPL(init_fpu);
254 * The xstateregs_active() routine is the same as the fpregs_active() routine,
255 * as the "regset->n" for the xstate regset will be updated based on the feature
256 * capabilites supported by the xsave.
258 int fpregs_active(struct task_struct *target, const struct user_regset *regset)
260 return tsk_used_math(target) ? regset->n : 0;
263 int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
265 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
268 int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
269 unsigned int pos, unsigned int count,
270 void *kbuf, void __user *ubuf)
272 int ret;
274 if (!cpu_has_fxsr)
275 return -ENODEV;
277 ret = init_fpu(target);
278 if (ret)
279 return ret;
281 sanitize_i387_state(target);
283 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
284 &target->thread.fpu.state->fxsave, 0, -1);
287 int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
288 unsigned int pos, unsigned int count,
289 const void *kbuf, const void __user *ubuf)
291 int ret;
293 if (!cpu_has_fxsr)
294 return -ENODEV;
296 ret = init_fpu(target);
297 if (ret)
298 return ret;
300 sanitize_i387_state(target);
302 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
303 &target->thread.fpu.state->fxsave, 0, -1);
306 * mxcsr reserved bits must be masked to zero for security reasons.
308 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
311 * update the header bits in the xsave header, indicating the
312 * presence of FP and SSE state.
314 if (cpu_has_xsave)
315 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
317 return ret;
320 int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
321 unsigned int pos, unsigned int count,
322 void *kbuf, void __user *ubuf)
324 int ret;
326 if (!cpu_has_xsave)
327 return -ENODEV;
329 ret = init_fpu(target);
330 if (ret)
331 return ret;
334 * Copy the 48bytes defined by the software first into the xstate
335 * memory layout in the thread struct, so that we can copy the entire
336 * xstateregs to the user using one user_regset_copyout().
338 memcpy(&target->thread.fpu.state->fxsave.sw_reserved,
339 xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes));
342 * Copy the xstate memory layout.
344 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
345 &target->thread.fpu.state->xsave, 0, -1);
346 return ret;
349 int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
350 unsigned int pos, unsigned int count,
351 const void *kbuf, const void __user *ubuf)
353 int ret;
354 struct xsave_hdr_struct *xsave_hdr;
356 if (!cpu_has_xsave)
357 return -ENODEV;
359 ret = init_fpu(target);
360 if (ret)
361 return ret;
363 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
364 &target->thread.fpu.state->xsave, 0, -1);
367 * mxcsr reserved bits must be masked to zero for security reasons.
369 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
371 xsave_hdr = &target->thread.fpu.state->xsave.xsave_hdr;
373 xsave_hdr->xstate_bv &= pcntxt_mask;
375 * These bits must be zero.
377 memset(xsave_hdr->reserved, 0, 48);
379 return ret;
382 #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
385 * FPU tag word conversions.
388 static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
390 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
392 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
393 tmp = ~twd;
394 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
395 /* and move the valid bits to the lower byte. */
396 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
397 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
398 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
400 return tmp;
403 #define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16)
404 #define FP_EXP_TAG_VALID 0
405 #define FP_EXP_TAG_ZERO 1
406 #define FP_EXP_TAG_SPECIAL 2
407 #define FP_EXP_TAG_EMPTY 3
409 static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
411 struct _fpxreg *st;
412 u32 tos = (fxsave->swd >> 11) & 7;
413 u32 twd = (unsigned long) fxsave->twd;
414 u32 tag;
415 u32 ret = 0xffff0000u;
416 int i;
418 for (i = 0; i < 8; i++, twd >>= 1) {
419 if (twd & 0x1) {
420 st = FPREG_ADDR(fxsave, (i - tos) & 7);
422 switch (st->exponent & 0x7fff) {
423 case 0x7fff:
424 tag = FP_EXP_TAG_SPECIAL;
425 break;
426 case 0x0000:
427 if (!st->significand[0] &&
428 !st->significand[1] &&
429 !st->significand[2] &&
430 !st->significand[3])
431 tag = FP_EXP_TAG_ZERO;
432 else
433 tag = FP_EXP_TAG_SPECIAL;
434 break;
435 default:
436 if (st->significand[3] & 0x8000)
437 tag = FP_EXP_TAG_VALID;
438 else
439 tag = FP_EXP_TAG_SPECIAL;
440 break;
442 } else {
443 tag = FP_EXP_TAG_EMPTY;
445 ret |= tag << (2 * i);
447 return ret;
451 * FXSR floating point environment conversions.
454 void
455 convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
457 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
458 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
459 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
460 int i;
462 env->cwd = fxsave->cwd | 0xffff0000u;
463 env->swd = fxsave->swd | 0xffff0000u;
464 env->twd = twd_fxsr_to_i387(fxsave);
466 #ifdef CONFIG_X86_64
467 env->fip = fxsave->rip;
468 env->foo = fxsave->rdp;
470 * should be actually ds/cs at fpu exception time, but
471 * that information is not available in 64bit mode.
473 env->fcs = task_pt_regs(tsk)->cs;
474 if (tsk == current) {
475 savesegment(ds, env->fos);
476 } else {
477 env->fos = tsk->thread.ds;
479 env->fos |= 0xffff0000;
480 #else
481 env->fip = fxsave->fip;
482 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
483 env->foo = fxsave->foo;
484 env->fos = fxsave->fos;
485 #endif
487 for (i = 0; i < 8; ++i)
488 memcpy(&to[i], &from[i], sizeof(to[0]));
491 void convert_to_fxsr(struct task_struct *tsk,
492 const struct user_i387_ia32_struct *env)
495 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
496 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
497 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
498 int i;
500 fxsave->cwd = env->cwd;
501 fxsave->swd = env->swd;
502 fxsave->twd = twd_i387_to_fxsr(env->twd);
503 fxsave->fop = (u16) ((u32) env->fcs >> 16);
504 #ifdef CONFIG_X86_64
505 fxsave->rip = env->fip;
506 fxsave->rdp = env->foo;
507 /* cs and ds ignored */
508 #else
509 fxsave->fip = env->fip;
510 fxsave->fcs = (env->fcs & 0xffff);
511 fxsave->foo = env->foo;
512 fxsave->fos = env->fos;
513 #endif
515 for (i = 0; i < 8; ++i)
516 memcpy(&to[i], &from[i], sizeof(from[0]));
519 int fpregs_get(struct task_struct *target, const struct user_regset *regset,
520 unsigned int pos, unsigned int count,
521 void *kbuf, void __user *ubuf)
523 struct user_i387_ia32_struct env;
524 int ret;
526 ret = init_fpu(target);
527 if (ret)
528 return ret;
530 if (!static_cpu_has(X86_FEATURE_FPU))
531 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
533 if (!cpu_has_fxsr)
534 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
535 &target->thread.fpu.state->fsave, 0,
536 -1);
538 sanitize_i387_state(target);
540 if (kbuf && pos == 0 && count == sizeof(env)) {
541 convert_from_fxsr(kbuf, target);
542 return 0;
545 convert_from_fxsr(&env, target);
547 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
550 int fpregs_set(struct task_struct *target, const struct user_regset *regset,
551 unsigned int pos, unsigned int count,
552 const void *kbuf, const void __user *ubuf)
554 struct user_i387_ia32_struct env;
555 int ret;
557 ret = init_fpu(target);
558 if (ret)
559 return ret;
561 sanitize_i387_state(target);
563 if (!static_cpu_has(X86_FEATURE_FPU))
564 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
566 if (!cpu_has_fxsr)
567 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
568 &target->thread.fpu.state->fsave, 0,
569 -1);
571 if (pos > 0 || count < sizeof(env))
572 convert_from_fxsr(&env, target);
574 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
575 if (!ret)
576 convert_to_fxsr(target, &env);
579 * update the header bit in the xsave header, indicating the
580 * presence of FP.
582 if (cpu_has_xsave)
583 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FP;
584 return ret;
588 * FPU state for core dumps.
589 * This is only used for a.out dumps now.
590 * It is declared generically using elf_fpregset_t (which is
591 * struct user_i387_struct) but is in fact only used for 32-bit
592 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
594 int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
596 struct task_struct *tsk = current;
597 int fpvalid;
599 fpvalid = !!used_math();
600 if (fpvalid)
601 fpvalid = !fpregs_get(tsk, NULL,
602 0, sizeof(struct user_i387_ia32_struct),
603 fpu, NULL);
605 return fpvalid;
607 EXPORT_SYMBOL(dump_fpu);
609 #endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */
611 static int __init no_387(char *s)
613 setup_clear_cpu_cap(X86_FEATURE_FPU);
614 return 1;
617 __setup("no387", no_387);
619 void fpu_detect(struct cpuinfo_x86 *c)
621 unsigned long cr0;
622 u16 fsw, fcw;
624 fsw = fcw = 0xffff;
626 cr0 = read_cr0();
627 cr0 &= ~(X86_CR0_TS | X86_CR0_EM);
628 write_cr0(cr0);
630 asm volatile("fninit ; fnstsw %0 ; fnstcw %1"
631 : "+m" (fsw), "+m" (fcw));
633 if (fsw == 0 && (fcw & 0x103f) == 0x003f)
634 set_cpu_cap(c, X86_FEATURE_FPU);
635 else
636 clear_cpu_cap(c, X86_FEATURE_FPU);
638 /* The final cr0 value is set in fpu_init() */