]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
drm/radeon: work around a hw bug in MGCG on CIK
authorAlex Deucher <alexander.deucher@amd.com>
Mon, 17 Nov 2014 20:08:17 +0000 (15:08 -0500)
committerLuis Henriques <luis.henriques@canonical.com>
Mon, 5 Jan 2015 13:48:50 +0000 (13:48 +0000)
commit 4bb62c95a7e781a238b2ab374f34b1bf91e01ddc upstream.

Always need to set bit 0 of RLC_CGTT_MGCG_OVERRIDE
to avoid unreliable doorbell updates in some cases.

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
drivers/gpu/drm/radeon/cik.c

index 6f015436e51ddafeaf41c06516344c3367be0800..8d391b51cedc123df0cb732850750c4671c8419c 100644 (file)
@@ -5979,6 +5979,7 @@ static void cik_enable_mgcg(struct radeon_device *rdev, bool enable)
                }
 
                orig = data = RREG32(RLC_CGTT_MGCG_OVERRIDE);
+               data |= 0x00000001;
                data &= 0xfffffffd;
                if (orig != data)
                        WREG32(RLC_CGTT_MGCG_OVERRIDE, data);
@@ -6010,7 +6011,7 @@ static void cik_enable_mgcg(struct radeon_device *rdev, bool enable)
                }
        } else {
                orig = data = RREG32(RLC_CGTT_MGCG_OVERRIDE);
-               data |= 0x00000002;
+               data |= 0x00000003;
                if (orig != data)
                        WREG32(RLC_CGTT_MGCG_OVERRIDE, data);