]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
arm64: head.S: Fix CNTHCTL_EL2 access on VHE system
authorJintack <jintack@cs.columbia.edu>
Tue, 29 Nov 2016 02:13:02 +0000 (21:13 -0500)
committerCatalin Marinas <catalin.marinas@arm.com>
Tue, 29 Nov 2016 11:37:05 +0000 (11:37 +0000)
Bit positions of CNTHCTL_EL2 are changing depending on HCR_EL2.E2H bit.
EL1PCEN and EL1PCTEN are 1st and 0th bits when E2H is not set, but they
are 11th and 10th bits respectively when E2H is set.  Current code is
unintentionally setting wrong bits to CNTHCTL_EL2 with E2H set.

In fact, we don't need to set those two bits, which allow EL1 and EL0 to
access physical timer and counter respectively, if E2H and TGE are set
for the host kernel. They will be configured later as necessary. First,
we don't need to configure those bits for EL1, since the host kernel
runs in EL2.  It is a hypervisor's responsibility to configure them
before entering a VM, which runs in EL0 and EL1. Second, EL0 accesses
are configured in the later stage of boot process.

Signed-off-by: Jintack Lim <jintack@cs.columbia.edu>
Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/kernel/head.S

index 7ee6d74101cfb289a8ce5d5c1ab44206b779dcd2..4b1abac3485a0928954a96568a77d6d69d47c913 100644 (file)
@@ -525,10 +525,21 @@ set_hcr:
        msr     hcr_el2, x0
        isb
 
-       /* Generic timers. */
+       /*
+        * Allow Non-secure EL1 and EL0 to access physical timer and counter.
+        * This is not necessary for VHE, since the host kernel runs in EL2,
+        * and EL0 accesses are configured in the later stage of boot process.
+        * Note that when HCR_EL2.E2H == 1, CNTHCTL_EL2 has the same bit layout
+        * as CNTKCTL_EL1, and CNTKCTL_EL1 accessing instructions are redefined
+        * to access CNTHCTL_EL2. This allows the kernel designed to run at EL1
+        * to transparently mess with the EL0 bits via CNTKCTL_EL1 access in
+        * EL2.
+        */
+       cbnz    x2, 1f
        mrs     x0, cnthctl_el2
        orr     x0, x0, #3                      // Enable EL1 physical timers
        msr     cnthctl_el2, x0
+1:
        msr     cntvoff_el2, xzr                // Clear virtual offset
 
 #ifdef CONFIG_ARM_GIC_V3