cpufreq: interactive: set at least hispeed when above hispeed load
authorTodd Poynor <toddpoynor@google.com>
Sat, 7 Apr 2012 02:50:12 +0000 (19:50 -0700)
committerJohn Stultz <john.stultz@linaro.org>
Tue, 16 Feb 2016 21:52:34 +0000 (13:52 -0800)
If load is above go_hispeed_load, always go to at least hispeed_freq,
even when reducing speed from a higher speed, not just when jumping
up from minimum speed.  Avoids running at a lower than intended
speed after a burst of even higher load.

Change-Id: I5b9d2a15ba25ce609b21bac7c724265cf6838dee
Signed-off-by: Todd Poynor <toddpoynor@google.com>
drivers/cpufreq/cpufreq_interactive.c

index e3bbe820bb01e4840fb215cb746c0754a0020274..12345c7bec28a3c12267879dfdf6222092ba5af9 100644 (file)
@@ -166,10 +166,14 @@ static void cpufreq_interactive_timer(unsigned long data)
                cpu_load = load_since_change;
 
        if (cpu_load >= go_hispeed_load) {
-               if (pcpu->policy->cur == pcpu->policy->min)
+               if (pcpu->policy->cur == pcpu->policy->min) {
                        new_freq = hispeed_freq;
-               else
+               } else {
                        new_freq = pcpu->policy->max * cpu_load / 100;
+
+                       if (new_freq < hispeed_freq)
+                               new_freq = hispeed_freq;
+               }
        } else {
                new_freq = pcpu->policy->max * cpu_load / 100;
        }