Commit 51548c0f authored by Huang Rui's avatar Huang Rui Committed by Alex Deucher
Browse files

drm/amdgpu: skip dpm init for renoir



Renoir DPM is not functional so far, we skip it for the comment.
Will revert this patch once SMU 12 is functional.

Signed-off-by: default avatarHuang Rui <ray.huang@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 97222cfa
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -768,6 +768,11 @@ static int smu_late_init(void *handle)

	if (!smu->pm_enabled)
		return 0;

	/* To be removed after dpm is enabled */
	if (adev->asic_type == CHIP_RENOIR)
		return 0;

	mutex_lock(&smu->mutex);
	smu_handle_task(&adev->smu,
			smu->smu_dpm.dpm_level,
@@ -1269,6 +1274,10 @@ static int smu_hw_init(void *handle)
	if (!smu->pm_enabled)
		return 0;

	/* To be removed after dpm is enabled */
	if (adev->asic_type == CHIP_RENOIR)
		return 0;

	ret = smu_feature_init_dpm(smu);
	if (ret)
		goto failed;