Commit 5ba80a0a authored by Huang Rui's avatar Huang Rui Committed by Alex Deucher
Browse files

drm/amd/powerplay: skip od feature on navi10 for the moment



OD feature isn't enabled on navi10 so skip it for the moment.

Signed-off-by: default avatarHuang Rui <ray.huang@amd.com>
Reviewed-by: default avatarHawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 3a4dc27b
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1618,6 +1618,13 @@ static int smu_v11_0_set_od8_default_settings(struct smu_context *smu,
	struct smu_table_context *table_context = &smu->smu_table;
	int ret;

	/**
	 * TODO: Enable overdrive for navi10, that replies on smc/pptable
	 * support.
	 */
	if (smu->adev->asic_type == CHIP_NAVI10)
		return 0;

	if (initialize) {
		if (table_context->overdrive_table)
			return -EINVAL;