target/arm: Fix ATS1Hx instructions
commit23463e0e4aeb2f0a9c60549a2c163f4adc0b8512
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 6 Nov 2018 11:32:14 +0000 (6 11:32 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 6 Nov 2018 11:32:14 +0000 (6 11:32 +0000)
treeb8aef0dbd207a9a7d9cd02b923efa17229ae948e
parent0f7b791b35f24cb1333f779705a3f6472e6935de
target/arm: Fix ATS1Hx instructions

ATS1HR and ATS1HW (which allow AArch32 EL2 to do address translations
on the EL2 translation regime) were implemented in commit 14db7fe09a2c8.
However, we got them wrong: these should do stage 1 address translations
as defined for NS-EL2, which is ARMMMUIdx_S1E2. We were incorrectly
making them perform stage 2 translations.

A few years later in commit 1313e2d7e2cd we forgot entirely that
we'd implemented ATS1Hx, and added a comment that ATS1Hx were
"not supported yet". Remove the comment; there is no extra code
needed to handle these operations in do_ats_write(), because
arm_s1_regime_using_lpae_format() returns true for ARMMMUIdx_S1E2,
which forces 64-bit PAR format.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 20181016093703.10637-3-peter.maydell@linaro.org
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
target/arm/helper.c