r600g: disable async DMA on R700

Cc: 10.0 10.1 mesa-stable@lists.freedesktop.org
This commit is contained in:
Marek Olšák 2014-04-19 15:47:54 +02:00
parent e5741f1e91
commit 6dd045ef40
1 changed files with 2 additions and 1 deletions

View File

@ -282,7 +282,8 @@ static boolean do_winsys_init(struct radeon_drm_winsys *ws)
/* Check for dma */
ws->info.r600_has_dma = FALSE;
if (ws->info.chip_class >= R700 && ws->info.drm_minor >= 27) {
/* DMA is disabled on R700. There is IB corruption and hangs. */
if (ws->info.chip_class >= EVERGREEN && ws->info.drm_minor >= 27) {
ws->info.r600_has_dma = TRUE;
}