Oops, you are right Evan. I'll send another patch.
It's a little counter-intuitive that asic type id of navi12 is larger than 
navi14.

BR,
Xiaojie

________________________________________
From: Quan, Evan <evan.q...@amd.com>
Sent: Tuesday, September 24, 2019 10:09 AM
To: Yuan, Xiaojie; amd-gfx@lists.freedesktop.org
Cc: Zhang, Hawking; Xiao, Jack; Feng, Kenneth; Wang, Kevin(Yang)
Subject: RE: [PATCH 1/2] drm/amdgpu/gmc10: do not apply the 'invalidation from 
sdma' workaround for navi12

The patch makes me a little confusing.
According to asic type list,
        CHIP_NAVI10,    /* 25 */
        CHIP_NAVI14,    /* 26 */
        CHIP_NAVI12,    /* 27 */
        CHIP_LAST,
before the sdma workaround applies only for Navi10 and Navi14(not Navi12).
However, it seems this patch reverse the logics totally.  It applies the 
workaround only for Navi12.

-----Original Message-----
From: Yuan, Xiaojie <xiaojie.y...@amd.com>
Sent: Monday, September 23, 2019 9:58 PM
To: amd-gfx@lists.freedesktop.org
Cc: Zhang, Hawking <hawking.zh...@amd.com>; Xiao, Jack <jack.x...@amd.com>; 
Feng, Kenneth <kenneth.f...@amd.com>; Quan, Evan <evan.q...@amd.com>; Wang, 
Kevin(Yang) <kevin1.w...@amd.com>; Yuan, Xiaojie <xiaojie.y...@amd.com>
Subject: [PATCH 1/2] drm/amdgpu/gmc10: do not apply the 'invalidation from 
sdma' workaround for navi12

when gfxoff is enabled, applying this workaround makes sdma hang while entering 
desktop.

Signed-off-by: Xiaojie Yuan <xiaojie.y...@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c 
b/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c
index ed1c3b883f6a..3897e0d28838 100644
--- a/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c
@@ -291,7 +291,8 @@ static void gmc_v10_0_flush_gpu_tlb(struct amdgpu_device 
*adev, uint32_t vmid,

        if (!adev->mman.buffer_funcs_enabled ||
            !adev->ib_pool_ready ||
-           adev->asic_type > CHIP_NAVI14 ||
+           adev->asic_type == CHIP_NAVI10 ||
+           adev->asic_type == CHIP_NAVI14 ||
            adev->in_gpu_reset) {
                gmc_v10_0_flush_vm_hub(adev, vmid, AMDGPU_GFXHUB_0, 0);
                mutex_unlock(&adev->mman.gtt_window_lock);
--
2.20.1

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

Reply via email to