mirror of https://gitee.com/openkylin/qemu.git
target/arm: Update MSR access to UAO
Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20200208125816.14954-19-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
64761e10af
commit
9eeb7a1c95
|
@ -1253,6 +1253,7 @@ void pmu_init(ARMCPU *cpu);
|
|||
#define PSTATE_IL (1U << 20)
|
||||
#define PSTATE_SS (1U << 21)
|
||||
#define PSTATE_PAN (1U << 22)
|
||||
#define PSTATE_UAO (1U << 23)
|
||||
#define PSTATE_V (1U << 28)
|
||||
#define PSTATE_C (1U << 29)
|
||||
#define PSTATE_Z (1U << 30)
|
||||
|
@ -3642,6 +3643,11 @@ static inline bool isar_feature_aa64_ats1e1(const ARMISARegisters *id)
|
|||
return FIELD_EX64(id->id_aa64mmfr1, ID_AA64MMFR1, PAN) >= 2;
|
||||
}
|
||||
|
||||
static inline bool isar_feature_aa64_uao(const ARMISARegisters *id)
|
||||
{
|
||||
return FIELD_EX64(id->id_aa64mmfr2, ID_AA64MMFR2, UAO) != 0;
|
||||
}
|
||||
|
||||
static inline bool isar_feature_aa64_bti(const ARMISARegisters *id)
|
||||
{
|
||||
return FIELD_EX64(id->id_aa64pfr1, ID_AA64PFR1, BT) != 0;
|
||||
|
|
|
@ -4191,6 +4191,24 @@ static const ARMCPRegInfo pan_reginfo = {
|
|||
.readfn = aa64_pan_read, .writefn = aa64_pan_write
|
||||
};
|
||||
|
||||
static uint64_t aa64_uao_read(CPUARMState *env, const ARMCPRegInfo *ri)
|
||||
{
|
||||
return env->pstate & PSTATE_UAO;
|
||||
}
|
||||
|
||||
static void aa64_uao_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
env->pstate = (env->pstate & ~PSTATE_UAO) | (value & PSTATE_UAO);
|
||||
}
|
||||
|
||||
static const ARMCPRegInfo uao_reginfo = {
|
||||
.name = "UAO", .state = ARM_CP_STATE_AA64,
|
||||
.opc0 = 3, .opc1 = 0, .crn = 4, .crm = 2, .opc2 = 4,
|
||||
.type = ARM_CP_NO_RAW, .access = PL1_RW,
|
||||
.readfn = aa64_uao_read, .writefn = aa64_uao_write
|
||||
};
|
||||
|
||||
static CPAccessResult aa64_cacheop_access(CPUARMState *env,
|
||||
const ARMCPRegInfo *ri,
|
||||
bool isread)
|
||||
|
@ -7664,6 +7682,9 @@ void register_cp_regs_for_features(ARMCPU *cpu)
|
|||
define_arm_cp_regs(cpu, ats1cp_reginfo);
|
||||
}
|
||||
#endif
|
||||
if (cpu_isar_feature(aa64_uao, cpu)) {
|
||||
define_one_arm_cp_reg(cpu, &uao_reginfo);
|
||||
}
|
||||
|
||||
if (arm_feature(env, ARM_FEATURE_EL2) && cpu_isar_feature(aa64_vh, cpu)) {
|
||||
define_arm_cp_regs(cpu, vhe_reginfo);
|
||||
|
|
|
@ -1112,6 +1112,9 @@ static inline uint32_t aarch64_pstate_valid_mask(const ARMISARegisters *id)
|
|||
if (isar_feature_aa64_pan(id)) {
|
||||
valid |= PSTATE_PAN;
|
||||
}
|
||||
if (isar_feature_aa64_uao(id)) {
|
||||
valid |= PSTATE_UAO;
|
||||
}
|
||||
|
||||
return valid;
|
||||
}
|
||||
|
|
|
@ -1602,6 +1602,20 @@ static void handle_msr_i(DisasContext *s, uint32_t insn,
|
|||
s->base.is_jmp = DISAS_NEXT;
|
||||
break;
|
||||
|
||||
case 0x03: /* UAO */
|
||||
if (!dc_isar_feature(aa64_uao, s) || s->current_el == 0) {
|
||||
goto do_unallocated;
|
||||
}
|
||||
if (crm & 1) {
|
||||
set_pstate_bits(PSTATE_UAO);
|
||||
} else {
|
||||
clear_pstate_bits(PSTATE_UAO);
|
||||
}
|
||||
t1 = tcg_const_i32(s->current_el);
|
||||
gen_helper_rebuild_hflags_a64(cpu_env, t1);
|
||||
tcg_temp_free_i32(t1);
|
||||
break;
|
||||
|
||||
case 0x04: /* PAN */
|
||||
if (!dc_isar_feature(aa64_pan, s) || s->current_el == 0) {
|
||||
goto do_unallocated;
|
||||
|
|
Loading…
Reference in New Issue