]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/amdgpu/gfx12: fix wptr reset in KGQ init
authorAlex Deucher <alexander.deucher@amd.com>
Wed, 28 Jan 2026 23:13:16 +0000 (18:13 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 29 Jan 2026 17:27:27 +0000 (12:27 -0500)
wptr is a 64 bit value and we need to update the
full value, not just 32 bits. Align with what we
already do for KCQs.

Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Reviewed-by: Jesse Zhang <jesse.zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/gfx_v12_0.c

index 40660b05f979451ab80f95d7a92906b390e94a5f..3aec7ea773fcf9fd6089fa4f7a59b43926221773 100644 (file)
@@ -3085,7 +3085,7 @@ static int gfx_v12_0_kgq_init_queue(struct amdgpu_ring *ring, bool reset)
                        memcpy_toio(mqd, adev->gfx.me.mqd_backup[mqd_idx], sizeof(*mqd));
                /* reset the ring */
                ring->wptr = 0;
-               *ring->wptr_cpu_addr = 0;
+               atomic64_set((atomic64_t *)ring->wptr_cpu_addr, 0);
                amdgpu_ring_clear_ring(ring);
        }