1 // SPDX-License-Identifier: GPL-2.0-only
3 * KVM PMU support for AMD
5 * Copyright 2015, Red Hat, Inc. and/or its affiliates.
10 * Implementation is based on pmu_intel.c file
12 #include <linux/types.h>
13 #include <linux/kvm_host.h>
14 #include <linux/perf_event.h>
35 /* duplicated from amd_perfmon_event_map, K7 and above should work. */
36 static struct kvm_event_hw_type_mapping amd_event_mapping[] = {
37 [0] = { 0x76, 0x00, PERF_COUNT_HW_CPU_CYCLES },
38 [1] = { 0xc0, 0x00, PERF_COUNT_HW_INSTRUCTIONS },
39 [2] = { 0x7d, 0x07, PERF_COUNT_HW_CACHE_REFERENCES },
40 [3] = { 0x7e, 0x07, PERF_COUNT_HW_CACHE_MISSES },
41 [4] = { 0xc2, 0x00, PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
42 [5] = { 0xc3, 0x00, PERF_COUNT_HW_BRANCH_MISSES },
43 [6] = { 0xd0, 0x00, PERF_COUNT_HW_STALLED_CYCLES_FRONTEND },
44 [7] = { 0xd1, 0x00, PERF_COUNT_HW_STALLED_CYCLES_BACKEND },
47 static unsigned int get_msr_base(struct kvm_pmu *pmu, enum pmu_type type)
49 struct kvm_vcpu *vcpu = pmu_to_vcpu(pmu);
51 if (guest_cpuid_has(vcpu, X86_FEATURE_PERFCTR_CORE)) {
52 if (type == PMU_TYPE_COUNTER)
53 return MSR_F15H_PERF_CTR;
55 return MSR_F15H_PERF_CTL;
57 if (type == PMU_TYPE_COUNTER)
58 return MSR_K7_PERFCTR0;
60 return MSR_K7_EVNTSEL0;
64 static enum index msr_to_index(u32 msr)
67 case MSR_F15H_PERF_CTL0:
68 case MSR_F15H_PERF_CTR0:
72 case MSR_F15H_PERF_CTL1:
73 case MSR_F15H_PERF_CTR1:
77 case MSR_F15H_PERF_CTL2:
78 case MSR_F15H_PERF_CTR2:
82 case MSR_F15H_PERF_CTL3:
83 case MSR_F15H_PERF_CTR3:
87 case MSR_F15H_PERF_CTL4:
88 case MSR_F15H_PERF_CTR4:
90 case MSR_F15H_PERF_CTL5:
91 case MSR_F15H_PERF_CTR5:
98 static inline struct kvm_pmc *get_gp_pmc_amd(struct kvm_pmu *pmu, u32 msr,
102 case MSR_F15H_PERF_CTL0:
103 case MSR_F15H_PERF_CTL1:
104 case MSR_F15H_PERF_CTL2:
105 case MSR_F15H_PERF_CTL3:
106 case MSR_F15H_PERF_CTL4:
107 case MSR_F15H_PERF_CTL5:
108 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
109 if (type != PMU_TYPE_EVNTSEL)
112 case MSR_F15H_PERF_CTR0:
113 case MSR_F15H_PERF_CTR1:
114 case MSR_F15H_PERF_CTR2:
115 case MSR_F15H_PERF_CTR3:
116 case MSR_F15H_PERF_CTR4:
117 case MSR_F15H_PERF_CTR5:
118 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
119 if (type != PMU_TYPE_COUNTER)
126 return &pmu->gp_counters[msr_to_index(msr)];
129 static unsigned amd_find_arch_event(struct kvm_pmu *pmu,
135 for (i = 0; i < ARRAY_SIZE(amd_event_mapping); i++)
136 if (amd_event_mapping[i].eventsel == event_select
137 && amd_event_mapping[i].unit_mask == unit_mask)
140 if (i == ARRAY_SIZE(amd_event_mapping))
141 return PERF_COUNT_HW_MAX;
143 return amd_event_mapping[i].event_type;
146 /* return PERF_COUNT_HW_MAX as AMD doesn't have fixed events */
147 static unsigned amd_find_fixed_event(int idx)
149 return PERF_COUNT_HW_MAX;
152 /* check if a PMC is enabled by comparing it against global_ctrl bits. Because
153 * AMD CPU doesn't have global_ctrl MSR, all PMCs are enabled (return TRUE).
155 static bool amd_pmc_is_enabled(struct kvm_pmc *pmc)
160 static struct kvm_pmc *amd_pmc_idx_to_pmc(struct kvm_pmu *pmu, int pmc_idx)
162 unsigned int base = get_msr_base(pmu, PMU_TYPE_COUNTER);
163 struct kvm_vcpu *vcpu = pmu_to_vcpu(pmu);
165 if (guest_cpuid_has(vcpu, X86_FEATURE_PERFCTR_CORE)) {
167 * The idx is contiguous. The MSRs are not. The counter MSRs
168 * are interleaved with the event select MSRs.
173 return get_gp_pmc_amd(pmu, base + pmc_idx, PMU_TYPE_COUNTER);
176 /* returns 0 if idx's corresponding MSR exists; otherwise returns 1. */
177 static int amd_is_valid_msr_idx(struct kvm_vcpu *vcpu, unsigned idx)
179 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
183 return (idx >= pmu->nr_arch_gp_counters);
186 /* idx is the ECX register of RDPMC instruction */
187 static struct kvm_pmc *amd_msr_idx_to_pmc(struct kvm_vcpu *vcpu, unsigned idx, u64 *mask)
189 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
190 struct kvm_pmc *counters;
193 if (idx >= pmu->nr_arch_gp_counters)
195 counters = pmu->gp_counters;
197 return &counters[idx];
200 static bool amd_is_valid_msr(struct kvm_vcpu *vcpu, u32 msr)
202 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
205 ret = get_gp_pmc_amd(pmu, msr, PMU_TYPE_COUNTER) ||
206 get_gp_pmc_amd(pmu, msr, PMU_TYPE_EVNTSEL);
211 static int amd_pmu_get_msr(struct kvm_vcpu *vcpu, u32 msr, u64 *data)
213 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
217 pmc = get_gp_pmc_amd(pmu, msr, PMU_TYPE_COUNTER);
219 *data = pmc_read_counter(pmc);
223 pmc = get_gp_pmc_amd(pmu, msr, PMU_TYPE_EVNTSEL);
225 *data = pmc->eventsel;
232 static int amd_pmu_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
234 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
236 u32 msr = msr_info->index;
237 u64 data = msr_info->data;
240 pmc = get_gp_pmc_amd(pmu, msr, PMU_TYPE_COUNTER);
242 pmc->counter += data - pmc_read_counter(pmc);
246 pmc = get_gp_pmc_amd(pmu, msr, PMU_TYPE_EVNTSEL);
248 if (data == pmc->eventsel)
250 if (!(data & pmu->reserved_bits)) {
251 reprogram_gp_counter(pmc, data);
259 static void amd_pmu_refresh(struct kvm_vcpu *vcpu)
261 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
263 if (guest_cpuid_has(vcpu, X86_FEATURE_PERFCTR_CORE))
264 pmu->nr_arch_gp_counters = AMD64_NUM_COUNTERS_CORE;
266 pmu->nr_arch_gp_counters = AMD64_NUM_COUNTERS;
268 pmu->counter_bitmask[KVM_PMC_GP] = ((u64)1 << 48) - 1;
269 pmu->reserved_bits = 0xffffffff00200000ull;
271 /* not applicable to AMD; but clean them to prevent any fall out */
272 pmu->counter_bitmask[KVM_PMC_FIXED] = 0;
273 pmu->nr_arch_fixed_counters = 0;
274 pmu->global_status = 0;
277 static void amd_pmu_init(struct kvm_vcpu *vcpu)
279 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
282 BUILD_BUG_ON(AMD64_NUM_COUNTERS_CORE > INTEL_PMC_MAX_GENERIC);
284 for (i = 0; i < AMD64_NUM_COUNTERS_CORE ; i++) {
285 pmu->gp_counters[i].type = KVM_PMC_GP;
286 pmu->gp_counters[i].vcpu = vcpu;
287 pmu->gp_counters[i].idx = i;
291 static void amd_pmu_reset(struct kvm_vcpu *vcpu)
293 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
296 for (i = 0; i < AMD64_NUM_COUNTERS_CORE; i++) {
297 struct kvm_pmc *pmc = &pmu->gp_counters[i];
299 pmc_stop_counter(pmc);
300 pmc->counter = pmc->eventsel = 0;
304 struct kvm_pmu_ops amd_pmu_ops = {
305 .find_arch_event = amd_find_arch_event,
306 .find_fixed_event = amd_find_fixed_event,
307 .pmc_is_enabled = amd_pmc_is_enabled,
308 .pmc_idx_to_pmc = amd_pmc_idx_to_pmc,
309 .msr_idx_to_pmc = amd_msr_idx_to_pmc,
310 .is_valid_msr_idx = amd_is_valid_msr_idx,
311 .is_valid_msr = amd_is_valid_msr,
312 .get_msr = amd_pmu_get_msr,
313 .set_msr = amd_pmu_set_msr,
314 .refresh = amd_pmu_refresh,
315 .init = amd_pmu_init,
316 .reset = amd_pmu_reset,