]> Git Repo - qemu.git/commit
target/arm: Fix ATS1Hx instructions
authorPeter Maydell <[email protected]>
Tue, 6 Nov 2018 11:32:14 +0000 (11:32 +0000)
committerPeter Maydell <[email protected]>
Tue, 6 Nov 2018 11:32:14 +0000 (11:32 +0000)
commit23463e0e4aeb2f0a9c60549a2c163f4adc0b8512
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 <[email protected]>
Reviewed-by: Alex BennĂ©e <[email protected]>
Message-id: 20181016093703[email protected]
Reviewed-by: Edgar E. Iglesias <[email protected]>
target/arm/helper.c
This page took 0.025832 seconds and 4 git commands to generate.