drm/amd/powerplay: skip od feature on navi10 for the moment
authorHuang Rui <ray.huang@amd.com>
Wed, 20 Feb 2019 12:20:00 +0000 (20:20 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 21 Jun 2019 23:59:25 +0000 (18:59 -0500)
OD feature isn't enabled on navi10 so skip it for the moment.

Signed-off-by: Huang Rui <ray.huang@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/powerplay/smu_v11_0.c

index 9671970..14c0a7a 100644 (file)
@@ -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;