KVM: x86/vPMU: rename a few PMU functions
[deliverable/linux.git] / arch / x86 / kvm / pmu.c
CommitLineData
f5132b01 1/*
c7a7062f 2 * Kernel-based Virtual Machine -- Performance Monitoring Unit support
f5132b01
GN
3 *
4 * Copyright 2011 Red Hat, Inc. and/or its affiliates.
5 *
6 * Authors:
7 * Avi Kivity <avi@redhat.com>
8 * Gleb Natapov <gleb@redhat.com>
9 *
10 * This work is licensed under the terms of the GNU GPL, version 2. See
11 * the COPYING file in the top-level directory.
12 *
13 */
14
15#include <linux/types.h>
16#include <linux/kvm_host.h>
17#include <linux/perf_event.h>
d27aa7f1 18#include <asm/perf_event.h>
f5132b01
GN
19#include "x86.h"
20#include "cpuid.h"
21#include "lapic.h"
22
23static struct kvm_arch_event_perf_mapping {
24 u8 eventsel;
25 u8 unit_mask;
26 unsigned event_type;
27 bool inexact;
28} arch_events[] = {
29 /* Index must match CPUID 0x0A.EBX bit vector */
30 [0] = { 0x3c, 0x00, PERF_COUNT_HW_CPU_CYCLES },
31 [1] = { 0xc0, 0x00, PERF_COUNT_HW_INSTRUCTIONS },
32 [2] = { 0x3c, 0x01, PERF_COUNT_HW_BUS_CYCLES },
33 [3] = { 0x2e, 0x4f, PERF_COUNT_HW_CACHE_REFERENCES },
34 [4] = { 0x2e, 0x41, PERF_COUNT_HW_CACHE_MISSES },
35 [5] = { 0xc4, 0x00, PERF_COUNT_HW_BRANCH_INSTRUCTIONS },
36 [6] = { 0xc5, 0x00, PERF_COUNT_HW_BRANCH_MISSES },
62079d8a 37 [7] = { 0x00, 0x30, PERF_COUNT_HW_REF_CPU_CYCLES },
f5132b01
GN
38};
39
40/* mapping between fixed pmc index and arch_events array */
52eb5a6d 41static int fixed_pmc_events[] = {1, 0, 7};
f5132b01
GN
42
43static bool pmc_is_gp(struct kvm_pmc *pmc)
44{
45 return pmc->type == KVM_PMC_GP;
46}
47
48static inline u64 pmc_bitmask(struct kvm_pmc *pmc)
49{
50 struct kvm_pmu *pmu = &pmc->vcpu->arch.pmu;
51
52 return pmu->counter_bitmask[pmc->type];
53}
54
c6702c9d 55static inline bool pmc_is_enabled(struct kvm_pmc *pmc)
f5132b01
GN
56{
57 struct kvm_pmu *pmu = &pmc->vcpu->arch.pmu;
58 return test_bit(pmc->idx, (unsigned long *)&pmu->global_ctrl);
59}
60
61static inline struct kvm_pmc *get_gp_pmc(struct kvm_pmu *pmu, u32 msr,
62 u32 base)
63{
64 if (msr >= base && msr < base + pmu->nr_arch_gp_counters)
65 return &pmu->gp_counters[msr - base];
66 return NULL;
67}
68
69static inline struct kvm_pmc *get_fixed_pmc(struct kvm_pmu *pmu, u32 msr)
70{
71 int base = MSR_CORE_PERF_FIXED_CTR0;
72 if (msr >= base && msr < base + pmu->nr_arch_fixed_counters)
73 return &pmu->fixed_counters[msr - base];
74 return NULL;
75}
76
77static inline struct kvm_pmc *get_fixed_pmc_idx(struct kvm_pmu *pmu, int idx)
78{
79 return get_fixed_pmc(pmu, MSR_CORE_PERF_FIXED_CTR0 + idx);
80}
81
82static struct kvm_pmc *global_idx_to_pmc(struct kvm_pmu *pmu, int idx)
83{
15c7ad51 84 if (idx < INTEL_PMC_IDX_FIXED)
f5132b01
GN
85 return get_gp_pmc(pmu, MSR_P6_EVNTSEL0 + idx, MSR_P6_EVNTSEL0);
86 else
15c7ad51 87 return get_fixed_pmc_idx(pmu, idx - INTEL_PMC_IDX_FIXED);
f5132b01
GN
88}
89
c6702c9d 90void kvm_pmu_deliver_pmi(struct kvm_vcpu *vcpu)
f5132b01
GN
91{
92 if (vcpu->arch.apic)
93 kvm_apic_local_deliver(vcpu->arch.apic, APIC_LVTPC);
94}
95
c6702c9d 96static void kvm_pmi_trigger_fn(struct irq_work *irq_work)
f5132b01
GN
97{
98 struct kvm_pmu *pmu = container_of(irq_work, struct kvm_pmu,
99 irq_work);
100 struct kvm_vcpu *vcpu = container_of(pmu, struct kvm_vcpu,
101 arch.pmu);
102
c6702c9d 103 kvm_pmu_deliver_pmi(vcpu);
f5132b01
GN
104}
105
106static void kvm_perf_overflow(struct perf_event *perf_event,
107 struct perf_sample_data *data,
108 struct pt_regs *regs)
109{
110 struct kvm_pmc *pmc = perf_event->overflow_handler_context;
111 struct kvm_pmu *pmu = &pmc->vcpu->arch.pmu;
671bd993
NA
112 if (!test_and_set_bit(pmc->idx, (unsigned long *)&pmu->reprogram_pmi)) {
113 __set_bit(pmc->idx, (unsigned long *)&pmu->global_status);
114 kvm_make_request(KVM_REQ_PMU, pmc->vcpu);
115 }
f5132b01
GN
116}
117
118static void kvm_perf_overflow_intr(struct perf_event *perf_event,
119 struct perf_sample_data *data, struct pt_regs *regs)
120{
121 struct kvm_pmc *pmc = perf_event->overflow_handler_context;
122 struct kvm_pmu *pmu = &pmc->vcpu->arch.pmu;
123 if (!test_and_set_bit(pmc->idx, (unsigned long *)&pmu->reprogram_pmi)) {
671bd993 124 __set_bit(pmc->idx, (unsigned long *)&pmu->global_status);
f5132b01
GN
125 kvm_make_request(KVM_REQ_PMU, pmc->vcpu);
126 /*
127 * Inject PMI. If vcpu was in a guest mode during NMI PMI
128 * can be ejected on a guest mode re-entry. Otherwise we can't
129 * be sure that vcpu wasn't executing hlt instruction at the
130 * time of vmexit and is not going to re-enter guest mode until,
131 * woken up. So we should wake it, but this is impossible from
132 * NMI context. Do it from irq work instead.
133 */
134 if (!kvm_is_in_guest())
135 irq_work_queue(&pmc->vcpu->arch.pmu.irq_work);
136 else
137 kvm_make_request(KVM_REQ_PMI, pmc->vcpu);
138 }
139}
140
c6702c9d 141static u64 pmc_read_counter(struct kvm_pmc *pmc)
f5132b01
GN
142{
143 u64 counter, enabled, running;
144
145 counter = pmc->counter;
146
147 if (pmc->perf_event)
148 counter += perf_event_read_value(pmc->perf_event,
149 &enabled, &running);
150
151 /* FIXME: Scaling needed? */
152
153 return counter & pmc_bitmask(pmc);
154}
155
c6702c9d 156static void pmc_stop_counter(struct kvm_pmc *pmc)
f5132b01
GN
157{
158 if (pmc->perf_event) {
c6702c9d 159 pmc->counter = pmc_read_counter(pmc);
f5132b01
GN
160 perf_event_release_kernel(pmc->perf_event);
161 pmc->perf_event = NULL;
162 }
163}
164
c6702c9d 165static void pmc_reprogram_counter(struct kvm_pmc *pmc, u32 type,
f5132b01 166 unsigned config, bool exclude_user, bool exclude_kernel,
103af0a9 167 bool intr, bool in_tx, bool in_tx_cp)
f5132b01
GN
168{
169 struct perf_event *event;
170 struct perf_event_attr attr = {
171 .type = type,
172 .size = sizeof(attr),
173 .pinned = true,
174 .exclude_idle = true,
175 .exclude_host = 1,
176 .exclude_user = exclude_user,
177 .exclude_kernel = exclude_kernel,
178 .config = config,
179 };
103af0a9
AK
180 if (in_tx)
181 attr.config |= HSW_IN_TX;
182 if (in_tx_cp)
183 attr.config |= HSW_IN_TX_CHECKPOINTED;
f5132b01
GN
184
185 attr.sample_period = (-pmc->counter) & pmc_bitmask(pmc);
186
187 event = perf_event_create_kernel_counter(&attr, -1, current,
188 intr ? kvm_perf_overflow_intr :
189 kvm_perf_overflow, pmc);
190 if (IS_ERR(event)) {
191 printk_once("kvm: pmu event creation failed %ld\n",
192 PTR_ERR(event));
193 return;
194 }
195
196 pmc->perf_event = event;
197 clear_bit(pmc->idx, (unsigned long*)&pmc->vcpu->arch.pmu.reprogram_pmi);
198}
199
200static unsigned find_arch_event(struct kvm_pmu *pmu, u8 event_select,
201 u8 unit_mask)
202{
203 int i;
204
205 for (i = 0; i < ARRAY_SIZE(arch_events); i++)
206 if (arch_events[i].eventsel == event_select
207 && arch_events[i].unit_mask == unit_mask
208 && (pmu->available_event_types & (1 << i)))
209 break;
210
211 if (i == ARRAY_SIZE(arch_events))
212 return PERF_COUNT_HW_MAX;
213
214 return arch_events[i].event_type;
215}
216
217static void reprogram_gp_counter(struct kvm_pmc *pmc, u64 eventsel)
218{
219 unsigned config, type = PERF_TYPE_RAW;
220 u8 event_select, unit_mask;
221
a7b9d2cc
GN
222 if (eventsel & ARCH_PERFMON_EVENTSEL_PIN_CONTROL)
223 printk_once("kvm pmu: pin control bit is ignored\n");
224
f5132b01
GN
225 pmc->eventsel = eventsel;
226
c6702c9d 227 pmc_stop_counter(pmc);
f5132b01 228
c6702c9d 229 if (!(eventsel & ARCH_PERFMON_EVENTSEL_ENABLE) || !pmc_is_enabled(pmc))
f5132b01
GN
230 return;
231
232 event_select = eventsel & ARCH_PERFMON_EVENTSEL_EVENT;
233 unit_mask = (eventsel & ARCH_PERFMON_EVENTSEL_UMASK) >> 8;
234
fac33683 235 if (!(eventsel & (ARCH_PERFMON_EVENTSEL_EDGE |
f5132b01 236 ARCH_PERFMON_EVENTSEL_INV |
103af0a9
AK
237 ARCH_PERFMON_EVENTSEL_CMASK |
238 HSW_IN_TX |
239 HSW_IN_TX_CHECKPOINTED))) {
f5132b01
GN
240 config = find_arch_event(&pmc->vcpu->arch.pmu, event_select,
241 unit_mask);
242 if (config != PERF_COUNT_HW_MAX)
243 type = PERF_TYPE_HARDWARE;
244 }
245
246 if (type == PERF_TYPE_RAW)
247 config = eventsel & X86_RAW_EVENT_MASK;
248
c6702c9d 249 pmc_reprogram_counter(pmc, type, config,
f5132b01
GN
250 !(eventsel & ARCH_PERFMON_EVENTSEL_USR),
251 !(eventsel & ARCH_PERFMON_EVENTSEL_OS),
103af0a9
AK
252 eventsel & ARCH_PERFMON_EVENTSEL_INT,
253 (eventsel & HSW_IN_TX),
254 (eventsel & HSW_IN_TX_CHECKPOINTED));
f5132b01
GN
255}
256
257static void reprogram_fixed_counter(struct kvm_pmc *pmc, u8 en_pmi, int idx)
258{
259 unsigned en = en_pmi & 0x3;
260 bool pmi = en_pmi & 0x8;
261
c6702c9d 262 pmc_stop_counter(pmc);
f5132b01 263
c6702c9d 264 if (!en || !pmc_is_enabled(pmc))
f5132b01
GN
265 return;
266
c6702c9d 267 pmc_reprogram_counter(pmc, PERF_TYPE_HARDWARE,
f5132b01
GN
268 arch_events[fixed_pmc_events[idx]].event_type,
269 !(en & 0x2), /* exclude user */
270 !(en & 0x1), /* exclude kernel */
103af0a9 271 pmi, false, false);
f5132b01
GN
272}
273
c6702c9d 274static inline u8 fixed_ctrl_field(u64 ctrl, int idx)
f5132b01
GN
275{
276 return (ctrl >> (idx * 4)) & 0xf;
277}
278
279static void reprogram_fixed_counters(struct kvm_pmu *pmu, u64 data)
280{
281 int i;
282
283 for (i = 0; i < pmu->nr_arch_fixed_counters; i++) {
c6702c9d 284 u8 en_pmi = fixed_ctrl_field(data, i);
f5132b01
GN
285 struct kvm_pmc *pmc = get_fixed_pmc_idx(pmu, i);
286
c6702c9d 287 if (fixed_ctrl_field(pmu->fixed_ctr_ctrl, i) == en_pmi)
f5132b01
GN
288 continue;
289
290 reprogram_fixed_counter(pmc, en_pmi, i);
291 }
292
293 pmu->fixed_ctr_ctrl = data;
294}
295
c6702c9d 296static void reprogram_counter(struct kvm_pmu *pmu, int idx)
f5132b01
GN
297{
298 struct kvm_pmc *pmc = global_idx_to_pmc(pmu, idx);
299
300 if (!pmc)
301 return;
302
303 if (pmc_is_gp(pmc))
304 reprogram_gp_counter(pmc, pmc->eventsel);
305 else {
15c7ad51 306 int fidx = idx - INTEL_PMC_IDX_FIXED;
f5132b01 307 reprogram_fixed_counter(pmc,
c6702c9d 308 fixed_ctrl_field(pmu->fixed_ctr_ctrl, fidx), fidx);
f5132b01
GN
309 }
310}
311
312static void global_ctrl_changed(struct kvm_pmu *pmu, u64 data)
313{
314 int bit;
315 u64 diff = pmu->global_ctrl ^ data;
316
317 pmu->global_ctrl = data;
318
319 for_each_set_bit(bit, (unsigned long *)&diff, X86_PMC_IDX_MAX)
c6702c9d 320 reprogram_counter(pmu, bit);
f5132b01
GN
321}
322
c6702c9d 323bool kvm_pmu_is_valid_msr(struct kvm_vcpu *vcpu, u32 msr)
f5132b01
GN
324{
325 struct kvm_pmu *pmu = &vcpu->arch.pmu;
326 int ret;
327
328 switch (msr) {
329 case MSR_CORE_PERF_FIXED_CTR_CTRL:
330 case MSR_CORE_PERF_GLOBAL_STATUS:
331 case MSR_CORE_PERF_GLOBAL_CTRL:
332 case MSR_CORE_PERF_GLOBAL_OVF_CTRL:
333 ret = pmu->version > 1;
334 break;
335 default:
336 ret = get_gp_pmc(pmu, msr, MSR_IA32_PERFCTR0)
337 || get_gp_pmc(pmu, msr, MSR_P6_EVNTSEL0)
338 || get_fixed_pmc(pmu, msr);
339 break;
340 }
341 return ret;
342}
343
344int kvm_pmu_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
345{
346 struct kvm_pmu *pmu = &vcpu->arch.pmu;
347 struct kvm_pmc *pmc;
348
349 switch (index) {
350 case MSR_CORE_PERF_FIXED_CTR_CTRL:
351 *data = pmu->fixed_ctr_ctrl;
352 return 0;
353 case MSR_CORE_PERF_GLOBAL_STATUS:
354 *data = pmu->global_status;
355 return 0;
356 case MSR_CORE_PERF_GLOBAL_CTRL:
357 *data = pmu->global_ctrl;
358 return 0;
359 case MSR_CORE_PERF_GLOBAL_OVF_CTRL:
360 *data = pmu->global_ovf_ctrl;
361 return 0;
362 default:
363 if ((pmc = get_gp_pmc(pmu, index, MSR_IA32_PERFCTR0)) ||
364 (pmc = get_fixed_pmc(pmu, index))) {
c6702c9d 365 *data = pmc_read_counter(pmc);
f5132b01
GN
366 return 0;
367 } else if ((pmc = get_gp_pmc(pmu, index, MSR_P6_EVNTSEL0))) {
368 *data = pmc->eventsel;
369 return 0;
370 }
371 }
372 return 1;
373}
374
afd80d85 375int kvm_pmu_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
f5132b01
GN
376{
377 struct kvm_pmu *pmu = &vcpu->arch.pmu;
378 struct kvm_pmc *pmc;
afd80d85
PB
379 u32 index = msr_info->index;
380 u64 data = msr_info->data;
f5132b01
GN
381
382 switch (index) {
383 case MSR_CORE_PERF_FIXED_CTR_CTRL:
384 if (pmu->fixed_ctr_ctrl == data)
385 return 0;
fea52953 386 if (!(data & 0xfffffffffffff444ull)) {
f5132b01
GN
387 reprogram_fixed_counters(pmu, data);
388 return 0;
389 }
390 break;
391 case MSR_CORE_PERF_GLOBAL_STATUS:
afd80d85
PB
392 if (msr_info->host_initiated) {
393 pmu->global_status = data;
394 return 0;
395 }
f5132b01
GN
396 break; /* RO MSR */
397 case MSR_CORE_PERF_GLOBAL_CTRL:
398 if (pmu->global_ctrl == data)
399 return 0;
400 if (!(data & pmu->global_ctrl_mask)) {
401 global_ctrl_changed(pmu, data);
402 return 0;
403 }
404 break;
405 case MSR_CORE_PERF_GLOBAL_OVF_CTRL:
406 if (!(data & (pmu->global_ctrl_mask & ~(3ull<<62)))) {
afd80d85
PB
407 if (!msr_info->host_initiated)
408 pmu->global_status &= ~data;
f5132b01
GN
409 pmu->global_ovf_ctrl = data;
410 return 0;
411 }
412 break;
413 default:
414 if ((pmc = get_gp_pmc(pmu, index, MSR_IA32_PERFCTR0)) ||
415 (pmc = get_fixed_pmc(pmu, index))) {
afd80d85
PB
416 if (!msr_info->host_initiated)
417 data = (s64)(s32)data;
c6702c9d 418 pmc->counter += data - pmc_read_counter(pmc);
f5132b01
GN
419 return 0;
420 } else if ((pmc = get_gp_pmc(pmu, index, MSR_P6_EVNTSEL0))) {
421 if (data == pmc->eventsel)
422 return 0;
103af0a9 423 if (!(data & pmu->reserved_bits)) {
f5132b01
GN
424 reprogram_gp_counter(pmc, data);
425 return 0;
426 }
427 }
428 }
429 return 1;
430}
431
c6702c9d 432int kvm_pmu_is_valid_msr_idx(struct kvm_vcpu *vcpu, unsigned pmc)
67f4d428
NA
433{
434 struct kvm_pmu *pmu = &vcpu->arch.pmu;
435 bool fixed = pmc & (1u << 30);
436 pmc &= ~(3u << 30);
437 return (!fixed && pmc >= pmu->nr_arch_gp_counters) ||
438 (fixed && pmc >= pmu->nr_arch_fixed_counters);
439}
440
c6702c9d 441int kvm_pmu_rdpmc(struct kvm_vcpu *vcpu, unsigned pmc, u64 *data)
f5132b01
GN
442{
443 struct kvm_pmu *pmu = &vcpu->arch.pmu;
444 bool fast_mode = pmc & (1u << 31);
445 bool fixed = pmc & (1u << 30);
446 struct kvm_pmc *counters;
447 u64 ctr;
448
270c6c79 449 pmc &= ~(3u << 30);
f5132b01
GN
450 if (!fixed && pmc >= pmu->nr_arch_gp_counters)
451 return 1;
452 if (fixed && pmc >= pmu->nr_arch_fixed_counters)
453 return 1;
454 counters = fixed ? pmu->fixed_counters : pmu->gp_counters;
c6702c9d 455 ctr = pmc_read_counter(&counters[pmc]);
f5132b01
GN
456 if (fast_mode)
457 ctr = (u32)ctr;
458 *data = ctr;
459
460 return 0;
461}
462
c6702c9d 463void kvm_pmu_refresh(struct kvm_vcpu *vcpu)
f5132b01
GN
464{
465 struct kvm_pmu *pmu = &vcpu->arch.pmu;
466 struct kvm_cpuid_entry2 *entry;
d27aa7f1
NA
467 union cpuid10_eax eax;
468 union cpuid10_edx edx;
f5132b01
GN
469
470 pmu->nr_arch_gp_counters = 0;
471 pmu->nr_arch_fixed_counters = 0;
472 pmu->counter_bitmask[KVM_PMC_GP] = 0;
473 pmu->counter_bitmask[KVM_PMC_FIXED] = 0;
474 pmu->version = 0;
103af0a9 475 pmu->reserved_bits = 0xffffffff00200000ull;
f5132b01
GN
476
477 entry = kvm_find_cpuid_entry(vcpu, 0xa, 0);
478 if (!entry)
479 return;
d27aa7f1
NA
480 eax.full = entry->eax;
481 edx.full = entry->edx;
f5132b01 482
d27aa7f1 483 pmu->version = eax.split.version_id;
f5132b01
GN
484 if (!pmu->version)
485 return;
486
d27aa7f1
NA
487 pmu->nr_arch_gp_counters = min_t(int, eax.split.num_counters,
488 INTEL_PMC_MAX_GENERIC);
489 pmu->counter_bitmask[KVM_PMC_GP] = ((u64)1 << eax.split.bit_width) - 1;
490 pmu->available_event_types = ~entry->ebx &
491 ((1ull << eax.split.mask_length) - 1);
f5132b01
GN
492
493 if (pmu->version == 1) {
f19a0c2c
GN
494 pmu->nr_arch_fixed_counters = 0;
495 } else {
d27aa7f1
NA
496 pmu->nr_arch_fixed_counters =
497 min_t(int, edx.split.num_counters_fixed,
15c7ad51 498 INTEL_PMC_MAX_FIXED);
f19a0c2c 499 pmu->counter_bitmask[KVM_PMC_FIXED] =
d27aa7f1 500 ((u64)1 << edx.split.bit_width_fixed) - 1;
f5132b01
GN
501 }
502
f19a0c2c 503 pmu->global_ctrl = ((1 << pmu->nr_arch_gp_counters) - 1) |
15c7ad51 504 (((1ull << pmu->nr_arch_fixed_counters) - 1) << INTEL_PMC_IDX_FIXED);
f19a0c2c 505 pmu->global_ctrl_mask = ~pmu->global_ctrl;
103af0a9
AK
506
507 entry = kvm_find_cpuid_entry(vcpu, 7, 0);
508 if (entry &&
509 (boot_cpu_has(X86_FEATURE_HLE) || boot_cpu_has(X86_FEATURE_RTM)) &&
510 (entry->ebx & (X86_FEATURE_HLE|X86_FEATURE_RTM)))
511 pmu->reserved_bits ^= HSW_IN_TX|HSW_IN_TX_CHECKPOINTED;
f5132b01
GN
512}
513
514void kvm_pmu_init(struct kvm_vcpu *vcpu)
515{
516 int i;
517 struct kvm_pmu *pmu = &vcpu->arch.pmu;
518
519 memset(pmu, 0, sizeof(*pmu));
15c7ad51 520 for (i = 0; i < INTEL_PMC_MAX_GENERIC; i++) {
f5132b01
GN
521 pmu->gp_counters[i].type = KVM_PMC_GP;
522 pmu->gp_counters[i].vcpu = vcpu;
523 pmu->gp_counters[i].idx = i;
524 }
15c7ad51 525 for (i = 0; i < INTEL_PMC_MAX_FIXED; i++) {
f5132b01
GN
526 pmu->fixed_counters[i].type = KVM_PMC_FIXED;
527 pmu->fixed_counters[i].vcpu = vcpu;
15c7ad51 528 pmu->fixed_counters[i].idx = i + INTEL_PMC_IDX_FIXED;
f5132b01 529 }
c6702c9d
WH
530 init_irq_work(&pmu->irq_work, kvm_pmi_trigger_fn);
531 kvm_pmu_refresh(vcpu);
f5132b01
GN
532}
533
534void kvm_pmu_reset(struct kvm_vcpu *vcpu)
535{
536 struct kvm_pmu *pmu = &vcpu->arch.pmu;
537 int i;
538
539 irq_work_sync(&pmu->irq_work);
15c7ad51 540 for (i = 0; i < INTEL_PMC_MAX_GENERIC; i++) {
f5132b01 541 struct kvm_pmc *pmc = &pmu->gp_counters[i];
c6702c9d 542 pmc_stop_counter(pmc);
f5132b01
GN
543 pmc->counter = pmc->eventsel = 0;
544 }
545
15c7ad51 546 for (i = 0; i < INTEL_PMC_MAX_FIXED; i++)
c6702c9d 547 pmc_stop_counter(&pmu->fixed_counters[i]);
f5132b01
GN
548
549 pmu->fixed_ctr_ctrl = pmu->global_ctrl = pmu->global_status =
550 pmu->global_ovf_ctrl = 0;
551}
552
553void kvm_pmu_destroy(struct kvm_vcpu *vcpu)
554{
555 kvm_pmu_reset(vcpu);
556}
557
c6702c9d 558void kvm_pmu_handle_event(struct kvm_vcpu *vcpu)
f5132b01
GN
559{
560 struct kvm_pmu *pmu = &vcpu->arch.pmu;
561 u64 bitmask;
562 int bit;
563
564 bitmask = pmu->reprogram_pmi;
565
566 for_each_set_bit(bit, (unsigned long *)&bitmask, X86_PMC_IDX_MAX) {
567 struct kvm_pmc *pmc = global_idx_to_pmc(pmu, bit);
568
569 if (unlikely(!pmc || !pmc->perf_event)) {
570 clear_bit(bit, (unsigned long *)&pmu->reprogram_pmi);
571 continue;
572 }
573
c6702c9d 574 reprogram_counter(pmu, bit);
f5132b01
GN
575 }
576}
This page took 0.202906 seconds and 5 git commands to generate.