1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */ 2474a5bb9SWei Huang #ifndef __KVM_X86_PMU_H 3474a5bb9SWei Huang #define __KVM_X86_PMU_H 4474a5bb9SWei Huang 5*13c5183aSMarios Pomonis #include <linux/nospec.h> 6*13c5183aSMarios Pomonis 7474a5bb9SWei Huang #define vcpu_to_pmu(vcpu) (&(vcpu)->arch.pmu) 8474a5bb9SWei Huang #define pmu_to_vcpu(pmu) (container_of((pmu), struct kvm_vcpu, arch.pmu)) 9474a5bb9SWei Huang #define pmc_to_pmu(pmc) (&(pmc)->vcpu->arch.pmu) 10474a5bb9SWei Huang 1125462f7fSWei Huang /* retrieve the 4 bits for EN and PMI out of IA32_FIXED_CTR_CTRL */ 1225462f7fSWei Huang #define fixed_ctrl_field(ctrl_reg, idx) (((ctrl_reg) >> ((idx)*4)) & 0xf) 1325462f7fSWei Huang 142d7921c4SArbel Moshe #define VMWARE_BACKDOOR_PMC_HOST_TSC 0x10000 152d7921c4SArbel Moshe #define VMWARE_BACKDOOR_PMC_REAL_TIME 0x10001 162d7921c4SArbel Moshe #define VMWARE_BACKDOOR_PMC_APPARENT_TIME 0x10002 172d7921c4SArbel Moshe 18474a5bb9SWei Huang struct kvm_event_hw_type_mapping { 19474a5bb9SWei Huang u8 eventsel; 20474a5bb9SWei Huang u8 unit_mask; 21474a5bb9SWei Huang unsigned event_type; 22474a5bb9SWei Huang }; 23474a5bb9SWei Huang 2425462f7fSWei Huang struct kvm_pmu_ops { 2525462f7fSWei Huang unsigned (*find_arch_event)(struct kvm_pmu *pmu, u8 event_select, 2625462f7fSWei Huang u8 unit_mask); 2725462f7fSWei Huang unsigned (*find_fixed_event)(int idx); 2825462f7fSWei Huang bool (*pmc_is_enabled)(struct kvm_pmc *pmc); 2925462f7fSWei Huang struct kvm_pmc *(*pmc_idx_to_pmc)(struct kvm_pmu *pmu, int pmc_idx); 3098ff80f5SLike Xu struct kvm_pmc *(*rdpmc_ecx_to_pmc)(struct kvm_vcpu *vcpu, 3198ff80f5SLike Xu unsigned int idx, u64 *mask); 32c900c156SLike Xu struct kvm_pmc *(*msr_idx_to_pmc)(struct kvm_vcpu *vcpu, u32 msr); 3398ff80f5SLike Xu int (*is_valid_rdpmc_ecx)(struct kvm_vcpu *vcpu, unsigned int idx); 3425462f7fSWei Huang bool (*is_valid_msr)(struct kvm_vcpu *vcpu, u32 msr); 3525462f7fSWei Huang int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr, u64 *data); 3625462f7fSWei Huang int (*set_msr)(struct kvm_vcpu *vcpu, struct msr_data *msr_info); 3725462f7fSWei Huang void (*refresh)(struct kvm_vcpu *vcpu); 3825462f7fSWei Huang void (*init)(struct kvm_vcpu *vcpu); 3925462f7fSWei Huang void (*reset)(struct kvm_vcpu *vcpu); 4025462f7fSWei Huang }; 4125462f7fSWei Huang 4225462f7fSWei Huang static inline u64 pmc_bitmask(struct kvm_pmc *pmc) 4325462f7fSWei Huang { 4425462f7fSWei Huang struct kvm_pmu *pmu = pmc_to_pmu(pmc); 4525462f7fSWei Huang 4625462f7fSWei Huang return pmu->counter_bitmask[pmc->type]; 4725462f7fSWei Huang } 4825462f7fSWei Huang 4925462f7fSWei Huang static inline u64 pmc_read_counter(struct kvm_pmc *pmc) 5025462f7fSWei Huang { 5125462f7fSWei Huang u64 counter, enabled, running; 5225462f7fSWei Huang 5325462f7fSWei Huang counter = pmc->counter; 5425462f7fSWei Huang if (pmc->perf_event) 5525462f7fSWei Huang counter += perf_event_read_value(pmc->perf_event, 5625462f7fSWei Huang &enabled, &running); 5725462f7fSWei Huang /* FIXME: Scaling needed? */ 5825462f7fSWei Huang return counter & pmc_bitmask(pmc); 5925462f7fSWei Huang } 6025462f7fSWei Huang 61a6da0d77SLike Xu static inline void pmc_release_perf_event(struct kvm_pmc *pmc) 62a6da0d77SLike Xu { 63a6da0d77SLike Xu if (pmc->perf_event) { 64a6da0d77SLike Xu perf_event_release_kernel(pmc->perf_event); 65a6da0d77SLike Xu pmc->perf_event = NULL; 66a6da0d77SLike Xu pmc->current_config = 0; 67b35e5548SLike Xu pmc_to_pmu(pmc)->event_count--; 68a6da0d77SLike Xu } 69a6da0d77SLike Xu } 70a6da0d77SLike Xu 7125462f7fSWei Huang static inline void pmc_stop_counter(struct kvm_pmc *pmc) 7225462f7fSWei Huang { 7325462f7fSWei Huang if (pmc->perf_event) { 7425462f7fSWei Huang pmc->counter = pmc_read_counter(pmc); 75a6da0d77SLike Xu pmc_release_perf_event(pmc); 7625462f7fSWei Huang } 7725462f7fSWei Huang } 7825462f7fSWei Huang 7925462f7fSWei Huang static inline bool pmc_is_gp(struct kvm_pmc *pmc) 8025462f7fSWei Huang { 8125462f7fSWei Huang return pmc->type == KVM_PMC_GP; 8225462f7fSWei Huang } 8325462f7fSWei Huang 8425462f7fSWei Huang static inline bool pmc_is_fixed(struct kvm_pmc *pmc) 8525462f7fSWei Huang { 8625462f7fSWei Huang return pmc->type == KVM_PMC_FIXED; 8725462f7fSWei Huang } 8825462f7fSWei Huang 8925462f7fSWei Huang static inline bool pmc_is_enabled(struct kvm_pmc *pmc) 9025462f7fSWei Huang { 9125462f7fSWei Huang return kvm_x86_ops->pmu_ops->pmc_is_enabled(pmc); 9225462f7fSWei Huang } 9325462f7fSWei Huang 949477f444SOliver Upton static inline bool kvm_valid_perf_global_ctrl(struct kvm_pmu *pmu, 959477f444SOliver Upton u64 data) 969477f444SOliver Upton { 979477f444SOliver Upton return !(pmu->global_ctrl_mask & data); 989477f444SOliver Upton } 999477f444SOliver Upton 10025462f7fSWei Huang /* returns general purpose PMC with the specified MSR. Note that it can be 10125462f7fSWei Huang * used for both PERFCTRn and EVNTSELn; that is why it accepts base as a 10225462f7fSWei Huang * paramenter to tell them apart. 10325462f7fSWei Huang */ 10425462f7fSWei Huang static inline struct kvm_pmc *get_gp_pmc(struct kvm_pmu *pmu, u32 msr, 10525462f7fSWei Huang u32 base) 10625462f7fSWei Huang { 107*13c5183aSMarios Pomonis if (msr >= base && msr < base + pmu->nr_arch_gp_counters) { 108*13c5183aSMarios Pomonis u32 index = array_index_nospec(msr - base, 109*13c5183aSMarios Pomonis pmu->nr_arch_gp_counters); 110*13c5183aSMarios Pomonis 111*13c5183aSMarios Pomonis return &pmu->gp_counters[index]; 112*13c5183aSMarios Pomonis } 11325462f7fSWei Huang 11425462f7fSWei Huang return NULL; 11525462f7fSWei Huang } 11625462f7fSWei Huang 11725462f7fSWei Huang /* returns fixed PMC with the specified MSR */ 11825462f7fSWei Huang static inline struct kvm_pmc *get_fixed_pmc(struct kvm_pmu *pmu, u32 msr) 11925462f7fSWei Huang { 12025462f7fSWei Huang int base = MSR_CORE_PERF_FIXED_CTR0; 12125462f7fSWei Huang 122*13c5183aSMarios Pomonis if (msr >= base && msr < base + pmu->nr_arch_fixed_counters) { 123*13c5183aSMarios Pomonis u32 index = array_index_nospec(msr - base, 124*13c5183aSMarios Pomonis pmu->nr_arch_fixed_counters); 125*13c5183aSMarios Pomonis 126*13c5183aSMarios Pomonis return &pmu->fixed_counters[index]; 127*13c5183aSMarios Pomonis } 12825462f7fSWei Huang 12925462f7fSWei Huang return NULL; 13025462f7fSWei Huang } 13125462f7fSWei Huang 13225462f7fSWei Huang void reprogram_gp_counter(struct kvm_pmc *pmc, u64 eventsel); 13325462f7fSWei Huang void reprogram_fixed_counter(struct kvm_pmc *pmc, u8 ctrl, int fixed_idx); 13425462f7fSWei Huang void reprogram_counter(struct kvm_pmu *pmu, int pmc_idx); 13525462f7fSWei Huang 136474a5bb9SWei Huang void kvm_pmu_deliver_pmi(struct kvm_vcpu *vcpu); 137474a5bb9SWei Huang void kvm_pmu_handle_event(struct kvm_vcpu *vcpu); 138474a5bb9SWei Huang int kvm_pmu_rdpmc(struct kvm_vcpu *vcpu, unsigned pmc, u64 *data); 13998ff80f5SLike Xu int kvm_pmu_is_valid_rdpmc_ecx(struct kvm_vcpu *vcpu, unsigned int idx); 140474a5bb9SWei Huang bool kvm_pmu_is_valid_msr(struct kvm_vcpu *vcpu, u32 msr); 141474a5bb9SWei Huang int kvm_pmu_get_msr(struct kvm_vcpu *vcpu, u32 msr, u64 *data); 142474a5bb9SWei Huang int kvm_pmu_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info); 143474a5bb9SWei Huang void kvm_pmu_refresh(struct kvm_vcpu *vcpu); 144474a5bb9SWei Huang void kvm_pmu_reset(struct kvm_vcpu *vcpu); 145474a5bb9SWei Huang void kvm_pmu_init(struct kvm_vcpu *vcpu); 146b35e5548SLike Xu void kvm_pmu_cleanup(struct kvm_vcpu *vcpu); 147474a5bb9SWei Huang void kvm_pmu_destroy(struct kvm_vcpu *vcpu); 14866bb8a06SEric Hankland int kvm_vm_ioctl_set_pmu_event_filter(struct kvm *kvm, void __user *argp); 149474a5bb9SWei Huang 1502d7921c4SArbel Moshe bool is_vmware_backdoor_pmc(u32 pmc_idx); 1512d7921c4SArbel Moshe 15225462f7fSWei Huang extern struct kvm_pmu_ops intel_pmu_ops; 15325462f7fSWei Huang extern struct kvm_pmu_ops amd_pmu_ops; 154474a5bb9SWei Huang #endif /* __KVM_X86_PMU_H */ 155