linux/arch/x86/include/asm/fpu/types.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0 */
   2/*
   3 * FPU data structures:
   4 */
   5#ifndef _ASM_X86_FPU_H
   6#define _ASM_X86_FPU_H
   7
   8/*
   9 * The legacy x87 FPU state format, as saved by FSAVE and
  10 * restored by the FRSTOR instructions:
  11 */
  12struct fregs_state {
  13        u32                     cwd;    /* FPU Control Word             */
  14        u32                     swd;    /* FPU Status Word              */
  15        u32                     twd;    /* FPU Tag Word                 */
  16        u32                     fip;    /* FPU IP Offset                */
  17        u32                     fcs;    /* FPU IP Selector              */
  18        u32                     foo;    /* FPU Operand Pointer Offset   */
  19        u32                     fos;    /* FPU Operand Pointer Selector */
  20
  21        /* 8*10 bytes for each FP-reg = 80 bytes:                       */
  22        u32                     st_space[20];
  23
  24        /* Software status information [not touched by FSAVE]:          */
  25        u32                     status;
  26};
  27
  28/*
  29 * The legacy fx SSE/MMX FPU state format, as saved by FXSAVE and
  30 * restored by the FXRSTOR instructions. It's similar to the FSAVE
  31 * format, but differs in some areas, plus has extensions at
  32 * the end for the XMM registers.
  33 */
  34struct fxregs_state {
  35        u16                     cwd; /* Control Word                    */
  36        u16                     swd; /* Status Word                     */
  37        u16                     twd; /* Tag Word                        */
  38        u16                     fop; /* Last Instruction Opcode         */
  39        union {
  40                struct {
  41                        u64     rip; /* Instruction Pointer             */
  42                        u64     rdp; /* Data Pointer                    */
  43                };
  44                struct {
  45                        u32     fip; /* FPU IP Offset                   */
  46                        u32     fcs; /* FPU IP Selector                 */
  47                        u32     foo; /* FPU Operand Offset              */
  48                        u32     fos; /* FPU Operand Selector            */
  49                };
  50        };
  51        u32                     mxcsr;          /* MXCSR Register State */
  52        u32                     mxcsr_mask;     /* MXCSR Mask           */
  53
  54        /* 8*16 bytes for each FP-reg = 128 bytes:                      */
  55        u32                     st_space[32];
  56
  57        /* 16*16 bytes for each XMM-reg = 256 bytes:                    */
  58        u32                     xmm_space[64];
  59
  60        u32                     padding[12];
  61
  62        union {
  63                u32             padding1[12];
  64                u32             sw_reserved[12];
  65        };
  66
  67} __attribute__((aligned(16)));
  68
  69/* Default value for fxregs_state.mxcsr: */
  70#define MXCSR_DEFAULT           0x1f80
  71
  72/* Copy both mxcsr & mxcsr_flags with a single u64 memcpy: */
  73#define MXCSR_AND_FLAGS_SIZE sizeof(u64)
  74
  75/*
  76 * Software based FPU emulation state. This is arbitrary really,
  77 * it matches the x87 format to make it easier to understand:
  78 */
  79struct swregs_state {
  80        u32                     cwd;
  81        u32                     swd;
  82        u32                     twd;
  83        u32                     fip;
  84        u32                     fcs;
  85        u32                     foo;
  86        u32                     fos;
  87        /* 8*10 bytes for each FP-reg = 80 bytes: */
  88        u32                     st_space[20];
  89        u8                      ftop;
  90        u8                      changed;
  91        u8                      lookahead;
  92        u8                      no_update;
  93        u8                      rm;
  94        u8                      alimit;
  95        struct math_emu_info    *info;
  96        u32                     entry_eip;
  97};
  98
  99/*
 100 * List of XSAVE features Linux knows about:
 101 */
 102enum xfeature {
 103        XFEATURE_FP,
 104        XFEATURE_SSE,
 105        /*
 106         * Values above here are "legacy states".
 107         * Those below are "extended states".
 108         */
 109        XFEATURE_YMM,
 110        XFEATURE_BNDREGS,
 111        XFEATURE_BNDCSR,
 112        XFEATURE_OPMASK,
 113        XFEATURE_ZMM_Hi256,
 114        XFEATURE_Hi16_ZMM,
 115        XFEATURE_PT_UNIMPLEMENTED_SO_FAR,
 116        XFEATURE_PKRU,
 117        XFEATURE_RSRVD_COMP_10,
 118        XFEATURE_RSRVD_COMP_11,
 119        XFEATURE_RSRVD_COMP_12,
 120        XFEATURE_RSRVD_COMP_13,
 121        XFEATURE_RSRVD_COMP_14,
 122        XFEATURE_LBR,
 123
 124        XFEATURE_MAX,
 125};
 126
 127#define XFEATURE_MASK_FP                (1 << XFEATURE_FP)
 128#define XFEATURE_MASK_SSE               (1 << XFEATURE_SSE)
 129#define XFEATURE_MASK_YMM               (1 << XFEATURE_YMM)
 130#define XFEATURE_MASK_BNDREGS           (1 << XFEATURE_BNDREGS)
 131#define XFEATURE_MASK_BNDCSR            (1 << XFEATURE_BNDCSR)
 132#define XFEATURE_MASK_OPMASK            (1 << XFEATURE_OPMASK)
 133#define XFEATURE_MASK_ZMM_Hi256         (1 << XFEATURE_ZMM_Hi256)
 134#define XFEATURE_MASK_Hi16_ZMM          (1 << XFEATURE_Hi16_ZMM)
 135#define XFEATURE_MASK_PT                (1 << XFEATURE_PT_UNIMPLEMENTED_SO_FAR)
 136#define XFEATURE_MASK_PKRU              (1 << XFEATURE_PKRU)
 137#define XFEATURE_MASK_LBR               (1 << XFEATURE_LBR)
 138
 139#define XFEATURE_MASK_FPSSE             (XFEATURE_MASK_FP | XFEATURE_MASK_SSE)
 140#define XFEATURE_MASK_AVX512            (XFEATURE_MASK_OPMASK \
 141                                         | XFEATURE_MASK_ZMM_Hi256 \
 142                                         | XFEATURE_MASK_Hi16_ZMM)
 143
 144#define FIRST_EXTENDED_XFEATURE XFEATURE_YMM
 145
 146struct reg_128_bit {
 147        u8      regbytes[128/8];
 148};
 149struct reg_256_bit {
 150        u8      regbytes[256/8];
 151};
 152struct reg_512_bit {
 153        u8      regbytes[512/8];
 154};
 155
 156/*
 157 * State component 2:
 158 *
 159 * There are 16x 256-bit AVX registers named YMM0-YMM15.
 160 * The low 128 bits are aliased to the 16 SSE registers (XMM0-XMM15)
 161 * and are stored in 'struct fxregs_state::xmm_space[]' in the
 162 * "legacy" area.
 163 *
 164 * The high 128 bits are stored here.
 165 */
 166struct ymmh_struct {
 167        struct reg_128_bit              hi_ymm[16];
 168} __packed;
 169
 170/* Intel MPX support: */
 171
 172struct mpx_bndreg {
 173        u64                             lower_bound;
 174        u64                             upper_bound;
 175} __packed;
 176/*
 177 * State component 3 is used for the 4 128-bit bounds registers
 178 */
 179struct mpx_bndreg_state {
 180        struct mpx_bndreg               bndreg[4];
 181} __packed;
 182
 183/*
 184 * State component 4 is used for the 64-bit user-mode MPX
 185 * configuration register BNDCFGU and the 64-bit MPX status
 186 * register BNDSTATUS.  We call the pair "BNDCSR".
 187 */
 188struct mpx_bndcsr {
 189        u64                             bndcfgu;
 190        u64                             bndstatus;
 191} __packed;
 192
 193/*
 194 * The BNDCSR state is padded out to be 64-bytes in size.
 195 */
 196struct mpx_bndcsr_state {
 197        union {
 198                struct mpx_bndcsr               bndcsr;
 199                u8                              pad_to_64_bytes[64];
 200        };
 201} __packed;
 202
 203/* AVX-512 Components: */
 204
 205/*
 206 * State component 5 is used for the 8 64-bit opmask registers
 207 * k0-k7 (opmask state).
 208 */
 209struct avx_512_opmask_state {
 210        u64                             opmask_reg[8];
 211} __packed;
 212
 213/*
 214 * State component 6 is used for the upper 256 bits of the
 215 * registers ZMM0-ZMM15. These 16 256-bit values are denoted
 216 * ZMM0_H-ZMM15_H (ZMM_Hi256 state).
 217 */
 218struct avx_512_zmm_uppers_state {
 219        struct reg_256_bit              zmm_upper[16];
 220} __packed;
 221
 222/*
 223 * State component 7 is used for the 16 512-bit registers
 224 * ZMM16-ZMM31 (Hi16_ZMM state).
 225 */
 226struct avx_512_hi16_state {
 227        struct reg_512_bit              hi16_zmm[16];
 228} __packed;
 229
 230/*
 231 * State component 9: 32-bit PKRU register.  The state is
 232 * 8 bytes long but only 4 bytes is used currently.
 233 */
 234struct pkru_state {
 235        u32                             pkru;
 236        u32                             pad;
 237} __packed;
 238
 239/*
 240 * State component 15: Architectural LBR configuration state.
 241 * The size of Arch LBR state depends on the number of LBRs (lbr_depth).
 242 */
 243
 244struct lbr_entry {
 245        u64 from;
 246        u64 to;
 247        u64 info;
 248};
 249
 250struct arch_lbr_state {
 251        u64 lbr_ctl;
 252        u64 lbr_depth;
 253        u64 ler_from;
 254        u64 ler_to;
 255        u64 ler_info;
 256        struct lbr_entry                entries[];
 257} __packed;
 258
 259struct xstate_header {
 260        u64                             xfeatures;
 261        u64                             xcomp_bv;
 262        u64                             reserved[6];
 263} __attribute__((packed));
 264
 265/*
 266 * xstate_header.xcomp_bv[63] indicates that the extended_state_area
 267 * is in compacted format.
 268 */
 269#define XCOMP_BV_COMPACTED_FORMAT ((u64)1 << 63)
 270
 271/*
 272 * This is our most modern FPU state format, as saved by the XSAVE
 273 * and restored by the XRSTOR instructions.
 274 *
 275 * It consists of a legacy fxregs portion, an xstate header and
 276 * subsequent areas as defined by the xstate header.  Not all CPUs
 277 * support all the extensions, so the size of the extended area
 278 * can vary quite a bit between CPUs.
 279 */
 280struct xregs_state {
 281        struct fxregs_state             i387;
 282        struct xstate_header            header;
 283        u8                              extended_state_area[0];
 284} __attribute__ ((packed, aligned (64)));
 285
 286/*
 287 * This is a union of all the possible FPU state formats
 288 * put together, so that we can pick the right one runtime.
 289 *
 290 * The size of the structure is determined by the largest
 291 * member - which is the xsave area.  The padding is there
 292 * to ensure that statically-allocated task_structs (just
 293 * the init_task today) have enough space.
 294 */
 295union fpregs_state {
 296        struct fregs_state              fsave;
 297        struct fxregs_state             fxsave;
 298        struct swregs_state             soft;
 299        struct xregs_state              xsave;
 300        u8 __padding[PAGE_SIZE];
 301};
 302
 303/*
 304 * Highest level per task FPU state data structure that
 305 * contains the FPU register state plus various FPU
 306 * state fields:
 307 */
 308struct fpu {
 309        /*
 310         * @last_cpu:
 311         *
 312         * Records the last CPU on which this context was loaded into
 313         * FPU registers. (In the lazy-restore case we might be
 314         * able to reuse FPU registers across multiple context switches
 315         * this way, if no intermediate task used the FPU.)
 316         *
 317         * A value of -1 is used to indicate that the FPU state in context
 318         * memory is newer than the FPU state in registers, and that the
 319         * FPU state should be reloaded next time the task is run.
 320         */
 321        unsigned int                    last_cpu;
 322
 323        /*
 324         * @avx512_timestamp:
 325         *
 326         * Records the timestamp of AVX512 use during last context switch.
 327         */
 328        unsigned long                   avx512_timestamp;
 329
 330        /*
 331         * @state:
 332         *
 333         * In-memory copy of all FPU registers that we save/restore
 334         * over context switches. If the task is using the FPU then
 335         * the registers in the FPU are more recent than this state
 336         * copy. If the task context-switches away then they get
 337         * saved here and represent the FPU state.
 338         */
 339        union fpregs_state              state;
 340        /*
 341         * WARNING: 'state' is dynamically-sized.  Do not put
 342         * anything after it here.
 343         */
 344};
 345
 346#endif /* _ASM_X86_FPU_H */
 347