diff options
author | Christian Gmeiner <[email protected]> | 2018-03-25 22:30:02 +0200 |
---|---|---|
committer | Christian Gmeiner <[email protected]> | 2018-04-08 22:21:04 +0200 |
commit | f380ce13f0bfdc6a7b9d64395400ad79d3323cee (patch) | |
tree | 8378bc7a5bc6da1d2f5ec55509420137f1fb293d /src/gallium/drivers/etnaviv/etnaviv_query_pm.c | |
parent | 3af0e228e5f998f5d16d496cab5e9c9e619ac26a (diff) |
etnaviv: support RA performance counters
Signed-off-by: Christian Gmeiner <[email protected]>
Tested-by: Chris Healy <[email protected]>
Diffstat (limited to 'src/gallium/drivers/etnaviv/etnaviv_query_pm.c')
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_query_pm.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/gallium/drivers/etnaviv/etnaviv_query_pm.c b/src/gallium/drivers/etnaviv/etnaviv_query_pm.c index 759e3a5d09f..3601d4086cc 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_query_pm.c +++ b/src/gallium/drivers/etnaviv/etnaviv_query_pm.c @@ -227,6 +227,55 @@ static const struct etna_perfmon_config query_config[] = { .source = (const struct etna_perfmon_source[]) { { "SE", "CULLED_LINES_COUNT" } } + }, + { + .name = "ra-valid-pixel-count", + .type = ETNA_QUERY_RA_VALID_PIXEL_COUNT, + .source = (const struct etna_perfmon_source[]) { + { "RA", "VALID_PIXEL_COUNT" } + } + }, + { + .name = "ra-total-quad-count", + .type = ETNA_QUERY_RA_TOTAL_QUAD_COUNT, + .source = (const struct etna_perfmon_source[]) { + { "RA", "TOTAL_QUAD_COUNT" } + } + }, + { + .name = "ra-valid-quad-count-after-early-z", + .type = ETNA_QUERY_RA_VALID_QUAD_COUNT_AFTER_EARLY_Z, + .source = (const struct etna_perfmon_source[]) { + { "RA", "VALID_QUAD_COUNT_AFTER_EARLY_Z" } + } + }, + { + .name = "ra-total-primitive-count", + .type = ETNA_QUERY_RA_TOTAL_PRIMITIVE_COUNT, + .source = (const struct etna_perfmon_source[]) { + { "RA", "TOTAL_PRIMITIVE_COUNT" } + } + }, + { + .name = "ra-pipe-cache-miss-counter", + .type = ETNA_QUERY_RA_PIPE_CACHE_MISS_COUNTER, + .source = (const struct etna_perfmon_source[]) { + { "RA", "PIPE_CACHE_MISS_COUNTER" } + } + }, + { + .name = "ra-prefetch-cache-miss-counter", + .type = ETNA_QUERY_RA_PREFETCH_CACHE_MISS_COUNTER, + .source = (const struct etna_perfmon_source[]) { + { "RA", "PREFETCH_CACHE_MISS_COUNTER" } + } + }, + { + .name = "ra-pculled-quad-count", + .type = ETNA_QUERY_RA_CULLED_QUAD_COUNT, + .source = (const struct etna_perfmon_source[]) { + { "RA", "CULLED_QUAD_COUNT" } + } } }; |