blob: 636ca6f88c8ee275efd664c553609c5121a5cb3f [file] [log] [blame]
Daniel Lezcano108c35a2018-12-03 11:29:29 +01001// SPDX-License-Identifier: GPL-2.0
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +02002/*
3 * CPUFreq governor based on scheduler-provided CPU utilization data.
4 *
5 * Copyright (C) 2016, Intel Corporation
6 * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +02007 */
8
Viresh Kumar60f05e82016-05-18 17:55:28 +05309#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020011#include "sched.h"
12
Quentin Perret938e5e42018-12-03 09:56:15 +000013#include <linux/sched/cpufreq.h>
Ingo Molnar325ea102018-03-03 12:20:47 +010014#include <trace/events/power.h>
15
Rafael J. Wysocki9eca5442019-03-28 11:33:21 +010016#define IOWAIT_BOOST_MIN (SCHED_CAPACITY_SCALE / 8)
17
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020018struct sugov_tunables {
Ingo Molnar97fb7a02018-03-03 14:01:12 +010019 struct gov_attr_set attr_set;
20 unsigned int rate_limit_us;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020021};
22
23struct sugov_policy {
Ingo Molnar97fb7a02018-03-03 14:01:12 +010024 struct cpufreq_policy *policy;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020025
Ingo Molnar97fb7a02018-03-03 14:01:12 +010026 struct sugov_tunables *tunables;
27 struct list_head tunables_hook;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020028
Ingo Molnar97fb7a02018-03-03 14:01:12 +010029 raw_spinlock_t update_lock; /* For shared policies */
30 u64 last_freq_update_time;
31 s64 freq_update_delay_ns;
32 unsigned int next_freq;
33 unsigned int cached_raw_freq;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020034
Ingo Molnar97fb7a02018-03-03 14:01:12 +010035 /* The next fields are only needed if fast switch cannot be used: */
36 struct irq_work irq_work;
37 struct kthread_work work;
38 struct mutex work_lock;
39 struct kthread_worker worker;
40 struct task_struct *thread;
41 bool work_in_progress;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020042
Ingo Molnar97fb7a02018-03-03 14:01:12 +010043 bool need_freq_update;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020044};
45
46struct sugov_cpu {
Ingo Molnar97fb7a02018-03-03 14:01:12 +010047 struct update_util_data update_util;
48 struct sugov_policy *sg_policy;
49 unsigned int cpu;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020050
Ingo Molnar97fb7a02018-03-03 14:01:12 +010051 bool iowait_boost_pending;
52 unsigned int iowait_boost;
Patrick Bellasifd7d5282018-05-22 12:07:54 +010053 u64 last_update;
Steve Muckle5cbea462016-07-13 13:25:26 -070054
Vincent Guittot8cc90512018-06-28 17:45:08 +020055 unsigned long bw_dl;
Ingo Molnar97fb7a02018-03-03 14:01:12 +010056 unsigned long max;
Rafael J. Wysockib7eaf1a2017-03-22 00:08:50 +010057
Ingo Molnar97fb7a02018-03-03 14:01:12 +010058 /* The field below is for single-CPU policies only: */
Rafael J. Wysockib7eaf1a2017-03-22 00:08:50 +010059#ifdef CONFIG_NO_HZ_COMMON
Ingo Molnar97fb7a02018-03-03 14:01:12 +010060 unsigned long saved_idle_calls;
Rafael J. Wysockib7eaf1a2017-03-22 00:08:50 +010061#endif
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020062};
63
64static DEFINE_PER_CPU(struct sugov_cpu, sugov_cpu);
65
66/************************ Governor internals ***********************/
67
68static bool sugov_should_update_freq(struct sugov_policy *sg_policy, u64 time)
69{
70 s64 delta_ns;
71
Viresh Kumar674e7542017-07-28 12:16:38 +053072 /*
73 * Since cpufreq_update_util() is called with rq->lock held for
Ingo Molnar97fb7a02018-03-03 14:01:12 +010074 * the @target_cpu, our per-CPU data is fully serialized.
Viresh Kumar674e7542017-07-28 12:16:38 +053075 *
Ingo Molnar97fb7a02018-03-03 14:01:12 +010076 * However, drivers cannot in general deal with cross-CPU
Viresh Kumar674e7542017-07-28 12:16:38 +053077 * requests, so while get_next_freq() will work, our
Viresh Kumarc49cbc12017-08-14 14:50:16 +053078 * sugov_update_commit() call may not for the fast switching platforms.
Viresh Kumar674e7542017-07-28 12:16:38 +053079 *
80 * Hence stop here for remote requests if they aren't supported
81 * by the hardware, as calculating the frequency is pointless if
82 * we cannot in fact act on it.
Viresh Kumarc49cbc12017-08-14 14:50:16 +053083 *
84 * For the slow switching platforms, the kthread is always scheduled on
85 * the right set of CPUs and any CPU can find the next frequency and
86 * schedule the kthread.
Viresh Kumar674e7542017-07-28 12:16:38 +053087 */
Viresh Kumarc49cbc12017-08-14 14:50:16 +053088 if (sg_policy->policy->fast_switch_enabled &&
Viresh Kumar03639972018-05-22 15:31:30 +053089 !cpufreq_this_cpu_can_update(sg_policy->policy))
Viresh Kumar674e7542017-07-28 12:16:38 +053090 return false;
91
Viresh Kumarecd28842018-05-09 16:05:24 +053092 if (unlikely(sg_policy->need_freq_update))
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020093 return true;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020094
95 delta_ns = time - sg_policy->last_freq_update_time;
Ingo Molnar97fb7a02018-03-03 14:01:12 +010096
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +020097 return delta_ns >= sg_policy->freq_update_delay_ns;
98}
99
Rafael J. Wysockia61dec72018-05-23 11:47:45 +0200100static bool sugov_update_next_freq(struct sugov_policy *sg_policy, u64 time,
101 unsigned int next_freq)
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200102{
Rafael J. Wysocki38d4ea22017-03-22 18:32:47 +0100103 if (sg_policy->next_freq == next_freq)
Rafael J. Wysockia61dec72018-05-23 11:47:45 +0200104 return false;
Rafael J. Wysocki38d4ea22017-03-22 18:32:47 +0100105
106 sg_policy->next_freq = next_freq;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200107 sg_policy->last_freq_update_time = time;
108
Rafael J. Wysockia61dec72018-05-23 11:47:45 +0200109 return true;
110}
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200111
Rafael J. Wysockia61dec72018-05-23 11:47:45 +0200112static void sugov_fast_switch(struct sugov_policy *sg_policy, u64 time,
113 unsigned int next_freq)
114{
115 struct cpufreq_policy *policy = sg_policy->policy;
116
117 if (!sugov_update_next_freq(sg_policy, time, next_freq))
118 return;
119
120 next_freq = cpufreq_driver_fast_switch(policy, next_freq);
121 if (!next_freq)
122 return;
123
124 policy->cur = next_freq;
125 trace_cpu_frequency(next_freq, smp_processor_id());
126}
127
128static void sugov_deferred_update(struct sugov_policy *sg_policy, u64 time,
129 unsigned int next_freq)
130{
131 if (!sugov_update_next_freq(sg_policy, time, next_freq))
132 return;
133
134 if (!sg_policy->work_in_progress) {
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200135 sg_policy->work_in_progress = true;
136 irq_work_queue(&sg_policy->irq_work);
137 }
138}
139
140/**
141 * get_next_freq - Compute a new frequency for a given cpufreq policy.
Viresh Kumar655cb1e2017-03-02 14:03:21 +0530142 * @sg_policy: schedutil policy object to compute the new frequency for.
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200143 * @util: Current CPU utilization.
144 * @max: CPU capacity.
145 *
146 * If the utilization is frequency-invariant, choose the new frequency to be
147 * proportional to it, that is
148 *
149 * next_freq = C * max_freq * util / max
150 *
151 * Otherwise, approximate the would-be frequency-invariant utilization by
152 * util_raw * (curr_freq / max_freq) which leads to
153 *
154 * next_freq = C * curr_freq * util_raw / max
155 *
156 * Take C = 1.25 for the frequency tipping point at (util / max) = 0.8.
Steve Muckle5cbea462016-07-13 13:25:26 -0700157 *
158 * The lowest driver-supported frequency which is equal or greater than the raw
159 * next_freq (as calculated above) is returned, subject to policy min/max and
160 * cpufreq driver limitations.
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200161 */
Viresh Kumar655cb1e2017-03-02 14:03:21 +0530162static unsigned int get_next_freq(struct sugov_policy *sg_policy,
163 unsigned long util, unsigned long max)
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200164{
Steve Muckle5cbea462016-07-13 13:25:26 -0700165 struct cpufreq_policy *policy = sg_policy->policy;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200166 unsigned int freq = arch_scale_freq_invariant() ?
167 policy->cpuinfo.max_freq : policy->cur;
168
Quentin Perret938e5e42018-12-03 09:56:15 +0000169 freq = map_util_freq(util, freq, max);
Steve Muckle5cbea462016-07-13 13:25:26 -0700170
Viresh Kumarecd28842018-05-09 16:05:24 +0530171 if (freq == sg_policy->cached_raw_freq && !sg_policy->need_freq_update)
Steve Muckle5cbea462016-07-13 13:25:26 -0700172 return sg_policy->next_freq;
Viresh Kumarecd28842018-05-09 16:05:24 +0530173
174 sg_policy->need_freq_update = false;
Viresh Kumar6c4f0fa2017-03-02 14:03:20 +0530175 sg_policy->cached_raw_freq = freq;
Steve Muckle5cbea462016-07-13 13:25:26 -0700176 return cpufreq_driver_resolve_freq(policy, freq);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200177}
178
Peter Zijlstra45f55192018-07-05 14:36:17 +0200179/*
180 * This function computes an effective utilization for the given CPU, to be
181 * used for frequency selection given the linear relation: f = u * f_max.
182 *
183 * The scheduler tracks the following metrics:
184 *
185 * cpu_util_{cfs,rt,dl,irq}()
186 * cpu_bw_dl()
187 *
188 * Where the cfs,rt and dl util numbers are tracked with the same metric and
189 * synchronized windows and are thus directly comparable.
190 *
191 * The cfs,rt,dl utilization are the running times measured with rq->clock_task
192 * which excludes things like IRQ and steal-time. These latter are then accrued
193 * in the irq utilization.
194 *
195 * The DL bandwidth number otoh is not a measured metric but a value computed
196 * based on the task model parameters and gives the minimal utilization
197 * required to meet deadlines.
198 */
Patrick Bellasiaf24bde2019-06-21 09:42:12 +0100199unsigned long schedutil_cpu_util(int cpu, unsigned long util_cfs,
200 unsigned long max, enum schedutil_type type,
201 struct task_struct *p)
Rafael J. Wysocki58919e82016-08-16 22:14:55 +0200202{
Quentin Perret938e5e42018-12-03 09:56:15 +0000203 unsigned long dl_util, util, irq;
204 struct rq *rq = cpu_rq(cpu);
Steve Muckle8314bc82016-08-26 11:40:47 -0700205
Patrick Bellasi982d9cd2019-06-21 09:42:10 +0100206 if (!IS_BUILTIN(CONFIG_UCLAMP_TASK) &&
207 type == FREQUENCY_UTIL && rt_rq_is_runnable(&rq->rt)) {
Vincent Guittotdfa444d2018-06-28 17:45:11 +0200208 return max;
Patrick Bellasi982d9cd2019-06-21 09:42:10 +0100209 }
Peter Zijlstra8f111bc2017-12-20 16:26:12 +0100210
Peter Zijlstra45f55192018-07-05 14:36:17 +0200211 /*
212 * Early check to see if IRQ/steal time saturates the CPU, can be
213 * because of inaccuracies in how we track these -- see
214 * update_irq_load_avg().
215 */
Vincent Guittotdfa444d2018-06-28 17:45:11 +0200216 irq = cpu_util_irq(rq);
Vincent Guittotdfa444d2018-06-28 17:45:11 +0200217 if (unlikely(irq >= max))
Vincent Guittot9033ea12018-06-28 17:45:10 +0200218 return max;
219
Peter Zijlstra45f55192018-07-05 14:36:17 +0200220 /*
221 * Because the time spend on RT/DL tasks is visible as 'lost' time to
222 * CFS tasks and we use the same metric to track the effective
223 * utilization (PELT windows are synchronized) we can directly add them
224 * to obtain the CPU's actual utilization.
Patrick Bellasi982d9cd2019-06-21 09:42:10 +0100225 *
226 * CFS and RT utilization can be boosted or capped, depending on
227 * utilization clamp constraints requested by currently RUNNABLE
228 * tasks.
229 * When there are no CFS RUNNABLE tasks, clamps are released and
230 * frequency will be gracefully reduced with the utilization decay.
Peter Zijlstra45f55192018-07-05 14:36:17 +0200231 */
Patrick Bellasi982d9cd2019-06-21 09:42:10 +0100232 util = util_cfs + cpu_util_rt(rq);
233 if (type == FREQUENCY_UTIL)
Patrick Bellasiaf24bde2019-06-21 09:42:12 +0100234 util = uclamp_util_with(rq, util, p);
Vincent Guittot3ae117c2018-06-28 17:45:06 +0200235
Quentin Perret938e5e42018-12-03 09:56:15 +0000236 dl_util = cpu_util_dl(rq);
237
Vincent Guittot9033ea12018-06-28 17:45:10 +0200238 /*
Quentin Perret938e5e42018-12-03 09:56:15 +0000239 * For frequency selection we do not make cpu_util_dl() a permanent part
240 * of this sum because we want to use cpu_bw_dl() later on, but we need
241 * to check if the CFS+RT+DL sum is saturated (ie. no idle time) such
242 * that we select f_max when there is no idle time.
Peter Zijlstra45f55192018-07-05 14:36:17 +0200243 *
244 * NOTE: numerical errors or stop class might cause us to not quite hit
245 * saturation when we should -- something for later.
Vincent Guittot9033ea12018-06-28 17:45:10 +0200246 */
Quentin Perret938e5e42018-12-03 09:56:15 +0000247 if (util + dl_util >= max)
Vincent Guittot9033ea12018-06-28 17:45:10 +0200248 return max;
Vincent Guittot8cc90512018-06-28 17:45:08 +0200249
Juri Lellid4edd662017-12-04 11:23:18 +0100250 /*
Quentin Perret938e5e42018-12-03 09:56:15 +0000251 * OTOH, for energy computation we need the estimated running time, so
252 * include util_dl and ignore dl_bw.
253 */
254 if (type == ENERGY_UTIL)
255 util += dl_util;
256
257 /*
Peter Zijlstra45f55192018-07-05 14:36:17 +0200258 * There is still idle time; further improve the number by using the
259 * irq metric. Because IRQ/steal time is hidden from the task clock we
260 * need to scale the task numbers:
Vincent Guittot8cc90512018-06-28 17:45:08 +0200261 *
Peter Zijlstra45f55192018-07-05 14:36:17 +0200262 * 1 - irq
263 * U' = irq + ------- * U
264 * max
265 */
Vincent Guittot2e62c472018-07-19 14:00:06 +0200266 util = scale_irq_capacity(util, irq, max);
Peter Zijlstra45f55192018-07-05 14:36:17 +0200267 util += irq;
268
269 /*
Vincent Guittot8cc90512018-06-28 17:45:08 +0200270 * Bandwidth required by DEADLINE must always be granted while, for
271 * FAIR and RT, we use blocked utilization of IDLE CPUs as a mechanism
272 * to gracefully reduce the frequency when no tasks show up for longer
Patrick Bellasi8ecf04e2018-05-24 15:10:22 +0100273 * periods of time.
274 *
Peter Zijlstra45f55192018-07-05 14:36:17 +0200275 * Ideally we would like to set bw_dl as min/guaranteed freq and util +
276 * bw_dl as requested freq. However, cpufreq is not yet ready for such
277 * an interface. So, we only do the latter for now.
Juri Lellid4edd662017-12-04 11:23:18 +0100278 */
Quentin Perret938e5e42018-12-03 09:56:15 +0000279 if (type == FREQUENCY_UTIL)
280 util += cpu_bw_dl(rq);
281
282 return min(max, util);
283}
284
285static unsigned long sugov_get_util(struct sugov_cpu *sg_cpu)
286{
287 struct rq *rq = cpu_rq(sg_cpu->cpu);
288 unsigned long util = cpu_util_cfs(rq);
Vincent Guittot8ec59c02019-06-17 17:00:17 +0200289 unsigned long max = arch_scale_cpu_capacity(sg_cpu->cpu);
Quentin Perret938e5e42018-12-03 09:56:15 +0000290
291 sg_cpu->max = max;
292 sg_cpu->bw_dl = cpu_bw_dl(rq);
293
Patrick Bellasiaf24bde2019-06-21 09:42:12 +0100294 return schedutil_cpu_util(sg_cpu->cpu, util, max, FREQUENCY_UTIL, NULL);
Rafael J. Wysocki58919e82016-08-16 22:14:55 +0200295}
296
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100297/**
298 * sugov_iowait_reset() - Reset the IO boost status of a CPU.
299 * @sg_cpu: the sugov data for the CPU to boost
300 * @time: the update time from the caller
301 * @set_iowait_boost: true if an IO boost has been requested
302 *
303 * The IO wait boost of a task is disabled after a tick since the last update
304 * of a CPU. If a new IO wait boost is requested after more then a tick, then
Rafael J. Wysocki9eca5442019-03-28 11:33:21 +0100305 * we enable the boost starting from IOWAIT_BOOST_MIN, which improves energy
306 * efficiency by ignoring sporadic wakeups from IO.
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100307 */
308static bool sugov_iowait_reset(struct sugov_cpu *sg_cpu, u64 time,
309 bool set_iowait_boost)
Rafael J. Wysocki21ca6d22016-09-10 00:00:31 +0200310{
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100311 s64 delta_ns = time - sg_cpu->last_update;
Joel Fernandesa5a08092017-07-23 08:54:25 -0700312
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100313 /* Reset boost only if a tick has elapsed since last request */
314 if (delta_ns <= TICK_NSEC)
315 return false;
Joel Fernandesa5a08092017-07-23 08:54:25 -0700316
Rafael J. Wysocki9eca5442019-03-28 11:33:21 +0100317 sg_cpu->iowait_boost = set_iowait_boost ? IOWAIT_BOOST_MIN : 0;
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100318 sg_cpu->iowait_boost_pending = set_iowait_boost;
Rafael J. Wysocki21ca6d22016-09-10 00:00:31 +0200319
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100320 return true;
Rafael J. Wysocki21ca6d22016-09-10 00:00:31 +0200321}
322
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100323/**
324 * sugov_iowait_boost() - Updates the IO boost status of a CPU.
325 * @sg_cpu: the sugov data for the CPU to boost
326 * @time: the update time from the caller
327 * @flags: SCHED_CPUFREQ_IOWAIT if the task is waking up after an IO wait
328 *
329 * Each time a task wakes up after an IO operation, the CPU utilization can be
330 * boosted to a certain utilization which doubles at each "frequent and
Rafael J. Wysocki9eca5442019-03-28 11:33:21 +0100331 * successive" wakeup from IO, ranging from IOWAIT_BOOST_MIN to the utilization
332 * of the maximum OPP.
333 *
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100334 * To keep doubling, an IO boost has to be requested at least once per tick,
335 * otherwise we restart from the utilization of the minimum OPP.
336 */
337static void sugov_iowait_boost(struct sugov_cpu *sg_cpu, u64 time,
338 unsigned int flags)
339{
340 bool set_iowait_boost = flags & SCHED_CPUFREQ_IOWAIT;
341
342 /* Reset boost if the CPU appears to have been idle enough */
343 if (sg_cpu->iowait_boost &&
344 sugov_iowait_reset(sg_cpu, time, set_iowait_boost))
345 return;
346
347 /* Boost only tasks waking up after IO */
348 if (!set_iowait_boost)
349 return;
350
351 /* Ensure boost doubles only one time at each request */
352 if (sg_cpu->iowait_boost_pending)
353 return;
354 sg_cpu->iowait_boost_pending = true;
355
356 /* Double the boost at each request */
357 if (sg_cpu->iowait_boost) {
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100358 sg_cpu->iowait_boost =
359 min_t(unsigned int, sg_cpu->iowait_boost << 1, SCHED_CAPACITY_SCALE);
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100360 return;
361 }
362
363 /* First wakeup after IO: start with minimum boost */
Rafael J. Wysocki9eca5442019-03-28 11:33:21 +0100364 sg_cpu->iowait_boost = IOWAIT_BOOST_MIN;
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100365}
366
367/**
368 * sugov_iowait_apply() - Apply the IO boost to a CPU.
369 * @sg_cpu: the sugov data for the cpu to boost
370 * @time: the update time from the caller
371 * @util: the utilization to (eventually) boost
372 * @max: the maximum value the utilization can be boosted to
373 *
374 * A CPU running a task which woken up after an IO operation can have its
375 * utilization boosted to speed up the completion of those IO operations.
376 * The IO boost value is increased each time a task wakes up from IO, in
377 * sugov_iowait_apply(), and it's instead decreased by this function,
378 * each time an increase has not been requested (!iowait_boost_pending).
379 *
380 * A CPU which also appears to have been idle for at least one tick has also
381 * its IO boost utilization reset.
382 *
383 * This mechanism is designed to boost high frequently IO waiting tasks, while
384 * being more conservative on tasks which does sporadic IO operations.
385 */
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100386static unsigned long sugov_iowait_apply(struct sugov_cpu *sg_cpu, u64 time,
387 unsigned long util, unsigned long max)
Rafael J. Wysocki21ca6d22016-09-10 00:00:31 +0200388{
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100389 unsigned long boost;
Rafael J. Wysocki21ca6d22016-09-10 00:00:31 +0200390
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100391 /* No boost currently required */
Joel Fernandesa5a08092017-07-23 08:54:25 -0700392 if (!sg_cpu->iowait_boost)
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100393 return util;
Rafael J. Wysocki21ca6d22016-09-10 00:00:31 +0200394
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100395 /* Reset boost if the CPU appears to have been idle enough */
396 if (sugov_iowait_reset(sg_cpu, time, false))
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100397 return util;
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100398
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100399 if (!sg_cpu->iowait_boost_pending) {
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100400 /*
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100401 * No boost pending; reduce the boost value.
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100402 */
Joel Fernandesa5a08092017-07-23 08:54:25 -0700403 sg_cpu->iowait_boost >>= 1;
Rafael J. Wysocki9eca5442019-03-28 11:33:21 +0100404 if (sg_cpu->iowait_boost < IOWAIT_BOOST_MIN) {
Joel Fernandesa5a08092017-07-23 08:54:25 -0700405 sg_cpu->iowait_boost = 0;
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100406 return util;
Joel Fernandesa5a08092017-07-23 08:54:25 -0700407 }
408 }
409
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100410 sg_cpu->iowait_boost_pending = false;
411
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100412 /*
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100413 * @util is already in capacity scale; convert iowait_boost
414 * into the same scale so we can compare.
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100415 */
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100416 boost = (sg_cpu->iowait_boost * max) >> SCHED_CAPACITY_SHIFT;
417 return max(boost, util);
Rafael J. Wysocki21ca6d22016-09-10 00:00:31 +0200418}
419
Rafael J. Wysockib7eaf1a2017-03-22 00:08:50 +0100420#ifdef CONFIG_NO_HZ_COMMON
421static bool sugov_cpu_is_busy(struct sugov_cpu *sg_cpu)
422{
Joel Fernandes466a2b42017-12-21 02:22:45 +0100423 unsigned long idle_calls = tick_nohz_get_idle_calls_cpu(sg_cpu->cpu);
Rafael J. Wysockib7eaf1a2017-03-22 00:08:50 +0100424 bool ret = idle_calls == sg_cpu->saved_idle_calls;
425
426 sg_cpu->saved_idle_calls = idle_calls;
427 return ret;
428}
429#else
430static inline bool sugov_cpu_is_busy(struct sugov_cpu *sg_cpu) { return false; }
431#endif /* CONFIG_NO_HZ_COMMON */
432
Claudio Scordinoe97a90f2018-03-13 11:35:40 +0100433/*
434 * Make sugov_should_update_freq() ignore the rate limit when DL
435 * has increased the utilization.
436 */
437static inline void ignore_dl_rate_limit(struct sugov_cpu *sg_cpu, struct sugov_policy *sg_policy)
438{
Vincent Guittot8cc90512018-06-28 17:45:08 +0200439 if (cpu_bw_dl(cpu_rq(sg_cpu->cpu)) > sg_cpu->bw_dl)
Claudio Scordinoe97a90f2018-03-13 11:35:40 +0100440 sg_policy->need_freq_update = true;
441}
442
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200443static void sugov_update_single(struct update_util_data *hook, u64 time,
Rafael J. Wysocki58919e82016-08-16 22:14:55 +0200444 unsigned int flags)
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200445{
446 struct sugov_cpu *sg_cpu = container_of(hook, struct sugov_cpu, update_util);
447 struct sugov_policy *sg_policy = sg_cpu->sg_policy;
Rafael J. Wysocki58919e82016-08-16 22:14:55 +0200448 unsigned long util, max;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200449 unsigned int next_f;
Rafael J. Wysockib7eaf1a2017-03-22 00:08:50 +0100450 bool busy;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200451
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100452 sugov_iowait_boost(sg_cpu, time, flags);
Rafael J. Wysocki21ca6d22016-09-10 00:00:31 +0200453 sg_cpu->last_update = time;
454
Claudio Scordinoe97a90f2018-03-13 11:35:40 +0100455 ignore_dl_rate_limit(sg_cpu, sg_policy);
456
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200457 if (!sugov_should_update_freq(sg_policy, time))
458 return;
459
Rafael J. Wysockib7eaf1a2017-03-22 00:08:50 +0100460 busy = sugov_cpu_is_busy(sg_cpu);
461
Vincent Guittotdfa444d2018-06-28 17:45:11 +0200462 util = sugov_get_util(sg_cpu);
Peter Zijlstra8f111bc2017-12-20 16:26:12 +0100463 max = sg_cpu->max;
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100464 util = sugov_iowait_apply(sg_cpu, time, util, max);
Peter Zijlstra8f111bc2017-12-20 16:26:12 +0100465 next_f = get_next_freq(sg_policy, util, max);
466 /*
467 * Do not reduce the frequency if the CPU has not been idle
468 * recently, as the reduction is likely to be premature then.
469 */
Viresh Kumarecd28842018-05-09 16:05:24 +0530470 if (busy && next_f < sg_policy->next_freq) {
Peter Zijlstra8f111bc2017-12-20 16:26:12 +0100471 next_f = sg_policy->next_freq;
Viresh Kumar07458f62017-11-08 20:23:55 +0530472
Peter Zijlstra8f111bc2017-12-20 16:26:12 +0100473 /* Reset cached freq as next_freq has changed */
474 sg_policy->cached_raw_freq = 0;
Rafael J. Wysocki58919e82016-08-16 22:14:55 +0200475 }
Peter Zijlstra8f111bc2017-12-20 16:26:12 +0100476
Rafael J. Wysockia61dec72018-05-23 11:47:45 +0200477 /*
478 * This code runs under rq->lock for the target CPU, so it won't run
479 * concurrently on two different CPUs for the same target and it is not
480 * necessary to acquire the lock in the fast switch case.
481 */
482 if (sg_policy->policy->fast_switch_enabled) {
483 sugov_fast_switch(sg_policy, time, next_f);
484 } else {
485 raw_spin_lock(&sg_policy->update_lock);
486 sugov_deferred_update(sg_policy, time, next_f);
487 raw_spin_unlock(&sg_policy->update_lock);
488 }
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200489}
490
Juri Lellid86ab9c2017-05-03 14:30:48 +0100491static unsigned int sugov_next_freq_shared(struct sugov_cpu *sg_cpu, u64 time)
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200492{
Steve Muckle5cbea462016-07-13 13:25:26 -0700493 struct sugov_policy *sg_policy = sg_cpu->sg_policy;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200494 struct cpufreq_policy *policy = sg_policy->policy;
Viresh Kumarcba1dfb2017-03-09 09:34:54 +0530495 unsigned long util = 0, max = 1;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200496 unsigned int j;
497
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200498 for_each_cpu(j, policy->cpus) {
Viresh Kumarcba1dfb2017-03-09 09:34:54 +0530499 struct sugov_cpu *j_sg_cpu = &per_cpu(sugov_cpu, j);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200500 unsigned long j_util, j_max;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200501
Vincent Guittotdfa444d2018-06-28 17:45:11 +0200502 j_util = sugov_get_util(j_sg_cpu);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200503 j_max = j_sg_cpu->max;
Peter Zijlstraa23314e2019-03-05 09:32:02 +0100504 j_util = sugov_iowait_apply(j_sg_cpu, time, j_util, j_max);
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100505
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200506 if (j_util * max > j_max * util) {
507 util = j_util;
508 max = j_max;
509 }
510 }
511
Viresh Kumar655cb1e2017-03-02 14:03:21 +0530512 return get_next_freq(sg_policy, util, max);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200513}
514
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100515static void
516sugov_update_shared(struct update_util_data *hook, u64 time, unsigned int flags)
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200517{
518 struct sugov_cpu *sg_cpu = container_of(hook, struct sugov_cpu, update_util);
519 struct sugov_policy *sg_policy = sg_cpu->sg_policy;
520 unsigned int next_f;
521
522 raw_spin_lock(&sg_policy->update_lock);
523
Patrick Bellasifd7d5282018-05-22 12:07:54 +0100524 sugov_iowait_boost(sg_cpu, time, flags);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200525 sg_cpu->last_update = time;
526
Claudio Scordinoe97a90f2018-03-13 11:35:40 +0100527 ignore_dl_rate_limit(sg_cpu, sg_policy);
Viresh Kumarcba1dfb2017-03-09 09:34:54 +0530528
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200529 if (sugov_should_update_freq(sg_policy, time)) {
Peter Zijlstra8f111bc2017-12-20 16:26:12 +0100530 next_f = sugov_next_freq_shared(sg_cpu, time);
Rafael J. Wysockia61dec72018-05-23 11:47:45 +0200531
532 if (sg_policy->policy->fast_switch_enabled)
533 sugov_fast_switch(sg_policy, time, next_f);
534 else
535 sugov_deferred_update(sg_policy, time, next_f);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200536 }
537
538 raw_spin_unlock(&sg_policy->update_lock);
539}
540
541static void sugov_work(struct kthread_work *work)
542{
543 struct sugov_policy *sg_policy = container_of(work, struct sugov_policy, work);
Joel Fernandes (Google)152db032018-05-22 15:55:53 -0700544 unsigned int freq;
545 unsigned long flags;
546
547 /*
548 * Hold sg_policy->update_lock shortly to handle the case where:
549 * incase sg_policy->next_freq is read here, and then updated by
Rafael J. Wysockia61dec72018-05-23 11:47:45 +0200550 * sugov_deferred_update() just before work_in_progress is set to false
Joel Fernandes (Google)152db032018-05-22 15:55:53 -0700551 * here, we may miss queueing the new update.
552 *
553 * Note: If a work was queued after the update_lock is released,
Rafael J. Wysockia61dec72018-05-23 11:47:45 +0200554 * sugov_work() will just be called again by kthread_work code; and the
Joel Fernandes (Google)152db032018-05-22 15:55:53 -0700555 * request will be proceed before the sugov thread sleeps.
556 */
557 raw_spin_lock_irqsave(&sg_policy->update_lock, flags);
558 freq = sg_policy->next_freq;
559 sg_policy->work_in_progress = false;
560 raw_spin_unlock_irqrestore(&sg_policy->update_lock, flags);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200561
562 mutex_lock(&sg_policy->work_lock);
Joel Fernandes (Google)152db032018-05-22 15:55:53 -0700563 __cpufreq_driver_target(sg_policy->policy, freq, CPUFREQ_RELATION_L);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200564 mutex_unlock(&sg_policy->work_lock);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200565}
566
567static void sugov_irq_work(struct irq_work *irq_work)
568{
569 struct sugov_policy *sg_policy;
570
571 sg_policy = container_of(irq_work, struct sugov_policy, irq_work);
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530572
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530573 kthread_queue_work(&sg_policy->worker, &sg_policy->work);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200574}
575
576/************************** sysfs interface ************************/
577
578static struct sugov_tunables *global_tunables;
579static DEFINE_MUTEX(global_tunables_lock);
580
581static inline struct sugov_tunables *to_sugov_tunables(struct gov_attr_set *attr_set)
582{
583 return container_of(attr_set, struct sugov_tunables, attr_set);
584}
585
586static ssize_t rate_limit_us_show(struct gov_attr_set *attr_set, char *buf)
587{
588 struct sugov_tunables *tunables = to_sugov_tunables(attr_set);
589
590 return sprintf(buf, "%u\n", tunables->rate_limit_us);
591}
592
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100593static ssize_t
594rate_limit_us_store(struct gov_attr_set *attr_set, const char *buf, size_t count)
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200595{
596 struct sugov_tunables *tunables = to_sugov_tunables(attr_set);
597 struct sugov_policy *sg_policy;
598 unsigned int rate_limit_us;
599
600 if (kstrtouint(buf, 10, &rate_limit_us))
601 return -EINVAL;
602
603 tunables->rate_limit_us = rate_limit_us;
604
605 list_for_each_entry(sg_policy, &attr_set->policy_list, tunables_hook)
606 sg_policy->freq_update_delay_ns = rate_limit_us * NSEC_PER_USEC;
607
608 return count;
609}
610
611static struct governor_attr rate_limit_us = __ATTR_RW(rate_limit_us);
612
Kimberly Brown9782ade2019-04-01 22:51:53 -0400613static struct attribute *sugov_attrs[] = {
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200614 &rate_limit_us.attr,
615 NULL
616};
Kimberly Brown9782ade2019-04-01 22:51:53 -0400617ATTRIBUTE_GROUPS(sugov);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200618
619static struct kobj_type sugov_tunables_ktype = {
Kimberly Brown9782ade2019-04-01 22:51:53 -0400620 .default_groups = sugov_groups,
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200621 .sysfs_ops = &governor_sysfs_ops,
622};
623
624/********************** cpufreq governor interface *********************/
625
Quentin Perret531b5c92018-12-03 09:56:21 +0000626struct cpufreq_governor schedutil_gov;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200627
628static struct sugov_policy *sugov_policy_alloc(struct cpufreq_policy *policy)
629{
630 struct sugov_policy *sg_policy;
631
632 sg_policy = kzalloc(sizeof(*sg_policy), GFP_KERNEL);
633 if (!sg_policy)
634 return NULL;
635
636 sg_policy->policy = policy;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200637 raw_spin_lock_init(&sg_policy->update_lock);
638 return sg_policy;
639}
640
641static void sugov_policy_free(struct sugov_policy *sg_policy)
642{
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200643 kfree(sg_policy);
644}
645
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530646static int sugov_kthread_create(struct sugov_policy *sg_policy)
647{
648 struct task_struct *thread;
Juri Lelli794a56e2017-12-04 11:23:20 +0100649 struct sched_attr attr = {
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100650 .size = sizeof(struct sched_attr),
651 .sched_policy = SCHED_DEADLINE,
652 .sched_flags = SCHED_FLAG_SUGOV,
653 .sched_nice = 0,
654 .sched_priority = 0,
Juri Lelli794a56e2017-12-04 11:23:20 +0100655 /*
656 * Fake (unused) bandwidth; workaround to "fix"
657 * priority inheritance.
658 */
659 .sched_runtime = 1000000,
660 .sched_deadline = 10000000,
661 .sched_period = 10000000,
662 };
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530663 struct cpufreq_policy *policy = sg_policy->policy;
664 int ret;
665
666 /* kthread only required for slow path */
667 if (policy->fast_switch_enabled)
668 return 0;
669
670 kthread_init_work(&sg_policy->work, sugov_work);
671 kthread_init_worker(&sg_policy->worker);
672 thread = kthread_create(kthread_worker_fn, &sg_policy->worker,
673 "sugov:%d",
674 cpumask_first(policy->related_cpus));
675 if (IS_ERR(thread)) {
676 pr_err("failed to create sugov thread: %ld\n", PTR_ERR(thread));
677 return PTR_ERR(thread);
678 }
679
Juri Lelli794a56e2017-12-04 11:23:20 +0100680 ret = sched_setattr_nocheck(thread, &attr);
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530681 if (ret) {
682 kthread_stop(thread);
Juri Lelli794a56e2017-12-04 11:23:20 +0100683 pr_warn("%s: failed to set SCHED_DEADLINE\n", __func__);
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530684 return ret;
685 }
686
687 sg_policy->thread = thread;
Dietmar Eggemann1b047222018-05-08 08:33:40 +0100688 kthread_bind_mask(thread, policy->related_cpus);
Viresh Kumar21ef5722016-11-15 13:53:23 +0530689 init_irq_work(&sg_policy->irq_work, sugov_irq_work);
690 mutex_init(&sg_policy->work_lock);
691
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530692 wake_up_process(thread);
693
694 return 0;
695}
696
697static void sugov_kthread_stop(struct sugov_policy *sg_policy)
698{
699 /* kthread only required for slow path */
700 if (sg_policy->policy->fast_switch_enabled)
701 return;
702
703 kthread_flush_worker(&sg_policy->worker);
704 kthread_stop(sg_policy->thread);
Viresh Kumar21ef5722016-11-15 13:53:23 +0530705 mutex_destroy(&sg_policy->work_lock);
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530706}
707
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200708static struct sugov_tunables *sugov_tunables_alloc(struct sugov_policy *sg_policy)
709{
710 struct sugov_tunables *tunables;
711
712 tunables = kzalloc(sizeof(*tunables), GFP_KERNEL);
713 if (tunables) {
714 gov_attr_set_init(&tunables->attr_set, &sg_policy->tunables_hook);
715 if (!have_governor_per_policy())
716 global_tunables = tunables;
717 }
718 return tunables;
719}
720
721static void sugov_tunables_free(struct sugov_tunables *tunables)
722{
723 if (!have_governor_per_policy())
724 global_tunables = NULL;
725
726 kfree(tunables);
727}
728
729static int sugov_init(struct cpufreq_policy *policy)
730{
731 struct sugov_policy *sg_policy;
732 struct sugov_tunables *tunables;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200733 int ret = 0;
734
735 /* State should be equivalent to EXIT */
736 if (policy->governor_data)
737 return -EBUSY;
738
Viresh Kumar4a71ce42016-11-15 13:53:21 +0530739 cpufreq_enable_fast_switch(policy);
740
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200741 sg_policy = sugov_policy_alloc(policy);
Viresh Kumar4a71ce42016-11-15 13:53:21 +0530742 if (!sg_policy) {
743 ret = -ENOMEM;
744 goto disable_fast_switch;
745 }
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200746
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530747 ret = sugov_kthread_create(sg_policy);
748 if (ret)
749 goto free_sg_policy;
750
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200751 mutex_lock(&global_tunables_lock);
752
753 if (global_tunables) {
754 if (WARN_ON(have_governor_per_policy())) {
755 ret = -EINVAL;
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530756 goto stop_kthread;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200757 }
758 policy->governor_data = sg_policy;
759 sg_policy->tunables = global_tunables;
760
761 gov_attr_set_get(&global_tunables->attr_set, &sg_policy->tunables_hook);
762 goto out;
763 }
764
765 tunables = sugov_tunables_alloc(sg_policy);
766 if (!tunables) {
767 ret = -ENOMEM;
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530768 goto stop_kthread;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200769 }
770
Viresh Kumaraa7519a2017-07-19 15:42:42 +0530771 tunables->rate_limit_us = cpufreq_policy_transition_delay_us(policy);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200772
773 policy->governor_data = sg_policy;
774 sg_policy->tunables = tunables;
775
776 ret = kobject_init_and_add(&tunables->attr_set.kobj, &sugov_tunables_ktype,
777 get_governor_parent_kobj(policy), "%s",
778 schedutil_gov.name);
779 if (ret)
780 goto fail;
781
Viresh Kumar8e2ddb02016-11-15 13:53:20 +0530782out:
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200783 mutex_unlock(&global_tunables_lock);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200784 return 0;
785
Viresh Kumar8e2ddb02016-11-15 13:53:20 +0530786fail:
Tobin C. Harding9a4f26c2019-04-30 10:11:44 +1000787 kobject_put(&tunables->attr_set.kobj);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200788 policy->governor_data = NULL;
789 sugov_tunables_free(tunables);
790
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530791stop_kthread:
792 sugov_kthread_stop(sg_policy);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200793 mutex_unlock(&global_tunables_lock);
794
Jules Maselbas1b5d43cf2018-03-29 15:43:01 +0100795free_sg_policy:
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200796 sugov_policy_free(sg_policy);
Viresh Kumar4a71ce42016-11-15 13:53:21 +0530797
798disable_fast_switch:
799 cpufreq_disable_fast_switch(policy);
800
Viresh Kumar60f05e82016-05-18 17:55:28 +0530801 pr_err("initialization failed (error %d)\n", ret);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200802 return ret;
803}
804
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200805static void sugov_exit(struct cpufreq_policy *policy)
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200806{
807 struct sugov_policy *sg_policy = policy->governor_data;
808 struct sugov_tunables *tunables = sg_policy->tunables;
809 unsigned int count;
810
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200811 mutex_lock(&global_tunables_lock);
812
813 count = gov_attr_set_put(&tunables->attr_set, &sg_policy->tunables_hook);
814 policy->governor_data = NULL;
815 if (!count)
816 sugov_tunables_free(tunables);
817
818 mutex_unlock(&global_tunables_lock);
819
Viresh Kumar02a7b1e2016-11-15 13:53:22 +0530820 sugov_kthread_stop(sg_policy);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200821 sugov_policy_free(sg_policy);
Viresh Kumar4a71ce42016-11-15 13:53:21 +0530822 cpufreq_disable_fast_switch(policy);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200823}
824
825static int sugov_start(struct cpufreq_policy *policy)
826{
827 struct sugov_policy *sg_policy = policy->governor_data;
828 unsigned int cpu;
829
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100830 sg_policy->freq_update_delay_ns = sg_policy->tunables->rate_limit_us * NSEC_PER_USEC;
831 sg_policy->last_freq_update_time = 0;
Viresh Kumarecd28842018-05-09 16:05:24 +0530832 sg_policy->next_freq = 0;
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100833 sg_policy->work_in_progress = false;
834 sg_policy->need_freq_update = false;
835 sg_policy->cached_raw_freq = 0;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200836
837 for_each_cpu(cpu, policy->cpus) {
838 struct sugov_cpu *sg_cpu = &per_cpu(sugov_cpu, cpu);
839
Rafael J. Wysocki4296f232017-03-19 14:30:02 +0100840 memset(sg_cpu, 0, sizeof(*sg_cpu));
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100841 sg_cpu->cpu = cpu;
842 sg_cpu->sg_policy = sg_policy;
Vikram Mulukutlaab2f7cf2017-07-06 10:53:20 -0700843 }
844
845 for_each_cpu(cpu, policy->cpus) {
846 struct sugov_cpu *sg_cpu = &per_cpu(sugov_cpu, cpu);
847
Rafael J. Wysocki4296f232017-03-19 14:30:02 +0100848 cpufreq_add_update_util_hook(cpu, &sg_cpu->update_util,
849 policy_is_shared(policy) ?
850 sugov_update_shared :
851 sugov_update_single);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200852 }
853 return 0;
854}
855
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200856static void sugov_stop(struct cpufreq_policy *policy)
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200857{
858 struct sugov_policy *sg_policy = policy->governor_data;
859 unsigned int cpu;
860
861 for_each_cpu(cpu, policy->cpus)
862 cpufreq_remove_update_util_hook(cpu);
863
Paul E. McKenneyb290ebc2018-11-06 19:13:54 -0800864 synchronize_rcu();
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200865
Viresh Kumar21ef5722016-11-15 13:53:23 +0530866 if (!policy->fast_switch_enabled) {
867 irq_work_sync(&sg_policy->irq_work);
868 kthread_cancel_work_sync(&sg_policy->work);
869 }
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200870}
871
Rafael J. Wysockie7888922016-06-02 23:24:15 +0200872static void sugov_limits(struct cpufreq_policy *policy)
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200873{
874 struct sugov_policy *sg_policy = policy->governor_data;
875
876 if (!policy->fast_switch_enabled) {
877 mutex_lock(&sg_policy->work_lock);
Viresh Kumarbf2be2d2016-05-18 17:55:31 +0530878 cpufreq_policy_apply_limits(policy);
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200879 mutex_unlock(&sg_policy->work_lock);
880 }
881
882 sg_policy->need_freq_update = true;
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200883}
884
Quentin Perret531b5c92018-12-03 09:56:21 +0000885struct cpufreq_governor schedutil_gov = {
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100886 .name = "schedutil",
887 .owner = THIS_MODULE,
888 .dynamic_switching = true,
889 .init = sugov_init,
890 .exit = sugov_exit,
891 .start = sugov_start,
892 .stop = sugov_stop,
893 .limits = sugov_limits,
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200894};
895
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200896#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL
897struct cpufreq_governor *cpufreq_default_governor(void)
898{
899 return &schedutil_gov;
900}
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200901#endif
Rafael J. Wysocki58919e82016-08-16 22:14:55 +0200902
903static int __init sugov_register(void)
904{
905 return cpufreq_register_governor(&schedutil_gov);
906}
907fs_initcall(sugov_register);
Quentin Perret531b5c92018-12-03 09:56:21 +0000908
909#ifdef CONFIG_ENERGY_MODEL
910extern bool sched_energy_update;
911extern struct mutex sched_energy_mutex;
912
913static void rebuild_sd_workfn(struct work_struct *work)
914{
915 mutex_lock(&sched_energy_mutex);
916 sched_energy_update = true;
917 rebuild_sched_domains();
918 sched_energy_update = false;
919 mutex_unlock(&sched_energy_mutex);
920}
921static DECLARE_WORK(rebuild_sd_work, rebuild_sd_workfn);
922
923/*
924 * EAS shouldn't be attempted without sugov, so rebuild the sched_domains
925 * on governor changes to make sure the scheduler knows about it.
926 */
927void sched_cpufreq_governor_change(struct cpufreq_policy *policy,
928 struct cpufreq_governor *old_gov)
929{
930 if (old_gov == &schedutil_gov || policy->governor == &schedutil_gov) {
931 /*
932 * When called from the cpufreq_register_driver() path, the
933 * cpu_hotplug_lock is already held, so use a work item to
934 * avoid nested locking in rebuild_sched_domains().
935 */
936 schedule_work(&rebuild_sd_work);
937 }
938
939}
940#endif