Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [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 | |
| 10 | #ifndef _FPU_INTERNAL_H |
| 11 | #define _FPU_INTERNAL_H |
| 12 | |
| 13 | #include <linux/kernel_stat.h> |
| 14 | #include <linux/regset.h> |
Suresh Siddha | 050902c | 2012-07-24 16:05:27 -0700 | [diff] [blame] | 15 | #include <linux/compat.h> |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 16 | #include <linux/slab.h> |
| 17 | #include <asm/asm.h> |
| 18 | #include <asm/cpufeature.h> |
| 19 | #include <asm/processor.h> |
| 20 | #include <asm/sigcontext.h> |
| 21 | #include <asm/user.h> |
| 22 | #include <asm/uaccess.h> |
| 23 | #include <asm/xsave.h> |
H. Peter Anvin | 49b8c69 | 2012-09-21 17:18:44 -0700 | [diff] [blame] | 24 | #include <asm/smap.h> |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 25 | |
Suresh Siddha | 72a671c | 2012-07-24 16:05:29 -0700 | [diff] [blame] | 26 | #ifdef CONFIG_X86_64 |
| 27 | # include <asm/sigcontext32.h> |
| 28 | # include <asm/user32.h> |
Al Viro | 235b802 | 2012-11-09 23:51:47 -0500 | [diff] [blame] | 29 | struct ksignal; |
| 30 | int ia32_setup_rt_frame(int sig, struct ksignal *ksig, |
Suresh Siddha | 72a671c | 2012-07-24 16:05:29 -0700 | [diff] [blame] | 31 | compat_sigset_t *set, struct pt_regs *regs); |
Al Viro | 235b802 | 2012-11-09 23:51:47 -0500 | [diff] [blame] | 32 | int ia32_setup_frame(int sig, struct ksignal *ksig, |
Suresh Siddha | 72a671c | 2012-07-24 16:05:29 -0700 | [diff] [blame] | 33 | compat_sigset_t *set, struct pt_regs *regs); |
| 34 | #else |
| 35 | # define user_i387_ia32_struct user_i387_struct |
| 36 | # define user32_fxsr_struct user_fxsr_struct |
| 37 | # define ia32_setup_frame __setup_frame |
| 38 | # define ia32_setup_rt_frame __setup_rt_frame |
| 39 | #endif |
| 40 | |
| 41 | extern unsigned int mxcsr_feature_mask; |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 42 | extern void fpu_init(void); |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 43 | extern void eager_fpu_init(void); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 44 | |
| 45 | DECLARE_PER_CPU(struct task_struct *, fpu_owner_task); |
| 46 | |
Suresh Siddha | 72a671c | 2012-07-24 16:05:29 -0700 | [diff] [blame] | 47 | extern void convert_from_fxsr(struct user_i387_ia32_struct *env, |
| 48 | struct task_struct *tsk); |
| 49 | extern void convert_to_fxsr(struct task_struct *tsk, |
| 50 | const struct user_i387_ia32_struct *env); |
| 51 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 52 | extern user_regset_active_fn fpregs_active, xfpregs_active; |
| 53 | extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get, |
| 54 | xstateregs_get; |
| 55 | extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set, |
| 56 | xstateregs_set; |
| 57 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 58 | /* |
| 59 | * xstateregs_active == fpregs_active. Please refer to the comment |
| 60 | * at the definition of fpregs_active. |
| 61 | */ |
| 62 | #define xstateregs_active fpregs_active |
| 63 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 64 | #ifdef CONFIG_MATH_EMULATION |
| 65 | extern void finit_soft_fpu(struct i387_soft_struct *soft); |
| 66 | #else |
| 67 | static inline void finit_soft_fpu(struct i387_soft_struct *soft) {} |
| 68 | #endif |
| 69 | |
Suresh Siddha | 050902c | 2012-07-24 16:05:27 -0700 | [diff] [blame] | 70 | static inline int is_ia32_compat_frame(void) |
| 71 | { |
| 72 | return config_enabled(CONFIG_IA32_EMULATION) && |
| 73 | test_thread_flag(TIF_IA32); |
| 74 | } |
| 75 | |
| 76 | static inline int is_ia32_frame(void) |
| 77 | { |
| 78 | return config_enabled(CONFIG_X86_32) || is_ia32_compat_frame(); |
| 79 | } |
| 80 | |
| 81 | static inline int is_x32_frame(void) |
| 82 | { |
| 83 | return config_enabled(CONFIG_X86_X32_ABI) && test_thread_flag(TIF_X32); |
| 84 | } |
| 85 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 86 | #define X87_FSW_ES (1 << 7) /* Exception Summary */ |
| 87 | |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 88 | static __always_inline __pure bool use_eager_fpu(void) |
| 89 | { |
| 90 | return static_cpu_has(X86_FEATURE_EAGER_FPU); |
| 91 | } |
| 92 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 93 | static __always_inline __pure bool use_xsaveopt(void) |
| 94 | { |
| 95 | return static_cpu_has(X86_FEATURE_XSAVEOPT); |
| 96 | } |
| 97 | |
| 98 | static __always_inline __pure bool use_xsave(void) |
| 99 | { |
| 100 | return static_cpu_has(X86_FEATURE_XSAVE); |
| 101 | } |
| 102 | |
| 103 | static __always_inline __pure bool use_fxsr(void) |
| 104 | { |
| 105 | return static_cpu_has(X86_FEATURE_FXSR); |
| 106 | } |
| 107 | |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 108 | static inline void fx_finit(struct i387_fxsave_struct *fx) |
| 109 | { |
| 110 | memset(fx, 0, xstate_size); |
| 111 | fx->cwd = 0x37f; |
Suresh Siddha | a8615af | 2012-09-10 10:40:08 -0700 | [diff] [blame] | 112 | fx->mxcsr = MXCSR_DEFAULT; |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 115 | extern void __sanitize_i387_state(struct task_struct *); |
| 116 | |
| 117 | static inline void sanitize_i387_state(struct task_struct *tsk) |
| 118 | { |
| 119 | if (!use_xsaveopt()) |
| 120 | return; |
| 121 | __sanitize_i387_state(tsk); |
| 122 | } |
| 123 | |
H. Peter Anvin | 49b8c69 | 2012-09-21 17:18:44 -0700 | [diff] [blame] | 124 | #define user_insn(insn, output, input...) \ |
| 125 | ({ \ |
| 126 | int err; \ |
| 127 | asm volatile(ASM_STAC "\n" \ |
| 128 | "1:" #insn "\n\t" \ |
| 129 | "2: " ASM_CLAC "\n" \ |
| 130 | ".section .fixup,\"ax\"\n" \ |
| 131 | "3: movl $-1,%[err]\n" \ |
| 132 | " jmp 2b\n" \ |
| 133 | ".previous\n" \ |
| 134 | _ASM_EXTABLE(1b, 3b) \ |
| 135 | : [err] "=r" (err), output \ |
| 136 | : "0"(0), input); \ |
| 137 | err; \ |
| 138 | }) |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 139 | |
Suresh Siddha | 0ca5bd0 | 2012-07-24 16:05:28 -0700 | [diff] [blame] | 140 | #define check_insn(insn, output, input...) \ |
| 141 | ({ \ |
| 142 | int err; \ |
| 143 | asm volatile("1:" #insn "\n\t" \ |
| 144 | "2:\n" \ |
| 145 | ".section .fixup,\"ax\"\n" \ |
| 146 | "3: movl $-1,%[err]\n" \ |
| 147 | " jmp 2b\n" \ |
| 148 | ".previous\n" \ |
| 149 | _ASM_EXTABLE(1b, 3b) \ |
| 150 | : [err] "=r" (err), output \ |
| 151 | : "0"(0), input); \ |
| 152 | err; \ |
| 153 | }) |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 154 | |
Suresh Siddha | 0ca5bd0 | 2012-07-24 16:05:28 -0700 | [diff] [blame] | 155 | static inline int fsave_user(struct i387_fsave_struct __user *fx) |
| 156 | { |
H. Peter Anvin | 49b8c69 | 2012-09-21 17:18:44 -0700 | [diff] [blame] | 157 | return user_insn(fnsave %[fx]; fwait, [fx] "=m" (*fx), "m" (*fx)); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | static inline int fxsave_user(struct i387_fxsave_struct __user *fx) |
| 161 | { |
Suresh Siddha | 0ca5bd0 | 2012-07-24 16:05:28 -0700 | [diff] [blame] | 162 | if (config_enabled(CONFIG_X86_32)) |
H. Peter Anvin | 49b8c69 | 2012-09-21 17:18:44 -0700 | [diff] [blame] | 163 | return user_insn(fxsave %[fx], [fx] "=m" (*fx), "m" (*fx)); |
Suresh Siddha | 0ca5bd0 | 2012-07-24 16:05:28 -0700 | [diff] [blame] | 164 | else if (config_enabled(CONFIG_AS_FXSAVEQ)) |
H. Peter Anvin | 49b8c69 | 2012-09-21 17:18:44 -0700 | [diff] [blame] | 165 | return user_insn(fxsaveq %[fx], [fx] "=m" (*fx), "m" (*fx)); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 166 | |
Suresh Siddha | 0ca5bd0 | 2012-07-24 16:05:28 -0700 | [diff] [blame] | 167 | /* See comment in fpu_fxsave() below. */ |
H. Peter Anvin | 49b8c69 | 2012-09-21 17:18:44 -0700 | [diff] [blame] | 168 | return user_insn(rex64/fxsave (%[fx]), "=m" (*fx), [fx] "R" (fx)); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 169 | } |
| 170 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 171 | static inline int fxrstor_checking(struct i387_fxsave_struct *fx) |
| 172 | { |
Suresh Siddha | 0ca5bd0 | 2012-07-24 16:05:28 -0700 | [diff] [blame] | 173 | if (config_enabled(CONFIG_X86_32)) |
| 174 | return check_insn(fxrstor %[fx], "=m" (*fx), [fx] "m" (*fx)); |
| 175 | else if (config_enabled(CONFIG_AS_FXSAVEQ)) |
| 176 | return check_insn(fxrstorq %[fx], "=m" (*fx), [fx] "m" (*fx)); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 177 | |
Suresh Siddha | 0ca5bd0 | 2012-07-24 16:05:28 -0700 | [diff] [blame] | 178 | /* See comment in fpu_fxsave() below. */ |
| 179 | return check_insn(rex64/fxrstor (%[fx]), "=m" (*fx), [fx] "R" (fx), |
| 180 | "m" (*fx)); |
| 181 | } |
| 182 | |
H. Peter Anvin | e139e95 | 2012-09-25 15:42:18 -0700 | [diff] [blame] | 183 | static inline int fxrstor_user(struct i387_fxsave_struct __user *fx) |
| 184 | { |
| 185 | if (config_enabled(CONFIG_X86_32)) |
| 186 | return user_insn(fxrstor %[fx], "=m" (*fx), [fx] "m" (*fx)); |
| 187 | else if (config_enabled(CONFIG_AS_FXSAVEQ)) |
| 188 | return user_insn(fxrstorq %[fx], "=m" (*fx), [fx] "m" (*fx)); |
| 189 | |
| 190 | /* See comment in fpu_fxsave() below. */ |
| 191 | return user_insn(rex64/fxrstor (%[fx]), "=m" (*fx), [fx] "R" (fx), |
| 192 | "m" (*fx)); |
| 193 | } |
| 194 | |
Suresh Siddha | 0ca5bd0 | 2012-07-24 16:05:28 -0700 | [diff] [blame] | 195 | static inline int frstor_checking(struct i387_fsave_struct *fx) |
| 196 | { |
| 197 | return check_insn(frstor %[fx], "=m" (*fx), [fx] "m" (*fx)); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 198 | } |
| 199 | |
H. Peter Anvin | e139e95 | 2012-09-25 15:42:18 -0700 | [diff] [blame] | 200 | static inline int frstor_user(struct i387_fsave_struct __user *fx) |
| 201 | { |
| 202 | return user_insn(frstor %[fx], "=m" (*fx), [fx] "m" (*fx)); |
| 203 | } |
| 204 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 205 | static inline void fpu_fxsave(struct fpu *fpu) |
| 206 | { |
Suresh Siddha | 0ca5bd0 | 2012-07-24 16:05:28 -0700 | [diff] [blame] | 207 | if (config_enabled(CONFIG_X86_32)) |
| 208 | asm volatile( "fxsave %[fx]" : [fx] "=m" (fpu->state->fxsave)); |
| 209 | else if (config_enabled(CONFIG_AS_FXSAVEQ)) |
| 210 | asm volatile("fxsaveq %0" : "=m" (fpu->state->fxsave)); |
| 211 | else { |
| 212 | /* Using "rex64; fxsave %0" is broken because, if the memory |
| 213 | * operand uses any extended registers for addressing, a second |
| 214 | * REX prefix will be generated (to the assembler, rex64 |
| 215 | * followed by semicolon is a separate instruction), and hence |
| 216 | * the 64-bitness is lost. |
| 217 | * |
| 218 | * Using "fxsaveq %0" would be the ideal choice, but is only |
| 219 | * supported starting with gas 2.16. |
| 220 | * |
| 221 | * Using, as a workaround, the properly prefixed form below |
| 222 | * isn't accepted by any binutils version so far released, |
| 223 | * complaining that the same type of prefix is used twice if |
| 224 | * an extended register is needed for addressing (fix submitted |
| 225 | * to mainline 2005-11-21). |
| 226 | * |
| 227 | * asm volatile("rex64/fxsave %0" : "=m" (fpu->state->fxsave)); |
| 228 | * |
| 229 | * This, however, we can work around by forcing the compiler to |
| 230 | * select an addressing mode that doesn't require extended |
| 231 | * registers. |
| 232 | */ |
| 233 | asm volatile( "rex64/fxsave (%[fx])" |
| 234 | : "=m" (fpu->state->fxsave) |
| 235 | : [fx] "R" (&fpu->state->fxsave)); |
| 236 | } |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 237 | } |
| 238 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 239 | /* |
| 240 | * These must be called with preempt disabled. Returns |
| 241 | * 'true' if the FPU state is still intact. |
| 242 | */ |
| 243 | static inline int fpu_save_init(struct fpu *fpu) |
| 244 | { |
| 245 | if (use_xsave()) { |
| 246 | fpu_xsave(fpu); |
| 247 | |
| 248 | /* |
| 249 | * xsave header may indicate the init state of the FP. |
| 250 | */ |
| 251 | if (!(fpu->state->xsave.xsave_hdr.xstate_bv & XSTATE_FP)) |
| 252 | return 1; |
| 253 | } else if (use_fxsr()) { |
| 254 | fpu_fxsave(fpu); |
| 255 | } else { |
| 256 | asm volatile("fnsave %[fx]; fwait" |
| 257 | : [fx] "=m" (fpu->state->fsave)); |
| 258 | return 0; |
| 259 | } |
| 260 | |
| 261 | /* |
| 262 | * If exceptions are pending, we need to clear them so |
| 263 | * that we don't randomly get exceptions later. |
| 264 | * |
| 265 | * FIXME! Is this perhaps only true for the old-style |
| 266 | * irq13 case? Maybe we could leave the x87 state |
| 267 | * intact otherwise? |
| 268 | */ |
| 269 | if (unlikely(fpu->state->fxsave.swd & X87_FSW_ES)) { |
| 270 | asm volatile("fnclex"); |
| 271 | return 0; |
| 272 | } |
| 273 | return 1; |
| 274 | } |
| 275 | |
| 276 | static inline int __save_init_fpu(struct task_struct *tsk) |
| 277 | { |
| 278 | return fpu_save_init(&tsk->thread.fpu); |
| 279 | } |
| 280 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 281 | static inline int fpu_restore_checking(struct fpu *fpu) |
| 282 | { |
| 283 | if (use_xsave()) |
Suresh Siddha | 0ca5bd0 | 2012-07-24 16:05:28 -0700 | [diff] [blame] | 284 | return fpu_xrstor_checking(&fpu->state->xsave); |
| 285 | else if (use_fxsr()) |
| 286 | return fxrstor_checking(&fpu->state->fxsave); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 287 | else |
Suresh Siddha | 0ca5bd0 | 2012-07-24 16:05:28 -0700 | [diff] [blame] | 288 | return frstor_checking(&fpu->state->fsave); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | static inline int restore_fpu_checking(struct task_struct *tsk) |
| 292 | { |
| 293 | /* AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception |
| 294 | is pending. Clear the x87 state here by setting it to fixed |
| 295 | values. "m" is a random variable that should be in L1 */ |
Linus Torvalds | 26bef13 | 2014-01-11 19:15:52 -0800 | [diff] [blame] | 296 | if (unlikely(static_cpu_has(X86_FEATURE_FXSAVE_LEAK))) { |
| 297 | asm volatile( |
| 298 | "fnclex\n\t" |
| 299 | "emms\n\t" |
| 300 | "fildl %P[addr]" /* set F?P to defined value */ |
| 301 | : : [addr] "m" (tsk->thread.fpu.has_fpu)); |
| 302 | } |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 303 | |
| 304 | return fpu_restore_checking(&tsk->thread.fpu); |
| 305 | } |
| 306 | |
| 307 | /* |
| 308 | * Software FPU state helpers. Careful: these need to |
| 309 | * be preemption protection *and* they need to be |
| 310 | * properly paired with the CR0.TS changes! |
| 311 | */ |
| 312 | static inline int __thread_has_fpu(struct task_struct *tsk) |
| 313 | { |
| 314 | return tsk->thread.fpu.has_fpu; |
| 315 | } |
| 316 | |
| 317 | /* Must be paired with an 'stts' after! */ |
| 318 | static inline void __thread_clear_has_fpu(struct task_struct *tsk) |
| 319 | { |
| 320 | tsk->thread.fpu.has_fpu = 0; |
Alex Shi | c6ae41e | 2012-05-11 15:35:27 +0800 | [diff] [blame] | 321 | this_cpu_write(fpu_owner_task, NULL); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | /* Must be paired with a 'clts' before! */ |
| 325 | static inline void __thread_set_has_fpu(struct task_struct *tsk) |
| 326 | { |
| 327 | tsk->thread.fpu.has_fpu = 1; |
Alex Shi | c6ae41e | 2012-05-11 15:35:27 +0800 | [diff] [blame] | 328 | this_cpu_write(fpu_owner_task, tsk); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | /* |
| 332 | * Encapsulate the CR0.TS handling together with the |
| 333 | * software flag. |
| 334 | * |
| 335 | * These generally need preemption protection to work, |
| 336 | * do try to avoid using these on their own. |
| 337 | */ |
| 338 | static inline void __thread_fpu_end(struct task_struct *tsk) |
| 339 | { |
| 340 | __thread_clear_has_fpu(tsk); |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 341 | if (!use_eager_fpu()) |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 342 | stts(); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | static inline void __thread_fpu_begin(struct task_struct *tsk) |
| 346 | { |
Borislav Petkov | 5f8c421 | 2013-06-09 12:07:34 +0200 | [diff] [blame] | 347 | if (!static_cpu_has_safe(X86_FEATURE_EAGER_FPU)) |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 348 | clts(); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 349 | __thread_set_has_fpu(tsk); |
| 350 | } |
| 351 | |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 352 | static inline void __drop_fpu(struct task_struct *tsk) |
| 353 | { |
| 354 | if (__thread_has_fpu(tsk)) { |
| 355 | /* Ignore delayed exceptions from user space */ |
| 356 | asm volatile("1: fwait\n" |
| 357 | "2:\n" |
| 358 | _ASM_EXTABLE(1b, 2b)); |
| 359 | __thread_fpu_end(tsk); |
| 360 | } |
| 361 | } |
| 362 | |
| 363 | static inline void drop_fpu(struct task_struct *tsk) |
| 364 | { |
| 365 | /* |
| 366 | * Forget coprocessor state.. |
| 367 | */ |
| 368 | preempt_disable(); |
Vineet Gupta | c375f15 | 2013-11-12 15:08:46 -0800 | [diff] [blame] | 369 | tsk->thread.fpu_counter = 0; |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 370 | __drop_fpu(tsk); |
| 371 | clear_used_math(); |
| 372 | preempt_enable(); |
| 373 | } |
| 374 | |
| 375 | static inline void drop_init_fpu(struct task_struct *tsk) |
| 376 | { |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 377 | if (!use_eager_fpu()) |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 378 | drop_fpu(tsk); |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 379 | else { |
| 380 | if (use_xsave()) |
| 381 | xrstor_state(init_xstate_buf, -1); |
| 382 | else |
| 383 | fxrstor_checking(&init_xstate_buf->i387); |
| 384 | } |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 385 | } |
| 386 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 387 | /* |
| 388 | * FPU state switching for scheduling. |
| 389 | * |
| 390 | * This is a two-stage process: |
| 391 | * |
| 392 | * - switch_fpu_prepare() saves the old state and |
| 393 | * sets the new state of the CR0.TS bit. This is |
| 394 | * done within the context of the old process. |
| 395 | * |
| 396 | * - switch_fpu_finish() restores the new state as |
| 397 | * necessary. |
| 398 | */ |
| 399 | typedef struct { int preload; } fpu_switch_t; |
| 400 | |
| 401 | /* |
Vincent Palatin | 644c154 | 2012-11-30 12:15:32 -0800 | [diff] [blame] | 402 | * Must be run with preemption disabled: this clears the fpu_owner_task, |
| 403 | * on this CPU. |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 404 | * |
Vincent Palatin | 644c154 | 2012-11-30 12:15:32 -0800 | [diff] [blame] | 405 | * This will disable any lazy FPU state restore of the current FPU state, |
| 406 | * but if the current thread owns the FPU, it will still be saved by. |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 407 | */ |
Vincent Palatin | 644c154 | 2012-11-30 12:15:32 -0800 | [diff] [blame] | 408 | static inline void __cpu_disable_lazy_restore(unsigned int cpu) |
| 409 | { |
| 410 | per_cpu(fpu_owner_task, cpu) = NULL; |
| 411 | } |
| 412 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 413 | static inline int fpu_lazy_restore(struct task_struct *new, unsigned int cpu) |
| 414 | { |
Alex Shi | c6ae41e | 2012-05-11 15:35:27 +0800 | [diff] [blame] | 415 | return new == this_cpu_read_stable(fpu_owner_task) && |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 416 | cpu == new->thread.fpu.last_cpu; |
| 417 | } |
| 418 | |
| 419 | static inline fpu_switch_t switch_fpu_prepare(struct task_struct *old, struct task_struct *new, int cpu) |
| 420 | { |
| 421 | fpu_switch_t fpu; |
| 422 | |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 423 | /* |
| 424 | * If the task has used the math, pre-load the FPU on xsave processors |
| 425 | * or if the past 5 consecutive context-switches used math. |
| 426 | */ |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 427 | fpu.preload = tsk_used_math(new) && (use_eager_fpu() || |
Vineet Gupta | c375f15 | 2013-11-12 15:08:46 -0800 | [diff] [blame] | 428 | new->thread.fpu_counter > 5); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 429 | if (__thread_has_fpu(old)) { |
| 430 | if (!__save_init_fpu(old)) |
| 431 | cpu = ~0; |
| 432 | old->thread.fpu.last_cpu = cpu; |
| 433 | old->thread.fpu.has_fpu = 0; /* But leave fpu_owner_task! */ |
| 434 | |
| 435 | /* Don't change CR0.TS if we just switch! */ |
| 436 | if (fpu.preload) { |
Vineet Gupta | c375f15 | 2013-11-12 15:08:46 -0800 | [diff] [blame] | 437 | new->thread.fpu_counter++; |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 438 | __thread_set_has_fpu(new); |
| 439 | prefetch(new->thread.fpu.state); |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 440 | } else if (!use_eager_fpu()) |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 441 | stts(); |
| 442 | } else { |
Vineet Gupta | c375f15 | 2013-11-12 15:08:46 -0800 | [diff] [blame] | 443 | old->thread.fpu_counter = 0; |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 444 | old->thread.fpu.last_cpu = ~0; |
| 445 | if (fpu.preload) { |
Vineet Gupta | c375f15 | 2013-11-12 15:08:46 -0800 | [diff] [blame] | 446 | new->thread.fpu_counter++; |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 447 | if (!use_eager_fpu() && fpu_lazy_restore(new, cpu)) |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 448 | fpu.preload = 0; |
| 449 | else |
| 450 | prefetch(new->thread.fpu.state); |
| 451 | __thread_fpu_begin(new); |
| 452 | } |
| 453 | } |
| 454 | return fpu; |
| 455 | } |
| 456 | |
| 457 | /* |
| 458 | * By the time this gets called, we've already cleared CR0.TS and |
| 459 | * given the process the FPU if we are going to preload the FPU |
| 460 | * state - all we need to do is to conditionally restore the register |
| 461 | * state itself. |
| 462 | */ |
| 463 | static inline void switch_fpu_finish(struct task_struct *new, fpu_switch_t fpu) |
| 464 | { |
| 465 | if (fpu.preload) { |
| 466 | if (unlikely(restore_fpu_checking(new))) |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 467 | drop_init_fpu(new); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 468 | } |
| 469 | } |
| 470 | |
| 471 | /* |
| 472 | * Signal frame handlers... |
| 473 | */ |
Suresh Siddha | 72a671c | 2012-07-24 16:05:29 -0700 | [diff] [blame] | 474 | extern int save_xstate_sig(void __user *buf, void __user *fx, int size); |
| 475 | extern int __restore_xstate_sig(void __user *buf, void __user *fx, int size); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 476 | |
Suresh Siddha | 72a671c | 2012-07-24 16:05:29 -0700 | [diff] [blame] | 477 | static inline int xstate_sigframe_size(void) |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 478 | { |
Suresh Siddha | 72a671c | 2012-07-24 16:05:29 -0700 | [diff] [blame] | 479 | return use_xsave() ? xstate_size + FP_XSTATE_MAGIC2_SIZE : xstate_size; |
| 480 | } |
| 481 | |
| 482 | static inline int restore_xstate_sig(void __user *buf, int ia32_frame) |
| 483 | { |
| 484 | void __user *buf_fx = buf; |
| 485 | int size = xstate_sigframe_size(); |
| 486 | |
| 487 | if (ia32_frame && use_fxsr()) { |
| 488 | buf_fx = buf + sizeof(struct i387_fsave_struct); |
| 489 | size += sizeof(struct i387_fsave_struct); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 490 | } |
Suresh Siddha | 72a671c | 2012-07-24 16:05:29 -0700 | [diff] [blame] | 491 | |
| 492 | return __restore_xstate_sig(buf, buf_fx, size); |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 493 | } |
| 494 | |
| 495 | /* |
Suresh Siddha | 377ffbc | 2012-08-24 14:12:58 -0700 | [diff] [blame] | 496 | * Need to be preemption-safe. |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 497 | * |
Suresh Siddha | 377ffbc | 2012-08-24 14:12:58 -0700 | [diff] [blame] | 498 | * NOTE! user_fpu_begin() must be used only immediately before restoring |
| 499 | * it. This function does not do any save/restore on their own. |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 500 | */ |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 501 | static inline void user_fpu_begin(void) |
| 502 | { |
| 503 | preempt_disable(); |
| 504 | if (!user_has_fpu()) |
| 505 | __thread_fpu_begin(current); |
| 506 | preempt_enable(); |
| 507 | } |
| 508 | |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 509 | static inline void __save_fpu(struct task_struct *tsk) |
| 510 | { |
| 511 | if (use_xsave()) |
| 512 | xsave_state(&tsk->thread.fpu.state->xsave, -1); |
| 513 | else |
| 514 | fpu_fxsave(&tsk->thread.fpu); |
| 515 | } |
| 516 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 517 | /* |
| 518 | * These disable preemption on their own and are safe |
| 519 | */ |
| 520 | static inline void save_init_fpu(struct task_struct *tsk) |
| 521 | { |
| 522 | WARN_ON_ONCE(!__thread_has_fpu(tsk)); |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 523 | |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 524 | if (use_eager_fpu()) { |
| 525 | __save_fpu(tsk); |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 526 | return; |
| 527 | } |
| 528 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 529 | preempt_disable(); |
| 530 | __save_init_fpu(tsk); |
| 531 | __thread_fpu_end(tsk); |
| 532 | preempt_enable(); |
| 533 | } |
| 534 | |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 535 | /* |
| 536 | * i387 state interaction |
| 537 | */ |
| 538 | static inline unsigned short get_fpu_cwd(struct task_struct *tsk) |
| 539 | { |
| 540 | if (cpu_has_fxsr) { |
| 541 | return tsk->thread.fpu.state->fxsave.cwd; |
| 542 | } else { |
| 543 | return (unsigned short)tsk->thread.fpu.state->fsave.cwd; |
| 544 | } |
| 545 | } |
| 546 | |
| 547 | static inline unsigned short get_fpu_swd(struct task_struct *tsk) |
| 548 | { |
| 549 | if (cpu_has_fxsr) { |
| 550 | return tsk->thread.fpu.state->fxsave.swd; |
| 551 | } else { |
| 552 | return (unsigned short)tsk->thread.fpu.state->fsave.swd; |
| 553 | } |
| 554 | } |
| 555 | |
| 556 | static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk) |
| 557 | { |
| 558 | if (cpu_has_xmm) { |
| 559 | return tsk->thread.fpu.state->fxsave.mxcsr; |
| 560 | } else { |
| 561 | return MXCSR_DEFAULT; |
| 562 | } |
| 563 | } |
| 564 | |
| 565 | static bool fpu_allocated(struct fpu *fpu) |
| 566 | { |
| 567 | return fpu->state != NULL; |
| 568 | } |
| 569 | |
| 570 | static inline int fpu_alloc(struct fpu *fpu) |
| 571 | { |
| 572 | if (fpu_allocated(fpu)) |
| 573 | return 0; |
| 574 | fpu->state = kmem_cache_alloc(task_xstate_cachep, GFP_KERNEL); |
| 575 | if (!fpu->state) |
| 576 | return -ENOMEM; |
| 577 | WARN_ON((unsigned long)fpu->state & 15); |
| 578 | return 0; |
| 579 | } |
| 580 | |
| 581 | static inline void fpu_free(struct fpu *fpu) |
| 582 | { |
| 583 | if (fpu->state) { |
| 584 | kmem_cache_free(task_xstate_cachep, fpu->state); |
| 585 | fpu->state = NULL; |
| 586 | } |
| 587 | } |
| 588 | |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 589 | static inline void fpu_copy(struct task_struct *dst, struct task_struct *src) |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 590 | { |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 591 | if (use_eager_fpu()) { |
| 592 | memset(&dst->thread.fpu.state->xsave, 0, xstate_size); |
| 593 | __save_fpu(dst); |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 594 | } else { |
| 595 | struct fpu *dfpu = &dst->thread.fpu; |
| 596 | struct fpu *sfpu = &src->thread.fpu; |
| 597 | |
| 598 | unlazy_fpu(src); |
| 599 | memcpy(dfpu->state, sfpu->state, xstate_size); |
| 600 | } |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 601 | } |
| 602 | |
Suresh Siddha | 72a671c | 2012-07-24 16:05:29 -0700 | [diff] [blame] | 603 | static inline unsigned long |
| 604 | alloc_mathframe(unsigned long sp, int ia32_frame, unsigned long *buf_fx, |
| 605 | unsigned long *size) |
| 606 | { |
| 607 | unsigned long frame_size = xstate_sigframe_size(); |
| 608 | |
| 609 | *buf_fx = sp = round_down(sp - frame_size, 64); |
| 610 | if (ia32_frame && use_fxsr()) { |
| 611 | frame_size += sizeof(struct i387_fsave_struct); |
| 612 | sp -= sizeof(struct i387_fsave_struct); |
| 613 | } |
| 614 | |
| 615 | *size = frame_size; |
| 616 | return sp; |
| 617 | } |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 618 | |
| 619 | #endif |