aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorAlex Deucher <[email protected]>2013-03-01 12:11:31 -0500
committerAlex Deucher <[email protected]>2013-03-01 12:11:31 -0500
commita40ba43d78fe8e6ee145785df54b50dd7c7f929a (patch)
tree76528344e13e95cac659936855cfae1d4ca1ca40 /src/gallium
parent58bd926d9e555e7be4af576fae60a65774d9d743 (diff)
r600g: enable CP DMA on 6xx
Tested across several 6xx parts, no piglit regressions. Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/r600/r600_pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c
index e81856c5f33..78002ae4000 100644
--- a/src/gallium/drivers/r600/r600_pipe.c
+++ b/src/gallium/drivers/r600/r600_pipe.c
@@ -1123,7 +1123,7 @@ struct pipe_screen *r600_screen_create(struct radeon_winsys *ws)
break;
}
- rscreen->has_cp_dma = rscreen->info.drm_minor >= 27 && rscreen->chip_class >= R700;
+ rscreen->has_cp_dma = rscreen->info.drm_minor >= 27;
if (r600_init_tiling(rscreen)) {
FREE(rscreen);