mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 07:50:59 +00:00
target/arm: ensure we use current exception state after SCR update
A write to the SCR can change the effective EL by droppping the system from secure to non-secure mode. However if we use a cached current_el from before the change we'll rebuild the flags incorrectly. To fix this we introduce the ARM_CP_NEWEL CP flag to indicate the new EL should be used when recomputing the flags. Backports partof commit f80741d107673f162e3b097fc76a1590036cc9d1 from qemu
This commit is contained in:
parent
81c14bb595
commit
639c5c4fe2
|
@ -2174,6 +2174,9 @@ static inline uint64_t cpreg_to_kvm_id(uint32_t cpregid)
|
|||
* RAISES_EXC is for when the read or write hook might raise an exception;
|
||||
* the generated code will synchronize the CPU state before calling the hook
|
||||
* so that it is safe for the hook to call raise_exception().
|
||||
* NEWEL is for writes to registers that might change the exception
|
||||
* level - typically on older ARM chips. For those cases we need to
|
||||
* re-read the new el when recomputing the translation flags.
|
||||
*/
|
||||
#define ARM_CP_SPECIAL 0x0001
|
||||
#define ARM_CP_CONST 0x0002
|
||||
|
@ -2193,10 +2196,11 @@ static inline uint64_t cpreg_to_kvm_id(uint32_t cpregid)
|
|||
#define ARM_CP_SVE 0x2000
|
||||
#define ARM_CP_NO_GDB 0x4000
|
||||
#define ARM_CP_RAISES_EXC 0x8000
|
||||
#define ARM_CP_NEWEL 0x10000
|
||||
/* Used only as a terminator for ARMCPRegInfo lists */
|
||||
#define ARM_CP_SENTINEL 0xffff
|
||||
#define ARM_CP_SENTINEL 0xfffff
|
||||
/* Mask of only the flag bits in a type field */
|
||||
#define ARM_CP_FLAG_MASK 0xf0ff
|
||||
#define ARM_CP_FLAG_MASK 0x1f0ff
|
||||
|
||||
/* Valid values for ARMCPRegInfo state field, indicating which of
|
||||
* the AArch32 and AArch64 execution states this register is visible in.
|
||||
|
|
|
@ -4933,7 +4933,7 @@ static const ARMCPRegInfo el3_cp_reginfo[] = {
|
|||
.opc0 = 3, .opc1 = 6, .crn = 1, .crm = 1, .opc2 = 0,
|
||||
.access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.scr_el3),
|
||||
.resetvalue = 0, .writefn = scr_write },
|
||||
{ .name = "SCR", .type = ARM_CP_ALIAS,
|
||||
{ .name = "SCR", .type = ARM_CP_ALIAS | ARM_CP_NEWEL,
|
||||
.cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 0,
|
||||
.access = PL1_RW, .accessfn = access_trap_aa32s_el1,
|
||||
.fieldoffset = offsetoflow32(CPUARMState, cp15.scr_el3),
|
||||
|
|
Loading…
Reference in a new issue