target/arm: Apply access checks to neoverse-n1 special registers
Access to many of the special registers is enabled or disabled by ACTLR_EL[23], which we implement as constant 0, which means that all writes outside EL3 should trap. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 20230811214031.171020-7-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
d8100822d6
commit
6d482423fc
@ -1077,4 +1077,6 @@ static inline void define_cortex_a72_a57_a53_cp_reginfo(ARMCPU *cpu) { }
|
|||||||
void define_cortex_a72_a57_a53_cp_reginfo(ARMCPU *cpu);
|
void define_cortex_a72_a57_a53_cp_reginfo(ARMCPU *cpu);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
CPAccessResult access_tvm_trvm(CPUARMState *, const ARMCPRegInfo *, bool);
|
||||||
|
|
||||||
#endif /* TARGET_ARM_CPREGS_H */
|
#endif /* TARGET_ARM_CPREGS_H */
|
||||||
|
@ -319,8 +319,8 @@ static CPAccessResult access_tpm(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Check for traps from EL1 due to HCR_EL2.TVM and HCR_EL2.TRVM. */
|
/* Check for traps from EL1 due to HCR_EL2.TVM and HCR_EL2.TRVM. */
|
||||||
static CPAccessResult access_tvm_trvm(CPUARMState *env, const ARMCPRegInfo *ri,
|
CPAccessResult access_tvm_trvm(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||||
bool isread)
|
bool isread)
|
||||||
{
|
{
|
||||||
if (arm_current_el(env) == 1) {
|
if (arm_current_el(env) == 1) {
|
||||||
uint64_t trap = isread ? HCR_TRVM : HCR_TVM;
|
uint64_t trap = isread ? HCR_TRVM : HCR_TVM;
|
||||||
|
@ -463,10 +463,30 @@ static void aarch64_a64fx_initfn(Object *obj)
|
|||||||
/* TODO: Add A64FX specific HPC extension registers */
|
/* TODO: Add A64FX specific HPC extension registers */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static CPAccessResult access_actlr_w(CPUARMState *env, const ARMCPRegInfo *r,
|
||||||
|
bool read)
|
||||||
|
{
|
||||||
|
if (!read) {
|
||||||
|
int el = arm_current_el(env);
|
||||||
|
|
||||||
|
/* Because ACTLR_EL2 is constant 0, writes below EL2 trap to EL2. */
|
||||||
|
if (el < 2 && arm_is_el2_enabled(env)) {
|
||||||
|
return CP_ACCESS_TRAP_EL2;
|
||||||
|
}
|
||||||
|
/* Because ACTLR_EL3 is constant 0, writes below EL3 trap to EL3. */
|
||||||
|
if (el < 3 && arm_feature(env, ARM_FEATURE_EL3)) {
|
||||||
|
return CP_ACCESS_TRAP_EL3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return CP_ACCESS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
static const ARMCPRegInfo neoverse_n1_cp_reginfo[] = {
|
static const ARMCPRegInfo neoverse_n1_cp_reginfo[] = {
|
||||||
{ .name = "ATCR_EL1", .state = ARM_CP_STATE_AA64,
|
{ .name = "ATCR_EL1", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 7, .opc2 = 0,
|
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 7, .opc2 = 0,
|
||||||
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0,
|
||||||
|
/* Traps and enables are the same as for TCR_EL1. */
|
||||||
|
.accessfn = access_tvm_trvm, .fgt = FGT_TCR_EL1, },
|
||||||
{ .name = "ATCR_EL2", .state = ARM_CP_STATE_AA64,
|
{ .name = "ATCR_EL2", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 4, .crn = 15, .crm = 7, .opc2 = 0,
|
.opc0 = 3, .opc1 = 4, .crn = 15, .crm = 7, .opc2 = 0,
|
||||||
.access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
||||||
@ -481,13 +501,16 @@ static const ARMCPRegInfo neoverse_n1_cp_reginfo[] = {
|
|||||||
.access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
||||||
{ .name = "CPUACTLR_EL1", .state = ARM_CP_STATE_AA64,
|
{ .name = "CPUACTLR_EL1", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 1, .opc2 = 0,
|
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 1, .opc2 = 0,
|
||||||
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0,
|
||||||
|
.accessfn = access_actlr_w },
|
||||||
{ .name = "CPUACTLR2_EL1", .state = ARM_CP_STATE_AA64,
|
{ .name = "CPUACTLR2_EL1", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 1, .opc2 = 1,
|
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 1, .opc2 = 1,
|
||||||
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0,
|
||||||
|
.accessfn = access_actlr_w },
|
||||||
{ .name = "CPUACTLR3_EL1", .state = ARM_CP_STATE_AA64,
|
{ .name = "CPUACTLR3_EL1", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 1, .opc2 = 2,
|
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 1, .opc2 = 2,
|
||||||
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0,
|
||||||
|
.accessfn = access_actlr_w },
|
||||||
/*
|
/*
|
||||||
* Report CPUCFR_EL1.SCU as 1, as we do not implement the DSU
|
* Report CPUCFR_EL1.SCU as 1, as we do not implement the DSU
|
||||||
* (and in particular its system registers).
|
* (and in particular its system registers).
|
||||||
@ -497,7 +520,8 @@ static const ARMCPRegInfo neoverse_n1_cp_reginfo[] = {
|
|||||||
.access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 4 },
|
.access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 4 },
|
||||||
{ .name = "CPUECTLR_EL1", .state = ARM_CP_STATE_AA64,
|
{ .name = "CPUECTLR_EL1", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 1, .opc2 = 4,
|
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 1, .opc2 = 4,
|
||||||
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0x961563010 },
|
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0x961563010,
|
||||||
|
.accessfn = access_actlr_w },
|
||||||
{ .name = "CPUPCR_EL3", .state = ARM_CP_STATE_AA64,
|
{ .name = "CPUPCR_EL3", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 6, .crn = 15, .crm = 8, .opc2 = 1,
|
.opc0 = 3, .opc1 = 6, .crn = 15, .crm = 8, .opc2 = 1,
|
||||||
.access = PL3_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL3_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
||||||
@ -512,16 +536,20 @@ static const ARMCPRegInfo neoverse_n1_cp_reginfo[] = {
|
|||||||
.access = PL3_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL3_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
||||||
{ .name = "CPUPWRCTLR_EL1", .state = ARM_CP_STATE_AA64,
|
{ .name = "CPUPWRCTLR_EL1", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 2, .opc2 = 7,
|
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 2, .opc2 = 7,
|
||||||
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0,
|
||||||
|
.accessfn = access_actlr_w },
|
||||||
{ .name = "ERXPFGCDN_EL1", .state = ARM_CP_STATE_AA64,
|
{ .name = "ERXPFGCDN_EL1", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 2, .opc2 = 2,
|
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 2, .opc2 = 2,
|
||||||
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0,
|
||||||
|
.accessfn = access_actlr_w },
|
||||||
{ .name = "ERXPFGCTL_EL1", .state = ARM_CP_STATE_AA64,
|
{ .name = "ERXPFGCTL_EL1", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 2, .opc2 = 1,
|
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 2, .opc2 = 1,
|
||||||
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0,
|
||||||
|
.accessfn = access_actlr_w },
|
||||||
{ .name = "ERXPFGF_EL1", .state = ARM_CP_STATE_AA64,
|
{ .name = "ERXPFGF_EL1", .state = ARM_CP_STATE_AA64,
|
||||||
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 2, .opc2 = 0,
|
.opc0 = 3, .opc1 = 0, .crn = 15, .crm = 2, .opc2 = 0,
|
||||||
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
|
.access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0,
|
||||||
|
.accessfn = access_actlr_w },
|
||||||
};
|
};
|
||||||
|
|
||||||
static void define_neoverse_n1_cp_reginfo(ARMCPU *cpu)
|
static void define_neoverse_n1_cp_reginfo(ARMCPU *cpu)
|
||||||
|
Loading…
Reference in New Issue
Block a user