context.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __X86_KERNEL_FPU_CONTEXT_H
  3. #define __X86_KERNEL_FPU_CONTEXT_H
  4. #include <asm/fpu/xstate.h>
  5. #include <asm/trace/fpu.h>
  6. /* Functions related to FPU context tracking */
  7. /*
  8. * The in-register FPU state for an FPU context on a CPU is assumed to be
  9. * valid if the fpu->last_cpu matches the CPU, and the fpu_fpregs_owner_ctx
  10. * matches the FPU.
  11. *
  12. * If the FPU register state is valid, the kernel can skip restoring the
  13. * FPU state from memory.
  14. *
  15. * Any code that clobbers the FPU registers or updates the in-memory
  16. * FPU state for a task MUST let the rest of the kernel know that the
  17. * FPU registers are no longer valid for this task.
  18. *
  19. * Invalidate a resource you control: CPU if using the CPU for something else
  20. * (with preemption disabled), FPU for the current task, or a task that
  21. * is prevented from running by the current task.
  22. */
  23. static inline void __cpu_invalidate_fpregs_state(void)
  24. {
  25. __this_cpu_write(fpu_fpregs_owner_ctx, NULL);
  26. }
  27. static inline void __fpu_invalidate_fpregs_state(struct fpu *fpu)
  28. {
  29. fpu->last_cpu = -1;
  30. }
  31. static inline int fpregs_state_valid(struct fpu *fpu, unsigned int cpu)
  32. {
  33. return fpu == this_cpu_read(fpu_fpregs_owner_ctx) && cpu == fpu->last_cpu;
  34. }
  35. static inline void fpregs_deactivate(struct fpu *fpu)
  36. {
  37. __this_cpu_write(fpu_fpregs_owner_ctx, NULL);
  38. trace_x86_fpu_regs_deactivated(fpu);
  39. }
  40. static inline void fpregs_activate(struct fpu *fpu)
  41. {
  42. __this_cpu_write(fpu_fpregs_owner_ctx, fpu);
  43. trace_x86_fpu_regs_activated(fpu);
  44. }
  45. /* Internal helper for switch_fpu_return() and signal frame setup */
  46. static inline void fpregs_restore_userregs(void)
  47. {
  48. struct fpu *fpu = &current->thread.fpu;
  49. int cpu = smp_processor_id();
  50. if (WARN_ON_ONCE(current->flags & (PF_KTHREAD | PF_IO_WORKER)))
  51. return;
  52. if (!fpregs_state_valid(fpu, cpu)) {
  53. /*
  54. * This restores _all_ xstate which has not been
  55. * established yet.
  56. *
  57. * If PKRU is enabled, then the PKRU value is already
  58. * correct because it was either set in switch_to() or in
  59. * flush_thread(). So it is excluded because it might be
  60. * not up to date in current->thread.fpu.xsave state.
  61. *
  62. * XFD state is handled in restore_fpregs_from_fpstate().
  63. */
  64. restore_fpregs_from_fpstate(fpu->fpstate, XFEATURE_MASK_FPSTATE);
  65. fpregs_activate(fpu);
  66. fpu->last_cpu = cpu;
  67. }
  68. clear_thread_flag(TIF_NEED_FPU_LOAD);
  69. }
  70. #endif