mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-10 20:35:36 +00:00
target/arm: Update aa64_zva_access for EL2
The comment that we don't support EL2 is somewhat out of date. Update to include checks against HCR_EL2.TDZ. Backports commit 4351cb72fb65926136ab618c9e40c1f5a8813251 from qemu
This commit is contained in:
parent
3a5135473f
commit
6886ba66d0
|
@ -3962,11 +3962,27 @@ static void tlbi_aa64_ipas2e1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
static CPAccessResult aa64_zva_access(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
bool isread)
|
||||
{
|
||||
/* We don't implement EL2, so the only control on DC ZVA is the
|
||||
* bit in the SCTLR which can prohibit access for EL0.
|
||||
*/
|
||||
if (arm_current_el(env) == 0 && !(env->cp15.sctlr_el[1] & SCTLR_DZE)) {
|
||||
return CP_ACCESS_TRAP;
|
||||
int cur_el = arm_current_el(env);
|
||||
|
||||
if (cur_el < 2) {
|
||||
uint64_t hcr = arm_hcr_el2_eff(env);
|
||||
|
||||
if (cur_el == 0) {
|
||||
if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
|
||||
if (!(env->cp15.sctlr_el[2] & SCTLR_DZE)) {
|
||||
return CP_ACCESS_TRAP_EL2;
|
||||
}
|
||||
} else {
|
||||
if (!(env->cp15.sctlr_el[1] & SCTLR_DZE)) {
|
||||
return CP_ACCESS_TRAP;
|
||||
}
|
||||
if (hcr & HCR_TDZ) {
|
||||
return CP_ACCESS_TRAP_EL2;
|
||||
}
|
||||
}
|
||||
} else if (hcr & HCR_TDZ) {
|
||||
return CP_ACCESS_TRAP_EL2;
|
||||
}
|
||||
}
|
||||
return CP_ACCESS_OK;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue