mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
target/arm: Count PMU events when MDCR.SPME is set
This check was backwards when introduced in commit
033614c47d:
target/arm: Filter cycle counter based on PMCCFILTR_EL0
Cc: qemu-stable@nongnu.org
Signed-off-by: Aaron Lindsay <aaron@os.amperecomputing.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
d849800512
commit
db1f3afb17
1 changed files with 1 additions and 1 deletions
|
|
@ -1452,7 +1452,7 @@ static bool pmu_counter_enabled(CPUARMState *env, uint8_t counter)
|
|||
}
|
||||
} else {
|
||||
prohibited = arm_feature(env, ARM_FEATURE_EL3) &&
|
||||
(env->cp15.mdcr_el3 & MDCR_SPME);
|
||||
!(env->cp15.mdcr_el3 & MDCR_SPME);
|
||||
}
|
||||
|
||||
if (prohibited && counter == 31) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue