]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
drm/amd/pm: temporarily disable thermal alert on smu_v13_0_10
authorKenneth Feng <kenneth.feng@amd.com>
Sat, 30 Jul 2022 02:58:37 +0000 (10:58 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 19 Oct 2022 02:09:10 +0000 (22:09 -0400)
temporarily disable thermal alert on smu_v13_0_10 due to kfd test fail.
will enable it again after confirming the thermal hardware setting.

Signed-off-by: Kenneth Feng <kenneth.feng@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c

index 13c5c7f1ecb9fefc4e4df5676e59bb84fe832767..3d436e7f6e952e1f740a45b5b2e8be538943bf4c 100644 (file)
@@ -1312,10 +1312,12 @@ static int smu_smc_hw_setup(struct smu_context *smu)
                return ret;
        }
 
-       ret = smu_enable_thermal_alert(smu);
-       if (ret) {
-               dev_err(adev->dev, "Failed to enable thermal alert!\n");
-               return ret;
+       if (adev->ip_versions[MP1_HWIP][0] != IP_VERSION(13, 0, 10)) {
+               ret = smu_enable_thermal_alert(smu);
+               if (ret) {
+                       dev_err(adev->dev, "Failed to enable thermal alert!\n");
+                       return ret;
+               }
        }
 
        ret = smu_notify_display_change(smu);