blob: c4e928375c40d3ad3975267bfc4a6d51a969b9e9 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * linux/drivers/cpufreq/cpufreq.c
4 *
5 * Copyright (C) 2001 Russell King
6 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
7 * (C) 2013 Viresh Kumar <viresh.kumar@linaro.org>
8 *
9 * Oct 2005 - Ashok Raj <ashok.raj@intel.com>
10 * Added handling for CPU hotplug
11 * Feb 2006 - Jacob Shin <jacob.shin@amd.com>
12 * Fix handling for CPU hotplug -- affected CPUs
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000013 */
14
15#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16
17#include <linux/cpu.h>
18#include <linux/cpufreq.h>
David Brazdil0f672f62019-12-10 10:32:29 +000019#include <linux/cpu_cooling.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000020#include <linux/delay.h>
21#include <linux/device.h>
22#include <linux/init.h>
23#include <linux/kernel_stat.h>
24#include <linux/module.h>
25#include <linux/mutex.h>
David Brazdil0f672f62019-12-10 10:32:29 +000026#include <linux/pm_qos.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000027#include <linux/slab.h>
28#include <linux/suspend.h>
29#include <linux/syscore_ops.h>
30#include <linux/tick.h>
31#include <trace/events/power.h>
32
33static LIST_HEAD(cpufreq_policy_list);
34
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000035/* Macros to iterate over CPU policies */
36#define for_each_suitable_policy(__policy, __active) \
37 list_for_each_entry(__policy, &cpufreq_policy_list, policy_list) \
38 if ((__active) == !policy_is_inactive(__policy))
39
40#define for_each_active_policy(__policy) \
41 for_each_suitable_policy(__policy, true)
42#define for_each_inactive_policy(__policy) \
43 for_each_suitable_policy(__policy, false)
44
45#define for_each_policy(__policy) \
46 list_for_each_entry(__policy, &cpufreq_policy_list, policy_list)
47
48/* Iterate over governors */
49static LIST_HEAD(cpufreq_governor_list);
50#define for_each_governor(__governor) \
51 list_for_each_entry(__governor, &cpufreq_governor_list, governor_list)
52
53/**
54 * The "cpufreq driver" - the arch- or hardware-dependent low
55 * level driver of CPUFreq support, and its spinlock. This lock
56 * also protects the cpufreq_cpu_data array.
57 */
58static struct cpufreq_driver *cpufreq_driver;
59static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
60static DEFINE_RWLOCK(cpufreq_driver_lock);
61
62/* Flag to suspend/resume CPUFreq governors */
63static bool cpufreq_suspended;
64
65static inline bool has_target(void)
66{
67 return cpufreq_driver->target_index || cpufreq_driver->target;
68}
69
70/* internal prototypes */
71static unsigned int __cpufreq_get(struct cpufreq_policy *policy);
72static int cpufreq_init_governor(struct cpufreq_policy *policy);
73static void cpufreq_exit_governor(struct cpufreq_policy *policy);
74static int cpufreq_start_governor(struct cpufreq_policy *policy);
75static void cpufreq_stop_governor(struct cpufreq_policy *policy);
76static void cpufreq_governor_limits(struct cpufreq_policy *policy);
Olivier Deprez0e641232021-09-23 10:07:05 +020077static int cpufreq_set_policy(struct cpufreq_policy *policy,
78 struct cpufreq_governor *new_gov,
79 unsigned int new_pol);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000080
81/**
82 * Two notifier lists: the "policy" list is involved in the
83 * validation process for a new CPU frequency policy; the
84 * "transition" list for kernel code that needs to handle
85 * changes to devices when the CPU clock speed changes.
86 * The mutex locks both lists.
87 */
88static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
89SRCU_NOTIFIER_HEAD_STATIC(cpufreq_transition_notifier_list);
90
91static int off __read_mostly;
92static int cpufreq_disabled(void)
93{
94 return off;
95}
96void disable_cpufreq(void)
97{
98 off = 1;
99}
100static DEFINE_MUTEX(cpufreq_governor_mutex);
101
102bool have_governor_per_policy(void)
103{
104 return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
105}
106EXPORT_SYMBOL_GPL(have_governor_per_policy);
107
108struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
109{
110 if (have_governor_per_policy())
111 return &policy->kobj;
112 else
113 return cpufreq_global_kobject;
114}
115EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
116
117static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
118{
119 u64 idle_time;
120 u64 cur_wall_time;
121 u64 busy_time;
122
123 cur_wall_time = jiffies64_to_nsecs(get_jiffies_64());
124
125 busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
126 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
127 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
128 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
129 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
130 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
131
132 idle_time = cur_wall_time - busy_time;
133 if (wall)
134 *wall = div_u64(cur_wall_time, NSEC_PER_USEC);
135
136 return div_u64(idle_time, NSEC_PER_USEC);
137}
138
139u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
140{
141 u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
142
143 if (idle_time == -1ULL)
144 return get_cpu_idle_time_jiffy(cpu, wall);
145 else if (!io_busy)
146 idle_time += get_cpu_iowait_time_us(cpu, wall);
147
148 return idle_time;
149}
150EXPORT_SYMBOL_GPL(get_cpu_idle_time);
151
152__weak void arch_set_freq_scale(struct cpumask *cpus, unsigned long cur_freq,
153 unsigned long max_freq)
154{
155}
156EXPORT_SYMBOL_GPL(arch_set_freq_scale);
157
158/*
159 * This is a generic cpufreq init() routine which can be used by cpufreq
160 * drivers of SMP systems. It will do following:
161 * - validate & show freq table passed
162 * - set policies transition latency
163 * - policy->cpus with all possible CPUs
164 */
David Brazdil0f672f62019-12-10 10:32:29 +0000165void cpufreq_generic_init(struct cpufreq_policy *policy,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000166 struct cpufreq_frequency_table *table,
167 unsigned int transition_latency)
168{
169 policy->freq_table = table;
170 policy->cpuinfo.transition_latency = transition_latency;
171
172 /*
173 * The driver only supports the SMP configuration where all processors
174 * share the clock and voltage and clock.
175 */
176 cpumask_setall(policy->cpus);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000177}
178EXPORT_SYMBOL_GPL(cpufreq_generic_init);
179
180struct cpufreq_policy *cpufreq_cpu_get_raw(unsigned int cpu)
181{
182 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
183
184 return policy && cpumask_test_cpu(cpu, policy->cpus) ? policy : NULL;
185}
186EXPORT_SYMBOL_GPL(cpufreq_cpu_get_raw);
187
188unsigned int cpufreq_generic_get(unsigned int cpu)
189{
190 struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);
191
192 if (!policy || IS_ERR(policy->clk)) {
193 pr_err("%s: No %s associated to cpu: %d\n",
194 __func__, policy ? "clk" : "policy", cpu);
195 return 0;
196 }
197
198 return clk_get_rate(policy->clk) / 1000;
199}
200EXPORT_SYMBOL_GPL(cpufreq_generic_get);
201
202/**
David Brazdil0f672f62019-12-10 10:32:29 +0000203 * cpufreq_cpu_get - Return policy for a CPU and mark it as busy.
204 * @cpu: CPU to find the policy for.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000205 *
David Brazdil0f672f62019-12-10 10:32:29 +0000206 * Call cpufreq_cpu_get_raw() to obtain a cpufreq policy for @cpu and increment
207 * the kobject reference counter of that policy. Return a valid policy on
208 * success or NULL on failure.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000209 *
David Brazdil0f672f62019-12-10 10:32:29 +0000210 * The policy returned by this function has to be released with the help of
211 * cpufreq_cpu_put() to balance its kobject reference counter properly.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000212 */
213struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
214{
215 struct cpufreq_policy *policy = NULL;
216 unsigned long flags;
217
218 if (WARN_ON(cpu >= nr_cpu_ids))
219 return NULL;
220
221 /* get the cpufreq driver */
222 read_lock_irqsave(&cpufreq_driver_lock, flags);
223
224 if (cpufreq_driver) {
225 /* get the CPU */
226 policy = cpufreq_cpu_get_raw(cpu);
227 if (policy)
228 kobject_get(&policy->kobj);
229 }
230
231 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
232
233 return policy;
234}
235EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
236
237/**
David Brazdil0f672f62019-12-10 10:32:29 +0000238 * cpufreq_cpu_put - Decrement kobject usage counter for cpufreq policy.
239 * @policy: cpufreq policy returned by cpufreq_cpu_get().
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000240 */
241void cpufreq_cpu_put(struct cpufreq_policy *policy)
242{
243 kobject_put(&policy->kobj);
244}
245EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
246
David Brazdil0f672f62019-12-10 10:32:29 +0000247/**
248 * cpufreq_cpu_release - Unlock a policy and decrement its usage counter.
249 * @policy: cpufreq policy returned by cpufreq_cpu_acquire().
250 */
251void cpufreq_cpu_release(struct cpufreq_policy *policy)
252{
253 if (WARN_ON(!policy))
254 return;
255
256 lockdep_assert_held(&policy->rwsem);
257
258 up_write(&policy->rwsem);
259
260 cpufreq_cpu_put(policy);
261}
262
263/**
264 * cpufreq_cpu_acquire - Find policy for a CPU, mark it as busy and lock it.
265 * @cpu: CPU to find the policy for.
266 *
267 * Call cpufreq_cpu_get() to get a reference on the cpufreq policy for @cpu and
268 * if the policy returned by it is not NULL, acquire its rwsem for writing.
269 * Return the policy if it is active or release it and return NULL otherwise.
270 *
271 * The policy returned by this function has to be released with the help of
272 * cpufreq_cpu_release() in order to release its rwsem and balance its usage
273 * counter properly.
274 */
275struct cpufreq_policy *cpufreq_cpu_acquire(unsigned int cpu)
276{
277 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
278
279 if (!policy)
280 return NULL;
281
282 down_write(&policy->rwsem);
283
284 if (policy_is_inactive(policy)) {
285 cpufreq_cpu_release(policy);
286 return NULL;
287 }
288
289 return policy;
290}
291
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000292/*********************************************************************
293 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
294 *********************************************************************/
295
296/**
297 * adjust_jiffies - adjust the system "loops_per_jiffy"
298 *
299 * This function alters the system "loops_per_jiffy" for the clock
300 * speed change. Note that loops_per_jiffy cannot be updated on SMP
301 * systems as each CPU might be scaled differently. So, use the arch
302 * per-CPU loops_per_jiffy value wherever possible.
303 */
304static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
305{
306#ifndef CONFIG_SMP
307 static unsigned long l_p_j_ref;
308 static unsigned int l_p_j_ref_freq;
309
310 if (ci->flags & CPUFREQ_CONST_LOOPS)
311 return;
312
313 if (!l_p_j_ref_freq) {
314 l_p_j_ref = loops_per_jiffy;
315 l_p_j_ref_freq = ci->old;
316 pr_debug("saving %lu as reference value for loops_per_jiffy; freq is %u kHz\n",
317 l_p_j_ref, l_p_j_ref_freq);
318 }
319 if (val == CPUFREQ_POSTCHANGE && ci->old != ci->new) {
320 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
321 ci->new);
322 pr_debug("scaling loops_per_jiffy to %lu for frequency %u kHz\n",
323 loops_per_jiffy, ci->new);
324 }
325#endif
326}
327
328/**
329 * cpufreq_notify_transition - Notify frequency transition and adjust_jiffies.
330 * @policy: cpufreq policy to enable fast frequency switching for.
331 * @freqs: contain details of the frequency update.
332 * @state: set to CPUFREQ_PRECHANGE or CPUFREQ_POSTCHANGE.
333 *
334 * This function calls the transition notifiers and the "adjust_jiffies"
335 * function. It is called twice on all CPU frequency changes that have
336 * external effects.
337 */
338static void cpufreq_notify_transition(struct cpufreq_policy *policy,
339 struct cpufreq_freqs *freqs,
340 unsigned int state)
341{
David Brazdil0f672f62019-12-10 10:32:29 +0000342 int cpu;
343
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000344 BUG_ON(irqs_disabled());
345
346 if (cpufreq_disabled())
347 return;
348
David Brazdil0f672f62019-12-10 10:32:29 +0000349 freqs->policy = policy;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000350 freqs->flags = cpufreq_driver->flags;
351 pr_debug("notification %u of frequency transition to %u kHz\n",
352 state, freqs->new);
353
354 switch (state) {
355 case CPUFREQ_PRECHANGE:
356 /*
357 * Detect if the driver reported a value as "old frequency"
358 * which is not equal to what the cpufreq core thinks is
359 * "old frequency".
360 */
David Brazdil0f672f62019-12-10 10:32:29 +0000361 if (policy->cur && policy->cur != freqs->old) {
362 pr_debug("Warning: CPU frequency is %u, cpufreq assumed %u kHz\n",
363 freqs->old, policy->cur);
364 freqs->old = policy->cur;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000365 }
366
David Brazdil0f672f62019-12-10 10:32:29 +0000367 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
368 CPUFREQ_PRECHANGE, freqs);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000369
370 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
371 break;
372
373 case CPUFREQ_POSTCHANGE:
374 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
375 pr_debug("FREQ: %u - CPUs: %*pbl\n", freqs->new,
376 cpumask_pr_args(policy->cpus));
377
David Brazdil0f672f62019-12-10 10:32:29 +0000378 for_each_cpu(cpu, policy->cpus)
379 trace_cpu_frequency(freqs->new, cpu);
380
381 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
382 CPUFREQ_POSTCHANGE, freqs);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000383
384 cpufreq_stats_record_transition(policy, freqs->new);
385 policy->cur = freqs->new;
386 }
387}
388
389/* Do post notifications when there are chances that transition has failed */
390static void cpufreq_notify_post_transition(struct cpufreq_policy *policy,
391 struct cpufreq_freqs *freqs, int transition_failed)
392{
393 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
394 if (!transition_failed)
395 return;
396
397 swap(freqs->old, freqs->new);
398 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
399 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
400}
401
402void cpufreq_freq_transition_begin(struct cpufreq_policy *policy,
403 struct cpufreq_freqs *freqs)
404{
405
406 /*
407 * Catch double invocations of _begin() which lead to self-deadlock.
408 * ASYNC_NOTIFICATION drivers are left out because the cpufreq core
409 * doesn't invoke _begin() on their behalf, and hence the chances of
410 * double invocations are very low. Moreover, there are scenarios
411 * where these checks can emit false-positive warnings in these
412 * drivers; so we avoid that by skipping them altogether.
413 */
414 WARN_ON(!(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION)
415 && current == policy->transition_task);
416
417wait:
418 wait_event(policy->transition_wait, !policy->transition_ongoing);
419
420 spin_lock(&policy->transition_lock);
421
422 if (unlikely(policy->transition_ongoing)) {
423 spin_unlock(&policy->transition_lock);
424 goto wait;
425 }
426
427 policy->transition_ongoing = true;
428 policy->transition_task = current;
429
430 spin_unlock(&policy->transition_lock);
431
432 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
433}
434EXPORT_SYMBOL_GPL(cpufreq_freq_transition_begin);
435
436void cpufreq_freq_transition_end(struct cpufreq_policy *policy,
437 struct cpufreq_freqs *freqs, int transition_failed)
438{
David Brazdil0f672f62019-12-10 10:32:29 +0000439 if (WARN_ON(!policy->transition_ongoing))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000440 return;
441
442 cpufreq_notify_post_transition(policy, freqs, transition_failed);
443
444 policy->transition_ongoing = false;
445 policy->transition_task = NULL;
446
447 wake_up(&policy->transition_wait);
448}
449EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end);
450
451/*
452 * Fast frequency switching status count. Positive means "enabled", negative
453 * means "disabled" and 0 means "not decided yet".
454 */
455static int cpufreq_fast_switch_count;
456static DEFINE_MUTEX(cpufreq_fast_switch_lock);
457
458static void cpufreq_list_transition_notifiers(void)
459{
460 struct notifier_block *nb;
461
462 pr_info("Registered transition notifiers:\n");
463
464 mutex_lock(&cpufreq_transition_notifier_list.mutex);
465
466 for (nb = cpufreq_transition_notifier_list.head; nb; nb = nb->next)
David Brazdil0f672f62019-12-10 10:32:29 +0000467 pr_info("%pS\n", nb->notifier_call);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000468
469 mutex_unlock(&cpufreq_transition_notifier_list.mutex);
470}
471
472/**
473 * cpufreq_enable_fast_switch - Enable fast frequency switching for policy.
474 * @policy: cpufreq policy to enable fast frequency switching for.
475 *
476 * Try to enable fast frequency switching for @policy.
477 *
478 * The attempt will fail if there is at least one transition notifier registered
479 * at this point, as fast frequency switching is quite fundamentally at odds
480 * with transition notifiers. Thus if successful, it will make registration of
481 * transition notifiers fail going forward.
482 */
483void cpufreq_enable_fast_switch(struct cpufreq_policy *policy)
484{
485 lockdep_assert_held(&policy->rwsem);
486
487 if (!policy->fast_switch_possible)
488 return;
489
490 mutex_lock(&cpufreq_fast_switch_lock);
491 if (cpufreq_fast_switch_count >= 0) {
492 cpufreq_fast_switch_count++;
493 policy->fast_switch_enabled = true;
494 } else {
495 pr_warn("CPU%u: Fast frequency switching not enabled\n",
496 policy->cpu);
497 cpufreq_list_transition_notifiers();
498 }
499 mutex_unlock(&cpufreq_fast_switch_lock);
500}
501EXPORT_SYMBOL_GPL(cpufreq_enable_fast_switch);
502
503/**
504 * cpufreq_disable_fast_switch - Disable fast frequency switching for policy.
505 * @policy: cpufreq policy to disable fast frequency switching for.
506 */
507void cpufreq_disable_fast_switch(struct cpufreq_policy *policy)
508{
509 mutex_lock(&cpufreq_fast_switch_lock);
510 if (policy->fast_switch_enabled) {
511 policy->fast_switch_enabled = false;
512 if (!WARN_ON(cpufreq_fast_switch_count <= 0))
513 cpufreq_fast_switch_count--;
514 }
515 mutex_unlock(&cpufreq_fast_switch_lock);
516}
517EXPORT_SYMBOL_GPL(cpufreq_disable_fast_switch);
518
519/**
520 * cpufreq_driver_resolve_freq - Map a target frequency to a driver-supported
521 * one.
522 * @target_freq: target frequency to resolve.
523 *
524 * The target to driver frequency mapping is cached in the policy.
525 *
526 * Return: Lowest driver-supported frequency greater than or equal to the
527 * given target_freq, subject to policy (min/max) and driver limitations.
528 */
529unsigned int cpufreq_driver_resolve_freq(struct cpufreq_policy *policy,
530 unsigned int target_freq)
531{
532 target_freq = clamp_val(target_freq, policy->min, policy->max);
533 policy->cached_target_freq = target_freq;
534
535 if (cpufreq_driver->target_index) {
536 int idx;
537
538 idx = cpufreq_frequency_table_target(policy, target_freq,
539 CPUFREQ_RELATION_L);
540 policy->cached_resolved_idx = idx;
541 return policy->freq_table[idx].frequency;
542 }
543
544 if (cpufreq_driver->resolve_freq)
545 return cpufreq_driver->resolve_freq(policy, target_freq);
546
547 return target_freq;
548}
549EXPORT_SYMBOL_GPL(cpufreq_driver_resolve_freq);
550
551unsigned int cpufreq_policy_transition_delay_us(struct cpufreq_policy *policy)
552{
553 unsigned int latency;
554
555 if (policy->transition_delay_us)
556 return policy->transition_delay_us;
557
558 latency = policy->cpuinfo.transition_latency / NSEC_PER_USEC;
559 if (latency) {
560 /*
561 * For platforms that can change the frequency very fast (< 10
562 * us), the above formula gives a decent transition delay. But
563 * for platforms where transition_latency is in milliseconds, it
564 * ends up giving unrealistic values.
565 *
566 * Cap the default transition delay to 10 ms, which seems to be
567 * a reasonable amount of time after which we should reevaluate
568 * the frequency.
569 */
570 return min(latency * LATENCY_MULTIPLIER, (unsigned int)10000);
571 }
572
573 return LATENCY_MULTIPLIER;
574}
575EXPORT_SYMBOL_GPL(cpufreq_policy_transition_delay_us);
576
577/*********************************************************************
578 * SYSFS INTERFACE *
579 *********************************************************************/
580static ssize_t show_boost(struct kobject *kobj,
David Brazdil0f672f62019-12-10 10:32:29 +0000581 struct kobj_attribute *attr, char *buf)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000582{
583 return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
584}
585
David Brazdil0f672f62019-12-10 10:32:29 +0000586static ssize_t store_boost(struct kobject *kobj, struct kobj_attribute *attr,
587 const char *buf, size_t count)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000588{
589 int ret, enable;
590
591 ret = sscanf(buf, "%d", &enable);
592 if (ret != 1 || enable < 0 || enable > 1)
593 return -EINVAL;
594
595 if (cpufreq_boost_trigger_state(enable)) {
596 pr_err("%s: Cannot %s BOOST!\n",
597 __func__, enable ? "enable" : "disable");
598 return -EINVAL;
599 }
600
601 pr_debug("%s: cpufreq BOOST %s\n",
602 __func__, enable ? "enabled" : "disabled");
603
604 return count;
605}
606define_one_global_rw(boost);
607
608static struct cpufreq_governor *find_governor(const char *str_governor)
609{
610 struct cpufreq_governor *t;
611
612 for_each_governor(t)
613 if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN))
614 return t;
615
616 return NULL;
617}
618
Olivier Deprez0e641232021-09-23 10:07:05 +0200619static struct cpufreq_governor *get_governor(const char *str_governor)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000620{
David Brazdil0f672f62019-12-10 10:32:29 +0000621 struct cpufreq_governor *t;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000622
David Brazdil0f672f62019-12-10 10:32:29 +0000623 mutex_lock(&cpufreq_governor_mutex);
David Brazdil0f672f62019-12-10 10:32:29 +0000624 t = find_governor(str_governor);
Olivier Deprez0e641232021-09-23 10:07:05 +0200625 if (!t)
626 goto unlock;
David Brazdil0f672f62019-12-10 10:32:29 +0000627
Olivier Deprez0e641232021-09-23 10:07:05 +0200628 if (!try_module_get(t->owner))
David Brazdil0f672f62019-12-10 10:32:29 +0000629 t = NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000630
Olivier Deprez0e641232021-09-23 10:07:05 +0200631unlock:
David Brazdil0f672f62019-12-10 10:32:29 +0000632 mutex_unlock(&cpufreq_governor_mutex);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000633
Olivier Deprez0e641232021-09-23 10:07:05 +0200634 return t;
635}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000636
Olivier Deprez0e641232021-09-23 10:07:05 +0200637static unsigned int cpufreq_parse_policy(char *str_governor)
638{
639 if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN))
640 return CPUFREQ_POLICY_PERFORMANCE;
641
642 if (!strncasecmp(str_governor, "powersave", CPUFREQ_NAME_LEN))
643 return CPUFREQ_POLICY_POWERSAVE;
644
645 return CPUFREQ_POLICY_UNKNOWN;
646}
647
648/**
649 * cpufreq_parse_governor - parse a governor string only for has_target()
650 * @str_governor: Governor name.
651 */
652static struct cpufreq_governor *cpufreq_parse_governor(char *str_governor)
653{
654 struct cpufreq_governor *t;
655
656 t = get_governor(str_governor);
657 if (t)
658 return t;
659
660 if (request_module("cpufreq_%s", str_governor))
661 return NULL;
662
663 return get_governor(str_governor);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000664}
665
666/**
667 * cpufreq_per_cpu_attr_read() / show_##file_name() -
668 * print out cpufreq information
669 *
670 * Write out information from cpufreq_driver->policy[cpu]; object must be
671 * "unsigned int".
672 */
673
674#define show_one(file_name, object) \
675static ssize_t show_##file_name \
676(struct cpufreq_policy *policy, char *buf) \
677{ \
678 return sprintf(buf, "%u\n", policy->object); \
679}
680
681show_one(cpuinfo_min_freq, cpuinfo.min_freq);
682show_one(cpuinfo_max_freq, cpuinfo.max_freq);
683show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
684show_one(scaling_min_freq, min);
685show_one(scaling_max_freq, max);
686
687__weak unsigned int arch_freq_get_on_cpu(int cpu)
688{
689 return 0;
690}
691
692static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf)
693{
694 ssize_t ret;
695 unsigned int freq;
696
697 freq = arch_freq_get_on_cpu(policy->cpu);
698 if (freq)
699 ret = sprintf(buf, "%u\n", freq);
700 else if (cpufreq_driver && cpufreq_driver->setpolicy &&
701 cpufreq_driver->get)
702 ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu));
703 else
704 ret = sprintf(buf, "%u\n", policy->cur);
705 return ret;
706}
707
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000708/**
709 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
710 */
711#define store_one(file_name, object) \
712static ssize_t store_##file_name \
713(struct cpufreq_policy *policy, const char *buf, size_t count) \
714{ \
David Brazdil0f672f62019-12-10 10:32:29 +0000715 unsigned long val; \
716 int ret; \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000717 \
David Brazdil0f672f62019-12-10 10:32:29 +0000718 ret = sscanf(buf, "%lu", &val); \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000719 if (ret != 1) \
720 return -EINVAL; \
721 \
David Brazdil0f672f62019-12-10 10:32:29 +0000722 ret = freq_qos_update_request(policy->object##_freq_req, val);\
723 return ret >= 0 ? count : ret; \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000724}
725
726store_one(scaling_min_freq, min);
727store_one(scaling_max_freq, max);
728
729/**
730 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
731 */
732static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
733 char *buf)
734{
735 unsigned int cur_freq = __cpufreq_get(policy);
736
737 if (cur_freq)
738 return sprintf(buf, "%u\n", cur_freq);
739
740 return sprintf(buf, "<unknown>\n");
741}
742
743/**
744 * show_scaling_governor - show the current policy for the specified CPU
745 */
746static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
747{
748 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
749 return sprintf(buf, "powersave\n");
750 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
751 return sprintf(buf, "performance\n");
752 else if (policy->governor)
753 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
754 policy->governor->name);
755 return -EINVAL;
756}
757
758/**
759 * store_scaling_governor - store policy for the specified CPU
760 */
761static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
762 const char *buf, size_t count)
763{
Olivier Deprez0e641232021-09-23 10:07:05 +0200764 char str_governor[16];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000765 int ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000766
767 ret = sscanf(buf, "%15s", str_governor);
768 if (ret != 1)
769 return -EINVAL;
770
David Brazdil0f672f62019-12-10 10:32:29 +0000771 if (cpufreq_driver->setpolicy) {
Olivier Deprez0e641232021-09-23 10:07:05 +0200772 unsigned int new_pol;
773
774 new_pol = cpufreq_parse_policy(str_governor);
775 if (!new_pol)
David Brazdil0f672f62019-12-10 10:32:29 +0000776 return -EINVAL;
Olivier Deprez0e641232021-09-23 10:07:05 +0200777
778 ret = cpufreq_set_policy(policy, NULL, new_pol);
David Brazdil0f672f62019-12-10 10:32:29 +0000779 } else {
Olivier Deprez0e641232021-09-23 10:07:05 +0200780 struct cpufreq_governor *new_gov;
781
782 new_gov = cpufreq_parse_governor(str_governor);
783 if (!new_gov)
David Brazdil0f672f62019-12-10 10:32:29 +0000784 return -EINVAL;
Olivier Deprez0e641232021-09-23 10:07:05 +0200785
786 ret = cpufreq_set_policy(policy, new_gov,
787 CPUFREQ_POLICY_UNKNOWN);
788
789 module_put(new_gov->owner);
David Brazdil0f672f62019-12-10 10:32:29 +0000790 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000791
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000792 return ret ? ret : count;
793}
794
795/**
796 * show_scaling_driver - show the cpufreq driver currently loaded
797 */
798static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
799{
800 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
801}
802
803/**
804 * show_scaling_available_governors - show the available CPUfreq governors
805 */
806static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
807 char *buf)
808{
809 ssize_t i = 0;
810 struct cpufreq_governor *t;
811
812 if (!has_target()) {
813 i += sprintf(buf, "performance powersave");
814 goto out;
815 }
816
Olivier Deprez0e641232021-09-23 10:07:05 +0200817 mutex_lock(&cpufreq_governor_mutex);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000818 for_each_governor(t) {
819 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
820 - (CPUFREQ_NAME_LEN + 2)))
Olivier Deprez0e641232021-09-23 10:07:05 +0200821 break;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000822 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
823 }
Olivier Deprez0e641232021-09-23 10:07:05 +0200824 mutex_unlock(&cpufreq_governor_mutex);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000825out:
826 i += sprintf(&buf[i], "\n");
827 return i;
828}
829
830ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
831{
832 ssize_t i = 0;
833 unsigned int cpu;
834
835 for_each_cpu(cpu, mask) {
836 if (i)
837 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
838 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
839 if (i >= (PAGE_SIZE - 5))
840 break;
841 }
842 i += sprintf(&buf[i], "\n");
843 return i;
844}
845EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
846
847/**
848 * show_related_cpus - show the CPUs affected by each transition even if
849 * hw coordination is in use
850 */
851static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
852{
853 return cpufreq_show_cpus(policy->related_cpus, buf);
854}
855
856/**
857 * show_affected_cpus - show the CPUs affected by each transition
858 */
859static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
860{
861 return cpufreq_show_cpus(policy->cpus, buf);
862}
863
864static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
865 const char *buf, size_t count)
866{
867 unsigned int freq = 0;
868 unsigned int ret;
869
870 if (!policy->governor || !policy->governor->store_setspeed)
871 return -EINVAL;
872
873 ret = sscanf(buf, "%u", &freq);
874 if (ret != 1)
875 return -EINVAL;
876
877 policy->governor->store_setspeed(policy, freq);
878
879 return count;
880}
881
882static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
883{
884 if (!policy->governor || !policy->governor->show_setspeed)
885 return sprintf(buf, "<unsupported>\n");
886
887 return policy->governor->show_setspeed(policy, buf);
888}
889
890/**
891 * show_bios_limit - show the current cpufreq HW/BIOS limitation
892 */
893static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
894{
895 unsigned int limit;
896 int ret;
David Brazdil0f672f62019-12-10 10:32:29 +0000897 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
898 if (!ret)
899 return sprintf(buf, "%u\n", limit);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000900 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
901}
902
903cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
904cpufreq_freq_attr_ro(cpuinfo_min_freq);
905cpufreq_freq_attr_ro(cpuinfo_max_freq);
906cpufreq_freq_attr_ro(cpuinfo_transition_latency);
907cpufreq_freq_attr_ro(scaling_available_governors);
908cpufreq_freq_attr_ro(scaling_driver);
909cpufreq_freq_attr_ro(scaling_cur_freq);
910cpufreq_freq_attr_ro(bios_limit);
911cpufreq_freq_attr_ro(related_cpus);
912cpufreq_freq_attr_ro(affected_cpus);
913cpufreq_freq_attr_rw(scaling_min_freq);
914cpufreq_freq_attr_rw(scaling_max_freq);
915cpufreq_freq_attr_rw(scaling_governor);
916cpufreq_freq_attr_rw(scaling_setspeed);
917
918static struct attribute *default_attrs[] = {
919 &cpuinfo_min_freq.attr,
920 &cpuinfo_max_freq.attr,
921 &cpuinfo_transition_latency.attr,
922 &scaling_min_freq.attr,
923 &scaling_max_freq.attr,
924 &affected_cpus.attr,
925 &related_cpus.attr,
926 &scaling_governor.attr,
927 &scaling_driver.attr,
928 &scaling_available_governors.attr,
929 &scaling_setspeed.attr,
930 NULL
931};
932
933#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
934#define to_attr(a) container_of(a, struct freq_attr, attr)
935
936static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
937{
938 struct cpufreq_policy *policy = to_policy(kobj);
939 struct freq_attr *fattr = to_attr(attr);
940 ssize_t ret;
941
David Brazdil0f672f62019-12-10 10:32:29 +0000942 if (!fattr->show)
943 return -EIO;
944
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000945 down_read(&policy->rwsem);
946 ret = fattr->show(policy, buf);
947 up_read(&policy->rwsem);
948
949 return ret;
950}
951
952static ssize_t store(struct kobject *kobj, struct attribute *attr,
953 const char *buf, size_t count)
954{
955 struct cpufreq_policy *policy = to_policy(kobj);
956 struct freq_attr *fattr = to_attr(attr);
957 ssize_t ret = -EINVAL;
958
David Brazdil0f672f62019-12-10 10:32:29 +0000959 if (!fattr->store)
960 return -EIO;
961
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000962 /*
963 * cpus_read_trylock() is used here to work around a circular lock
964 * dependency problem with respect to the cpufreq_register_driver().
965 */
966 if (!cpus_read_trylock())
967 return -EBUSY;
968
969 if (cpu_online(policy->cpu)) {
970 down_write(&policy->rwsem);
971 ret = fattr->store(policy, buf, count);
972 up_write(&policy->rwsem);
973 }
974
975 cpus_read_unlock();
976
977 return ret;
978}
979
980static void cpufreq_sysfs_release(struct kobject *kobj)
981{
982 struct cpufreq_policy *policy = to_policy(kobj);
983 pr_debug("last reference is dropped\n");
984 complete(&policy->kobj_unregister);
985}
986
987static const struct sysfs_ops sysfs_ops = {
988 .show = show,
989 .store = store,
990};
991
992static struct kobj_type ktype_cpufreq = {
993 .sysfs_ops = &sysfs_ops,
994 .default_attrs = default_attrs,
995 .release = cpufreq_sysfs_release,
996};
997
998static void add_cpu_dev_symlink(struct cpufreq_policy *policy, unsigned int cpu)
999{
1000 struct device *dev = get_cpu_device(cpu);
1001
David Brazdil0f672f62019-12-10 10:32:29 +00001002 if (unlikely(!dev))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001003 return;
1004
1005 if (cpumask_test_and_set_cpu(cpu, policy->real_cpus))
1006 return;
1007
1008 dev_dbg(dev, "%s: Adding symlink\n", __func__);
1009 if (sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq"))
1010 dev_err(dev, "cpufreq symlink creation failed\n");
1011}
1012
1013static void remove_cpu_dev_symlink(struct cpufreq_policy *policy,
1014 struct device *dev)
1015{
1016 dev_dbg(dev, "%s: Removing symlink\n", __func__);
1017 sysfs_remove_link(&dev->kobj, "cpufreq");
1018}
1019
1020static int cpufreq_add_dev_interface(struct cpufreq_policy *policy)
1021{
1022 struct freq_attr **drv_attr;
1023 int ret = 0;
1024
1025 /* set up files for this cpu device */
1026 drv_attr = cpufreq_driver->attr;
1027 while (drv_attr && *drv_attr) {
1028 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
1029 if (ret)
1030 return ret;
1031 drv_attr++;
1032 }
1033 if (cpufreq_driver->get) {
1034 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
1035 if (ret)
1036 return ret;
1037 }
1038
1039 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
1040 if (ret)
1041 return ret;
1042
1043 if (cpufreq_driver->bios_limit) {
1044 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
1045 if (ret)
1046 return ret;
1047 }
1048
1049 return 0;
1050}
1051
1052__weak struct cpufreq_governor *cpufreq_default_governor(void)
1053{
1054 return NULL;
1055}
1056
1057static int cpufreq_init_policy(struct cpufreq_policy *policy)
1058{
Olivier Deprez0e641232021-09-23 10:07:05 +02001059 struct cpufreq_governor *def_gov = cpufreq_default_governor();
1060 struct cpufreq_governor *gov = NULL;
1061 unsigned int pol = CPUFREQ_POLICY_UNKNOWN;
1062 int ret;
David Brazdil0f672f62019-12-10 10:32:29 +00001063
1064 if (has_target()) {
Olivier Deprez0e641232021-09-23 10:07:05 +02001065 /* Update policy governor to the one used before hotplug. */
1066 gov = get_governor(policy->last_governor);
David Brazdil0f672f62019-12-10 10:32:29 +00001067 if (gov) {
1068 pr_debug("Restoring governor %s for cpu %d\n",
Olivier Deprez0e641232021-09-23 10:07:05 +02001069 policy->governor->name, policy->cpu);
1070 } else if (def_gov) {
David Brazdil0f672f62019-12-10 10:32:29 +00001071 gov = def_gov;
Olivier Deprez0e641232021-09-23 10:07:05 +02001072 __module_get(gov->owner);
1073 } else {
1074 return -ENODATA;
David Brazdil0f672f62019-12-10 10:32:29 +00001075 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001076 } else {
David Brazdil0f672f62019-12-10 10:32:29 +00001077 /* Use the default policy if there is no last_policy. */
1078 if (policy->last_policy) {
Olivier Deprez0e641232021-09-23 10:07:05 +02001079 pol = policy->last_policy;
1080 } else if (def_gov) {
1081 pol = cpufreq_parse_policy(def_gov->name);
1082 /*
1083 * In case the default governor is neiter "performance"
1084 * nor "powersave", fall back to the initial policy
1085 * value set by the driver.
1086 */
1087 if (pol == CPUFREQ_POLICY_UNKNOWN)
1088 pol = policy->policy;
David Brazdil0f672f62019-12-10 10:32:29 +00001089 }
Olivier Deprez0e641232021-09-23 10:07:05 +02001090 if (pol != CPUFREQ_POLICY_PERFORMANCE &&
1091 pol != CPUFREQ_POLICY_POWERSAVE)
1092 return -ENODATA;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001093 }
David Brazdil0f672f62019-12-10 10:32:29 +00001094
Olivier Deprez0e641232021-09-23 10:07:05 +02001095 ret = cpufreq_set_policy(policy, gov, pol);
1096 if (gov)
1097 module_put(gov->owner);
1098
1099 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001100}
1101
1102static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
1103{
1104 int ret = 0;
1105
1106 /* Has this CPU been taken care of already? */
1107 if (cpumask_test_cpu(cpu, policy->cpus))
1108 return 0;
1109
1110 down_write(&policy->rwsem);
1111 if (has_target())
1112 cpufreq_stop_governor(policy);
1113
1114 cpumask_set_cpu(cpu, policy->cpus);
1115
1116 if (has_target()) {
1117 ret = cpufreq_start_governor(policy);
1118 if (ret)
1119 pr_err("%s: Failed to start governor\n", __func__);
1120 }
1121 up_write(&policy->rwsem);
1122 return ret;
1123}
1124
David Brazdil0f672f62019-12-10 10:32:29 +00001125void refresh_frequency_limits(struct cpufreq_policy *policy)
1126{
David Brazdil0f672f62019-12-10 10:32:29 +00001127 if (!policy_is_inactive(policy)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001128 pr_debug("updating policy for CPU %u\n", policy->cpu);
1129
Olivier Deprez0e641232021-09-23 10:07:05 +02001130 cpufreq_set_policy(policy, policy->governor, policy->policy);
David Brazdil0f672f62019-12-10 10:32:29 +00001131 }
1132}
1133EXPORT_SYMBOL(refresh_frequency_limits);
1134
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001135static void handle_update(struct work_struct *work)
1136{
1137 struct cpufreq_policy *policy =
1138 container_of(work, struct cpufreq_policy, update);
David Brazdil0f672f62019-12-10 10:32:29 +00001139
1140 pr_debug("handle_update for cpu %u called\n", policy->cpu);
1141 down_write(&policy->rwsem);
1142 refresh_frequency_limits(policy);
1143 up_write(&policy->rwsem);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001144}
1145
David Brazdil0f672f62019-12-10 10:32:29 +00001146static int cpufreq_notifier_min(struct notifier_block *nb, unsigned long freq,
1147 void *data)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001148{
David Brazdil0f672f62019-12-10 10:32:29 +00001149 struct cpufreq_policy *policy = container_of(nb, struct cpufreq_policy, nb_min);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001150
David Brazdil0f672f62019-12-10 10:32:29 +00001151 schedule_work(&policy->update);
1152 return 0;
1153}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001154
David Brazdil0f672f62019-12-10 10:32:29 +00001155static int cpufreq_notifier_max(struct notifier_block *nb, unsigned long freq,
1156 void *data)
1157{
1158 struct cpufreq_policy *policy = container_of(nb, struct cpufreq_policy, nb_max);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001159
David Brazdil0f672f62019-12-10 10:32:29 +00001160 schedule_work(&policy->update);
1161 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001162}
1163
1164static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy)
1165{
1166 struct kobject *kobj;
1167 struct completion *cmp;
1168
1169 down_write(&policy->rwsem);
1170 cpufreq_stats_free_table(policy);
1171 kobj = &policy->kobj;
1172 cmp = &policy->kobj_unregister;
1173 up_write(&policy->rwsem);
1174 kobject_put(kobj);
1175
1176 /*
1177 * We need to make sure that the underlying kobj is
1178 * actually not referenced anymore by anybody before we
1179 * proceed with unloading.
1180 */
1181 pr_debug("waiting for dropping of refcount\n");
1182 wait_for_completion(cmp);
1183 pr_debug("wait complete\n");
1184}
1185
David Brazdil0f672f62019-12-10 10:32:29 +00001186static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu)
1187{
1188 struct cpufreq_policy *policy;
1189 struct device *dev = get_cpu_device(cpu);
1190 int ret;
1191
1192 if (!dev)
1193 return NULL;
1194
1195 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
1196 if (!policy)
1197 return NULL;
1198
1199 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
1200 goto err_free_policy;
1201
1202 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
1203 goto err_free_cpumask;
1204
1205 if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL))
1206 goto err_free_rcpumask;
1207
1208 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
1209 cpufreq_global_kobject, "policy%u", cpu);
1210 if (ret) {
1211 dev_err(dev, "%s: failed to init policy->kobj: %d\n", __func__, ret);
1212 /*
1213 * The entire policy object will be freed below, but the extra
1214 * memory allocated for the kobject name needs to be freed by
1215 * releasing the kobject.
1216 */
1217 kobject_put(&policy->kobj);
1218 goto err_free_real_cpus;
1219 }
1220
1221 freq_constraints_init(&policy->constraints);
1222
1223 policy->nb_min.notifier_call = cpufreq_notifier_min;
1224 policy->nb_max.notifier_call = cpufreq_notifier_max;
1225
1226 ret = freq_qos_add_notifier(&policy->constraints, FREQ_QOS_MIN,
1227 &policy->nb_min);
1228 if (ret) {
1229 dev_err(dev, "Failed to register MIN QoS notifier: %d (%*pbl)\n",
1230 ret, cpumask_pr_args(policy->cpus));
1231 goto err_kobj_remove;
1232 }
1233
1234 ret = freq_qos_add_notifier(&policy->constraints, FREQ_QOS_MAX,
1235 &policy->nb_max);
1236 if (ret) {
1237 dev_err(dev, "Failed to register MAX QoS notifier: %d (%*pbl)\n",
1238 ret, cpumask_pr_args(policy->cpus));
1239 goto err_min_qos_notifier;
1240 }
1241
1242 INIT_LIST_HEAD(&policy->policy_list);
1243 init_rwsem(&policy->rwsem);
1244 spin_lock_init(&policy->transition_lock);
1245 init_waitqueue_head(&policy->transition_wait);
1246 init_completion(&policy->kobj_unregister);
1247 INIT_WORK(&policy->update, handle_update);
1248
1249 policy->cpu = cpu;
1250 return policy;
1251
1252err_min_qos_notifier:
1253 freq_qos_remove_notifier(&policy->constraints, FREQ_QOS_MIN,
1254 &policy->nb_min);
1255err_kobj_remove:
1256 cpufreq_policy_put_kobj(policy);
1257err_free_real_cpus:
1258 free_cpumask_var(policy->real_cpus);
1259err_free_rcpumask:
1260 free_cpumask_var(policy->related_cpus);
1261err_free_cpumask:
1262 free_cpumask_var(policy->cpus);
1263err_free_policy:
1264 kfree(policy);
1265
1266 return NULL;
1267}
1268
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001269static void cpufreq_policy_free(struct cpufreq_policy *policy)
1270{
1271 unsigned long flags;
1272 int cpu;
1273
1274 /* Remove policy from list */
1275 write_lock_irqsave(&cpufreq_driver_lock, flags);
1276 list_del(&policy->policy_list);
1277
1278 for_each_cpu(cpu, policy->related_cpus)
1279 per_cpu(cpufreq_cpu_data, cpu) = NULL;
1280 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1281
David Brazdil0f672f62019-12-10 10:32:29 +00001282 freq_qos_remove_notifier(&policy->constraints, FREQ_QOS_MAX,
1283 &policy->nb_max);
1284 freq_qos_remove_notifier(&policy->constraints, FREQ_QOS_MIN,
1285 &policy->nb_min);
1286
1287 /* Cancel any pending policy->update work before freeing the policy. */
1288 cancel_work_sync(&policy->update);
1289
1290 if (policy->max_freq_req) {
1291 /*
1292 * CPUFREQ_CREATE_POLICY notification is sent only after
1293 * successfully adding max_freq_req request.
1294 */
1295 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1296 CPUFREQ_REMOVE_POLICY, policy);
1297 freq_qos_remove_request(policy->max_freq_req);
1298 }
1299
1300 freq_qos_remove_request(policy->min_freq_req);
1301 kfree(policy->min_freq_req);
1302
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001303 cpufreq_policy_put_kobj(policy);
1304 free_cpumask_var(policy->real_cpus);
1305 free_cpumask_var(policy->related_cpus);
1306 free_cpumask_var(policy->cpus);
1307 kfree(policy);
1308}
1309
1310static int cpufreq_online(unsigned int cpu)
1311{
1312 struct cpufreq_policy *policy;
1313 bool new_policy;
1314 unsigned long flags;
1315 unsigned int j;
1316 int ret;
1317
1318 pr_debug("%s: bringing CPU%u online\n", __func__, cpu);
1319
1320 /* Check if this CPU already has a policy to manage it */
1321 policy = per_cpu(cpufreq_cpu_data, cpu);
1322 if (policy) {
1323 WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus));
1324 if (!policy_is_inactive(policy))
1325 return cpufreq_add_policy_cpu(policy, cpu);
1326
1327 /* This is the only online CPU for the policy. Start over. */
1328 new_policy = false;
1329 down_write(&policy->rwsem);
1330 policy->cpu = cpu;
1331 policy->governor = NULL;
1332 up_write(&policy->rwsem);
1333 } else {
1334 new_policy = true;
1335 policy = cpufreq_policy_alloc(cpu);
1336 if (!policy)
1337 return -ENOMEM;
1338 }
1339
David Brazdil0f672f62019-12-10 10:32:29 +00001340 if (!new_policy && cpufreq_driver->online) {
1341 ret = cpufreq_driver->online(policy);
1342 if (ret) {
1343 pr_debug("%s: %d: initialization failed\n", __func__,
1344 __LINE__);
1345 goto out_exit_policy;
1346 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001347
David Brazdil0f672f62019-12-10 10:32:29 +00001348 /* Recover policy->cpus using related_cpus */
1349 cpumask_copy(policy->cpus, policy->related_cpus);
1350 } else {
1351 cpumask_copy(policy->cpus, cpumask_of(cpu));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001352
David Brazdil0f672f62019-12-10 10:32:29 +00001353 /*
1354 * Call driver. From then on the cpufreq must be able
1355 * to accept all calls to ->verify and ->setpolicy for this CPU.
1356 */
1357 ret = cpufreq_driver->init(policy);
1358 if (ret) {
1359 pr_debug("%s: %d: initialization failed\n", __func__,
1360 __LINE__);
1361 goto out_free_policy;
1362 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001363
Olivier Deprez0e641232021-09-23 10:07:05 +02001364 /*
1365 * The initialization has succeeded and the policy is online.
1366 * If there is a problem with its frequency table, take it
1367 * offline and drop it.
1368 */
David Brazdil0f672f62019-12-10 10:32:29 +00001369 ret = cpufreq_table_validate_and_sort(policy);
1370 if (ret)
Olivier Deprez0e641232021-09-23 10:07:05 +02001371 goto out_offline_policy;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001372
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001373 /* related_cpus should at least include policy->cpus. */
1374 cpumask_copy(policy->related_cpus, policy->cpus);
1375 }
1376
David Brazdil0f672f62019-12-10 10:32:29 +00001377 down_write(&policy->rwsem);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001378 /*
1379 * affected cpus must always be the one, which are online. We aren't
1380 * managing offline cpus here.
1381 */
1382 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1383
1384 if (new_policy) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001385 for_each_cpu(j, policy->related_cpus) {
1386 per_cpu(cpufreq_cpu_data, j) = policy;
1387 add_cpu_dev_symlink(policy, j);
1388 }
David Brazdil0f672f62019-12-10 10:32:29 +00001389
1390 policy->min_freq_req = kzalloc(2 * sizeof(*policy->min_freq_req),
1391 GFP_KERNEL);
1392 if (!policy->min_freq_req)
1393 goto out_destroy_policy;
1394
1395 ret = freq_qos_add_request(&policy->constraints,
1396 policy->min_freq_req, FREQ_QOS_MIN,
1397 policy->min);
1398 if (ret < 0) {
1399 /*
1400 * So we don't call freq_qos_remove_request() for an
1401 * uninitialized request.
1402 */
1403 kfree(policy->min_freq_req);
1404 policy->min_freq_req = NULL;
1405 goto out_destroy_policy;
1406 }
1407
1408 /*
1409 * This must be initialized right here to avoid calling
1410 * freq_qos_remove_request() on uninitialized request in case
1411 * of errors.
1412 */
1413 policy->max_freq_req = policy->min_freq_req + 1;
1414
1415 ret = freq_qos_add_request(&policy->constraints,
1416 policy->max_freq_req, FREQ_QOS_MAX,
1417 policy->max);
1418 if (ret < 0) {
1419 policy->max_freq_req = NULL;
1420 goto out_destroy_policy;
1421 }
1422
1423 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1424 CPUFREQ_CREATE_POLICY, policy);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001425 }
1426
David Brazdil0f672f62019-12-10 10:32:29 +00001427 if (cpufreq_driver->get && has_target()) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001428 policy->cur = cpufreq_driver->get(policy->cpu);
1429 if (!policy->cur) {
1430 pr_err("%s: ->get() failed\n", __func__);
1431 goto out_destroy_policy;
1432 }
1433 }
1434
1435 /*
1436 * Sometimes boot loaders set CPU frequency to a value outside of
1437 * frequency table present with cpufreq core. In such cases CPU might be
1438 * unstable if it has to run on that frequency for long duration of time
1439 * and so its better to set it to a frequency which is specified in
1440 * freq-table. This also makes cpufreq stats inconsistent as
1441 * cpufreq-stats would fail to register because current frequency of CPU
1442 * isn't found in freq-table.
1443 *
1444 * Because we don't want this change to effect boot process badly, we go
1445 * for the next freq which is >= policy->cur ('cur' must be set by now,
1446 * otherwise we will end up setting freq to lowest of the table as 'cur'
1447 * is initialized to zero).
1448 *
1449 * We are passing target-freq as "policy->cur - 1" otherwise
1450 * __cpufreq_driver_target() would simply fail, as policy->cur will be
1451 * equal to target-freq.
1452 */
1453 if ((cpufreq_driver->flags & CPUFREQ_NEED_INITIAL_FREQ_CHECK)
1454 && has_target()) {
1455 /* Are we running at unknown frequency ? */
1456 ret = cpufreq_frequency_table_get_index(policy, policy->cur);
1457 if (ret == -EINVAL) {
1458 /* Warn user and fix it */
1459 pr_warn("%s: CPU%d: Running at unlisted freq: %u KHz\n",
1460 __func__, policy->cpu, policy->cur);
1461 ret = __cpufreq_driver_target(policy, policy->cur - 1,
1462 CPUFREQ_RELATION_L);
1463
1464 /*
1465 * Reaching here after boot in a few seconds may not
1466 * mean that system will remain stable at "unknown"
1467 * frequency for longer duration. Hence, a BUG_ON().
1468 */
1469 BUG_ON(ret);
1470 pr_warn("%s: CPU%d: Unlisted initial frequency changed to: %u KHz\n",
1471 __func__, policy->cpu, policy->cur);
1472 }
1473 }
1474
1475 if (new_policy) {
1476 ret = cpufreq_add_dev_interface(policy);
1477 if (ret)
1478 goto out_destroy_policy;
1479
1480 cpufreq_stats_create_table(policy);
1481
1482 write_lock_irqsave(&cpufreq_driver_lock, flags);
1483 list_add(&policy->policy_list, &cpufreq_policy_list);
1484 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1485 }
1486
1487 ret = cpufreq_init_policy(policy);
1488 if (ret) {
1489 pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n",
1490 __func__, cpu, ret);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001491 goto out_destroy_policy;
1492 }
1493
1494 up_write(&policy->rwsem);
1495
1496 kobject_uevent(&policy->kobj, KOBJ_ADD);
1497
1498 /* Callback for handling stuff after policy is ready */
1499 if (cpufreq_driver->ready)
1500 cpufreq_driver->ready(policy);
1501
David Brazdil0f672f62019-12-10 10:32:29 +00001502 if (cpufreq_thermal_control_enabled(cpufreq_driver))
1503 policy->cdev = of_cpufreq_cooling_register(policy);
1504
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001505 pr_debug("initialization complete\n");
1506
1507 return 0;
1508
1509out_destroy_policy:
1510 for_each_cpu(j, policy->real_cpus)
1511 remove_cpu_dev_symlink(policy, get_cpu_device(j));
1512
1513 up_write(&policy->rwsem);
1514
Olivier Deprez0e641232021-09-23 10:07:05 +02001515out_offline_policy:
1516 if (cpufreq_driver->offline)
1517 cpufreq_driver->offline(policy);
1518
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001519out_exit_policy:
1520 if (cpufreq_driver->exit)
1521 cpufreq_driver->exit(policy);
1522
1523out_free_policy:
1524 cpufreq_policy_free(policy);
1525 return ret;
1526}
1527
1528/**
1529 * cpufreq_add_dev - the cpufreq interface for a CPU device.
1530 * @dev: CPU device.
1531 * @sif: Subsystem interface structure pointer (not used)
1532 */
1533static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1534{
1535 struct cpufreq_policy *policy;
1536 unsigned cpu = dev->id;
1537 int ret;
1538
1539 dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu);
1540
1541 if (cpu_online(cpu)) {
1542 ret = cpufreq_online(cpu);
1543 if (ret)
1544 return ret;
1545 }
1546
1547 /* Create sysfs link on CPU registration */
1548 policy = per_cpu(cpufreq_cpu_data, cpu);
1549 if (policy)
1550 add_cpu_dev_symlink(policy, cpu);
1551
1552 return 0;
1553}
1554
1555static int cpufreq_offline(unsigned int cpu)
1556{
1557 struct cpufreq_policy *policy;
1558 int ret;
1559
1560 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
1561
1562 policy = cpufreq_cpu_get_raw(cpu);
1563 if (!policy) {
1564 pr_debug("%s: No cpu_data found\n", __func__);
1565 return 0;
1566 }
1567
1568 down_write(&policy->rwsem);
1569 if (has_target())
1570 cpufreq_stop_governor(policy);
1571
1572 cpumask_clear_cpu(cpu, policy->cpus);
1573
1574 if (policy_is_inactive(policy)) {
1575 if (has_target())
1576 strncpy(policy->last_governor, policy->governor->name,
1577 CPUFREQ_NAME_LEN);
1578 else
1579 policy->last_policy = policy->policy;
1580 } else if (cpu == policy->cpu) {
1581 /* Nominate new CPU */
1582 policy->cpu = cpumask_any(policy->cpus);
1583 }
1584
1585 /* Start governor again for active policy */
1586 if (!policy_is_inactive(policy)) {
1587 if (has_target()) {
1588 ret = cpufreq_start_governor(policy);
1589 if (ret)
1590 pr_err("%s: Failed to start governor\n", __func__);
1591 }
1592
1593 goto unlock;
1594 }
1595
David Brazdil0f672f62019-12-10 10:32:29 +00001596 if (cpufreq_thermal_control_enabled(cpufreq_driver)) {
1597 cpufreq_cooling_unregister(policy->cdev);
1598 policy->cdev = NULL;
1599 }
1600
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001601 if (cpufreq_driver->stop_cpu)
1602 cpufreq_driver->stop_cpu(policy);
1603
1604 if (has_target())
1605 cpufreq_exit_governor(policy);
1606
1607 /*
David Brazdil0f672f62019-12-10 10:32:29 +00001608 * Perform the ->offline() during light-weight tear-down, as
1609 * that allows fast recovery when the CPU comes back.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001610 */
David Brazdil0f672f62019-12-10 10:32:29 +00001611 if (cpufreq_driver->offline) {
1612 cpufreq_driver->offline(policy);
1613 } else if (cpufreq_driver->exit) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001614 cpufreq_driver->exit(policy);
1615 policy->freq_table = NULL;
1616 }
1617
1618unlock:
1619 up_write(&policy->rwsem);
1620 return 0;
1621}
1622
1623/**
1624 * cpufreq_remove_dev - remove a CPU device
1625 *
1626 * Removes the cpufreq interface for a CPU device.
1627 */
1628static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
1629{
1630 unsigned int cpu = dev->id;
1631 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
1632
1633 if (!policy)
1634 return;
1635
1636 if (cpu_online(cpu))
1637 cpufreq_offline(cpu);
1638
1639 cpumask_clear_cpu(cpu, policy->real_cpus);
1640 remove_cpu_dev_symlink(policy, dev);
1641
David Brazdil0f672f62019-12-10 10:32:29 +00001642 if (cpumask_empty(policy->real_cpus)) {
1643 /* We did light-weight exit earlier, do full tear down now */
1644 if (cpufreq_driver->offline)
1645 cpufreq_driver->exit(policy);
1646
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001647 cpufreq_policy_free(policy);
David Brazdil0f672f62019-12-10 10:32:29 +00001648 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001649}
1650
1651/**
1652 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1653 * in deep trouble.
1654 * @policy: policy managing CPUs
1655 * @new_freq: CPU frequency the CPU actually runs at
1656 *
1657 * We adjust to current frequency first, and need to clean up later.
1658 * So either call to cpufreq_update_policy() or schedule handle_update()).
1659 */
1660static void cpufreq_out_of_sync(struct cpufreq_policy *policy,
1661 unsigned int new_freq)
1662{
1663 struct cpufreq_freqs freqs;
1664
1665 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing core thinks of %u, is %u kHz\n",
1666 policy->cur, new_freq);
1667
1668 freqs.old = policy->cur;
1669 freqs.new = new_freq;
1670
1671 cpufreq_freq_transition_begin(policy, &freqs);
1672 cpufreq_freq_transition_end(policy, &freqs, 0);
1673}
1674
David Brazdil0f672f62019-12-10 10:32:29 +00001675static unsigned int cpufreq_verify_current_freq(struct cpufreq_policy *policy, bool update)
1676{
1677 unsigned int new_freq;
1678
1679 new_freq = cpufreq_driver->get(policy->cpu);
1680 if (!new_freq)
1681 return 0;
1682
1683 /*
1684 * If fast frequency switching is used with the given policy, the check
1685 * against policy->cur is pointless, so skip it in that case.
1686 */
1687 if (policy->fast_switch_enabled || !has_target())
1688 return new_freq;
1689
1690 if (policy->cur != new_freq) {
1691 cpufreq_out_of_sync(policy, new_freq);
1692 if (update)
1693 schedule_work(&policy->update);
1694 }
1695
1696 return new_freq;
1697}
1698
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001699/**
1700 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
1701 * @cpu: CPU number
1702 *
1703 * This is the last known freq, without actually getting it from the driver.
1704 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1705 */
1706unsigned int cpufreq_quick_get(unsigned int cpu)
1707{
1708 struct cpufreq_policy *policy;
1709 unsigned int ret_freq = 0;
1710 unsigned long flags;
1711
1712 read_lock_irqsave(&cpufreq_driver_lock, flags);
1713
1714 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get) {
1715 ret_freq = cpufreq_driver->get(cpu);
1716 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1717 return ret_freq;
1718 }
1719
1720 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1721
1722 policy = cpufreq_cpu_get(cpu);
1723 if (policy) {
1724 ret_freq = policy->cur;
1725 cpufreq_cpu_put(policy);
1726 }
1727
1728 return ret_freq;
1729}
1730EXPORT_SYMBOL(cpufreq_quick_get);
1731
1732/**
1733 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1734 * @cpu: CPU number
1735 *
1736 * Just return the max possible frequency for a given CPU.
1737 */
1738unsigned int cpufreq_quick_get_max(unsigned int cpu)
1739{
1740 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1741 unsigned int ret_freq = 0;
1742
1743 if (policy) {
1744 ret_freq = policy->max;
1745 cpufreq_cpu_put(policy);
1746 }
1747
1748 return ret_freq;
1749}
1750EXPORT_SYMBOL(cpufreq_quick_get_max);
1751
1752static unsigned int __cpufreq_get(struct cpufreq_policy *policy)
1753{
David Brazdil0f672f62019-12-10 10:32:29 +00001754 if (unlikely(policy_is_inactive(policy)))
1755 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001756
David Brazdil0f672f62019-12-10 10:32:29 +00001757 return cpufreq_verify_current_freq(policy, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001758}
1759
1760/**
1761 * cpufreq_get - get the current CPU frequency (in kHz)
1762 * @cpu: CPU number
1763 *
1764 * Get the CPU current (static) CPU frequency
1765 */
1766unsigned int cpufreq_get(unsigned int cpu)
1767{
1768 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1769 unsigned int ret_freq = 0;
1770
1771 if (policy) {
1772 down_read(&policy->rwsem);
David Brazdil0f672f62019-12-10 10:32:29 +00001773 if (cpufreq_driver->get)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001774 ret_freq = __cpufreq_get(policy);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001775 up_read(&policy->rwsem);
1776
1777 cpufreq_cpu_put(policy);
1778 }
1779
1780 return ret_freq;
1781}
1782EXPORT_SYMBOL(cpufreq_get);
1783
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001784static struct subsys_interface cpufreq_interface = {
1785 .name = "cpufreq",
1786 .subsys = &cpu_subsys,
1787 .add_dev = cpufreq_add_dev,
1788 .remove_dev = cpufreq_remove_dev,
1789};
1790
1791/*
1792 * In case platform wants some specific frequency to be configured
1793 * during suspend..
1794 */
1795int cpufreq_generic_suspend(struct cpufreq_policy *policy)
1796{
1797 int ret;
1798
1799 if (!policy->suspend_freq) {
1800 pr_debug("%s: suspend_freq not defined\n", __func__);
1801 return 0;
1802 }
1803
1804 pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1805 policy->suspend_freq);
1806
1807 ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1808 CPUFREQ_RELATION_H);
1809 if (ret)
1810 pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1811 __func__, policy->suspend_freq, ret);
1812
1813 return ret;
1814}
1815EXPORT_SYMBOL(cpufreq_generic_suspend);
1816
1817/**
1818 * cpufreq_suspend() - Suspend CPUFreq governors
1819 *
1820 * Called during system wide Suspend/Hibernate cycles for suspending governors
1821 * as some platforms can't change frequency after this point in suspend cycle.
1822 * Because some of the devices (like: i2c, regulators, etc) they use for
1823 * changing frequency are suspended quickly after this point.
1824 */
1825void cpufreq_suspend(void)
1826{
1827 struct cpufreq_policy *policy;
1828
1829 if (!cpufreq_driver)
1830 return;
1831
1832 if (!has_target() && !cpufreq_driver->suspend)
1833 goto suspend;
1834
1835 pr_debug("%s: Suspending Governors\n", __func__);
1836
1837 for_each_active_policy(policy) {
1838 if (has_target()) {
1839 down_write(&policy->rwsem);
1840 cpufreq_stop_governor(policy);
1841 up_write(&policy->rwsem);
1842 }
1843
1844 if (cpufreq_driver->suspend && cpufreq_driver->suspend(policy))
David Brazdil0f672f62019-12-10 10:32:29 +00001845 pr_err("%s: Failed to suspend driver: %s\n", __func__,
1846 cpufreq_driver->name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001847 }
1848
1849suspend:
1850 cpufreq_suspended = true;
1851}
1852
1853/**
1854 * cpufreq_resume() - Resume CPUFreq governors
1855 *
1856 * Called during system wide Suspend/Hibernate cycle for resuming governors that
1857 * are suspended with cpufreq_suspend().
1858 */
1859void cpufreq_resume(void)
1860{
1861 struct cpufreq_policy *policy;
1862 int ret;
1863
1864 if (!cpufreq_driver)
1865 return;
1866
1867 if (unlikely(!cpufreq_suspended))
1868 return;
1869
1870 cpufreq_suspended = false;
1871
1872 if (!has_target() && !cpufreq_driver->resume)
1873 return;
1874
1875 pr_debug("%s: Resuming Governors\n", __func__);
1876
1877 for_each_active_policy(policy) {
1878 if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) {
1879 pr_err("%s: Failed to resume driver: %p\n", __func__,
1880 policy);
1881 } else if (has_target()) {
1882 down_write(&policy->rwsem);
1883 ret = cpufreq_start_governor(policy);
1884 up_write(&policy->rwsem);
1885
1886 if (ret)
1887 pr_err("%s: Failed to start governor for policy: %p\n",
1888 __func__, policy);
1889 }
1890 }
1891}
1892
1893/**
1894 * cpufreq_get_current_driver - return current driver's name
1895 *
1896 * Return the name string of the currently loaded cpufreq driver
1897 * or NULL, if none.
1898 */
1899const char *cpufreq_get_current_driver(void)
1900{
1901 if (cpufreq_driver)
1902 return cpufreq_driver->name;
1903
1904 return NULL;
1905}
1906EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
1907
1908/**
1909 * cpufreq_get_driver_data - return current driver data
1910 *
1911 * Return the private data of the currently loaded cpufreq
1912 * driver, or NULL if no cpufreq driver is loaded.
1913 */
1914void *cpufreq_get_driver_data(void)
1915{
1916 if (cpufreq_driver)
1917 return cpufreq_driver->driver_data;
1918
1919 return NULL;
1920}
1921EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);
1922
1923/*********************************************************************
1924 * NOTIFIER LISTS INTERFACE *
1925 *********************************************************************/
1926
1927/**
1928 * cpufreq_register_notifier - register a driver with cpufreq
1929 * @nb: notifier function to register
1930 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1931 *
1932 * Add a driver to one of two lists: either a list of drivers that
1933 * are notified about clock rate changes (once before and once after
1934 * the transition), or a list of drivers that are notified about
1935 * changes in cpufreq policy.
1936 *
1937 * This function may sleep, and has the same return conditions as
1938 * blocking_notifier_chain_register.
1939 */
1940int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1941{
1942 int ret;
1943
1944 if (cpufreq_disabled())
1945 return -EINVAL;
1946
1947 switch (list) {
1948 case CPUFREQ_TRANSITION_NOTIFIER:
1949 mutex_lock(&cpufreq_fast_switch_lock);
1950
1951 if (cpufreq_fast_switch_count > 0) {
1952 mutex_unlock(&cpufreq_fast_switch_lock);
1953 return -EBUSY;
1954 }
1955 ret = srcu_notifier_chain_register(
1956 &cpufreq_transition_notifier_list, nb);
1957 if (!ret)
1958 cpufreq_fast_switch_count--;
1959
1960 mutex_unlock(&cpufreq_fast_switch_lock);
1961 break;
1962 case CPUFREQ_POLICY_NOTIFIER:
1963 ret = blocking_notifier_chain_register(
1964 &cpufreq_policy_notifier_list, nb);
1965 break;
1966 default:
1967 ret = -EINVAL;
1968 }
1969
1970 return ret;
1971}
1972EXPORT_SYMBOL(cpufreq_register_notifier);
1973
1974/**
1975 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1976 * @nb: notifier block to be unregistered
1977 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1978 *
1979 * Remove a driver from the CPU frequency notifier list.
1980 *
1981 * This function may sleep, and has the same return conditions as
1982 * blocking_notifier_chain_unregister.
1983 */
1984int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1985{
1986 int ret;
1987
1988 if (cpufreq_disabled())
1989 return -EINVAL;
1990
1991 switch (list) {
1992 case CPUFREQ_TRANSITION_NOTIFIER:
1993 mutex_lock(&cpufreq_fast_switch_lock);
1994
1995 ret = srcu_notifier_chain_unregister(
1996 &cpufreq_transition_notifier_list, nb);
1997 if (!ret && !WARN_ON(cpufreq_fast_switch_count >= 0))
1998 cpufreq_fast_switch_count++;
1999
2000 mutex_unlock(&cpufreq_fast_switch_lock);
2001 break;
2002 case CPUFREQ_POLICY_NOTIFIER:
2003 ret = blocking_notifier_chain_unregister(
2004 &cpufreq_policy_notifier_list, nb);
2005 break;
2006 default:
2007 ret = -EINVAL;
2008 }
2009
2010 return ret;
2011}
2012EXPORT_SYMBOL(cpufreq_unregister_notifier);
2013
2014
2015/*********************************************************************
2016 * GOVERNORS *
2017 *********************************************************************/
2018
2019/**
2020 * cpufreq_driver_fast_switch - Carry out a fast CPU frequency switch.
2021 * @policy: cpufreq policy to switch the frequency for.
2022 * @target_freq: New frequency to set (may be approximate).
2023 *
2024 * Carry out a fast frequency switch without sleeping.
2025 *
2026 * The driver's ->fast_switch() callback invoked by this function must be
2027 * suitable for being called from within RCU-sched read-side critical sections
2028 * and it is expected to select the minimum available frequency greater than or
2029 * equal to @target_freq (CPUFREQ_RELATION_L).
2030 *
2031 * This function must not be called if policy->fast_switch_enabled is unset.
2032 *
2033 * Governors calling this function must guarantee that it will never be invoked
2034 * twice in parallel for the same policy and that it will never be called in
2035 * parallel with either ->target() or ->target_index() for the same policy.
2036 *
2037 * Returns the actual frequency set for the CPU.
2038 *
2039 * If 0 is returned by the driver's ->fast_switch() callback to indicate an
2040 * error condition, the hardware configuration must be preserved.
2041 */
2042unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy,
2043 unsigned int target_freq)
2044{
2045 target_freq = clamp_val(target_freq, policy->min, policy->max);
2046
2047 return cpufreq_driver->fast_switch(policy, target_freq);
2048}
2049EXPORT_SYMBOL_GPL(cpufreq_driver_fast_switch);
2050
2051/* Must set freqs->new to intermediate frequency */
2052static int __target_intermediate(struct cpufreq_policy *policy,
2053 struct cpufreq_freqs *freqs, int index)
2054{
2055 int ret;
2056
2057 freqs->new = cpufreq_driver->get_intermediate(policy, index);
2058
2059 /* We don't need to switch to intermediate freq */
2060 if (!freqs->new)
2061 return 0;
2062
2063 pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
2064 __func__, policy->cpu, freqs->old, freqs->new);
2065
2066 cpufreq_freq_transition_begin(policy, freqs);
2067 ret = cpufreq_driver->target_intermediate(policy, index);
2068 cpufreq_freq_transition_end(policy, freqs, ret);
2069
2070 if (ret)
2071 pr_err("%s: Failed to change to intermediate frequency: %d\n",
2072 __func__, ret);
2073
2074 return ret;
2075}
2076
2077static int __target_index(struct cpufreq_policy *policy, int index)
2078{
2079 struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
2080 unsigned int intermediate_freq = 0;
2081 unsigned int newfreq = policy->freq_table[index].frequency;
2082 int retval = -EINVAL;
2083 bool notify;
2084
2085 if (newfreq == policy->cur)
2086 return 0;
2087
2088 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
2089 if (notify) {
2090 /* Handle switching to intermediate frequency */
2091 if (cpufreq_driver->get_intermediate) {
2092 retval = __target_intermediate(policy, &freqs, index);
2093 if (retval)
2094 return retval;
2095
2096 intermediate_freq = freqs.new;
2097 /* Set old freq to intermediate */
2098 if (intermediate_freq)
2099 freqs.old = freqs.new;
2100 }
2101
2102 freqs.new = newfreq;
2103 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
2104 __func__, policy->cpu, freqs.old, freqs.new);
2105
2106 cpufreq_freq_transition_begin(policy, &freqs);
2107 }
2108
2109 retval = cpufreq_driver->target_index(policy, index);
2110 if (retval)
2111 pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
2112 retval);
2113
2114 if (notify) {
2115 cpufreq_freq_transition_end(policy, &freqs, retval);
2116
2117 /*
2118 * Failed after setting to intermediate freq? Driver should have
2119 * reverted back to initial frequency and so should we. Check
2120 * here for intermediate_freq instead of get_intermediate, in
2121 * case we haven't switched to intermediate freq at all.
2122 */
2123 if (unlikely(retval && intermediate_freq)) {
2124 freqs.old = intermediate_freq;
2125 freqs.new = policy->restore_freq;
2126 cpufreq_freq_transition_begin(policy, &freqs);
2127 cpufreq_freq_transition_end(policy, &freqs, 0);
2128 }
2129 }
2130
2131 return retval;
2132}
2133
2134int __cpufreq_driver_target(struct cpufreq_policy *policy,
2135 unsigned int target_freq,
2136 unsigned int relation)
2137{
2138 unsigned int old_target_freq = target_freq;
2139 int index;
2140
2141 if (cpufreq_disabled())
2142 return -ENODEV;
2143
2144 /* Make sure that target_freq is within supported range */
2145 target_freq = clamp_val(target_freq, policy->min, policy->max);
2146
2147 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
2148 policy->cpu, target_freq, relation, old_target_freq);
2149
2150 /*
2151 * This might look like a redundant call as we are checking it again
2152 * after finding index. But it is left intentionally for cases where
2153 * exactly same freq is called again and so we can save on few function
2154 * calls.
2155 */
2156 if (target_freq == policy->cur)
2157 return 0;
2158
2159 /* Save last value to restore later on errors */
2160 policy->restore_freq = policy->cur;
2161
2162 if (cpufreq_driver->target)
2163 return cpufreq_driver->target(policy, target_freq, relation);
2164
2165 if (!cpufreq_driver->target_index)
2166 return -EINVAL;
2167
2168 index = cpufreq_frequency_table_target(policy, target_freq, relation);
2169
2170 return __target_index(policy, index);
2171}
2172EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
2173
2174int cpufreq_driver_target(struct cpufreq_policy *policy,
2175 unsigned int target_freq,
2176 unsigned int relation)
2177{
David Brazdil0f672f62019-12-10 10:32:29 +00002178 int ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002179
2180 down_write(&policy->rwsem);
2181
2182 ret = __cpufreq_driver_target(policy, target_freq, relation);
2183
2184 up_write(&policy->rwsem);
2185
2186 return ret;
2187}
2188EXPORT_SYMBOL_GPL(cpufreq_driver_target);
2189
2190__weak struct cpufreq_governor *cpufreq_fallback_governor(void)
2191{
2192 return NULL;
2193}
2194
2195static int cpufreq_init_governor(struct cpufreq_policy *policy)
2196{
2197 int ret;
2198
2199 /* Don't start any governor operations if we are entering suspend */
2200 if (cpufreq_suspended)
2201 return 0;
2202 /*
2203 * Governor might not be initiated here if ACPI _PPC changed
2204 * notification happened, so check it.
2205 */
2206 if (!policy->governor)
2207 return -EINVAL;
2208
2209 /* Platform doesn't want dynamic frequency switching ? */
2210 if (policy->governor->dynamic_switching &&
2211 cpufreq_driver->flags & CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING) {
2212 struct cpufreq_governor *gov = cpufreq_fallback_governor();
2213
2214 if (gov) {
2215 pr_warn("Can't use %s governor as dynamic switching is disallowed. Fallback to %s governor\n",
2216 policy->governor->name, gov->name);
2217 policy->governor = gov;
2218 } else {
2219 return -EINVAL;
2220 }
2221 }
2222
2223 if (!try_module_get(policy->governor->owner))
2224 return -EINVAL;
2225
2226 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2227
2228 if (policy->governor->init) {
2229 ret = policy->governor->init(policy);
2230 if (ret) {
2231 module_put(policy->governor->owner);
2232 return ret;
2233 }
2234 }
2235
2236 return 0;
2237}
2238
2239static void cpufreq_exit_governor(struct cpufreq_policy *policy)
2240{
2241 if (cpufreq_suspended || !policy->governor)
2242 return;
2243
2244 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2245
2246 if (policy->governor->exit)
2247 policy->governor->exit(policy);
2248
2249 module_put(policy->governor->owner);
2250}
2251
2252static int cpufreq_start_governor(struct cpufreq_policy *policy)
2253{
2254 int ret;
2255
2256 if (cpufreq_suspended)
2257 return 0;
2258
2259 if (!policy->governor)
2260 return -EINVAL;
2261
2262 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2263
David Brazdil0f672f62019-12-10 10:32:29 +00002264 if (cpufreq_driver->get)
2265 cpufreq_verify_current_freq(policy, false);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002266
2267 if (policy->governor->start) {
2268 ret = policy->governor->start(policy);
2269 if (ret)
2270 return ret;
2271 }
2272
2273 if (policy->governor->limits)
2274 policy->governor->limits(policy);
2275
2276 return 0;
2277}
2278
2279static void cpufreq_stop_governor(struct cpufreq_policy *policy)
2280{
2281 if (cpufreq_suspended || !policy->governor)
2282 return;
2283
2284 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2285
2286 if (policy->governor->stop)
2287 policy->governor->stop(policy);
2288}
2289
2290static void cpufreq_governor_limits(struct cpufreq_policy *policy)
2291{
2292 if (cpufreq_suspended || !policy->governor)
2293 return;
2294
2295 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2296
2297 if (policy->governor->limits)
2298 policy->governor->limits(policy);
2299}
2300
2301int cpufreq_register_governor(struct cpufreq_governor *governor)
2302{
2303 int err;
2304
2305 if (!governor)
2306 return -EINVAL;
2307
2308 if (cpufreq_disabled())
2309 return -ENODEV;
2310
2311 mutex_lock(&cpufreq_governor_mutex);
2312
2313 err = -EBUSY;
2314 if (!find_governor(governor->name)) {
2315 err = 0;
2316 list_add(&governor->governor_list, &cpufreq_governor_list);
2317 }
2318
2319 mutex_unlock(&cpufreq_governor_mutex);
2320 return err;
2321}
2322EXPORT_SYMBOL_GPL(cpufreq_register_governor);
2323
2324void cpufreq_unregister_governor(struct cpufreq_governor *governor)
2325{
2326 struct cpufreq_policy *policy;
2327 unsigned long flags;
2328
2329 if (!governor)
2330 return;
2331
2332 if (cpufreq_disabled())
2333 return;
2334
2335 /* clear last_governor for all inactive policies */
2336 read_lock_irqsave(&cpufreq_driver_lock, flags);
2337 for_each_inactive_policy(policy) {
2338 if (!strcmp(policy->last_governor, governor->name)) {
2339 policy->governor = NULL;
2340 strcpy(policy->last_governor, "\0");
2341 }
2342 }
2343 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
2344
2345 mutex_lock(&cpufreq_governor_mutex);
2346 list_del(&governor->governor_list);
2347 mutex_unlock(&cpufreq_governor_mutex);
2348}
2349EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
2350
2351
2352/*********************************************************************
2353 * POLICY INTERFACE *
2354 *********************************************************************/
2355
2356/**
2357 * cpufreq_get_policy - get the current cpufreq_policy
2358 * @policy: struct cpufreq_policy into which the current cpufreq_policy
2359 * is written
2360 *
2361 * Reads the current cpufreq policy.
2362 */
2363int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2364{
2365 struct cpufreq_policy *cpu_policy;
2366 if (!policy)
2367 return -EINVAL;
2368
2369 cpu_policy = cpufreq_cpu_get(cpu);
2370 if (!cpu_policy)
2371 return -EINVAL;
2372
2373 memcpy(policy, cpu_policy, sizeof(*policy));
2374
2375 cpufreq_cpu_put(cpu_policy);
2376 return 0;
2377}
2378EXPORT_SYMBOL(cpufreq_get_policy);
2379
David Brazdil0f672f62019-12-10 10:32:29 +00002380/**
2381 * cpufreq_set_policy - Modify cpufreq policy parameters.
2382 * @policy: Policy object to modify.
Olivier Deprez0e641232021-09-23 10:07:05 +02002383 * @new_gov: Policy governor pointer.
2384 * @new_pol: Policy value (for drivers with built-in governors).
David Brazdil0f672f62019-12-10 10:32:29 +00002385 *
Olivier Deprez0e641232021-09-23 10:07:05 +02002386 * Invoke the cpufreq driver's ->verify() callback to sanity-check the frequency
2387 * limits to be set for the policy, update @policy with the verified limits
2388 * values and either invoke the driver's ->setpolicy() callback (if present) or
2389 * carry out a governor update for @policy. That is, run the current governor's
2390 * ->limits() callback (if @new_gov points to the same object as the one in
2391 * @policy) or replace the governor for @policy with @new_gov.
David Brazdil0f672f62019-12-10 10:32:29 +00002392 *
2393 * The cpuinfo part of @policy is not updated by this function.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002394 */
Olivier Deprez0e641232021-09-23 10:07:05 +02002395static int cpufreq_set_policy(struct cpufreq_policy *policy,
2396 struct cpufreq_governor *new_gov,
2397 unsigned int new_pol)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002398{
Olivier Deprez0e641232021-09-23 10:07:05 +02002399 struct cpufreq_policy_data new_data;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002400 struct cpufreq_governor *old_gov;
2401 int ret;
2402
Olivier Deprez0e641232021-09-23 10:07:05 +02002403 memcpy(&new_data.cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
2404 new_data.freq_table = policy->freq_table;
2405 new_data.cpu = policy->cpu;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002406 /*
David Brazdil0f672f62019-12-10 10:32:29 +00002407 * PM QoS framework collects all the requests from users and provide us
2408 * the final aggregated value here.
2409 */
Olivier Deprez0e641232021-09-23 10:07:05 +02002410 new_data.min = freq_qos_read_value(&policy->constraints, FREQ_QOS_MIN);
2411 new_data.max = freq_qos_read_value(&policy->constraints, FREQ_QOS_MAX);
2412
2413 pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2414 new_data.cpu, new_data.min, new_data.max);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002415
2416 /* verify the cpu speed can be set within this limit */
Olivier Deprez0e641232021-09-23 10:07:05 +02002417 ret = cpufreq_driver->verify(&new_data);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002418 if (ret)
2419 return ret;
2420
Olivier Deprez0e641232021-09-23 10:07:05 +02002421 policy->min = new_data.min;
2422 policy->max = new_data.max;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002423 trace_cpu_frequency_limits(policy);
2424
2425 policy->cached_target_freq = UINT_MAX;
2426
2427 pr_debug("new min and max freqs are %u - %u kHz\n",
2428 policy->min, policy->max);
2429
2430 if (cpufreq_driver->setpolicy) {
Olivier Deprez0e641232021-09-23 10:07:05 +02002431 policy->policy = new_pol;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002432 pr_debug("setting range\n");
David Brazdil0f672f62019-12-10 10:32:29 +00002433 return cpufreq_driver->setpolicy(policy);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002434 }
2435
Olivier Deprez0e641232021-09-23 10:07:05 +02002436 if (new_gov == policy->governor) {
David Brazdil0f672f62019-12-10 10:32:29 +00002437 pr_debug("governor limits update\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002438 cpufreq_governor_limits(policy);
2439 return 0;
2440 }
2441
2442 pr_debug("governor switch\n");
2443
2444 /* save old, working values */
2445 old_gov = policy->governor;
2446 /* end old governor */
2447 if (old_gov) {
2448 cpufreq_stop_governor(policy);
2449 cpufreq_exit_governor(policy);
2450 }
2451
2452 /* start new governor */
Olivier Deprez0e641232021-09-23 10:07:05 +02002453 policy->governor = new_gov;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002454 ret = cpufreq_init_governor(policy);
2455 if (!ret) {
2456 ret = cpufreq_start_governor(policy);
2457 if (!ret) {
David Brazdil0f672f62019-12-10 10:32:29 +00002458 pr_debug("governor change\n");
2459 sched_cpufreq_governor_change(policy, old_gov);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002460 return 0;
2461 }
2462 cpufreq_exit_governor(policy);
2463 }
2464
2465 /* new governor failed, so re-start old one */
2466 pr_debug("starting governor %s failed\n", policy->governor->name);
2467 if (old_gov) {
2468 policy->governor = old_gov;
2469 if (cpufreq_init_governor(policy))
2470 policy->governor = NULL;
2471 else
2472 cpufreq_start_governor(policy);
2473 }
2474
2475 return ret;
2476}
2477
2478/**
David Brazdil0f672f62019-12-10 10:32:29 +00002479 * cpufreq_update_policy - Re-evaluate an existing cpufreq policy.
2480 * @cpu: CPU to re-evaluate the policy for.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002481 *
David Brazdil0f672f62019-12-10 10:32:29 +00002482 * Update the current frequency for the cpufreq policy of @cpu and use
2483 * cpufreq_set_policy() to re-apply the min and max limits, which triggers the
2484 * evaluation of policy notifiers and the cpufreq driver's ->verify() callback
2485 * for the policy in question, among other things.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002486 */
2487void cpufreq_update_policy(unsigned int cpu)
2488{
David Brazdil0f672f62019-12-10 10:32:29 +00002489 struct cpufreq_policy *policy = cpufreq_cpu_acquire(cpu);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002490
2491 if (!policy)
2492 return;
2493
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002494 /*
2495 * BIOS might change freq behind our back
2496 * -> ask driver for current freq and notify governors about a change
2497 */
David Brazdil0f672f62019-12-10 10:32:29 +00002498 if (cpufreq_driver->get && has_target() &&
2499 (cpufreq_suspended || WARN_ON(!cpufreq_verify_current_freq(policy, false))))
2500 goto unlock;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002501
David Brazdil0f672f62019-12-10 10:32:29 +00002502 refresh_frequency_limits(policy);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002503
2504unlock:
David Brazdil0f672f62019-12-10 10:32:29 +00002505 cpufreq_cpu_release(policy);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002506}
2507EXPORT_SYMBOL(cpufreq_update_policy);
2508
David Brazdil0f672f62019-12-10 10:32:29 +00002509/**
2510 * cpufreq_update_limits - Update policy limits for a given CPU.
2511 * @cpu: CPU to update the policy limits for.
2512 *
2513 * Invoke the driver's ->update_limits callback if present or call
2514 * cpufreq_update_policy() for @cpu.
2515 */
2516void cpufreq_update_limits(unsigned int cpu)
2517{
2518 if (cpufreq_driver->update_limits)
2519 cpufreq_driver->update_limits(cpu);
2520 else
2521 cpufreq_update_policy(cpu);
2522}
2523EXPORT_SYMBOL_GPL(cpufreq_update_limits);
2524
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002525/*********************************************************************
2526 * BOOST *
2527 *********************************************************************/
2528static int cpufreq_boost_set_sw(int state)
2529{
2530 struct cpufreq_policy *policy;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002531
2532 for_each_active_policy(policy) {
Olivier Deprez0e641232021-09-23 10:07:05 +02002533 int ret;
2534
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002535 if (!policy->freq_table)
Olivier Deprez0e641232021-09-23 10:07:05 +02002536 return -ENXIO;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002537
2538 ret = cpufreq_frequency_table_cpuinfo(policy,
2539 policy->freq_table);
2540 if (ret) {
2541 pr_err("%s: Policy frequency update failed\n",
2542 __func__);
Olivier Deprez0e641232021-09-23 10:07:05 +02002543 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002544 }
2545
David Brazdil0f672f62019-12-10 10:32:29 +00002546 ret = freq_qos_update_request(policy->max_freq_req, policy->max);
2547 if (ret < 0)
Olivier Deprez0e641232021-09-23 10:07:05 +02002548 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002549 }
2550
Olivier Deprez0e641232021-09-23 10:07:05 +02002551 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002552}
2553
2554int cpufreq_boost_trigger_state(int state)
2555{
2556 unsigned long flags;
2557 int ret = 0;
2558
2559 if (cpufreq_driver->boost_enabled == state)
2560 return 0;
2561
2562 write_lock_irqsave(&cpufreq_driver_lock, flags);
2563 cpufreq_driver->boost_enabled = state;
2564 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2565
2566 ret = cpufreq_driver->set_boost(state);
2567 if (ret) {
2568 write_lock_irqsave(&cpufreq_driver_lock, flags);
2569 cpufreq_driver->boost_enabled = !state;
2570 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2571
2572 pr_err("%s: Cannot %s BOOST\n",
2573 __func__, state ? "enable" : "disable");
2574 }
2575
2576 return ret;
2577}
2578
2579static bool cpufreq_boost_supported(void)
2580{
David Brazdil0f672f62019-12-10 10:32:29 +00002581 return cpufreq_driver->set_boost;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002582}
2583
2584static int create_boost_sysfs_file(void)
2585{
2586 int ret;
2587
2588 ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
2589 if (ret)
2590 pr_err("%s: cannot register global BOOST sysfs file\n",
2591 __func__);
2592
2593 return ret;
2594}
2595
2596static void remove_boost_sysfs_file(void)
2597{
2598 if (cpufreq_boost_supported())
2599 sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
2600}
2601
2602int cpufreq_enable_boost_support(void)
2603{
2604 if (!cpufreq_driver)
2605 return -EINVAL;
2606
2607 if (cpufreq_boost_supported())
2608 return 0;
2609
2610 cpufreq_driver->set_boost = cpufreq_boost_set_sw;
2611
2612 /* This will get removed on driver unregister */
2613 return create_boost_sysfs_file();
2614}
2615EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
2616
2617int cpufreq_boost_enabled(void)
2618{
2619 return cpufreq_driver->boost_enabled;
2620}
2621EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
2622
2623/*********************************************************************
2624 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2625 *********************************************************************/
2626static enum cpuhp_state hp_online;
2627
2628static int cpuhp_cpufreq_online(unsigned int cpu)
2629{
2630 cpufreq_online(cpu);
2631
2632 return 0;
2633}
2634
2635static int cpuhp_cpufreq_offline(unsigned int cpu)
2636{
2637 cpufreq_offline(cpu);
2638
2639 return 0;
2640}
2641
2642/**
2643 * cpufreq_register_driver - register a CPU Frequency driver
2644 * @driver_data: A struct cpufreq_driver containing the values#
2645 * submitted by the CPU Frequency driver.
2646 *
2647 * Registers a CPU Frequency driver to this core code. This code
2648 * returns zero on success, -EEXIST when another driver got here first
2649 * (and isn't unregistered in the meantime).
2650 *
2651 */
2652int cpufreq_register_driver(struct cpufreq_driver *driver_data)
2653{
2654 unsigned long flags;
2655 int ret;
2656
2657 if (cpufreq_disabled())
2658 return -ENODEV;
2659
Olivier Deprez0e641232021-09-23 10:07:05 +02002660 /*
2661 * The cpufreq core depends heavily on the availability of device
2662 * structure, make sure they are available before proceeding further.
2663 */
2664 if (!get_cpu_device(0))
2665 return -EPROBE_DEFER;
2666
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002667 if (!driver_data || !driver_data->verify || !driver_data->init ||
2668 !(driver_data->setpolicy || driver_data->target_index ||
2669 driver_data->target) ||
2670 (driver_data->setpolicy && (driver_data->target_index ||
2671 driver_data->target)) ||
David Brazdil0f672f62019-12-10 10:32:29 +00002672 (!driver_data->get_intermediate != !driver_data->target_intermediate) ||
2673 (!driver_data->online != !driver_data->offline))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002674 return -EINVAL;
2675
2676 pr_debug("trying to register driver %s\n", driver_data->name);
2677
2678 /* Protect against concurrent CPU online/offline. */
2679 cpus_read_lock();
2680
2681 write_lock_irqsave(&cpufreq_driver_lock, flags);
2682 if (cpufreq_driver) {
2683 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2684 ret = -EEXIST;
2685 goto out;
2686 }
2687 cpufreq_driver = driver_data;
2688 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2689
2690 if (driver_data->setpolicy)
2691 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2692
2693 if (cpufreq_boost_supported()) {
2694 ret = create_boost_sysfs_file();
2695 if (ret)
2696 goto err_null_driver;
2697 }
2698
2699 ret = subsys_interface_register(&cpufreq_interface);
2700 if (ret)
2701 goto err_boost_unreg;
2702
2703 if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
2704 list_empty(&cpufreq_policy_list)) {
2705 /* if all ->init() calls failed, unregister */
2706 ret = -ENODEV;
2707 pr_debug("%s: No CPU initialized for driver %s\n", __func__,
2708 driver_data->name);
2709 goto err_if_unreg;
2710 }
2711
2712 ret = cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ONLINE_DYN,
2713 "cpufreq:online",
2714 cpuhp_cpufreq_online,
2715 cpuhp_cpufreq_offline);
2716 if (ret < 0)
2717 goto err_if_unreg;
2718 hp_online = ret;
2719 ret = 0;
2720
2721 pr_debug("driver %s up and running\n", driver_data->name);
2722 goto out;
2723
2724err_if_unreg:
2725 subsys_interface_unregister(&cpufreq_interface);
2726err_boost_unreg:
2727 remove_boost_sysfs_file();
2728err_null_driver:
2729 write_lock_irqsave(&cpufreq_driver_lock, flags);
2730 cpufreq_driver = NULL;
2731 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2732out:
2733 cpus_read_unlock();
2734 return ret;
2735}
2736EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2737
2738/**
2739 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2740 *
2741 * Unregister the current CPUFreq driver. Only call this if you have
2742 * the right to do so, i.e. if you have succeeded in initialising before!
2743 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2744 * currently not initialised.
2745 */
2746int cpufreq_unregister_driver(struct cpufreq_driver *driver)
2747{
2748 unsigned long flags;
2749
2750 if (!cpufreq_driver || (driver != cpufreq_driver))
2751 return -EINVAL;
2752
2753 pr_debug("unregistering driver %s\n", driver->name);
2754
2755 /* Protect against concurrent cpu hotplug */
2756 cpus_read_lock();
2757 subsys_interface_unregister(&cpufreq_interface);
2758 remove_boost_sysfs_file();
2759 cpuhp_remove_state_nocalls_cpuslocked(hp_online);
2760
2761 write_lock_irqsave(&cpufreq_driver_lock, flags);
2762
2763 cpufreq_driver = NULL;
2764
2765 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2766 cpus_read_unlock();
2767
2768 return 0;
2769}
2770EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
2771
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002772struct kobject *cpufreq_global_kobject;
2773EXPORT_SYMBOL(cpufreq_global_kobject);
2774
2775static int __init cpufreq_core_init(void)
2776{
2777 if (cpufreq_disabled())
2778 return -ENODEV;
2779
2780 cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
2781 BUG_ON(!cpufreq_global_kobject);
2782
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002783 return 0;
2784}
2785module_param(off, int, 0444);
2786core_initcall(cpufreq_core_init);