]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
KVM: arm64: Introduce handling of AArch32 TTBCR2 traps
authorMarc Zyngier <maz@kernel.org>
Tue, 10 Nov 2020 11:10:15 +0000 (11:10 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 Dec 2020 10:51:38 +0000 (11:51 +0100)
commit ca4e514774930f30b66375a974b5edcbebaf0e7e upstream.

ARMv8.2 introduced TTBCR2, which shares TCR_EL1 with TTBCR.
Gracefully handle traps to this register when HCR_EL2.TVM is set.

Cc: stable@vger.kernel.org
Reported-by: James Morse <james.morse@arm.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/arm64/include/asm/kvm_host.h
arch/arm64/kvm/sys_regs.c

index 7140701f65f91b81697ecddc7e7bbdc0153e7269..dfa6dc4575bec6bf3f460cc5d53672833a419240 100644 (file)
@@ -182,6 +182,7 @@ enum vcpu_sysreg {
 #define c2_TTBR1       (TTBR1_EL1 * 2) /* Translation Table Base Register 1 */
 #define c2_TTBR1_high  (c2_TTBR1 + 1)  /* TTBR1 top 32 bits */
 #define c2_TTBCR       (TCR_EL1 * 2)   /* Translation Table Base Control R. */
+#define c2_TTBCR2      (c2_TTBCR + 1)  /* Translation Table Base Control R. 2 */
 #define c3_DACR                (DACR32_EL2 * 2)/* Domain Access Control Register */
 #define c5_DFSR                (ESR_EL1 * 2)   /* Data Fault Status Register */
 #define c5_IFSR                (IFSR32_EL2 * 2)/* Instruction Fault Status Register */
index f1f4f42e8ef46a5f78ef6e2baf5b1db81efe3031..6478635ff21426298ae53d4803c2b8d198a3f0b4 100644 (file)
@@ -1837,6 +1837,7 @@ static const struct sys_reg_desc cp15_regs[] = {
        { Op1( 0), CRn( 2), CRm( 0), Op2( 0), access_vm_reg, NULL, c2_TTBR0 },
        { Op1( 0), CRn( 2), CRm( 0), Op2( 1), access_vm_reg, NULL, c2_TTBR1 },
        { Op1( 0), CRn( 2), CRm( 0), Op2( 2), access_vm_reg, NULL, c2_TTBCR },
+       { Op1( 0), CRn( 2), CRm( 0), Op2( 3), access_vm_reg, NULL, c2_TTBCR2 },
        { Op1( 0), CRn( 3), CRm( 0), Op2( 0), access_vm_reg, NULL, c3_DACR },
        { Op1( 0), CRn( 5), CRm( 0), Op2( 0), access_vm_reg, NULL, c5_DFSR },
        { Op1( 0), CRn( 5), CRm( 0), Op2( 1), access_vm_reg, NULL, c5_IFSR },