FROMLIST: KVM: arm64: Use kvm_arch for stage 2 pgtable
In order to make use of the stage 2 pgtable code for the host stage 2, use struct kvm_arch in lieu of struct kvm as the host will have the former but not the latter. Acked-by: Will Deacon <will@kernel.org> Signed-off-by: Quentin Perret <qperret@google.com> Link: https://lore.kernel.org/r/20210315143536.214621-20-qperret@google.com Bug: 178098380 Change-Id: Iffa3c1909cce84776c4e40969910497dac2ad3fb
This commit is contained in:
@@ -162,12 +162,13 @@ int kvm_pgtable_hyp_map(struct kvm_pgtable *pgt, u64 addr, u64 size, u64 phys,
|
|||||||
/**
|
/**
|
||||||
* kvm_pgtable_stage2_init() - Initialise a guest stage-2 page-table.
|
* kvm_pgtable_stage2_init() - Initialise a guest stage-2 page-table.
|
||||||
* @pgt: Uninitialised page-table structure to initialise.
|
* @pgt: Uninitialised page-table structure to initialise.
|
||||||
* @kvm: KVM structure representing the guest virtual machine.
|
* @arch: Arch-specific KVM structure representing the guest virtual
|
||||||
|
* machine.
|
||||||
* @mm_ops: Memory management callbacks.
|
* @mm_ops: Memory management callbacks.
|
||||||
*
|
*
|
||||||
* Return: 0 on success, negative error code on failure.
|
* Return: 0 on success, negative error code on failure.
|
||||||
*/
|
*/
|
||||||
int kvm_pgtable_stage2_init(struct kvm_pgtable *pgt, struct kvm *kvm,
|
int kvm_pgtable_stage2_init(struct kvm_pgtable *pgt, struct kvm_arch *arch,
|
||||||
struct kvm_pgtable_mm_ops *mm_ops);
|
struct kvm_pgtable_mm_ops *mm_ops);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -880,11 +880,11 @@ int kvm_pgtable_stage2_flush(struct kvm_pgtable *pgt, u64 addr, u64 size)
|
|||||||
return kvm_pgtable_walk(pgt, addr, size, &walker);
|
return kvm_pgtable_walk(pgt, addr, size, &walker);
|
||||||
}
|
}
|
||||||
|
|
||||||
int kvm_pgtable_stage2_init(struct kvm_pgtable *pgt, struct kvm *kvm,
|
int kvm_pgtable_stage2_init(struct kvm_pgtable *pgt, struct kvm_arch *arch,
|
||||||
struct kvm_pgtable_mm_ops *mm_ops)
|
struct kvm_pgtable_mm_ops *mm_ops)
|
||||||
{
|
{
|
||||||
size_t pgd_sz;
|
size_t pgd_sz;
|
||||||
u64 vtcr = kvm->arch.vtcr;
|
u64 vtcr = arch->vtcr;
|
||||||
u32 ia_bits = VTCR_EL2_IPA(vtcr);
|
u32 ia_bits = VTCR_EL2_IPA(vtcr);
|
||||||
u32 sl0 = FIELD_GET(VTCR_EL2_SL0_MASK, vtcr);
|
u32 sl0 = FIELD_GET(VTCR_EL2_SL0_MASK, vtcr);
|
||||||
u32 start_level = VTCR_EL2_TGRAN_SL0_BASE - sl0;
|
u32 start_level = VTCR_EL2_TGRAN_SL0_BASE - sl0;
|
||||||
@@ -897,7 +897,7 @@ int kvm_pgtable_stage2_init(struct kvm_pgtable *pgt, struct kvm *kvm,
|
|||||||
pgt->ia_bits = ia_bits;
|
pgt->ia_bits = ia_bits;
|
||||||
pgt->start_level = start_level;
|
pgt->start_level = start_level;
|
||||||
pgt->mm_ops = mm_ops;
|
pgt->mm_ops = mm_ops;
|
||||||
pgt->mmu = &kvm->arch.mmu;
|
pgt->mmu = &arch->mmu;
|
||||||
|
|
||||||
/* Ensure zeroed PGD pages are visible to the hardware walker */
|
/* Ensure zeroed PGD pages are visible to the hardware walker */
|
||||||
dsb(ishst);
|
dsb(ishst);
|
||||||
|
@@ -457,7 +457,7 @@ int kvm_init_stage2_mmu(struct kvm *kvm, struct kvm_s2_mmu *mmu)
|
|||||||
if (!pgt)
|
if (!pgt)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
err = kvm_pgtable_stage2_init(pgt, kvm, &kvm_s2_mm_ops);
|
err = kvm_pgtable_stage2_init(pgt, &kvm->arch, &kvm_s2_mm_ops);
|
||||||
if (err)
|
if (err)
|
||||||
goto out_free_pgtable;
|
goto out_free_pgtable;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user