blob: 4aa2bb3b242ab76733e0f7e5ba95454471297c1a [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
Herbert Xu3b0d6592009-11-03 09:11:15 -050013#ifndef __ASSEMBLY__
14
Roland McGrath1eeaed72008-01-30 13:31:51 +010015#include <linux/sched.h>
16#include <linux/kernel_stat.h>
17#include <linux/regset.h>
Suresh Siddhae4914012008-08-13 22:02:26 +100018#include <linux/hardirq.h>
Avi Kivity86603282010-05-06 11:45:46 +030019#include <linux/slab.h>
H. Peter Anvin92c37fa2008-02-04 16:47:58 +010020#include <asm/asm.h>
H. Peter Anvinc9775b42010-05-11 17:49:54 -070021#include <asm/cpufeature.h>
Roland McGrath1eeaed72008-01-30 13:31:51 +010022#include <asm/processor.h>
23#include <asm/sigcontext.h>
24#include <asm/user.h>
25#include <asm/uaccess.h>
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070026#include <asm/xsave.h>
Roland McGrath1eeaed72008-01-30 13:31:51 +010027
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070028extern unsigned int sig_xstate_size;
Roland McGrath1eeaed72008-01-30 13:31:51 +010029extern void fpu_init(void);
Roland McGrath1eeaed72008-01-30 13:31:51 +010030extern void mxcsr_feature_mask_init(void);
Suresh Siddhaaa283f42008-03-10 15:28:05 -070031extern int init_fpu(struct task_struct *child);
Roland McGrath1eeaed72008-01-30 13:31:51 +010032extern asmlinkage void math_state_restore(void);
Jeremy Fitzhardingee6e9cac2009-04-24 00:40:59 -070033extern void __math_state_restore(void);
Jaswinder Singh36454932008-07-21 22:31:57 +053034extern int dump_fpu(struct pt_regs *, struct user_i387_struct *);
Roland McGrath1eeaed72008-01-30 13:31:51 +010035
36extern user_regset_active_fn fpregs_active, xfpregs_active;
Suresh Siddha5b3efd52010-02-11 11:50:59 -080037extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get,
38 xstateregs_get;
39extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set,
40 xstateregs_set;
41
42/*
43 * xstateregs_active == fpregs_active. Please refer to the comment
44 * at the definition of fpregs_active.
45 */
46#define xstateregs_active fpregs_active
Roland McGrath1eeaed72008-01-30 13:31:51 +010047
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070048extern struct _fpx_sw_bytes fx_sw_reserved;
Roland McGrath1eeaed72008-01-30 13:31:51 +010049#ifdef CONFIG_IA32_EMULATION
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070050extern unsigned int sig_xstate_ia32_size;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070051extern struct _fpx_sw_bytes fx_sw_reserved_ia32;
Roland McGrath1eeaed72008-01-30 13:31:51 +010052struct _fpstate_ia32;
Suresh Siddhaab513702008-07-29 10:29:22 -070053struct _xstate_ia32;
54extern int save_i387_xstate_ia32(void __user *buf);
55extern int restore_i387_xstate_ia32(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +010056#endif
57
Brian Gerst8eb91a52010-09-03 21:17:16 -040058#ifdef CONFIG_MATH_EMULATION
59extern void finit_soft_fpu(struct i387_soft_struct *soft);
60#else
61static inline void finit_soft_fpu(struct i387_soft_struct *soft) {}
62#endif
63
Suresh Siddhab359e8a2008-07-29 10:29:20 -070064#define X87_FSW_ES (1 << 7) /* Exception Summary */
65
Suresh Siddha29104e12010-07-19 16:05:49 -070066static __always_inline __pure bool use_xsaveopt(void)
67{
Suresh Siddha6bad06b2010-07-19 16:05:52 -070068 return static_cpu_has(X86_FEATURE_XSAVEOPT);
Suresh Siddha29104e12010-07-19 16:05:49 -070069}
70
H. Peter Anvinc9775b42010-05-11 17:49:54 -070071static __always_inline __pure bool use_xsave(void)
Avi Kivityc9ad4882010-05-06 11:45:45 +030072{
H. Peter Anvinc9775b42010-05-11 17:49:54 -070073 return static_cpu_has(X86_FEATURE_XSAVE);
Avi Kivityc9ad4882010-05-06 11:45:45 +030074}
75
Brian Gerst58a992b2010-09-03 21:17:18 -040076static __always_inline __pure bool use_fxsr(void)
77{
78 return static_cpu_has(X86_FEATURE_FXSR);
79}
80
Suresh Siddha29104e12010-07-19 16:05:49 -070081extern void __sanitize_i387_state(struct task_struct *);
82
83static inline void sanitize_i387_state(struct task_struct *tsk)
84{
85 if (!use_xsaveopt())
86 return;
87 __sanitize_i387_state(tsk);
88}
89
Roland McGrath1eeaed72008-01-30 13:31:51 +010090#ifdef CONFIG_X86_64
Suresh Siddhab359e8a2008-07-29 10:29:20 -070091static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +010092{
93 int err;
94
Brian Gerst82024132010-09-03 21:17:14 -040095 /* See comment in fxsave() below. */
Roland McGrath1eeaed72008-01-30 13:31:51 +010096 asm volatile("1: rex64/fxrstor (%[fx])\n\t"
97 "2:\n"
98 ".section .fixup,\"ax\"\n"
99 "3: movl $-1,%[err]\n"
100 " jmp 2b\n"
101 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -0700102 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100103 : [err] "=r" (err)
Brian Gerst82024132010-09-03 21:17:14 -0400104 : [fx] "R" (fx), "m" (*fx), "0" (0));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100105 return err;
106}
107
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700108static inline int fxsave_user(struct i387_fxsave_struct __user *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100109{
110 int err;
111
Suresh Siddha8e221b62010-06-22 16:23:37 -0700112 /*
113 * Clear the bytes not touched by the fxsave and reserved
114 * for the SW usage.
115 */
116 err = __clear_user(&fx->sw_reserved,
117 sizeof(struct _fpx_sw_bytes));
118 if (unlikely(err))
119 return -EFAULT;
120
Brian Gerst82024132010-09-03 21:17:14 -0400121 /* See comment in fxsave() below. */
Roland McGrath1eeaed72008-01-30 13:31:51 +0100122 asm volatile("1: rex64/fxsave (%[fx])\n\t"
123 "2:\n"
124 ".section .fixup,\"ax\"\n"
125 "3: movl $-1,%[err]\n"
126 " jmp 2b\n"
127 ".previous\n"
Joe Perchesaffe6632008-03-23 01:02:18 -0700128 _ASM_EXTABLE(1b, 3b)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100129 : [err] "=r" (err), "=m" (*fx)
Brian Gerst82024132010-09-03 21:17:14 -0400130 : [fx] "R" (fx), "0" (0));
Joe Perchesaffe6632008-03-23 01:02:18 -0700131 if (unlikely(err) &&
132 __clear_user(fx, sizeof(struct i387_fxsave_struct)))
Roland McGrath1eeaed72008-01-30 13:31:51 +0100133 err = -EFAULT;
134 /* No need to clear here because the caller clears USED_MATH */
135 return err;
136}
137
Avi Kivity86603282010-05-06 11:45:46 +0300138static inline void fpu_fxsave(struct fpu *fpu)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100139{
140 /* Using "rex64; fxsave %0" is broken because, if the memory operand
141 uses any extended registers for addressing, a second REX prefix
142 will be generated (to the assembler, rex64 followed by semicolon
143 is a separate instruction), and hence the 64-bitness is lost. */
Linus Torvaldsb6f7e382010-10-21 13:34:32 -0700144
H. Peter Anvind7acb922010-10-13 16:00:29 -0700145#ifdef CONFIG_AS_FXSAVEQ
Roland McGrath1eeaed72008-01-30 13:31:51 +0100146 /* Using "fxsaveq %0" would be the ideal choice, but is only supported
147 starting with gas 2.16. */
148 __asm__ __volatile__("fxsaveq %0"
Avi Kivity86603282010-05-06 11:45:46 +0300149 : "=m" (fpu->state->fxsave));
Linus Torvaldsb6f7e382010-10-21 13:34:32 -0700150#else
Roland McGrath1eeaed72008-01-30 13:31:51 +0100151 /* Using, as a workaround, the properly prefixed form below isn't
152 accepted by any binutils version so far released, complaining that
153 the same type of prefix is used twice if an extended register is
Brian Gerst82024132010-09-03 21:17:14 -0400154 needed for addressing (fix submitted to mainline 2005-11-21).
155 asm volatile("rex64/fxsave %0"
156 : "=m" (fpu->state->fxsave));
157 This, however, we can work around by forcing the compiler to select
Roland McGrath1eeaed72008-01-30 13:31:51 +0100158 an addressing mode that doesn't require extended registers. */
Brian Gerst82024132010-09-03 21:17:14 -0400159 asm volatile("rex64/fxsave (%[fx])"
160 : "=m" (fpu->state->fxsave)
161 : [fx] "R" (&fpu->state->fxsave));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100162#endif
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700163}
164
Roland McGrath1eeaed72008-01-30 13:31:51 +0100165#else /* CONFIG_X86_32 */
166
Jiri Slaby34ba4762009-04-08 13:31:59 +0200167/* perform fxrstor iff the processor has extended states, otherwise frstor */
168static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100169{
170 /*
171 * The "nop" is needed to make the instructions the same
172 * length.
173 */
174 alternative_input(
175 "nop ; frstor %1",
176 "fxrstor %1",
177 X86_FEATURE_FXSR,
Jiri Slaby34ba4762009-04-08 13:31:59 +0200178 "m" (*fx));
179
Jiri Slabyfcb2ac52009-04-08 13:31:58 +0200180 return 0;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100181}
182
Brian Gerst58a992b2010-09-03 21:17:18 -0400183static inline void fpu_fxsave(struct fpu *fpu)
184{
185 asm volatile("fxsave %[fx]"
186 : [fx] "=m" (fpu->state->fxsave));
187}
188
Brian Gerstb2b57fe2010-09-03 21:17:19 -0400189#endif /* CONFIG_X86_64 */
190
Roland McGrath1eeaed72008-01-30 13:31:51 +0100191/* We need a safe address that is cheap to find and that is already
192 in L1 during context switch. The best choices are unfortunately
193 different for UP and SMP */
194#ifdef CONFIG_SMP
195#define safe_address (__per_cpu_offset[0])
196#else
197#define safe_address (kstat_cpu(0).cpustat.user)
198#endif
199
200/*
201 * These must be called with preempt disabled
202 */
Avi Kivity86603282010-05-06 11:45:46 +0300203static inline void fpu_save_init(struct fpu *fpu)
Roland McGrath1eeaed72008-01-30 13:31:51 +0100204{
Avi Kivityc9ad4882010-05-06 11:45:45 +0300205 if (use_xsave()) {
Avi Kivity86603282010-05-06 11:45:46 +0300206 fpu_xsave(fpu);
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700207
208 /*
209 * xsave header may indicate the init state of the FP.
210 */
Brian Gerst58a992b2010-09-03 21:17:18 -0400211 if (!(fpu->state->xsave.xsave_hdr.xstate_bv & XSTATE_FP))
212 return;
213 } else if (use_fxsr()) {
214 fpu_fxsave(fpu);
215 } else {
216 asm volatile("fsave %[fx]; fwait"
217 : [fx] "=m" (fpu->state->fsave));
218 return;
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700219 }
220
Brian Gerst58a992b2010-09-03 21:17:18 -0400221 if (unlikely(fpu->state->fxsave.swd & X87_FSW_ES))
222 asm volatile("fnclex");
223
Roland McGrath1eeaed72008-01-30 13:31:51 +0100224 /* AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception
225 is pending. Clear the x87 state here by setting it to fixed
226 values. safe_address is a random variable that should be in L1 */
227 alternative_input(
Brian Gerstb2b57fe2010-09-03 21:17:19 -0400228 ASM_NOP8 ASM_NOP2,
Roland McGrath1eeaed72008-01-30 13:31:51 +0100229 "emms\n\t" /* clear stack tags */
Brian Gerstb2b57fe2010-09-03 21:17:19 -0400230 "fildl %P[addr]", /* set F?P to defined value */
Roland McGrath1eeaed72008-01-30 13:31:51 +0100231 X86_FEATURE_FXSAVE_LEAK,
232 [addr] "m" (safe_address));
Avi Kivity86603282010-05-06 11:45:46 +0300233}
234
235static inline void __save_init_fpu(struct task_struct *tsk)
236{
237 fpu_save_init(&tsk->thread.fpu);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100238 task_thread_info(tsk)->status &= ~TS_USEDFPU;
239}
240
Avi Kivity86603282010-05-06 11:45:46 +0300241static inline int fpu_fxrstor_checking(struct fpu *fpu)
242{
243 return fxrstor_checking(&fpu->state->fxsave);
244}
245
246static inline int fpu_restore_checking(struct fpu *fpu)
247{
248 if (use_xsave())
249 return fpu_xrstor_checking(fpu);
250 else
251 return fpu_fxrstor_checking(fpu);
252}
253
Jiri Slaby34ba4762009-04-08 13:31:59 +0200254static inline int restore_fpu_checking(struct task_struct *tsk)
255{
Avi Kivity86603282010-05-06 11:45:46 +0300256 return fpu_restore_checking(&tsk->thread.fpu);
Jiri Slaby34ba4762009-04-08 13:31:59 +0200257}
258
Roland McGrath1eeaed72008-01-30 13:31:51 +0100259/*
260 * Signal frame handlers...
261 */
Suresh Siddhaab513702008-07-29 10:29:22 -0700262extern int save_i387_xstate(void __user *buf);
263extern int restore_i387_xstate(void __user *buf);
Roland McGrath1eeaed72008-01-30 13:31:51 +0100264
265static inline void __unlazy_fpu(struct task_struct *tsk)
266{
267 if (task_thread_info(tsk)->status & TS_USEDFPU) {
268 __save_init_fpu(tsk);
269 stts();
270 } else
271 tsk->fpu_counter = 0;
272}
273
274static inline void __clear_fpu(struct task_struct *tsk)
275{
276 if (task_thread_info(tsk)->status & TS_USEDFPU) {
Brian Gerst51115d42010-09-03 21:17:10 -0400277 /* Ignore delayed exceptions from user space */
278 asm volatile("1: fwait\n"
279 "2:\n"
280 _ASM_EXTABLE(1b, 2b));
Roland McGrath1eeaed72008-01-30 13:31:51 +0100281 task_thread_info(tsk)->status &= ~TS_USEDFPU;
282 stts();
283 }
284}
285
286static inline void kernel_fpu_begin(void)
287{
288 struct thread_info *me = current_thread_info();
289 preempt_disable();
290 if (me->status & TS_USEDFPU)
291 __save_init_fpu(me->task);
292 else
293 clts();
294}
295
296static inline void kernel_fpu_end(void)
297{
298 stts();
299 preempt_enable();
300}
301
Huang Yingae4b6882009-08-31 13:11:54 +0800302static inline bool irq_fpu_usable(void)
303{
304 struct pt_regs *regs;
305
306 return !in_interrupt() || !(regs = get_irq_regs()) || \
307 user_mode(regs) || (read_cr0() & X86_CR0_TS);
308}
309
Suresh Siddhae4914012008-08-13 22:02:26 +1000310/*
311 * Some instructions like VIA's padlock instructions generate a spurious
312 * DNA fault but don't modify SSE registers. And these instructions
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400313 * get used from interrupt context as well. To prevent these kernel instructions
314 * in interrupt context interacting wrongly with other user/kernel fpu usage, we
Suresh Siddhae4914012008-08-13 22:02:26 +1000315 * should use them only in the context of irq_ts_save/restore()
316 */
317static inline int irq_ts_save(void)
318{
319 /*
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400320 * If in process context and not atomic, we can take a spurious DNA fault.
321 * Otherwise, doing clts() in process context requires disabling preemption
322 * or some heavy lifting like kernel_fpu_begin()
Suresh Siddhae4914012008-08-13 22:02:26 +1000323 */
Chuck Ebbert0b8c3d52009-06-09 10:40:50 -0400324 if (!in_atomic())
Suresh Siddhae4914012008-08-13 22:02:26 +1000325 return 0;
326
327 if (read_cr0() & X86_CR0_TS) {
328 clts();
329 return 1;
330 }
331
332 return 0;
333}
334
335static inline void irq_ts_restore(int TS_state)
336{
337 if (TS_state)
338 stts();
339}
340
Roland McGrath1eeaed72008-01-30 13:31:51 +0100341/*
342 * These disable preemption on their own and are safe
343 */
344static inline void save_init_fpu(struct task_struct *tsk)
345{
346 preempt_disable();
347 __save_init_fpu(tsk);
348 stts();
349 preempt_enable();
350}
351
352static inline void unlazy_fpu(struct task_struct *tsk)
353{
354 preempt_disable();
355 __unlazy_fpu(tsk);
356 preempt_enable();
357}
358
359static inline void clear_fpu(struct task_struct *tsk)
360{
361 preempt_disable();
362 __clear_fpu(tsk);
363 preempt_enable();
364}
365
Roland McGrath1eeaed72008-01-30 13:31:51 +0100366/*
Roland McGrath1eeaed72008-01-30 13:31:51 +0100367 * i387 state interaction
368 */
369static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
370{
371 if (cpu_has_fxsr) {
Avi Kivity86603282010-05-06 11:45:46 +0300372 return tsk->thread.fpu.state->fxsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100373 } else {
Avi Kivity86603282010-05-06 11:45:46 +0300374 return (unsigned short)tsk->thread.fpu.state->fsave.cwd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100375 }
376}
377
378static inline unsigned short get_fpu_swd(struct task_struct *tsk)
379{
380 if (cpu_has_fxsr) {
Avi Kivity86603282010-05-06 11:45:46 +0300381 return tsk->thread.fpu.state->fxsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100382 } else {
Avi Kivity86603282010-05-06 11:45:46 +0300383 return (unsigned short)tsk->thread.fpu.state->fsave.swd;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100384 }
385}
386
387static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
388{
389 if (cpu_has_xmm) {
Avi Kivity86603282010-05-06 11:45:46 +0300390 return tsk->thread.fpu.state->fxsave.mxcsr;
Roland McGrath1eeaed72008-01-30 13:31:51 +0100391 } else {
392 return MXCSR_DEFAULT;
393 }
394}
395
Avi Kivity86603282010-05-06 11:45:46 +0300396static bool fpu_allocated(struct fpu *fpu)
397{
398 return fpu->state != NULL;
399}
400
401static inline int fpu_alloc(struct fpu *fpu)
402{
403 if (fpu_allocated(fpu))
404 return 0;
405 fpu->state = kmem_cache_alloc(task_xstate_cachep, GFP_KERNEL);
406 if (!fpu->state)
407 return -ENOMEM;
408 WARN_ON((unsigned long)fpu->state & 15);
409 return 0;
410}
411
412static inline void fpu_free(struct fpu *fpu)
413{
414 if (fpu->state) {
415 kmem_cache_free(task_xstate_cachep, fpu->state);
416 fpu->state = NULL;
417 }
418}
419
420static inline void fpu_copy(struct fpu *dst, struct fpu *src)
421{
422 memcpy(dst->state, src->state, xstate_size);
423}
424
Sheng Yang5ee481d2010-05-17 17:22:23 +0800425extern void fpu_finit(struct fpu *fpu);
426
Herbert Xu3b0d6592009-11-03 09:11:15 -0500427#endif /* __ASSEMBLY__ */
428
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700429#endif /* _ASM_X86_I387_H */