blob: d3dda7161954304417efb5dc81b1946440dcea4e [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
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070023extern unsigned int sig_xstate_size;
Roland McGrath1eeaed72008-01-30 13:31:51 +010024extern void fpu_init(void);
Roland McGrath1eeaed72008-01-30 13:31:51 +010025extern void mxcsr_feature_mask_init(void);
Suresh Siddhaaa283f42008-03-10 15:28:05 -070026extern int init_fpu(struct task_struct *child);
Roland McGrath1eeaed72008-01-30 13:31:51 +010027extern asmlinkage void math_state_restore(void);
Suresh Siddha61c46282008-03-10 15:28:04 -070028extern void init_thread_xstate(void);
Roland McGrath1eeaed72008-01-30 13:31:51 +010029
30extern user_regset_active_fn fpregs_active, xfpregs_active;
31extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get;
32extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set;
33
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070034extern struct _fpx_sw_bytes fx_sw_reserved;
Roland McGrath1eeaed72008-01-30 13:31:51 +010035#ifdef CONFIG_IA32_EMULATION
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070036extern unsigned int sig_xstate_ia32_size;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070037extern struct _fpx_sw_bytes fx_sw_reserved_ia32;
Roland McGrath1eeaed72008-01-30 13:31:51 +010038struct _fpstate_ia32;
Suresh Siddhaab513702008-07-29 10:29:22 -070039struct _xstate_ia32;
40extern int save_i387_xstate_ia32(void __user *buf);
41extern int restore_i387_xstate_ia32(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +010042#endif
43
Suresh Siddhab359e8a2008-07-29 10:29:20 -070044#define X87_FSW_ES (1 << 7) /* Exception Summary */
45
Roland McGrath1eeaed72008-01-30 13:31:51 +010046#ifdef CONFIG_X86_64
47
48/* Ignore delayed exceptions from user space */
49static inline void tolerant_fwait(void)
50{
51 asm volatile("1: fwait\n"
52 "2:\n"
Joe Perchesaffe6632008-03-23 01:02:18 -070053 _ASM_EXTABLE(1b, 2b));
Roland McGrath1eeaed72008-01-30 13:31:51 +010054}
55
Suresh Siddhab359e8a2008-07-29 10:29:20 -070056static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +010057{
58 int err;
59
60 asm volatile("1: rex64/fxrstor (%[fx])\n\t"
61 "2:\n"
62 ".section .fixup,\"ax\"\n"
63 "3: movl $-1,%[err]\n"
64 " jmp 2b\n"
65 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -070066 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +010067 : [err] "=r" (err)
68#if 0 /* See comment in __save_init_fpu() below. */
69 : [fx] "r" (fx), "m" (*fx), "0" (0));
70#else
71 : [fx] "cdaSDb" (fx), "m" (*fx), "0" (0));
72#endif
Roland McGrath1eeaed72008-01-30 13:31:51 +010073 return err;
74}
75
Suresh Siddhab359e8a2008-07-29 10:29:20 -070076static inline int restore_fpu_checking(struct task_struct *tsk)
77{
78 if (task_thread_info(tsk)->status & TS_XSAVE)
79 return xrstor_checking(&tsk->thread.xstate->xsave);
80 else
81 return fxrstor_checking(&tsk->thread.xstate->fxsave);
82}
Roland McGrath1eeaed72008-01-30 13:31:51 +010083
84/* AMD CPUs don't save/restore FDP/FIP/FOP unless an exception
85 is pending. Clear the x87 state here by setting it to fixed
86 values. The kernel data segment can be sometimes 0 and sometimes
87 new user value. Both should be ok.
88 Use the PDA as safe address because it should be already in L1. */
Suresh Siddhab359e8a2008-07-29 10:29:20 -070089static inline void clear_fpu_state(struct task_struct *tsk)
Roland McGrath1eeaed72008-01-30 13:31:51 +010090{
Suresh Siddhab359e8a2008-07-29 10:29:20 -070091 struct xsave_struct *xstate = &tsk->thread.xstate->xsave;
92 struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave;
93
94 /*
95 * xsave header may indicate the init state of the FP.
96 */
97 if ((task_thread_info(tsk)->status & TS_XSAVE) &&
98 !(xstate->xsave_hdr.xstate_bv & XSTATE_FP))
99 return;
100
Roland McGrath1eeaed72008-01-30 13:31:51 +0100101 if (unlikely(fx->swd & X87_FSW_ES))
Joe Perchesaffe6632008-03-23 01:02:18 -0700102 asm volatile("fnclex");
Roland McGrath1eeaed72008-01-30 13:31:51 +0100103 alternative_input(ASM_NOP8 ASM_NOP2,
Joe Perchesaffe6632008-03-23 01:02:18 -0700104 " emms\n" /* clear stack tags */
105 " fildl %%gs:0", /* load to clear state */
106 X86_FEATURE_FXSAVE_LEAK);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100107}
108
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700109static inline int fxsave_user(struct i387_fxsave_struct __user *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100110{
111 int err;
112
113 asm volatile("1: rex64/fxsave (%[fx])\n\t"
114 "2:\n"
115 ".section .fixup,\"ax\"\n"
116 "3: movl $-1,%[err]\n"
117 " jmp 2b\n"
118 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -0700119 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100120 : [err] "=r" (err), "=m" (*fx)
121#if 0 /* See comment in __fxsave_clear() below. */
122 : [fx] "r" (fx), "0" (0));
123#else
124 : [fx] "cdaSDb" (fx), "0" (0));
125#endif
Joe Perchesaffe6632008-03-23 01:02:18 -0700126 if (unlikely(err) &&
127 __clear_user(fx, sizeof(struct i387_fxsave_struct)))
Roland McGrath1eeaed72008-01-30 13:31:51 +0100128 err = -EFAULT;
129 /* No need to clear here because the caller clears USED_MATH */
130 return err;
131}
132
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700133static inline void fxsave(struct task_struct *tsk)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100134{
135 /* Using "rex64; fxsave %0" is broken because, if the memory operand
136 uses any extended registers for addressing, a second REX prefix
137 will be generated (to the assembler, rex64 followed by semicolon
138 is a separate instruction), and hence the 64-bitness is lost. */
139#if 0
140 /* Using "fxsaveq %0" would be the ideal choice, but is only supported
141 starting with gas 2.16. */
142 __asm__ __volatile__("fxsaveq %0"
Suresh Siddha61c46282008-03-10 15:28:04 -0700143 : "=m" (tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100144#elif 0
145 /* Using, as a workaround, the properly prefixed form below isn't
146 accepted by any binutils version so far released, complaining that
147 the same type of prefix is used twice if an extended register is
148 needed for addressing (fix submitted to mainline 2005-11-21). */
149 __asm__ __volatile__("rex64/fxsave %0"
Suresh Siddha61c46282008-03-10 15:28:04 -0700150 : "=m" (tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100151#else
152 /* This, however, we can work around by forcing the compiler to select
153 an addressing mode that doesn't require extended registers. */
Suresh Siddha61c46282008-03-10 15:28:04 -0700154 __asm__ __volatile__("rex64/fxsave (%1)"
155 : "=m" (tsk->thread.xstate->fxsave)
156 : "cdaSDb" (&tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100157#endif
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700158}
159
160static inline void __save_init_fpu(struct task_struct *tsk)
161{
162 if (task_thread_info(tsk)->status & TS_XSAVE)
163 xsave(tsk);
164 else
165 fxsave(tsk);
166
167 clear_fpu_state(tsk);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100168 task_thread_info(tsk)->status &= ~TS_USEDFPU;
169}
170
Roland McGrath1eeaed72008-01-30 13:31:51 +0100171#else /* CONFIG_X86_32 */
172
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700173extern void finit(void);
174
Roland McGrath1eeaed72008-01-30 13:31:51 +0100175static inline void tolerant_fwait(void)
176{
177 asm volatile("fnclex ; fwait");
178}
179
180static inline void restore_fpu(struct task_struct *tsk)
181{
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700182 if (task_thread_info(tsk)->status & TS_XSAVE) {
183 xrstor_checking(&tsk->thread.xstate->xsave);
184 return;
185 }
Roland McGrath1eeaed72008-01-30 13:31:51 +0100186 /*
187 * The "nop" is needed to make the instructions the same
188 * length.
189 */
190 alternative_input(
191 "nop ; frstor %1",
192 "fxrstor %1",
193 X86_FEATURE_FXSR,
Suresh Siddha61c46282008-03-10 15:28:04 -0700194 "m" (tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100195}
196
197/* We need a safe address that is cheap to find and that is already
198 in L1 during context switch. The best choices are unfortunately
199 different for UP and SMP */
200#ifdef CONFIG_SMP
201#define safe_address (__per_cpu_offset[0])
202#else
203#define safe_address (kstat_cpu(0).cpustat.user)
204#endif
205
206/*
207 * These must be called with preempt disabled
208 */
209static inline void __save_init_fpu(struct task_struct *tsk)
210{
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700211 if (task_thread_info(tsk)->status & TS_XSAVE) {
212 struct xsave_struct *xstate = &tsk->thread.xstate->xsave;
213 struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave;
214
215 xsave(tsk);
216
217 /*
218 * xsave header may indicate the init state of the FP.
219 */
220 if (!(xstate->xsave_hdr.xstate_bv & XSTATE_FP))
221 goto end;
222
223 if (unlikely(fx->swd & X87_FSW_ES))
224 asm volatile("fnclex");
225
226 /*
227 * we can do a simple return here or be paranoid :)
228 */
229 goto clear_state;
230 }
231
Roland McGrath1eeaed72008-01-30 13:31:51 +0100232 /* Use more nops than strictly needed in case the compiler
233 varies code */
234 alternative_input(
235 "fnsave %[fx] ;fwait;" GENERIC_NOP8 GENERIC_NOP4,
236 "fxsave %[fx]\n"
237 "bt $7,%[fsw] ; jnc 1f ; fnclex\n1:",
238 X86_FEATURE_FXSR,
Suresh Siddha61c46282008-03-10 15:28:04 -0700239 [fx] "m" (tsk->thread.xstate->fxsave),
240 [fsw] "m" (tsk->thread.xstate->fxsave.swd) : "memory");
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700241clear_state:
Roland McGrath1eeaed72008-01-30 13:31:51 +0100242 /* AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception
243 is pending. Clear the x87 state here by setting it to fixed
244 values. safe_address is a random variable that should be in L1 */
245 alternative_input(
246 GENERIC_NOP8 GENERIC_NOP2,
247 "emms\n\t" /* clear stack tags */
248 "fildl %[addr]", /* set F?P to defined value */
249 X86_FEATURE_FXSAVE_LEAK,
250 [addr] "m" (safe_address));
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700251end:
Roland McGrath1eeaed72008-01-30 13:31:51 +0100252 task_thread_info(tsk)->status &= ~TS_USEDFPU;
253}
254
Suresh Siddhaab513702008-07-29 10:29:22 -0700255#endif /* CONFIG_X86_64 */
256
Roland McGrath1eeaed72008-01-30 13:31:51 +0100257/*
258 * Signal frame handlers...
259 */
Suresh Siddhaab513702008-07-29 10:29:22 -0700260extern int save_i387_xstate(void __user *buf);
261extern int restore_i387_xstate(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100262
263static inline void __unlazy_fpu(struct task_struct *tsk)
264{
265 if (task_thread_info(tsk)->status & TS_USEDFPU) {
266 __save_init_fpu(tsk);
267 stts();
268 } else
269 tsk->fpu_counter = 0;
270}
271
272static inline void __clear_fpu(struct task_struct *tsk)
273{
274 if (task_thread_info(tsk)->status & TS_USEDFPU) {
275 tolerant_fwait();
276 task_thread_info(tsk)->status &= ~TS_USEDFPU;
277 stts();
278 }
279}
280
281static inline void kernel_fpu_begin(void)
282{
283 struct thread_info *me = current_thread_info();
284 preempt_disable();
285 if (me->status & TS_USEDFPU)
286 __save_init_fpu(me->task);
287 else
288 clts();
289}
290
291static inline void kernel_fpu_end(void)
292{
293 stts();
294 preempt_enable();
295}
296
297#ifdef CONFIG_X86_64
298
299static inline void save_init_fpu(struct task_struct *tsk)
300{
301 __save_init_fpu(tsk);
302 stts();
303}
304
305#define unlazy_fpu __unlazy_fpu
306#define clear_fpu __clear_fpu
307
308#else /* CONFIG_X86_32 */
309
310/*
311 * These disable preemption on their own and are safe
312 */
313static inline void save_init_fpu(struct task_struct *tsk)
314{
315 preempt_disable();
316 __save_init_fpu(tsk);
317 stts();
318 preempt_enable();
319}
320
321static inline void unlazy_fpu(struct task_struct *tsk)
322{
323 preempt_disable();
324 __unlazy_fpu(tsk);
325 preempt_enable();
326}
327
328static inline void clear_fpu(struct task_struct *tsk)
329{
330 preempt_disable();
331 __clear_fpu(tsk);
332 preempt_enable();
333}
334
335#endif /* CONFIG_X86_64 */
336
337/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100338 * i387 state interaction
339 */
340static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
341{
342 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700343 return tsk->thread.xstate->fxsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100344 } else {
Suresh Siddha1679f272008-04-16 10:27:53 +0200345 return (unsigned short)tsk->thread.xstate->fsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100346 }
347}
348
349static inline unsigned short get_fpu_swd(struct task_struct *tsk)
350{
351 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700352 return tsk->thread.xstate->fxsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100353 } else {
Suresh Siddha1679f272008-04-16 10:27:53 +0200354 return (unsigned short)tsk->thread.xstate->fsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100355 }
356}
357
358static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
359{
360 if (cpu_has_xmm) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700361 return tsk->thread.xstate->fxsave.mxcsr;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100362 } else {
363 return MXCSR_DEFAULT;
364 }
365}
366
Vegard Nossum77ef50a2008-06-18 17:08:48 +0200367#endif /* ASM_X86__I387_H */