Contributors: 12
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Hollis Blanchard |
97 |
39.27% |
5 |
17.86% |
Aneesh Kumar K.V |
35 |
14.17% |
2 |
7.14% |
Sean Christopherson |
24 |
9.72% |
1 |
3.57% |
Alexander Graf |
21 |
8.50% |
5 |
17.86% |
Simon Guo |
21 |
8.50% |
4 |
14.29% |
Nicholas Piggin |
15 |
6.07% |
2 |
7.14% |
Paul Mackerras |
12 |
4.86% |
4 |
14.29% |
Scott Wood |
6 |
2.43% |
1 |
3.57% |
Cédric Le Goater |
6 |
2.43% |
1 |
3.57% |
Greg Kurz |
5 |
2.02% |
1 |
3.57% |
Michael Ellerman |
3 |
1.21% |
1 |
3.57% |
Thomas Gleixner |
2 |
0.81% |
1 |
3.57% |
Total |
247 |
|
28 |
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright IBM Corporation, 2013
* Author Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
*/
#ifndef __POWERPC_KVM_BOOK3S_H__
#define __POWERPC_KVM_BOOK3S_H__
extern void kvmppc_core_flush_memslot_hv(struct kvm *kvm,
struct kvm_memory_slot *memslot);
extern bool kvm_unmap_gfn_range_hv(struct kvm *kvm, struct kvm_gfn_range *range);
extern bool kvm_age_gfn_hv(struct kvm *kvm, struct kvm_gfn_range *range);
extern bool kvm_test_age_gfn_hv(struct kvm *kvm, struct kvm_gfn_range *range);
extern bool kvm_set_spte_gfn_hv(struct kvm *kvm, struct kvm_gfn_range *range);
extern int kvmppc_mmu_init_pr(struct kvm_vcpu *vcpu);
extern void kvmppc_mmu_destroy_pr(struct kvm_vcpu *vcpu);
extern int kvmppc_core_emulate_op_pr(struct kvm_vcpu *vcpu,
unsigned int inst, int *advance);
extern int kvmppc_core_emulate_mtspr_pr(struct kvm_vcpu *vcpu,
int sprn, ulong spr_val);
extern int kvmppc_core_emulate_mfspr_pr(struct kvm_vcpu *vcpu,
int sprn, ulong *spr_val);
extern int kvmppc_book3s_init_pr(void);
void kvmppc_book3s_exit_pr(void);
extern int kvmppc_handle_exit_pr(struct kvm_vcpu *vcpu, unsigned int exit_nr);
#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
extern void kvmppc_emulate_tabort(struct kvm_vcpu *vcpu, int ra_val);
#else
static inline void kvmppc_emulate_tabort(struct kvm_vcpu *vcpu, int ra_val) {}
#endif
extern void kvmppc_set_msr_hv(struct kvm_vcpu *vcpu, u64 msr);
extern void kvmppc_inject_interrupt_hv(struct kvm_vcpu *vcpu, int vec, u64 srr1_flags);
#endif