mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
r600g: disable async DMA on R700
Cc: 10.0 10.1 mesa-stable@lists.freedesktop.org
This commit is contained in:
parent
e5741f1e91
commit
6dd045ef40
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue