Commit 2f0cf910 authored by Evan Quan's avatar Evan Quan Committed by Alex Deucher

drm/amd/pm: correct the dpm features disablement for Navi1x

For BACO scenario, PMFW will handle the dpm features disablement
and interaction with RLC properly. Driver involvement is unnecessary
and error prone.
Signed-off-by: default avatarEvan Quan <evan.quan@amd.com>
Reviewed-by: default avatarLijo Lazar <lijo.lazar@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 1e75be2b
...@@ -1387,7 +1387,8 @@ static int smu_disable_dpms(struct smu_context *smu) ...@@ -1387,7 +1387,8 @@ static int smu_disable_dpms(struct smu_context *smu)
* For Sienna_Cichlid, PMFW will handle the features disablement properly * For Sienna_Cichlid, PMFW will handle the features disablement properly
* on BACO in. Driver involvement is unnecessary. * on BACO in. Driver involvement is unnecessary.
*/ */
if ((adev->asic_type == CHIP_SIENNA_CICHLID) && if (((adev->asic_type == CHIP_SIENNA_CICHLID) ||
((adev->asic_type >= CHIP_NAVI10) && (adev->asic_type <= CHIP_NAVI12))) &&
use_baco) use_baco)
return smu_disable_all_features_with_exception(smu, return smu_disable_all_features_with_exception(smu,
true, true,
......
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