Include a helper function to determine if the CCNT counter is enabled as well as the constants used to mask the pmccfiltr_el0 register.
Signed-off-by: Alistair Francis <alistair.fran...@xilinx.com> --- target-arm/cpu.h | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 6a2efd8..31aa09c 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -111,6 +111,25 @@ typedef struct ARMGenericTimer { #define GTIMER_VIRT 1 #define NUM_GTIMERS 2 +#ifndef CONFIG_USER_ONLY + /* Definitions for the PMCCFILTR_EL0 and PMXEVTYPER registers */ + #define PMCP 0x80000000 + #define PMCU 0x40000000 + + /* This implements the PMCCFILTR_EL0:P and U bits; the PMXEVTYPER:P and U + * bits and the c9_pmcr:E bit. + * + * It does not suppor the secure/non-secure componenets of the + * PMCCFILTR_EL0 register + */ + #define CCNT_ENABLED(env) \ + ((env->cp15.c9_pmcr & PMCRE) && \ + !(env->cp15.pmccfiltr_el0 & PMCP && arm_current_pl(env) == 1) && \ + !(env->cp15.pmccfiltr_el0 & PMCU && arm_current_pl(env) == 0) && \ + !(env->cp15.c9_pmxevtyper & PMCP && arm_current_pl(env) == 1) && \ + !(env->cp15.c9_pmxevtyper & PMCU && arm_current_pl(env) == 0)) +#endif + typedef struct CPUARMState { /* Regs for current mode. */ uint32_t regs[16]; -- 1.7.1