x86/fpu: Rename XSAVE macros
[deliverable/linux.git] / arch / x86 / include / asm / fpu / xstate.h
1 #ifndef __ASM_X86_XSAVE_H
2 #define __ASM_X86_XSAVE_H
3
4 #include <linux/types.h>
5 #include <asm/processor.h>
6 #include <linux/uaccess.h>
7
8 /* Bit 63 of XCR0 is reserved for future expansion */
9 #define XFEATURE_MASK_EXTEND (~(XFEATURE_MASK_FPSSE | (1ULL << 63)))
10
11 #define XSTATE_CPUID 0x0000000d
12
13 #define FXSAVE_SIZE 512
14
15 #define XSAVE_HDR_SIZE 64
16 #define XSAVE_HDR_OFFSET FXSAVE_SIZE
17
18 #define XSAVE_YMM_SIZE 256
19 #define XSAVE_YMM_OFFSET (XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET)
20
21 /* Supported features which support lazy state saving */
22 #define XFEATURE_MASK_LAZY (XFEATURE_MASK_FP | \
23 XFEATURE_MASK_SSE | \
24 XFEATURE_MASK_YMM | \
25 XFEATURE_MASK_OPMASK | \
26 XFEATURE_MASK_ZMM_Hi256 | \
27 XFEATURE_MASK_Hi16_ZMM)
28
29 /* Supported features which require eager state saving */
30 #define XFEATURE_MASK_EAGER (XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR)
31
32 /* All currently supported features */
33 #define XCNTXT_MASK (XFEATURE_MASK_LAZY | XFEATURE_MASK_EAGER)
34
35 #ifdef CONFIG_X86_64
36 #define REX_PREFIX "0x48, "
37 #else
38 #define REX_PREFIX
39 #endif
40
41 extern unsigned int xstate_size;
42 extern u64 xfeatures_mask;
43 extern u64 xstate_fx_sw_bytes[USER_XSTATE_FX_SW_WORDS];
44
45 extern void update_regset_xstate_info(unsigned int size, u64 xstate_mask);
46
47 void fpu__xstate_clear_all_cpu_caps(void);
48 void *get_xsave_addr(struct xregs_state *xsave, int xstate);
49 const void *get_xsave_field_ptr(int xstate_field);
50
51 #endif
This page took 0.033999 seconds and 5 git commands to generate.