Skip to content

Commit

Permalink
drm/amd/pm: fix mode2 reset fail for smu 13.0.5
Browse files Browse the repository at this point in the history
SMU MSG index should be used as parameter.

Signed-off-by: Yifan Zhang <yifan1.zhang@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
Yifan Zhang authored and Alex Deucher committed Feb 24, 2022
1 parent 45f0ff4 commit 0bb319e
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_5_ppt.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,14 +245,9 @@ static int smu_v13_0_5_post_smu_init(struct smu_context *smu)

static int smu_v13_0_5_mode_reset(struct smu_context *smu, int type)
{
int ret = 0, index = 0;

index = smu_cmn_to_asic_specific_index(smu, CMN2ASIC_MAPPING_MSG,
SMU_MSG_GfxDeviceDriverReset);
if (index < 0)
return index == -EACCES ? 0 : index;
int ret = 0;

ret = smu_cmn_send_smc_msg_with_param(smu, (uint16_t)index, type, NULL);
ret = smu_cmn_send_smc_msg_with_param(smu, SMU_MSG_GfxDeviceDriverReset, type, NULL);
if (ret)
dev_err(smu->adev->dev, "Failed to mode reset!\n");

Expand Down

0 comments on commit 0bb319e

Please sign in to comment.