1 #ifndef __ASM_X86_XSAVE_H
2 #define __ASM_X86_XSAVE_H
4 #include <linux/types.h>
5 #include <asm/processor.h>
10 #define XSTATE_YMM 0x4
12 #define XSTATE_FPSSE (XSTATE_FP | XSTATE_SSE)
14 #define FXSAVE_SIZE 512
17 * These are the features that the OS can handle currently.
19 #define XCNTXT_MASK (XSTATE_FP | XSTATE_SSE | XSTATE_YMM)
22 #define REX_PREFIX "0x48, "
27 extern unsigned int xstate_size;
28 extern u64 pcntxt_mask;
29 extern struct xsave_struct *init_xstate_buf;
31 extern void xsave_cntxt_init(void);
32 extern void xsave_init(void);
33 extern int init_fpu(struct task_struct *child);
34 extern int check_for_xstate(struct i387_fxsave_struct __user *buf,
36 struct _fpx_sw_bytes *sw);
38 static inline int xrstor_checking(struct xsave_struct *fx)
42 asm volatile("1: .byte " REX_PREFIX "0x0f,0xae,0x2f\n\t"
44 ".section .fixup,\"ax\"\n"
45 "3: movl $-1,%[err]\n"
50 : "D" (fx), "m" (*fx), "a" (-1), "d" (-1), "0" (0)
56 static inline int xsave_user(struct xsave_struct __user *buf)
59 __asm__ __volatile__("1: .byte " REX_PREFIX "0x0f,0xae,0x27\n"
61 ".section .fixup,\"ax\"\n"
62 "3: movl $-1,%[err]\n"
65 ".section __ex_table,\"a\"\n"
70 : "D" (buf), "a" (-1), "d" (-1), "0" (0)
72 if (unlikely(err) && __clear_user(buf, xstate_size))
74 /* No need to clear here because the caller clears USED_MATH */
78 static inline int xrestore_user(struct xsave_struct __user *buf, u64 mask)
81 struct xsave_struct *xstate = ((__force struct xsave_struct *)buf);
83 u32 hmask = mask >> 32;
85 __asm__ __volatile__("1: .byte " REX_PREFIX "0x0f,0xae,0x2f\n"
87 ".section .fixup,\"ax\"\n"
88 "3: movl $-1,%[err]\n"
91 ".section __ex_table,\"a\"\n"
96 : "D" (xstate), "a" (lmask), "d" (hmask), "0" (0)
97 : "memory"); /* memory required? */
101 static inline void xrstor_state(struct xsave_struct *fx, u64 mask)
104 u32 hmask = mask >> 32;
106 asm volatile(".byte " REX_PREFIX "0x0f,0xae,0x2f\n\t"
107 : : "D" (fx), "m" (*fx), "a" (lmask), "d" (hmask)
111 static inline void xsave(struct task_struct *tsk)
113 /* This, however, we can work around by forcing the compiler to select
114 an addressing mode that doesn't require extended registers. */
115 __asm__ __volatile__(".byte " REX_PREFIX "0x0f,0xae,0x27"
116 : : "D" (&(tsk->thread.xstate->xsave)),
117 "a" (-1), "d"(-1) : "memory");