From 1894a075be605c2285dadd8015b6d22b5e01ced7 Mon Sep 17 00:00:00 2001 From: Adithya R Date: Sat, 27 May 2023 09:29:40 +0200 Subject: [PATCH] sm8550-common: Lower down schedutil down rate limit for prime CPU Since the big and prime clusters consume more power, they should not be prevented from lowering frequencies for longer periods. Instead it should be for the little cluster, that consumes lesser power and has higher load. Change-Id: If8325d2b3c6be0b593716cb8f6bef4316d232e87 --- configs/powerhint.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/configs/powerhint.json b/configs/powerhint.json index 0f817d4..8fa1f39 100644 --- a/configs/powerhint.json +++ b/configs/powerhint.json @@ -24,8 +24,8 @@ "Name": "CPULittleClusterUpRateLimit", "Path": "/sys/devices/system/cpu/cpufreq/policy0/walt/up_rate_limit_us", "Values": [ - "500", - "2000" + "2000", + "500" ], "ResetOnInit": true }, @@ -33,8 +33,8 @@ "Name": "CPULittleClusterDownRateLimit", "Path": "/sys/devices/system/cpu/cpufreq/policy0/walt/down_rate_limit_us", "Values": [ - "20000", - "2000" + "2000", + "20000" ], "ResetOnInit": true }, @@ -65,8 +65,8 @@ "Name": "CPUBigClusterUpRateLimit", "Path": "/sys/devices/system/cpu/cpufreq/policy3/walt/up_rate_limit_us", "Values": [ - "500", - "2000" + "2000", + "500" ], "ResetOnInit": true }, @@ -74,8 +74,8 @@ "Name": "CPUBigClusterDownRateLimit", "Path": "/sys/devices/system/cpu/cpufreq/policy3/walt/down_rate_limit_us", "Values": [ - "10000", - "2000" + "2000", + "10000" ], "ResetOnInit": true }, @@ -104,8 +104,8 @@ "Name": "CPUBigPlusClusterUpRateLimit", "Path": "/sys/devices/system/cpu/cpufreq/policy7/walt/up_rate_limit_us", "Values": [ - "500", - "2000" + "2000", + "500" ], "ResetOnInit": true }, @@ -113,8 +113,8 @@ "Name": "CPUBigPlusClusterDownRateLimit", "Path": "/sys/devices/system/cpu/cpufreq/policy7/walt/down_rate_limit_us", "Values": [ - "5000", - "2000" + "2000", + "5000" ], "ResetOnInit": true },