blob: 6a664789667038499245b1eebce089a7402a5532 [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
Vegard Nossum77ef50a2008-06-18 17:08:48 +020010#ifndef ASM_X86__I387_H
11#define ASM_X86__I387_H
Roland McGrath1eeaed72008-01-30 13:31:51 +010012
13#include <linux/sched.h>
14#include <linux/kernel_stat.h>
15#include <linux/regset.h>
H. Peter Anvin92c37fa2008-02-04 16:47:58 +010016#include <asm/asm.h>
Roland McGrath1eeaed72008-01-30 13:31:51 +010017#include <asm/processor.h>
18#include <asm/sigcontext.h>
19#include <asm/user.h>
20#include <asm/uaccess.h>
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070021#include <asm/xsave.h>
Roland McGrath1eeaed72008-01-30 13:31:51 +010022
23extern void fpu_init(void);
Roland McGrath1eeaed72008-01-30 13:31:51 +010024extern void mxcsr_feature_mask_init(void);
Suresh Siddhaaa283f42008-03-10 15:28:05 -070025extern int init_fpu(struct task_struct *child);
Roland McGrath1eeaed72008-01-30 13:31:51 +010026extern asmlinkage void math_state_restore(void);
Suresh Siddha61c46282008-03-10 15:28:04 -070027extern void init_thread_xstate(void);
Roland McGrath1eeaed72008-01-30 13:31:51 +010028
29extern user_regset_active_fn fpregs_active, xfpregs_active;
30extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get;
31extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set;
32
33#ifdef CONFIG_IA32_EMULATION
34struct _fpstate_ia32;
35extern int save_i387_ia32(struct _fpstate_ia32 __user *buf);
36extern int restore_i387_ia32(struct _fpstate_ia32 __user *buf);
37#endif
38
39#ifdef CONFIG_X86_64
40
41/* Ignore delayed exceptions from user space */
42static inline void tolerant_fwait(void)
43{
44 asm volatile("1: fwait\n"
45 "2:\n"
Joe Perchesaffe6632008-03-23 01:02:18 -070046 _ASM_EXTABLE(1b, 2b));
Roland McGrath1eeaed72008-01-30 13:31:51 +010047}
48
49static inline int restore_fpu_checking(struct i387_fxsave_struct *fx)
50{
51 int err;
52
53 asm volatile("1: rex64/fxrstor (%[fx])\n\t"
54 "2:\n"
55 ".section .fixup,\"ax\"\n"
56 "3: movl $-1,%[err]\n"
57 " jmp 2b\n"
58 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -070059 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +010060 : [err] "=r" (err)
61#if 0 /* See comment in __save_init_fpu() below. */
62 : [fx] "r" (fx), "m" (*fx), "0" (0));
63#else
64 : [fx] "cdaSDb" (fx), "m" (*fx), "0" (0));
65#endif
Roland McGrath1eeaed72008-01-30 13:31:51 +010066 return err;
67}
68
69#define X87_FSW_ES (1 << 7) /* Exception Summary */
70
71/* AMD CPUs don't save/restore FDP/FIP/FOP unless an exception
72 is pending. Clear the x87 state here by setting it to fixed
73 values. The kernel data segment can be sometimes 0 and sometimes
74 new user value. Both should be ok.
75 Use the PDA as safe address because it should be already in L1. */
76static inline void clear_fpu_state(struct i387_fxsave_struct *fx)
77{
78 if (unlikely(fx->swd & X87_FSW_ES))
Joe Perchesaffe6632008-03-23 01:02:18 -070079 asm volatile("fnclex");
Roland McGrath1eeaed72008-01-30 13:31:51 +010080 alternative_input(ASM_NOP8 ASM_NOP2,
Joe Perchesaffe6632008-03-23 01:02:18 -070081 " emms\n" /* clear stack tags */
82 " fildl %%gs:0", /* load to clear state */
83 X86_FEATURE_FXSAVE_LEAK);
Roland McGrath1eeaed72008-01-30 13:31:51 +010084}
85
86static inline int save_i387_checking(struct i387_fxsave_struct __user *fx)
87{
88 int err;
89
90 asm volatile("1: rex64/fxsave (%[fx])\n\t"
91 "2:\n"
92 ".section .fixup,\"ax\"\n"
93 "3: movl $-1,%[err]\n"
94 " jmp 2b\n"
95 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -070096 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +010097 : [err] "=r" (err), "=m" (*fx)
98#if 0 /* See comment in __fxsave_clear() below. */
99 : [fx] "r" (fx), "0" (0));
100#else
101 : [fx] "cdaSDb" (fx), "0" (0));
102#endif
Joe Perchesaffe6632008-03-23 01:02:18 -0700103 if (unlikely(err) &&
104 __clear_user(fx, sizeof(struct i387_fxsave_struct)))
Roland McGrath1eeaed72008-01-30 13:31:51 +0100105 err = -EFAULT;
106 /* No need to clear here because the caller clears USED_MATH */
107 return err;
108}
109
110static inline void __save_init_fpu(struct task_struct *tsk)
111{
112 /* Using "rex64; fxsave %0" is broken because, if the memory operand
113 uses any extended registers for addressing, a second REX prefix
114 will be generated (to the assembler, rex64 followed by semicolon
115 is a separate instruction), and hence the 64-bitness is lost. */
116#if 0
117 /* Using "fxsaveq %0" would be the ideal choice, but is only supported
118 starting with gas 2.16. */
119 __asm__ __volatile__("fxsaveq %0"
Suresh Siddha61c46282008-03-10 15:28:04 -0700120 : "=m" (tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100121#elif 0
122 /* Using, as a workaround, the properly prefixed form below isn't
123 accepted by any binutils version so far released, complaining that
124 the same type of prefix is used twice if an extended register is
125 needed for addressing (fix submitted to mainline 2005-11-21). */
126 __asm__ __volatile__("rex64/fxsave %0"
Suresh Siddha61c46282008-03-10 15:28:04 -0700127 : "=m" (tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100128#else
129 /* This, however, we can work around by forcing the compiler to select
130 an addressing mode that doesn't require extended registers. */
Suresh Siddha61c46282008-03-10 15:28:04 -0700131 __asm__ __volatile__("rex64/fxsave (%1)"
132 : "=m" (tsk->thread.xstate->fxsave)
133 : "cdaSDb" (&tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100134#endif
Suresh Siddha61c46282008-03-10 15:28:04 -0700135 clear_fpu_state(&tsk->thread.xstate->fxsave);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100136 task_thread_info(tsk)->status &= ~TS_USEDFPU;
137}
138
Roland McGrath1eeaed72008-01-30 13:31:51 +0100139#else /* CONFIG_X86_32 */
140
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700141extern void finit(void);
142
Roland McGrath1eeaed72008-01-30 13:31:51 +0100143static inline void tolerant_fwait(void)
144{
145 asm volatile("fnclex ; fwait");
146}
147
148static inline void restore_fpu(struct task_struct *tsk)
149{
150 /*
151 * The "nop" is needed to make the instructions the same
152 * length.
153 */
154 alternative_input(
155 "nop ; frstor %1",
156 "fxrstor %1",
157 X86_FEATURE_FXSR,
Suresh Siddha61c46282008-03-10 15:28:04 -0700158 "m" (tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100159}
160
161/* We need a safe address that is cheap to find and that is already
162 in L1 during context switch. The best choices are unfortunately
163 different for UP and SMP */
164#ifdef CONFIG_SMP
165#define safe_address (__per_cpu_offset[0])
166#else
167#define safe_address (kstat_cpu(0).cpustat.user)
168#endif
169
170/*
171 * These must be called with preempt disabled
172 */
173static inline void __save_init_fpu(struct task_struct *tsk)
174{
175 /* Use more nops than strictly needed in case the compiler
176 varies code */
177 alternative_input(
178 "fnsave %[fx] ;fwait;" GENERIC_NOP8 GENERIC_NOP4,
179 "fxsave %[fx]\n"
180 "bt $7,%[fsw] ; jnc 1f ; fnclex\n1:",
181 X86_FEATURE_FXSR,
Suresh Siddha61c46282008-03-10 15:28:04 -0700182 [fx] "m" (tsk->thread.xstate->fxsave),
183 [fsw] "m" (tsk->thread.xstate->fxsave.swd) : "memory");
Roland McGrath1eeaed72008-01-30 13:31:51 +0100184 /* AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception
185 is pending. Clear the x87 state here by setting it to fixed
186 values. safe_address is a random variable that should be in L1 */
187 alternative_input(
188 GENERIC_NOP8 GENERIC_NOP2,
189 "emms\n\t" /* clear stack tags */
190 "fildl %[addr]", /* set F?P to defined value */
191 X86_FEATURE_FXSAVE_LEAK,
192 [addr] "m" (safe_address));
193 task_thread_info(tsk)->status &= ~TS_USEDFPU;
194}
195
196/*
197 * Signal frame handlers...
198 */
199extern int save_i387(struct _fpstate __user *buf);
200extern int restore_i387(struct _fpstate __user *buf);
201
202#endif /* CONFIG_X86_64 */
203
204static inline void __unlazy_fpu(struct task_struct *tsk)
205{
206 if (task_thread_info(tsk)->status & TS_USEDFPU) {
207 __save_init_fpu(tsk);
208 stts();
209 } else
210 tsk->fpu_counter = 0;
211}
212
213static inline void __clear_fpu(struct task_struct *tsk)
214{
215 if (task_thread_info(tsk)->status & TS_USEDFPU) {
216 tolerant_fwait();
217 task_thread_info(tsk)->status &= ~TS_USEDFPU;
218 stts();
219 }
220}
221
222static inline void kernel_fpu_begin(void)
223{
224 struct thread_info *me = current_thread_info();
225 preempt_disable();
226 if (me->status & TS_USEDFPU)
227 __save_init_fpu(me->task);
228 else
229 clts();
230}
231
232static inline void kernel_fpu_end(void)
233{
234 stts();
235 preempt_enable();
236}
237
238#ifdef CONFIG_X86_64
239
240static inline void save_init_fpu(struct task_struct *tsk)
241{
242 __save_init_fpu(tsk);
243 stts();
244}
245
246#define unlazy_fpu __unlazy_fpu
247#define clear_fpu __clear_fpu
248
249#else /* CONFIG_X86_32 */
250
251/*
252 * These disable preemption on their own and are safe
253 */
254static inline void save_init_fpu(struct task_struct *tsk)
255{
256 preempt_disable();
257 __save_init_fpu(tsk);
258 stts();
259 preempt_enable();
260}
261
262static inline void unlazy_fpu(struct task_struct *tsk)
263{
264 preempt_disable();
265 __unlazy_fpu(tsk);
266 preempt_enable();
267}
268
269static inline void clear_fpu(struct task_struct *tsk)
270{
271 preempt_disable();
272 __clear_fpu(tsk);
273 preempt_enable();
274}
275
276#endif /* CONFIG_X86_64 */
277
278/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100279 * i387 state interaction
280 */
281static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
282{
283 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700284 return tsk->thread.xstate->fxsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100285 } else {
Suresh Siddha1679f272008-04-16 10:27:53 +0200286 return (unsigned short)tsk->thread.xstate->fsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100287 }
288}
289
290static inline unsigned short get_fpu_swd(struct task_struct *tsk)
291{
292 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700293 return tsk->thread.xstate->fxsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100294 } else {
Suresh Siddha1679f272008-04-16 10:27:53 +0200295 return (unsigned short)tsk->thread.xstate->fsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100296 }
297}
298
299static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
300{
301 if (cpu_has_xmm) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700302 return tsk->thread.xstate->fxsave.mxcsr;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100303 } else {
304 return MXCSR_DEFAULT;
305 }
306}
307
Vegard Nossum77ef50a2008-06-18 17:08:48 +0200308#endif /* ASM_X86__I387_H */