blob: 255645f60ca2b4be333de67a10c6780f364e6fb2 [file] [log] [blame]
Linus Torvalds1361b832012-02-21 13:19:22 -08001/*
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
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020010#ifndef _ASM_X86_FPU_INTERNAL_H
11#define _ASM_X86_FPU_INTERNAL_H
Linus Torvalds1361b832012-02-21 13:19:22 -080012
Suresh Siddha050902c2012-07-24 16:05:27 -070013#include <linux/compat.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020014#include <linux/sched.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080015#include <linux/slab.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020016
Linus Torvalds1361b832012-02-21 13:19:22 -080017#include <asm/user.h>
Ingo Molnardf6b35f2015-04-24 02:46:00 +020018#include <asm/fpu/api.h>
Ingo Molnar669ebab2015-04-28 08:41:33 +020019#include <asm/fpu/xstate.h>
Borislav Petkovcd4d09e2016-01-26 22:12:04 +010020#include <asm/cpufeature.h>
Dave Hansend1898b72016-06-01 10:42:20 -070021#include <asm/trace/fpu.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080022
Ingo Molnar6ffc1522015-04-29 20:24:14 +020023/*
24 * High level FPU state handling functions:
25 */
Ingo Molnar0c306bc2015-04-30 12:59:30 +020026extern void fpu__activate_curr(struct fpu *fpu);
Ingo Molnar056028122015-05-27 12:22:29 +020027extern void fpu__activate_fpstate_read(struct fpu *fpu);
Ingo Molnar6a81d7e2015-05-27 12:22:29 +020028extern void fpu__activate_fpstate_write(struct fpu *fpu);
Dave Hansenb8b9b6b2016-02-12 13:02:35 -080029extern void fpu__current_fpstate_write_begin(void);
30extern void fpu__current_fpstate_write_end(void);
Ingo Molnar6ffc1522015-04-29 20:24:14 +020031extern void fpu__save(struct fpu *fpu);
Ingo Molnare1884d62015-05-04 11:49:58 +020032extern void fpu__restore(struct fpu *fpu);
Ingo Molnar82c0e452015-04-29 21:09:18 +020033extern int fpu__restore_sig(void __user *buf, int ia32_frame);
Ingo Molnar6ffc1522015-04-29 20:24:14 +020034extern void fpu__drop(struct fpu *fpu);
35extern int fpu__copy(struct fpu *dst_fpu, struct fpu *src_fpu);
Ingo Molnar04c8e012015-04-29 20:35:33 +020036extern void fpu__clear(struct fpu *fpu);
Ingo Molnarb1b64dc2015-05-05 15:56:33 +020037extern int fpu__exception_code(struct fpu *fpu, int trap_nr);
38extern int dump_fpu(struct pt_regs *ptregs, struct user_i387_struct *fpstate);
Ingo Molnar6ffc1522015-04-29 20:24:14 +020039
Ingo Molnarb1b64dc2015-05-05 15:56:33 +020040/*
41 * Boot time FPU initialization functions:
42 */
43extern void fpu__init_cpu(void);
44extern void fpu__init_system_xstate(void);
45extern void fpu__init_cpu_xstate(void);
46extern void fpu__init_system(struct cpuinfo_x86 *c);
Ingo Molnar952f07e2015-04-26 16:56:05 +020047extern void fpu__init_check_bugs(void);
48extern void fpu__resume_cpu(void);
yu-cheng yua5fe93a2016-01-06 14:24:53 -080049extern u64 fpu__get_supported_xfeatures_mask(void);
Ingo Molnar952f07e2015-04-26 16:56:05 +020050
Ingo Molnare97131a2015-05-05 11:34:49 +020051/*
52 * Debugging facility:
53 */
54#ifdef CONFIG_X86_DEBUG_FPU
55# define WARN_ON_FPU(x) WARN_ON_ONCE(x)
56#else
Ingo Molnar83242c52015-05-27 12:22:29 +020057# define WARN_ON_FPU(x) ({ (void)(x); 0; })
Ingo Molnare97131a2015-05-05 11:34:49 +020058#endif
59
Rik van Riel1c927ee2015-02-06 15:02:01 -050060/*
Ingo Molnarb1b64dc2015-05-05 15:56:33 +020061 * FPU related CPU feature flag helper routines:
Rik van Riel1c927ee2015-02-06 15:02:01 -050062 */
Linus Torvalds1361b832012-02-21 13:19:22 -080063static __always_inline __pure bool use_xsaveopt(void)
64{
Borislav Petkovbc696ca2016-01-26 22:12:05 +010065 return static_cpu_has(X86_FEATURE_XSAVEOPT);
Linus Torvalds1361b832012-02-21 13:19:22 -080066}
67
68static __always_inline __pure bool use_xsave(void)
69{
Borislav Petkovbc696ca2016-01-26 22:12:05 +010070 return static_cpu_has(X86_FEATURE_XSAVE);
Linus Torvalds1361b832012-02-21 13:19:22 -080071}
72
73static __always_inline __pure bool use_fxsr(void)
74{
Borislav Petkovbc696ca2016-01-26 22:12:05 +010075 return static_cpu_has(X86_FEATURE_FXSR);
Linus Torvalds1361b832012-02-21 13:19:22 -080076}
77
Ingo Molnarb1b64dc2015-05-05 15:56:33 +020078/*
79 * fpstate handling functions:
80 */
81
82extern union fpregs_state init_fpstate;
83
84extern void fpstate_init(union fpregs_state *state);
85#ifdef CONFIG_MATH_EMULATION
86extern void fpstate_init_soft(struct swregs_state *soft);
87#else
88static inline void fpstate_init_soft(struct swregs_state *soft) {}
89#endif
Yu-cheng Yua5828ed2017-01-24 10:25:46 -080090
91static inline void fpstate_init_xstate(struct xregs_state *xsave)
92{
93 /*
94 * XRSTORS requires these bits set in xcomp_bv, or it will
95 * trigger #GP:
96 */
97 xsave->header.xcomp_bv = XCOMP_BV_COMPACTED_FORMAT | xfeatures_mask;
98}
99
Ingo Molnarb1b64dc2015-05-05 15:56:33 +0200100static inline void fpstate_init_fxstate(struct fxregs_state *fx)
101{
102 fx->cwd = 0x37f;
103 fx->mxcsr = MXCSR_DEFAULT;
104}
Ingo Molnar36e49e7f2015-04-28 11:25:02 +0200105extern void fpstate_sanitize_xstate(struct fpu *fpu);
Linus Torvalds1361b832012-02-21 13:19:22 -0800106
H. Peter Anvin49b8c692012-09-21 17:18:44 -0700107#define user_insn(insn, output, input...) \
108({ \
109 int err; \
110 asm volatile(ASM_STAC "\n" \
111 "1:" #insn "\n\t" \
112 "2: " ASM_CLAC "\n" \
113 ".section .fixup,\"ax\"\n" \
114 "3: movl $-1,%[err]\n" \
115 " jmp 2b\n" \
116 ".previous\n" \
117 _ASM_EXTABLE(1b, 3b) \
118 : [err] "=r" (err), output \
119 : "0"(0), input); \
120 err; \
121})
Linus Torvalds1361b832012-02-21 13:19:22 -0800122
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700123#define check_insn(insn, output, input...) \
124({ \
125 int err; \
126 asm volatile("1:" #insn "\n\t" \
127 "2:\n" \
128 ".section .fixup,\"ax\"\n" \
129 "3: movl $-1,%[err]\n" \
130 " jmp 2b\n" \
131 ".previous\n" \
132 _ASM_EXTABLE(1b, 3b) \
133 : [err] "=r" (err), output \
134 : "0"(0), input); \
135 err; \
136})
Linus Torvalds1361b832012-02-21 13:19:22 -0800137
Ingo Molnarc47ada32015-04-30 17:15:32 +0200138static inline int copy_fregs_to_user(struct fregs_state __user *fx)
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700139{
H. Peter Anvin49b8c692012-09-21 17:18:44 -0700140 return user_insn(fnsave %[fx]; fwait, [fx] "=m" (*fx), "m" (*fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800141}
142
Ingo Molnarc47ada32015-04-30 17:15:32 +0200143static inline int copy_fxregs_to_user(struct fxregs_state __user *fx)
Linus Torvalds1361b832012-02-21 13:19:22 -0800144{
Masahiro Yamada97f26452016-08-03 13:45:50 -0700145 if (IS_ENABLED(CONFIG_X86_32))
H. Peter Anvin49b8c692012-09-21 17:18:44 -0700146 return user_insn(fxsave %[fx], [fx] "=m" (*fx), "m" (*fx));
Masahiro Yamada97f26452016-08-03 13:45:50 -0700147 else if (IS_ENABLED(CONFIG_AS_FXSAVEQ))
H. Peter Anvin49b8c692012-09-21 17:18:44 -0700148 return user_insn(fxsaveq %[fx], [fx] "=m" (*fx), "m" (*fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800149
Ingo Molnarc6813142015-04-30 11:34:09 +0200150 /* See comment in copy_fxregs_to_kernel() below. */
H. Peter Anvin49b8c692012-09-21 17:18:44 -0700151 return user_insn(rex64/fxsave (%[fx]), "=m" (*fx), [fx] "R" (fx));
Linus Torvalds1361b832012-02-21 13:19:22 -0800152}
153
Ingo Molnar9ccc27a2015-05-25 11:27:46 +0200154static inline void copy_kernel_to_fxregs(struct fxregs_state *fx)
Linus Torvalds1361b832012-02-21 13:19:22 -0800155{
Ingo Molnar43b287b2015-05-25 10:59:31 +0200156 int err;
Linus Torvalds1361b832012-02-21 13:19:22 -0800157
Masahiro Yamada97f26452016-08-03 13:45:50 -0700158 if (IS_ENABLED(CONFIG_X86_32)) {
Ingo Molnar43b287b2015-05-25 10:59:31 +0200159 err = check_insn(fxrstor %[fx], "=m" (*fx), [fx] "m" (*fx));
160 } else {
Masahiro Yamada97f26452016-08-03 13:45:50 -0700161 if (IS_ENABLED(CONFIG_AS_FXSAVEQ)) {
Ingo Molnar43b287b2015-05-25 10:59:31 +0200162 err = check_insn(fxrstorq %[fx], "=m" (*fx), [fx] "m" (*fx));
163 } else {
164 /* See comment in copy_fxregs_to_kernel() below. */
165 err = check_insn(rex64/fxrstor (%[fx]), "=m" (*fx), [fx] "R" (fx), "m" (*fx));
166 }
167 }
168 /* Copying from a kernel buffer to FPU registers should never fail: */
169 WARN_ON_FPU(err);
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700170}
171
Ingo Molnarc47ada32015-04-30 17:15:32 +0200172static inline int copy_user_to_fxregs(struct fxregs_state __user *fx)
H. Peter Anvine139e952012-09-25 15:42:18 -0700173{
Masahiro Yamada97f26452016-08-03 13:45:50 -0700174 if (IS_ENABLED(CONFIG_X86_32))
H. Peter Anvine139e952012-09-25 15:42:18 -0700175 return user_insn(fxrstor %[fx], "=m" (*fx), [fx] "m" (*fx));
Masahiro Yamada97f26452016-08-03 13:45:50 -0700176 else if (IS_ENABLED(CONFIG_AS_FXSAVEQ))
H. Peter Anvine139e952012-09-25 15:42:18 -0700177 return user_insn(fxrstorq %[fx], "=m" (*fx), [fx] "m" (*fx));
178
Ingo Molnarc6813142015-04-30 11:34:09 +0200179 /* See comment in copy_fxregs_to_kernel() below. */
H. Peter Anvine139e952012-09-25 15:42:18 -0700180 return user_insn(rex64/fxrstor (%[fx]), "=m" (*fx), [fx] "R" (fx),
181 "m" (*fx));
182}
183
Ingo Molnar9ccc27a2015-05-25 11:27:46 +0200184static inline void copy_kernel_to_fregs(struct fregs_state *fx)
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700185{
Ingo Molnar43b287b2015-05-25 10:59:31 +0200186 int err = check_insn(frstor %[fx], "=m" (*fx), [fx] "m" (*fx));
187
188 WARN_ON_FPU(err);
Linus Torvalds1361b832012-02-21 13:19:22 -0800189}
190
Ingo Molnarc47ada32015-04-30 17:15:32 +0200191static inline int copy_user_to_fregs(struct fregs_state __user *fx)
H. Peter Anvine139e952012-09-25 15:42:18 -0700192{
193 return user_insn(frstor %[fx], "=m" (*fx), [fx] "m" (*fx));
194}
195
Ingo Molnarc6813142015-04-30 11:34:09 +0200196static inline void copy_fxregs_to_kernel(struct fpu *fpu)
Linus Torvalds1361b832012-02-21 13:19:22 -0800197{
Masahiro Yamada97f26452016-08-03 13:45:50 -0700198 if (IS_ENABLED(CONFIG_X86_32))
Ingo Molnar7366ed72015-04-27 04:19:39 +0200199 asm volatile( "fxsave %[fx]" : [fx] "=m" (fpu->state.fxsave));
Masahiro Yamada97f26452016-08-03 13:45:50 -0700200 else if (IS_ENABLED(CONFIG_AS_FXSAVEQ))
Ingo Molnar7366ed72015-04-27 04:19:39 +0200201 asm volatile("fxsaveq %[fx]" : [fx] "=m" (fpu->state.fxsave));
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700202 else {
203 /* Using "rex64; fxsave %0" is broken because, if the memory
204 * operand uses any extended registers for addressing, a second
205 * REX prefix will be generated (to the assembler, rex64
206 * followed by semicolon is a separate instruction), and hence
207 * the 64-bitness is lost.
208 *
209 * Using "fxsaveq %0" would be the ideal choice, but is only
210 * supported starting with gas 2.16.
211 *
212 * Using, as a workaround, the properly prefixed form below
213 * isn't accepted by any binutils version so far released,
214 * complaining that the same type of prefix is used twice if
215 * an extended register is needed for addressing (fix submitted
216 * to mainline 2005-11-21).
217 *
Ingo Molnar7366ed72015-04-27 04:19:39 +0200218 * asm volatile("rex64/fxsave %0" : "=m" (fpu->state.fxsave));
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700219 *
220 * This, however, we can work around by forcing the compiler to
221 * select an addressing mode that doesn't require extended
222 * registers.
223 */
224 asm volatile( "rex64/fxsave (%[fx])"
Ingo Molnar7366ed72015-04-27 04:19:39 +0200225 : "=m" (fpu->state.fxsave)
226 : [fx] "R" (&fpu->state.fxsave));
Suresh Siddha0ca5bd02012-07-24 16:05:28 -0700227 }
Linus Torvalds1361b832012-02-21 13:19:22 -0800228}
229
Ingo Molnarfd169b02015-05-25 09:55:39 +0200230/* These macros all use (%edi)/(%rdi) as the single memory argument. */
231#define XSAVE ".byte " REX_PREFIX "0x0f,0xae,0x27"
232#define XSAVEOPT ".byte " REX_PREFIX "0x0f,0xae,0x37"
233#define XSAVES ".byte " REX_PREFIX "0x0f,0xc7,0x2f"
234#define XRSTOR ".byte " REX_PREFIX "0x0f,0xae,0x2f"
235#define XRSTORS ".byte " REX_PREFIX "0x0f,0xc7,0x1f"
236
Borislav Petkovb74a0cf2015-11-19 12:25:25 +0100237#define XSTATE_OP(op, st, lmask, hmask, err) \
238 asm volatile("1:" op "\n\t" \
239 "xor %[err], %[err]\n" \
240 "2:\n\t" \
241 ".pushsection .fixup,\"ax\"\n\t" \
242 "3: movl $-2,%[err]\n\t" \
243 "jmp 2b\n\t" \
244 ".popsection\n\t" \
245 _ASM_EXTABLE(1b, 3b) \
246 : [err] "=r" (err) \
247 : "D" (st), "m" (*st), "a" (lmask), "d" (hmask) \
248 : "memory")
249
Borislav Petkovb7106fa2015-11-19 12:25:26 +0100250/*
251 * If XSAVES is enabled, it replaces XSAVEOPT because it supports a compact
252 * format and supervisor states in addition to modified optimization in
253 * XSAVEOPT.
254 *
255 * Otherwise, if XSAVEOPT is enabled, XSAVEOPT replaces XSAVE because XSAVEOPT
256 * supports modified optimization which is not supported by XSAVE.
257 *
258 * We use XSAVE as a fallback.
259 *
260 * The 661 label is defined in the ALTERNATIVE* macros as the address of the
261 * original instruction which gets replaced. We need to use it here as the
262 * address of the instruction where we might get an exception at.
263 */
264#define XSTATE_XSAVE(st, lmask, hmask, err) \
265 asm volatile(ALTERNATIVE_2(XSAVE, \
266 XSAVEOPT, X86_FEATURE_XSAVEOPT, \
267 XSAVES, X86_FEATURE_XSAVES) \
268 "\n" \
269 "xor %[err], %[err]\n" \
270 "3:\n" \
271 ".pushsection .fixup,\"ax\"\n" \
272 "4: movl $-2, %[err]\n" \
273 "jmp 3b\n" \
274 ".popsection\n" \
275 _ASM_EXTABLE(661b, 4b) \
276 : [err] "=r" (err) \
277 : "D" (st), "m" (*st), "a" (lmask), "d" (hmask) \
278 : "memory")
279
280/*
281 * Use XRSTORS to restore context if it is enabled. XRSTORS supports compact
282 * XSAVE area format.
283 */
284#define XSTATE_XRESTORE(st, lmask, hmask, err) \
285 asm volatile(ALTERNATIVE(XRSTOR, \
286 XRSTORS, X86_FEATURE_XSAVES) \
287 "\n" \
288 "xor %[err], %[err]\n" \
289 "3:\n" \
290 ".pushsection .fixup,\"ax\"\n" \
291 "4: movl $-2, %[err]\n" \
292 "jmp 3b\n" \
293 ".popsection\n" \
294 _ASM_EXTABLE(661b, 4b) \
295 : [err] "=r" (err) \
296 : "D" (st), "m" (*st), "a" (lmask), "d" (hmask) \
297 : "memory")
Borislav Petkovb74a0cf2015-11-19 12:25:25 +0100298
Ingo Molnarfd169b02015-05-25 09:55:39 +0200299/*
300 * This function is called only during boot time when x86 caps are not set
301 * up and alternative can not be used yet.
302 */
Ingo Molnar8c05f052015-05-24 09:23:25 +0200303static inline void copy_xregs_to_kernel_booting(struct xregs_state *xstate)
Ingo Molnarfd169b02015-05-25 09:55:39 +0200304{
305 u64 mask = -1;
306 u32 lmask = mask;
307 u32 hmask = mask >> 32;
Borislav Petkovb74a0cf2015-11-19 12:25:25 +0100308 int err;
Ingo Molnarfd169b02015-05-25 09:55:39 +0200309
310 WARN_ON(system_state != SYSTEM_BOOTING);
311
Borislav Petkovbc696ca2016-01-26 22:12:05 +0100312 if (static_cpu_has(X86_FEATURE_XSAVES))
Borislav Petkovb74a0cf2015-11-19 12:25:25 +0100313 XSTATE_OP(XSAVES, xstate, lmask, hmask, err);
Ingo Molnarfd169b02015-05-25 09:55:39 +0200314 else
Borislav Petkovb74a0cf2015-11-19 12:25:25 +0100315 XSTATE_OP(XSAVE, xstate, lmask, hmask, err);
Ingo Molnar8c05f052015-05-24 09:23:25 +0200316
317 /* We should never fault when copying to a kernel buffer: */
318 WARN_ON_FPU(err);
Ingo Molnarfd169b02015-05-25 09:55:39 +0200319}
320
321/*
322 * This function is called only during boot time when x86 caps are not set
323 * up and alternative can not be used yet.
324 */
Ingo Molnard65fcd62015-05-27 14:04:44 +0200325static inline void copy_kernel_to_xregs_booting(struct xregs_state *xstate)
Ingo Molnarfd169b02015-05-25 09:55:39 +0200326{
Ingo Molnard65fcd62015-05-27 14:04:44 +0200327 u64 mask = -1;
Ingo Molnarfd169b02015-05-25 09:55:39 +0200328 u32 lmask = mask;
329 u32 hmask = mask >> 32;
Borislav Petkovb74a0cf2015-11-19 12:25:25 +0100330 int err;
Ingo Molnarfd169b02015-05-25 09:55:39 +0200331
332 WARN_ON(system_state != SYSTEM_BOOTING);
333
Borislav Petkovbc696ca2016-01-26 22:12:05 +0100334 if (static_cpu_has(X86_FEATURE_XSAVES))
Borislav Petkovb74a0cf2015-11-19 12:25:25 +0100335 XSTATE_OP(XRSTORS, xstate, lmask, hmask, err);
Ingo Molnarfd169b02015-05-25 09:55:39 +0200336 else
Borislav Petkovb74a0cf2015-11-19 12:25:25 +0100337 XSTATE_OP(XRSTOR, xstate, lmask, hmask, err);
Ingo Molnar8c05f052015-05-24 09:23:25 +0200338
339 /* We should never fault when copying from a kernel buffer: */
340 WARN_ON_FPU(err);
Ingo Molnarfd169b02015-05-25 09:55:39 +0200341}
342
343/*
344 * Save processor xstate to xsave area.
345 */
Ingo Molnar8c05f052015-05-24 09:23:25 +0200346static inline void copy_xregs_to_kernel(struct xregs_state *xstate)
Ingo Molnarfd169b02015-05-25 09:55:39 +0200347{
348 u64 mask = -1;
349 u32 lmask = mask;
350 u32 hmask = mask >> 32;
Borislav Petkovb7106fa2015-11-19 12:25:26 +0100351 int err;
Ingo Molnarfd169b02015-05-25 09:55:39 +0200352
353 WARN_ON(!alternatives_patched);
354
Borislav Petkovb7106fa2015-11-19 12:25:26 +0100355 XSTATE_XSAVE(xstate, lmask, hmask, err);
Ingo Molnarfd169b02015-05-25 09:55:39 +0200356
Ingo Molnar8c05f052015-05-24 09:23:25 +0200357 /* We should never fault when copying to a kernel buffer: */
358 WARN_ON_FPU(err);
Ingo Molnarfd169b02015-05-25 09:55:39 +0200359}
360
361/*
362 * Restore processor xstate from xsave area.
363 */
Ingo Molnar8c05f052015-05-24 09:23:25 +0200364static inline void copy_kernel_to_xregs(struct xregs_state *xstate, u64 mask)
Ingo Molnarfd169b02015-05-25 09:55:39 +0200365{
Ingo Molnarfd169b02015-05-25 09:55:39 +0200366 u32 lmask = mask;
367 u32 hmask = mask >> 32;
Borislav Petkovb7106fa2015-11-19 12:25:26 +0100368 int err;
Ingo Molnarfd169b02015-05-25 09:55:39 +0200369
Borislav Petkovb7106fa2015-11-19 12:25:26 +0100370 XSTATE_XRESTORE(xstate, lmask, hmask, err);
Ingo Molnarfd169b02015-05-25 09:55:39 +0200371
Ingo Molnar8c05f052015-05-24 09:23:25 +0200372 /* We should never fault when copying from a kernel buffer: */
373 WARN_ON_FPU(err);
Ingo Molnarfd169b02015-05-25 09:55:39 +0200374}
375
376/*
377 * Save xstate to user space xsave area.
378 *
379 * We don't use modified optimization because xrstor/xrstors might track
380 * a different application.
381 *
382 * We don't use compacted format xsave area for
383 * backward compatibility for old applications which don't understand
384 * compacted format of xsave area.
385 */
386static inline int copy_xregs_to_user(struct xregs_state __user *buf)
387{
388 int err;
389
390 /*
391 * Clear the xsave header first, so that reserved fields are
392 * initialized to zero.
393 */
394 err = __clear_user(&buf->header, sizeof(buf->header));
395 if (unlikely(err))
396 return -EFAULT;
397
Borislav Petkovb74a0cf2015-11-19 12:25:25 +0100398 stac();
399 XSTATE_OP(XSAVE, buf, -1, -1, err);
400 clac();
401
Ingo Molnarfd169b02015-05-25 09:55:39 +0200402 return err;
403}
404
405/*
406 * Restore xstate from user space xsave area.
407 */
408static inline int copy_user_to_xregs(struct xregs_state __user *buf, u64 mask)
409{
Ingo Molnarfd169b02015-05-25 09:55:39 +0200410 struct xregs_state *xstate = ((__force struct xregs_state *)buf);
411 u32 lmask = mask;
412 u32 hmask = mask >> 32;
Borislav Petkovb74a0cf2015-11-19 12:25:25 +0100413 int err;
Ingo Molnarfd169b02015-05-25 09:55:39 +0200414
Borislav Petkovb74a0cf2015-11-19 12:25:25 +0100415 stac();
416 XSTATE_OP(XRSTOR, xstate, lmask, hmask, err);
417 clac();
418
Ingo Molnarfd169b02015-05-25 09:55:39 +0200419 return err;
420}
421
Linus Torvalds1361b832012-02-21 13:19:22 -0800422/*
423 * These must be called with preempt disabled. Returns
Ingo Molnar4f836342015-04-27 02:53:16 +0200424 * 'true' if the FPU state is still intact and we can
425 * keep registers active.
426 *
427 * The legacy FNSAVE instruction cleared all FPU state
428 * unconditionally, so registers are essentially destroyed.
429 * Modern FPU state can be kept in registers, if there are
Ingo Molnar1bc6b052015-04-27 03:32:18 +0200430 * no pending FP exceptions.
Linus Torvalds1361b832012-02-21 13:19:22 -0800431 */
Ingo Molnar4f836342015-04-27 02:53:16 +0200432static inline int copy_fpregs_to_fpstate(struct fpu *fpu)
Linus Torvalds1361b832012-02-21 13:19:22 -0800433{
Ingo Molnar1bc6b052015-04-27 03:32:18 +0200434 if (likely(use_xsave())) {
Ingo Molnarc6813142015-04-30 11:34:09 +0200435 copy_xregs_to_kernel(&fpu->state.xsave);
Ingo Molnar1bc6b052015-04-27 03:32:18 +0200436 return 1;
437 }
Linus Torvalds1361b832012-02-21 13:19:22 -0800438
Ingo Molnar1bc6b052015-04-27 03:32:18 +0200439 if (likely(use_fxsr())) {
Ingo Molnarc6813142015-04-30 11:34:09 +0200440 copy_fxregs_to_kernel(fpu);
Ingo Molnar1bc6b052015-04-27 03:32:18 +0200441 return 1;
Linus Torvalds1361b832012-02-21 13:19:22 -0800442 }
443
444 /*
Ingo Molnar1bc6b052015-04-27 03:32:18 +0200445 * Legacy FPU register saving, FNSAVE always clears FPU registers,
446 * so we have to mark them inactive:
Linus Torvalds1361b832012-02-21 13:19:22 -0800447 */
Ingo Molnar87dafd42015-05-25 10:57:06 +0200448 asm volatile("fnsave %[fp]; fwait" : [fp] "=m" (fpu->state.fsave));
Ingo Molnar4f836342015-04-27 02:53:16 +0200449
Ingo Molnar4f836342015-04-27 02:53:16 +0200450 return 0;
Linus Torvalds1361b832012-02-21 13:19:22 -0800451}
452
Ingo Molnar003e2e82015-05-25 11:59:35 +0200453static inline void __copy_kernel_to_fpregs(union fpregs_state *fpstate)
Linus Torvalds1361b832012-02-21 13:19:22 -0800454{
Ingo Molnar8c05f052015-05-24 09:23:25 +0200455 if (use_xsave()) {
Ingo Molnar003e2e82015-05-25 11:59:35 +0200456 copy_kernel_to_xregs(&fpstate->xsave, -1);
Ingo Molnar8c05f052015-05-24 09:23:25 +0200457 } else {
458 if (use_fxsr())
Ingo Molnar003e2e82015-05-25 11:59:35 +0200459 copy_kernel_to_fxregs(&fpstate->fxsave);
Ingo Molnar8c05f052015-05-24 09:23:25 +0200460 else
Ingo Molnar003e2e82015-05-25 11:59:35 +0200461 copy_kernel_to_fregs(&fpstate->fsave);
Ingo Molnar8c05f052015-05-24 09:23:25 +0200462 }
Linus Torvalds1361b832012-02-21 13:19:22 -0800463}
464
Ingo Molnar003e2e82015-05-25 11:59:35 +0200465static inline void copy_kernel_to_fpregs(union fpregs_state *fpstate)
Linus Torvalds1361b832012-02-21 13:19:22 -0800466{
Borislav Petkov6ca7a8a2014-12-21 15:02:23 +0100467 /*
468 * AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception is
469 * pending. Clear the x87 state here by setting it to fixed values.
470 * "m" is a random variable that should be in L1.
471 */
Borislav Petkovbc696ca2016-01-26 22:12:05 +0100472 if (unlikely(static_cpu_has_bug(X86_BUG_FXSAVE_LEAK))) {
Linus Torvalds26bef132014-01-11 19:15:52 -0800473 asm volatile(
474 "fnclex\n\t"
475 "emms\n\t"
476 "fildl %P[addr]" /* set F?P to defined value */
Ingo Molnar003e2e82015-05-25 11:59:35 +0200477 : : [addr] "m" (fpstate));
Linus Torvalds26bef132014-01-11 19:15:52 -0800478 }
Linus Torvalds1361b832012-02-21 13:19:22 -0800479
Ingo Molnar003e2e82015-05-25 11:59:35 +0200480 __copy_kernel_to_fpregs(fpstate);
Linus Torvalds1361b832012-02-21 13:19:22 -0800481}
482
Ingo Molnar87dafd42015-05-25 10:57:06 +0200483extern int copy_fpstate_to_sigframe(void __user *buf, void __user *fp, int size);
Ingo Molnarb1b64dc2015-05-05 15:56:33 +0200484
485/*
486 * FPU context switch related helper methods:
487 */
488
489DECLARE_PER_CPU(struct fpu *, fpu_fpregs_owner_ctx);
490
491/*
Rik van Riel25d83b52016-10-04 20:34:36 -0400492 * The in-register FPU state for an FPU context on a CPU is assumed to be
493 * valid if the fpu->last_cpu matches the CPU, and the fpu_fpregs_owner_ctx
494 * matches the FPU.
495 *
496 * If the FPU register state is valid, the kernel can skip restoring the
497 * FPU state from memory.
498 *
499 * Any code that clobbers the FPU registers or updates the in-memory
500 * FPU state for a task MUST let the rest of the kernel know that the
Rik van Riel317b6222016-10-14 08:15:30 -0400501 * FPU registers are no longer valid for this task.
Rik van Riel25d83b52016-10-04 20:34:36 -0400502 *
Rik van Riel317b6222016-10-14 08:15:30 -0400503 * Either one of these invalidation functions is enough. Invalidate
504 * a resource you control: CPU if using the CPU for something else
505 * (with preemption disabled), FPU for the current task, or a task that
506 * is prevented from running by the current task.
Ingo Molnarb1b64dc2015-05-05 15:56:33 +0200507 */
Rik van Riel317b6222016-10-14 08:15:30 -0400508static inline void __cpu_invalidate_fpregs_state(void)
Ingo Molnarb1b64dc2015-05-05 15:56:33 +0200509{
Rik van Riel317b6222016-10-14 08:15:30 -0400510 __this_cpu_write(fpu_fpregs_owner_ctx, NULL);
Ingo Molnarb1b64dc2015-05-05 15:56:33 +0200511}
512
Rik van Riel25d83b52016-10-04 20:34:36 -0400513static inline void __fpu_invalidate_fpregs_state(struct fpu *fpu)
514{
515 fpu->last_cpu = -1;
516}
517
518static inline int fpregs_state_valid(struct fpu *fpu, unsigned int cpu)
Ingo Molnarb1b64dc2015-05-05 15:56:33 +0200519{
520 return fpu == this_cpu_read_stable(fpu_fpregs_owner_ctx) && cpu == fpu->last_cpu;
521}
522
Rik van Riel66f314e2016-10-04 20:34:37 -0400523/*
524 * These generally need preemption protection to work,
525 * do try to avoid using these on their own:
526 */
527static inline void fpregs_deactivate(struct fpu *fpu)
Linus Torvalds1361b832012-02-21 13:19:22 -0800528{
Ingo Molnare97131a2015-05-05 11:34:49 +0200529 WARN_ON_FPU(!fpu->fpregs_active);
530
Ingo Molnard5cea9b2015-04-24 14:19:26 +0200531 fpu->fpregs_active = 0;
Ingo Molnar36b544d2015-04-23 12:18:28 +0200532 this_cpu_write(fpu_fpregs_owner_ctx, NULL);
Dave Hansend1898b72016-06-01 10:42:20 -0700533 trace_x86_fpu_regs_deactivated(fpu);
Linus Torvalds1361b832012-02-21 13:19:22 -0800534}
535
Rik van Riel66f314e2016-10-04 20:34:37 -0400536static inline void fpregs_activate(struct fpu *fpu)
Linus Torvalds1361b832012-02-21 13:19:22 -0800537{
Ingo Molnare97131a2015-05-05 11:34:49 +0200538 WARN_ON_FPU(fpu->fpregs_active);
539
Ingo Molnard5cea9b2015-04-24 14:19:26 +0200540 fpu->fpregs_active = 1;
Ingo Molnarc0311f62015-04-23 12:24:59 +0200541 this_cpu_write(fpu_fpregs_owner_ctx, fpu);
Dave Hansend1898b72016-06-01 10:42:20 -0700542 trace_x86_fpu_regs_activated(fpu);
Linus Torvalds1361b832012-02-21 13:19:22 -0800543}
544
545/*
Ingo Molnar952f07e2015-04-26 16:56:05 +0200546 * The question "does this thread have fpu access?"
547 * is slightly racy, since preemption could come in
548 * and revoke it immediately after the test.
549 *
550 * However, even in that very unlikely scenario,
551 * we can just assume we have FPU access - typically
552 * to save the FP state - we'll just take a #NM
553 * fault and get the FPU access back.
554 */
Ingo Molnar3c6dffa2015-04-28 12:28:08 +0200555static inline int fpregs_active(void)
Ingo Molnar952f07e2015-04-26 16:56:05 +0200556{
557 return current->thread.fpu.fpregs_active;
558}
559
560/*
Linus Torvalds1361b832012-02-21 13:19:22 -0800561 * FPU state switching for scheduling.
562 *
563 * This is a two-stage process:
564 *
Rik van Rielc474e502016-10-14 08:15:31 -0400565 * - switch_fpu_prepare() saves the old state.
566 * This is done within the context of the old process.
Linus Torvalds1361b832012-02-21 13:19:22 -0800567 *
568 * - switch_fpu_finish() restores the new state as
569 * necessary.
570 */
Rik van Rielc474e502016-10-14 08:15:31 -0400571static inline void
572switch_fpu_prepare(struct fpu *old_fpu, int cpu)
Linus Torvalds1361b832012-02-21 13:19:22 -0800573{
Ingo Molnard5cea9b2015-04-24 14:19:26 +0200574 if (old_fpu->fpregs_active) {
Ingo Molnar4f836342015-04-27 02:53:16 +0200575 if (!copy_fpregs_to_fpstate(old_fpu))
Ingo Molnarcb8818b2015-04-23 17:39:04 +0200576 old_fpu->last_cpu = -1;
Rik van Riel1361ef22015-02-06 15:02:03 -0500577 else
Ingo Molnarcb8818b2015-04-23 17:39:04 +0200578 old_fpu->last_cpu = cpu;
Rik van Riel1361ef22015-02-06 15:02:03 -0500579
Ingo Molnar36b544d2015-04-23 12:18:28 +0200580 /* But leave fpu_fpregs_owner_ctx! */
Ingo Molnard5cea9b2015-04-24 14:19:26 +0200581 old_fpu->fpregs_active = 0;
Dave Hansend1898b72016-06-01 10:42:20 -0700582 trace_x86_fpu_regs_deactivated(old_fpu);
Rik van Riel9ad93fe2016-10-04 20:34:38 -0400583 } else
Ingo Molnarcb8818b2015-04-23 17:39:04 +0200584 old_fpu->last_cpu = -1;
Linus Torvalds1361b832012-02-21 13:19:22 -0800585}
586
587/*
Ingo Molnarb1b64dc2015-05-05 15:56:33 +0200588 * Misc helper functions:
589 */
590
591/*
Rik van Rielc474e502016-10-14 08:15:31 -0400592 * Set up the userspace FPU context for the new task, if the task
593 * has used the FPU.
Linus Torvalds1361b832012-02-21 13:19:22 -0800594 */
Rik van Rielc474e502016-10-14 08:15:31 -0400595static inline void switch_fpu_finish(struct fpu *new_fpu, int cpu)
Linus Torvalds1361b832012-02-21 13:19:22 -0800596{
Rik van Rielc474e502016-10-14 08:15:31 -0400597 bool preload = static_cpu_has(X86_FEATURE_FPU) &&
598 new_fpu->fpstate_active;
599
600 if (preload) {
601 if (!fpregs_state_valid(new_fpu, cpu))
602 copy_kernel_to_fpregs(&new_fpu->state);
603 fpregs_activate(new_fpu);
604 }
Linus Torvalds1361b832012-02-21 13:19:22 -0800605}
606
607/*
Oleg Nesterovfb14b4e2015-03-11 18:34:09 +0100608 * Needs to be preemption-safe.
Linus Torvalds1361b832012-02-21 13:19:22 -0800609 *
Suresh Siddha377ffbc2012-08-24 14:12:58 -0700610 * NOTE! user_fpu_begin() must be used only immediately before restoring
Oleg Nesterovfb14b4e2015-03-11 18:34:09 +0100611 * the save state. It does not do any saving/restoring on its own. In
612 * lazy FPU mode, it is just an optimization to avoid a #NM exception,
613 * the task can lose the FPU right after preempt_enable().
Linus Torvalds1361b832012-02-21 13:19:22 -0800614 */
Linus Torvalds1361b832012-02-21 13:19:22 -0800615static inline void user_fpu_begin(void)
616{
Ingo Molnar4540d3f2015-04-23 12:31:17 +0200617 struct fpu *fpu = &current->thread.fpu;
618
Linus Torvalds1361b832012-02-21 13:19:22 -0800619 preempt_disable();
Ingo Molnar3c6dffa2015-04-28 12:28:08 +0200620 if (!fpregs_active())
Ingo Molnar232f62c2015-04-24 14:30:38 +0200621 fpregs_activate(fpu);
Linus Torvalds1361b832012-02-21 13:19:22 -0800622 preempt_enable();
623}
624
Ingo Molnarb1b64dc2015-05-05 15:56:33 +0200625/*
626 * MXCSR and XCR definitions:
627 */
628
629extern unsigned int mxcsr_feature_mask;
630
631#define XCR_XFEATURE_ENABLED_MASK 0x00000000
632
633static inline u64 xgetbv(u32 index)
634{
635 u32 eax, edx;
636
637 asm volatile(".byte 0x0f,0x01,0xd0" /* xgetbv */
638 : "=a" (eax), "=d" (edx)
639 : "c" (index));
640 return eax + ((u64)edx << 32);
641}
642
643static inline void xsetbv(u32 index, u64 value)
644{
645 u32 eax = value;
646 u32 edx = value >> 32;
647
648 asm volatile(".byte 0x0f,0x01,0xd1" /* xsetbv */
649 : : "a" (eax), "d" (edx), "c" (index));
650}
651
Ingo Molnar78f7f1e2015-04-24 02:54:44 +0200652#endif /* _ASM_X86_FPU_INTERNAL_H */