blob: 09a2d6dfd85b451e6bfd88dbb4236ca120329e87 [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
H. Peter Anvin1965aae2008-10-22 22:26:29 -070010#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>
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>
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070022#include <asm/xsave.h>
Roland McGrath1eeaed72008-01-30 13:31:51 +010023
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070024extern unsigned int sig_xstate_size;
Roland McGrath1eeaed72008-01-30 13:31:51 +010025extern void fpu_init(void);
Roland McGrath1eeaed72008-01-30 13:31:51 +010026extern void mxcsr_feature_mask_init(void);
Suresh Siddhaaa283f42008-03-10 15:28:05 -070027extern int init_fpu(struct task_struct *child);
Roland McGrath1eeaed72008-01-30 13:31:51 +010028extern asmlinkage void math_state_restore(void);
Suresh Siddha61c46282008-03-10 15:28:04 -070029extern void init_thread_xstate(void);
Jaswinder Singh36454932008-07-21 22:31:57 +053030extern int dump_fpu(struct pt_regs *, struct user_i387_struct *);
Roland McGrath1eeaed72008-01-30 13:31:51 +010031
32extern user_regset_active_fn fpregs_active, xfpregs_active;
33extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get;
34extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set;
35
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070036extern struct _fpx_sw_bytes fx_sw_reserved;
Roland McGrath1eeaed72008-01-30 13:31:51 +010037#ifdef CONFIG_IA32_EMULATION
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070038extern unsigned int sig_xstate_ia32_size;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070039extern struct _fpx_sw_bytes fx_sw_reserved_ia32;
Roland McGrath1eeaed72008-01-30 13:31:51 +010040struct _fpstate_ia32;
Suresh Siddhaab513702008-07-29 10:29:22 -070041struct _xstate_ia32;
42extern int save_i387_xstate_ia32(void __user *buf);
43extern int restore_i387_xstate_ia32(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +010044#endif
45
Suresh Siddhab359e8a2008-07-29 10:29:20 -070046#define X87_FSW_ES (1 << 7) /* Exception Summary */
47
Roland McGrath1eeaed72008-01-30 13:31:51 +010048#ifdef CONFIG_X86_64
49
50/* Ignore delayed exceptions from user space */
51static inline void tolerant_fwait(void)
52{
53 asm volatile("1: fwait\n"
54 "2:\n"
Joe Perchesaffe6632008-03-23 01:02:18 -070055 _ASM_EXTABLE(1b, 2b));
Roland McGrath1eeaed72008-01-30 13:31:51 +010056}
57
Suresh Siddhab359e8a2008-07-29 10:29:20 -070058static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +010059{
60 int err;
61
62 asm volatile("1: rex64/fxrstor (%[fx])\n\t"
63 "2:\n"
64 ".section .fixup,\"ax\"\n"
65 "3: movl $-1,%[err]\n"
66 " jmp 2b\n"
67 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -070068 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +010069 : [err] "=r" (err)
70#if 0 /* See comment in __save_init_fpu() below. */
71 : [fx] "r" (fx), "m" (*fx), "0" (0));
72#else
73 : [fx] "cdaSDb" (fx), "m" (*fx), "0" (0));
74#endif
Roland McGrath1eeaed72008-01-30 13:31:51 +010075 return err;
76}
77
Suresh Siddhab359e8a2008-07-29 10:29:20 -070078static inline int restore_fpu_checking(struct task_struct *tsk)
79{
80 if (task_thread_info(tsk)->status & TS_XSAVE)
81 return xrstor_checking(&tsk->thread.xstate->xsave);
82 else
83 return fxrstor_checking(&tsk->thread.xstate->fxsave);
84}
Roland McGrath1eeaed72008-01-30 13:31:51 +010085
86/* AMD CPUs don't save/restore FDP/FIP/FOP unless an exception
87 is pending. Clear the x87 state here by setting it to fixed
88 values. The kernel data segment can be sometimes 0 and sometimes
89 new user value. Both should be ok.
90 Use the PDA as safe address because it should be already in L1. */
Suresh Siddhab359e8a2008-07-29 10:29:20 -070091static inline void clear_fpu_state(struct task_struct *tsk)
Roland McGrath1eeaed72008-01-30 13:31:51 +010092{
Suresh Siddhab359e8a2008-07-29 10:29:20 -070093 struct xsave_struct *xstate = &tsk->thread.xstate->xsave;
94 struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave;
95
96 /*
97 * xsave header may indicate the init state of the FP.
98 */
99 if ((task_thread_info(tsk)->status & TS_XSAVE) &&
100 !(xstate->xsave_hdr.xstate_bv & XSTATE_FP))
101 return;
102
Roland McGrath1eeaed72008-01-30 13:31:51 +0100103 if (unlikely(fx->swd & X87_FSW_ES))
Joe Perchesaffe6632008-03-23 01:02:18 -0700104 asm volatile("fnclex");
Roland McGrath1eeaed72008-01-30 13:31:51 +0100105 alternative_input(ASM_NOP8 ASM_NOP2,
Joe Perchesaffe6632008-03-23 01:02:18 -0700106 " emms\n" /* clear stack tags */
107 " fildl %%gs:0", /* load to clear state */
108 X86_FEATURE_FXSAVE_LEAK);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100109}
110
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700111static inline int fxsave_user(struct i387_fxsave_struct __user *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100112{
113 int err;
114
115 asm volatile("1: rex64/fxsave (%[fx])\n\t"
116 "2:\n"
117 ".section .fixup,\"ax\"\n"
118 "3: movl $-1,%[err]\n"
119 " jmp 2b\n"
120 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -0700121 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100122 : [err] "=r" (err), "=m" (*fx)
123#if 0 /* See comment in __fxsave_clear() below. */
124 : [fx] "r" (fx), "0" (0));
125#else
126 : [fx] "cdaSDb" (fx), "0" (0));
127#endif
Joe Perchesaffe6632008-03-23 01:02:18 -0700128 if (unlikely(err) &&
129 __clear_user(fx, sizeof(struct i387_fxsave_struct)))
Roland McGrath1eeaed72008-01-30 13:31:51 +0100130 err = -EFAULT;
131 /* No need to clear here because the caller clears USED_MATH */
132 return err;
133}
134
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700135static inline void fxsave(struct task_struct *tsk)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100136{
137 /* Using "rex64; fxsave %0" is broken because, if the memory operand
138 uses any extended registers for addressing, a second REX prefix
139 will be generated (to the assembler, rex64 followed by semicolon
140 is a separate instruction), and hence the 64-bitness is lost. */
141#if 0
142 /* Using "fxsaveq %0" would be the ideal choice, but is only supported
143 starting with gas 2.16. */
144 __asm__ __volatile__("fxsaveq %0"
Suresh Siddha61c46282008-03-10 15:28:04 -0700145 : "=m" (tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100146#elif 0
147 /* Using, as a workaround, the properly prefixed form below isn't
148 accepted by any binutils version so far released, complaining that
149 the same type of prefix is used twice if an extended register is
150 needed for addressing (fix submitted to mainline 2005-11-21). */
151 __asm__ __volatile__("rex64/fxsave %0"
Suresh Siddha61c46282008-03-10 15:28:04 -0700152 : "=m" (tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100153#else
154 /* This, however, we can work around by forcing the compiler to select
155 an addressing mode that doesn't require extended registers. */
Suresh Siddha61c46282008-03-10 15:28:04 -0700156 __asm__ __volatile__("rex64/fxsave (%1)"
157 : "=m" (tsk->thread.xstate->fxsave)
158 : "cdaSDb" (&tsk->thread.xstate->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100159#endif
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700160}
161
162static inline void __save_init_fpu(struct task_struct *tsk)
163{
164 if (task_thread_info(tsk)->status & TS_XSAVE)
165 xsave(tsk);
166 else
167 fxsave(tsk);
168
169 clear_fpu_state(tsk);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100170 task_thread_info(tsk)->status &= ~TS_USEDFPU;
171}
172
Roland McGrath1eeaed72008-01-30 13:31:51 +0100173#else /* CONFIG_X86_32 */
174
Daniel Glöcknerab9e1852009-03-04 19:42:27 +0100175#ifdef CONFIG_MATH_EMULATION
176extern void finit_task(struct task_struct *tsk);
177#else
178static inline void finit_task(struct task_struct *tsk)
179{
180}
181#endif
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700182
Roland McGrath1eeaed72008-01-30 13:31:51 +0100183static inline void tolerant_fwait(void)
184{
185 asm volatile("fnclex ; fwait");
186}
187
Jiri Slabyfcb2ac52009-04-08 13:31:58 +0200188static inline int restore_fpu_checking(struct task_struct *tsk)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100189{
Jiri Slabyfcb2ac52009-04-08 13:31:58 +0200190 if (task_thread_info(tsk)->status & TS_XSAVE)
191 return xrstor_checking(&tsk->thread.xstate->xsave);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100192 /*
193 * The "nop" is needed to make the instructions the same
194 * length.
195 */
196 alternative_input(
197 "nop ; frstor %1",
198 "fxrstor %1",
199 X86_FEATURE_FXSR,
Suresh Siddha61c46282008-03-10 15:28:04 -0700200 "m" (tsk->thread.xstate->fxsave));
Jiri Slabyfcb2ac52009-04-08 13:31:58 +0200201 return 0;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100202}
203
204/* We need a safe address that is cheap to find and that is already
205 in L1 during context switch. The best choices are unfortunately
206 different for UP and SMP */
207#ifdef CONFIG_SMP
208#define safe_address (__per_cpu_offset[0])
209#else
210#define safe_address (kstat_cpu(0).cpustat.user)
211#endif
212
213/*
214 * These must be called with preempt disabled
215 */
216static inline void __save_init_fpu(struct task_struct *tsk)
217{
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700218 if (task_thread_info(tsk)->status & TS_XSAVE) {
219 struct xsave_struct *xstate = &tsk->thread.xstate->xsave;
220 struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave;
221
222 xsave(tsk);
223
224 /*
225 * xsave header may indicate the init state of the FP.
226 */
227 if (!(xstate->xsave_hdr.xstate_bv & XSTATE_FP))
228 goto end;
229
230 if (unlikely(fx->swd & X87_FSW_ES))
231 asm volatile("fnclex");
232
233 /*
234 * we can do a simple return here or be paranoid :)
235 */
236 goto clear_state;
237 }
238
Roland McGrath1eeaed72008-01-30 13:31:51 +0100239 /* Use more nops than strictly needed in case the compiler
240 varies code */
241 alternative_input(
242 "fnsave %[fx] ;fwait;" GENERIC_NOP8 GENERIC_NOP4,
243 "fxsave %[fx]\n"
244 "bt $7,%[fsw] ; jnc 1f ; fnclex\n1:",
245 X86_FEATURE_FXSR,
Suresh Siddha61c46282008-03-10 15:28:04 -0700246 [fx] "m" (tsk->thread.xstate->fxsave),
247 [fsw] "m" (tsk->thread.xstate->fxsave.swd) : "memory");
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700248clear_state:
Roland McGrath1eeaed72008-01-30 13:31:51 +0100249 /* AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception
250 is pending. Clear the x87 state here by setting it to fixed
251 values. safe_address is a random variable that should be in L1 */
252 alternative_input(
253 GENERIC_NOP8 GENERIC_NOP2,
254 "emms\n\t" /* clear stack tags */
255 "fildl %[addr]", /* set F?P to defined value */
256 X86_FEATURE_FXSAVE_LEAK,
257 [addr] "m" (safe_address));
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700258end:
Roland McGrath1eeaed72008-01-30 13:31:51 +0100259 task_thread_info(tsk)->status &= ~TS_USEDFPU;
260}
261
Suresh Siddhaab513702008-07-29 10:29:22 -0700262#endif /* CONFIG_X86_64 */
263
Roland McGrath1eeaed72008-01-30 13:31:51 +0100264/*
265 * Signal frame handlers...
266 */
Suresh Siddhaab513702008-07-29 10:29:22 -0700267extern int save_i387_xstate(void __user *buf);
268extern int restore_i387_xstate(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100269
270static inline void __unlazy_fpu(struct task_struct *tsk)
271{
272 if (task_thread_info(tsk)->status & TS_USEDFPU) {
273 __save_init_fpu(tsk);
274 stts();
275 } else
276 tsk->fpu_counter = 0;
277}
278
279static inline void __clear_fpu(struct task_struct *tsk)
280{
281 if (task_thread_info(tsk)->status & TS_USEDFPU) {
282 tolerant_fwait();
283 task_thread_info(tsk)->status &= ~TS_USEDFPU;
284 stts();
285 }
286}
287
288static inline void kernel_fpu_begin(void)
289{
290 struct thread_info *me = current_thread_info();
291 preempt_disable();
292 if (me->status & TS_USEDFPU)
293 __save_init_fpu(me->task);
294 else
295 clts();
296}
297
298static inline void kernel_fpu_end(void)
299{
300 stts();
301 preempt_enable();
302}
303
Suresh Siddhae4914012008-08-13 22:02:26 +1000304/*
305 * Some instructions like VIA's padlock instructions generate a spurious
306 * DNA fault but don't modify SSE registers. And these instructions
307 * get used from interrupt context aswell. To prevent these kernel instructions
308 * in interrupt context interact wrongly with other user/kernel fpu usage, we
309 * should use them only in the context of irq_ts_save/restore()
310 */
311static inline int irq_ts_save(void)
312{
313 /*
314 * If we are in process context, we are ok to take a spurious DNA fault.
315 * Otherwise, doing clts() in process context require pre-emption to
316 * be disabled or some heavy lifting like kernel_fpu_begin()
317 */
318 if (!in_interrupt())
319 return 0;
320
321 if (read_cr0() & X86_CR0_TS) {
322 clts();
323 return 1;
324 }
325
326 return 0;
327}
328
329static inline void irq_ts_restore(int TS_state)
330{
331 if (TS_state)
332 stts();
333}
334
Roland McGrath1eeaed72008-01-30 13:31:51 +0100335#ifdef CONFIG_X86_64
336
337static inline void save_init_fpu(struct task_struct *tsk)
338{
339 __save_init_fpu(tsk);
340 stts();
341}
342
343#define unlazy_fpu __unlazy_fpu
344#define clear_fpu __clear_fpu
345
346#else /* CONFIG_X86_32 */
347
348/*
349 * These disable preemption on their own and are safe
350 */
351static inline void save_init_fpu(struct task_struct *tsk)
352{
353 preempt_disable();
354 __save_init_fpu(tsk);
355 stts();
356 preempt_enable();
357}
358
359static inline void unlazy_fpu(struct task_struct *tsk)
360{
361 preempt_disable();
362 __unlazy_fpu(tsk);
363 preempt_enable();
364}
365
366static inline void clear_fpu(struct task_struct *tsk)
367{
368 preempt_disable();
369 __clear_fpu(tsk);
370 preempt_enable();
371}
372
373#endif /* CONFIG_X86_64 */
374
375/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100376 * i387 state interaction
377 */
378static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
379{
380 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700381 return tsk->thread.xstate->fxsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100382 } else {
Suresh Siddha1679f272008-04-16 10:27:53 +0200383 return (unsigned short)tsk->thread.xstate->fsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100384 }
385}
386
387static inline unsigned short get_fpu_swd(struct task_struct *tsk)
388{
389 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700390 return tsk->thread.xstate->fxsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100391 } else {
Suresh Siddha1679f272008-04-16 10:27:53 +0200392 return (unsigned short)tsk->thread.xstate->fsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100393 }
394}
395
396static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
397{
398 if (cpu_has_xmm) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700399 return tsk->thread.xstate->fxsave.mxcsr;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100400 } else {
401 return MXCSR_DEFAULT;
402 }
403}
404
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700405#endif /* _ASM_X86_I387_H */