mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-02-25 14:26:57 +00:00
arm: Don't let no-MPU PMSA cores write to SCTLR.M
If the CPU is a PMSA config with no MPU implemented, then the SCTLR.M bit should be RAZ/WI, so that the guest can never turn on the non-existent MPU. Backports commit 06312febfb2d35367006ef23608ddd6a131214d4 from qemu
This commit is contained in:
parent
e564ed6311
commit
349227bb05
|
@ -2984,6 +2984,11 @@ static void sctlr_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
return;
|
||||
}
|
||||
|
||||
if (arm_feature(env, ARM_FEATURE_PMSA) && !cpu->has_mpu) {
|
||||
/* M bit is RAZ/WI for PMSA with no MPU implemented */
|
||||
value &= ~SCTLR_M;
|
||||
}
|
||||
|
||||
raw_write(env, ri, value);
|
||||
/* ??? Lots of these bits are not implemented. */
|
||||
/* This may enable/disable the MMU, so do a TLB flush. */
|
||||
|
|
Loading…
Reference in a new issue