mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
target/arm: Add TTBR1_EL2
At the same time, add writefn to TTBR0_EL2 and TCR_EL2. A later patch will update any ASID therein. Tested-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20200206105448.4726-5-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
e2a1a4616c
commit
ed30da8eee
1 changed files with 12 additions and 1 deletions
|
@ -3533,6 +3533,13 @@ static void vmsa_ttbr_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||||
raw_write(env, ri, value);
|
raw_write(env, ri, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void vmsa_tcr_ttbr_el2_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||||
|
uint64_t value)
|
||||||
|
{
|
||||||
|
/* TODO: There are ASID fields in here with HCR_EL2.E2H */
|
||||||
|
raw_write(env, ri, value);
|
||||||
|
}
|
||||||
|
|
||||||
static void vttbr_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
static void vttbr_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||||
uint64_t value)
|
uint64_t value)
|
||||||
{
|
{
|
||||||
|
@ -4979,7 +4986,7 @@ static const ARMCPRegInfo el2_cp_reginfo[] = {
|
||||||
.fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[2]) },
|
.fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[2]) },
|
||||||
{ .name = "TTBR0_EL2", .state = ARM_CP_STATE_AA64,
|
{ .name = "TTBR0_EL2", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 0,
|
.opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 0,
|
||||||
.access = PL2_RW, .resetvalue = 0,
|
.access = PL2_RW, .resetvalue = 0, .writefn = vmsa_tcr_ttbr_el2_write,
|
||||||
.fieldoffset = offsetof(CPUARMState, cp15.ttbr0_el[2]) },
|
.fieldoffset = offsetof(CPUARMState, cp15.ttbr0_el[2]) },
|
||||||
{ .name = "HTTBR", .cp = 15, .opc1 = 4, .crm = 2,
|
{ .name = "HTTBR", .cp = 15, .opc1 = 4, .crm = 2,
|
||||||
.access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS,
|
.access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS,
|
||||||
|
@ -6131,6 +6138,10 @@ static const ARMCPRegInfo vhe_reginfo[] = {
|
||||||
.opc0 = 3, .opc1 = 4, .crn = 13, .crm = 0, .opc2 = 1,
|
.opc0 = 3, .opc1 = 4, .crn = 13, .crm = 0, .opc2 = 1,
|
||||||
.access = PL2_RW,
|
.access = PL2_RW,
|
||||||
.fieldoffset = offsetof(CPUARMState, cp15.contextidr_el[2]) },
|
.fieldoffset = offsetof(CPUARMState, cp15.contextidr_el[2]) },
|
||||||
|
{ .name = "TTBR1_EL2", .state = ARM_CP_STATE_AA64,
|
||||||
|
.opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 1,
|
||||||
|
.access = PL2_RW, .writefn = vmsa_tcr_ttbr_el2_write,
|
||||||
|
.fieldoffset = offsetof(CPUARMState, cp15.ttbr1_el[2]) },
|
||||||
REGINFO_SENTINEL
|
REGINFO_SENTINEL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue