Commit 1653a179 authored by Evan Quan's avatar Evan Quan Committed by Alex Deucher
Browse files

drm/amd/pm: move NAVI1X power mode switching workaround to post_init



Since that should be the correct place to put ASIC specific
workarounds.

Signed-off-by: default avatarEvan Quan <evan.quan@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 236b156f
Loading
Loading
Loading
Loading
+0 −14
Original line number Diff line number Diff line
@@ -1013,20 +1013,6 @@ static int smu_smc_hw_setup(struct smu_context *smu)
		return ret;
	}

	if (!smu->dc_controlled_by_gpio) {
		/*
		 * For Navi1X, manually switch it to AC mode as PMFW
		 * may boot it with DC mode.
		 */
		ret = smu_set_power_source(smu,
					   adev->pm.ac_power ? SMU_POWER_SOURCE_AC :
					   SMU_POWER_SOURCE_DC);
		if (ret) {
			dev_err(adev->dev, "Failed to switch to %s mode!\n", adev->pm.ac_power ? "AC" : "DC");
			return ret;
		}
	}

	ret = smu_notify_display_change(smu);
	if (ret)
		return ret;
+19 −1
Original line number Diff line number Diff line
@@ -2661,8 +2661,26 @@ static int navi10_post_smu_init(struct smu_context *smu)
	}

	ret = navi10_run_umc_cdr_workaround(smu);
	if (ret)
	if (ret) {
		dev_err(adev->dev, "Failed to apply umc cdr workaround!\n");
		return ret;
	}

	if (!smu->dc_controlled_by_gpio) {
		/*
		 * For Navi1X, manually switch it to AC mode as PMFW
		 * may boot it with DC mode.
		 */
		ret = smu_v11_0_set_power_source(smu,
						 adev->pm.ac_power ?
						 SMU_POWER_SOURCE_AC :
						 SMU_POWER_SOURCE_DC);
		if (ret) {
			dev_err(adev->dev, "Failed to switch to %s mode!\n",
					adev->pm.ac_power ? "AC" : "DC");
			return ret;
		}
	}

	return ret;
}