mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 00:10:10 +01:00
radeonsi: disable SDMA on gfx8 to fix corruption on RX 580
Closes: #1399 Closes: #1889 Cc: 19.2 19.3 <mesa-stable@lists.freedesktop.org> Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Reviewed-By: Timur Kristóf <timur.kristof@gmail.com>
This commit is contained in:
parent
991328498b
commit
e5167a9276
1 changed files with 5 additions and 0 deletions
|
|
@ -489,6 +489,11 @@ static struct pipe_context *si_create_context(struct pipe_screen *screen,
|
||||||
|
|
||||||
if (sscreen->info.num_rings[RING_DMA] &&
|
if (sscreen->info.num_rings[RING_DMA] &&
|
||||||
!(sscreen->debug_flags & DBG(NO_SDMA)) &&
|
!(sscreen->debug_flags & DBG(NO_SDMA)) &&
|
||||||
|
/* SDMA causes corruption on RX 580:
|
||||||
|
* https://gitlab.freedesktop.org/mesa/mesa/issues/1399
|
||||||
|
* https://gitlab.freedesktop.org/mesa/mesa/issues/1889
|
||||||
|
*/
|
||||||
|
(sctx->chip_class != GFX8 || sscreen->debug_flags & DBG(FORCE_SDMA)) &&
|
||||||
/* SDMA timeouts sometimes on gfx10 so disable it for now. See:
|
/* SDMA timeouts sometimes on gfx10 so disable it for now. See:
|
||||||
* https://bugs.freedesktop.org/show_bug.cgi?id=111481
|
* https://bugs.freedesktop.org/show_bug.cgi?id=111481
|
||||||
* https://gitlab.freedesktop.org/mesa/mesa/issues/1907
|
* https://gitlab.freedesktop.org/mesa/mesa/issues/1907
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue