fpsimd.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Copyright (C) 2012 ARM Ltd.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #ifndef __ASM_FP_H
  17. #define __ASM_FP_H
  18. #include <asm/ptrace.h>
  19. #ifndef __ASSEMBLY__
  20. /*
  21. * FP/SIMD storage area has:
  22. * - FPSR and FPCR
  23. * - 32 128-bit data registers
  24. *
  25. * Note that user_fpsimd forms a prefix of this structure, which is
  26. * relied upon in the ptrace FP/SIMD accessors.
  27. */
  28. struct fpsimd_state {
  29. union {
  30. struct user_fpsimd_state user_fpsimd;
  31. struct {
  32. __uint128_t vregs[32];
  33. u32 fpsr;
  34. u32 fpcr;
  35. };
  36. };
  37. /* the id of the last cpu to have restored this state */
  38. unsigned int cpu;
  39. };
  40. /*
  41. * Struct for stacking the bottom 'n' FP/SIMD registers.
  42. */
  43. struct fpsimd_partial_state {
  44. u32 fpsr;
  45. u32 fpcr;
  46. u32 num_regs;
  47. __uint128_t vregs[32];
  48. };
  49. #if defined(__KERNEL__) && defined(CONFIG_COMPAT)
  50. /* Masks for extracting the FPSR and FPCR from the FPSCR */
  51. #define VFP_FPSCR_STAT_MASK 0xf800009f
  52. #define VFP_FPSCR_CTRL_MASK 0x07f79f00
  53. /*
  54. * The VFP state has 32x64-bit registers and a single 32-bit
  55. * control/status register.
  56. */
  57. #define VFP_STATE_SIZE ((32 * 8) + 4)
  58. #endif
  59. struct task_struct;
  60. extern void fpsimd_save_state(struct fpsimd_state *state);
  61. extern void fpsimd_load_state(struct fpsimd_state *state);
  62. extern void fpsimd_thread_switch(struct task_struct *next);
  63. extern void fpsimd_flush_thread(void);
  64. extern void fpsimd_preserve_current_state(void);
  65. extern void fpsimd_restore_current_state(void);
  66. extern void fpsimd_update_current_state(struct fpsimd_state *state);
  67. extern void fpsimd_flush_task_state(struct task_struct *target);
  68. extern void fpsimd_save_partial_state(struct fpsimd_partial_state *state,
  69. u32 num_regs);
  70. extern void fpsimd_load_partial_state(struct fpsimd_partial_state *state);
  71. #endif
  72. #endif