2 * Copyright (C) 2015 Linaro Ltd.
3 * Author: Shannon Zhao <shannon.zhao@linaro.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/cpu.h>
19 #include <linux/kvm.h>
20 #include <linux/kvm_host.h>
21 #include <linux/perf_event.h>
22 #include <linux/uaccess.h>
23 #include <asm/kvm_emulate.h>
24 #include <kvm/arm_pmu.h>
25 #include <kvm/arm_vgic.h>
28 * kvm_pmu_get_counter_value - get PMU counter value
29 * @vcpu: The vcpu pointer
30 * @select_idx: The counter index
32 u64
kvm_pmu_get_counter_value(struct kvm_vcpu
*vcpu
, u64 select_idx
)
34 u64 counter
, reg
, enabled
, running
;
35 struct kvm_pmu
*pmu
= &vcpu
->arch
.pmu
;
36 struct kvm_pmc
*pmc
= &pmu
->pmc
[select_idx
];
38 reg
= (select_idx
== ARMV8_PMU_CYCLE_IDX
)
39 ? PMCCNTR_EL0
: PMEVCNTR0_EL0
+ select_idx
;
40 counter
= vcpu_sys_reg(vcpu
, reg
);
42 /* The real counter value is equal to the value of counter register plus
43 * the value perf event counts.
46 counter
+= perf_event_read_value(pmc
->perf_event
, &enabled
,
49 return counter
& pmc
->bitmask
;
53 * kvm_pmu_set_counter_value - set PMU counter value
54 * @vcpu: The vcpu pointer
55 * @select_idx: The counter index
56 * @val: The counter value
58 void kvm_pmu_set_counter_value(struct kvm_vcpu
*vcpu
, u64 select_idx
, u64 val
)
62 reg
= (select_idx
== ARMV8_PMU_CYCLE_IDX
)
63 ? PMCCNTR_EL0
: PMEVCNTR0_EL0
+ select_idx
;
64 vcpu_sys_reg(vcpu
, reg
) += (s64
)val
- kvm_pmu_get_counter_value(vcpu
, select_idx
);
68 * kvm_pmu_stop_counter - stop PMU counter
69 * @pmc: The PMU counter pointer
71 * If this counter has been configured to monitor some event, release it here.
73 static void kvm_pmu_stop_counter(struct kvm_vcpu
*vcpu
, struct kvm_pmc
*pmc
)
77 if (pmc
->perf_event
) {
78 counter
= kvm_pmu_get_counter_value(vcpu
, pmc
->idx
);
79 reg
= (pmc
->idx
== ARMV8_PMU_CYCLE_IDX
)
80 ? PMCCNTR_EL0
: PMEVCNTR0_EL0
+ pmc
->idx
;
81 vcpu_sys_reg(vcpu
, reg
) = counter
;
82 perf_event_disable(pmc
->perf_event
);
83 perf_event_release_kernel(pmc
->perf_event
);
84 pmc
->perf_event
= NULL
;
89 * kvm_pmu_vcpu_reset - reset pmu state for cpu
90 * @vcpu: The vcpu pointer
93 void kvm_pmu_vcpu_reset(struct kvm_vcpu
*vcpu
)
96 struct kvm_pmu
*pmu
= &vcpu
->arch
.pmu
;
98 for (i
= 0; i
< ARMV8_PMU_MAX_COUNTERS
; i
++) {
99 kvm_pmu_stop_counter(vcpu
, &pmu
->pmc
[i
]);
101 pmu
->pmc
[i
].bitmask
= 0xffffffffUL
;
106 * kvm_pmu_vcpu_destroy - free perf event of PMU for cpu
107 * @vcpu: The vcpu pointer
110 void kvm_pmu_vcpu_destroy(struct kvm_vcpu
*vcpu
)
113 struct kvm_pmu
*pmu
= &vcpu
->arch
.pmu
;
115 for (i
= 0; i
< ARMV8_PMU_MAX_COUNTERS
; i
++) {
116 struct kvm_pmc
*pmc
= &pmu
->pmc
[i
];
118 if (pmc
->perf_event
) {
119 perf_event_disable(pmc
->perf_event
);
120 perf_event_release_kernel(pmc
->perf_event
);
121 pmc
->perf_event
= NULL
;
126 u64
kvm_pmu_valid_counter_mask(struct kvm_vcpu
*vcpu
)
128 u64 val
= vcpu_sys_reg(vcpu
, PMCR_EL0
) >> ARMV8_PMU_PMCR_N_SHIFT
;
130 val
&= ARMV8_PMU_PMCR_N_MASK
;
132 return BIT(ARMV8_PMU_CYCLE_IDX
);
134 return GENMASK(val
- 1, 0) | BIT(ARMV8_PMU_CYCLE_IDX
);
138 * kvm_pmu_enable_counter - enable selected PMU counter
139 * @vcpu: The vcpu pointer
140 * @val: the value guest writes to PMCNTENSET register
142 * Call perf_event_enable to start counting the perf event
144 void kvm_pmu_enable_counter(struct kvm_vcpu
*vcpu
, u64 val
)
147 struct kvm_pmu
*pmu
= &vcpu
->arch
.pmu
;
150 if (!(vcpu_sys_reg(vcpu
, PMCR_EL0
) & ARMV8_PMU_PMCR_E
) || !val
)
153 for (i
= 0; i
< ARMV8_PMU_MAX_COUNTERS
; i
++) {
158 if (pmc
->perf_event
) {
159 perf_event_enable(pmc
->perf_event
);
160 if (pmc
->perf_event
->state
!= PERF_EVENT_STATE_ACTIVE
)
161 kvm_debug("fail to enable perf event\n");
167 * kvm_pmu_disable_counter - disable selected PMU counter
168 * @vcpu: The vcpu pointer
169 * @val: the value guest writes to PMCNTENCLR register
171 * Call perf_event_disable to stop counting the perf event
173 void kvm_pmu_disable_counter(struct kvm_vcpu
*vcpu
, u64 val
)
176 struct kvm_pmu
*pmu
= &vcpu
->arch
.pmu
;
182 for (i
= 0; i
< ARMV8_PMU_MAX_COUNTERS
; i
++) {
188 perf_event_disable(pmc
->perf_event
);
192 static u64
kvm_pmu_overflow_status(struct kvm_vcpu
*vcpu
)
196 if ((vcpu_sys_reg(vcpu
, PMCR_EL0
) & ARMV8_PMU_PMCR_E
)) {
197 reg
= vcpu_sys_reg(vcpu
, PMOVSSET_EL0
);
198 reg
&= vcpu_sys_reg(vcpu
, PMCNTENSET_EL0
);
199 reg
&= vcpu_sys_reg(vcpu
, PMINTENSET_EL1
);
200 reg
&= kvm_pmu_valid_counter_mask(vcpu
);
207 * kvm_pmu_overflow_set - set PMU overflow interrupt
208 * @vcpu: The vcpu pointer
209 * @val: the value guest writes to PMOVSSET register
211 void kvm_pmu_overflow_set(struct kvm_vcpu
*vcpu
, u64 val
)
218 vcpu_sys_reg(vcpu
, PMOVSSET_EL0
) |= val
;
219 reg
= kvm_pmu_overflow_status(vcpu
);
224 static void kvm_pmu_update_state(struct kvm_vcpu
*vcpu
)
226 struct kvm_pmu
*pmu
= &vcpu
->arch
.pmu
;
229 if (!kvm_arm_pmu_v3_ready(vcpu
))
232 overflow
= !!kvm_pmu_overflow_status(vcpu
);
233 if (pmu
->irq_level
!= overflow
) {
234 pmu
->irq_level
= overflow
;
235 kvm_vgic_inject_irq(vcpu
->kvm
, vcpu
->vcpu_id
,
236 pmu
->irq_num
, overflow
);
241 * kvm_pmu_flush_hwstate - flush pmu state to cpu
242 * @vcpu: The vcpu pointer
244 * Check if the PMU has overflowed while we were running in the host, and inject
245 * an interrupt if that was the case.
247 void kvm_pmu_flush_hwstate(struct kvm_vcpu
*vcpu
)
249 kvm_pmu_update_state(vcpu
);
253 * kvm_pmu_sync_hwstate - sync pmu state from cpu
254 * @vcpu: The vcpu pointer
256 * Check if the PMU has overflowed while we were running in the guest, and
257 * inject an interrupt if that was the case.
259 void kvm_pmu_sync_hwstate(struct kvm_vcpu
*vcpu
)
261 kvm_pmu_update_state(vcpu
);
264 static inline struct kvm_vcpu
*kvm_pmc_to_vcpu(struct kvm_pmc
*pmc
)
267 struct kvm_vcpu_arch
*vcpu_arch
;
270 pmu
= container_of(pmc
, struct kvm_pmu
, pmc
[0]);
271 vcpu_arch
= container_of(pmu
, struct kvm_vcpu_arch
, pmu
);
272 return container_of(vcpu_arch
, struct kvm_vcpu
, arch
);
276 * When perf event overflows, call kvm_pmu_overflow_set to set overflow status.
278 static void kvm_pmu_perf_overflow(struct perf_event
*perf_event
,
279 struct perf_sample_data
*data
,
280 struct pt_regs
*regs
)
282 struct kvm_pmc
*pmc
= perf_event
->overflow_handler_context
;
283 struct kvm_vcpu
*vcpu
= kvm_pmc_to_vcpu(pmc
);
286 kvm_pmu_overflow_set(vcpu
, BIT(idx
));
290 * kvm_pmu_software_increment - do software increment
291 * @vcpu: The vcpu pointer
292 * @val: the value guest writes to PMSWINC register
294 void kvm_pmu_software_increment(struct kvm_vcpu
*vcpu
, u64 val
)
297 u64 type
, enable
, reg
;
302 enable
= vcpu_sys_reg(vcpu
, PMCNTENSET_EL0
);
303 for (i
= 0; i
< ARMV8_PMU_CYCLE_IDX
; i
++) {
306 type
= vcpu_sys_reg(vcpu
, PMEVTYPER0_EL0
+ i
)
307 & ARMV8_PMU_EVTYPE_EVENT
;
308 if ((type
== ARMV8_PMU_EVTYPE_EVENT_SW_INCR
)
309 && (enable
& BIT(i
))) {
310 reg
= vcpu_sys_reg(vcpu
, PMEVCNTR0_EL0
+ i
) + 1;
311 reg
= lower_32_bits(reg
);
312 vcpu_sys_reg(vcpu
, PMEVCNTR0_EL0
+ i
) = reg
;
314 kvm_pmu_overflow_set(vcpu
, BIT(i
));
320 * kvm_pmu_handle_pmcr - handle PMCR register
321 * @vcpu: The vcpu pointer
322 * @val: the value guest writes to PMCR register
324 void kvm_pmu_handle_pmcr(struct kvm_vcpu
*vcpu
, u64 val
)
326 struct kvm_pmu
*pmu
= &vcpu
->arch
.pmu
;
331 mask
= kvm_pmu_valid_counter_mask(vcpu
);
332 if (val
& ARMV8_PMU_PMCR_E
) {
333 kvm_pmu_enable_counter(vcpu
,
334 vcpu_sys_reg(vcpu
, PMCNTENSET_EL0
) & mask
);
336 kvm_pmu_disable_counter(vcpu
, mask
);
339 if (val
& ARMV8_PMU_PMCR_C
)
340 kvm_pmu_set_counter_value(vcpu
, ARMV8_PMU_CYCLE_IDX
, 0);
342 if (val
& ARMV8_PMU_PMCR_P
) {
343 for (i
= 0; i
< ARMV8_PMU_CYCLE_IDX
; i
++)
344 kvm_pmu_set_counter_value(vcpu
, i
, 0);
347 if (val
& ARMV8_PMU_PMCR_LC
) {
348 pmc
= &pmu
->pmc
[ARMV8_PMU_CYCLE_IDX
];
349 pmc
->bitmask
= 0xffffffffffffffffUL
;
353 static bool kvm_pmu_counter_is_enabled(struct kvm_vcpu
*vcpu
, u64 select_idx
)
355 return (vcpu_sys_reg(vcpu
, PMCR_EL0
) & ARMV8_PMU_PMCR_E
) &&
356 (vcpu_sys_reg(vcpu
, PMCNTENSET_EL0
) & BIT(select_idx
));
360 * kvm_pmu_set_counter_event_type - set selected counter to monitor some event
361 * @vcpu: The vcpu pointer
362 * @data: The data guest writes to PMXEVTYPER_EL0
363 * @select_idx: The number of selected counter
365 * When OS accesses PMXEVTYPER_EL0, that means it wants to set a PMC to count an
366 * event with given hardware event number. Here we call perf_event API to
367 * emulate this action and create a kernel perf event for it.
369 void kvm_pmu_set_counter_event_type(struct kvm_vcpu
*vcpu
, u64 data
,
372 struct kvm_pmu
*pmu
= &vcpu
->arch
.pmu
;
373 struct kvm_pmc
*pmc
= &pmu
->pmc
[select_idx
];
374 struct perf_event
*event
;
375 struct perf_event_attr attr
;
376 u64 eventsel
, counter
;
378 kvm_pmu_stop_counter(vcpu
, pmc
);
379 eventsel
= data
& ARMV8_PMU_EVTYPE_EVENT
;
381 /* Software increment event does't need to be backed by a perf event */
382 if (eventsel
== ARMV8_PMU_EVTYPE_EVENT_SW_INCR
)
385 memset(&attr
, 0, sizeof(struct perf_event_attr
));
386 attr
.type
= PERF_TYPE_RAW
;
387 attr
.size
= sizeof(attr
);
389 attr
.disabled
= !kvm_pmu_counter_is_enabled(vcpu
, select_idx
);
390 attr
.exclude_user
= data
& ARMV8_PMU_EXCLUDE_EL0
? 1 : 0;
391 attr
.exclude_kernel
= data
& ARMV8_PMU_EXCLUDE_EL1
? 1 : 0;
392 attr
.exclude_hv
= 1; /* Don't count EL2 events */
393 attr
.exclude_host
= 1; /* Don't count host events */
394 attr
.config
= eventsel
;
396 counter
= kvm_pmu_get_counter_value(vcpu
, select_idx
);
397 /* The initial sample period (overflow count) of an event. */
398 attr
.sample_period
= (-counter
) & pmc
->bitmask
;
400 event
= perf_event_create_kernel_counter(&attr
, -1, current
,
401 kvm_pmu_perf_overflow
, pmc
);
403 pr_err_once("kvm: pmu event creation failed %ld\n",
408 pmc
->perf_event
= event
;
411 bool kvm_arm_support_pmu_v3(void)
414 * Check if HW_PERF_EVENTS are supported by checking the number of
415 * hardware performance counters. This could ensure the presence of
416 * a physical PMU and CONFIG_PERF_EVENT is selected.
418 return (perf_num_counters() > 0);
421 static int kvm_arm_pmu_v3_init(struct kvm_vcpu
*vcpu
)
423 if (!kvm_arm_support_pmu_v3())
426 if (!test_bit(KVM_ARM_VCPU_PMU_V3
, vcpu
->arch
.features
) ||
427 !kvm_arm_pmu_irq_initialized(vcpu
))
430 if (kvm_arm_pmu_v3_ready(vcpu
))
433 kvm_pmu_vcpu_reset(vcpu
);
434 vcpu
->arch
.pmu
.ready
= true;
439 #define irq_is_ppi(irq) ((irq) >= VGIC_NR_SGIS && (irq) < VGIC_NR_PRIVATE_IRQS)
442 * For one VM the interrupt type must be same for each vcpu.
443 * As a PPI, the interrupt number is the same for all vcpus,
444 * while as an SPI it must be a separate number per vcpu.
446 static bool pmu_irq_is_valid(struct kvm
*kvm
, int irq
)
449 struct kvm_vcpu
*vcpu
;
451 kvm_for_each_vcpu(i
, vcpu
, kvm
) {
452 if (!kvm_arm_pmu_irq_initialized(vcpu
))
455 if (irq_is_ppi(irq
)) {
456 if (vcpu
->arch
.pmu
.irq_num
!= irq
)
459 if (vcpu
->arch
.pmu
.irq_num
== irq
)
467 int kvm_arm_pmu_v3_set_attr(struct kvm_vcpu
*vcpu
, struct kvm_device_attr
*attr
)
469 switch (attr
->attr
) {
470 case KVM_ARM_VCPU_PMU_V3_IRQ
: {
471 int __user
*uaddr
= (int __user
*)(long)attr
->addr
;
474 if (!test_bit(KVM_ARM_VCPU_PMU_V3
, vcpu
->arch
.features
))
477 if (get_user(irq
, uaddr
))
480 /* The PMU overflow interrupt can be a PPI or a valid SPI. */
481 if (!(irq_is_ppi(irq
) || vgic_valid_spi(vcpu
->kvm
, irq
)))
484 if (!pmu_irq_is_valid(vcpu
->kvm
, irq
))
487 if (kvm_arm_pmu_irq_initialized(vcpu
))
490 kvm_debug("Set kvm ARM PMU irq: %d\n", irq
);
491 vcpu
->arch
.pmu
.irq_num
= irq
;
494 case KVM_ARM_VCPU_PMU_V3_INIT
:
495 return kvm_arm_pmu_v3_init(vcpu
);
501 int kvm_arm_pmu_v3_get_attr(struct kvm_vcpu
*vcpu
, struct kvm_device_attr
*attr
)
503 switch (attr
->attr
) {
504 case KVM_ARM_VCPU_PMU_V3_IRQ
: {
505 int __user
*uaddr
= (int __user
*)(long)attr
->addr
;
508 if (!test_bit(KVM_ARM_VCPU_PMU_V3
, vcpu
->arch
.features
))
511 if (!kvm_arm_pmu_irq_initialized(vcpu
))
514 irq
= vcpu
->arch
.pmu
.irq_num
;
515 return put_user(irq
, uaddr
);
522 int kvm_arm_pmu_v3_has_attr(struct kvm_vcpu
*vcpu
, struct kvm_device_attr
*attr
)
524 switch (attr
->attr
) {
525 case KVM_ARM_VCPU_PMU_V3_IRQ
:
526 case KVM_ARM_VCPU_PMU_V3_INIT
:
527 if (kvm_arm_support_pmu_v3() &&
528 test_bit(KVM_ARM_VCPU_PMU_V3
, vcpu
->arch
.features
))