2 * CPUFreq governor based on scheduler-provided CPU utilization data.
4 * Copyright (C) 2016, Intel Corporation
5 * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
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.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/cpufreq.h>
15 #include <linux/module.h>
16 #include <linux/slab.h>
17 #include <trace/events/power.h>
21 struct sugov_tunables
{
22 struct gov_attr_set attr_set
;
23 unsigned int rate_limit_us
;
27 struct cpufreq_policy
*policy
;
29 struct sugov_tunables
*tunables
;
30 struct list_head tunables_hook
;
32 raw_spinlock_t update_lock
; /* For shared policies */
33 u64 last_freq_update_time
;
34 s64 freq_update_delay_ns
;
35 unsigned int next_freq
;
37 /* The next fields are only needed if fast switch cannot be used. */
38 struct irq_work irq_work
;
39 struct work_struct work
;
40 struct mutex work_lock
;
41 bool work_in_progress
;
43 bool need_freq_update
;
47 struct update_util_data update_util
;
48 struct sugov_policy
*sg_policy
;
50 unsigned int cached_raw_freq
;
52 /* The fields below are only needed when sharing a policy. */
58 static DEFINE_PER_CPU(struct sugov_cpu
, sugov_cpu
);
60 /************************ Governor internals ***********************/
62 static bool sugov_should_update_freq(struct sugov_policy
*sg_policy
, u64 time
)
66 if (sg_policy
->work_in_progress
)
69 if (unlikely(sg_policy
->need_freq_update
)) {
70 sg_policy
->need_freq_update
= false;
72 * This happens when limits change, so forget the previous
73 * next_freq value and force an update.
75 sg_policy
->next_freq
= UINT_MAX
;
79 delta_ns
= time
- sg_policy
->last_freq_update_time
;
80 return delta_ns
>= sg_policy
->freq_update_delay_ns
;
83 static void sugov_update_commit(struct sugov_policy
*sg_policy
, u64 time
,
84 unsigned int next_freq
)
86 struct cpufreq_policy
*policy
= sg_policy
->policy
;
88 sg_policy
->last_freq_update_time
= time
;
90 if (policy
->fast_switch_enabled
) {
91 if (sg_policy
->next_freq
== next_freq
) {
92 trace_cpu_frequency(policy
->cur
, smp_processor_id());
95 sg_policy
->next_freq
= next_freq
;
96 next_freq
= cpufreq_driver_fast_switch(policy
, next_freq
);
97 if (next_freq
== CPUFREQ_ENTRY_INVALID
)
100 policy
->cur
= next_freq
;
101 trace_cpu_frequency(next_freq
, smp_processor_id());
102 } else if (sg_policy
->next_freq
!= next_freq
) {
103 sg_policy
->next_freq
= next_freq
;
104 sg_policy
->work_in_progress
= true;
105 irq_work_queue(&sg_policy
->irq_work
);
110 * get_next_freq - Compute a new frequency for a given cpufreq policy.
111 * @sg_cpu: schedutil cpu object to compute the new frequency for.
112 * @util: Current CPU utilization.
113 * @max: CPU capacity.
115 * If the utilization is frequency-invariant, choose the new frequency to be
116 * proportional to it, that is
118 * next_freq = C * max_freq * util / max
120 * Otherwise, approximate the would-be frequency-invariant utilization by
121 * util_raw * (curr_freq / max_freq) which leads to
123 * next_freq = C * curr_freq * util_raw / max
125 * Take C = 1.25 for the frequency tipping point at (util / max) = 0.8.
127 * The lowest driver-supported frequency which is equal or greater than the raw
128 * next_freq (as calculated above) is returned, subject to policy min/max and
129 * cpufreq driver limitations.
131 static unsigned int get_next_freq(struct sugov_cpu
*sg_cpu
, unsigned long util
,
134 struct sugov_policy
*sg_policy
= sg_cpu
->sg_policy
;
135 struct cpufreq_policy
*policy
= sg_policy
->policy
;
136 unsigned int freq
= arch_scale_freq_invariant() ?
137 policy
->cpuinfo
.max_freq
: policy
->cur
;
139 freq
= (freq
+ (freq
>> 2)) * util
/ max
;
141 if (freq
== sg_cpu
->cached_raw_freq
&& sg_policy
->next_freq
!= UINT_MAX
)
142 return sg_policy
->next_freq
;
143 sg_cpu
->cached_raw_freq
= freq
;
144 return cpufreq_driver_resolve_freq(policy
, freq
);
147 static void sugov_update_single(struct update_util_data
*hook
, u64 time
,
148 unsigned long util
, unsigned long max
)
150 struct sugov_cpu
*sg_cpu
= container_of(hook
, struct sugov_cpu
, update_util
);
151 struct sugov_policy
*sg_policy
= sg_cpu
->sg_policy
;
152 struct cpufreq_policy
*policy
= sg_policy
->policy
;
155 if (!sugov_should_update_freq(sg_policy
, time
))
158 next_f
= util
== ULONG_MAX
? policy
->cpuinfo
.max_freq
:
159 get_next_freq(sg_cpu
, util
, max
);
160 sugov_update_commit(sg_policy
, time
, next_f
);
163 static unsigned int sugov_next_freq_shared(struct sugov_cpu
*sg_cpu
,
164 unsigned long util
, unsigned long max
)
166 struct sugov_policy
*sg_policy
= sg_cpu
->sg_policy
;
167 struct cpufreq_policy
*policy
= sg_policy
->policy
;
168 unsigned int max_f
= policy
->cpuinfo
.max_freq
;
169 u64 last_freq_update_time
= sg_policy
->last_freq_update_time
;
172 if (util
== ULONG_MAX
)
175 for_each_cpu(j
, policy
->cpus
) {
176 struct sugov_cpu
*j_sg_cpu
;
177 unsigned long j_util
, j_max
;
180 if (j
== smp_processor_id())
183 j_sg_cpu
= &per_cpu(sugov_cpu
, j
);
185 * If the CPU utilization was last updated before the previous
186 * frequency update and the time elapsed between the last update
187 * of the CPU utilization and the last frequency update is long
188 * enough, don't take the CPU into account as it probably is
191 delta_ns
= last_freq_update_time
- j_sg_cpu
->last_update
;
192 if (delta_ns
> TICK_NSEC
)
195 j_util
= j_sg_cpu
->util
;
196 if (j_util
== ULONG_MAX
)
199 j_max
= j_sg_cpu
->max
;
200 if (j_util
* max
> j_max
* util
) {
206 return get_next_freq(sg_cpu
, util
, max
);
209 static void sugov_update_shared(struct update_util_data
*hook
, u64 time
,
210 unsigned long util
, unsigned long max
)
212 struct sugov_cpu
*sg_cpu
= container_of(hook
, struct sugov_cpu
, update_util
);
213 struct sugov_policy
*sg_policy
= sg_cpu
->sg_policy
;
216 raw_spin_lock(&sg_policy
->update_lock
);
220 sg_cpu
->last_update
= time
;
222 if (sugov_should_update_freq(sg_policy
, time
)) {
223 next_f
= sugov_next_freq_shared(sg_cpu
, util
, max
);
224 sugov_update_commit(sg_policy
, time
, next_f
);
227 raw_spin_unlock(&sg_policy
->update_lock
);
230 static void sugov_work(struct work_struct
*work
)
232 struct sugov_policy
*sg_policy
= container_of(work
, struct sugov_policy
, work
);
234 mutex_lock(&sg_policy
->work_lock
);
235 __cpufreq_driver_target(sg_policy
->policy
, sg_policy
->next_freq
,
237 mutex_unlock(&sg_policy
->work_lock
);
239 sg_policy
->work_in_progress
= false;
242 static void sugov_irq_work(struct irq_work
*irq_work
)
244 struct sugov_policy
*sg_policy
;
246 sg_policy
= container_of(irq_work
, struct sugov_policy
, irq_work
);
247 schedule_work_on(smp_processor_id(), &sg_policy
->work
);
250 /************************** sysfs interface ************************/
252 static struct sugov_tunables
*global_tunables
;
253 static DEFINE_MUTEX(global_tunables_lock
);
255 static inline struct sugov_tunables
*to_sugov_tunables(struct gov_attr_set
*attr_set
)
257 return container_of(attr_set
, struct sugov_tunables
, attr_set
);
260 static ssize_t
rate_limit_us_show(struct gov_attr_set
*attr_set
, char *buf
)
262 struct sugov_tunables
*tunables
= to_sugov_tunables(attr_set
);
264 return sprintf(buf
, "%u\n", tunables
->rate_limit_us
);
267 static ssize_t
rate_limit_us_store(struct gov_attr_set
*attr_set
, const char *buf
,
270 struct sugov_tunables
*tunables
= to_sugov_tunables(attr_set
);
271 struct sugov_policy
*sg_policy
;
272 unsigned int rate_limit_us
;
274 if (kstrtouint(buf
, 10, &rate_limit_us
))
277 tunables
->rate_limit_us
= rate_limit_us
;
279 list_for_each_entry(sg_policy
, &attr_set
->policy_list
, tunables_hook
)
280 sg_policy
->freq_update_delay_ns
= rate_limit_us
* NSEC_PER_USEC
;
285 static struct governor_attr rate_limit_us
= __ATTR_RW(rate_limit_us
);
287 static struct attribute
*sugov_attributes
[] = {
292 static struct kobj_type sugov_tunables_ktype
= {
293 .default_attrs
= sugov_attributes
,
294 .sysfs_ops
= &governor_sysfs_ops
,
297 /********************** cpufreq governor interface *********************/
299 static struct cpufreq_governor schedutil_gov
;
301 static struct sugov_policy
*sugov_policy_alloc(struct cpufreq_policy
*policy
)
303 struct sugov_policy
*sg_policy
;
305 sg_policy
= kzalloc(sizeof(*sg_policy
), GFP_KERNEL
);
309 sg_policy
->policy
= policy
;
310 init_irq_work(&sg_policy
->irq_work
, sugov_irq_work
);
311 INIT_WORK(&sg_policy
->work
, sugov_work
);
312 mutex_init(&sg_policy
->work_lock
);
313 raw_spin_lock_init(&sg_policy
->update_lock
);
317 static void sugov_policy_free(struct sugov_policy
*sg_policy
)
319 mutex_destroy(&sg_policy
->work_lock
);
323 static struct sugov_tunables
*sugov_tunables_alloc(struct sugov_policy
*sg_policy
)
325 struct sugov_tunables
*tunables
;
327 tunables
= kzalloc(sizeof(*tunables
), GFP_KERNEL
);
329 gov_attr_set_init(&tunables
->attr_set
, &sg_policy
->tunables_hook
);
330 if (!have_governor_per_policy())
331 global_tunables
= tunables
;
336 static void sugov_tunables_free(struct sugov_tunables
*tunables
)
338 if (!have_governor_per_policy())
339 global_tunables
= NULL
;
344 static int sugov_init(struct cpufreq_policy
*policy
)
346 struct sugov_policy
*sg_policy
;
347 struct sugov_tunables
*tunables
;
351 /* State should be equivalent to EXIT */
352 if (policy
->governor_data
)
355 sg_policy
= sugov_policy_alloc(policy
);
359 mutex_lock(&global_tunables_lock
);
361 if (global_tunables
) {
362 if (WARN_ON(have_governor_per_policy())) {
366 policy
->governor_data
= sg_policy
;
367 sg_policy
->tunables
= global_tunables
;
369 gov_attr_set_get(&global_tunables
->attr_set
, &sg_policy
->tunables_hook
);
373 tunables
= sugov_tunables_alloc(sg_policy
);
379 tunables
->rate_limit_us
= LATENCY_MULTIPLIER
;
380 lat
= policy
->cpuinfo
.transition_latency
/ NSEC_PER_USEC
;
382 tunables
->rate_limit_us
*= lat
;
384 policy
->governor_data
= sg_policy
;
385 sg_policy
->tunables
= tunables
;
387 ret
= kobject_init_and_add(&tunables
->attr_set
.kobj
, &sugov_tunables_ktype
,
388 get_governor_parent_kobj(policy
), "%s",
394 mutex_unlock(&global_tunables_lock
);
396 cpufreq_enable_fast_switch(policy
);
400 policy
->governor_data
= NULL
;
401 sugov_tunables_free(tunables
);
404 mutex_unlock(&global_tunables_lock
);
406 sugov_policy_free(sg_policy
);
407 pr_err("initialization failed (error %d)\n", ret
);
411 static void sugov_exit(struct cpufreq_policy
*policy
)
413 struct sugov_policy
*sg_policy
= policy
->governor_data
;
414 struct sugov_tunables
*tunables
= sg_policy
->tunables
;
417 cpufreq_disable_fast_switch(policy
);
419 mutex_lock(&global_tunables_lock
);
421 count
= gov_attr_set_put(&tunables
->attr_set
, &sg_policy
->tunables_hook
);
422 policy
->governor_data
= NULL
;
424 sugov_tunables_free(tunables
);
426 mutex_unlock(&global_tunables_lock
);
428 sugov_policy_free(sg_policy
);
431 static int sugov_start(struct cpufreq_policy
*policy
)
433 struct sugov_policy
*sg_policy
= policy
->governor_data
;
436 sg_policy
->freq_update_delay_ns
= sg_policy
->tunables
->rate_limit_us
* NSEC_PER_USEC
;
437 sg_policy
->last_freq_update_time
= 0;
438 sg_policy
->next_freq
= UINT_MAX
;
439 sg_policy
->work_in_progress
= false;
440 sg_policy
->need_freq_update
= false;
442 for_each_cpu(cpu
, policy
->cpus
) {
443 struct sugov_cpu
*sg_cpu
= &per_cpu(sugov_cpu
, cpu
);
445 sg_cpu
->sg_policy
= sg_policy
;
446 if (policy_is_shared(policy
)) {
447 sg_cpu
->util
= ULONG_MAX
;
449 sg_cpu
->last_update
= 0;
450 sg_cpu
->cached_raw_freq
= 0;
451 cpufreq_add_update_util_hook(cpu
, &sg_cpu
->update_util
,
452 sugov_update_shared
);
454 cpufreq_add_update_util_hook(cpu
, &sg_cpu
->update_util
,
455 sugov_update_single
);
461 static void sugov_stop(struct cpufreq_policy
*policy
)
463 struct sugov_policy
*sg_policy
= policy
->governor_data
;
466 for_each_cpu(cpu
, policy
->cpus
)
467 cpufreq_remove_update_util_hook(cpu
);
471 irq_work_sync(&sg_policy
->irq_work
);
472 cancel_work_sync(&sg_policy
->work
);
475 static void sugov_limits(struct cpufreq_policy
*policy
)
477 struct sugov_policy
*sg_policy
= policy
->governor_data
;
479 if (!policy
->fast_switch_enabled
) {
480 mutex_lock(&sg_policy
->work_lock
);
481 cpufreq_policy_apply_limits(policy
);
482 mutex_unlock(&sg_policy
->work_lock
);
485 sg_policy
->need_freq_update
= true;
488 static struct cpufreq_governor schedutil_gov
= {
490 .owner
= THIS_MODULE
,
493 .start
= sugov_start
,
495 .limits
= sugov_limits
,
498 static int __init
sugov_module_init(void)
500 return cpufreq_register_governor(&schedutil_gov
);
503 static void __exit
sugov_module_exit(void)
505 cpufreq_unregister_governor(&schedutil_gov
);
508 MODULE_AUTHOR("Rafael J. Wysocki <rafael.j.wysocki@intel.com>");
509 MODULE_DESCRIPTION("Utilization-based CPU frequency selection");
510 MODULE_LICENSE("GPL");
512 #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL
513 struct cpufreq_governor
*cpufreq_default_governor(void)
515 return &schedutil_gov
;
518 fs_initcall(sugov_module_init
);
520 module_init(sugov_module_init
);
522 module_exit(sugov_module_exit
);