pmu.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. #ifndef __KVM_X86_PMU_H
  2. #define __KVM_X86_PMU_H
  3. #define vcpu_to_pmu(vcpu) (&(vcpu)->arch.pmu)
  4. #define pmu_to_vcpu(pmu) (container_of((pmu), struct kvm_vcpu, arch.pmu))
  5. #define pmc_to_pmu(pmc) (&(pmc)->vcpu->arch.pmu)
  6. /* retrieve the 4 bits for EN and PMI out of IA32_FIXED_CTR_CTRL */
  7. #define fixed_ctrl_field(ctrl_reg, idx) (((ctrl_reg) >> ((idx)*4)) & 0xf)
  8. struct kvm_event_hw_type_mapping {
  9. u8 eventsel;
  10. u8 unit_mask;
  11. unsigned event_type;
  12. };
  13. struct kvm_pmu_ops {
  14. unsigned (*find_arch_event)(struct kvm_pmu *pmu, u8 event_select,
  15. u8 unit_mask);
  16. unsigned (*find_fixed_event)(int idx);
  17. bool (*pmc_is_enabled)(struct kvm_pmc *pmc);
  18. struct kvm_pmc *(*pmc_idx_to_pmc)(struct kvm_pmu *pmu, int pmc_idx);
  19. struct kvm_pmc *(*msr_idx_to_pmc)(struct kvm_vcpu *vcpu, unsigned idx);
  20. int (*is_valid_msr_idx)(struct kvm_vcpu *vcpu, unsigned idx);
  21. bool (*is_valid_msr)(struct kvm_vcpu *vcpu, u32 msr);
  22. int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr, u64 *data);
  23. int (*set_msr)(struct kvm_vcpu *vcpu, struct msr_data *msr_info);
  24. void (*refresh)(struct kvm_vcpu *vcpu);
  25. void (*init)(struct kvm_vcpu *vcpu);
  26. void (*reset)(struct kvm_vcpu *vcpu);
  27. };
  28. static inline u64 pmc_bitmask(struct kvm_pmc *pmc)
  29. {
  30. struct kvm_pmu *pmu = pmc_to_pmu(pmc);
  31. return pmu->counter_bitmask[pmc->type];
  32. }
  33. static inline u64 pmc_read_counter(struct kvm_pmc *pmc)
  34. {
  35. u64 counter, enabled, running;
  36. counter = pmc->counter;
  37. if (pmc->perf_event)
  38. counter += perf_event_read_value(pmc->perf_event,
  39. &enabled, &running);
  40. /* FIXME: Scaling needed? */
  41. return counter & pmc_bitmask(pmc);
  42. }
  43. static inline void pmc_stop_counter(struct kvm_pmc *pmc)
  44. {
  45. if (pmc->perf_event) {
  46. pmc->counter = pmc_read_counter(pmc);
  47. perf_event_release_kernel(pmc->perf_event);
  48. pmc->perf_event = NULL;
  49. }
  50. }
  51. static inline bool pmc_is_gp(struct kvm_pmc *pmc)
  52. {
  53. return pmc->type == KVM_PMC_GP;
  54. }
  55. static inline bool pmc_is_fixed(struct kvm_pmc *pmc)
  56. {
  57. return pmc->type == KVM_PMC_FIXED;
  58. }
  59. static inline bool pmc_is_enabled(struct kvm_pmc *pmc)
  60. {
  61. return kvm_x86_ops->pmu_ops->pmc_is_enabled(pmc);
  62. }
  63. /* returns general purpose PMC with the specified MSR. Note that it can be
  64. * used for both PERFCTRn and EVNTSELn; that is why it accepts base as a
  65. * paramenter to tell them apart.
  66. */
  67. static inline struct kvm_pmc *get_gp_pmc(struct kvm_pmu *pmu, u32 msr,
  68. u32 base)
  69. {
  70. if (msr >= base && msr < base + pmu->nr_arch_gp_counters)
  71. return &pmu->gp_counters[msr - base];
  72. return NULL;
  73. }
  74. /* returns fixed PMC with the specified MSR */
  75. static inline struct kvm_pmc *get_fixed_pmc(struct kvm_pmu *pmu, u32 msr)
  76. {
  77. int base = MSR_CORE_PERF_FIXED_CTR0;
  78. if (msr >= base && msr < base + pmu->nr_arch_fixed_counters)
  79. return &pmu->fixed_counters[msr - base];
  80. return NULL;
  81. }
  82. void reprogram_gp_counter(struct kvm_pmc *pmc, u64 eventsel);
  83. void reprogram_fixed_counter(struct kvm_pmc *pmc, u8 ctrl, int fixed_idx);
  84. void reprogram_counter(struct kvm_pmu *pmu, int pmc_idx);
  85. void kvm_pmu_deliver_pmi(struct kvm_vcpu *vcpu);
  86. void kvm_pmu_handle_event(struct kvm_vcpu *vcpu);
  87. int kvm_pmu_rdpmc(struct kvm_vcpu *vcpu, unsigned pmc, u64 *data);
  88. int kvm_pmu_is_valid_msr_idx(struct kvm_vcpu *vcpu, unsigned idx);
  89. bool kvm_pmu_is_valid_msr(struct kvm_vcpu *vcpu, u32 msr);
  90. int kvm_pmu_get_msr(struct kvm_vcpu *vcpu, u32 msr, u64 *data);
  91. int kvm_pmu_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info);
  92. void kvm_pmu_refresh(struct kvm_vcpu *vcpu);
  93. void kvm_pmu_reset(struct kvm_vcpu *vcpu);
  94. void kvm_pmu_init(struct kvm_vcpu *vcpu);
  95. void kvm_pmu_destroy(struct kvm_vcpu *vcpu);
  96. extern struct kvm_pmu_ops intel_pmu_ops;
  97. extern struct kvm_pmu_ops amd_pmu_ops;
  98. #endif /* __KVM_X86_PMU_H */