diff options
author | Aaron Lindsay | 2019-01-21 11:23:14 +0100 |
---|---|---|
committer | Peter Maydell | 2019-01-21 11:38:56 +0100 |
commit | cad8673744d0914587cd7380e70df11e8c4a0f50 (patch) | |
tree | 25535cd5f1a3a6c5afe67d66c6175f197db14784 /target/arm/cpu.h | |
parent | target/arm: Define FIELDs for ID_DFR0 (diff) | |
download | qemu-cad8673744d0914587cd7380e70df11e8c4a0f50.tar.gz qemu-cad8673744d0914587cd7380e70df11e8c4a0f50.tar.xz qemu-cad8673744d0914587cd7380e70df11e8c4a0f50.zip |
target/arm: Make PMCEID[01]_EL0 64 bit registers, add PMCEID[23]
Signed-off-by: Aaron Lindsay <aaron@os.amperecomputing.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20181211151945.29137-9-aaron@os.amperecomputing.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r-- | target/arm/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 147a285a85..dc86a70b99 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -852,8 +852,8 @@ struct ARMCPU { uint32_t id_pfr0; uint32_t id_pfr1; uint32_t id_dfr0; - uint32_t pmceid0; - uint32_t pmceid1; + uint64_t pmceid0; + uint64_t pmceid1; uint32_t id_afr0; uint32_t id_mmfr0; uint32_t id_mmfr1; |