3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-01 07:42:18 +00:00
Brooklyn/arch/x86/kvm/mmu/tdp_mmu.h

67 lines
2.2 KiB
C
Raw Normal View History

2021-05-26 19:09:36 +00:00
// SPDX-License-Identifier: GPL-2.0
#ifndef __KVM_X86_MMU_TDP_MMU_H
#define __KVM_X86_MMU_TDP_MMU_H
#include <linux/kvm_host.h>
2021-09-23 16:59:15 +00:00
void kvm_mmu_init_tdp_mmu(struct kvm *kvm);
void kvm_mmu_uninit_tdp_mmu(struct kvm *kvm);
2021-09-23 16:59:15 +00:00
bool is_tdp_mmu_root(struct kvm *kvm, hpa_t root);
hpa_t kvm_tdp_mmu_get_vcpu_root_hpa(struct kvm_vcpu *vcpu);
void kvm_tdp_mmu_free_root(struct kvm *kvm, struct kvm_mmu_page *root);
2021-09-23 16:59:15 +00:00
bool __kvm_tdp_mmu_zap_gfn_range(struct kvm *kvm, gfn_t start, gfn_t end,
bool can_yield);
static inline bool kvm_tdp_mmu_zap_gfn_range(struct kvm *kvm, gfn_t start,
gfn_t end)
{
2021-09-23 16:59:15 +00:00
return __kvm_tdp_mmu_zap_gfn_range(kvm, start, end, true);
2021-05-26 19:09:36 +00:00
}
static inline bool kvm_tdp_mmu_zap_sp(struct kvm *kvm, struct kvm_mmu_page *sp)
{
2021-09-23 16:59:15 +00:00
gfn_t end = sp->gfn + KVM_PAGES_PER_HPAGE(sp->role.level);
2021-05-26 19:09:36 +00:00
/*
2021-09-23 16:59:15 +00:00
* Don't allow yielding, as the caller may have pending pages to zap
* on the shadow MMU.
2021-05-26 19:09:36 +00:00
*/
2021-09-23 16:59:15 +00:00
return __kvm_tdp_mmu_zap_gfn_range(kvm, sp->gfn, end, false);
2021-05-26 19:09:36 +00:00
}
void kvm_tdp_mmu_zap_all(struct kvm *kvm);
int kvm_tdp_mmu_map(struct kvm_vcpu *vcpu, gpa_t gpa, u32 error_code,
int map_writable, int max_level, kvm_pfn_t pfn,
bool prefault);
2021-09-23 16:59:15 +00:00
int kvm_tdp_mmu_zap_hva_range(struct kvm *kvm, unsigned long start,
unsigned long end);
int kvm_tdp_mmu_age_hva_range(struct kvm *kvm, unsigned long start,
unsigned long end);
int kvm_tdp_mmu_test_age_hva(struct kvm *kvm, unsigned long hva);
int kvm_tdp_mmu_set_spte_hva(struct kvm *kvm, unsigned long address,
pte_t *host_ptep);
2021-05-26 19:09:36 +00:00
bool kvm_tdp_mmu_wrprot_slot(struct kvm *kvm, struct kvm_memory_slot *slot,
int min_level);
bool kvm_tdp_mmu_clear_dirty_slot(struct kvm *kvm,
struct kvm_memory_slot *slot);
void kvm_tdp_mmu_clear_dirty_pt_masked(struct kvm *kvm,
struct kvm_memory_slot *slot,
gfn_t gfn, unsigned long mask,
bool wrprot);
2021-09-23 16:59:15 +00:00
bool kvm_tdp_mmu_slot_set_dirty(struct kvm *kvm, struct kvm_memory_slot *slot);
void kvm_tdp_mmu_zap_collapsible_sptes(struct kvm *kvm,
const struct kvm_memory_slot *slot);
2021-05-26 19:09:36 +00:00
bool kvm_tdp_mmu_write_protect_gfn(struct kvm *kvm,
2021-09-23 16:59:15 +00:00
struct kvm_memory_slot *slot, gfn_t gfn);
2021-05-26 19:09:36 +00:00
int kvm_tdp_mmu_get_walk(struct kvm_vcpu *vcpu, u64 addr, u64 *sptes,
int *root_level);
#endif /* __KVM_X86_MMU_TDP_MMU_H */