]> git.proxmox.com Git - mirror_qemu.git/commit
target/arm: Add missing .cp = 15 to HMAIR1 and HAMAIR1 regdefs
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 20 Aug 2018 10:24:31 +0000 (11:24 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 20 Aug 2018 10:24:31 +0000 (11:24 +0100)
commitb5ede85bfb7ba1a8f6086494c82f400b29969f65
tree0bf553a421274283617e4bb4db4cb9a2593e9bb4
parent55b53c718b2f684793eeefcf1c1a548ee97e23aa
target/arm: Add missing .cp = 15 to HMAIR1 and HAMAIR1 regdefs

ARMCPRegInfo structs will default to .cp = 15 if they
are ARM_CP_STATE_BOTH, but not if they are ARM_CP_STATE_AA32
(because a coprocessor number of 0 is valid for AArch32).
We forgot to explicitly set .cp = 15 for the HMAIR1 and
HAMAIR1 regdefs, which meant they would UNDEF when the guest
tried to access them under cp15.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Reviewed-by: Luc Michel <luc.michel@greensocs.com>
Message-id: 20180814124254.5229-3-peter.maydell@linaro.org
target/arm/helper.c