diff --git a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c index 96719703d7b675ecd4d8d64f7b09cde6dc64dfa8..14c0a7a2d9a55290770afca52aa914e7e1520804 100644 --- a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c +++ b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c @@ -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;