diff options
| author | Yang Wang <[email protected]> | 2024-02-07 01:53:28 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2024-02-12 21:08:17 +0000 |
| commit | e3bfb8d9179ee014e54031e1f98097a339354fa0 (patch) | |
| tree | 2c6c833a9465f30bae10c0a49bbf3a92af4babaa /drivers/gpu/drm/amd/pm/amdgpu_dpm.c | |
| parent | drm/amdgpu: Add athub v4_1_0 ip block support (diff) | |
| download | kernel-e3bfb8d9179ee014e54031e1f98097a339354fa0.tar.gz kernel-e3bfb8d9179ee014e54031e1f98097a339354fa0.zip | |
drm/amdgpu: implement smu send rma reason for smu v13.0.6
implement smu send rma reason function for smu v13.0.6
Signed-off-by: Yang Wang <[email protected]>
Reviewed-by: Tao Zhou <[email protected]>
Reviewed-by: Hawking Zhang <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/pm/amdgpu_dpm.c')
| -rw-r--r-- | drivers/gpu/drm/amd/pm/amdgpu_dpm.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/pm/amdgpu_dpm.c b/drivers/gpu/drm/amd/pm/amdgpu_dpm.c index 6627ee07d52d..f84bfed50681 100644 --- a/drivers/gpu/drm/amd/pm/amdgpu_dpm.c +++ b/drivers/gpu/drm/amd/pm/amdgpu_dpm.c @@ -693,6 +693,21 @@ int amdgpu_dpm_send_hbm_bad_channel_flag(struct amdgpu_device *adev, uint32_t si return ret; } +int amdgpu_dpm_send_rma_reason(struct amdgpu_device *adev) +{ + struct smu_context *smu = adev->powerplay.pp_handle; + int ret; + + if (!is_support_sw_smu(adev)) + return -EOPNOTSUPP; + + mutex_lock(&adev->pm.mutex); + ret = smu_send_rma_reason(smu); + mutex_unlock(&adev->pm.mutex); + + return ret; +} + int amdgpu_dpm_get_dpm_freq_range(struct amdgpu_device *adev, enum pp_clock_type type, uint32_t *min, |
