mirror of
https://github.com/qemu/qemu.git
synced 2024-12-01 15:53:35 +08:00
target/arm: Rename pmu_8_n feature test functions
Our feature test functions that check the PMU version are named isar_feature_{aa32,aa64,any}_pmu_8_{1,4}. This doesn't match the current Arm ARM official feature names, which are FEAT_PMUv3p1 and FEAT_PMUv3p4. Rename these functions to _pmuv3p1 and _pmuv3p4. This commit was created with: sed -i -e 's/pmu_8_/pmuv3p/g' target/arm/*.[ch] Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220822132358.3524971-8-peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
f1dd2506ee
commit
a793bcd027
@ -3712,14 +3712,14 @@ static inline bool isar_feature_aa32_ats1e1(const ARMISARegisters *id)
|
||||
return FIELD_EX32(id->id_mmfr3, ID_MMFR3, PAN) >= 2;
|
||||
}
|
||||
|
||||
static inline bool isar_feature_aa32_pmu_8_1(const ARMISARegisters *id)
|
||||
static inline bool isar_feature_aa32_pmuv3p1(const ARMISARegisters *id)
|
||||
{
|
||||
/* 0xf means "non-standard IMPDEF PMU" */
|
||||
return FIELD_EX32(id->id_dfr0, ID_DFR0, PERFMON) >= 4 &&
|
||||
FIELD_EX32(id->id_dfr0, ID_DFR0, PERFMON) != 0xf;
|
||||
}
|
||||
|
||||
static inline bool isar_feature_aa32_pmu_8_4(const ARMISARegisters *id)
|
||||
static inline bool isar_feature_aa32_pmuv3p4(const ARMISARegisters *id)
|
||||
{
|
||||
/* 0xf means "non-standard IMPDEF PMU" */
|
||||
return FIELD_EX32(id->id_dfr0, ID_DFR0, PERFMON) >= 5 &&
|
||||
@ -4038,13 +4038,13 @@ static inline bool isar_feature_aa64_sme(const ARMISARegisters *id)
|
||||
return FIELD_EX64(id->id_aa64pfr1, ID_AA64PFR1, SME) != 0;
|
||||
}
|
||||
|
||||
static inline bool isar_feature_aa64_pmu_8_1(const ARMISARegisters *id)
|
||||
static inline bool isar_feature_aa64_pmuv3p1(const ARMISARegisters *id)
|
||||
{
|
||||
return FIELD_EX64(id->id_aa64dfr0, ID_AA64DFR0, PMUVER) >= 4 &&
|
||||
FIELD_EX64(id->id_aa64dfr0, ID_AA64DFR0, PMUVER) != 0xf;
|
||||
}
|
||||
|
||||
static inline bool isar_feature_aa64_pmu_8_4(const ARMISARegisters *id)
|
||||
static inline bool isar_feature_aa64_pmuv3p4(const ARMISARegisters *id)
|
||||
{
|
||||
return FIELD_EX64(id->id_aa64dfr0, ID_AA64DFR0, PMUVER) >= 5 &&
|
||||
FIELD_EX64(id->id_aa64dfr0, ID_AA64DFR0, PMUVER) != 0xf;
|
||||
@ -4213,14 +4213,14 @@ static inline bool isar_feature_any_predinv(const ARMISARegisters *id)
|
||||
return isar_feature_aa64_predinv(id) || isar_feature_aa32_predinv(id);
|
||||
}
|
||||
|
||||
static inline bool isar_feature_any_pmu_8_1(const ARMISARegisters *id)
|
||||
static inline bool isar_feature_any_pmuv3p1(const ARMISARegisters *id)
|
||||
{
|
||||
return isar_feature_aa64_pmu_8_1(id) || isar_feature_aa32_pmu_8_1(id);
|
||||
return isar_feature_aa64_pmuv3p1(id) || isar_feature_aa32_pmuv3p1(id);
|
||||
}
|
||||
|
||||
static inline bool isar_feature_any_pmu_8_4(const ARMISARegisters *id)
|
||||
static inline bool isar_feature_any_pmuv3p4(const ARMISARegisters *id)
|
||||
{
|
||||
return isar_feature_aa64_pmu_8_4(id) || isar_feature_aa32_pmu_8_4(id);
|
||||
return isar_feature_aa64_pmuv3p4(id) || isar_feature_aa32_pmuv3p4(id);
|
||||
}
|
||||
|
||||
static inline bool isar_feature_any_ccidx(const ARMISARegisters *id)
|
||||
|
@ -879,16 +879,16 @@ static int64_t instructions_ns_per(uint64_t icount)
|
||||
}
|
||||
#endif
|
||||
|
||||
static bool pmu_8_1_events_supported(CPUARMState *env)
|
||||
static bool pmuv3p1_events_supported(CPUARMState *env)
|
||||
{
|
||||
/* For events which are supported in any v8.1 PMU */
|
||||
return cpu_isar_feature(any_pmu_8_1, env_archcpu(env));
|
||||
return cpu_isar_feature(any_pmuv3p1, env_archcpu(env));
|
||||
}
|
||||
|
||||
static bool pmu_8_4_events_supported(CPUARMState *env)
|
||||
static bool pmuv3p4_events_supported(CPUARMState *env)
|
||||
{
|
||||
/* For events which are supported in any v8.1 PMU */
|
||||
return cpu_isar_feature(any_pmu_8_4, env_archcpu(env));
|
||||
return cpu_isar_feature(any_pmuv3p4, env_archcpu(env));
|
||||
}
|
||||
|
||||
static uint64_t zero_event_get_count(CPUARMState *env)
|
||||
@ -922,17 +922,17 @@ static const pm_event pm_events[] = {
|
||||
},
|
||||
#endif
|
||||
{ .number = 0x023, /* STALL_FRONTEND */
|
||||
.supported = pmu_8_1_events_supported,
|
||||
.supported = pmuv3p1_events_supported,
|
||||
.get_count = zero_event_get_count,
|
||||
.ns_per_count = zero_event_ns_per,
|
||||
},
|
||||
{ .number = 0x024, /* STALL_BACKEND */
|
||||
.supported = pmu_8_1_events_supported,
|
||||
.supported = pmuv3p1_events_supported,
|
||||
.get_count = zero_event_get_count,
|
||||
.ns_per_count = zero_event_ns_per,
|
||||
},
|
||||
{ .number = 0x03c, /* STALL */
|
||||
.supported = pmu_8_4_events_supported,
|
||||
.supported = pmuv3p4_events_supported,
|
||||
.get_count = zero_event_get_count,
|
||||
.ns_per_count = zero_event_ns_per,
|
||||
},
|
||||
@ -6400,7 +6400,7 @@ static void define_pmu_regs(ARMCPU *cpu)
|
||||
g_free(pmevtyper_name);
|
||||
g_free(pmevtyper_el0_name);
|
||||
}
|
||||
if (cpu_isar_feature(aa32_pmu_8_1, cpu)) {
|
||||
if (cpu_isar_feature(aa32_pmuv3p1, cpu)) {
|
||||
ARMCPRegInfo v81_pmu_regs[] = {
|
||||
{ .name = "PMCEID2", .state = ARM_CP_STATE_AA32,
|
||||
.cp = 15, .opc1 = 0, .crn = 9, .crm = 14, .opc2 = 4,
|
||||
@ -6413,7 +6413,7 @@ static void define_pmu_regs(ARMCPU *cpu)
|
||||
};
|
||||
define_arm_cp_regs(cpu, v81_pmu_regs);
|
||||
}
|
||||
if (cpu_isar_feature(any_pmu_8_4, cpu)) {
|
||||
if (cpu_isar_feature(any_pmuv3p4, cpu)) {
|
||||
static const ARMCPRegInfo v84_pmmir = {
|
||||
.name = "PMMIR_EL1", .state = ARM_CP_STATE_BOTH,
|
||||
.opc0 = 3, .opc1 = 0, .crn = 9, .crm = 14, .opc2 = 6,
|
||||
|
Loading…
Reference in New Issue
Block a user