mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
drm/amdgpu: add dpm helper function for DF Cstate control
The helper function hides software smu and legacy powerplay implementation for DF Cstate control. Signed-off-by: Hawking Zhang <Hawking.Zhang@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
995da6cc4c
commit
53e0f1e6be
@ -1171,3 +1171,20 @@ int amdgpu_dpm_set_xgmi_pstate(struct amdgpu_device *adev,
|
|||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int amdgpu_dpm_set_df_cstate(struct amdgpu_device *adev,
|
||||||
|
uint32_t cstate)
|
||||||
|
{
|
||||||
|
int ret = 0;
|
||||||
|
const struct amd_pm_funcs *pp_funcs = adev->powerplay.pp_funcs;
|
||||||
|
void *pp_handle = adev->powerplay.pp_handle;
|
||||||
|
struct smu_context *smu = &adev->smu;
|
||||||
|
|
||||||
|
if (is_support_sw_smu(adev))
|
||||||
|
ret = smu_set_df_cstate(smu, cstate);
|
||||||
|
else if (pp_funcs &&
|
||||||
|
pp_funcs->set_df_cstate)
|
||||||
|
ret = pp_funcs->set_df_cstate(pp_handle, cstate);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
@ -533,4 +533,7 @@ int amdgpu_dpm_baco_exit(struct amdgpu_device *adev);
|
|||||||
|
|
||||||
int amdgpu_dpm_baco_enter(struct amdgpu_device *adev);
|
int amdgpu_dpm_baco_enter(struct amdgpu_device *adev);
|
||||||
|
|
||||||
|
int amdgpu_dpm_set_df_cstate(struct amdgpu_device *adev,
|
||||||
|
uint32_t cstate);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user