]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/radeon: fix cursor corruption on DCE6 and newer
authorJerome Glisse <jglisse@redhat.com>
Mon, 21 Jan 2013 20:50:03 +0000 (15:50 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 23 Jan 2013 18:51:43 +0000 (13:51 -0500)
Aruba and newer gpu does not need the avivo cursor work around,
quite the opposite this work around lead to corruption.

agd5f: check DCE6 rather than ARUBA since the issue is DCE
version specific rather than family specific.

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
drivers/gpu/drm/radeon/radeon_cursor.c

index ad6df625e8b8a1cf869ac06bb898503022406a6b..0d67674b64b13e9a4618548fb1ca3d2d2211f797 100644 (file)
@@ -241,7 +241,8 @@ int radeon_crtc_cursor_move(struct drm_crtc *crtc,
                y = 0;
        }
 
-       if (ASIC_IS_AVIVO(rdev)) {
+       /* fixed on DCE6 and newer */
+       if (ASIC_IS_AVIVO(rdev) && !ASIC_IS_DCE6(rdev)) {
                int i = 0;
                struct drm_crtc *crtc_p;