Skip to content

Commit da86889

Browse files
Lijo Lazaralexdeucher
authored andcommitted
drm/amd/pm: Remove arcturus min power limit
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 <[email protected]> Reviewed-by: Kenneth Feng <[email protected]> Signed-off-by: Alex Deucher <[email protected]> Cc: [email protected]
1 parent 76c7f08 commit da86889

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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)