1 /* SPDX-License-Identifier: GPL-2.0-only */
4 * Copyright IBM Corp. 2008
9 #ifndef __POWERPC_KVM_EXITTIMING_H__
10 #define __POWERPC_KVM_EXITTIMING_H__
12 #include <linux/kvm_host.h>
13 #include <asm/kvm_host.h>
15 #ifdef CONFIG_KVM_EXIT_TIMING
16 void kvmppc_init_timing_stats(struct kvm_vcpu *vcpu);
17 void kvmppc_update_timing_stats(struct kvm_vcpu *vcpu);
18 void kvmppc_create_vcpu_debugfs(struct kvm_vcpu *vcpu, unsigned int id);
19 void kvmppc_remove_vcpu_debugfs(struct kvm_vcpu *vcpu);
21 static inline void kvmppc_set_exit_type(struct kvm_vcpu *vcpu, int type)
23 vcpu->arch.last_exit_type = type;
27 /* if exit timing is not configured there is no need to build the c file */
28 static inline void kvmppc_init_timing_stats(struct kvm_vcpu *vcpu) {}
29 static inline void kvmppc_update_timing_stats(struct kvm_vcpu *vcpu) {}
30 static inline void kvmppc_create_vcpu_debugfs(struct kvm_vcpu *vcpu,
32 static inline void kvmppc_remove_vcpu_debugfs(struct kvm_vcpu *vcpu) {}
33 static inline void kvmppc_set_exit_type(struct kvm_vcpu *vcpu, int type) {}
34 #endif /* CONFIG_KVM_EXIT_TIMING */
36 /* account the exit in kvm_stats */
37 static inline void kvmppc_account_exit_stat(struct kvm_vcpu *vcpu, int type)
39 /* type has to be known at build time for optimization */
41 /* The BUILD_BUG_ON below breaks in funny ways, commented out
43 BUILD_BUG_ON(!__builtin_constant_p(type));
47 vcpu->stat.ext_intr_exits++;
50 vcpu->stat.dec_exits++;
52 case EMULATED_INST_EXITS:
53 vcpu->stat.emulated_inst_exits++;
56 vcpu->stat.dsi_exits++;
59 vcpu->stat.isi_exits++;
62 vcpu->stat.syscall_exits++;
64 case DTLB_REAL_MISS_EXITS:
65 vcpu->stat.dtlb_real_miss_exits++;
67 case DTLB_VIRT_MISS_EXITS:
68 vcpu->stat.dtlb_virt_miss_exits++;
71 vcpu->stat.mmio_exits++;
73 case ITLB_REAL_MISS_EXITS:
74 vcpu->stat.itlb_real_miss_exits++;
76 case ITLB_VIRT_MISS_EXITS:
77 vcpu->stat.itlb_virt_miss_exits++;
80 vcpu->stat.signal_exits++;
83 vcpu->stat.dbell_exits++;
86 vcpu->stat.gdbell_exits++;
91 /* wrapper to set exit time and account for it in kvm_stats */
92 static inline void kvmppc_account_exit(struct kvm_vcpu *vcpu, int type)
94 kvmppc_set_exit_type(vcpu, type);
95 kvmppc_account_exit_stat(vcpu, type);
98 #endif /* __POWERPC_KVM_EXITTIMING_H__ */