Skip to content

Commit 08e5f8e

Browse files
Lijo Lazargregkh
authored andcommitted
drm/amd/pm: Remove arcturus min power limit
commit da86889 upstream. As per power team, there is no need to impose a lower bound on arcturus power limit. Any unreasonable limit set will result in frequent throttling. Signed-off-by: Lijo Lazar <lijo.lazar@amd.com> Reviewed-by: Kenneth Feng <kenneth.feng@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Cc: stable@vger.kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 8f5b79a commit 08e5f8e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

drivers/gpu/drm/amd/pm/swsmu/smu11/arcturus_ppt.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1344,8 +1344,12 @@ static int arcturus_get_power_limit(struct smu_context *smu,
13441344
*default_power_limit = power_limit;
13451345
if (max_power_limit)
13461346
*max_power_limit = power_limit;
1347+
/**
1348+
* No lower bound is imposed on the limit. Any unreasonable limit set
1349+
* will result in frequent throttling.
1350+
*/
13471351
if (min_power_limit)
1348-
*min_power_limit = power_limit;
1352+
*min_power_limit = 0;
13491353

13501354
return 0;
13511355
}

0 commit comments

Comments
 (0)