kvm_para.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _UAPI_ASM_X86_KVM_PARA_H
  3. #define _UAPI_ASM_X86_KVM_PARA_H
  4. #include <linux/types.h>
  5. /* This CPUID returns the signature 'KVMKVMKVM' in ebx, ecx, and edx. It
  6. * should be used to determine that a VM is running under KVM.
  7. */
  8. #define KVM_CPUID_SIGNATURE 0x40000000
  9. /* This CPUID returns two feature bitmaps in eax, edx. Before enabling
  10. * a particular paravirtualization, the appropriate feature bit should
  11. * be checked in eax. The performance hint feature bit should be checked
  12. * in edx.
  13. */
  14. #define KVM_CPUID_FEATURES 0x40000001
  15. #define KVM_FEATURE_CLOCKSOURCE 0
  16. #define KVM_FEATURE_NOP_IO_DELAY 1
  17. #define KVM_FEATURE_MMU_OP 2
  18. /* This indicates that the new set of kvmclock msrs
  19. * are available. The use of 0x11 and 0x12 is deprecated
  20. */
  21. #define KVM_FEATURE_CLOCKSOURCE2 3
  22. #define KVM_FEATURE_ASYNC_PF 4
  23. #define KVM_FEATURE_STEAL_TIME 5
  24. #define KVM_FEATURE_PV_EOI 6
  25. #define KVM_FEATURE_PV_UNHALT 7
  26. #define KVM_FEATURE_PV_TLB_FLUSH 9
  27. #define KVM_FEATURE_ASYNC_PF_VMEXIT 10
  28. #define KVM_FEATURE_PV_SEND_IPI 11
  29. #define KVM_HINTS_REALTIME 0
  30. /* The last 8 bits are used to indicate how to interpret the flags field
  31. * in pvclock structure. If no bits are set, all flags are ignored.
  32. */
  33. #define KVM_FEATURE_CLOCKSOURCE_STABLE_BIT 24
  34. #define MSR_KVM_WALL_CLOCK 0x11
  35. #define MSR_KVM_SYSTEM_TIME 0x12
  36. #define KVM_MSR_ENABLED 1
  37. /* Custom MSRs falls in the range 0x4b564d00-0x4b564dff */
  38. #define MSR_KVM_WALL_CLOCK_NEW 0x4b564d00
  39. #define MSR_KVM_SYSTEM_TIME_NEW 0x4b564d01
  40. #define MSR_KVM_ASYNC_PF_EN 0x4b564d02
  41. #define MSR_KVM_STEAL_TIME 0x4b564d03
  42. #define MSR_KVM_PV_EOI_EN 0x4b564d04
  43. struct kvm_steal_time {
  44. __u64 steal;
  45. __u32 version;
  46. __u32 flags;
  47. __u8 preempted;
  48. __u8 u8_pad[3];
  49. __u32 pad[11];
  50. };
  51. #define KVM_VCPU_PREEMPTED (1 << 0)
  52. #define KVM_VCPU_FLUSH_TLB (1 << 1)
  53. #define KVM_CLOCK_PAIRING_WALLCLOCK 0
  54. struct kvm_clock_pairing {
  55. __s64 sec;
  56. __s64 nsec;
  57. __u64 tsc;
  58. __u32 flags;
  59. __u32 pad[9];
  60. };
  61. #define KVM_STEAL_ALIGNMENT_BITS 5
  62. #define KVM_STEAL_VALID_BITS ((-1ULL << (KVM_STEAL_ALIGNMENT_BITS + 1)))
  63. #define KVM_STEAL_RESERVED_MASK (((1 << KVM_STEAL_ALIGNMENT_BITS) - 1 ) << 1)
  64. #define KVM_MAX_MMU_OP_BATCH 32
  65. #define KVM_ASYNC_PF_ENABLED (1 << 0)
  66. #define KVM_ASYNC_PF_SEND_ALWAYS (1 << 1)
  67. #define KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT (1 << 2)
  68. /* Operations for KVM_HC_MMU_OP */
  69. #define KVM_MMU_OP_WRITE_PTE 1
  70. #define KVM_MMU_OP_FLUSH_TLB 2
  71. #define KVM_MMU_OP_RELEASE_PT 3
  72. /* Payload for KVM_HC_MMU_OP */
  73. struct kvm_mmu_op_header {
  74. __u32 op;
  75. __u32 pad;
  76. };
  77. struct kvm_mmu_op_write_pte {
  78. struct kvm_mmu_op_header header;
  79. __u64 pte_phys;
  80. __u64 pte_val;
  81. };
  82. struct kvm_mmu_op_flush_tlb {
  83. struct kvm_mmu_op_header header;
  84. };
  85. struct kvm_mmu_op_release_pt {
  86. struct kvm_mmu_op_header header;
  87. __u64 pt_phys;
  88. };
  89. #define KVM_PV_REASON_PAGE_NOT_PRESENT 1
  90. #define KVM_PV_REASON_PAGE_READY 2
  91. struct kvm_vcpu_pv_apf_data {
  92. __u32 reason;
  93. __u8 pad[60];
  94. __u32 enabled;
  95. };
  96. #define KVM_PV_EOI_BIT 0
  97. #define KVM_PV_EOI_MASK (0x1 << KVM_PV_EOI_BIT)
  98. #define KVM_PV_EOI_ENABLED KVM_PV_EOI_MASK
  99. #define KVM_PV_EOI_DISABLED 0x0
  100. #endif /* _UAPI_ASM_X86_KVM_PARA_H */