diff options
author | Richard Henderson | 2021-01-28 13:00:09 +0100 |
---|---|---|
committer | Peter Maydell | 2021-01-29 11:47:28 +0100 |
commit | 1d51bc96cc4a9b2d31a3f4cb8442ce47753088e2 (patch) | |
tree | e808b451b6a426c1cadec046749b37fc62af4b50 /target/arm/cpu.h | |
parent | Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2021-01-28' into ... (diff) | |
download | qemu-1d51bc96cc4a9b2d31a3f4cb8442ce47753088e2.tar.gz qemu-1d51bc96cc4a9b2d31a3f4cb8442ce47753088e2.tar.xz qemu-1d51bc96cc4a9b2d31a3f4cb8442ce47753088e2.zip |
target/arm: Implement ID_PFR2
This was defined at some point before ARMv8.4, and will
shortly be used by new processor descriptions.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20210120204400.1056582-1-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r-- | target/arm/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index df0d677833..d080239863 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -922,6 +922,7 @@ struct ARMCPU { uint32_t id_mmfr4; uint32_t id_pfr0; uint32_t id_pfr1; + uint32_t id_pfr2; uint32_t mvfr0; uint32_t mvfr1; uint32_t mvfr2; |