Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0740af51 authored by Lucille Sylvester's avatar Lucille Sylvester Committed by Gerrit - the friendly Code Review server
Browse files

PM: devfreq: Fix the fast ramp case in the adreno governor



Expected behavior of GPU DCVS is to immediately bump the frequency
to turbo upon encountering a long block of busy processing.  The
current code just raises the frequency by one level.

Change-Id: Ida953bb7be8a976da5400328a1c91083499e0fa0
Signed-off-by: default avatarLucille Sylvester <lsylvest@codeaurora.org>
parent c3a73b6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -134,7 +134,7 @@ static int tz_get_target_freq(struct devfreq *devfreq, unsigned long *freq,
	 * increase frequency.  Otherwise run the normal algorithm.
	 */
	if (priv->bin.busy_time > CEILING) {
		val = -1;
		val = -1 * level;
	} else {
		val = __secure_tz_entry3(TZ_UPDATE_ID,
				level,