drm/amd/pm: Disallow managing power profiles on SRIOV for gc11.0.3
authorVictor Zhao <Victor.Zhao@amd.com>
Mon, 25 Sep 2023 06:28:25 +0000 (14:28 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 28 Sep 2023 19:44:35 +0000 (15:44 -0400)
disable pp_power_profile_mode for sriov on gc11.0.3 as not supported
by smu

Signed-off-by: Victor Zhao <Victor.Zhao@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/pm/amdgpu_pm.c

index 886bb00eaa782fec94eeefb1e270f1b2f8187795..da4d5919c8b46729c253b4b6d93109eeeefdfaad 100644 (file)
@@ -2187,7 +2187,8 @@ static int default_attr_update(struct amdgpu_device *adev, struct amdgpu_device_
        } else if (DEVICE_ATTR_IS(pp_power_profile_mode)) {
                if (amdgpu_dpm_get_power_profile_mode(adev, NULL) == -EOPNOTSUPP)
                        *states = ATTR_STATE_UNSUPPORTED;
-               else if (gc_ver == IP_VERSION(10, 3, 0) && amdgpu_sriov_vf(adev))
+               else if ((gc_ver == IP_VERSION(10, 3, 0) ||
+                         gc_ver == IP_VERSION(11, 0, 3)) && amdgpu_sriov_vf(adev))
                        *states = ATTR_STATE_UNSUPPORTED;
        } else if (DEVICE_ATTR_IS(xgmi_plpd_policy)) {
                if (amdgpu_dpm_get_xgmi_plpd_mode(adev, NULL) == XGMI_PLPD_NONE)