]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/asm-x86/i387.h
Merge commit 'v2.6.27-rc3' into x86/prototypes
[linux-2.6-omap-h63xx.git] / include / asm-x86 / i387.h
1 /*
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
10 #ifndef _ASM_X86_I387_H
11 #define _ASM_X86_I387_H
12
13 #include <linux/sched.h>
14 #include <linux/kernel_stat.h>
15 #include <linux/regset.h>
16 #include <asm/asm.h>
17 #include <asm/processor.h>
18 #include <asm/sigcontext.h>
19 #include <asm/user.h>
20 #include <asm/uaccess.h>
21
22 extern void fpu_init(void);
23 extern void mxcsr_feature_mask_init(void);
24 extern int init_fpu(struct task_struct *child);
25 extern asmlinkage void math_state_restore(void);
26 extern void init_thread_xstate(void);
27 extern int dump_fpu(struct pt_regs *, struct user_i387_struct *);
28
29 extern user_regset_active_fn fpregs_active, xfpregs_active;
30 extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get;
31 extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set;
32
33 #ifdef CONFIG_IA32_EMULATION
34 struct _fpstate_ia32;
35 extern int save_i387_ia32(struct _fpstate_ia32 __user *buf);
36 extern 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 */
42 static inline void tolerant_fwait(void)
43 {
44         asm volatile("1: fwait\n"
45                      "2:\n"
46                      _ASM_EXTABLE(1b, 2b));
47 }
48
49 static 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"
59                      _ASM_EXTABLE(1b, 3b)
60                      : [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
66         if (unlikely(err))
67                 init_fpu(current);
68         return err;
69 }
70
71 #define X87_FSW_ES (1 << 7)     /* Exception Summary */
72
73 /* AMD CPUs don't save/restore FDP/FIP/FOP unless an exception
74    is pending. Clear the x87 state here by setting it to fixed
75    values. The kernel data segment can be sometimes 0 and sometimes
76    new user value. Both should be ok.
77    Use the PDA as safe address because it should be already in L1. */
78 static inline void clear_fpu_state(struct i387_fxsave_struct *fx)
79 {
80         if (unlikely(fx->swd & X87_FSW_ES))
81                 asm volatile("fnclex");
82         alternative_input(ASM_NOP8 ASM_NOP2,
83                           "    emms\n"          /* clear stack tags */
84                           "    fildl %%gs:0",   /* load to clear state */
85                           X86_FEATURE_FXSAVE_LEAK);
86 }
87
88 static inline int save_i387_checking(struct i387_fxsave_struct __user *fx)
89 {
90         int err;
91
92         asm volatile("1:  rex64/fxsave (%[fx])\n\t"
93                      "2:\n"
94                      ".section .fixup,\"ax\"\n"
95                      "3:  movl $-1,%[err]\n"
96                      "    jmp  2b\n"
97                      ".previous\n"
98                      _ASM_EXTABLE(1b, 3b)
99                      : [err] "=r" (err), "=m" (*fx)
100 #if 0 /* See comment in __fxsave_clear() below. */
101                      : [fx] "r" (fx), "0" (0));
102 #else
103                      : [fx] "cdaSDb" (fx), "0" (0));
104 #endif
105         if (unlikely(err) &&
106             __clear_user(fx, sizeof(struct i387_fxsave_struct)))
107                 err = -EFAULT;
108         /* No need to clear here because the caller clears USED_MATH */
109         return err;
110 }
111
112 static inline void __save_init_fpu(struct task_struct *tsk)
113 {
114         /* Using "rex64; fxsave %0" is broken because, if the memory operand
115            uses any extended registers for addressing, a second REX prefix
116            will be generated (to the assembler, rex64 followed by semicolon
117            is a separate instruction), and hence the 64-bitness is lost. */
118 #if 0
119         /* Using "fxsaveq %0" would be the ideal choice, but is only supported
120            starting with gas 2.16. */
121         __asm__ __volatile__("fxsaveq %0"
122                              : "=m" (tsk->thread.xstate->fxsave));
123 #elif 0
124         /* Using, as a workaround, the properly prefixed form below isn't
125            accepted by any binutils version so far released, complaining that
126            the same type of prefix is used twice if an extended register is
127            needed for addressing (fix submitted to mainline 2005-11-21). */
128         __asm__ __volatile__("rex64/fxsave %0"
129                              : "=m" (tsk->thread.xstate->fxsave));
130 #else
131         /* This, however, we can work around by forcing the compiler to select
132            an addressing mode that doesn't require extended registers. */
133         __asm__ __volatile__("rex64/fxsave (%1)"
134                              : "=m" (tsk->thread.xstate->fxsave)
135                              : "cdaSDb" (&tsk->thread.xstate->fxsave));
136 #endif
137         clear_fpu_state(&tsk->thread.xstate->fxsave);
138         task_thread_info(tsk)->status &= ~TS_USEDFPU;
139 }
140
141 #else  /* CONFIG_X86_32 */
142
143 extern void finit(void);
144
145 static inline void tolerant_fwait(void)
146 {
147         asm volatile("fnclex ; fwait");
148 }
149
150 static inline void restore_fpu(struct task_struct *tsk)
151 {
152         /*
153          * The "nop" is needed to make the instructions the same
154          * length.
155          */
156         alternative_input(
157                 "nop ; frstor %1",
158                 "fxrstor %1",
159                 X86_FEATURE_FXSR,
160                 "m" (tsk->thread.xstate->fxsave));
161 }
162
163 /* We need a safe address that is cheap to find and that is already
164    in L1 during context switch. The best choices are unfortunately
165    different for UP and SMP */
166 #ifdef CONFIG_SMP
167 #define safe_address (__per_cpu_offset[0])
168 #else
169 #define safe_address (kstat_cpu(0).cpustat.user)
170 #endif
171
172 /*
173  * These must be called with preempt disabled
174  */
175 static inline void __save_init_fpu(struct task_struct *tsk)
176 {
177         /* Use more nops than strictly needed in case the compiler
178            varies code */
179         alternative_input(
180                 "fnsave %[fx] ;fwait;" GENERIC_NOP8 GENERIC_NOP4,
181                 "fxsave %[fx]\n"
182                 "bt $7,%[fsw] ; jnc 1f ; fnclex\n1:",
183                 X86_FEATURE_FXSR,
184                 [fx] "m" (tsk->thread.xstate->fxsave),
185                 [fsw] "m" (tsk->thread.xstate->fxsave.swd) : "memory");
186         /* AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception
187            is pending.  Clear the x87 state here by setting it to fixed
188            values. safe_address is a random variable that should be in L1 */
189         alternative_input(
190                 GENERIC_NOP8 GENERIC_NOP2,
191                 "emms\n\t"              /* clear stack tags */
192                 "fildl %[addr]",        /* set F?P to defined value */
193                 X86_FEATURE_FXSAVE_LEAK,
194                 [addr] "m" (safe_address));
195         task_thread_info(tsk)->status &= ~TS_USEDFPU;
196 }
197
198 /*
199  * Signal frame handlers...
200  */
201 extern int save_i387(struct _fpstate __user *buf);
202 extern int restore_i387(struct _fpstate __user *buf);
203
204 #endif  /* CONFIG_X86_64 */
205
206 static inline void __unlazy_fpu(struct task_struct *tsk)
207 {
208         if (task_thread_info(tsk)->status & TS_USEDFPU) {
209                 __save_init_fpu(tsk);
210                 stts();
211         } else
212                 tsk->fpu_counter = 0;
213 }
214
215 static inline void __clear_fpu(struct task_struct *tsk)
216 {
217         if (task_thread_info(tsk)->status & TS_USEDFPU) {
218                 tolerant_fwait();
219                 task_thread_info(tsk)->status &= ~TS_USEDFPU;
220                 stts();
221         }
222 }
223
224 static inline void kernel_fpu_begin(void)
225 {
226         struct thread_info *me = current_thread_info();
227         preempt_disable();
228         if (me->status & TS_USEDFPU)
229                 __save_init_fpu(me->task);
230         else
231                 clts();
232 }
233
234 static inline void kernel_fpu_end(void)
235 {
236         stts();
237         preempt_enable();
238 }
239
240 #ifdef CONFIG_X86_64
241
242 static inline void save_init_fpu(struct task_struct *tsk)
243 {
244         __save_init_fpu(tsk);
245         stts();
246 }
247
248 #define unlazy_fpu      __unlazy_fpu
249 #define clear_fpu       __clear_fpu
250
251 #else  /* CONFIG_X86_32 */
252
253 /*
254  * These disable preemption on their own and are safe
255  */
256 static inline void save_init_fpu(struct task_struct *tsk)
257 {
258         preempt_disable();
259         __save_init_fpu(tsk);
260         stts();
261         preempt_enable();
262 }
263
264 static inline void unlazy_fpu(struct task_struct *tsk)
265 {
266         preempt_disable();
267         __unlazy_fpu(tsk);
268         preempt_enable();
269 }
270
271 static inline void clear_fpu(struct task_struct *tsk)
272 {
273         preempt_disable();
274         __clear_fpu(tsk);
275         preempt_enable();
276 }
277
278 #endif  /* CONFIG_X86_64 */
279
280 /*
281  * i387 state interaction
282  */
283 static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
284 {
285         if (cpu_has_fxsr) {
286                 return tsk->thread.xstate->fxsave.cwd;
287         } else {
288                 return (unsigned short)tsk->thread.xstate->fsave.cwd;
289         }
290 }
291
292 static inline unsigned short get_fpu_swd(struct task_struct *tsk)
293 {
294         if (cpu_has_fxsr) {
295                 return tsk->thread.xstate->fxsave.swd;
296         } else {
297                 return (unsigned short)tsk->thread.xstate->fsave.swd;
298         }
299 }
300
301 static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
302 {
303         if (cpu_has_xmm) {
304                 return tsk->thread.xstate->fxsave.mxcsr;
305         } else {
306                 return MXCSR_DEFAULT;
307         }
308 }
309
310 #endif  /* _ASM_X86_I387_H */