Thomas Gleixner | 8607a96 | 2019-05-22 09:51:44 +0200 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 2 | /* |
| 3 | * Copyright IBM Corporation, 2013 |
| 4 | * Author Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __POWERPC_KVM_BOOK3S_H__ |
| 8 | #define __POWERPC_KVM_BOOK3S_H__ |
| 9 | |
| 10 | extern void kvmppc_core_flush_memslot_hv(struct kvm *kvm, |
| 11 | struct kvm_memory_slot *memslot); |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 12 | extern int kvm_unmap_hva_range_hv(struct kvm *kvm, unsigned long start, |
| 13 | unsigned long end); |
Andres Lagar-Cavilla | 5712846 | 2014-09-22 14:54:42 -0700 | [diff] [blame] | 14 | extern int kvm_age_hva_hv(struct kvm *kvm, unsigned long start, |
| 15 | unsigned long end); |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 16 | extern int kvm_test_age_hva_hv(struct kvm *kvm, unsigned long hva); |
| 17 | extern void kvm_set_spte_hva_hv(struct kvm *kvm, unsigned long hva, pte_t pte); |
| 18 | |
| 19 | extern void kvmppc_mmu_destroy_pr(struct kvm_vcpu *vcpu); |
| 20 | extern int kvmppc_core_emulate_op_pr(struct kvm_run *run, struct kvm_vcpu *vcpu, |
| 21 | unsigned int inst, int *advance); |
| 22 | extern int kvmppc_core_emulate_mtspr_pr(struct kvm_vcpu *vcpu, |
| 23 | int sprn, ulong spr_val); |
| 24 | extern int kvmppc_core_emulate_mfspr_pr(struct kvm_vcpu *vcpu, |
| 25 | int sprn, ulong *spr_val); |
Aneesh Kumar K.V | cbbc58d | 2013-10-07 22:18:01 +0530 | [diff] [blame] | 26 | extern int kvmppc_book3s_init_pr(void); |
| 27 | extern void kvmppc_book3s_exit_pr(void); |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 28 | |
Simon Guo | 68ab07b | 2018-05-23 15:02:06 +0800 | [diff] [blame] | 29 | #ifdef CONFIG_PPC_TRANSACTIONAL_MEM |
| 30 | extern void kvmppc_emulate_tabort(struct kvm_vcpu *vcpu, int ra_val); |
| 31 | #else |
| 32 | static inline void kvmppc_emulate_tabort(struct kvm_vcpu *vcpu, int ra_val) {} |
| 33 | #endif |
| 34 | |
Aneesh Kumar K.V | 3a167bea | 2013-10-07 22:17:53 +0530 | [diff] [blame] | 35 | #endif |