Commit 15ff4a7b authored by Christian Gmeiner's avatar Christian Gmeiner Committed by Lucas Stach

etnaviv: perfmon: fix total and idle HI cyleces readout

As seen at CodeAurora's linux-imx git repo in imx_4.19.35_1.0.0 branch.
Signed-off-by: default avatarChristian Gmeiner <christian.gmeiner@gmail.com>
Signed-off-by: default avatarLucas Stach <l.stach@pengutronix.de>
parent 1b53591a
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
* Copyright (C) 2017 Zodiac Inflight Innovations * Copyright (C) 2017 Zodiac Inflight Innovations
*/ */
#include "common.xml.h"
#include "etnaviv_gpu.h" #include "etnaviv_gpu.h"
#include "etnaviv_perfmon.h" #include "etnaviv_perfmon.h"
#include "state_hi.xml.h" #include "state_hi.xml.h"
...@@ -35,13 +36,6 @@ struct etnaviv_pm_domain_meta { ...@@ -35,13 +36,6 @@ struct etnaviv_pm_domain_meta {
u32 nr_domains; u32 nr_domains;
}; };
static u32 simple_reg_read(struct etnaviv_gpu *gpu,
const struct etnaviv_pm_domain *domain,
const struct etnaviv_pm_signal *signal)
{
return gpu_read(gpu, signal->data);
}
static u32 perf_reg_read(struct etnaviv_gpu *gpu, static u32 perf_reg_read(struct etnaviv_gpu *gpu,
const struct etnaviv_pm_domain *domain, const struct etnaviv_pm_domain *domain,
const struct etnaviv_pm_signal *signal) const struct etnaviv_pm_signal *signal)
...@@ -75,6 +69,34 @@ static u32 pipe_reg_read(struct etnaviv_gpu *gpu, ...@@ -75,6 +69,34 @@ static u32 pipe_reg_read(struct etnaviv_gpu *gpu,
return value; return value;
} }
static u32 hi_total_cycle_read(struct etnaviv_gpu *gpu,
const struct etnaviv_pm_domain *domain,
const struct etnaviv_pm_signal *signal)
{
u32 reg = VIVS_HI_PROFILE_TOTAL_CYCLES;
if (gpu->identity.model == chipModel_GC880 ||
gpu->identity.model == chipModel_GC2000 ||
gpu->identity.model == chipModel_GC2100)
reg = VIVS_MC_PROFILE_CYCLE_COUNTER;
return gpu_read(gpu, reg);
}
static u32 hi_total_idle_cycle_read(struct etnaviv_gpu *gpu,
const struct etnaviv_pm_domain *domain,
const struct etnaviv_pm_signal *signal)
{
u32 reg = VIVS_HI_PROFILE_IDLE_CYCLES;
if (gpu->identity.model == chipModel_GC880 ||
gpu->identity.model == chipModel_GC2000 ||
gpu->identity.model == chipModel_GC2100)
reg = VIVS_HI_PROFILE_TOTAL_CYCLES;
return gpu_read(gpu, reg);
}
static const struct etnaviv_pm_domain doms_3d[] = { static const struct etnaviv_pm_domain doms_3d[] = {
{ {
.name = "HI", .name = "HI",
...@@ -84,13 +106,13 @@ static const struct etnaviv_pm_domain doms_3d[] = { ...@@ -84,13 +106,13 @@ static const struct etnaviv_pm_domain doms_3d[] = {
.signal = (const struct etnaviv_pm_signal[]) { .signal = (const struct etnaviv_pm_signal[]) {
{ {
"TOTAL_CYCLES", "TOTAL_CYCLES",
VIVS_HI_PROFILE_TOTAL_CYCLES, 0,
&simple_reg_read &hi_total_cycle_read
}, },
{ {
"IDLE_CYCLES", "IDLE_CYCLES",
VIVS_HI_PROFILE_IDLE_CYCLES, 0,
&simple_reg_read &hi_total_idle_cycle_read
}, },
{ {
"AXI_CYCLES_READ_REQUEST_STALLED", "AXI_CYCLES_READ_REQUEST_STALLED",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment