mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 18:45:27 +00:00
target-arm: Add VBAR support to ARM1176 CPUs
ARM1176 CPUs have TrustZone support and can use the Vector Base Address Register, but currently, qemu only adds VBAR support to ARMv7 CPUs. Fix this by adding a new feature ARM_FEATURE_VBAR which can used for ARMv7 and ARM1176 CPUs. The VBAR feature is always set for ARMv7 because some legacy boards require it even if this is not architecturally correct. Backports commit 91db4642f868cf2e591b62d31a19d35b02ea791e from qemu
This commit is contained in:
parent
554ad1f34e
commit
c7ab1e782b
|
@ -1105,10 +1105,6 @@ static const ARMCPRegInfo v7_cp_reginfo[] = {
|
||||||
{ "PMINTENCLR_EL1", 0,9,14, 3,0,2, ARM_CP_STATE_AA64, ARM_CP_ALIAS,
|
{ "PMINTENCLR_EL1", 0,9,14, 3,0,2, ARM_CP_STATE_AA64, ARM_CP_ALIAS,
|
||||||
PL1_RW, 0, NULL, 0, offsetof(CPUARMState, cp15.c9_pminten), {0, 0},
|
PL1_RW, 0, NULL, 0, offsetof(CPUARMState, cp15.c9_pminten), {0, 0},
|
||||||
access_tpm, NULL, pmintenclr_write },
|
access_tpm, NULL, pmintenclr_write },
|
||||||
{ "VBAR", 0,12,0, 3,0,0, ARM_CP_STATE_BOTH, 0,
|
|
||||||
PL1_RW, 0, NULL, 0, 0,
|
|
||||||
{ offsetof(CPUARMState, cp15.vbar_s), offsetof(CPUARMState, cp15.vbar_ns) },
|
|
||||||
NULL, NULL, vbar_write, },
|
|
||||||
{ "CCSIDR", 0,0,0, 3,1,0, ARM_CP_STATE_BOTH,
|
{ "CCSIDR", 0,0,0, 3,1,0, ARM_CP_STATE_BOTH,
|
||||||
ARM_CP_NO_RAW, PL1_R, 0, NULL, 0, 0, {0, 0},
|
ARM_CP_NO_RAW, PL1_R, 0, NULL, 0, 0, {0, 0},
|
||||||
NULL, ccsidr_read, },
|
NULL, ccsidr_read, },
|
||||||
|
@ -4386,6 +4382,18 @@ void register_cp_regs_for_features(ARMCPU *cpu)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (arm_feature(env, ARM_FEATURE_VBAR)) {
|
||||||
|
ARMCPRegInfo vbar_cp_reginfo[] = {
|
||||||
|
{ "VBAR", 0,12,0, 3,0,0, ARM_CP_STATE_BOTH, 0,
|
||||||
|
PL1_RW, 0, NULL, 0, 0,
|
||||||
|
{ offsetof(CPUARMState, cp15.vbar_s),
|
||||||
|
offsetof(CPUARMState, cp15.vbar_ns) },
|
||||||
|
NULL, NULL, vbar_write },
|
||||||
|
REGINFO_SENTINEL
|
||||||
|
};
|
||||||
|
define_arm_cp_regs(cpu, vbar_cp_reginfo);
|
||||||
|
}
|
||||||
|
|
||||||
/* Generic registers whose values depend on the implementation */
|
/* Generic registers whose values depend on the implementation */
|
||||||
{
|
{
|
||||||
ARMCPRegInfo sctlr = {
|
ARMCPRegInfo sctlr = {
|
||||||
|
|
Loading…
Reference in a new issue