book3s.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright IBM Corporation, 2013
  3. * Author Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of the
  8. * License or (at your optional) any later version of the license.
  9. *
  10. */
  11. #ifndef __POWERPC_KVM_BOOK3S_H__
  12. #define __POWERPC_KVM_BOOK3S_H__
  13. extern void kvmppc_core_flush_memslot_hv(struct kvm *kvm,
  14. struct kvm_memory_slot *memslot);
  15. extern int kvm_unmap_hva_range_hv(struct kvm *kvm, unsigned long start,
  16. unsigned long end);
  17. extern int kvm_age_hva_hv(struct kvm *kvm, unsigned long start,
  18. unsigned long end);
  19. extern int kvm_test_age_hva_hv(struct kvm *kvm, unsigned long hva);
  20. extern void kvm_set_spte_hva_hv(struct kvm *kvm, unsigned long hva, pte_t pte);
  21. extern void kvmppc_mmu_destroy_pr(struct kvm_vcpu *vcpu);
  22. extern int kvmppc_core_emulate_op_pr(struct kvm_run *run, struct kvm_vcpu *vcpu,
  23. unsigned int inst, int *advance);
  24. extern int kvmppc_core_emulate_mtspr_pr(struct kvm_vcpu *vcpu,
  25. int sprn, ulong spr_val);
  26. extern int kvmppc_core_emulate_mfspr_pr(struct kvm_vcpu *vcpu,
  27. int sprn, ulong *spr_val);
  28. extern int kvmppc_book3s_init_pr(void);
  29. extern void kvmppc_book3s_exit_pr(void);
  30. #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
  31. extern void kvmppc_emulate_tabort(struct kvm_vcpu *vcpu, int ra_val);
  32. #else
  33. static inline void kvmppc_emulate_tabort(struct kvm_vcpu *vcpu, int ra_val) {}
  34. #endif
  35. #endif