aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon/r600_pipe_common.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2018-04-01 17:52:55 -0400
committerMarek Olšák <[email protected]>2018-04-05 15:34:58 -0400
commit90d12f1d776f41ab3d72cea5b2bc39bf9ee28b25 (patch)
treee10d211b30f8eee24e807d092bdbb060dd8ccec2 /src/gallium/drivers/radeon/r600_pipe_common.h
parent50c7aa67565fee2c103ed6229ac599e8d23839d8 (diff)
radeonsi: rename r600 -> si in some places
Acked-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/r600_pipe_common.h')
-rw-r--r--src/gallium/drivers/radeon/r600_pipe_common.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/gallium/drivers/radeon/r600_pipe_common.h b/src/gallium/drivers/radeon/r600_pipe_common.h
index 192a488ec30..b1bde5033b7 100644
--- a/src/gallium/drivers/radeon/r600_pipe_common.h
+++ b/src/gallium/drivers/radeon/r600_pipe_common.h
@@ -127,9 +127,9 @@ enum {
#define SI_MAX_VARIABLE_THREADS_PER_BLOCK 1024
-struct r600_perfcounters;
+struct si_perfcounters;
struct tgsi_shader_info;
-struct r600_qbo_state;
+struct si_qbo_state;
/* Only 32-bit buffer allocations are supported, gallium doesn't support more
* at the moment.
@@ -314,42 +314,42 @@ struct r600_surface {
unsigned db_htile_surface;
};
-struct r600_mmio_counter {
+struct si_mmio_counter {
unsigned busy;
unsigned idle;
};
-union r600_mmio_counters {
+union si_mmio_counters {
struct {
/* For global GPU load including SDMA. */
- struct r600_mmio_counter gpu;
+ struct si_mmio_counter gpu;
/* GRBM_STATUS */
- struct r600_mmio_counter spi;
- struct r600_mmio_counter gui;
- struct r600_mmio_counter ta;
- struct r600_mmio_counter gds;
- struct r600_mmio_counter vgt;
- struct r600_mmio_counter ia;
- struct r600_mmio_counter sx;
- struct r600_mmio_counter wd;
- struct r600_mmio_counter bci;
- struct r600_mmio_counter sc;
- struct r600_mmio_counter pa;
- struct r600_mmio_counter db;
- struct r600_mmio_counter cp;
- struct r600_mmio_counter cb;
+ struct si_mmio_counter spi;
+ struct si_mmio_counter gui;
+ struct si_mmio_counter ta;
+ struct si_mmio_counter gds;
+ struct si_mmio_counter vgt;
+ struct si_mmio_counter ia;
+ struct si_mmio_counter sx;
+ struct si_mmio_counter wd;
+ struct si_mmio_counter bci;
+ struct si_mmio_counter sc;
+ struct si_mmio_counter pa;
+ struct si_mmio_counter db;
+ struct si_mmio_counter cp;
+ struct si_mmio_counter cb;
/* SRBM_STATUS2 */
- struct r600_mmio_counter sdma;
+ struct si_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 cp_dma;
- struct r600_mmio_counter scratch_ram;
+ struct si_mmio_counter pfp;
+ struct si_mmio_counter meq;
+ struct si_mmio_counter me;
+ struct si_mmio_counter surf_sync;
+ struct si_mmio_counter cp_dma;
+ struct si_mmio_counter scratch_ram;
} named;
unsigned array[0];
};