Commit da868898 authored by Lijo Lazar's avatar Lijo Lazar Committed by Alex Deucher
Browse files

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: default avatarLijo Lazar <lijo.lazar@amd.com>
Reviewed-by: default avatarKenneth Feng <kenneth.feng@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
parent 76c7f080
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -1344,8 +1344,12 @@ static int arcturus_get_power_limit(struct smu_context *smu,
		*default_power_limit = power_limit;
	if (max_power_limit)
		*max_power_limit = power_limit;
	/**
	 * No lower bound is imposed on the limit. Any unreasonable limit set
	 * will result in frequent throttling.
	 */
	if (min_power_limit)
		*min_power_limit = power_limit;
		*min_power_limit = 0;

	return 0;
}