mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 21:20:14 +01:00
r600g: disable async DMA on R700
Cc: 10.0 10.1 mesa-stable@lists.freedesktop.org
(cherry picked from commit 6dd045ef40)
This commit is contained in:
parent
081e37b3b6
commit
1602419b16
1 changed files with 2 additions and 1 deletions
|
|
@ -337,7 +337,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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue