Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris...
[deliverable/linux.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 <linux/hardirq.h>
17 #include <asm/asm.h>
18 #include <asm/processor.h>
19 #include <asm/sigcontext.h>
20 #include <asm/user.h>
21 #include <asm/uaccess.h>
22
23 extern void fpu_init(void);
24 extern void mxcsr_feature_mask_init(void);
25 extern int init_fpu(struct task_struct *child);
26 extern asmlinkage void math_state_restore(void);
27 extern void init_thread_xstate(void);
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 /*
241 * Some instructions like VIA's padlock instructions generate a spurious
242 * DNA fault but don't modify SSE registers. And these instructions
243 * get used from interrupt context aswell. To prevent these kernel instructions
244 * in interrupt context interact wrongly with other user/kernel fpu usage, we
245 * should use them only in the context of irq_ts_save/restore()
246 */
247 static inline int irq_ts_save(void)
248 {
249 /*
250 * If we are in process context, we are ok to take a spurious DNA fault.
251 * Otherwise, doing clts() in process context require pre-emption to
252 * be disabled or some heavy lifting like kernel_fpu_begin()
253 */
254 if (!in_interrupt())
255 return 0;
256
257 if (read_cr0() & X86_CR0_TS) {
258 clts();
259 return 1;
260 }
261
262 return 0;
263 }
264
265 static inline void irq_ts_restore(int TS_state)
266 {
267 if (TS_state)
268 stts();
269 }
270
271 #ifdef CONFIG_X86_64
272
273 static inline void save_init_fpu(struct task_struct *tsk)
274 {
275 __save_init_fpu(tsk);
276 stts();
277 }
278
279 #define unlazy_fpu __unlazy_fpu
280 #define clear_fpu __clear_fpu
281
282 #else /* CONFIG_X86_32 */
283
284 /*
285 * These disable preemption on their own and are safe
286 */
287 static inline void save_init_fpu(struct task_struct *tsk)
288 {
289 preempt_disable();
290 __save_init_fpu(tsk);
291 stts();
292 preempt_enable();
293 }
294
295 static inline void unlazy_fpu(struct task_struct *tsk)
296 {
297 preempt_disable();
298 __unlazy_fpu(tsk);
299 preempt_enable();
300 }
301
302 static inline void clear_fpu(struct task_struct *tsk)
303 {
304 preempt_disable();
305 __clear_fpu(tsk);
306 preempt_enable();
307 }
308
309 #endif /* CONFIG_X86_64 */
310
311 /*
312 * i387 state interaction
313 */
314 static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
315 {
316 if (cpu_has_fxsr) {
317 return tsk->thread.xstate->fxsave.cwd;
318 } else {
319 return (unsigned short)tsk->thread.xstate->fsave.cwd;
320 }
321 }
322
323 static inline unsigned short get_fpu_swd(struct task_struct *tsk)
324 {
325 if (cpu_has_fxsr) {
326 return tsk->thread.xstate->fxsave.swd;
327 } else {
328 return (unsigned short)tsk->thread.xstate->fsave.swd;
329 }
330 }
331
332 static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
333 {
334 if (cpu_has_xmm) {
335 return tsk->thread.xstate->fxsave.mxcsr;
336 } else {
337 return MXCSR_DEFAULT;
338 }
339 }
340
341 #endif /* _ASM_X86_I387_H */
This page took 0.041022 seconds and 5 git commands to generate.