blob: 6d3b21063419fe3cb81f98369b3ae450e44009bf [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
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>
Suresh Siddhae4914012008-08-13 22:02:26 +100016#include <linux/hardirq.h>
H. Peter Anvin92c37fa2008-02-04 16:47:58 +010017#include <asm/asm.h>
Roland McGrath1eeaed72008-01-30 13:31:51 +010018#include <asm/processor.h>
19#include <asm/sigcontext.h>
20#include <asm/user.h>
21#include <asm/uaccess.h>
22
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
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. */
78static inline void clear_fpu_state(struct i387_fxsave_struct *fx)
79{
80 if (unlikely(fx->swd & X87_FSW_ES))
Joe Perchesaffe6632008-03-23 01:02:18 -070081 asm volatile("fnclex");
Roland McGrath1eeaed72008-01-30 13:31:51 +010082 alternative_input(ASM_NOP8 ASM_NOP2,
Joe Perchesaffe6632008-03-23 01:02:18 -070083 " emms\n" /* clear stack tags */
84 " fildl %%gs:0", /* load to clear state */
85 X86_FEATURE_FXSAVE_LEAK);
Roland McGrath1eeaed72008-01-30 13:31:51 +010086}
87
88static 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"
Joe Perchesaffe6632008-03-23 01:02:18 -070098 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +010099 : [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
Joe Perchesaffe6632008-03-23 01:02:18 -0700105 if (unlikely(err) &&
106 __clear_user(fx, sizeof(struct i387_fxsave_struct)))
Roland McGrath1eeaed72008-01-30 13:31:51 +0100107 err = -EFAULT;
108 /* No need to clear here because the caller clears USED_MATH */
109 return err;
110}
111
112static 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"
Suresh Siddha61c46282008-03-10 15:28:04 -0700122 : "=m" (tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100123#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"
Suresh Siddha61c46282008-03-10 15:28:04 -0700129 : "=m" (tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100130#else
131 /* This, however, we can work around by forcing the compiler to select
132 an addressing mode that doesn't require extended registers. */
Suresh Siddha61c46282008-03-10 15:28:04 -0700133 __asm__ __volatile__("rex64/fxsave (%1)"
134 : "=m" (tsk->thread.xstate->fxsave)
135 : "cdaSDb" (&tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100136#endif
Suresh Siddha61c46282008-03-10 15:28:04 -0700137 clear_fpu_state(&tsk->thread.xstate->fxsave);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100138 task_thread_info(tsk)->status &= ~TS_USEDFPU;
139}
140
Roland McGrath1eeaed72008-01-30 13:31:51 +0100141#else /* CONFIG_X86_32 */
142
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700143extern void finit(void);
144
Roland McGrath1eeaed72008-01-30 13:31:51 +0100145static inline void tolerant_fwait(void)
146{
147 asm volatile("fnclex ; fwait");
148}
149
150static 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,
Suresh Siddha61c46282008-03-10 15:28:04 -0700160 "m" (tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100161}
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 */
175static 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,
Suresh Siddha61c46282008-03-10 15:28:04 -0700184 [fx] "m" (tsk->thread.xstate->fxsave),
185 [fsw] "m" (tsk->thread.xstate->fxsave.swd) : "memory");
Roland McGrath1eeaed72008-01-30 13:31:51 +0100186 /* 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 */
201extern int save_i387(struct _fpstate __user *buf);
202extern int restore_i387(struct _fpstate __user *buf);
203
204#endif /* CONFIG_X86_64 */
205
206static 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
215static 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
224static 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
234static inline void kernel_fpu_end(void)
235{
236 stts();
237 preempt_enable();
238}
239
Suresh Siddhae4914012008-08-13 22:02:26 +1000240/*
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 */
247static 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
265static inline void irq_ts_restore(int TS_state)
266{
267 if (TS_state)
268 stts();
269}
270
Roland McGrath1eeaed72008-01-30 13:31:51 +0100271#ifdef CONFIG_X86_64
272
273static 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 */
287static 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
295static inline void unlazy_fpu(struct task_struct *tsk)
296{
297 preempt_disable();
298 __unlazy_fpu(tsk);
299 preempt_enable();
300}
301
302static 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/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100312 * i387 state interaction
313 */
314static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
315{
316 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700317 return tsk->thread.xstate->fxsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100318 } else {
Suresh Siddha1679f272008-04-16 10:27:53 +0200319 return (unsigned short)tsk->thread.xstate->fsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100320 }
321}
322
323static inline unsigned short get_fpu_swd(struct task_struct *tsk)
324{
325 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700326 return tsk->thread.xstate->fxsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100327 } else {
Suresh Siddha1679f272008-04-16 10:27:53 +0200328 return (unsigned short)tsk->thread.xstate->fsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100329 }
330}
331
332static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
333{
334 if (cpu_has_xmm) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700335 return tsk->thread.xstate->fxsave.mxcsr;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100336 } else {
337 return MXCSR_DEFAULT;
338 }
339}
340
341#endif /* _ASM_X86_I387_H */