]> git.dujemihanovic.xyz Git - linux.git/commitdiff
drm/amdgpu/mes12: sw/hw fini for unified mes
authorJack Xiao <Jack.Xiao@amd.com>
Wed, 7 Aug 2024 07:23:16 +0000 (15:23 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 13 Aug 2024 16:13:03 +0000 (12:13 -0400)
Free memory for two pipes and unmap pipe0 via pipe1.

Signed-off-by: Jack Xiao <Jack.Xiao@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/mes_v12_0.c

index f5d681f69d06afe48a88bc91749122280df12f78..35cd6ad73912df38990e5fd736ce9aa2672c0222 100644 (file)
@@ -1344,18 +1344,21 @@ static int mes_v12_0_sw_fini(void *handle)
                                      &adev->mes.eop_gpu_addr[pipe],
                                      NULL);
                amdgpu_ucode_release(&adev->mes.fw[pipe]);
-       }
-
-       amdgpu_bo_free_kernel(&adev->gfx.kiq[0].ring.mqd_obj,
-                             &adev->gfx.kiq[0].ring.mqd_gpu_addr,
-                             &adev->gfx.kiq[0].ring.mqd_ptr);
 
-       amdgpu_bo_free_kernel(&adev->mes.ring[0].mqd_obj,
-                             &adev->mes.ring[0].mqd_gpu_addr,
-                             &adev->mes.ring[0].mqd_ptr);
+               if (adev->enable_uni_mes || pipe == AMDGPU_MES_SCHED_PIPE) {
+                       amdgpu_bo_free_kernel(&adev->mes.ring[pipe].mqd_obj,
+                                             &adev->mes.ring[pipe].mqd_gpu_addr,
+                                             &adev->mes.ring[pipe].mqd_ptr);
+                       amdgpu_ring_fini(&adev->mes.ring[pipe]);
+               }
+       }
 
-       amdgpu_ring_fini(&adev->gfx.kiq[0].ring);
-       amdgpu_ring_fini(&adev->mes.ring[0]);
+       if (!adev->enable_uni_mes) {
+               amdgpu_bo_free_kernel(&adev->gfx.kiq[0].ring.mqd_obj,
+                                     &adev->gfx.kiq[0].ring.mqd_gpu_addr,
+                                     &adev->gfx.kiq[0].ring.mqd_ptr);
+               amdgpu_ring_fini(&adev->gfx.kiq[0].ring);
+       }
 
        if (adev->firmware.load_type == AMDGPU_FW_LOAD_DIRECT) {
                mes_v12_0_free_ucode_buffers(adev, AMDGPU_MES_KIQ_PIPE);
@@ -1472,7 +1475,13 @@ failure:
 static int mes_v12_0_kiq_hw_fini(struct amdgpu_device *adev)
 {
        if (adev->mes.ring[0].sched.ready) {
-               mes_v12_0_kiq_dequeue_sched(adev);
+               if (adev->enable_uni_mes)
+                       amdgpu_mes_unmap_legacy_queue(adev,
+                                     &adev->mes.ring[AMDGPU_MES_SCHED_PIPE],
+                                     RESET_QUEUES, 0, 0);
+               else
+                       mes_v12_0_kiq_dequeue_sched(adev);
+
                adev->mes.ring[0].sched.ready = false;
        }