]> www.infradead.org Git - linux.git/commitdiff
drm/amdgpu/sdma5.2: limit wptr workaround to sdma 5.2.1
authorAlex Deucher <alexander.deucher@amd.com>
Wed, 14 Aug 2024 14:28:24 +0000 (10:28 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 16 Aug 2024 18:27:04 +0000 (14:27 -0400)
The workaround seems to cause stability issues on other
SDMA 5.2.x IPs.

Fixes: a03ebf116303 ("drm/amdgpu/sdma5.2: Update wptr registers as well as doorbell")
Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/3556
Acked-by: Ruijing Dong <ruijing.dong@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c

index d740255edf5af106f0f52740af246dea0c7ef7c2..bc9b240a3488e6d40313404d06c7e978d4dd022e 100644 (file)
@@ -225,14 +225,16 @@ static void sdma_v5_2_ring_set_wptr(struct amdgpu_ring *ring)
                DRM_DEBUG("calling WDOORBELL64(0x%08x, 0x%016llx)\n",
                                ring->doorbell_index, ring->wptr << 2);
                WDOORBELL64(ring->doorbell_index, ring->wptr << 2);
-               /* SDMA seems to miss doorbells sometimes when powergating kicks in.
-                * Updating the wptr directly will wake it. This is only safe because
-                * we disallow gfxoff in begin_use() and then allow it again in end_use().
-                */
-               WREG32(sdma_v5_2_get_reg_offset(adev, ring->me, mmSDMA0_GFX_RB_WPTR),
-                      lower_32_bits(ring->wptr << 2));
-               WREG32(sdma_v5_2_get_reg_offset(adev, ring->me, mmSDMA0_GFX_RB_WPTR_HI),
-                      upper_32_bits(ring->wptr << 2));
+               if (amdgpu_ip_version(adev, SDMA0_HWIP, 0) == IP_VERSION(5, 2, 1)) {
+                       /* SDMA seems to miss doorbells sometimes when powergating kicks in.
+                        * Updating the wptr directly will wake it. This is only safe because
+                        * we disallow gfxoff in begin_use() and then allow it again in end_use().
+                        */
+                       WREG32(sdma_v5_2_get_reg_offset(adev, ring->me, mmSDMA0_GFX_RB_WPTR),
+                              lower_32_bits(ring->wptr << 2));
+                       WREG32(sdma_v5_2_get_reg_offset(adev, ring->me, mmSDMA0_GFX_RB_WPTR_HI),
+                              upper_32_bits(ring->wptr << 2));
+               }
        } else {
                DRM_DEBUG("Not using doorbell -- "
                                "mmSDMA%i_GFX_RB_WPTR == 0x%08x "