]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
KVM: arm64: Use common physical timer sysreg definitions
authorMark Rutland <mark.rutland@arm.com>
Thu, 9 Mar 2017 16:50:51 +0000 (16:50 +0000)
committerMark Rutland <mark.rutland@arm.com>
Wed, 22 Mar 2017 18:38:09 +0000 (18:38 +0000)
Now that we have common definitions for the physical timer control
registers, make the KVM code use these, simplifying the sys_reg_descs
table.

Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Acked-by: Christoffer Dall <christoffer.dall@linaro.org>
Cc: Marc Zyngier <marc.zyngier@arm.com>
Cc: kvmarm@lists.cs.columbia.edu
arch/arm64/kvm/sys_regs.c

index 1f3062bfa0718d08222b9f749af647dbaae8d1fe..860707fdb912fc669995d7833519ea4e42d2dd6e 100644 (file)
@@ -1016,15 +1016,9 @@ static const struct sys_reg_desc sys_reg_descs[] = {
        { Op0(0b11), Op1(0b011), CRn(0b1101), CRm(0b0000), Op2(0b011),
          NULL, reset_unknown, TPIDRRO_EL0 },
 
-       /* CNTP_TVAL_EL0 */
-       { Op0(0b11), Op1(0b011), CRn(0b1110), CRm(0b0010), Op2(0b000),
-         access_cntp_tval },
-       /* CNTP_CTL_EL0 */
-       { Op0(0b11), Op1(0b011), CRn(0b1110), CRm(0b0010), Op2(0b001),
-         access_cntp_ctl },
-       /* CNTP_CVAL_EL0 */
-       { Op0(0b11), Op1(0b011), CRn(0b1110), CRm(0b0010), Op2(0b010),
-         access_cntp_cval },
+       { SYS_DESC(SYS_CNTP_TVAL_EL0), access_cntp_tval },
+       { SYS_DESC(SYS_CNTP_CTL_EL0), access_cntp_ctl },
+       { SYS_DESC(SYS_CNTP_CVAL_EL0), access_cntp_cval },
 
        /* PMEVCNTRn_EL0 */
        PMU_PMEVCNTR_EL0(0),