]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/amdgpu/gfx11: look at the right prop for gfx queue priority
authorAlex Deucher <alexander.deucher@amd.com>
Thu, 19 Feb 2026 23:20:27 +0000 (18:20 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 23 Mar 2026 18:09:02 +0000 (14:09 -0400)
Look at hqd_queue_priority rather than hqd_pipe_priority.
In practice, it didn't matter as both were always set for
kernel queues, but that will change in the future.

Fixes: 2e216b1e6ba2 ("drm/amdgpu/gfx11: handle priority setup for gfx pipe1")
Reviewed-by:Jesse Zhang <jesse.zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c

index b1a1b8a10a08b4938963b8f607d63a0744cdbf39..78d1f3eb522eddb7501525e37c539a529c3aa978 100644 (file)
@@ -4088,7 +4088,7 @@ static void gfx_v11_0_gfx_mqd_set_priority(struct amdgpu_device *adev,
        /* set up default queue priority level
         * 0x0 = low priority, 0x1 = high priority
         */
-       if (prop->hqd_pipe_priority == AMDGPU_GFX_PIPE_PRIO_HIGH)
+       if (prop->hqd_queue_priority == AMDGPU_GFX_QUEUE_PRIORITY_MAXIMUM)
                priority = 1;
 
        tmp = regCP_GFX_HQD_QUEUE_PRIORITY_DEFAULT;