diff options
author | Will Deacon <will@kernel.org> | 2020-09-11 16:25:12 +0300 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2020-09-11 17:51:13 +0300 |
commit | 0f9d09b8e29bc8166f6584279aedc4a7a4038f68 (patch) | |
tree | 4684d80229f5cb9e5c954296bb5fb8d74116d1ad /arch/arm64/include/asm/pgtable-hwdef.h | |
parent | bb0e92cbbcd1f91411d0a7241f8febe2c8c5b078 (diff) | |
download | linux-0f9d09b8e29bc8166f6584279aedc4a7a4038f68.tar.xz |
KVM: arm64: Use generic allocator for hyp stage-1 page-tables
Now that we have a shiny new page-table allocator, replace the hyp
page-table code with calls into the new API. This also allows us to
remove the extended idmap code, as we can now simply ensure that the
VA size is large enough to map everything we need.
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Cc: Marc Zyngier <maz@kernel.org>
Cc: Quentin Perret <qperret@google.com>
Link: https://lore.kernel.org/r/20200911132529.19844-5-will@kernel.org
Diffstat (limited to 'arch/arm64/include/asm/pgtable-hwdef.h')
-rw-r--r-- | arch/arm64/include/asm/pgtable-hwdef.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/arm64/include/asm/pgtable-hwdef.h b/arch/arm64/include/asm/pgtable-hwdef.h index d400a4d9aee2..1a989353144e 100644 --- a/arch/arm64/include/asm/pgtable-hwdef.h +++ b/arch/arm64/include/asm/pgtable-hwdef.h @@ -195,12 +195,6 @@ #define PTE_S2_MEMATTR(t) (_AT(pteval_t, (t)) << 2) /* - * EL2/HYP PTE/PMD definitions - */ -#define PMD_HYP PMD_SECT_USER -#define PTE_HYP PTE_USER - -/* * Highest possible physical address supported. */ #define PHYS_MASK_SHIFT (CONFIG_ARM64_PA_BITS) |