On 31 January 2017 at 15:15, Wei Huang <w...@redhat.com> wrote: > In order to support Linux perf, which uses PMXEVTYPER register, > this patch adds access support for PMXEVTYPER_EL0. > > Signed-off-by: Wei Huang <w...@redhat.com> > --- > target/arm/cpu.h | 2 +- > target/arm/helper.c | 19 ++++++++++++++++--- > 2 files changed, 17 insertions(+), 4 deletions(-) > > diff --git a/target/arm/cpu.h b/target/arm/cpu.h > index 8a82c73..ce02044 100644 > --- a/target/arm/cpu.h > +++ b/target/arm/cpu.h > @@ -307,7 +307,7 @@ typedef struct CPUARMState { > uint64_t c9_pmcr; /* performance monitor control register */ > uint64_t c9_pmcnten; /* perf monitor counter enables */ > uint32_t c9_pmovsr; /* perf monitor overflow status */ > - uint32_t c9_pmxevtyper; /* perf monitor event type */ > + uint64_t c9_pmxevtyper; /* perf monitor event type */ > uint32_t c9_pmuserenr; /* perf monitor user enable */ > uint64_t c9_pmselr; /* perf monitor counter selection register */ > uint32_t c9_pminten; /* perf monitor interrupt enables */ > diff --git a/target/arm/helper.c b/target/arm/helper.c > index 67520ea..c8620d9 100644 > --- a/target/arm/helper.c > +++ b/target/arm/helper.c > @@ -1054,7 +1054,13 @@ static void pmovsr_write(CPUARMState *env, const > ARMCPRegInfo *ri, > static void pmxevtyper_write(CPUARMState *env, const ARMCPRegInfo *ri, > uint64_t value) > { > - env->cp15.c9_pmxevtyper = value & 0xff; > + /* Attempts to access PMXEVTYPER are CONSTRAINED UNPREDICTABLE when > + * PMSELR value is equal to or greater than the number of implemented > + * counters, but not euqal to 0x1f. We opt to behave as a NOP.
"equal" > + */ > + if (env->cp15.c9_pmselr == 0x1f) { > + pmccfiltr_write(env, ri, value); > + } > } > > static void pmuserenr_write(CPUARMState *env, const ARMCPRegInfo *ri, > @@ -1234,10 +1240,17 @@ static const ARMCPRegInfo v7_cp_reginfo[] = { > .fieldoffset = offsetof(CPUARMState, cp15.pmccfiltr_el0), > .resetvalue = 0, }, > { .name = "PMXEVTYPER", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 > = 1, > - .access = PL0_RW, > - .fieldoffset = offsetof(CPUARMState, cp15.c9_pmxevtyper), > + .access = PL0_RW, .type = ARM_CP_ALIAS, > + .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmxevtyper), > .accessfn = pmreg_access, .writefn = pmxevtyper_write, > .raw_writefn = raw_write }, > + { .name = "PMXEVTYPER_EL0", .state = ARM_CP_STATE_AA64, > + .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 13, .opc2 = 1, > + .access = PL0_RW, .accessfn = pmreg_access, > + .type = ARM_CP_IO, > + .fieldoffset = offsetof(CPUARMState, cp15.c9_pmxevtyper), > + .writefn = pmxevtyper_write, .raw_writefn = raw_write, > + .resetvalue = 0x0 }, Reads also need to give you PMCCFILTR_EL0, if PMSELR is set to 31, so you need a readfn as well. (That also means that the c9_pmxevtyper field in the struct becomes unused, so you can drop it, and the .fieldoffset setting, and mark both the A32 and A64 reg structs as ARM_CP_NO_RAW.) > /* Unimplemented, RAZ/WI. */ > { .name = "PMXEVCNTR", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 = > 2, > .access = PL0_RW, .type = ARM_CP_CONST, .resetvalue = 0, > -- > 1.8.3.1 > thanks -- PMM