[Public]

Acked-by: Alex Deucher <alexander.deuc...@amd.com>
________________________________
From: Tong Liu01 <tong.li...@amd.com>
Sent: Thursday, October 26, 2023 11:41 PM
To: amd-gfx@lists.freedesktop.org <amd-gfx@lists.freedesktop.org>
Cc: Evan Quan <evan.q...@amd.com>; Chen, Horace <horace.c...@amd.com>; Tuikov, 
Luben <luben.tui...@amd.com>; Koenig, Christian <christian.koe...@amd.com>; 
Deucher, Alexander <alexander.deuc...@amd.com>; Xiao, Jack <jack.x...@amd.com>; 
Zhang, Hawking <hawking.zh...@amd.com>; Liu, Monk <monk....@amd.com>; Xu, 
Feifei <feifei...@amd.com>; Chang, HaiJun <haijun.ch...@amd.com>; Liu01, Tong 
(Esther) <tong.li...@amd.com>
Subject: [PATCH] drm/amdgpu: add unmap latency when gfx11 set kiq resources

[why]
If driver does not set unmap latency for KIQ, the default value of KIQ
unmap latency is zero. When do unmap queue, KIQ will return that almost
immediately after receiving unmap command. So, the queue status will be
saved to MQD incorrectly or lost in some chance.

[how]
Set unmap latency when do kiq set resources. The unmap latency is set to
be 1 second that is synchronized with Windows driver.

Signed-off-by: Tong Liu01 <tong.li...@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c 
b/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c
index fd22943685f7..7aef7a3a340f 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c
@@ -155,6 +155,7 @@ static void gfx11_kiq_set_resources(struct amdgpu_ring 
*kiq_ring, uint64_t queue
 {
         amdgpu_ring_write(kiq_ring, PACKET3(PACKET3_SET_RESOURCES, 6));
         amdgpu_ring_write(kiq_ring, PACKET3_SET_RESOURCES_VMID_MASK(0) |
+                         PACKET3_SET_RESOURCES_UNMAP_LATENTY(0xa) | /* 
unmap_latency: 0xa (~ 1s) */
                           PACKET3_SET_RESOURCES_QUEUE_TYPE(0));  /* 
vmid_mask:0 queue_type:0 (KIQ) */
         amdgpu_ring_write(kiq_ring, lower_32_bits(queue_mask)); /* queue mask 
lo */
         amdgpu_ring_write(kiq_ring, upper_32_bits(queue_mask)); /* queue mask 
hi */
--
2.34.1

Reply via email to