x86.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. #ifndef ARCH_X86_KVM_X86_H
  2. #define ARCH_X86_KVM_X86_H
  3. #include <linux/kvm_host.h>
  4. #include "kvm_cache_regs.h"
  5. static inline void kvm_clear_exception_queue(struct kvm_vcpu *vcpu)
  6. {
  7. vcpu->arch.exception.pending = false;
  8. }
  9. static inline void kvm_queue_interrupt(struct kvm_vcpu *vcpu, u8 vector,
  10. bool soft)
  11. {
  12. vcpu->arch.interrupt.pending = true;
  13. vcpu->arch.interrupt.soft = soft;
  14. vcpu->arch.interrupt.nr = vector;
  15. }
  16. static inline void kvm_clear_interrupt_queue(struct kvm_vcpu *vcpu)
  17. {
  18. vcpu->arch.interrupt.pending = false;
  19. }
  20. static inline bool kvm_event_needs_reinjection(struct kvm_vcpu *vcpu)
  21. {
  22. return vcpu->arch.exception.pending || vcpu->arch.interrupt.pending ||
  23. vcpu->arch.nmi_injected;
  24. }
  25. static inline bool kvm_exception_is_soft(unsigned int nr)
  26. {
  27. return (nr == BP_VECTOR) || (nr == OF_VECTOR);
  28. }
  29. static inline bool is_protmode(struct kvm_vcpu *vcpu)
  30. {
  31. return kvm_read_cr0_bits(vcpu, X86_CR0_PE);
  32. }
  33. static inline int is_long_mode(struct kvm_vcpu *vcpu)
  34. {
  35. #ifdef CONFIG_X86_64
  36. return vcpu->arch.efer & EFER_LMA;
  37. #else
  38. return 0;
  39. #endif
  40. }
  41. static inline bool mmu_is_nested(struct kvm_vcpu *vcpu)
  42. {
  43. return vcpu->arch.walk_mmu == &vcpu->arch.nested_mmu;
  44. }
  45. static inline int is_pae(struct kvm_vcpu *vcpu)
  46. {
  47. return kvm_read_cr4_bits(vcpu, X86_CR4_PAE);
  48. }
  49. static inline int is_pse(struct kvm_vcpu *vcpu)
  50. {
  51. return kvm_read_cr4_bits(vcpu, X86_CR4_PSE);
  52. }
  53. static inline int is_paging(struct kvm_vcpu *vcpu)
  54. {
  55. return kvm_read_cr0_bits(vcpu, X86_CR0_PG);
  56. }
  57. static inline u32 bit(int bitno)
  58. {
  59. return 1 << (bitno & 31);
  60. }
  61. static inline void vcpu_cache_mmio_info(struct kvm_vcpu *vcpu,
  62. gva_t gva, gfn_t gfn, unsigned access)
  63. {
  64. vcpu->arch.mmio_gva = gva & PAGE_MASK;
  65. vcpu->arch.access = access;
  66. vcpu->arch.mmio_gfn = gfn;
  67. vcpu->arch.mmio_gen = kvm_memslots(vcpu->kvm)->generation;
  68. }
  69. static inline bool vcpu_match_mmio_gen(struct kvm_vcpu *vcpu)
  70. {
  71. return vcpu->arch.mmio_gen == kvm_memslots(vcpu->kvm)->generation;
  72. }
  73. /*
  74. * Clear the mmio cache info for the given gva. If gva is MMIO_GVA_ANY, we
  75. * clear all mmio cache info.
  76. */
  77. #define MMIO_GVA_ANY (~(gva_t)0)
  78. static inline void vcpu_clear_mmio_info(struct kvm_vcpu *vcpu, gva_t gva)
  79. {
  80. if (gva != MMIO_GVA_ANY && vcpu->arch.mmio_gva != (gva & PAGE_MASK))
  81. return;
  82. vcpu->arch.mmio_gva = 0;
  83. }
  84. static inline bool vcpu_match_mmio_gva(struct kvm_vcpu *vcpu, unsigned long gva)
  85. {
  86. if (vcpu_match_mmio_gen(vcpu) && vcpu->arch.mmio_gva &&
  87. vcpu->arch.mmio_gva == (gva & PAGE_MASK))
  88. return true;
  89. return false;
  90. }
  91. static inline bool vcpu_match_mmio_gpa(struct kvm_vcpu *vcpu, gpa_t gpa)
  92. {
  93. if (vcpu_match_mmio_gen(vcpu) && vcpu->arch.mmio_gfn &&
  94. vcpu->arch.mmio_gfn == gpa >> PAGE_SHIFT)
  95. return true;
  96. return false;
  97. }
  98. void kvm_before_handle_nmi(struct kvm_vcpu *vcpu);
  99. void kvm_after_handle_nmi(struct kvm_vcpu *vcpu);
  100. int kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip);
  101. void kvm_write_tsc(struct kvm_vcpu *vcpu, u64 data);
  102. int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt,
  103. gva_t addr, void *val, unsigned int bytes,
  104. struct x86_exception *exception);
  105. int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt,
  106. gva_t addr, void *val, unsigned int bytes,
  107. struct x86_exception *exception);
  108. extern u64 host_xcr0;
  109. #endif