1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/drivers/cpufreq/cpufreq.c
5 * Copyright (C) 2001 Russell King
6 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
7 * (C) 2013 Viresh Kumar <viresh.kumar@linaro.org>
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
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17 #include <linux/cpu.h>
18 #include <linux/cpufreq.h>
19 #include <linux/cpu_cooling.h>
20 #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>
26 #include <linux/pm_qos.h>
27 #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>
33 static LIST_HEAD(cpufreq_policy_list);
35 /* 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))
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)
45 #define for_each_policy(__policy) \
46 list_for_each_entry(__policy, &cpufreq_policy_list, policy_list)
48 /* Iterate over governors */
49 static LIST_HEAD(cpufreq_governor_list);
50 #define for_each_governor(__governor) \
51 list_for_each_entry(__governor, &cpufreq_governor_list, governor_list)
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.
58 static struct cpufreq_driver *cpufreq_driver;
59 static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
60 static DEFINE_RWLOCK(cpufreq_driver_lock);
62 /* Flag to suspend/resume CPUFreq governors */
63 static bool cpufreq_suspended;
65 static inline bool has_target(void)
67 return cpufreq_driver->target_index || cpufreq_driver->target;
70 /* internal prototypes */
71 static unsigned int __cpufreq_get(struct cpufreq_policy *policy);
72 static int cpufreq_init_governor(struct cpufreq_policy *policy);
73 static void cpufreq_exit_governor(struct cpufreq_policy *policy);
74 static int cpufreq_start_governor(struct cpufreq_policy *policy);
75 static void cpufreq_stop_governor(struct cpufreq_policy *policy);
76 static void cpufreq_governor_limits(struct cpufreq_policy *policy);
77 static int cpufreq_set_policy(struct cpufreq_policy *policy,
78 struct cpufreq_governor *new_gov,
79 unsigned int new_pol);
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.
88 static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
89 SRCU_NOTIFIER_HEAD_STATIC(cpufreq_transition_notifier_list);
91 static int off __read_mostly;
92 static int cpufreq_disabled(void)
96 void disable_cpufreq(void)
100 static DEFINE_MUTEX(cpufreq_governor_mutex);
102 bool have_governor_per_policy(void)
104 return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
106 EXPORT_SYMBOL_GPL(have_governor_per_policy);
108 struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
110 if (have_governor_per_policy())
111 return &policy->kobj;
113 return cpufreq_global_kobject;
115 EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
117 static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
123 cur_wall_time = jiffies64_to_nsecs(get_jiffies_64());
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];
132 idle_time = cur_wall_time - busy_time;
134 *wall = div_u64(cur_wall_time, NSEC_PER_USEC);
136 return div_u64(idle_time, NSEC_PER_USEC);
139 u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
141 u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
143 if (idle_time == -1ULL)
144 return get_cpu_idle_time_jiffy(cpu, wall);
146 idle_time += get_cpu_iowait_time_us(cpu, wall);
150 EXPORT_SYMBOL_GPL(get_cpu_idle_time);
152 __weak void arch_set_freq_scale(struct cpumask *cpus, unsigned long cur_freq,
153 unsigned long max_freq)
156 EXPORT_SYMBOL_GPL(arch_set_freq_scale);
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
165 void cpufreq_generic_init(struct cpufreq_policy *policy,
166 struct cpufreq_frequency_table *table,
167 unsigned int transition_latency)
169 policy->freq_table = table;
170 policy->cpuinfo.transition_latency = transition_latency;
173 * The driver only supports the SMP configuration where all processors
174 * share the clock and voltage and clock.
176 cpumask_setall(policy->cpus);
178 EXPORT_SYMBOL_GPL(cpufreq_generic_init);
180 struct cpufreq_policy *cpufreq_cpu_get_raw(unsigned int cpu)
182 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
184 return policy && cpumask_test_cpu(cpu, policy->cpus) ? policy : NULL;
186 EXPORT_SYMBOL_GPL(cpufreq_cpu_get_raw);
188 unsigned int cpufreq_generic_get(unsigned int cpu)
190 struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);
192 if (!policy || IS_ERR(policy->clk)) {
193 pr_err("%s: No %s associated to cpu: %d\n",
194 __func__, policy ? "clk" : "policy", cpu);
198 return clk_get_rate(policy->clk) / 1000;
200 EXPORT_SYMBOL_GPL(cpufreq_generic_get);
203 * cpufreq_cpu_get - Return policy for a CPU and mark it as busy.
204 * @cpu: CPU to find the policy for.
206 * 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.
210 * 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.
213 struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
215 struct cpufreq_policy *policy = NULL;
218 if (WARN_ON(cpu >= nr_cpu_ids))
221 /* get the cpufreq driver */
222 read_lock_irqsave(&cpufreq_driver_lock, flags);
224 if (cpufreq_driver) {
226 policy = cpufreq_cpu_get_raw(cpu);
228 kobject_get(&policy->kobj);
231 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
235 EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
238 * cpufreq_cpu_put - Decrement kobject usage counter for cpufreq policy.
239 * @policy: cpufreq policy returned by cpufreq_cpu_get().
241 void cpufreq_cpu_put(struct cpufreq_policy *policy)
243 kobject_put(&policy->kobj);
245 EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
248 * cpufreq_cpu_release - Unlock a policy and decrement its usage counter.
249 * @policy: cpufreq policy returned by cpufreq_cpu_acquire().
251 void cpufreq_cpu_release(struct cpufreq_policy *policy)
253 if (WARN_ON(!policy))
256 lockdep_assert_held(&policy->rwsem);
258 up_write(&policy->rwsem);
260 cpufreq_cpu_put(policy);
264 * cpufreq_cpu_acquire - Find policy for a CPU, mark it as busy and lock it.
265 * @cpu: CPU to find the policy for.
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.
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
275 struct cpufreq_policy *cpufreq_cpu_acquire(unsigned int cpu)
277 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
282 down_write(&policy->rwsem);
284 if (policy_is_inactive(policy)) {
285 cpufreq_cpu_release(policy);
292 /*********************************************************************
293 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
294 *********************************************************************/
297 * adjust_jiffies - adjust the system "loops_per_jiffy"
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.
304 static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
307 static unsigned long l_p_j_ref;
308 static unsigned int l_p_j_ref_freq;
310 if (ci->flags & CPUFREQ_CONST_LOOPS)
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);
319 if (val == CPUFREQ_POSTCHANGE && ci->old != ci->new) {
320 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
322 pr_debug("scaling loops_per_jiffy to %lu for frequency %u kHz\n",
323 loops_per_jiffy, ci->new);
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.
334 * This function calls the transition notifiers and the "adjust_jiffies"
335 * function. It is called twice on all CPU frequency changes that have
338 static void cpufreq_notify_transition(struct cpufreq_policy *policy,
339 struct cpufreq_freqs *freqs,
344 BUG_ON(irqs_disabled());
346 if (cpufreq_disabled())
349 freqs->policy = policy;
350 freqs->flags = cpufreq_driver->flags;
351 pr_debug("notification %u of frequency transition to %u kHz\n",
355 case CPUFREQ_PRECHANGE:
357 * Detect if the driver reported a value as "old frequency"
358 * which is not equal to what the cpufreq core thinks is
361 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;
367 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
368 CPUFREQ_PRECHANGE, freqs);
370 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
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));
378 for_each_cpu(cpu, policy->cpus)
379 trace_cpu_frequency(freqs->new, cpu);
381 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
382 CPUFREQ_POSTCHANGE, freqs);
384 cpufreq_stats_record_transition(policy, freqs->new);
385 policy->cur = freqs->new;
389 /* Do post notifications when there are chances that transition has failed */
390 static void cpufreq_notify_post_transition(struct cpufreq_policy *policy,
391 struct cpufreq_freqs *freqs, int transition_failed)
393 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
394 if (!transition_failed)
397 swap(freqs->old, freqs->new);
398 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
399 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
402 void cpufreq_freq_transition_begin(struct cpufreq_policy *policy,
403 struct cpufreq_freqs *freqs)
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.
414 WARN_ON(!(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION)
415 && current == policy->transition_task);
418 wait_event(policy->transition_wait, !policy->transition_ongoing);
420 spin_lock(&policy->transition_lock);
422 if (unlikely(policy->transition_ongoing)) {
423 spin_unlock(&policy->transition_lock);
427 policy->transition_ongoing = true;
428 policy->transition_task = current;
430 spin_unlock(&policy->transition_lock);
432 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
434 EXPORT_SYMBOL_GPL(cpufreq_freq_transition_begin);
436 void cpufreq_freq_transition_end(struct cpufreq_policy *policy,
437 struct cpufreq_freqs *freqs, int transition_failed)
439 if (WARN_ON(!policy->transition_ongoing))
442 cpufreq_notify_post_transition(policy, freqs, transition_failed);
444 policy->transition_ongoing = false;
445 policy->transition_task = NULL;
447 wake_up(&policy->transition_wait);
449 EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end);
452 * Fast frequency switching status count. Positive means "enabled", negative
453 * means "disabled" and 0 means "not decided yet".
455 static int cpufreq_fast_switch_count;
456 static DEFINE_MUTEX(cpufreq_fast_switch_lock);
458 static void cpufreq_list_transition_notifiers(void)
460 struct notifier_block *nb;
462 pr_info("Registered transition notifiers:\n");
464 mutex_lock(&cpufreq_transition_notifier_list.mutex);
466 for (nb = cpufreq_transition_notifier_list.head; nb; nb = nb->next)
467 pr_info("%pS\n", nb->notifier_call);
469 mutex_unlock(&cpufreq_transition_notifier_list.mutex);
473 * cpufreq_enable_fast_switch - Enable fast frequency switching for policy.
474 * @policy: cpufreq policy to enable fast frequency switching for.
476 * Try to enable fast frequency switching for @policy.
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.
483 void cpufreq_enable_fast_switch(struct cpufreq_policy *policy)
485 lockdep_assert_held(&policy->rwsem);
487 if (!policy->fast_switch_possible)
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;
495 pr_warn("CPU%u: Fast frequency switching not enabled\n",
497 cpufreq_list_transition_notifiers();
499 mutex_unlock(&cpufreq_fast_switch_lock);
501 EXPORT_SYMBOL_GPL(cpufreq_enable_fast_switch);
504 * cpufreq_disable_fast_switch - Disable fast frequency switching for policy.
505 * @policy: cpufreq policy to disable fast frequency switching for.
507 void cpufreq_disable_fast_switch(struct cpufreq_policy *policy)
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--;
515 mutex_unlock(&cpufreq_fast_switch_lock);
517 EXPORT_SYMBOL_GPL(cpufreq_disable_fast_switch);
520 * cpufreq_driver_resolve_freq - Map a target frequency to a driver-supported
522 * @target_freq: target frequency to resolve.
524 * The target to driver frequency mapping is cached in the policy.
526 * Return: Lowest driver-supported frequency greater than or equal to the
527 * given target_freq, subject to policy (min/max) and driver limitations.
529 unsigned int cpufreq_driver_resolve_freq(struct cpufreq_policy *policy,
530 unsigned int target_freq)
532 target_freq = clamp_val(target_freq, policy->min, policy->max);
533 policy->cached_target_freq = target_freq;
535 if (cpufreq_driver->target_index) {
538 idx = cpufreq_frequency_table_target(policy, target_freq,
540 policy->cached_resolved_idx = idx;
541 return policy->freq_table[idx].frequency;
544 if (cpufreq_driver->resolve_freq)
545 return cpufreq_driver->resolve_freq(policy, target_freq);
549 EXPORT_SYMBOL_GPL(cpufreq_driver_resolve_freq);
551 unsigned int cpufreq_policy_transition_delay_us(struct cpufreq_policy *policy)
553 unsigned int latency;
555 if (policy->transition_delay_us)
556 return policy->transition_delay_us;
558 latency = policy->cpuinfo.transition_latency / NSEC_PER_USEC;
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.
566 * Cap the default transition delay to 10 ms, which seems to be
567 * a reasonable amount of time after which we should reevaluate
570 return min(latency * LATENCY_MULTIPLIER, (unsigned int)10000);
573 return LATENCY_MULTIPLIER;
575 EXPORT_SYMBOL_GPL(cpufreq_policy_transition_delay_us);
577 /*********************************************************************
579 *********************************************************************/
580 static ssize_t show_boost(struct kobject *kobj,
581 struct kobj_attribute *attr, char *buf)
583 return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
586 static ssize_t store_boost(struct kobject *kobj, struct kobj_attribute *attr,
587 const char *buf, size_t count)
591 ret = sscanf(buf, "%d", &enable);
592 if (ret != 1 || enable < 0 || enable > 1)
595 if (cpufreq_boost_trigger_state(enable)) {
596 pr_err("%s: Cannot %s BOOST!\n",
597 __func__, enable ? "enable" : "disable");
601 pr_debug("%s: cpufreq BOOST %s\n",
602 __func__, enable ? "enabled" : "disabled");
606 define_one_global_rw(boost);
608 static struct cpufreq_governor *find_governor(const char *str_governor)
610 struct cpufreq_governor *t;
613 if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN))
619 static unsigned int cpufreq_parse_policy(char *str_governor)
621 if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN))
622 return CPUFREQ_POLICY_PERFORMANCE;
624 if (!strncasecmp(str_governor, "powersave", CPUFREQ_NAME_LEN))
625 return CPUFREQ_POLICY_POWERSAVE;
627 return CPUFREQ_POLICY_UNKNOWN;
631 * cpufreq_parse_governor - parse a governor string only for has_target()
632 * @str_governor: Governor name.
634 static struct cpufreq_governor *cpufreq_parse_governor(char *str_governor)
636 struct cpufreq_governor *t;
638 mutex_lock(&cpufreq_governor_mutex);
640 t = find_governor(str_governor);
644 mutex_unlock(&cpufreq_governor_mutex);
646 ret = request_module("cpufreq_%s", str_governor);
650 mutex_lock(&cpufreq_governor_mutex);
652 t = find_governor(str_governor);
654 if (t && !try_module_get(t->owner))
657 mutex_unlock(&cpufreq_governor_mutex);
663 * cpufreq_per_cpu_attr_read() / show_##file_name() -
664 * print out cpufreq information
666 * Write out information from cpufreq_driver->policy[cpu]; object must be
670 #define show_one(file_name, object) \
671 static ssize_t show_##file_name \
672 (struct cpufreq_policy *policy, char *buf) \
674 return sprintf(buf, "%u\n", policy->object); \
677 show_one(cpuinfo_min_freq, cpuinfo.min_freq);
678 show_one(cpuinfo_max_freq, cpuinfo.max_freq);
679 show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
680 show_one(scaling_min_freq, min);
681 show_one(scaling_max_freq, max);
683 __weak unsigned int arch_freq_get_on_cpu(int cpu)
688 static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf)
693 freq = arch_freq_get_on_cpu(policy->cpu);
695 ret = sprintf(buf, "%u\n", freq);
696 else if (cpufreq_driver && cpufreq_driver->setpolicy &&
698 ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu));
700 ret = sprintf(buf, "%u\n", policy->cur);
705 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
707 #define store_one(file_name, object) \
708 static ssize_t store_##file_name \
709 (struct cpufreq_policy *policy, const char *buf, size_t count) \
714 ret = sscanf(buf, "%lu", &val); \
718 ret = freq_qos_update_request(policy->object##_freq_req, val);\
719 return ret >= 0 ? count : ret; \
722 store_one(scaling_min_freq, min);
723 store_one(scaling_max_freq, max);
726 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
728 static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
731 unsigned int cur_freq = __cpufreq_get(policy);
734 return sprintf(buf, "%u\n", cur_freq);
736 return sprintf(buf, "<unknown>\n");
740 * show_scaling_governor - show the current policy for the specified CPU
742 static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
744 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
745 return sprintf(buf, "powersave\n");
746 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
747 return sprintf(buf, "performance\n");
748 else if (policy->governor)
749 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
750 policy->governor->name);
755 * store_scaling_governor - store policy for the specified CPU
757 static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
758 const char *buf, size_t count)
760 char str_governor[16];
763 ret = sscanf(buf, "%15s", str_governor);
767 if (cpufreq_driver->setpolicy) {
768 unsigned int new_pol;
770 new_pol = cpufreq_parse_policy(str_governor);
774 ret = cpufreq_set_policy(policy, NULL, new_pol);
776 struct cpufreq_governor *new_gov;
778 new_gov = cpufreq_parse_governor(str_governor);
782 ret = cpufreq_set_policy(policy, new_gov,
783 CPUFREQ_POLICY_UNKNOWN);
785 module_put(new_gov->owner);
788 return ret ? ret : count;
792 * show_scaling_driver - show the cpufreq driver currently loaded
794 static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
796 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
800 * show_scaling_available_governors - show the available CPUfreq governors
802 static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
806 struct cpufreq_governor *t;
809 i += sprintf(buf, "performance powersave");
813 for_each_governor(t) {
814 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
815 - (CPUFREQ_NAME_LEN + 2)))
817 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
820 i += sprintf(&buf[i], "\n");
824 ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
829 for_each_cpu(cpu, mask) {
831 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
832 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
833 if (i >= (PAGE_SIZE - 5))
836 i += sprintf(&buf[i], "\n");
839 EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
842 * show_related_cpus - show the CPUs affected by each transition even if
843 * hw coordination is in use
845 static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
847 return cpufreq_show_cpus(policy->related_cpus, buf);
851 * show_affected_cpus - show the CPUs affected by each transition
853 static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
855 return cpufreq_show_cpus(policy->cpus, buf);
858 static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
859 const char *buf, size_t count)
861 unsigned int freq = 0;
864 if (!policy->governor || !policy->governor->store_setspeed)
867 ret = sscanf(buf, "%u", &freq);
871 policy->governor->store_setspeed(policy, freq);
876 static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
878 if (!policy->governor || !policy->governor->show_setspeed)
879 return sprintf(buf, "<unsupported>\n");
881 return policy->governor->show_setspeed(policy, buf);
885 * show_bios_limit - show the current cpufreq HW/BIOS limitation
887 static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
891 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
893 return sprintf(buf, "%u\n", limit);
894 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
897 cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
898 cpufreq_freq_attr_ro(cpuinfo_min_freq);
899 cpufreq_freq_attr_ro(cpuinfo_max_freq);
900 cpufreq_freq_attr_ro(cpuinfo_transition_latency);
901 cpufreq_freq_attr_ro(scaling_available_governors);
902 cpufreq_freq_attr_ro(scaling_driver);
903 cpufreq_freq_attr_ro(scaling_cur_freq);
904 cpufreq_freq_attr_ro(bios_limit);
905 cpufreq_freq_attr_ro(related_cpus);
906 cpufreq_freq_attr_ro(affected_cpus);
907 cpufreq_freq_attr_rw(scaling_min_freq);
908 cpufreq_freq_attr_rw(scaling_max_freq);
909 cpufreq_freq_attr_rw(scaling_governor);
910 cpufreq_freq_attr_rw(scaling_setspeed);
912 static struct attribute *default_attrs[] = {
913 &cpuinfo_min_freq.attr,
914 &cpuinfo_max_freq.attr,
915 &cpuinfo_transition_latency.attr,
916 &scaling_min_freq.attr,
917 &scaling_max_freq.attr,
920 &scaling_governor.attr,
921 &scaling_driver.attr,
922 &scaling_available_governors.attr,
923 &scaling_setspeed.attr,
927 #define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
928 #define to_attr(a) container_of(a, struct freq_attr, attr)
930 static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
932 struct cpufreq_policy *policy = to_policy(kobj);
933 struct freq_attr *fattr = to_attr(attr);
939 down_read(&policy->rwsem);
940 ret = fattr->show(policy, buf);
941 up_read(&policy->rwsem);
946 static ssize_t store(struct kobject *kobj, struct attribute *attr,
947 const char *buf, size_t count)
949 struct cpufreq_policy *policy = to_policy(kobj);
950 struct freq_attr *fattr = to_attr(attr);
951 ssize_t ret = -EINVAL;
957 * cpus_read_trylock() is used here to work around a circular lock
958 * dependency problem with respect to the cpufreq_register_driver().
960 if (!cpus_read_trylock())
963 if (cpu_online(policy->cpu)) {
964 down_write(&policy->rwsem);
965 ret = fattr->store(policy, buf, count);
966 up_write(&policy->rwsem);
974 static void cpufreq_sysfs_release(struct kobject *kobj)
976 struct cpufreq_policy *policy = to_policy(kobj);
977 pr_debug("last reference is dropped\n");
978 complete(&policy->kobj_unregister);
981 static const struct sysfs_ops sysfs_ops = {
986 static struct kobj_type ktype_cpufreq = {
987 .sysfs_ops = &sysfs_ops,
988 .default_attrs = default_attrs,
989 .release = cpufreq_sysfs_release,
992 static void add_cpu_dev_symlink(struct cpufreq_policy *policy, unsigned int cpu)
994 struct device *dev = get_cpu_device(cpu);
999 if (cpumask_test_and_set_cpu(cpu, policy->real_cpus))
1002 dev_dbg(dev, "%s: Adding symlink\n", __func__);
1003 if (sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq"))
1004 dev_err(dev, "cpufreq symlink creation failed\n");
1007 static void remove_cpu_dev_symlink(struct cpufreq_policy *policy,
1010 dev_dbg(dev, "%s: Removing symlink\n", __func__);
1011 sysfs_remove_link(&dev->kobj, "cpufreq");
1014 static int cpufreq_add_dev_interface(struct cpufreq_policy *policy)
1016 struct freq_attr **drv_attr;
1019 /* set up files for this cpu device */
1020 drv_attr = cpufreq_driver->attr;
1021 while (drv_attr && *drv_attr) {
1022 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
1027 if (cpufreq_driver->get) {
1028 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
1033 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
1037 if (cpufreq_driver->bios_limit) {
1038 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
1046 __weak struct cpufreq_governor *cpufreq_default_governor(void)
1051 static int cpufreq_init_policy(struct cpufreq_policy *policy)
1053 struct cpufreq_governor *def_gov = cpufreq_default_governor();
1054 struct cpufreq_governor *gov = NULL;
1055 unsigned int pol = CPUFREQ_POLICY_UNKNOWN;
1058 /* Update policy governor to the one used before hotplug. */
1059 gov = find_governor(policy->last_governor);
1061 pr_debug("Restoring governor %s for cpu %d\n",
1062 policy->governor->name, policy->cpu);
1063 } else if (def_gov) {
1069 /* Use the default policy if there is no last_policy. */
1070 if (policy->last_policy) {
1071 pol = policy->last_policy;
1072 } else if (def_gov) {
1073 pol = cpufreq_parse_policy(def_gov->name);
1075 * In case the default governor is neiter "performance"
1076 * nor "powersave", fall back to the initial policy
1077 * value set by the driver.
1079 if (pol == CPUFREQ_POLICY_UNKNOWN)
1080 pol = policy->policy;
1082 if (pol != CPUFREQ_POLICY_PERFORMANCE &&
1083 pol != CPUFREQ_POLICY_POWERSAVE)
1087 return cpufreq_set_policy(policy, gov, pol);
1090 static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
1094 /* Has this CPU been taken care of already? */
1095 if (cpumask_test_cpu(cpu, policy->cpus))
1098 down_write(&policy->rwsem);
1100 cpufreq_stop_governor(policy);
1102 cpumask_set_cpu(cpu, policy->cpus);
1105 ret = cpufreq_start_governor(policy);
1107 pr_err("%s: Failed to start governor\n", __func__);
1109 up_write(&policy->rwsem);
1113 void refresh_frequency_limits(struct cpufreq_policy *policy)
1115 if (!policy_is_inactive(policy)) {
1116 pr_debug("updating policy for CPU %u\n", policy->cpu);
1118 cpufreq_set_policy(policy, policy->governor, policy->policy);
1121 EXPORT_SYMBOL(refresh_frequency_limits);
1123 static void handle_update(struct work_struct *work)
1125 struct cpufreq_policy *policy =
1126 container_of(work, struct cpufreq_policy, update);
1128 pr_debug("handle_update for cpu %u called\n", policy->cpu);
1129 down_write(&policy->rwsem);
1130 refresh_frequency_limits(policy);
1131 up_write(&policy->rwsem);
1134 static int cpufreq_notifier_min(struct notifier_block *nb, unsigned long freq,
1137 struct cpufreq_policy *policy = container_of(nb, struct cpufreq_policy, nb_min);
1139 schedule_work(&policy->update);
1143 static int cpufreq_notifier_max(struct notifier_block *nb, unsigned long freq,
1146 struct cpufreq_policy *policy = container_of(nb, struct cpufreq_policy, nb_max);
1148 schedule_work(&policy->update);
1152 static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy)
1154 struct kobject *kobj;
1155 struct completion *cmp;
1157 down_write(&policy->rwsem);
1158 cpufreq_stats_free_table(policy);
1159 kobj = &policy->kobj;
1160 cmp = &policy->kobj_unregister;
1161 up_write(&policy->rwsem);
1165 * We need to make sure that the underlying kobj is
1166 * actually not referenced anymore by anybody before we
1167 * proceed with unloading.
1169 pr_debug("waiting for dropping of refcount\n");
1170 wait_for_completion(cmp);
1171 pr_debug("wait complete\n");
1174 static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu)
1176 struct cpufreq_policy *policy;
1177 struct device *dev = get_cpu_device(cpu);
1183 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
1187 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
1188 goto err_free_policy;
1190 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
1191 goto err_free_cpumask;
1193 if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL))
1194 goto err_free_rcpumask;
1196 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
1197 cpufreq_global_kobject, "policy%u", cpu);
1199 dev_err(dev, "%s: failed to init policy->kobj: %d\n", __func__, ret);
1201 * The entire policy object will be freed below, but the extra
1202 * memory allocated for the kobject name needs to be freed by
1203 * releasing the kobject.
1205 kobject_put(&policy->kobj);
1206 goto err_free_real_cpus;
1209 freq_constraints_init(&policy->constraints);
1211 policy->nb_min.notifier_call = cpufreq_notifier_min;
1212 policy->nb_max.notifier_call = cpufreq_notifier_max;
1214 ret = freq_qos_add_notifier(&policy->constraints, FREQ_QOS_MIN,
1217 dev_err(dev, "Failed to register MIN QoS notifier: %d (%*pbl)\n",
1218 ret, cpumask_pr_args(policy->cpus));
1219 goto err_kobj_remove;
1222 ret = freq_qos_add_notifier(&policy->constraints, FREQ_QOS_MAX,
1225 dev_err(dev, "Failed to register MAX QoS notifier: %d (%*pbl)\n",
1226 ret, cpumask_pr_args(policy->cpus));
1227 goto err_min_qos_notifier;
1230 INIT_LIST_HEAD(&policy->policy_list);
1231 init_rwsem(&policy->rwsem);
1232 spin_lock_init(&policy->transition_lock);
1233 init_waitqueue_head(&policy->transition_wait);
1234 init_completion(&policy->kobj_unregister);
1235 INIT_WORK(&policy->update, handle_update);
1240 err_min_qos_notifier:
1241 freq_qos_remove_notifier(&policy->constraints, FREQ_QOS_MIN,
1244 cpufreq_policy_put_kobj(policy);
1246 free_cpumask_var(policy->real_cpus);
1248 free_cpumask_var(policy->related_cpus);
1250 free_cpumask_var(policy->cpus);
1257 static void cpufreq_policy_free(struct cpufreq_policy *policy)
1259 unsigned long flags;
1262 /* Remove policy from list */
1263 write_lock_irqsave(&cpufreq_driver_lock, flags);
1264 list_del(&policy->policy_list);
1266 for_each_cpu(cpu, policy->related_cpus)
1267 per_cpu(cpufreq_cpu_data, cpu) = NULL;
1268 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1270 freq_qos_remove_notifier(&policy->constraints, FREQ_QOS_MAX,
1272 freq_qos_remove_notifier(&policy->constraints, FREQ_QOS_MIN,
1275 /* Cancel any pending policy->update work before freeing the policy. */
1276 cancel_work_sync(&policy->update);
1278 if (policy->max_freq_req) {
1280 * CPUFREQ_CREATE_POLICY notification is sent only after
1281 * successfully adding max_freq_req request.
1283 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1284 CPUFREQ_REMOVE_POLICY, policy);
1285 freq_qos_remove_request(policy->max_freq_req);
1288 freq_qos_remove_request(policy->min_freq_req);
1289 kfree(policy->min_freq_req);
1291 cpufreq_policy_put_kobj(policy);
1292 free_cpumask_var(policy->real_cpus);
1293 free_cpumask_var(policy->related_cpus);
1294 free_cpumask_var(policy->cpus);
1298 static int cpufreq_online(unsigned int cpu)
1300 struct cpufreq_policy *policy;
1302 unsigned long flags;
1306 pr_debug("%s: bringing CPU%u online\n", __func__, cpu);
1308 /* Check if this CPU already has a policy to manage it */
1309 policy = per_cpu(cpufreq_cpu_data, cpu);
1311 WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus));
1312 if (!policy_is_inactive(policy))
1313 return cpufreq_add_policy_cpu(policy, cpu);
1315 /* This is the only online CPU for the policy. Start over. */
1317 down_write(&policy->rwsem);
1319 policy->governor = NULL;
1320 up_write(&policy->rwsem);
1323 policy = cpufreq_policy_alloc(cpu);
1328 if (!new_policy && cpufreq_driver->online) {
1329 ret = cpufreq_driver->online(policy);
1331 pr_debug("%s: %d: initialization failed\n", __func__,
1333 goto out_exit_policy;
1336 /* Recover policy->cpus using related_cpus */
1337 cpumask_copy(policy->cpus, policy->related_cpus);
1339 cpumask_copy(policy->cpus, cpumask_of(cpu));
1342 * Call driver. From then on the cpufreq must be able
1343 * to accept all calls to ->verify and ->setpolicy for this CPU.
1345 ret = cpufreq_driver->init(policy);
1347 pr_debug("%s: %d: initialization failed\n", __func__,
1349 goto out_free_policy;
1352 ret = cpufreq_table_validate_and_sort(policy);
1354 goto out_exit_policy;
1356 /* related_cpus should at least include policy->cpus. */
1357 cpumask_copy(policy->related_cpus, policy->cpus);
1360 down_write(&policy->rwsem);
1362 * affected cpus must always be the one, which are online. We aren't
1363 * managing offline cpus here.
1365 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1368 for_each_cpu(j, policy->related_cpus) {
1369 per_cpu(cpufreq_cpu_data, j) = policy;
1370 add_cpu_dev_symlink(policy, j);
1373 policy->min_freq_req = kzalloc(2 * sizeof(*policy->min_freq_req),
1375 if (!policy->min_freq_req)
1376 goto out_destroy_policy;
1378 ret = freq_qos_add_request(&policy->constraints,
1379 policy->min_freq_req, FREQ_QOS_MIN,
1383 * So we don't call freq_qos_remove_request() for an
1384 * uninitialized request.
1386 kfree(policy->min_freq_req);
1387 policy->min_freq_req = NULL;
1388 goto out_destroy_policy;
1392 * This must be initialized right here to avoid calling
1393 * freq_qos_remove_request() on uninitialized request in case
1396 policy->max_freq_req = policy->min_freq_req + 1;
1398 ret = freq_qos_add_request(&policy->constraints,
1399 policy->max_freq_req, FREQ_QOS_MAX,
1402 policy->max_freq_req = NULL;
1403 goto out_destroy_policy;
1406 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1407 CPUFREQ_CREATE_POLICY, policy);
1410 if (cpufreq_driver->get && has_target()) {
1411 policy->cur = cpufreq_driver->get(policy->cpu);
1413 pr_err("%s: ->get() failed\n", __func__);
1414 goto out_destroy_policy;
1419 * Sometimes boot loaders set CPU frequency to a value outside of
1420 * frequency table present with cpufreq core. In such cases CPU might be
1421 * unstable if it has to run on that frequency for long duration of time
1422 * and so its better to set it to a frequency which is specified in
1423 * freq-table. This also makes cpufreq stats inconsistent as
1424 * cpufreq-stats would fail to register because current frequency of CPU
1425 * isn't found in freq-table.
1427 * Because we don't want this change to effect boot process badly, we go
1428 * for the next freq which is >= policy->cur ('cur' must be set by now,
1429 * otherwise we will end up setting freq to lowest of the table as 'cur'
1430 * is initialized to zero).
1432 * We are passing target-freq as "policy->cur - 1" otherwise
1433 * __cpufreq_driver_target() would simply fail, as policy->cur will be
1434 * equal to target-freq.
1436 if ((cpufreq_driver->flags & CPUFREQ_NEED_INITIAL_FREQ_CHECK)
1438 /* Are we running at unknown frequency ? */
1439 ret = cpufreq_frequency_table_get_index(policy, policy->cur);
1440 if (ret == -EINVAL) {
1441 /* Warn user and fix it */
1442 pr_warn("%s: CPU%d: Running at unlisted freq: %u KHz\n",
1443 __func__, policy->cpu, policy->cur);
1444 ret = __cpufreq_driver_target(policy, policy->cur - 1,
1445 CPUFREQ_RELATION_L);
1448 * Reaching here after boot in a few seconds may not
1449 * mean that system will remain stable at "unknown"
1450 * frequency for longer duration. Hence, a BUG_ON().
1453 pr_warn("%s: CPU%d: Unlisted initial frequency changed to: %u KHz\n",
1454 __func__, policy->cpu, policy->cur);
1459 ret = cpufreq_add_dev_interface(policy);
1461 goto out_destroy_policy;
1463 cpufreq_stats_create_table(policy);
1465 write_lock_irqsave(&cpufreq_driver_lock, flags);
1466 list_add(&policy->policy_list, &cpufreq_policy_list);
1467 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1470 ret = cpufreq_init_policy(policy);
1472 pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n",
1473 __func__, cpu, ret);
1474 goto out_destroy_policy;
1477 up_write(&policy->rwsem);
1479 kobject_uevent(&policy->kobj, KOBJ_ADD);
1481 /* Callback for handling stuff after policy is ready */
1482 if (cpufreq_driver->ready)
1483 cpufreq_driver->ready(policy);
1485 if (cpufreq_thermal_control_enabled(cpufreq_driver))
1486 policy->cdev = of_cpufreq_cooling_register(policy);
1488 pr_debug("initialization complete\n");
1493 for_each_cpu(j, policy->real_cpus)
1494 remove_cpu_dev_symlink(policy, get_cpu_device(j));
1496 up_write(&policy->rwsem);
1499 if (cpufreq_driver->exit)
1500 cpufreq_driver->exit(policy);
1503 cpufreq_policy_free(policy);
1508 * cpufreq_add_dev - the cpufreq interface for a CPU device.
1510 * @sif: Subsystem interface structure pointer (not used)
1512 static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1514 struct cpufreq_policy *policy;
1515 unsigned cpu = dev->id;
1518 dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu);
1520 if (cpu_online(cpu)) {
1521 ret = cpufreq_online(cpu);
1526 /* Create sysfs link on CPU registration */
1527 policy = per_cpu(cpufreq_cpu_data, cpu);
1529 add_cpu_dev_symlink(policy, cpu);
1534 static int cpufreq_offline(unsigned int cpu)
1536 struct cpufreq_policy *policy;
1539 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
1541 policy = cpufreq_cpu_get_raw(cpu);
1543 pr_debug("%s: No cpu_data found\n", __func__);
1547 down_write(&policy->rwsem);
1549 cpufreq_stop_governor(policy);
1551 cpumask_clear_cpu(cpu, policy->cpus);
1553 if (policy_is_inactive(policy)) {
1555 strncpy(policy->last_governor, policy->governor->name,
1558 policy->last_policy = policy->policy;
1559 } else if (cpu == policy->cpu) {
1560 /* Nominate new CPU */
1561 policy->cpu = cpumask_any(policy->cpus);
1564 /* Start governor again for active policy */
1565 if (!policy_is_inactive(policy)) {
1567 ret = cpufreq_start_governor(policy);
1569 pr_err("%s: Failed to start governor\n", __func__);
1575 if (cpufreq_thermal_control_enabled(cpufreq_driver)) {
1576 cpufreq_cooling_unregister(policy->cdev);
1577 policy->cdev = NULL;
1580 if (cpufreq_driver->stop_cpu)
1581 cpufreq_driver->stop_cpu(policy);
1584 cpufreq_exit_governor(policy);
1587 * Perform the ->offline() during light-weight tear-down, as
1588 * that allows fast recovery when the CPU comes back.
1590 if (cpufreq_driver->offline) {
1591 cpufreq_driver->offline(policy);
1592 } else if (cpufreq_driver->exit) {
1593 cpufreq_driver->exit(policy);
1594 policy->freq_table = NULL;
1598 up_write(&policy->rwsem);
1603 * cpufreq_remove_dev - remove a CPU device
1605 * Removes the cpufreq interface for a CPU device.
1607 static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
1609 unsigned int cpu = dev->id;
1610 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
1615 if (cpu_online(cpu))
1616 cpufreq_offline(cpu);
1618 cpumask_clear_cpu(cpu, policy->real_cpus);
1619 remove_cpu_dev_symlink(policy, dev);
1621 if (cpumask_empty(policy->real_cpus)) {
1622 /* We did light-weight exit earlier, do full tear down now */
1623 if (cpufreq_driver->offline)
1624 cpufreq_driver->exit(policy);
1626 cpufreq_policy_free(policy);
1631 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1633 * @policy: policy managing CPUs
1634 * @new_freq: CPU frequency the CPU actually runs at
1636 * We adjust to current frequency first, and need to clean up later.
1637 * So either call to cpufreq_update_policy() or schedule handle_update()).
1639 static void cpufreq_out_of_sync(struct cpufreq_policy *policy,
1640 unsigned int new_freq)
1642 struct cpufreq_freqs freqs;
1644 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing core thinks of %u, is %u kHz\n",
1645 policy->cur, new_freq);
1647 freqs.old = policy->cur;
1648 freqs.new = new_freq;
1650 cpufreq_freq_transition_begin(policy, &freqs);
1651 cpufreq_freq_transition_end(policy, &freqs, 0);
1654 static unsigned int cpufreq_verify_current_freq(struct cpufreq_policy *policy, bool update)
1656 unsigned int new_freq;
1658 new_freq = cpufreq_driver->get(policy->cpu);
1663 * If fast frequency switching is used with the given policy, the check
1664 * against policy->cur is pointless, so skip it in that case.
1666 if (policy->fast_switch_enabled || !has_target())
1669 if (policy->cur != new_freq) {
1670 cpufreq_out_of_sync(policy, new_freq);
1672 schedule_work(&policy->update);
1679 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
1682 * This is the last known freq, without actually getting it from the driver.
1683 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1685 unsigned int cpufreq_quick_get(unsigned int cpu)
1687 struct cpufreq_policy *policy;
1688 unsigned int ret_freq = 0;
1689 unsigned long flags;
1691 read_lock_irqsave(&cpufreq_driver_lock, flags);
1693 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get) {
1694 ret_freq = cpufreq_driver->get(cpu);
1695 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1699 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1701 policy = cpufreq_cpu_get(cpu);
1703 ret_freq = policy->cur;
1704 cpufreq_cpu_put(policy);
1709 EXPORT_SYMBOL(cpufreq_quick_get);
1712 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1715 * Just return the max possible frequency for a given CPU.
1717 unsigned int cpufreq_quick_get_max(unsigned int cpu)
1719 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1720 unsigned int ret_freq = 0;
1723 ret_freq = policy->max;
1724 cpufreq_cpu_put(policy);
1729 EXPORT_SYMBOL(cpufreq_quick_get_max);
1731 static unsigned int __cpufreq_get(struct cpufreq_policy *policy)
1733 if (unlikely(policy_is_inactive(policy)))
1736 return cpufreq_verify_current_freq(policy, true);
1740 * cpufreq_get - get the current CPU frequency (in kHz)
1743 * Get the CPU current (static) CPU frequency
1745 unsigned int cpufreq_get(unsigned int cpu)
1747 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1748 unsigned int ret_freq = 0;
1751 down_read(&policy->rwsem);
1752 if (cpufreq_driver->get)
1753 ret_freq = __cpufreq_get(policy);
1754 up_read(&policy->rwsem);
1756 cpufreq_cpu_put(policy);
1761 EXPORT_SYMBOL(cpufreq_get);
1763 static struct subsys_interface cpufreq_interface = {
1765 .subsys = &cpu_subsys,
1766 .add_dev = cpufreq_add_dev,
1767 .remove_dev = cpufreq_remove_dev,
1771 * In case platform wants some specific frequency to be configured
1774 int cpufreq_generic_suspend(struct cpufreq_policy *policy)
1778 if (!policy->suspend_freq) {
1779 pr_debug("%s: suspend_freq not defined\n", __func__);
1783 pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1784 policy->suspend_freq);
1786 ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1787 CPUFREQ_RELATION_H);
1789 pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1790 __func__, policy->suspend_freq, ret);
1794 EXPORT_SYMBOL(cpufreq_generic_suspend);
1797 * cpufreq_suspend() - Suspend CPUFreq governors
1799 * Called during system wide Suspend/Hibernate cycles for suspending governors
1800 * as some platforms can't change frequency after this point in suspend cycle.
1801 * Because some of the devices (like: i2c, regulators, etc) they use for
1802 * changing frequency are suspended quickly after this point.
1804 void cpufreq_suspend(void)
1806 struct cpufreq_policy *policy;
1808 if (!cpufreq_driver)
1811 if (!has_target() && !cpufreq_driver->suspend)
1814 pr_debug("%s: Suspending Governors\n", __func__);
1816 for_each_active_policy(policy) {
1818 down_write(&policy->rwsem);
1819 cpufreq_stop_governor(policy);
1820 up_write(&policy->rwsem);
1823 if (cpufreq_driver->suspend && cpufreq_driver->suspend(policy))
1824 pr_err("%s: Failed to suspend driver: %s\n", __func__,
1825 cpufreq_driver->name);
1829 cpufreq_suspended = true;
1833 * cpufreq_resume() - Resume CPUFreq governors
1835 * Called during system wide Suspend/Hibernate cycle for resuming governors that
1836 * are suspended with cpufreq_suspend().
1838 void cpufreq_resume(void)
1840 struct cpufreq_policy *policy;
1843 if (!cpufreq_driver)
1846 if (unlikely(!cpufreq_suspended))
1849 cpufreq_suspended = false;
1851 if (!has_target() && !cpufreq_driver->resume)
1854 pr_debug("%s: Resuming Governors\n", __func__);
1856 for_each_active_policy(policy) {
1857 if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) {
1858 pr_err("%s: Failed to resume driver: %p\n", __func__,
1860 } else if (has_target()) {
1861 down_write(&policy->rwsem);
1862 ret = cpufreq_start_governor(policy);
1863 up_write(&policy->rwsem);
1866 pr_err("%s: Failed to start governor for policy: %p\n",
1873 * cpufreq_get_current_driver - return current driver's name
1875 * Return the name string of the currently loaded cpufreq driver
1878 const char *cpufreq_get_current_driver(void)
1881 return cpufreq_driver->name;
1885 EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
1888 * cpufreq_get_driver_data - return current driver data
1890 * Return the private data of the currently loaded cpufreq
1891 * driver, or NULL if no cpufreq driver is loaded.
1893 void *cpufreq_get_driver_data(void)
1896 return cpufreq_driver->driver_data;
1900 EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);
1902 /*********************************************************************
1903 * NOTIFIER LISTS INTERFACE *
1904 *********************************************************************/
1907 * cpufreq_register_notifier - register a driver with cpufreq
1908 * @nb: notifier function to register
1909 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1911 * Add a driver to one of two lists: either a list of drivers that
1912 * are notified about clock rate changes (once before and once after
1913 * the transition), or a list of drivers that are notified about
1914 * changes in cpufreq policy.
1916 * This function may sleep, and has the same return conditions as
1917 * blocking_notifier_chain_register.
1919 int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1923 if (cpufreq_disabled())
1927 case CPUFREQ_TRANSITION_NOTIFIER:
1928 mutex_lock(&cpufreq_fast_switch_lock);
1930 if (cpufreq_fast_switch_count > 0) {
1931 mutex_unlock(&cpufreq_fast_switch_lock);
1934 ret = srcu_notifier_chain_register(
1935 &cpufreq_transition_notifier_list, nb);
1937 cpufreq_fast_switch_count--;
1939 mutex_unlock(&cpufreq_fast_switch_lock);
1941 case CPUFREQ_POLICY_NOTIFIER:
1942 ret = blocking_notifier_chain_register(
1943 &cpufreq_policy_notifier_list, nb);
1951 EXPORT_SYMBOL(cpufreq_register_notifier);
1954 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1955 * @nb: notifier block to be unregistered
1956 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1958 * Remove a driver from the CPU frequency notifier list.
1960 * This function may sleep, and has the same return conditions as
1961 * blocking_notifier_chain_unregister.
1963 int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1967 if (cpufreq_disabled())
1971 case CPUFREQ_TRANSITION_NOTIFIER:
1972 mutex_lock(&cpufreq_fast_switch_lock);
1974 ret = srcu_notifier_chain_unregister(
1975 &cpufreq_transition_notifier_list, nb);
1976 if (!ret && !WARN_ON(cpufreq_fast_switch_count >= 0))
1977 cpufreq_fast_switch_count++;
1979 mutex_unlock(&cpufreq_fast_switch_lock);
1981 case CPUFREQ_POLICY_NOTIFIER:
1982 ret = blocking_notifier_chain_unregister(
1983 &cpufreq_policy_notifier_list, nb);
1991 EXPORT_SYMBOL(cpufreq_unregister_notifier);
1994 /*********************************************************************
1996 *********************************************************************/
1999 * cpufreq_driver_fast_switch - Carry out a fast CPU frequency switch.
2000 * @policy: cpufreq policy to switch the frequency for.
2001 * @target_freq: New frequency to set (may be approximate).
2003 * Carry out a fast frequency switch without sleeping.
2005 * The driver's ->fast_switch() callback invoked by this function must be
2006 * suitable for being called from within RCU-sched read-side critical sections
2007 * and it is expected to select the minimum available frequency greater than or
2008 * equal to @target_freq (CPUFREQ_RELATION_L).
2010 * This function must not be called if policy->fast_switch_enabled is unset.
2012 * Governors calling this function must guarantee that it will never be invoked
2013 * twice in parallel for the same policy and that it will never be called in
2014 * parallel with either ->target() or ->target_index() for the same policy.
2016 * Returns the actual frequency set for the CPU.
2018 * If 0 is returned by the driver's ->fast_switch() callback to indicate an
2019 * error condition, the hardware configuration must be preserved.
2021 unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy,
2022 unsigned int target_freq)
2024 target_freq = clamp_val(target_freq, policy->min, policy->max);
2026 return cpufreq_driver->fast_switch(policy, target_freq);
2028 EXPORT_SYMBOL_GPL(cpufreq_driver_fast_switch);
2030 /* Must set freqs->new to intermediate frequency */
2031 static int __target_intermediate(struct cpufreq_policy *policy,
2032 struct cpufreq_freqs *freqs, int index)
2036 freqs->new = cpufreq_driver->get_intermediate(policy, index);
2038 /* We don't need to switch to intermediate freq */
2042 pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
2043 __func__, policy->cpu, freqs->old, freqs->new);
2045 cpufreq_freq_transition_begin(policy, freqs);
2046 ret = cpufreq_driver->target_intermediate(policy, index);
2047 cpufreq_freq_transition_end(policy, freqs, ret);
2050 pr_err("%s: Failed to change to intermediate frequency: %d\n",
2056 static int __target_index(struct cpufreq_policy *policy, int index)
2058 struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
2059 unsigned int intermediate_freq = 0;
2060 unsigned int newfreq = policy->freq_table[index].frequency;
2061 int retval = -EINVAL;
2064 if (newfreq == policy->cur)
2067 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
2069 /* Handle switching to intermediate frequency */
2070 if (cpufreq_driver->get_intermediate) {
2071 retval = __target_intermediate(policy, &freqs, index);
2075 intermediate_freq = freqs.new;
2076 /* Set old freq to intermediate */
2077 if (intermediate_freq)
2078 freqs.old = freqs.new;
2081 freqs.new = newfreq;
2082 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
2083 __func__, policy->cpu, freqs.old, freqs.new);
2085 cpufreq_freq_transition_begin(policy, &freqs);
2088 retval = cpufreq_driver->target_index(policy, index);
2090 pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
2094 cpufreq_freq_transition_end(policy, &freqs, retval);
2097 * Failed after setting to intermediate freq? Driver should have
2098 * reverted back to initial frequency and so should we. Check
2099 * here for intermediate_freq instead of get_intermediate, in
2100 * case we haven't switched to intermediate freq at all.
2102 if (unlikely(retval && intermediate_freq)) {
2103 freqs.old = intermediate_freq;
2104 freqs.new = policy->restore_freq;
2105 cpufreq_freq_transition_begin(policy, &freqs);
2106 cpufreq_freq_transition_end(policy, &freqs, 0);
2113 int __cpufreq_driver_target(struct cpufreq_policy *policy,
2114 unsigned int target_freq,
2115 unsigned int relation)
2117 unsigned int old_target_freq = target_freq;
2120 if (cpufreq_disabled())
2123 /* Make sure that target_freq is within supported range */
2124 target_freq = clamp_val(target_freq, policy->min, policy->max);
2126 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
2127 policy->cpu, target_freq, relation, old_target_freq);
2130 * This might look like a redundant call as we are checking it again
2131 * after finding index. But it is left intentionally for cases where
2132 * exactly same freq is called again and so we can save on few function
2135 if (target_freq == policy->cur)
2138 /* Save last value to restore later on errors */
2139 policy->restore_freq = policy->cur;
2141 if (cpufreq_driver->target)
2142 return cpufreq_driver->target(policy, target_freq, relation);
2144 if (!cpufreq_driver->target_index)
2147 index = cpufreq_frequency_table_target(policy, target_freq, relation);
2149 return __target_index(policy, index);
2151 EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
2153 int cpufreq_driver_target(struct cpufreq_policy *policy,
2154 unsigned int target_freq,
2155 unsigned int relation)
2159 down_write(&policy->rwsem);
2161 ret = __cpufreq_driver_target(policy, target_freq, relation);
2163 up_write(&policy->rwsem);
2167 EXPORT_SYMBOL_GPL(cpufreq_driver_target);
2169 __weak struct cpufreq_governor *cpufreq_fallback_governor(void)
2174 static int cpufreq_init_governor(struct cpufreq_policy *policy)
2178 /* Don't start any governor operations if we are entering suspend */
2179 if (cpufreq_suspended)
2182 * Governor might not be initiated here if ACPI _PPC changed
2183 * notification happened, so check it.
2185 if (!policy->governor)
2188 /* Platform doesn't want dynamic frequency switching ? */
2189 if (policy->governor->dynamic_switching &&
2190 cpufreq_driver->flags & CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING) {
2191 struct cpufreq_governor *gov = cpufreq_fallback_governor();
2194 pr_warn("Can't use %s governor as dynamic switching is disallowed. Fallback to %s governor\n",
2195 policy->governor->name, gov->name);
2196 policy->governor = gov;
2202 if (!try_module_get(policy->governor->owner))
2205 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2207 if (policy->governor->init) {
2208 ret = policy->governor->init(policy);
2210 module_put(policy->governor->owner);
2218 static void cpufreq_exit_governor(struct cpufreq_policy *policy)
2220 if (cpufreq_suspended || !policy->governor)
2223 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2225 if (policy->governor->exit)
2226 policy->governor->exit(policy);
2228 module_put(policy->governor->owner);
2231 static int cpufreq_start_governor(struct cpufreq_policy *policy)
2235 if (cpufreq_suspended)
2238 if (!policy->governor)
2241 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2243 if (cpufreq_driver->get)
2244 cpufreq_verify_current_freq(policy, false);
2246 if (policy->governor->start) {
2247 ret = policy->governor->start(policy);
2252 if (policy->governor->limits)
2253 policy->governor->limits(policy);
2258 static void cpufreq_stop_governor(struct cpufreq_policy *policy)
2260 if (cpufreq_suspended || !policy->governor)
2263 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2265 if (policy->governor->stop)
2266 policy->governor->stop(policy);
2269 static void cpufreq_governor_limits(struct cpufreq_policy *policy)
2271 if (cpufreq_suspended || !policy->governor)
2274 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2276 if (policy->governor->limits)
2277 policy->governor->limits(policy);
2280 int cpufreq_register_governor(struct cpufreq_governor *governor)
2287 if (cpufreq_disabled())
2290 mutex_lock(&cpufreq_governor_mutex);
2293 if (!find_governor(governor->name)) {
2295 list_add(&governor->governor_list, &cpufreq_governor_list);
2298 mutex_unlock(&cpufreq_governor_mutex);
2301 EXPORT_SYMBOL_GPL(cpufreq_register_governor);
2303 void cpufreq_unregister_governor(struct cpufreq_governor *governor)
2305 struct cpufreq_policy *policy;
2306 unsigned long flags;
2311 if (cpufreq_disabled())
2314 /* clear last_governor for all inactive policies */
2315 read_lock_irqsave(&cpufreq_driver_lock, flags);
2316 for_each_inactive_policy(policy) {
2317 if (!strcmp(policy->last_governor, governor->name)) {
2318 policy->governor = NULL;
2319 strcpy(policy->last_governor, "\0");
2322 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
2324 mutex_lock(&cpufreq_governor_mutex);
2325 list_del(&governor->governor_list);
2326 mutex_unlock(&cpufreq_governor_mutex);
2328 EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
2331 /*********************************************************************
2332 * POLICY INTERFACE *
2333 *********************************************************************/
2336 * cpufreq_get_policy - get the current cpufreq_policy
2337 * @policy: struct cpufreq_policy into which the current cpufreq_policy
2340 * Reads the current cpufreq policy.
2342 int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2344 struct cpufreq_policy *cpu_policy;
2348 cpu_policy = cpufreq_cpu_get(cpu);
2352 memcpy(policy, cpu_policy, sizeof(*policy));
2354 cpufreq_cpu_put(cpu_policy);
2357 EXPORT_SYMBOL(cpufreq_get_policy);
2360 * cpufreq_set_policy - Modify cpufreq policy parameters.
2361 * @policy: Policy object to modify.
2362 * @new_gov: Policy governor pointer.
2363 * @new_pol: Policy value (for drivers with built-in governors).
2365 * Invoke the cpufreq driver's ->verify() callback to sanity-check the frequency
2366 * limits to be set for the policy, update @policy with the verified limits
2367 * values and either invoke the driver's ->setpolicy() callback (if present) or
2368 * carry out a governor update for @policy. That is, run the current governor's
2369 * ->limits() callback (if @new_gov points to the same object as the one in
2370 * @policy) or replace the governor for @policy with @new_gov.
2372 * The cpuinfo part of @policy is not updated by this function.
2374 static int cpufreq_set_policy(struct cpufreq_policy *policy,
2375 struct cpufreq_governor *new_gov,
2376 unsigned int new_pol)
2378 struct cpufreq_policy_data new_data;
2379 struct cpufreq_governor *old_gov;
2382 memcpy(&new_data.cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
2383 new_data.freq_table = policy->freq_table;
2384 new_data.cpu = policy->cpu;
2386 * PM QoS framework collects all the requests from users and provide us
2387 * the final aggregated value here.
2389 new_data.min = freq_qos_read_value(&policy->constraints, FREQ_QOS_MIN);
2390 new_data.max = freq_qos_read_value(&policy->constraints, FREQ_QOS_MAX);
2392 pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2393 new_data.cpu, new_data.min, new_data.max);
2395 /* verify the cpu speed can be set within this limit */
2396 ret = cpufreq_driver->verify(&new_data);
2400 policy->min = new_data.min;
2401 policy->max = new_data.max;
2402 trace_cpu_frequency_limits(policy);
2404 policy->cached_target_freq = UINT_MAX;
2406 pr_debug("new min and max freqs are %u - %u kHz\n",
2407 policy->min, policy->max);
2409 if (cpufreq_driver->setpolicy) {
2410 policy->policy = new_pol;
2411 pr_debug("setting range\n");
2412 return cpufreq_driver->setpolicy(policy);
2415 if (new_gov == policy->governor) {
2416 pr_debug("governor limits update\n");
2417 cpufreq_governor_limits(policy);
2421 pr_debug("governor switch\n");
2423 /* save old, working values */
2424 old_gov = policy->governor;
2425 /* end old governor */
2427 cpufreq_stop_governor(policy);
2428 cpufreq_exit_governor(policy);
2431 /* start new governor */
2432 policy->governor = new_gov;
2433 ret = cpufreq_init_governor(policy);
2435 ret = cpufreq_start_governor(policy);
2437 pr_debug("governor change\n");
2438 sched_cpufreq_governor_change(policy, old_gov);
2441 cpufreq_exit_governor(policy);
2444 /* new governor failed, so re-start old one */
2445 pr_debug("starting governor %s failed\n", policy->governor->name);
2447 policy->governor = old_gov;
2448 if (cpufreq_init_governor(policy))
2449 policy->governor = NULL;
2451 cpufreq_start_governor(policy);
2458 * cpufreq_update_policy - Re-evaluate an existing cpufreq policy.
2459 * @cpu: CPU to re-evaluate the policy for.
2461 * Update the current frequency for the cpufreq policy of @cpu and use
2462 * cpufreq_set_policy() to re-apply the min and max limits, which triggers the
2463 * evaluation of policy notifiers and the cpufreq driver's ->verify() callback
2464 * for the policy in question, among other things.
2466 void cpufreq_update_policy(unsigned int cpu)
2468 struct cpufreq_policy *policy = cpufreq_cpu_acquire(cpu);
2474 * BIOS might change freq behind our back
2475 * -> ask driver for current freq and notify governors about a change
2477 if (cpufreq_driver->get && has_target() &&
2478 (cpufreq_suspended || WARN_ON(!cpufreq_verify_current_freq(policy, false))))
2481 refresh_frequency_limits(policy);
2484 cpufreq_cpu_release(policy);
2486 EXPORT_SYMBOL(cpufreq_update_policy);
2489 * cpufreq_update_limits - Update policy limits for a given CPU.
2490 * @cpu: CPU to update the policy limits for.
2492 * Invoke the driver's ->update_limits callback if present or call
2493 * cpufreq_update_policy() for @cpu.
2495 void cpufreq_update_limits(unsigned int cpu)
2497 if (cpufreq_driver->update_limits)
2498 cpufreq_driver->update_limits(cpu);
2500 cpufreq_update_policy(cpu);
2502 EXPORT_SYMBOL_GPL(cpufreq_update_limits);
2504 /*********************************************************************
2506 *********************************************************************/
2507 static int cpufreq_boost_set_sw(int state)
2509 struct cpufreq_policy *policy;
2511 for_each_active_policy(policy) {
2514 if (!policy->freq_table)
2517 ret = cpufreq_frequency_table_cpuinfo(policy,
2518 policy->freq_table);
2520 pr_err("%s: Policy frequency update failed\n",
2525 ret = freq_qos_update_request(policy->max_freq_req, policy->max);
2533 int cpufreq_boost_trigger_state(int state)
2535 unsigned long flags;
2538 if (cpufreq_driver->boost_enabled == state)
2541 write_lock_irqsave(&cpufreq_driver_lock, flags);
2542 cpufreq_driver->boost_enabled = state;
2543 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2545 ret = cpufreq_driver->set_boost(state);
2547 write_lock_irqsave(&cpufreq_driver_lock, flags);
2548 cpufreq_driver->boost_enabled = !state;
2549 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2551 pr_err("%s: Cannot %s BOOST\n",
2552 __func__, state ? "enable" : "disable");
2558 static bool cpufreq_boost_supported(void)
2560 return cpufreq_driver->set_boost;
2563 static int create_boost_sysfs_file(void)
2567 ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
2569 pr_err("%s: cannot register global BOOST sysfs file\n",
2575 static void remove_boost_sysfs_file(void)
2577 if (cpufreq_boost_supported())
2578 sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
2581 int cpufreq_enable_boost_support(void)
2583 if (!cpufreq_driver)
2586 if (cpufreq_boost_supported())
2589 cpufreq_driver->set_boost = cpufreq_boost_set_sw;
2591 /* This will get removed on driver unregister */
2592 return create_boost_sysfs_file();
2594 EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
2596 int cpufreq_boost_enabled(void)
2598 return cpufreq_driver->boost_enabled;
2600 EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
2602 /*********************************************************************
2603 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2604 *********************************************************************/
2605 static enum cpuhp_state hp_online;
2607 static int cpuhp_cpufreq_online(unsigned int cpu)
2609 cpufreq_online(cpu);
2614 static int cpuhp_cpufreq_offline(unsigned int cpu)
2616 cpufreq_offline(cpu);
2622 * cpufreq_register_driver - register a CPU Frequency driver
2623 * @driver_data: A struct cpufreq_driver containing the values#
2624 * submitted by the CPU Frequency driver.
2626 * Registers a CPU Frequency driver to this core code. This code
2627 * returns zero on success, -EEXIST when another driver got here first
2628 * (and isn't unregistered in the meantime).
2631 int cpufreq_register_driver(struct cpufreq_driver *driver_data)
2633 unsigned long flags;
2636 if (cpufreq_disabled())
2640 * The cpufreq core depends heavily on the availability of device
2641 * structure, make sure they are available before proceeding further.
2643 if (!get_cpu_device(0))
2644 return -EPROBE_DEFER;
2646 if (!driver_data || !driver_data->verify || !driver_data->init ||
2647 !(driver_data->setpolicy || driver_data->target_index ||
2648 driver_data->target) ||
2649 (driver_data->setpolicy && (driver_data->target_index ||
2650 driver_data->target)) ||
2651 (!driver_data->get_intermediate != !driver_data->target_intermediate) ||
2652 (!driver_data->online != !driver_data->offline))
2655 pr_debug("trying to register driver %s\n", driver_data->name);
2657 /* Protect against concurrent CPU online/offline. */
2660 write_lock_irqsave(&cpufreq_driver_lock, flags);
2661 if (cpufreq_driver) {
2662 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2666 cpufreq_driver = driver_data;
2667 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2669 if (driver_data->setpolicy)
2670 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2672 if (cpufreq_boost_supported()) {
2673 ret = create_boost_sysfs_file();
2675 goto err_null_driver;
2678 ret = subsys_interface_register(&cpufreq_interface);
2680 goto err_boost_unreg;
2682 if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
2683 list_empty(&cpufreq_policy_list)) {
2684 /* if all ->init() calls failed, unregister */
2686 pr_debug("%s: No CPU initialized for driver %s\n", __func__,
2691 ret = cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ONLINE_DYN,
2693 cpuhp_cpufreq_online,
2694 cpuhp_cpufreq_offline);
2700 pr_debug("driver %s up and running\n", driver_data->name);
2704 subsys_interface_unregister(&cpufreq_interface);
2706 remove_boost_sysfs_file();
2708 write_lock_irqsave(&cpufreq_driver_lock, flags);
2709 cpufreq_driver = NULL;
2710 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2715 EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2718 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2720 * Unregister the current CPUFreq driver. Only call this if you have
2721 * the right to do so, i.e. if you have succeeded in initialising before!
2722 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2723 * currently not initialised.
2725 int cpufreq_unregister_driver(struct cpufreq_driver *driver)
2727 unsigned long flags;
2729 if (!cpufreq_driver || (driver != cpufreq_driver))
2732 pr_debug("unregistering driver %s\n", driver->name);
2734 /* Protect against concurrent cpu hotplug */
2736 subsys_interface_unregister(&cpufreq_interface);
2737 remove_boost_sysfs_file();
2738 cpuhp_remove_state_nocalls_cpuslocked(hp_online);
2740 write_lock_irqsave(&cpufreq_driver_lock, flags);
2742 cpufreq_driver = NULL;
2744 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2749 EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
2751 struct kobject *cpufreq_global_kobject;
2752 EXPORT_SYMBOL(cpufreq_global_kobject);
2754 static int __init cpufreq_core_init(void)
2756 if (cpufreq_disabled())
2759 cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
2760 BUG_ON(!cpufreq_global_kobject);
2764 module_param(off, int, 0444);
2765 core_initcall(cpufreq_core_init);