I think that's ok to put in sw_init. Reviewed-by: Kenneth Feng <[email protected]<mailto:[email protected]>>
From: amd-gfx [mailto:[email protected]] On Behalf Of Quan, Evan Sent: Friday, July 26, 2019 9:04 AM To: Wang, Kevin(Yang) <[email protected]>; [email protected] Subject: RE: [PATCH 2/2] drm/amd/powerplay: enable SW SMU reset functionality [CAUTION: External Email] It's a bug fix for uploading new pptable from sysfs. And it's not hardware involved. The real hardware operation involved with this is in smu_v11_0_enable_thermal_alert. And in old powerplay routine, this is also put in sw_init and we do not find any problem with that until now. Regards, Evan From: Wang, Kevin(Yang) <[email protected]<mailto:[email protected]>> Sent: Thursday, July 25, 2019 9:08 PM To: Quan, Evan <[email protected]<mailto:[email protected]>>; [email protected]<mailto:[email protected]> Subject: Re: [PATCH 2/2] drm/amd/powerplay: enable SW SMU reset functionality I don't recommend that, because obviously this is a hardware operation, so why need to move it into sw init? Is this a workaround solution, or is it specific to which asic? and set pptable from sysfs and do baco reset operation need to call these functions, have you test it? the function in amdgpu_smu.c and smu_v11_0.c need work correctly in all asic, it needs to be done carefully, unless there is a good reason. Best Regards, Kevin ________________________________ From: amd-gfx <[email protected]<mailto:[email protected]>> on behalf of Evan Quan <[email protected]<mailto:[email protected]>> Sent: Thursday, July 25, 2019 10:39 AM To: [email protected]<mailto:[email protected]> <[email protected]<mailto:[email protected]>> Cc: Quan, Evan <[email protected]<mailto:[email protected]>> Subject: [PATCH 2/2] drm/amd/powerplay: enable SW SMU reset functionality Move SMU irq handler register to sw_init as that's totally software related. Otherwise, it will prevent SMU reset working. Change-Id: Ibd3e48ae9a90ab57f42b3f2ddbb736deeebc8715 Signed-off-by: Evan Quan <[email protected]<mailto:[email protected]>> --- drivers/gpu/drm/amd/powerplay/amdgpu_smu.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c index 6935a00cd389..a5079b93caa3 100644 --- a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c +++ b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c @@ -741,6 +741,12 @@ static int smu_sw_init(void *handle) return ret; } + ret = smu_register_irq_handler(smu); + if (ret) { + pr_err("Failed to register smc irq handler!\n"); + return ret; + } + return 0; } @@ -750,6 +756,9 @@ static int smu_sw_fini(void *handle) struct smu_context *smu = &adev->smu; int ret; + kfree(smu->irq_source); + smu->irq_source = NULL; + ret = smu_smc_table_sw_fini(smu); if (ret) { pr_err("Failed to sw fini smc table!\n"); @@ -1061,10 +1070,6 @@ static int smu_hw_init(void *handle) if (ret) goto failed; - ret = smu_register_irq_handler(smu); - if (ret) - goto failed; - if (!smu->pm_enabled) adev->pm.dpm_enabled = false; else @@ -1094,9 +1099,6 @@ static int smu_hw_fini(void *handle) kfree(table_context->overdrive_table); table_context->overdrive_table = NULL; - kfree(smu->irq_source); - smu->irq_source = NULL; - ret = smu_fini_fb_allocations(smu); if (ret) return ret; -- 2.22.0 _______________________________________________ amd-gfx mailing list [email protected]<mailto:[email protected]> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________ amd-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/amd-gfx
