1fe5db27dSBen Gardon // SPDX-License-Identifier: GPL-2.0 2fe5db27dSBen Gardon 3fe5db27dSBen Gardon #ifndef __KVM_X86_MMU_TDP_MMU_H 4fe5db27dSBen Gardon #define __KVM_X86_MMU_TDP_MMU_H 5fe5db27dSBen Gardon 6fe5db27dSBen Gardon #include <linux/kvm_host.h> 7fe5db27dSBen Gardon 802c00b3aSBen Gardon hpa_t kvm_tdp_mmu_get_vcpu_root_hpa(struct kvm_vcpu *vcpu); 902c00b3aSBen Gardon 10ad6d6b94SJinrong Liang __must_check static inline bool kvm_tdp_mmu_get_root(struct kvm_mmu_page *root) 1176eb54e7SBen Gardon { 12fb101293SBen Gardon return refcount_inc_not_zero(&root->tdp_mmu_root_count); 1376eb54e7SBen Gardon } 1476eb54e7SBen Gardon 156103bc07SBen Gardon void kvm_tdp_mmu_put_root(struct kvm *kvm, struct kvm_mmu_page *root, 166103bc07SBen Gardon bool shared); 1776eb54e7SBen Gardon 182b9663d8SSean Christopherson bool __kvm_tdp_mmu_zap_gfn_range(struct kvm *kvm, int as_id, gfn_t start, 195a324c24SSean Christopherson gfn_t end, bool can_yield, bool flush); 202b9663d8SSean Christopherson static inline bool kvm_tdp_mmu_zap_gfn_range(struct kvm *kvm, int as_id, 215a324c24SSean Christopherson gfn_t start, gfn_t end, bool flush) 2233a31641SSean Christopherson { 235a324c24SSean Christopherson return __kvm_tdp_mmu_zap_gfn_range(kvm, as_id, start, end, true, flush); 2433a31641SSean Christopherson } 2533a31641SSean Christopherson static inline bool kvm_tdp_mmu_zap_sp(struct kvm *kvm, struct kvm_mmu_page *sp) 2633a31641SSean Christopherson { 27f1b83255SKai Huang gfn_t end = sp->gfn + KVM_PAGES_PER_HPAGE(sp->role.level + 1); 2833a31641SSean Christopherson 2933a31641SSean Christopherson /* 3033a31641SSean Christopherson * Don't allow yielding, as the caller may have a flush pending. Note, 3133a31641SSean Christopherson * if mmu_lock is held for write, zapping will never yield in this case, 3233a31641SSean Christopherson * but explicitly disallow it for safety. The TDP MMU does not yield 3333a31641SSean Christopherson * until it has made forward progress (steps sideways), and when zapping 3433a31641SSean Christopherson * a single shadow page that it's guaranteed to see (thus the mmu_lock 3533a31641SSean Christopherson * requirement), its "step sideways" will always step beyond the bounds 3633a31641SSean Christopherson * of the shadow page's gfn range and stop iterating before yielding. 3733a31641SSean Christopherson */ 3833a31641SSean Christopherson lockdep_assert_held_write(&kvm->mmu_lock); 392b9663d8SSean Christopherson return __kvm_tdp_mmu_zap_gfn_range(kvm, kvm_mmu_page_as_id(sp), 405a324c24SSean Christopherson sp->gfn, end, false, false); 4133a31641SSean Christopherson } 42b7cccd39SBen Gardon 43faaf05b0SBen Gardon void kvm_tdp_mmu_zap_all(struct kvm *kvm); 44b7cccd39SBen Gardon void kvm_tdp_mmu_invalidate_all_roots(struct kvm *kvm); 454c6654bdSBen Gardon void kvm_tdp_mmu_zap_invalidated_roots(struct kvm *kvm); 46bb18842eSBen Gardon 472f6305ddSPaolo Bonzini int kvm_tdp_mmu_map(struct kvm_vcpu *vcpu, struct kvm_page_fault *fault); 48063afacdSBen Gardon 493039bcc7SSean Christopherson bool kvm_tdp_mmu_unmap_gfn_range(struct kvm *kvm, struct kvm_gfn_range *range, 503039bcc7SSean Christopherson bool flush); 513039bcc7SSean Christopherson bool kvm_tdp_mmu_age_gfn_range(struct kvm *kvm, struct kvm_gfn_range *range); 523039bcc7SSean Christopherson bool kvm_tdp_mmu_test_age_gfn(struct kvm *kvm, struct kvm_gfn_range *range); 533039bcc7SSean Christopherson bool kvm_tdp_mmu_set_spte_gfn(struct kvm *kvm, struct kvm_gfn_range *range); 54a6a0b05dSBen Gardon 55269e9552SHamza Mahfooz bool kvm_tdp_mmu_wrprot_slot(struct kvm *kvm, 56269e9552SHamza Mahfooz const struct kvm_memory_slot *slot, int min_level); 57a6a0b05dSBen Gardon bool kvm_tdp_mmu_clear_dirty_slot(struct kvm *kvm, 58269e9552SHamza Mahfooz const struct kvm_memory_slot *slot); 59a6a0b05dSBen Gardon void kvm_tdp_mmu_clear_dirty_pt_masked(struct kvm *kvm, 60a6a0b05dSBen Gardon struct kvm_memory_slot *slot, 61a6a0b05dSBen Gardon gfn_t gfn, unsigned long mask, 62a6a0b05dSBen Gardon bool wrprot); 634b85c921SSean Christopherson void kvm_tdp_mmu_zap_collapsible_sptes(struct kvm *kvm, 644b85c921SSean Christopherson const struct kvm_memory_slot *slot); 6546044f72SBen Gardon 6646044f72SBen Gardon bool kvm_tdp_mmu_write_protect_gfn(struct kvm *kvm, 673ad93562SKeqian Zhu struct kvm_memory_slot *slot, gfn_t gfn, 683ad93562SKeqian Zhu int min_level); 6995fb5b02SBen Gardon 70a3fe5dbdSDavid Matlack void kvm_tdp_mmu_try_split_huge_pages(struct kvm *kvm, 71a3fe5dbdSDavid Matlack const struct kvm_memory_slot *slot, 72a3fe5dbdSDavid Matlack gfn_t start, gfn_t end, 73*cb00a70bSDavid Matlack int target_level, bool shared); 74a3fe5dbdSDavid Matlack 75c5c8c7c5SDavid Matlack static inline void kvm_tdp_mmu_walk_lockless_begin(void) 76c5c8c7c5SDavid Matlack { 77c5c8c7c5SDavid Matlack rcu_read_lock(); 78c5c8c7c5SDavid Matlack } 79c5c8c7c5SDavid Matlack 80c5c8c7c5SDavid Matlack static inline void kvm_tdp_mmu_walk_lockless_end(void) 81c5c8c7c5SDavid Matlack { 82c5c8c7c5SDavid Matlack rcu_read_unlock(); 83c5c8c7c5SDavid Matlack } 84c5c8c7c5SDavid Matlack 8539b4d43eSSean Christopherson int kvm_tdp_mmu_get_walk(struct kvm_vcpu *vcpu, u64 addr, u64 *sptes, 8639b4d43eSSean Christopherson int *root_level); 876e8eb206SDavid Matlack u64 *kvm_tdp_mmu_fast_pf_get_last_sptep(struct kvm_vcpu *vcpu, u64 addr, 886e8eb206SDavid Matlack u64 *spte); 8939b4d43eSSean Christopherson 90897218ffSPaolo Bonzini #ifdef CONFIG_X86_64 91d501f747SBen Gardon bool kvm_mmu_init_tdp_mmu(struct kvm *kvm); 92897218ffSPaolo Bonzini void kvm_mmu_uninit_tdp_mmu(struct kvm *kvm); 93897218ffSPaolo Bonzini static inline bool is_tdp_mmu_page(struct kvm_mmu_page *sp) { return sp->tdp_mmu_page; } 94897218ffSPaolo Bonzini 9563c0cac9SDavid Matlack static inline bool is_tdp_mmu(struct kvm_mmu *mmu) 96897218ffSPaolo Bonzini { 97897218ffSPaolo Bonzini struct kvm_mmu_page *sp; 9863c0cac9SDavid Matlack hpa_t hpa = mmu->root_hpa; 99897218ffSPaolo Bonzini 100897218ffSPaolo Bonzini if (WARN_ON(!VALID_PAGE(hpa))) 101897218ffSPaolo Bonzini return false; 102897218ffSPaolo Bonzini 1036c6e166bSSean Christopherson /* 1046c6e166bSSean Christopherson * A NULL shadow page is legal when shadowing a non-paging guest with 1056c6e166bSSean Christopherson * PAE paging, as the MMU will be direct with root_hpa pointing at the 1066c6e166bSSean Christopherson * pae_root page, not a shadow page. 1076c6e166bSSean Christopherson */ 108897218ffSPaolo Bonzini sp = to_shadow_page(hpa); 1096c6e166bSSean Christopherson return sp && is_tdp_mmu_page(sp) && sp->root_count; 110897218ffSPaolo Bonzini } 111c62efff2SPaolo Bonzini #else 112c62efff2SPaolo Bonzini static inline bool kvm_mmu_init_tdp_mmu(struct kvm *kvm) { return false; } 113c62efff2SPaolo Bonzini static inline void kvm_mmu_uninit_tdp_mmu(struct kvm *kvm) {} 114c62efff2SPaolo Bonzini static inline bool is_tdp_mmu_page(struct kvm_mmu_page *sp) { return false; } 11563c0cac9SDavid Matlack static inline bool is_tdp_mmu(struct kvm_mmu *mmu) { return false; } 116c62efff2SPaolo Bonzini #endif 117897218ffSPaolo Bonzini 118fe5db27dSBen Gardon #endif /* __KVM_X86_MMU_TDP_MMU_H */ 119