[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Emily.Deng <Emily.Deng@xxxxxxx> >-----Original Message----- >From: amd-gfx <amd-gfx-bounces@xxxxxxxxxxxxxxxxxxxxx> On Behalf Of Peng >Ju Zhou >Sent: Friday, December 25, 2020 3:02 PM >To: amd-gfx@xxxxxxxxxxxxxxxxxxxxx >Subject: [PATCH] drm/amdgpu: do optimization for psp command submit > >From: pengzhou <PengJu.Zhou@xxxxxxx> > >In the psp command submit logic, >the function msleep(1) delayed too long, Changing it to usleep_range(10, 100) >to have a better performance. > >Signed-off-by: Peng Ju Zhou <PengJu.Zhou@xxxxxxx> >--- > drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c >b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c >index 523d22db094b..8d11b34fe40e 100644 >--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c >+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c >@@ -249,7 +249,7 @@ psp_cmd_submit_buf(struct psp_context *psp, { > int ret; > int index; >-int timeout = 2000; >+int timeout = 20000; > bool ras_intr = false; > bool skip_unsupport = false; > >@@ -282,7 +282,7 @@ psp_cmd_submit_buf(struct psp_context *psp, > ras_intr = amdgpu_ras_intr_triggered(); > if (ras_intr) > break; >-msleep(1); >+usleep_range(10, 100); > amdgpu_asic_invalidate_hdp(psp->adev, NULL); > } > >-- >2.17.1 > >_______________________________________________ >amd-gfx mailing list >amd-gfx@xxxxxxxxxxxxxxxxxxxxx >https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.f >reedesktop.org%2Fmailman%2Flistinfo%2Famd- >gfx&data=04%7C01%7CEmily.Deng%40amd.com%7C57638b8bb2ed443 >d966d08d8a8a30448%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0% >7C637444765410848027%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjA >wMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&s >data=Ypcwgp0epONjbZGria4RwVRRnrIQs%2F36%2FnzWNXUDPRU%3D& >reserved=0 _______________________________________________ amd-gfx mailing list amd-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/amd-gfx