Skip to content

Commit d4fbbb2

Browse files
ryanhrobMarc Zyngier
authored andcommitted
KVM: arm64: Add new (V)TCR_EL2 field definitions for FEAT_LPA2
As per Arm ARM (0487I.a), (V)TCR_EL2.DS fields control whether 52 bit input and output addresses are supported on 4K and 16K page size configurations when FEAT_LPA2 is known to have been implemented. This adds these field definitions which will be used by KVM when FEAT_LPA2 is enabled. Acked-by: Catalin Marinas <catalin.marinas@arm.com> Reviewed-by: Oliver Upton <oliver.upton@linux.dev> Signed-off-by: Ryan Roberts <ryan.roberts@arm.com> Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20231127111737.1897081-7-ryan.roberts@arm.com
1 parent b1366d2 commit d4fbbb2

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

arch/arm64/include/asm/kvm_arm.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@
108108
#define HCRX_HOST_FLAGS (HCRX_EL2_MSCEn | HCRX_EL2_TCR2En)
109109

110110
/* TCR_EL2 Registers bits */
111+
#define TCR_EL2_DS (1UL << 32)
111112
#define TCR_EL2_RES1 ((1U << 31) | (1 << 23))
112113
#define TCR_EL2_TBI (1 << 20)
113114
#define TCR_EL2_PS_SHIFT 16
@@ -122,6 +123,7 @@
122123
TCR_EL2_ORGN0_MASK | TCR_EL2_IRGN0_MASK | TCR_EL2_T0SZ_MASK)
123124

124125
/* VTCR_EL2 Registers bits */
126+
#define VTCR_EL2_DS TCR_EL2_DS
125127
#define VTCR_EL2_RES1 (1U << 31)
126128
#define VTCR_EL2_HD (1 << 22)
127129
#define VTCR_EL2_HA (1 << 21)

0 commit comments

Comments
 (0)