[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 07/10] target/ppc/power8-pmu.c: handle overflow bits when PMU
From: |
Daniel Henrique Barboza |
Subject: |
[PATCH v5 07/10] target/ppc/power8-pmu.c: handle overflow bits when PMU is running |
Date: |
Mon, 1 Nov 2021 20:56:39 -0300 |
Up until this moment we were assuming that the counter negative
enabled bits, PMC1CE and PMCjCE, would never be changed when the
PMU is already started.
Turns out that there is no such restriction in the PowerISA v3.1,
and software can enable/disable overflow conditions of the counters
at any time.
To support this scenario, track the overflow bits state when a
write in MMCR0 is made in which the run state of the PMU (MMCR0_FC
bit) didn't change and, if some overflow bit were changed in the
middle of a cycle count session, restart it.
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
---
target/ppc/power8-pmu.c | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/target/ppc/power8-pmu.c b/target/ppc/power8-pmu.c
index d66266829f..aa10233b29 100644
--- a/target/ppc/power8-pmu.c
+++ b/target/ppc/power8-pmu.c
@@ -288,6 +288,30 @@ void helper_store_mmcr0(CPUPPCState *env, target_ulong
value)
} else {
start_cycle_count_session(env);
}
+ } else {
+ /*
+ * No change in MMCR0_FC state, but if the PMU is running and
+ * a change in the counter negative overflow bits is made,
+ * we need to restart a new cycle count session to restart
+ * the appropriate overflow timers.
+ */
+ if (curr_FC) {
+ return;
+ }
+
+ bool pmc1ce_curr = curr_value & MMCR0_PMC1CE;
+ bool pmc1ce_new = value & MMCR0_PMC1CE;
+ bool pmcjce_curr = curr_value & MMCR0_PMCjCE;
+ bool pmcjce_new = value & MMCR0_PMCjCE;
+
+ if (pmc1ce_curr == pmc1ce_new && pmcjce_curr == pmcjce_new) {
+ return;
+ }
+
+ /* Update the counter with the events counted so far */
+ pmu_update_cycles(env);
+
+ start_cycle_count_session(env);
}
}
--
2.31.1
- [PATCH v5 00/10] PMU-EBB support for PPC64 TCG, Daniel Henrique Barboza, 2021/11/01
- [PATCH v5 01/10] target/ppc: introduce PMUEventType and PMU overflow timers, Daniel Henrique Barboza, 2021/11/01
- [PATCH v5 02/10] target/ppc: PMU basic cycle count for pseries TCG, Daniel Henrique Barboza, 2021/11/01
- [PATCH v5 03/10] target/ppc: enable PMU counter overflow with cycle events, Daniel Henrique Barboza, 2021/11/01
- [PATCH v5 04/10] target/ppc: enable PMU instruction count, Daniel Henrique Barboza, 2021/11/01
- [PATCH v5 06/10] target/ppc: PMU: handle setting of PMCs while running, Daniel Henrique Barboza, 2021/11/01
- [PATCH v5 07/10] target/ppc/power8-pmu.c: handle overflow bits when PMU is running,
Daniel Henrique Barboza <=
- [PATCH v5 05/10] target/ppc/power8-pmu.c: add PM_RUN_INST_CMPL (0xFA) event, Daniel Henrique Barboza, 2021/11/01
- [PATCH v5 09/10] target/ppc: PMU Event-Based exception support, Daniel Henrique Barboza, 2021/11/01
[PATCH v5 08/10] PPC64/TCG: Implement 'rfebb' instruction, Daniel Henrique Barboza, 2021/11/01
[PATCH v5 10/10] target/ppc/excp_helper.c: EBB handling adjustments, Daniel Henrique Barboza, 2021/11/01