Merge 4.14.34 into android-4.14
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / kernel / sched / cpufreq_schedutil.c
1 /*
2 * CPUFreq governor based on scheduler-provided CPU utilization data.
3 *
4 * Copyright (C) 2016, Intel Corporation
5 * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
14 #include <linux/cpufreq.h>
15 #include <linux/kthread.h>
16 #include <uapi/linux/sched/types.h>
17 #include <linux/slab.h>
18 #include <trace/events/power.h>
19
20 #include "sched.h"
21
22 unsigned long boosted_cpu_util(int cpu);
23
24 #define SUGOV_KTHREAD_PRIORITY 50
25
26 struct sugov_tunables {
27 struct gov_attr_set attr_set;
28 unsigned int up_rate_limit_us;
29 unsigned int down_rate_limit_us;
30 };
31
32 struct sugov_policy {
33 struct cpufreq_policy *policy;
34
35 struct sugov_tunables *tunables;
36 struct list_head tunables_hook;
37
38 raw_spinlock_t update_lock; /* For shared policies */
39 u64 last_freq_update_time;
40 s64 min_rate_limit_ns;
41 s64 up_rate_delay_ns;
42 s64 down_rate_delay_ns;
43 unsigned int next_freq;
44 unsigned int cached_raw_freq;
45
46 /* The next fields are only needed if fast switch cannot be used. */
47 struct irq_work irq_work;
48 struct kthread_work work;
49 struct mutex work_lock;
50 struct kthread_worker worker;
51 struct task_struct *thread;
52 bool work_in_progress;
53
54 bool need_freq_update;
55 };
56
57 struct sugov_cpu {
58 struct update_util_data update_util;
59 struct sugov_policy *sg_policy;
60 unsigned int cpu;
61
62 bool iowait_boost_pending;
63 unsigned int iowait_boost;
64 unsigned int iowait_boost_max;
65 u64 last_update;
66
67 /* The fields below are only needed when sharing a policy. */
68 unsigned long util;
69 unsigned long max;
70 unsigned int flags;
71
72 /* The field below is for single-CPU policies only. */
73 #ifdef CONFIG_NO_HZ_COMMON
74 unsigned long saved_idle_calls;
75 #endif
76 };
77
78 static DEFINE_PER_CPU(struct sugov_cpu, sugov_cpu);
79
80 /************************ Governor internals ***********************/
81
82 static bool sugov_should_update_freq(struct sugov_policy *sg_policy, u64 time)
83 {
84 s64 delta_ns;
85
86 /*
87 * Since cpufreq_update_util() is called with rq->lock held for
88 * the @target_cpu, our per-cpu data is fully serialized.
89 *
90 * However, drivers cannot in general deal with cross-cpu
91 * requests, so while get_next_freq() will work, our
92 * sugov_update_commit() call may not for the fast switching platforms.
93 *
94 * Hence stop here for remote requests if they aren't supported
95 * by the hardware, as calculating the frequency is pointless if
96 * we cannot in fact act on it.
97 *
98 * For the slow switching platforms, the kthread is always scheduled on
99 * the right set of CPUs and any CPU can find the next frequency and
100 * schedule the kthread.
101 */
102 if (sg_policy->policy->fast_switch_enabled &&
103 !cpufreq_can_do_remote_dvfs(sg_policy->policy))
104 return false;
105
106 if (sg_policy->work_in_progress)
107 return false;
108
109 if (unlikely(sg_policy->need_freq_update)) {
110 sg_policy->need_freq_update = false;
111 /*
112 * This happens when limits change, so forget the previous
113 * next_freq value and force an update.
114 */
115 sg_policy->next_freq = UINT_MAX;
116 return true;
117 }
118
119 /* No need to recalculate next freq for min_rate_limit_us
120 * at least. However we might still decide to further rate
121 * limit once frequency change direction is decided, according
122 * to the separate rate limits.
123 */
124
125 delta_ns = time - sg_policy->last_freq_update_time;
126 return delta_ns >= sg_policy->min_rate_limit_ns;
127 }
128
129 static bool sugov_up_down_rate_limit(struct sugov_policy *sg_policy, u64 time,
130 unsigned int next_freq)
131 {
132 s64 delta_ns;
133
134 delta_ns = time - sg_policy->last_freq_update_time;
135
136 if (next_freq > sg_policy->next_freq &&
137 delta_ns < sg_policy->up_rate_delay_ns)
138 return true;
139
140 if (next_freq < sg_policy->next_freq &&
141 delta_ns < sg_policy->down_rate_delay_ns)
142 return true;
143
144 return false;
145 }
146
147 static void sugov_update_commit(struct sugov_policy *sg_policy, u64 time,
148 unsigned int next_freq)
149 {
150 struct cpufreq_policy *policy = sg_policy->policy;
151
152 if (sg_policy->next_freq == next_freq)
153 return;
154
155 if (sugov_up_down_rate_limit(sg_policy, time, next_freq))
156 return;
157
158 sg_policy->next_freq = next_freq;
159 sg_policy->last_freq_update_time = time;
160
161 if (policy->fast_switch_enabled) {
162 next_freq = cpufreq_driver_fast_switch(policy, next_freq);
163 if (!next_freq)
164 return;
165
166 policy->cur = next_freq;
167 trace_cpu_frequency(next_freq, smp_processor_id());
168 } else {
169 sg_policy->work_in_progress = true;
170 irq_work_queue(&sg_policy->irq_work);
171 }
172 }
173
174 /**
175 * get_next_freq - Compute a new frequency for a given cpufreq policy.
176 * @sg_policy: schedutil policy object to compute the new frequency for.
177 * @util: Current CPU utilization.
178 * @max: CPU capacity.
179 *
180 * If the utilization is frequency-invariant, choose the new frequency to be
181 * proportional to it, that is
182 *
183 * next_freq = C * max_freq * util / max
184 *
185 * Otherwise, approximate the would-be frequency-invariant utilization by
186 * util_raw * (curr_freq / max_freq) which leads to
187 *
188 * next_freq = C * curr_freq * util_raw / max
189 *
190 * Take C = 1.25 for the frequency tipping point at (util / max) = 0.8.
191 *
192 * The lowest driver-supported frequency which is equal or greater than the raw
193 * next_freq (as calculated above) is returned, subject to policy min/max and
194 * cpufreq driver limitations.
195 */
196 static unsigned int get_next_freq(struct sugov_policy *sg_policy,
197 unsigned long util, unsigned long max)
198 {
199 struct cpufreq_policy *policy = sg_policy->policy;
200 unsigned int freq = arch_scale_freq_invariant() ?
201 policy->cpuinfo.max_freq : policy->cur;
202
203 freq = (freq + (freq >> 2)) * util / max;
204
205 if (freq == sg_policy->cached_raw_freq && sg_policy->next_freq != UINT_MAX)
206 return sg_policy->next_freq;
207 sg_policy->cached_raw_freq = freq;
208 return cpufreq_driver_resolve_freq(policy, freq);
209 }
210
211 static void sugov_get_util(unsigned long *util, unsigned long *max, int cpu)
212 {
213 unsigned long max_cap, rt;
214
215 max_cap = arch_scale_cpu_capacity(NULL, cpu);
216
217 rt = sched_get_rt_rq_util(cpu);
218
219 *util = boosted_cpu_util(cpu) + rt;
220 *util = min(*util, max_cap);
221 *max = max_cap;
222 }
223
224 static void sugov_set_iowait_boost(struct sugov_cpu *sg_cpu, u64 time,
225 unsigned int flags)
226 {
227 if (flags & SCHED_CPUFREQ_IOWAIT) {
228 if (sg_cpu->iowait_boost_pending)
229 return;
230
231 sg_cpu->iowait_boost_pending = true;
232
233 if (sg_cpu->iowait_boost) {
234 sg_cpu->iowait_boost <<= 1;
235 if (sg_cpu->iowait_boost > sg_cpu->iowait_boost_max)
236 sg_cpu->iowait_boost = sg_cpu->iowait_boost_max;
237 } else {
238 sg_cpu->iowait_boost = sg_cpu->sg_policy->policy->min;
239 }
240 } else if (sg_cpu->iowait_boost) {
241 s64 delta_ns = time - sg_cpu->last_update;
242
243 /* Clear iowait_boost if the CPU apprears to have been idle. */
244 if (delta_ns > TICK_NSEC) {
245 sg_cpu->iowait_boost = 0;
246 sg_cpu->iowait_boost_pending = false;
247 }
248 }
249 }
250
251 static void sugov_iowait_boost(struct sugov_cpu *sg_cpu, unsigned long *util,
252 unsigned long *max)
253 {
254 unsigned int boost_util, boost_max;
255
256 if (!sg_cpu->iowait_boost)
257 return;
258
259 if (sg_cpu->iowait_boost_pending) {
260 sg_cpu->iowait_boost_pending = false;
261 } else {
262 sg_cpu->iowait_boost >>= 1;
263 if (sg_cpu->iowait_boost < sg_cpu->sg_policy->policy->min) {
264 sg_cpu->iowait_boost = 0;
265 return;
266 }
267 }
268
269 boost_util = sg_cpu->iowait_boost;
270 boost_max = sg_cpu->iowait_boost_max;
271
272 if (*util * boost_max < *max * boost_util) {
273 *util = boost_util;
274 *max = boost_max;
275 }
276 }
277
278 #ifdef CONFIG_NO_HZ_COMMON
279 static bool sugov_cpu_is_busy(struct sugov_cpu *sg_cpu)
280 {
281 unsigned long idle_calls = tick_nohz_get_idle_calls_cpu(sg_cpu->cpu);
282 bool ret = idle_calls == sg_cpu->saved_idle_calls;
283
284 sg_cpu->saved_idle_calls = idle_calls;
285 return ret;
286 }
287 #else
288 static inline bool sugov_cpu_is_busy(struct sugov_cpu *sg_cpu) { return false; }
289 #endif /* CONFIG_NO_HZ_COMMON */
290
291 static void sugov_update_single(struct update_util_data *hook, u64 time,
292 unsigned int flags)
293 {
294 struct sugov_cpu *sg_cpu = container_of(hook, struct sugov_cpu, update_util);
295 struct sugov_policy *sg_policy = sg_cpu->sg_policy;
296 struct cpufreq_policy *policy = sg_policy->policy;
297 unsigned long util, max;
298 unsigned int next_f;
299 bool busy;
300
301 sugov_set_iowait_boost(sg_cpu, time, flags);
302 sg_cpu->last_update = time;
303
304 if (!sugov_should_update_freq(sg_policy, time))
305 return;
306
307 busy = sugov_cpu_is_busy(sg_cpu);
308
309 if (flags & SCHED_CPUFREQ_DL) {
310 next_f = policy->cpuinfo.max_freq;
311 } else {
312 sugov_get_util(&util, &max, sg_cpu->cpu);
313 sugov_iowait_boost(sg_cpu, &util, &max);
314 next_f = get_next_freq(sg_policy, util, max);
315 /*
316 * Do not reduce the frequency if the CPU has not been idle
317 * recently, as the reduction is likely to be premature then.
318 */
319 if (busy && next_f < sg_policy->next_freq) {
320 next_f = sg_policy->next_freq;
321
322 /* Reset cached freq as next_freq has changed */
323 sg_policy->cached_raw_freq = 0;
324 }
325 }
326
327 sugov_update_commit(sg_policy, time, next_f);
328 }
329
330 static unsigned int sugov_next_freq_shared(struct sugov_cpu *sg_cpu, u64 time)
331 {
332 struct sugov_policy *sg_policy = sg_cpu->sg_policy;
333 struct cpufreq_policy *policy = sg_policy->policy;
334 unsigned long util = 0, max = 1;
335 unsigned int j;
336
337 for_each_cpu(j, policy->cpus) {
338 struct sugov_cpu *j_sg_cpu = &per_cpu(sugov_cpu, j);
339 unsigned long j_util, j_max;
340 s64 delta_ns;
341
342 /*
343 * If the CPU utilization was last updated before the previous
344 * frequency update and the time elapsed between the last update
345 * of the CPU utilization and the last frequency update is long
346 * enough, don't take the CPU into account as it probably is
347 * idle now (and clear iowait_boost for it).
348 */
349 delta_ns = time - j_sg_cpu->last_update;
350 if (delta_ns > TICK_NSEC) {
351 j_sg_cpu->iowait_boost = 0;
352 j_sg_cpu->iowait_boost_pending = false;
353 continue;
354 }
355 if (j_sg_cpu->flags & SCHED_CPUFREQ_DL)
356 return policy->cpuinfo.max_freq;
357
358 j_util = j_sg_cpu->util;
359 j_max = j_sg_cpu->max;
360 if (j_util * max > j_max * util) {
361 util = j_util;
362 max = j_max;
363 }
364
365 sugov_iowait_boost(j_sg_cpu, &util, &max);
366 }
367
368 return get_next_freq(sg_policy, util, max);
369 }
370
371 static void sugov_update_shared(struct update_util_data *hook, u64 time,
372 unsigned int flags)
373 {
374 struct sugov_cpu *sg_cpu = container_of(hook, struct sugov_cpu, update_util);
375 struct sugov_policy *sg_policy = sg_cpu->sg_policy;
376 unsigned long util, max;
377 unsigned int next_f;
378
379 sugov_get_util(&util, &max, sg_cpu->cpu);
380
381 raw_spin_lock(&sg_policy->update_lock);
382
383 sg_cpu->util = util;
384 sg_cpu->max = max;
385 sg_cpu->flags = flags;
386
387 sugov_set_iowait_boost(sg_cpu, time, flags);
388 sg_cpu->last_update = time;
389
390 if (sugov_should_update_freq(sg_policy, time)) {
391 if (flags & SCHED_CPUFREQ_DL)
392 next_f = sg_policy->policy->cpuinfo.max_freq;
393 else
394 next_f = sugov_next_freq_shared(sg_cpu, time);
395
396 sugov_update_commit(sg_policy, time, next_f);
397 }
398
399 raw_spin_unlock(&sg_policy->update_lock);
400 }
401
402 static void sugov_work(struct kthread_work *work)
403 {
404 struct sugov_policy *sg_policy = container_of(work, struct sugov_policy, work);
405
406 mutex_lock(&sg_policy->work_lock);
407 __cpufreq_driver_target(sg_policy->policy, sg_policy->next_freq,
408 CPUFREQ_RELATION_L);
409 mutex_unlock(&sg_policy->work_lock);
410
411 sg_policy->work_in_progress = false;
412 }
413
414 static void sugov_irq_work(struct irq_work *irq_work)
415 {
416 struct sugov_policy *sg_policy;
417
418 sg_policy = container_of(irq_work, struct sugov_policy, irq_work);
419
420 /*
421 * For RT and deadline tasks, the schedutil governor shoots the
422 * frequency to maximum. Special care must be taken to ensure that this
423 * kthread doesn't result in the same behavior.
424 *
425 * This is (mostly) guaranteed by the work_in_progress flag. The flag is
426 * updated only at the end of the sugov_work() function and before that
427 * the schedutil governor rejects all other frequency scaling requests.
428 *
429 * There is a very rare case though, where the RT thread yields right
430 * after the work_in_progress flag is cleared. The effects of that are
431 * neglected for now.
432 */
433 kthread_queue_work(&sg_policy->worker, &sg_policy->work);
434 }
435
436 /************************** sysfs interface ************************/
437
438 static struct sugov_tunables *global_tunables;
439 static DEFINE_MUTEX(global_tunables_lock);
440
441 static inline struct sugov_tunables *to_sugov_tunables(struct gov_attr_set *attr_set)
442 {
443 return container_of(attr_set, struct sugov_tunables, attr_set);
444 }
445
446 static DEFINE_MUTEX(min_rate_lock);
447
448 static void update_min_rate_limit_ns(struct sugov_policy *sg_policy)
449 {
450 mutex_lock(&min_rate_lock);
451 sg_policy->min_rate_limit_ns = min(sg_policy->up_rate_delay_ns,
452 sg_policy->down_rate_delay_ns);
453 mutex_unlock(&min_rate_lock);
454 }
455
456 static ssize_t up_rate_limit_us_show(struct gov_attr_set *attr_set, char *buf)
457 {
458 struct sugov_tunables *tunables = to_sugov_tunables(attr_set);
459
460 return sprintf(buf, "%u\n", tunables->up_rate_limit_us);
461 }
462
463 static ssize_t down_rate_limit_us_show(struct gov_attr_set *attr_set, char *buf)
464 {
465 struct sugov_tunables *tunables = to_sugov_tunables(attr_set);
466
467 return sprintf(buf, "%u\n", tunables->down_rate_limit_us);
468 }
469
470 static ssize_t up_rate_limit_us_store(struct gov_attr_set *attr_set,
471 const char *buf, size_t count)
472 {
473 struct sugov_tunables *tunables = to_sugov_tunables(attr_set);
474 struct sugov_policy *sg_policy;
475 unsigned int rate_limit_us;
476
477 if (kstrtouint(buf, 10, &rate_limit_us))
478 return -EINVAL;
479
480 tunables->up_rate_limit_us = rate_limit_us;
481
482 list_for_each_entry(sg_policy, &attr_set->policy_list, tunables_hook) {
483 sg_policy->up_rate_delay_ns = rate_limit_us * NSEC_PER_USEC;
484 update_min_rate_limit_ns(sg_policy);
485 }
486
487 return count;
488 }
489
490 static ssize_t down_rate_limit_us_store(struct gov_attr_set *attr_set,
491 const char *buf, size_t count)
492 {
493 struct sugov_tunables *tunables = to_sugov_tunables(attr_set);
494 struct sugov_policy *sg_policy;
495 unsigned int rate_limit_us;
496
497 if (kstrtouint(buf, 10, &rate_limit_us))
498 return -EINVAL;
499
500 tunables->down_rate_limit_us = rate_limit_us;
501
502 list_for_each_entry(sg_policy, &attr_set->policy_list, tunables_hook) {
503 sg_policy->down_rate_delay_ns = rate_limit_us * NSEC_PER_USEC;
504 update_min_rate_limit_ns(sg_policy);
505 }
506
507 return count;
508 }
509
510 static struct governor_attr up_rate_limit_us = __ATTR_RW(up_rate_limit_us);
511 static struct governor_attr down_rate_limit_us = __ATTR_RW(down_rate_limit_us);
512
513 static struct attribute *sugov_attributes[] = {
514 &up_rate_limit_us.attr,
515 &down_rate_limit_us.attr,
516 NULL
517 };
518
519 static struct kobj_type sugov_tunables_ktype = {
520 .default_attrs = sugov_attributes,
521 .sysfs_ops = &governor_sysfs_ops,
522 };
523
524 /********************** cpufreq governor interface *********************/
525
526 static struct cpufreq_governor schedutil_gov;
527
528 static struct sugov_policy *sugov_policy_alloc(struct cpufreq_policy *policy)
529 {
530 struct sugov_policy *sg_policy;
531
532 sg_policy = kzalloc(sizeof(*sg_policy), GFP_KERNEL);
533 if (!sg_policy)
534 return NULL;
535
536 sg_policy->policy = policy;
537 raw_spin_lock_init(&sg_policy->update_lock);
538 return sg_policy;
539 }
540
541 static void sugov_policy_free(struct sugov_policy *sg_policy)
542 {
543 kfree(sg_policy);
544 }
545
546 static int sugov_kthread_create(struct sugov_policy *sg_policy)
547 {
548 struct task_struct *thread;
549 struct sched_param param = { .sched_priority = MAX_USER_RT_PRIO / 2 };
550 struct cpufreq_policy *policy = sg_policy->policy;
551 int ret;
552
553 /* kthread only required for slow path */
554 if (policy->fast_switch_enabled)
555 return 0;
556
557 kthread_init_work(&sg_policy->work, sugov_work);
558 kthread_init_worker(&sg_policy->worker);
559 thread = kthread_create(kthread_worker_fn, &sg_policy->worker,
560 "sugov:%d",
561 cpumask_first(policy->related_cpus));
562 if (IS_ERR(thread)) {
563 pr_err("failed to create sugov thread: %ld\n", PTR_ERR(thread));
564 return PTR_ERR(thread);
565 }
566
567 ret = sched_setscheduler_nocheck(thread, SCHED_FIFO, &param);
568 if (ret) {
569 kthread_stop(thread);
570 pr_warn("%s: failed to set SCHED_FIFO\n", __func__);
571 return ret;
572 }
573
574 sg_policy->thread = thread;
575
576 /* Kthread is bound to all CPUs by default */
577 if (!policy->dvfs_possible_from_any_cpu)
578 kthread_bind_mask(thread, policy->related_cpus);
579
580 init_irq_work(&sg_policy->irq_work, sugov_irq_work);
581 mutex_init(&sg_policy->work_lock);
582
583 wake_up_process(thread);
584
585 return 0;
586 }
587
588 static void sugov_kthread_stop(struct sugov_policy *sg_policy)
589 {
590 /* kthread only required for slow path */
591 if (sg_policy->policy->fast_switch_enabled)
592 return;
593
594 kthread_flush_worker(&sg_policy->worker);
595 kthread_stop(sg_policy->thread);
596 mutex_destroy(&sg_policy->work_lock);
597 }
598
599 static struct sugov_tunables *sugov_tunables_alloc(struct sugov_policy *sg_policy)
600 {
601 struct sugov_tunables *tunables;
602
603 tunables = kzalloc(sizeof(*tunables), GFP_KERNEL);
604 if (tunables) {
605 gov_attr_set_init(&tunables->attr_set, &sg_policy->tunables_hook);
606 if (!have_governor_per_policy())
607 global_tunables = tunables;
608 }
609 return tunables;
610 }
611
612 static void sugov_tunables_free(struct sugov_tunables *tunables)
613 {
614 if (!have_governor_per_policy())
615 global_tunables = NULL;
616
617 kfree(tunables);
618 }
619
620 static int sugov_init(struct cpufreq_policy *policy)
621 {
622 struct sugov_policy *sg_policy;
623 struct sugov_tunables *tunables;
624 int ret = 0;
625
626 /* State should be equivalent to EXIT */
627 if (policy->governor_data)
628 return -EBUSY;
629
630 cpufreq_enable_fast_switch(policy);
631
632 sg_policy = sugov_policy_alloc(policy);
633 if (!sg_policy) {
634 ret = -ENOMEM;
635 goto disable_fast_switch;
636 }
637
638 ret = sugov_kthread_create(sg_policy);
639 if (ret)
640 goto free_sg_policy;
641
642 mutex_lock(&global_tunables_lock);
643
644 if (global_tunables) {
645 if (WARN_ON(have_governor_per_policy())) {
646 ret = -EINVAL;
647 goto stop_kthread;
648 }
649 policy->governor_data = sg_policy;
650 sg_policy->tunables = global_tunables;
651
652 gov_attr_set_get(&global_tunables->attr_set, &sg_policy->tunables_hook);
653 goto out;
654 }
655
656 tunables = sugov_tunables_alloc(sg_policy);
657 if (!tunables) {
658 ret = -ENOMEM;
659 goto stop_kthread;
660 }
661
662 tunables->up_rate_limit_us = cpufreq_policy_transition_delay_us(policy);
663 tunables->down_rate_limit_us = cpufreq_policy_transition_delay_us(policy);
664
665 policy->governor_data = sg_policy;
666 sg_policy->tunables = tunables;
667
668 ret = kobject_init_and_add(&tunables->attr_set.kobj, &sugov_tunables_ktype,
669 get_governor_parent_kobj(policy), "%s",
670 schedutil_gov.name);
671 if (ret)
672 goto fail;
673
674 out:
675 mutex_unlock(&global_tunables_lock);
676 return 0;
677
678 fail:
679 policy->governor_data = NULL;
680 sugov_tunables_free(tunables);
681
682 stop_kthread:
683 sugov_kthread_stop(sg_policy);
684
685 free_sg_policy:
686 mutex_unlock(&global_tunables_lock);
687
688 sugov_policy_free(sg_policy);
689
690 disable_fast_switch:
691 cpufreq_disable_fast_switch(policy);
692
693 pr_err("initialization failed (error %d)\n", ret);
694 return ret;
695 }
696
697 static void sugov_exit(struct cpufreq_policy *policy)
698 {
699 struct sugov_policy *sg_policy = policy->governor_data;
700 struct sugov_tunables *tunables = sg_policy->tunables;
701 unsigned int count;
702
703 mutex_lock(&global_tunables_lock);
704
705 count = gov_attr_set_put(&tunables->attr_set, &sg_policy->tunables_hook);
706 policy->governor_data = NULL;
707 if (!count)
708 sugov_tunables_free(tunables);
709
710 mutex_unlock(&global_tunables_lock);
711
712 sugov_kthread_stop(sg_policy);
713 sugov_policy_free(sg_policy);
714 cpufreq_disable_fast_switch(policy);
715 }
716
717 static int sugov_start(struct cpufreq_policy *policy)
718 {
719 struct sugov_policy *sg_policy = policy->governor_data;
720 unsigned int cpu;
721
722 sg_policy->up_rate_delay_ns =
723 sg_policy->tunables->up_rate_limit_us * NSEC_PER_USEC;
724 sg_policy->down_rate_delay_ns =
725 sg_policy->tunables->down_rate_limit_us * NSEC_PER_USEC;
726 update_min_rate_limit_ns(sg_policy);
727 sg_policy->last_freq_update_time = 0;
728 sg_policy->next_freq = UINT_MAX;
729 sg_policy->work_in_progress = false;
730 sg_policy->need_freq_update = false;
731 sg_policy->cached_raw_freq = 0;
732
733 for_each_cpu(cpu, policy->cpus) {
734 struct sugov_cpu *sg_cpu = &per_cpu(sugov_cpu, cpu);
735
736 memset(sg_cpu, 0, sizeof(*sg_cpu));
737 sg_cpu->cpu = cpu;
738 sg_cpu->sg_policy = sg_policy;
739 sg_cpu->flags = SCHED_CPUFREQ_DL;
740 sg_cpu->iowait_boost_max = policy->cpuinfo.max_freq;
741 }
742
743 for_each_cpu(cpu, policy->cpus) {
744 struct sugov_cpu *sg_cpu = &per_cpu(sugov_cpu, cpu);
745
746 cpufreq_add_update_util_hook(cpu, &sg_cpu->update_util,
747 policy_is_shared(policy) ?
748 sugov_update_shared :
749 sugov_update_single);
750 }
751 return 0;
752 }
753
754 static void sugov_stop(struct cpufreq_policy *policy)
755 {
756 struct sugov_policy *sg_policy = policy->governor_data;
757 unsigned int cpu;
758
759 for_each_cpu(cpu, policy->cpus)
760 cpufreq_remove_update_util_hook(cpu);
761
762 synchronize_sched();
763
764 if (!policy->fast_switch_enabled) {
765 irq_work_sync(&sg_policy->irq_work);
766 kthread_cancel_work_sync(&sg_policy->work);
767 }
768 }
769
770 static void sugov_limits(struct cpufreq_policy *policy)
771 {
772 struct sugov_policy *sg_policy = policy->governor_data;
773
774 if (!policy->fast_switch_enabled) {
775 mutex_lock(&sg_policy->work_lock);
776 cpufreq_policy_apply_limits(policy);
777 mutex_unlock(&sg_policy->work_lock);
778 }
779
780 sg_policy->need_freq_update = true;
781 }
782
783 static struct cpufreq_governor schedutil_gov = {
784 .name = "schedutil",
785 .owner = THIS_MODULE,
786 .dynamic_switching = true,
787 .init = sugov_init,
788 .exit = sugov_exit,
789 .start = sugov_start,
790 .stop = sugov_stop,
791 .limits = sugov_limits,
792 };
793
794 #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL
795 struct cpufreq_governor *cpufreq_default_governor(void)
796 {
797 return &schedutil_gov;
798 }
799 #endif
800
801 static int __init sugov_register(void)
802 {
803 return cpufreq_register_governor(&schedutil_gov);
804 }
805 fs_initcall(sugov_register);