Merge tag 'pci-v3.15-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaa...
[deliverable/linux.git] / arch / x86 / include / asm / xsave.h
CommitLineData
dc1e35c6
SS
1#ifndef __ASM_X86_XSAVE_H
2#define __ASM_X86_XSAVE_H
3
6152e4b1 4#include <linux/types.h>
dc1e35c6 5#include <asm/processor.h>
dc1e35c6 6
ee813d53 7#define XSTATE_CPUID 0x0000000d
dc1e35c6 8
c2bc11f1
FY
9#define XSTATE_FP 0x1
10#define XSTATE_SSE 0x2
11#define XSTATE_YMM 0x4
12#define XSTATE_BNDREGS 0x8
13#define XSTATE_BNDCSR 0x10
14#define XSTATE_OPMASK 0x20
15#define XSTATE_ZMM_Hi256 0x40
16#define XSTATE_Hi16_ZMM 0x80
dc1e35c6
SS
17
18#define XSTATE_FPSSE (XSTATE_FP | XSTATE_SSE)
19
20#define FXSAVE_SIZE 512
21
2d5b5a66
SY
22#define XSAVE_HDR_SIZE 64
23#define XSAVE_HDR_OFFSET FXSAVE_SIZE
24
25#define XSAVE_YMM_SIZE 256
26#define XSAVE_YMM_OFFSET (XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET)
5ee481da 27
e7d820a5 28/* Supported features which support lazy state saving */
c2bc11f1
FY
29#define XSTATE_LAZY (XSTATE_FP | XSTATE_SSE | XSTATE_YMM \
30 | XSTATE_OPMASK | XSTATE_ZMM_Hi256 | XSTATE_Hi16_ZMM)
e7d820a5
QR
31
32/* Supported features which require eager state saving */
33#define XSTATE_EAGER (XSTATE_BNDREGS | XSTATE_BNDCSR)
34
35/* All currently supported features */
36#define XCNTXT_MASK (XSTATE_LAZY | XSTATE_EAGER)
dc1e35c6 37
b359e8a4
SS
38#ifdef CONFIG_X86_64
39#define REX_PREFIX "0x48, "
40#else
41#define REX_PREFIX
42#endif
43
6152e4b1
PA
44extern unsigned int xstate_size;
45extern u64 pcntxt_mask;
5b3efd50 46extern u64 xstate_fx_sw_bytes[USER_XSTATE_FX_SW_WORDS];
304bceda 47extern struct xsave_struct *init_xstate_buf;
dc1e35c6 48
dc1e35c6 49extern void xsave_init(void);
5b3efd50 50extern void update_regset_xstate_info(unsigned int size, u64 xstate_mask);
b359e8a4
SS
51extern int init_fpu(struct task_struct *child);
52
0ca5bd0d 53static inline int fpu_xrstor_checking(struct xsave_struct *fx)
b359e8a4
SS
54{
55 int err;
56
57 asm volatile("1: .byte " REX_PREFIX "0x0f,0xae,0x2f\n\t"
58 "2:\n"
59 ".section .fixup,\"ax\"\n"
60 "3: movl $-1,%[err]\n"
61 " jmp 2b\n"
62 ".previous\n"
63 _ASM_EXTABLE(1b, 3b)
64 : [err] "=r" (err)
65 : "D" (fx), "m" (*fx), "a" (-1), "d" (-1), "0" (0)
66 : "memory");
67
68 return err;
69}
70
c37b5efe 71static inline int xsave_user(struct xsave_struct __user *buf)
9dc89c0f
SS
72{
73 int err;
8e221b6d
SS
74
75 /*
76 * Clear the xsave header first, so that reserved fields are
77 * initialized to zero.
78 */
72a671ce 79 err = __clear_user(&buf->xsave_hdr, sizeof(buf->xsave_hdr));
8e221b6d
SS
80 if (unlikely(err))
81 return -EFAULT;
82
63bcff2a
PA
83 __asm__ __volatile__(ASM_STAC "\n"
84 "1: .byte " REX_PREFIX "0x0f,0xae,0x27\n"
85 "2: " ASM_CLAC "\n"
9dc89c0f
SS
86 ".section .fixup,\"ax\"\n"
87 "3: movl $-1,%[err]\n"
88 " jmp 2b\n"
89 ".previous\n"
7a040a43 90 _ASM_EXTABLE(1b,3b)
9dc89c0f
SS
91 : [err] "=r" (err)
92 : "D" (buf), "a" (-1), "d" (-1), "0" (0)
93 : "memory");
9dc89c0f
SS
94 return err;
95}
96
6152e4b1 97static inline int xrestore_user(struct xsave_struct __user *buf, u64 mask)
9dc89c0f
SS
98{
99 int err;
100 struct xsave_struct *xstate = ((__force struct xsave_struct *)buf);
6152e4b1
PA
101 u32 lmask = mask;
102 u32 hmask = mask >> 32;
9dc89c0f 103
63bcff2a
PA
104 __asm__ __volatile__(ASM_STAC "\n"
105 "1: .byte " REX_PREFIX "0x0f,0xae,0x2f\n"
106 "2: " ASM_CLAC "\n"
9dc89c0f
SS
107 ".section .fixup,\"ax\"\n"
108 "3: movl $-1,%[err]\n"
109 " jmp 2b\n"
110 ".previous\n"
7a040a43 111 _ASM_EXTABLE(1b,3b)
9dc89c0f
SS
112 : [err] "=r" (err)
113 : "D" (xstate), "a" (lmask), "d" (hmask), "0" (0)
114 : "memory"); /* memory required? */
115 return err;
116}
117
6152e4b1 118static inline void xrstor_state(struct xsave_struct *fx, u64 mask)
9dc89c0f 119{
6152e4b1
PA
120 u32 lmask = mask;
121 u32 hmask = mask >> 32;
122
9dc89c0f
SS
123 asm volatile(".byte " REX_PREFIX "0x0f,0xae,0x2f\n\t"
124 : : "D" (fx), "m" (*fx), "a" (lmask), "d" (hmask)
125 : "memory");
126}
127
29104e10
SS
128static inline void xsave_state(struct xsave_struct *fx, u64 mask)
129{
130 u32 lmask = mask;
131 u32 hmask = mask >> 32;
132
133 asm volatile(".byte " REX_PREFIX "0x0f,0xae,0x27\n\t"
134 : : "D" (fx), "m" (*fx), "a" (lmask), "d" (hmask)
135 : "memory");
136}
137
86603283 138static inline void fpu_xsave(struct fpu *fpu)
b359e8a4
SS
139{
140 /* This, however, we can work around by forcing the compiler to select
141 an addressing mode that doesn't require extended registers. */
6bad06b7
SS
142 alternative_input(
143 ".byte " REX_PREFIX "0x0f,0xae,0x27",
144 ".byte " REX_PREFIX "0x0f,0xae,0x37",
145 X86_FEATURE_XSAVEOPT,
146 [fx] "D" (&fpu->state->xsave), "a" (-1), "d" (-1) :
147 "memory");
b359e8a4 148}
dc1e35c6 149#endif
This page took 0.475427 seconds and 5 git commands to generate.