aboutsummaryrefslogtreecommitdiffstats
path: root/src/freedreno/perfcntrs
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2019-11-19 16:35:58 -0800
committerRob Clark <[email protected]>2019-11-21 20:01:03 +0000
commit6a517b3079b1e9bc17a60f5720c1a50ac8bab84b (patch)
tree1bedf9440d6d4e2b0a6ef2699e742f871aa4dbaf /src/freedreno/perfcntrs
parente35c4e6ad2319222d92a62f481cd0b773818d1bf (diff)
freedreno/perfctrs/a2xx: move CP to be first group
fdperf expects this, to find the ALWAYS_COUNT counter Signed-off-by: Rob Clark <[email protected]> Reviewed-by: Kristian H. Kristensen <[email protected]>
Diffstat (limited to 'src/freedreno/perfcntrs')
-rw-r--r--src/freedreno/perfcntrs/fd2_perfcntr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/freedreno/perfcntrs/fd2_perfcntr.c b/src/freedreno/perfcntrs/fd2_perfcntr.c
index 06246f398eb..17ffb5e2c85 100644
--- a/src/freedreno/perfcntrs/fd2_perfcntr.c
+++ b/src/freedreno/perfcntrs/fd2_perfcntr.c
@@ -776,6 +776,7 @@ static const struct fd_perfcntr_counter rb_counters[] = {
};
const struct fd_perfcntr_group a2xx_perfcntr_groups[] = {
+ GROUP("CP", cp_counters, cp_countables),
GROUP("PA_SU", pa_su_counters, pa_su_countables),
GROUP("PA_SC", pa_sc_counters, pa_sc_countables),
GROUP("VGT", vgt_counters, vgt_countables),
@@ -787,7 +788,6 @@ const struct fd_perfcntr_group a2xx_perfcntr_groups[] = {
GROUP("SX", sx_counters, sx_countables),
// GROUP("MH", mh_counters, mh_countables),
GROUP("RBBM", rbbm_counters, rbbm_countables),
- GROUP("CP", cp_counters, cp_countables),
GROUP("RB", rb_counters, rb_countables),
};