mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-12 13:34:10 +08:00
drm/amd/pm: support runtime pptable update for sienna_cichlid etc.
This avoids smu issue when enabling runtime pptable update for sienna_cichlid and so on. Runtime pptable udpate is needed for test and debug purpose. Signed-off-by: Jiansong Chen <Jiansong.Chen@amd.com> Reviewed-by: Kenneth Feng <kenneth.feng@amd.com> Reviewed-by: Evan Quan <evan.quan@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
087d764159
commit
cc8e66e769
@ -1126,7 +1126,7 @@ static int smu_disable_dpms(struct smu_context *smu)
|
|||||||
*/
|
*/
|
||||||
if (smu->uploading_custom_pp_table &&
|
if (smu->uploading_custom_pp_table &&
|
||||||
(adev->asic_type >= CHIP_NAVI10) &&
|
(adev->asic_type >= CHIP_NAVI10) &&
|
||||||
(adev->asic_type <= CHIP_NAVI12))
|
(adev->asic_type <= CHIP_NAVY_FLOUNDER))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -1211,7 +1211,9 @@ static int smu_hw_fini(void *handle)
|
|||||||
int smu_reset(struct smu_context *smu)
|
int smu_reset(struct smu_context *smu)
|
||||||
{
|
{
|
||||||
struct amdgpu_device *adev = smu->adev;
|
struct amdgpu_device *adev = smu->adev;
|
||||||
int ret = 0;
|
int ret;
|
||||||
|
|
||||||
|
amdgpu_gfx_off_ctrl(smu->adev, false);
|
||||||
|
|
||||||
ret = smu_hw_fini(adev);
|
ret = smu_hw_fini(adev);
|
||||||
if (ret)
|
if (ret)
|
||||||
@ -1222,8 +1224,12 @@ int smu_reset(struct smu_context *smu)
|
|||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
ret = smu_late_init(adev);
|
ret = smu_late_init(adev);
|
||||||
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
amdgpu_gfx_off_ctrl(smu->adev, true);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int smu_suspend(void *handle)
|
static int smu_suspend(void *handle)
|
||||||
|
Loading…
Reference in New Issue
Block a user