mirror of https://gitee.com/openkylin/linux.git
drm/amd/powerplay: send EnterBaco msg with argument as RAS recovery flag
1 indicates RAS recovery flag in SMU FW. Signed-off-by: Le Ma <le.ma@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
df9331e561
commit
16562d32c7
|
@ -89,10 +89,15 @@ int vega20_baco_set_state(struct pp_hwmgr *hwmgr, enum BACO_STATE state)
|
|||
data = RREG32_SOC15(THM, 0, mmTHM_BACO_CNTL);
|
||||
data |= 0x80000000;
|
||||
WREG32_SOC15(THM, 0, mmTHM_BACO_CNTL, data);
|
||||
}
|
||||
|
||||
if(smum_send_msg_to_smc_with_parameter(hwmgr, PPSMC_MSG_EnterBaco, 0))
|
||||
return -EINVAL;
|
||||
if(smum_send_msg_to_smc_with_parameter(hwmgr,
|
||||
PPSMC_MSG_EnterBaco, 0))
|
||||
return -EINVAL;
|
||||
} else {
|
||||
if(smum_send_msg_to_smc_with_parameter(hwmgr,
|
||||
PPSMC_MSG_EnterBaco, 1))
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
} else if (state == BACO_STATE_OUT) {
|
||||
if (smum_send_msg_to_smc(hwmgr, PPSMC_MSG_ExitBaco))
|
||||
|
|
Loading…
Reference in New Issue