summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2012-03-31 23:44:31 +0200
committerMarek Olšák <maraeo@gmail.com>2012-04-01 23:57:50 +0200
commitbc95152f1d3bf0dbf79d81e6b9956fd60198e3df (patch)
tree0a190ec700b1d61a70892b2e653758025c7fae95
parent669d8766ff3403938794eb80d7769347b6e52174 (diff)
r600g: determine in advance if hw has vertex cache
-rw-r--r--src/gallium/drivers/r600/r600_hw_context.c17
-rw-r--r--src/gallium/drivers/r600/r600_pipe.c12
-rw-r--r--src/gallium/drivers/r600/r600_pipe.h1
3 files changed, 16 insertions, 14 deletions
diff --git a/src/gallium/drivers/r600/r600_hw_context.c b/src/gallium/drivers/r600/r600_hw_context.c
index 6205a20142e..6c0733d31ad 100644
--- a/src/gallium/drivers/r600/r600_hw_context.c
+++ b/src/gallium/drivers/r600/r600_hw_context.c
@@ -1163,22 +1163,11 @@ void r600_inval_texture_cache(struct r600_context *ctx)
void r600_inval_vertex_cache(struct r600_context *ctx)
{
- if (ctx->family == CHIP_RV610 ||
- ctx->family == CHIP_RV620 ||
- ctx->family == CHIP_RS780 ||
- ctx->family == CHIP_RS880 ||
- ctx->family == CHIP_RV710 ||
- ctx->family == CHIP_CEDAR ||
- ctx->family == CHIP_PALM ||
- ctx->family == CHIP_SUMO ||
- ctx->family == CHIP_SUMO2 ||
- ctx->family == CHIP_CAICOS ||
- ctx->family == CHIP_CAYMAN ||
- ctx->family == CHIP_ARUBA) {
+ if (ctx->has_vertex_cache) {
+ ctx->surface_sync_cmd.flush_flags |= S_0085F0_VC_ACTION_ENA(1);
+ } else {
/* Some GPUs don't have the vertex cache and must use the texture cache instead. */
ctx->surface_sync_cmd.flush_flags |= S_0085F0_TC_ACTION_ENA(1);
- } else {
- ctx->surface_sync_cmd.flush_flags |= S_0085F0_VC_ACTION_ENA(1);
}
r600_atom_dirty(ctx, &ctx->surface_sync_cmd.atom);
}
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c
index 3ab78ea040d..7c40e506fb7 100644
--- a/src/gallium/drivers/r600/r600_pipe.c
+++ b/src/gallium/drivers/r600/r600_pipe.c
@@ -263,6 +263,11 @@ static struct pipe_context *r600_create_context(struct pipe_screen *screen, void
if (r600_context_init(rctx))
goto fail;
rctx->custom_dsa_flush = r600_create_db_flush_dsa(rctx);
+ rctx->has_vertex_cache = !(rctx->family == CHIP_RV610 ||
+ rctx->family == CHIP_RV620 ||
+ rctx->family == CHIP_RS780 ||
+ rctx->family == CHIP_RS880 ||
+ rctx->family == CHIP_RV710);
break;
case EVERGREEN:
case CAYMAN:
@@ -271,6 +276,13 @@ static struct pipe_context *r600_create_context(struct pipe_screen *screen, void
if (evergreen_context_init(rctx))
goto fail;
rctx->custom_dsa_flush = evergreen_create_db_flush_dsa(rctx);
+ rctx->has_vertex_cache = !(rctx->family == CHIP_CEDAR ||
+ rctx->family == CHIP_PALM ||
+ rctx->family == CHIP_SUMO ||
+ rctx->family == CHIP_SUMO2 ||
+ rctx->family == CHIP_CAICOS ||
+ rctx->family == CHIP_CAYMAN ||
+ rctx->family == CHIP_ARUBA);
break;
default:
R600_ERR("Unsupported chip class %d.\n", rctx->chip_class);
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h
index 9139b61ed69..ccbfaa7d010 100644
--- a/src/gallium/drivers/r600/r600_pipe.h
+++ b/src/gallium/drivers/r600/r600_pipe.h
@@ -235,6 +235,7 @@ struct r600_context {
struct blitter_context *blitter;
enum radeon_family family;
enum chip_class chip_class;
+ boolean has_vertex_cache;
unsigned r6xx_num_clause_temp_gprs;
void *custom_dsa_flush;
struct r600_screen *screen;