Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 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 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 10 | #ifndef _ASM_X86_I387_H |
| 11 | #define _ASM_X86_I387_H |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 12 | |
Herbert Xu | 3b0d659 | 2009-11-03 09:11:15 -0500 | [diff] [blame] | 13 | #ifndef __ASSEMBLY__ |
| 14 | |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 15 | #include <linux/sched.h> |
| 16 | #include <linux/kernel_stat.h> |
| 17 | #include <linux/regset.h> |
Suresh Siddha | e491401 | 2008-08-13 22:02:26 +1000 | [diff] [blame] | 18 | #include <linux/hardirq.h> |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 19 | #include <linux/slab.h> |
H. Peter Anvin | 92c37fa | 2008-02-04 16:47:58 +0100 | [diff] [blame] | 20 | #include <asm/asm.h> |
H. Peter Anvin | c9775b4 | 2010-05-11 17:49:54 -0700 | [diff] [blame] | 21 | #include <asm/cpufeature.h> |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 22 | #include <asm/processor.h> |
| 23 | #include <asm/sigcontext.h> |
| 24 | #include <asm/user.h> |
| 25 | #include <asm/uaccess.h> |
Suresh Siddha | dc1e35c | 2008-07-29 10:29:19 -0700 | [diff] [blame] | 26 | #include <asm/xsave.h> |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 27 | |
Suresh Siddha | 3c1c7f1 | 2008-07-29 10:29:21 -0700 | [diff] [blame] | 28 | extern unsigned int sig_xstate_size; |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 29 | extern void fpu_init(void); |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 30 | extern void mxcsr_feature_mask_init(void); |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 31 | extern int init_fpu(struct task_struct *child); |
Linus Torvalds | be98c2c | 2012-02-13 13:47:25 -0800 | [diff] [blame] | 32 | extern void math_state_restore(void); |
Jaswinder Singh | 3645493 | 2008-07-21 22:31:57 +0530 | [diff] [blame] | 33 | extern int dump_fpu(struct pt_regs *, struct user_i387_struct *); |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 34 | |
| 35 | extern user_regset_active_fn fpregs_active, xfpregs_active; |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame] | 36 | extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get, |
| 37 | xstateregs_get; |
| 38 | extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set, |
| 39 | xstateregs_set; |
| 40 | |
| 41 | /* |
| 42 | * xstateregs_active == fpregs_active. Please refer to the comment |
| 43 | * at the definition of fpregs_active. |
| 44 | */ |
| 45 | #define xstateregs_active fpregs_active |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 46 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 47 | extern struct _fpx_sw_bytes fx_sw_reserved; |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 48 | #ifdef CONFIG_IA32_EMULATION |
Suresh Siddha | 3c1c7f1 | 2008-07-29 10:29:21 -0700 | [diff] [blame] | 49 | extern unsigned int sig_xstate_ia32_size; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 50 | extern struct _fpx_sw_bytes fx_sw_reserved_ia32; |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 51 | struct _fpstate_ia32; |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 52 | struct _xstate_ia32; |
| 53 | extern int save_i387_xstate_ia32(void __user *buf); |
| 54 | extern int restore_i387_xstate_ia32(void __user *buf); |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 55 | #endif |
| 56 | |
Brian Gerst | 8eb91a5 | 2010-09-03 21:17:16 -0400 | [diff] [blame] | 57 | #ifdef CONFIG_MATH_EMULATION |
| 58 | extern void finit_soft_fpu(struct i387_soft_struct *soft); |
| 59 | #else |
| 60 | static inline void finit_soft_fpu(struct i387_soft_struct *soft) {} |
| 61 | #endif |
| 62 | |
Suresh Siddha | b359e8a | 2008-07-29 10:29:20 -0700 | [diff] [blame] | 63 | #define X87_FSW_ES (1 << 7) /* Exception Summary */ |
| 64 | |
Suresh Siddha | 29104e1 | 2010-07-19 16:05:49 -0700 | [diff] [blame] | 65 | static __always_inline __pure bool use_xsaveopt(void) |
| 66 | { |
Suresh Siddha | 6bad06b | 2010-07-19 16:05:52 -0700 | [diff] [blame] | 67 | return static_cpu_has(X86_FEATURE_XSAVEOPT); |
Suresh Siddha | 29104e1 | 2010-07-19 16:05:49 -0700 | [diff] [blame] | 68 | } |
| 69 | |
H. Peter Anvin | c9775b4 | 2010-05-11 17:49:54 -0700 | [diff] [blame] | 70 | static __always_inline __pure bool use_xsave(void) |
Avi Kivity | c9ad488 | 2010-05-06 11:45:45 +0300 | [diff] [blame] | 71 | { |
H. Peter Anvin | c9775b4 | 2010-05-11 17:49:54 -0700 | [diff] [blame] | 72 | return static_cpu_has(X86_FEATURE_XSAVE); |
Avi Kivity | c9ad488 | 2010-05-06 11:45:45 +0300 | [diff] [blame] | 73 | } |
| 74 | |
Brian Gerst | 58a992b | 2010-09-03 21:17:18 -0400 | [diff] [blame] | 75 | static __always_inline __pure bool use_fxsr(void) |
| 76 | { |
| 77 | return static_cpu_has(X86_FEATURE_FXSR); |
| 78 | } |
| 79 | |
Suresh Siddha | 29104e1 | 2010-07-19 16:05:49 -0700 | [diff] [blame] | 80 | extern void __sanitize_i387_state(struct task_struct *); |
| 81 | |
| 82 | static inline void sanitize_i387_state(struct task_struct *tsk) |
| 83 | { |
| 84 | if (!use_xsaveopt()) |
| 85 | return; |
| 86 | __sanitize_i387_state(tsk); |
| 87 | } |
| 88 | |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 89 | #ifdef CONFIG_X86_64 |
Suresh Siddha | b359e8a | 2008-07-29 10:29:20 -0700 | [diff] [blame] | 90 | static inline int fxrstor_checking(struct i387_fxsave_struct *fx) |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 91 | { |
| 92 | int err; |
| 93 | |
Brian Gerst | 8202413 | 2010-09-03 21:17:14 -0400 | [diff] [blame] | 94 | /* See comment in fxsave() below. */ |
H. Peter Anvin | fd35fbc | 2010-10-22 15:33:38 -0700 | [diff] [blame] | 95 | #ifdef CONFIG_AS_FXSAVEQ |
| 96 | asm volatile("1: fxrstorq %[fx]\n\t" |
| 97 | "2:\n" |
| 98 | ".section .fixup,\"ax\"\n" |
| 99 | "3: movl $-1,%[err]\n" |
| 100 | " jmp 2b\n" |
| 101 | ".previous\n" |
| 102 | _ASM_EXTABLE(1b, 3b) |
| 103 | : [err] "=r" (err) |
| 104 | : [fx] "m" (*fx), "0" (0)); |
| 105 | #else |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 106 | asm volatile("1: rex64/fxrstor (%[fx])\n\t" |
| 107 | "2:\n" |
| 108 | ".section .fixup,\"ax\"\n" |
| 109 | "3: movl $-1,%[err]\n" |
| 110 | " jmp 2b\n" |
| 111 | ".previous\n" |
Joe Perches | affe663 | 2008-03-23 01:02:18 -0700 | [diff] [blame] | 112 | _ASM_EXTABLE(1b, 3b) |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 113 | : [err] "=r" (err) |
Brian Gerst | 8202413 | 2010-09-03 21:17:14 -0400 | [diff] [blame] | 114 | : [fx] "R" (fx), "m" (*fx), "0" (0)); |
H. Peter Anvin | fd35fbc | 2010-10-22 15:33:38 -0700 | [diff] [blame] | 115 | #endif |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 116 | return err; |
| 117 | } |
| 118 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 119 | static inline int fxsave_user(struct i387_fxsave_struct __user *fx) |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 120 | { |
| 121 | int err; |
| 122 | |
Suresh Siddha | 8e221b6 | 2010-06-22 16:23:37 -0700 | [diff] [blame] | 123 | /* |
| 124 | * Clear the bytes not touched by the fxsave and reserved |
| 125 | * for the SW usage. |
| 126 | */ |
| 127 | err = __clear_user(&fx->sw_reserved, |
| 128 | sizeof(struct _fpx_sw_bytes)); |
| 129 | if (unlikely(err)) |
| 130 | return -EFAULT; |
| 131 | |
Brian Gerst | 8202413 | 2010-09-03 21:17:14 -0400 | [diff] [blame] | 132 | /* See comment in fxsave() below. */ |
H. Peter Anvin | fd35fbc | 2010-10-22 15:33:38 -0700 | [diff] [blame] | 133 | #ifdef CONFIG_AS_FXSAVEQ |
| 134 | asm volatile("1: fxsaveq %[fx]\n\t" |
| 135 | "2:\n" |
| 136 | ".section .fixup,\"ax\"\n" |
| 137 | "3: movl $-1,%[err]\n" |
| 138 | " jmp 2b\n" |
| 139 | ".previous\n" |
| 140 | _ASM_EXTABLE(1b, 3b) |
| 141 | : [err] "=r" (err), [fx] "=m" (*fx) |
| 142 | : "0" (0)); |
| 143 | #else |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 144 | asm volatile("1: rex64/fxsave (%[fx])\n\t" |
| 145 | "2:\n" |
| 146 | ".section .fixup,\"ax\"\n" |
| 147 | "3: movl $-1,%[err]\n" |
| 148 | " jmp 2b\n" |
| 149 | ".previous\n" |
Joe Perches | affe663 | 2008-03-23 01:02:18 -0700 | [diff] [blame] | 150 | _ASM_EXTABLE(1b, 3b) |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 151 | : [err] "=r" (err), "=m" (*fx) |
Brian Gerst | 8202413 | 2010-09-03 21:17:14 -0400 | [diff] [blame] | 152 | : [fx] "R" (fx), "0" (0)); |
H. Peter Anvin | fd35fbc | 2010-10-22 15:33:38 -0700 | [diff] [blame] | 153 | #endif |
Joe Perches | affe663 | 2008-03-23 01:02:18 -0700 | [diff] [blame] | 154 | if (unlikely(err) && |
| 155 | __clear_user(fx, sizeof(struct i387_fxsave_struct))) |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 156 | err = -EFAULT; |
| 157 | /* No need to clear here because the caller clears USED_MATH */ |
| 158 | return err; |
| 159 | } |
| 160 | |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 161 | static inline void fpu_fxsave(struct fpu *fpu) |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 162 | { |
| 163 | /* Using "rex64; fxsave %0" is broken because, if the memory operand |
| 164 | uses any extended registers for addressing, a second REX prefix |
| 165 | will be generated (to the assembler, rex64 followed by semicolon |
| 166 | is a separate instruction), and hence the 64-bitness is lost. */ |
Linus Torvalds | b6f7e38 | 2010-10-21 13:34:32 -0700 | [diff] [blame] | 167 | |
H. Peter Anvin | d7acb92 | 2010-10-13 16:00:29 -0700 | [diff] [blame] | 168 | #ifdef CONFIG_AS_FXSAVEQ |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 169 | /* Using "fxsaveq %0" would be the ideal choice, but is only supported |
| 170 | starting with gas 2.16. */ |
| 171 | __asm__ __volatile__("fxsaveq %0" |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 172 | : "=m" (fpu->state->fxsave)); |
Linus Torvalds | b6f7e38 | 2010-10-21 13:34:32 -0700 | [diff] [blame] | 173 | #else |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 174 | /* Using, as a workaround, the properly prefixed form below isn't |
| 175 | accepted by any binutils version so far released, complaining that |
| 176 | the same type of prefix is used twice if an extended register is |
Brian Gerst | 8202413 | 2010-09-03 21:17:14 -0400 | [diff] [blame] | 177 | needed for addressing (fix submitted to mainline 2005-11-21). |
| 178 | asm volatile("rex64/fxsave %0" |
| 179 | : "=m" (fpu->state->fxsave)); |
| 180 | This, however, we can work around by forcing the compiler to select |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 181 | an addressing mode that doesn't require extended registers. */ |
Brian Gerst | 8202413 | 2010-09-03 21:17:14 -0400 | [diff] [blame] | 182 | asm volatile("rex64/fxsave (%[fx])" |
| 183 | : "=m" (fpu->state->fxsave) |
| 184 | : [fx] "R" (&fpu->state->fxsave)); |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 185 | #endif |
Suresh Siddha | b359e8a | 2008-07-29 10:29:20 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 188 | #else /* CONFIG_X86_32 */ |
| 189 | |
Jiri Slaby | 34ba476 | 2009-04-08 13:31:59 +0200 | [diff] [blame] | 190 | /* perform fxrstor iff the processor has extended states, otherwise frstor */ |
| 191 | static inline int fxrstor_checking(struct i387_fxsave_struct *fx) |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 192 | { |
| 193 | /* |
| 194 | * The "nop" is needed to make the instructions the same |
| 195 | * length. |
| 196 | */ |
| 197 | alternative_input( |
| 198 | "nop ; frstor %1", |
| 199 | "fxrstor %1", |
| 200 | X86_FEATURE_FXSR, |
Jiri Slaby | 34ba476 | 2009-04-08 13:31:59 +0200 | [diff] [blame] | 201 | "m" (*fx)); |
| 202 | |
Jiri Slaby | fcb2ac5 | 2009-04-08 13:31:58 +0200 | [diff] [blame] | 203 | return 0; |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 204 | } |
| 205 | |
Brian Gerst | 58a992b | 2010-09-03 21:17:18 -0400 | [diff] [blame] | 206 | static inline void fpu_fxsave(struct fpu *fpu) |
| 207 | { |
| 208 | asm volatile("fxsave %[fx]" |
| 209 | : [fx] "=m" (fpu->state->fxsave)); |
| 210 | } |
| 211 | |
Brian Gerst | b2b57fe | 2010-09-03 21:17:19 -0400 | [diff] [blame] | 212 | #endif /* CONFIG_X86_64 */ |
| 213 | |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 214 | /* |
| 215 | * These must be called with preempt disabled |
| 216 | */ |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 217 | static inline void fpu_save_init(struct fpu *fpu) |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 218 | { |
Avi Kivity | c9ad488 | 2010-05-06 11:45:45 +0300 | [diff] [blame] | 219 | if (use_xsave()) { |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 220 | fpu_xsave(fpu); |
Suresh Siddha | b359e8a | 2008-07-29 10:29:20 -0700 | [diff] [blame] | 221 | |
| 222 | /* |
| 223 | * xsave header may indicate the init state of the FP. |
| 224 | */ |
Brian Gerst | 58a992b | 2010-09-03 21:17:18 -0400 | [diff] [blame] | 225 | if (!(fpu->state->xsave.xsave_hdr.xstate_bv & XSTATE_FP)) |
| 226 | return; |
| 227 | } else if (use_fxsr()) { |
| 228 | fpu_fxsave(fpu); |
| 229 | } else { |
Hans Rosenfeld | f994d99 | 2011-04-06 18:06:43 +0200 | [diff] [blame] | 230 | asm volatile("fnsave %[fx]; fwait" |
Brian Gerst | 58a992b | 2010-09-03 21:17:18 -0400 | [diff] [blame] | 231 | : [fx] "=m" (fpu->state->fsave)); |
| 232 | return; |
Suresh Siddha | b359e8a | 2008-07-29 10:29:20 -0700 | [diff] [blame] | 233 | } |
| 234 | |
Brian Gerst | 58a992b | 2010-09-03 21:17:18 -0400 | [diff] [blame] | 235 | if (unlikely(fpu->state->fxsave.swd & X87_FSW_ES)) |
| 236 | asm volatile("fnclex"); |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | static inline void __save_init_fpu(struct task_struct *tsk) |
| 240 | { |
| 241 | fpu_save_init(&tsk->thread.fpu); |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 242 | } |
| 243 | |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 244 | static inline int fpu_fxrstor_checking(struct fpu *fpu) |
| 245 | { |
| 246 | return fxrstor_checking(&fpu->state->fxsave); |
| 247 | } |
| 248 | |
| 249 | static inline int fpu_restore_checking(struct fpu *fpu) |
| 250 | { |
| 251 | if (use_xsave()) |
| 252 | return fpu_xrstor_checking(fpu); |
| 253 | else |
| 254 | return fpu_fxrstor_checking(fpu); |
| 255 | } |
| 256 | |
Jiri Slaby | 34ba476 | 2009-04-08 13:31:59 +0200 | [diff] [blame] | 257 | static inline int restore_fpu_checking(struct task_struct *tsk) |
| 258 | { |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 259 | return fpu_restore_checking(&tsk->thread.fpu); |
Jiri Slaby | 34ba476 | 2009-04-08 13:31:59 +0200 | [diff] [blame] | 260 | } |
| 261 | |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 262 | /* |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 263 | * Software FPU state helpers. Careful: these need to |
| 264 | * be preemption protection *and* they need to be |
| 265 | * properly paired with the CR0.TS changes! |
| 266 | */ |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 267 | static inline int __thread_has_fpu(struct task_struct *tsk) |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 268 | { |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 269 | return tsk->thread.has_fpu; |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | /* Must be paired with an 'stts' after! */ |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 273 | static inline void __thread_clear_has_fpu(struct task_struct *tsk) |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 274 | { |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 275 | tsk->thread.has_fpu = 0; |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | /* Must be paired with a 'clts' before! */ |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 279 | static inline void __thread_set_has_fpu(struct task_struct *tsk) |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 280 | { |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 281 | tsk->thread.has_fpu = 1; |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | /* |
| 285 | * Encapsulate the CR0.TS handling together with the |
| 286 | * software flag. |
| 287 | * |
| 288 | * These generally need preemption protection to work, |
| 289 | * do try to avoid using these on their own. |
| 290 | */ |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 291 | static inline void __thread_fpu_end(struct task_struct *tsk) |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 292 | { |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 293 | __thread_clear_has_fpu(tsk); |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 294 | stts(); |
| 295 | } |
| 296 | |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 297 | static inline void __thread_fpu_begin(struct task_struct *tsk) |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 298 | { |
| 299 | clts(); |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 300 | __thread_set_has_fpu(tsk); |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | /* |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 304 | * Signal frame handlers... |
| 305 | */ |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 306 | extern int save_i387_xstate(void __user *buf); |
| 307 | extern int restore_i387_xstate(void __user *buf); |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 308 | |
| 309 | static inline void __unlazy_fpu(struct task_struct *tsk) |
| 310 | { |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 311 | if (__thread_has_fpu(tsk)) { |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 312 | __save_init_fpu(tsk); |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 313 | __thread_fpu_end(tsk); |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 314 | } else |
| 315 | tsk->fpu_counter = 0; |
| 316 | } |
| 317 | |
| 318 | static inline void __clear_fpu(struct task_struct *tsk) |
| 319 | { |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 320 | if (__thread_has_fpu(tsk)) { |
Brian Gerst | 51115d4 | 2010-09-03 21:17:10 -0400 | [diff] [blame] | 321 | /* Ignore delayed exceptions from user space */ |
| 322 | asm volatile("1: fwait\n" |
| 323 | "2:\n" |
| 324 | _ASM_EXTABLE(1b, 2b)); |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 325 | __thread_fpu_end(tsk); |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 326 | } |
| 327 | } |
| 328 | |
Linus Torvalds | 5b1cbac | 2012-02-13 13:56:14 -0800 | [diff] [blame] | 329 | /* |
| 330 | * Were we in an interrupt that interrupted kernel mode? |
| 331 | * |
| 332 | * We can do a kernel_fpu_begin/end() pair *ONLY* if that |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 333 | * pair does nothing at all: the thread must not have fpu (so |
Linus Torvalds | 5b1cbac | 2012-02-13 13:56:14 -0800 | [diff] [blame] | 334 | * that we don't try to save the FPU state), and TS must |
| 335 | * be set (so that the clts/stts pair does nothing that is |
| 336 | * visible in the interrupted kernel thread). |
| 337 | */ |
| 338 | static inline bool interrupted_kernel_fpu_idle(void) |
| 339 | { |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 340 | return !__thread_has_fpu(current) && |
Linus Torvalds | 5b1cbac | 2012-02-13 13:56:14 -0800 | [diff] [blame] | 341 | (read_cr0() & X86_CR0_TS); |
| 342 | } |
| 343 | |
| 344 | /* |
| 345 | * Were we in user mode (or vm86 mode) when we were |
| 346 | * interrupted? |
| 347 | * |
| 348 | * Doing kernel_fpu_begin/end() is ok if we are running |
| 349 | * in an interrupt context from user mode - we'll just |
| 350 | * save the FPU state as required. |
| 351 | */ |
| 352 | static inline bool interrupted_user_mode(void) |
| 353 | { |
| 354 | struct pt_regs *regs = get_irq_regs(); |
| 355 | return regs && user_mode_vm(regs); |
| 356 | } |
| 357 | |
| 358 | /* |
| 359 | * Can we use the FPU in kernel mode with the |
| 360 | * whole "kernel_fpu_begin/end()" sequence? |
| 361 | * |
| 362 | * It's always ok in process context (ie "not interrupt") |
| 363 | * but it is sometimes ok even from an irq. |
| 364 | */ |
| 365 | static inline bool irq_fpu_usable(void) |
| 366 | { |
| 367 | return !in_interrupt() || |
| 368 | interrupted_user_mode() || |
| 369 | interrupted_kernel_fpu_idle(); |
| 370 | } |
| 371 | |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 372 | static inline void kernel_fpu_begin(void) |
| 373 | { |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 374 | struct task_struct *me = current; |
Linus Torvalds | 5b1cbac | 2012-02-13 13:56:14 -0800 | [diff] [blame] | 375 | |
| 376 | WARN_ON_ONCE(!irq_fpu_usable()); |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 377 | preempt_disable(); |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 378 | if (__thread_has_fpu(me)) { |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 379 | __save_init_fpu(me); |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 380 | __thread_clear_has_fpu(me); |
Linus Torvalds | b6c6641 | 2012-02-16 12:22:48 -0800 | [diff] [blame] | 381 | /* We do 'stts()' in kernel_fpu_end() */ |
| 382 | } else |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 383 | clts(); |
| 384 | } |
| 385 | |
| 386 | static inline void kernel_fpu_end(void) |
| 387 | { |
| 388 | stts(); |
| 389 | preempt_enable(); |
| 390 | } |
| 391 | |
Suresh Siddha | e491401 | 2008-08-13 22:02:26 +1000 | [diff] [blame] | 392 | /* |
| 393 | * Some instructions like VIA's padlock instructions generate a spurious |
| 394 | * DNA fault but don't modify SSE registers. And these instructions |
Chuck Ebbert | 0b8c3d5 | 2009-06-09 10:40:50 -0400 | [diff] [blame] | 395 | * get used from interrupt context as well. To prevent these kernel instructions |
| 396 | * in interrupt context interacting wrongly with other user/kernel fpu usage, we |
Suresh Siddha | e491401 | 2008-08-13 22:02:26 +1000 | [diff] [blame] | 397 | * should use them only in the context of irq_ts_save/restore() |
| 398 | */ |
| 399 | static inline int irq_ts_save(void) |
| 400 | { |
| 401 | /* |
Chuck Ebbert | 0b8c3d5 | 2009-06-09 10:40:50 -0400 | [diff] [blame] | 402 | * If in process context and not atomic, we can take a spurious DNA fault. |
| 403 | * Otherwise, doing clts() in process context requires disabling preemption |
| 404 | * or some heavy lifting like kernel_fpu_begin() |
Suresh Siddha | e491401 | 2008-08-13 22:02:26 +1000 | [diff] [blame] | 405 | */ |
Chuck Ebbert | 0b8c3d5 | 2009-06-09 10:40:50 -0400 | [diff] [blame] | 406 | if (!in_atomic()) |
Suresh Siddha | e491401 | 2008-08-13 22:02:26 +1000 | [diff] [blame] | 407 | return 0; |
| 408 | |
| 409 | if (read_cr0() & X86_CR0_TS) { |
| 410 | clts(); |
| 411 | return 1; |
| 412 | } |
| 413 | |
| 414 | return 0; |
| 415 | } |
| 416 | |
| 417 | static inline void irq_ts_restore(int TS_state) |
| 418 | { |
| 419 | if (TS_state) |
| 420 | stts(); |
| 421 | } |
| 422 | |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 423 | /* |
Linus Torvalds | 15d8791 | 2012-02-16 09:15:04 -0800 | [diff] [blame] | 424 | * The question "does this thread have fpu access?" |
| 425 | * is slightly racy, since preemption could come in |
| 426 | * and revoke it immediately after the test. |
| 427 | * |
| 428 | * However, even in that very unlikely scenario, |
| 429 | * we can just assume we have FPU access - typically |
| 430 | * to save the FP state - we'll just take a #NM |
| 431 | * fault and get the FPU access back. |
| 432 | * |
| 433 | * The actual user_fpu_begin/end() functions |
| 434 | * need to be preemption-safe, though. |
| 435 | * |
| 436 | * NOTE! user_fpu_end() must be used only after you |
| 437 | * have saved the FP state, and user_fpu_begin() must |
| 438 | * be used only immediately before restoring it. |
| 439 | * These functions do not do any save/restore on |
| 440 | * their own. |
| 441 | */ |
| 442 | static inline int user_has_fpu(void) |
| 443 | { |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 444 | return __thread_has_fpu(current); |
Linus Torvalds | 15d8791 | 2012-02-16 09:15:04 -0800 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | static inline void user_fpu_end(void) |
| 448 | { |
| 449 | preempt_disable(); |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 450 | __thread_fpu_end(current); |
Linus Torvalds | 15d8791 | 2012-02-16 09:15:04 -0800 | [diff] [blame] | 451 | preempt_enable(); |
| 452 | } |
| 453 | |
| 454 | static inline void user_fpu_begin(void) |
| 455 | { |
| 456 | preempt_disable(); |
Linus Torvalds | 6d59d7a | 2012-02-16 13:33:12 -0800 | [diff] [blame] | 457 | if (!user_has_fpu()) |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 458 | __thread_fpu_begin(current); |
Linus Torvalds | 15d8791 | 2012-02-16 09:15:04 -0800 | [diff] [blame] | 459 | preempt_enable(); |
| 460 | } |
| 461 | |
| 462 | /* |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 463 | * These disable preemption on their own and are safe |
| 464 | */ |
| 465 | static inline void save_init_fpu(struct task_struct *tsk) |
| 466 | { |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 467 | WARN_ON_ONCE(!__thread_has_fpu(tsk)); |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 468 | preempt_disable(); |
| 469 | __save_init_fpu(tsk); |
Linus Torvalds | f94edac | 2012-02-17 21:48:54 -0800 | [diff] [blame^] | 470 | __thread_fpu_end(tsk); |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 471 | preempt_enable(); |
| 472 | } |
| 473 | |
| 474 | static inline void unlazy_fpu(struct task_struct *tsk) |
| 475 | { |
| 476 | preempt_disable(); |
| 477 | __unlazy_fpu(tsk); |
| 478 | preempt_enable(); |
| 479 | } |
| 480 | |
| 481 | static inline void clear_fpu(struct task_struct *tsk) |
| 482 | { |
| 483 | preempt_disable(); |
| 484 | __clear_fpu(tsk); |
| 485 | preempt_enable(); |
| 486 | } |
| 487 | |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 488 | /* |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 489 | * i387 state interaction |
| 490 | */ |
| 491 | static inline unsigned short get_fpu_cwd(struct task_struct *tsk) |
| 492 | { |
| 493 | if (cpu_has_fxsr) { |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 494 | return tsk->thread.fpu.state->fxsave.cwd; |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 495 | } else { |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 496 | return (unsigned short)tsk->thread.fpu.state->fsave.cwd; |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 497 | } |
| 498 | } |
| 499 | |
| 500 | static inline unsigned short get_fpu_swd(struct task_struct *tsk) |
| 501 | { |
| 502 | if (cpu_has_fxsr) { |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 503 | return tsk->thread.fpu.state->fxsave.swd; |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 504 | } else { |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 505 | return (unsigned short)tsk->thread.fpu.state->fsave.swd; |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 506 | } |
| 507 | } |
| 508 | |
| 509 | static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk) |
| 510 | { |
| 511 | if (cpu_has_xmm) { |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 512 | return tsk->thread.fpu.state->fxsave.mxcsr; |
Roland McGrath | 1eeaed7 | 2008-01-30 13:31:51 +0100 | [diff] [blame] | 513 | } else { |
| 514 | return MXCSR_DEFAULT; |
| 515 | } |
| 516 | } |
| 517 | |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 518 | static bool fpu_allocated(struct fpu *fpu) |
| 519 | { |
| 520 | return fpu->state != NULL; |
| 521 | } |
| 522 | |
| 523 | static inline int fpu_alloc(struct fpu *fpu) |
| 524 | { |
| 525 | if (fpu_allocated(fpu)) |
| 526 | return 0; |
| 527 | fpu->state = kmem_cache_alloc(task_xstate_cachep, GFP_KERNEL); |
| 528 | if (!fpu->state) |
| 529 | return -ENOMEM; |
| 530 | WARN_ON((unsigned long)fpu->state & 15); |
| 531 | return 0; |
| 532 | } |
| 533 | |
| 534 | static inline void fpu_free(struct fpu *fpu) |
| 535 | { |
| 536 | if (fpu->state) { |
| 537 | kmem_cache_free(task_xstate_cachep, fpu->state); |
| 538 | fpu->state = NULL; |
| 539 | } |
| 540 | } |
| 541 | |
| 542 | static inline void fpu_copy(struct fpu *dst, struct fpu *src) |
| 543 | { |
| 544 | memcpy(dst->state, src->state, xstate_size); |
| 545 | } |
| 546 | |
Sheng Yang | 5ee481d | 2010-05-17 17:22:23 +0800 | [diff] [blame] | 547 | extern void fpu_finit(struct fpu *fpu); |
| 548 | |
Herbert Xu | 3b0d659 | 2009-11-03 09:11:15 -0500 | [diff] [blame] | 549 | #endif /* __ASSEMBLY__ */ |
| 550 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 551 | #endif /* _ASM_X86_I387_H */ |