radeonsi: disable SDMA texture copying on Carrizo

Cc: 12.0 <mesa-stable@lists.freedesktop.org>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
This commit is contained in:
Marek Olšák 2016-08-24 23:34:01 +02:00
parent 1276316d67
commit 3ff0b67e1b
1 changed files with 6 additions and 0 deletions

View File

@ -520,6 +520,12 @@ static void cik_sdma_copy(struct pipe_context *ctx,
return;
}
/* Carrizo SDMA texture copying is very broken for some users.
* https://bugs.freedesktop.org/show_bug.cgi?id=97029
*/
if (sctx->b.family == CHIP_CARRIZO)
goto fallback;
if (cik_sdma_copy_texture(sctx, dst, dst_level, dstx, dsty, dstz,
src, src_level, src_box))
return;