summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorAaron Lindsay2018-04-26 12:04:39 +0200
committerPeter Maydell2018-04-26 12:04:39 +0200
commit169c893874977eee8303a6dad4a3f25c5464858f (patch)
tree2034d2bd1cee5ee58fbdc86370a899043830775e /target
parenttarget/arm: Check PMCNTEN for whether PMCCNTR is enabled (diff)
downloadqemu-169c893874977eee8303a6dad4a3f25c5464858f.tar.gz
qemu-169c893874977eee8303a6dad4a3f25c5464858f.tar.xz
qemu-169c893874977eee8303a6dad4a3f25c5464858f.zip
target/arm: Treat PMCCNTR as alias of PMCCNTR_EL0
They share the same underlying state Signed-off-by: Aaron Lindsay <alindsay@codeaurora.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 1523997485-1905-3-git-send-email-alindsay@codeaurora.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target')
-rw-r--r--target/arm/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/helper.c b/target/arm/helper.c
index 1526724d64..7bf4afa719 100644
--- a/target/arm/helper.c
+++ b/target/arm/helper.c
@@ -1318,7 +1318,7 @@ static const ARMCPRegInfo v7_cp_reginfo[] = {
.fieldoffset = offsetof(CPUARMState, cp15.c9_pmselr),
.writefn = pmselr_write, .raw_writefn = raw_write, },
{ .name = "PMCCNTR", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 = 0,
- .access = PL0_RW, .resetvalue = 0, .type = ARM_CP_IO,
+ .access = PL0_RW, .resetvalue = 0, .type = ARM_CP_ALIAS | ARM_CP_IO,
.readfn = pmccntr_read, .writefn = pmccntr_write32,
.accessfn = pmreg_access_ccntr },
{ .name = "PMCCNTR_EL0", .state = ARM_CP_STATE_AA64,