Commit b8a01690 authored by Tao Zhou's avatar Tao Zhou Committed by Alex Deucher

drm/amd/pm: update check condition for SMU mode1 reset

The fed status does indicate RAS fatal error.
Signed-off-by: default avatarTao Zhou <tao.zhou1@amd.com>
Reviewed-by: default avatarHawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 09a3d820
......@@ -1876,7 +1876,7 @@ static int aldebaran_mode1_reset(struct smu_context *smu)
/* fatal error triggered by ras, PMFW supports the flag
from 68.44.0 */
if ((smu->smc_fw_version >= 0x00442c00) &&
amdgpu_ras_in_recovery(adev))
amdgpu_ras_get_fed_status(adev))
fatal_err = 1;
param |= (fatal_err << 16);
......
......@@ -2788,7 +2788,7 @@ static void smu_v13_0_0_set_mode1_reset_param(struct smu_context *smu,
struct amdgpu_device *adev = smu->adev;
if ((smu->smc_fw_version >= supported_version) &&
amdgpu_ras_in_recovery(adev))
amdgpu_ras_get_fed_status(adev))
/* Set RAS fatal error reset flag */
*param = 1 << 16;
else
......
......@@ -2581,7 +2581,7 @@ static int smu_v13_0_6_mode1_reset(struct smu_context *smu)
param = SMU_RESET_MODE_1;
/* fatal error triggered by ras, PMFW supports the flag */
if (amdgpu_ras_in_recovery(adev))
if (amdgpu_ras_get_fed_status(adev))
fatal_err = 1;
param |= (fatal_err << 16);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment