]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/radeon: avoid UVD corruptions on AGP cards
authorChristian König <christian.koenig@amd.com>
Sun, 15 Sep 2013 11:31:28 +0000 (13:31 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 16 Sep 2013 00:27:54 +0000 (20:27 -0400)
Putting everything into VRAM seems to help.

Signed-off-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
drivers/gpu/drm/radeon/radeon_cs.c

index 27ea00489ecc41b08adc8b780bd18f62fa36a791..ac6ece61a47627931e9a3bcb68c3a34c636efe0a 100644 (file)
@@ -81,9 +81,11 @@ static int radeon_cs_parser_relocs(struct radeon_cs_parser *p)
                p->relocs[i].lobj.bo = p->relocs[i].robj;
                p->relocs[i].lobj.written = !!r->write_domain;
 
-               /* the first reloc of an UVD job is the
-                  msg and that must be in VRAM */
-               if (p->ring == R600_RING_TYPE_UVD_INDEX && i == 0) {
+               /* the first reloc of an UVD job is the msg and that must be in
+                  VRAM, also but everything into VRAM on AGP cards to avoid
+                  image corruptions */
+               if (p->ring == R600_RING_TYPE_UVD_INDEX &&
+                   (i == 0 || p->rdev->flags & RADEON_IS_AGP)) {
                        /* TODO: is this still needed for NI+ ? */
                        p->relocs[i].lobj.domain =
                                RADEON_GEM_DOMAIN_VRAM;