diff options
author | Samuel Pitoiset <[email protected]> | 2017-01-30 12:52:56 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-01-30 14:37:00 +0100 |
commit | e2c15ea0925542bd3557a5b5872a679ebbcefacd (patch) | |
tree | f14bc8ba259e1e8f456d5ec1c8d9b105c66e3f01 /src/gallium/drivers/radeon/r600_pipe_common.h | |
parent | 0e04a078c5545d536173e50e32a0604b9abb42bc (diff) |
gallium/radeon: add new HUD queries for monitoring the CP
There are even more counters in the CP_STAT register but I think
these ones are enough for now.
v2: only read (and expose) CP_STAT on VI+
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/r600_pipe_common.h')
-rw-r--r-- | src/gallium/drivers/radeon/r600_pipe_common.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/r600_pipe_common.h b/src/gallium/drivers/radeon/r600_pipe_common.h index 9118b6bcf84..fb5bf75df15 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.h +++ b/src/gallium/drivers/radeon/r600_pipe_common.h @@ -377,6 +377,15 @@ union r600_mmio_counters { /* SRBM_STATUS2 */ struct r600_mmio_counter sdma; + + /* CP_STAT */ + struct r600_mmio_counter pfp; + struct r600_mmio_counter meq; + struct r600_mmio_counter me; + struct r600_mmio_counter surf_sync; + struct r600_mmio_counter dma; + struct r600_mmio_counter scratch_ram; + struct r600_mmio_counter ce; } named; unsigned array[0]; }; |