Merge tag 'sound-fix-4.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[linux-2.6-block.git] / drivers / cpufreq / cpufreq.c
CommitLineData
1da177e4
LT
1/*
2 * linux/drivers/cpufreq/cpufreq.c
3 *
4 * Copyright (C) 2001 Russell King
5 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
bb176f7d 6 * (C) 2013 Viresh Kumar <viresh.kumar@linaro.org>
1da177e4 7 *
c32b6b8e 8 * Oct 2005 - Ashok Raj <ashok.raj@intel.com>
32ee8c3e 9 * Added handling for CPU hotplug
8ff69732
DJ
10 * Feb 2006 - Jacob Shin <jacob.shin@amd.com>
11 * Fix handling for CPU hotplug -- affected CPUs
c32b6b8e 12 *
1da177e4
LT
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
1da177e4
LT
16 */
17
db701151
VK
18#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19
5ff0a268 20#include <linux/cpu.h>
1da177e4
LT
21#include <linux/cpufreq.h>
22#include <linux/delay.h>
1da177e4 23#include <linux/device.h>
5ff0a268
VK
24#include <linux/init.h>
25#include <linux/kernel_stat.h>
26#include <linux/module.h>
3fc54d37 27#include <linux/mutex.h>
5ff0a268 28#include <linux/slab.h>
2f0aea93 29#include <linux/suspend.h>
90de2a4a 30#include <linux/syscore_ops.h>
5ff0a268 31#include <linux/tick.h>
6f4f2723
TR
32#include <trace/events/power.h>
33
b4f0676f 34static LIST_HEAD(cpufreq_policy_list);
f963735a
VK
35
36static inline bool policy_is_inactive(struct cpufreq_policy *policy)
37{
38 return cpumask_empty(policy->cpus);
39}
40
f963735a 41/* Macros to iterate over CPU policies */
fd7dc7e6
EB
42#define for_each_suitable_policy(__policy, __active) \
43 list_for_each_entry(__policy, &cpufreq_policy_list, policy_list) \
44 if ((__active) == !policy_is_inactive(__policy))
f963735a
VK
45
46#define for_each_active_policy(__policy) \
47 for_each_suitable_policy(__policy, true)
48#define for_each_inactive_policy(__policy) \
49 for_each_suitable_policy(__policy, false)
50
51#define for_each_policy(__policy) \
b4f0676f
VK
52 list_for_each_entry(__policy, &cpufreq_policy_list, policy_list)
53
f7b27061
VK
54/* Iterate over governors */
55static LIST_HEAD(cpufreq_governor_list);
56#define for_each_governor(__governor) \
57 list_for_each_entry(__governor, &cpufreq_governor_list, governor_list)
58
1da177e4 59/**
cd878479 60 * The "cpufreq driver" - the arch- or hardware-dependent low
1da177e4
LT
61 * level driver of CPUFreq support, and its spinlock. This lock
62 * also protects the cpufreq_cpu_data array.
63 */
1c3d85dd 64static struct cpufreq_driver *cpufreq_driver;
7a6aedfa 65static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
bb176f7d 66static DEFINE_RWLOCK(cpufreq_driver_lock);
bb176f7d 67
2f0aea93
VK
68/* Flag to suspend/resume CPUFreq governors */
69static bool cpufreq_suspended;
1da177e4 70
9c0ebcf7
VK
71static inline bool has_target(void)
72{
73 return cpufreq_driver->target_index || cpufreq_driver->target;
74}
75
1da177e4 76/* internal prototypes */
d92d50a4 77static unsigned int __cpufreq_get(struct cpufreq_policy *policy);
a92604b4
RW
78static int cpufreq_init_governor(struct cpufreq_policy *policy);
79static void cpufreq_exit_governor(struct cpufreq_policy *policy);
0a300767 80static int cpufreq_start_governor(struct cpufreq_policy *policy);
a92604b4
RW
81static void cpufreq_stop_governor(struct cpufreq_policy *policy);
82static void cpufreq_governor_limits(struct cpufreq_policy *policy);
45482c70 83
1da177e4 84/**
32ee8c3e
DJ
85 * Two notifier lists: the "policy" list is involved in the
86 * validation process for a new CPU frequency policy; the
1da177e4
LT
87 * "transition" list for kernel code that needs to handle
88 * changes to devices when the CPU clock speed changes.
89 * The mutex locks both lists.
90 */
e041c683 91static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
cc85de36 92SRCU_NOTIFIER_HEAD_STATIC(cpufreq_transition_notifier_list);
1da177e4 93
a7b422cd 94static int off __read_mostly;
da584455 95static int cpufreq_disabled(void)
a7b422cd
KRW
96{
97 return off;
98}
99void disable_cpufreq(void)
100{
101 off = 1;
102}
29464f28 103static DEFINE_MUTEX(cpufreq_governor_mutex);
1da177e4 104
4d5dcc42
VK
105bool have_governor_per_policy(void)
106{
0b981e70 107 return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
4d5dcc42 108}
3f869d6d 109EXPORT_SYMBOL_GPL(have_governor_per_policy);
4d5dcc42 110
944e9a03
VK
111struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
112{
113 if (have_governor_per_policy())
114 return &policy->kobj;
115 else
116 return cpufreq_global_kobject;
117}
118EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
119
72a4ce34
VK
120static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
121{
122 u64 idle_time;
123 u64 cur_wall_time;
124 u64 busy_time;
125
7fb1327e 126 cur_wall_time = jiffies64_to_nsecs(get_jiffies_64());
72a4ce34
VK
127
128 busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
129 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
130 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
131 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
132 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
133 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
134
135 idle_time = cur_wall_time - busy_time;
136 if (wall)
7fb1327e 137 *wall = div_u64(cur_wall_time, NSEC_PER_USEC);
72a4ce34 138
7fb1327e 139 return div_u64(idle_time, NSEC_PER_USEC);
72a4ce34
VK
140}
141
142u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
143{
144 u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
145
146 if (idle_time == -1ULL)
147 return get_cpu_idle_time_jiffy(cpu, wall);
148 else if (!io_busy)
149 idle_time += get_cpu_iowait_time_us(cpu, wall);
150
151 return idle_time;
152}
153EXPORT_SYMBOL_GPL(get_cpu_idle_time);
154
e7d5459d
DE
155__weak void arch_set_freq_scale(struct cpumask *cpus, unsigned long cur_freq,
156 unsigned long max_freq)
157{
158}
159EXPORT_SYMBOL_GPL(arch_set_freq_scale);
160
70e9e778
VK
161/*
162 * This is a generic cpufreq init() routine which can be used by cpufreq
163 * drivers of SMP systems. It will do following:
164 * - validate & show freq table passed
165 * - set policies transition latency
166 * - policy->cpus with all possible CPUs
167 */
168int cpufreq_generic_init(struct cpufreq_policy *policy,
169 struct cpufreq_frequency_table *table,
170 unsigned int transition_latency)
171{
92c99d15 172 policy->freq_table = table;
70e9e778
VK
173 policy->cpuinfo.transition_latency = transition_latency;
174
175 /*
58405af6 176 * The driver only supports the SMP configuration where all processors
70e9e778
VK
177 * share the clock and voltage and clock.
178 */
179 cpumask_setall(policy->cpus);
180
181 return 0;
182}
183EXPORT_SYMBOL_GPL(cpufreq_generic_init);
184
1f0bd44e 185struct cpufreq_policy *cpufreq_cpu_get_raw(unsigned int cpu)
652ed95d
VK
186{
187 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
188
988bed09
VK
189 return policy && cpumask_test_cpu(cpu, policy->cpus) ? policy : NULL;
190}
1f0bd44e 191EXPORT_SYMBOL_GPL(cpufreq_cpu_get_raw);
988bed09
VK
192
193unsigned int cpufreq_generic_get(unsigned int cpu)
194{
195 struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);
196
652ed95d 197 if (!policy || IS_ERR(policy->clk)) {
e837f9b5
JP
198 pr_err("%s: No %s associated to cpu: %d\n",
199 __func__, policy ? "clk" : "policy", cpu);
652ed95d
VK
200 return 0;
201 }
202
203 return clk_get_rate(policy->clk) / 1000;
204}
205EXPORT_SYMBOL_GPL(cpufreq_generic_get);
206
50e9c852
VK
207/**
208 * cpufreq_cpu_get: returns policy for a cpu and marks it busy.
209 *
210 * @cpu: cpu to find policy for.
211 *
212 * This returns policy for 'cpu', returns NULL if it doesn't exist.
213 * It also increments the kobject reference count to mark it busy and so would
214 * require a corresponding call to cpufreq_cpu_put() to decrement it back.
215 * If corresponding call cpufreq_cpu_put() isn't made, the policy wouldn't be
216 * freed as that depends on the kobj count.
217 *
50e9c852
VK
218 * Return: A valid policy on success, otherwise NULL on failure.
219 */
6eed9404 220struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
1da177e4 221{
6eed9404 222 struct cpufreq_policy *policy = NULL;
1da177e4
LT
223 unsigned long flags;
224
1b947c90 225 if (WARN_ON(cpu >= nr_cpu_ids))
6eed9404
VK
226 return NULL;
227
1da177e4 228 /* get the cpufreq driver */
1c3d85dd 229 read_lock_irqsave(&cpufreq_driver_lock, flags);
1da177e4 230
6eed9404
VK
231 if (cpufreq_driver) {
232 /* get the CPU */
988bed09 233 policy = cpufreq_cpu_get_raw(cpu);
6eed9404
VK
234 if (policy)
235 kobject_get(&policy->kobj);
236 }
1da177e4 237
6eed9404 238 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1da177e4 239
3a3e9e06 240 return policy;
a9144436 241}
1da177e4
LT
242EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
243
50e9c852
VK
244/**
245 * cpufreq_cpu_put: Decrements the usage count of a policy
246 *
247 * @policy: policy earlier returned by cpufreq_cpu_get().
248 *
249 * This decrements the kobject reference count incremented earlier by calling
250 * cpufreq_cpu_get().
50e9c852 251 */
3a3e9e06 252void cpufreq_cpu_put(struct cpufreq_policy *policy)
1da177e4 253{
6eed9404 254 kobject_put(&policy->kobj);
1da177e4
LT
255}
256EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
257
1da177e4
LT
258/*********************************************************************
259 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
260 *********************************************************************/
261
262/**
263 * adjust_jiffies - adjust the system "loops_per_jiffy"
264 *
265 * This function alters the system "loops_per_jiffy" for the clock
266 * speed change. Note that loops_per_jiffy cannot be updated on SMP
32ee8c3e 267 * systems as each CPU might be scaled differently. So, use the arch
1da177e4
LT
268 * per-CPU loops_per_jiffy value wherever possible.
269 */
858119e1 270static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
1da177e4 271{
39c132ee
VK
272#ifndef CONFIG_SMP
273 static unsigned long l_p_j_ref;
274 static unsigned int l_p_j_ref_freq;
275
1da177e4
LT
276 if (ci->flags & CPUFREQ_CONST_LOOPS)
277 return;
278
279 if (!l_p_j_ref_freq) {
280 l_p_j_ref = loops_per_jiffy;
281 l_p_j_ref_freq = ci->old;
e837f9b5
JP
282 pr_debug("saving %lu as reference value for loops_per_jiffy; freq is %u kHz\n",
283 l_p_j_ref, l_p_j_ref_freq);
1da177e4 284 }
0b443ead 285 if (val == CPUFREQ_POSTCHANGE && ci->old != ci->new) {
e08f5f5b
GS
286 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
287 ci->new);
e837f9b5
JP
288 pr_debug("scaling loops_per_jiffy to %lu for frequency %u kHz\n",
289 loops_per_jiffy, ci->new);
1da177e4 290 }
1da177e4 291#endif
39c132ee 292}
1da177e4 293
20b5324d
VK
294/**
295 * cpufreq_notify_transition - Notify frequency transition and adjust_jiffies.
296 * @policy: cpufreq policy to enable fast frequency switching for.
297 * @freqs: contain details of the frequency update.
298 * @state: set to CPUFREQ_PRECHANGE or CPUFREQ_POSTCHANGE.
299 *
300 * This function calls the transition notifiers and the "adjust_jiffies"
301 * function. It is called twice on all CPU frequency changes that have
302 * external effects.
303 */
304static void cpufreq_notify_transition(struct cpufreq_policy *policy,
305 struct cpufreq_freqs *freqs,
306 unsigned int state)
1da177e4
LT
307{
308 BUG_ON(irqs_disabled());
309
d5aaffa9
DB
310 if (cpufreq_disabled())
311 return;
312
1c3d85dd 313 freqs->flags = cpufreq_driver->flags;
2d06d8c4 314 pr_debug("notification %u of frequency transition to %u kHz\n",
e837f9b5 315 state, freqs->new);
1da177e4 316
1da177e4
LT
317 switch (state) {
318 case CPUFREQ_PRECHANGE:
20b5324d
VK
319 /*
320 * Detect if the driver reported a value as "old frequency"
e4472cb3
DJ
321 * which is not equal to what the cpufreq core thinks is
322 * "old frequency".
1da177e4 323 */
1c3d85dd 324 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
20b5324d 325 if (policy->cur && (policy->cur != freqs->old)) {
e837f9b5
JP
326 pr_debug("Warning: CPU frequency is %u, cpufreq assumed %u kHz\n",
327 freqs->old, policy->cur);
e4472cb3 328 freqs->old = policy->cur;
1da177e4
LT
329 }
330 }
20b5324d
VK
331
332 for_each_cpu(freqs->cpu, policy->cpus) {
333 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
334 CPUFREQ_PRECHANGE, freqs);
335 }
336
1da177e4
LT
337 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
338 break;
e4472cb3 339
1da177e4
LT
340 case CPUFREQ_POSTCHANGE:
341 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
20b5324d
VK
342 pr_debug("FREQ: %u - CPUs: %*pbl\n", freqs->new,
343 cpumask_pr_args(policy->cpus));
344
345 for_each_cpu(freqs->cpu, policy->cpus) {
346 trace_cpu_frequency(freqs->new, freqs->cpu);
347 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
348 CPUFREQ_POSTCHANGE, freqs);
349 }
350
1aefc75b 351 cpufreq_stats_record_transition(policy, freqs->new);
20b5324d 352 policy->cur = freqs->new;
1da177e4 353 }
1da177e4 354}
bb176f7d 355
f7ba3b41 356/* Do post notifications when there are chances that transition has failed */
236a9800 357static void cpufreq_notify_post_transition(struct cpufreq_policy *policy,
f7ba3b41
VK
358 struct cpufreq_freqs *freqs, int transition_failed)
359{
360 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
361 if (!transition_failed)
362 return;
363
364 swap(freqs->old, freqs->new);
365 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
366 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
367}
f7ba3b41 368
12478cf0
SB
369void cpufreq_freq_transition_begin(struct cpufreq_policy *policy,
370 struct cpufreq_freqs *freqs)
371{
ca654dc3
SB
372
373 /*
374 * Catch double invocations of _begin() which lead to self-deadlock.
375 * ASYNC_NOTIFICATION drivers are left out because the cpufreq core
376 * doesn't invoke _begin() on their behalf, and hence the chances of
377 * double invocations are very low. Moreover, there are scenarios
378 * where these checks can emit false-positive warnings in these
379 * drivers; so we avoid that by skipping them altogether.
380 */
381 WARN_ON(!(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION)
382 && current == policy->transition_task);
383
12478cf0
SB
384wait:
385 wait_event(policy->transition_wait, !policy->transition_ongoing);
386
387 spin_lock(&policy->transition_lock);
388
389 if (unlikely(policy->transition_ongoing)) {
390 spin_unlock(&policy->transition_lock);
391 goto wait;
392 }
393
394 policy->transition_ongoing = true;
ca654dc3 395 policy->transition_task = current;
12478cf0
SB
396
397 spin_unlock(&policy->transition_lock);
398
399 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
400}
401EXPORT_SYMBOL_GPL(cpufreq_freq_transition_begin);
402
403void cpufreq_freq_transition_end(struct cpufreq_policy *policy,
404 struct cpufreq_freqs *freqs, int transition_failed)
405{
406 if (unlikely(WARN_ON(!policy->transition_ongoing)))
407 return;
408
409 cpufreq_notify_post_transition(policy, freqs, transition_failed);
410
411 policy->transition_ongoing = false;
ca654dc3 412 policy->transition_task = NULL;
12478cf0
SB
413
414 wake_up(&policy->transition_wait);
415}
416EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end);
417
b7898fda
RW
418/*
419 * Fast frequency switching status count. Positive means "enabled", negative
420 * means "disabled" and 0 means "not decided yet".
421 */
422static int cpufreq_fast_switch_count;
423static DEFINE_MUTEX(cpufreq_fast_switch_lock);
424
425static void cpufreq_list_transition_notifiers(void)
426{
427 struct notifier_block *nb;
428
429 pr_info("Registered transition notifiers:\n");
430
431 mutex_lock(&cpufreq_transition_notifier_list.mutex);
432
433 for (nb = cpufreq_transition_notifier_list.head; nb; nb = nb->next)
434 pr_info("%pF\n", nb->notifier_call);
435
436 mutex_unlock(&cpufreq_transition_notifier_list.mutex);
437}
438
439/**
440 * cpufreq_enable_fast_switch - Enable fast frequency switching for policy.
441 * @policy: cpufreq policy to enable fast frequency switching for.
442 *
443 * Try to enable fast frequency switching for @policy.
444 *
445 * The attempt will fail if there is at least one transition notifier registered
446 * at this point, as fast frequency switching is quite fundamentally at odds
447 * with transition notifiers. Thus if successful, it will make registration of
448 * transition notifiers fail going forward.
449 */
450void cpufreq_enable_fast_switch(struct cpufreq_policy *policy)
451{
452 lockdep_assert_held(&policy->rwsem);
453
454 if (!policy->fast_switch_possible)
455 return;
456
457 mutex_lock(&cpufreq_fast_switch_lock);
458 if (cpufreq_fast_switch_count >= 0) {
459 cpufreq_fast_switch_count++;
460 policy->fast_switch_enabled = true;
461 } else {
462 pr_warn("CPU%u: Fast frequency switching not enabled\n",
463 policy->cpu);
464 cpufreq_list_transition_notifiers();
465 }
466 mutex_unlock(&cpufreq_fast_switch_lock);
467}
468EXPORT_SYMBOL_GPL(cpufreq_enable_fast_switch);
469
6c9d9c81
RW
470/**
471 * cpufreq_disable_fast_switch - Disable fast frequency switching for policy.
472 * @policy: cpufreq policy to disable fast frequency switching for.
473 */
474void cpufreq_disable_fast_switch(struct cpufreq_policy *policy)
b7898fda
RW
475{
476 mutex_lock(&cpufreq_fast_switch_lock);
477 if (policy->fast_switch_enabled) {
478 policy->fast_switch_enabled = false;
479 if (!WARN_ON(cpufreq_fast_switch_count <= 0))
480 cpufreq_fast_switch_count--;
481 }
482 mutex_unlock(&cpufreq_fast_switch_lock);
483}
6c9d9c81 484EXPORT_SYMBOL_GPL(cpufreq_disable_fast_switch);
1da177e4 485
e3c06236
SM
486/**
487 * cpufreq_driver_resolve_freq - Map a target frequency to a driver-supported
488 * one.
489 * @target_freq: target frequency to resolve.
490 *
491 * The target to driver frequency mapping is cached in the policy.
492 *
493 * Return: Lowest driver-supported frequency greater than or equal to the
494 * given target_freq, subject to policy (min/max) and driver limitations.
495 */
496unsigned int cpufreq_driver_resolve_freq(struct cpufreq_policy *policy,
497 unsigned int target_freq)
498{
499 target_freq = clamp_val(target_freq, policy->min, policy->max);
500 policy->cached_target_freq = target_freq;
abe8bd02
VK
501
502 if (cpufreq_driver->target_index) {
503 int idx;
504
505 idx = cpufreq_frequency_table_target(policy, target_freq,
506 CPUFREQ_RELATION_L);
507 policy->cached_resolved_idx = idx;
508 return policy->freq_table[idx].frequency;
509 }
510
e3c06236
SM
511 if (cpufreq_driver->resolve_freq)
512 return cpufreq_driver->resolve_freq(policy, target_freq);
abe8bd02
VK
513
514 return target_freq;
e3c06236 515}
ae2c1ca6 516EXPORT_SYMBOL_GPL(cpufreq_driver_resolve_freq);
e3c06236 517
aa7519af
VK
518unsigned int cpufreq_policy_transition_delay_us(struct cpufreq_policy *policy)
519{
520 unsigned int latency;
521
522 if (policy->transition_delay_us)
523 return policy->transition_delay_us;
524
525 latency = policy->cpuinfo.transition_latency / NSEC_PER_USEC;
e948bc8f
VK
526 if (latency) {
527 /*
528 * For platforms that can change the frequency very fast (< 10
529 * us), the above formula gives a decent transition delay. But
530 * for platforms where transition_latency is in milliseconds, it
531 * ends up giving unrealistic values.
532 *
533 * Cap the default transition delay to 10 ms, which seems to be
534 * a reasonable amount of time after which we should reevaluate
535 * the frequency.
536 */
537 return min(latency * LATENCY_MULTIPLIER, (unsigned int)10000);
538 }
aa7519af
VK
539
540 return LATENCY_MULTIPLIER;
541}
542EXPORT_SYMBOL_GPL(cpufreq_policy_transition_delay_us);
543
1da177e4
LT
544/*********************************************************************
545 * SYSFS INTERFACE *
546 *********************************************************************/
8a5c74a1 547static ssize_t show_boost(struct kobject *kobj,
6f19efc0
LM
548 struct attribute *attr, char *buf)
549{
550 return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
551}
552
553static ssize_t store_boost(struct kobject *kobj, struct attribute *attr,
554 const char *buf, size_t count)
555{
556 int ret, enable;
557
558 ret = sscanf(buf, "%d", &enable);
559 if (ret != 1 || enable < 0 || enable > 1)
560 return -EINVAL;
561
562 if (cpufreq_boost_trigger_state(enable)) {
e837f9b5
JP
563 pr_err("%s: Cannot %s BOOST!\n",
564 __func__, enable ? "enable" : "disable");
6f19efc0
LM
565 return -EINVAL;
566 }
567
e837f9b5
JP
568 pr_debug("%s: cpufreq BOOST %s\n",
569 __func__, enable ? "enabled" : "disabled");
6f19efc0
LM
570
571 return count;
572}
573define_one_global_rw(boost);
1da177e4 574
42f91fa1 575static struct cpufreq_governor *find_governor(const char *str_governor)
3bcb09a3
JF
576{
577 struct cpufreq_governor *t;
578
f7b27061 579 for_each_governor(t)
7c4f4539 580 if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN))
3bcb09a3
JF
581 return t;
582
583 return NULL;
584}
585
1da177e4
LT
586/**
587 * cpufreq_parse_governor - parse a governor string
588 */
ae0ff89f
RW
589static int cpufreq_parse_governor(char *str_governor,
590 struct cpufreq_policy *policy)
1da177e4 591{
1c3d85dd 592 if (cpufreq_driver->setpolicy) {
7c4f4539 593 if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
ae0ff89f 594 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
045149e6
RW
595 return 0;
596 }
597
598 if (!strncasecmp(str_governor, "powersave", CPUFREQ_NAME_LEN)) {
ae0ff89f 599 policy->policy = CPUFREQ_POLICY_POWERSAVE;
045149e6 600 return 0;
1da177e4 601 }
2e1cc3a5 602 } else {
1da177e4 603 struct cpufreq_governor *t;
3bcb09a3 604
3fc54d37 605 mutex_lock(&cpufreq_governor_mutex);
3bcb09a3 606
42f91fa1 607 t = find_governor(str_governor);
045149e6 608 if (!t) {
1a8e1463 609 int ret;
ea714970 610
1a8e1463 611 mutex_unlock(&cpufreq_governor_mutex);
045149e6 612
1a8e1463 613 ret = request_module("cpufreq_%s", str_governor);
045149e6
RW
614 if (ret)
615 return -EINVAL;
616
1a8e1463 617 mutex_lock(&cpufreq_governor_mutex);
ea714970 618
045149e6 619 t = find_governor(str_governor);
ea714970 620 }
a8b149d3
RW
621 if (t && !try_module_get(t->owner))
622 t = NULL;
ea714970 623
045149e6
RW
624 mutex_unlock(&cpufreq_governor_mutex);
625
626 if (t) {
ae0ff89f 627 policy->governor = t;
045149e6 628 return 0;
1da177e4 629 }
1da177e4 630 }
045149e6
RW
631
632 return -EINVAL;
1da177e4 633}
1da177e4 634
1da177e4 635/**
e08f5f5b
GS
636 * cpufreq_per_cpu_attr_read() / show_##file_name() -
637 * print out cpufreq information
1da177e4
LT
638 *
639 * Write out information from cpufreq_driver->policy[cpu]; object must be
640 * "unsigned int".
641 */
642
32ee8c3e
DJ
643#define show_one(file_name, object) \
644static ssize_t show_##file_name \
905d77cd 645(struct cpufreq_policy *policy, char *buf) \
32ee8c3e 646{ \
29464f28 647 return sprintf(buf, "%u\n", policy->object); \
1da177e4
LT
648}
649
650show_one(cpuinfo_min_freq, cpuinfo.min_freq);
651show_one(cpuinfo_max_freq, cpuinfo.max_freq);
ed129784 652show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
1da177e4
LT
653show_one(scaling_min_freq, min);
654show_one(scaling_max_freq, max);
c034b02e 655
f8475cef
LB
656__weak unsigned int arch_freq_get_on_cpu(int cpu)
657{
658 return 0;
659}
660
09347b29 661static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf)
c034b02e
DB
662{
663 ssize_t ret;
f8475cef 664 unsigned int freq;
c034b02e 665
f8475cef
LB
666 freq = arch_freq_get_on_cpu(policy->cpu);
667 if (freq)
668 ret = sprintf(buf, "%u\n", freq);
669 else if (cpufreq_driver && cpufreq_driver->setpolicy &&
670 cpufreq_driver->get)
c034b02e
DB
671 ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu));
672 else
673 ret = sprintf(buf, "%u\n", policy->cur);
674 return ret;
675}
1da177e4 676
037ce839 677static int cpufreq_set_policy(struct cpufreq_policy *policy,
3a3e9e06 678 struct cpufreq_policy *new_policy);
7970e08b 679
1da177e4
LT
680/**
681 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
682 */
683#define store_one(file_name, object) \
684static ssize_t store_##file_name \
905d77cd 685(struct cpufreq_policy *policy, const char *buf, size_t count) \
1da177e4 686{ \
619c144c 687 int ret, temp; \
1da177e4
LT
688 struct cpufreq_policy new_policy; \
689 \
8fa5b631 690 memcpy(&new_policy, policy, sizeof(*policy)); \
c7d1f119
TW
691 new_policy.min = policy->user_policy.min; \
692 new_policy.max = policy->user_policy.max; \
1da177e4 693 \
29464f28 694 ret = sscanf(buf, "%u", &new_policy.object); \
1da177e4
LT
695 if (ret != 1) \
696 return -EINVAL; \
697 \
619c144c 698 temp = new_policy.object; \
037ce839 699 ret = cpufreq_set_policy(policy, &new_policy); \
619c144c
VH
700 if (!ret) \
701 policy->user_policy.object = temp; \
1da177e4
LT
702 \
703 return ret ? ret : count; \
704}
705
29464f28
DJ
706store_one(scaling_min_freq, min);
707store_one(scaling_max_freq, max);
1da177e4
LT
708
709/**
710 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
711 */
905d77cd
DJ
712static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
713 char *buf)
1da177e4 714{
d92d50a4 715 unsigned int cur_freq = __cpufreq_get(policy);
9b4f603e
RW
716
717 if (cur_freq)
718 return sprintf(buf, "%u\n", cur_freq);
719
720 return sprintf(buf, "<unknown>\n");
1da177e4
LT
721}
722
1da177e4
LT
723/**
724 * show_scaling_governor - show the current policy for the specified CPU
725 */
905d77cd 726static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
1da177e4 727{
29464f28 728 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
1da177e4
LT
729 return sprintf(buf, "powersave\n");
730 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
731 return sprintf(buf, "performance\n");
732 else if (policy->governor)
4b972f0b 733 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
29464f28 734 policy->governor->name);
1da177e4
LT
735 return -EINVAL;
736}
737
1da177e4
LT
738/**
739 * store_scaling_governor - store policy for the specified CPU
740 */
905d77cd
DJ
741static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
742 const char *buf, size_t count)
1da177e4 743{
5136fa56 744 int ret;
1da177e4
LT
745 char str_governor[16];
746 struct cpufreq_policy new_policy;
747
8fa5b631 748 memcpy(&new_policy, policy, sizeof(*policy));
1da177e4 749
29464f28 750 ret = sscanf(buf, "%15s", str_governor);
1da177e4
LT
751 if (ret != 1)
752 return -EINVAL;
753
ae0ff89f 754 if (cpufreq_parse_governor(str_governor, &new_policy))
1da177e4
LT
755 return -EINVAL;
756
037ce839 757 ret = cpufreq_set_policy(policy, &new_policy);
a8b149d3
RW
758
759 if (new_policy.governor)
760 module_put(new_policy.governor->owner);
761
88dc4384 762 return ret ? ret : count;
1da177e4
LT
763}
764
765/**
766 * show_scaling_driver - show the cpufreq driver currently loaded
767 */
905d77cd 768static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
1da177e4 769{
1c3d85dd 770 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
1da177e4
LT
771}
772
773/**
774 * show_scaling_available_governors - show the available CPUfreq governors
775 */
905d77cd
DJ
776static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
777 char *buf)
1da177e4
LT
778{
779 ssize_t i = 0;
780 struct cpufreq_governor *t;
781
9c0ebcf7 782 if (!has_target()) {
1da177e4
LT
783 i += sprintf(buf, "performance powersave");
784 goto out;
785 }
786
f7b27061 787 for_each_governor(t) {
29464f28
DJ
788 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
789 - (CPUFREQ_NAME_LEN + 2)))
1da177e4 790 goto out;
4b972f0b 791 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
1da177e4 792 }
7d5e350f 793out:
1da177e4
LT
794 i += sprintf(&buf[i], "\n");
795 return i;
796}
e8628dd0 797
f4fd3797 798ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
1da177e4
LT
799{
800 ssize_t i = 0;
801 unsigned int cpu;
802
835481d9 803 for_each_cpu(cpu, mask) {
1da177e4
LT
804 if (i)
805 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
806 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
807 if (i >= (PAGE_SIZE - 5))
29464f28 808 break;
1da177e4
LT
809 }
810 i += sprintf(&buf[i], "\n");
811 return i;
812}
f4fd3797 813EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
1da177e4 814
e8628dd0
DW
815/**
816 * show_related_cpus - show the CPUs affected by each transition even if
817 * hw coordination is in use
818 */
819static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
820{
f4fd3797 821 return cpufreq_show_cpus(policy->related_cpus, buf);
e8628dd0
DW
822}
823
824/**
825 * show_affected_cpus - show the CPUs affected by each transition
826 */
827static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
828{
f4fd3797 829 return cpufreq_show_cpus(policy->cpus, buf);
e8628dd0
DW
830}
831
9e76988e 832static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
905d77cd 833 const char *buf, size_t count)
9e76988e
VP
834{
835 unsigned int freq = 0;
836 unsigned int ret;
837
879000f9 838 if (!policy->governor || !policy->governor->store_setspeed)
9e76988e
VP
839 return -EINVAL;
840
841 ret = sscanf(buf, "%u", &freq);
842 if (ret != 1)
843 return -EINVAL;
844
845 policy->governor->store_setspeed(policy, freq);
846
847 return count;
848}
849
850static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
851{
879000f9 852 if (!policy->governor || !policy->governor->show_setspeed)
9e76988e
VP
853 return sprintf(buf, "<unsupported>\n");
854
855 return policy->governor->show_setspeed(policy, buf);
856}
1da177e4 857
e2f74f35 858/**
8bf1ac72 859 * show_bios_limit - show the current cpufreq HW/BIOS limitation
e2f74f35
TR
860 */
861static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
862{
863 unsigned int limit;
864 int ret;
1c3d85dd
RW
865 if (cpufreq_driver->bios_limit) {
866 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
e2f74f35
TR
867 if (!ret)
868 return sprintf(buf, "%u\n", limit);
869 }
870 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
871}
872
6dad2a29
BP
873cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
874cpufreq_freq_attr_ro(cpuinfo_min_freq);
875cpufreq_freq_attr_ro(cpuinfo_max_freq);
876cpufreq_freq_attr_ro(cpuinfo_transition_latency);
877cpufreq_freq_attr_ro(scaling_available_governors);
878cpufreq_freq_attr_ro(scaling_driver);
879cpufreq_freq_attr_ro(scaling_cur_freq);
880cpufreq_freq_attr_ro(bios_limit);
881cpufreq_freq_attr_ro(related_cpus);
882cpufreq_freq_attr_ro(affected_cpus);
883cpufreq_freq_attr_rw(scaling_min_freq);
884cpufreq_freq_attr_rw(scaling_max_freq);
885cpufreq_freq_attr_rw(scaling_governor);
886cpufreq_freq_attr_rw(scaling_setspeed);
1da177e4 887
905d77cd 888static struct attribute *default_attrs[] = {
1da177e4
LT
889 &cpuinfo_min_freq.attr,
890 &cpuinfo_max_freq.attr,
ed129784 891 &cpuinfo_transition_latency.attr,
1da177e4
LT
892 &scaling_min_freq.attr,
893 &scaling_max_freq.attr,
894 &affected_cpus.attr,
e8628dd0 895 &related_cpus.attr,
1da177e4
LT
896 &scaling_governor.attr,
897 &scaling_driver.attr,
898 &scaling_available_governors.attr,
9e76988e 899 &scaling_setspeed.attr,
1da177e4
LT
900 NULL
901};
902
29464f28
DJ
903#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
904#define to_attr(a) container_of(a, struct freq_attr, attr)
1da177e4 905
29464f28 906static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
1da177e4 907{
905d77cd
DJ
908 struct cpufreq_policy *policy = to_policy(kobj);
909 struct freq_attr *fattr = to_attr(attr);
1b750e3b 910 ssize_t ret;
6eed9404 911
ad7722da 912 down_read(&policy->rwsem);
6541aef0 913 ret = fattr->show(policy, buf);
ad7722da 914 up_read(&policy->rwsem);
1b750e3b 915
1da177e4
LT
916 return ret;
917}
918
905d77cd
DJ
919static ssize_t store(struct kobject *kobj, struct attribute *attr,
920 const char *buf, size_t count)
1da177e4 921{
905d77cd
DJ
922 struct cpufreq_policy *policy = to_policy(kobj);
923 struct freq_attr *fattr = to_attr(attr);
a07530b4 924 ssize_t ret = -EINVAL;
6eed9404 925
a92551e4 926 cpus_read_lock();
4f750c93 927
6541aef0
RW
928 if (cpu_online(policy->cpu)) {
929 down_write(&policy->rwsem);
e08f5f5b 930 ret = fattr->store(policy, buf, count);
6541aef0
RW
931 up_write(&policy->rwsem);
932 }
e08f5f5b 933
a92551e4 934 cpus_read_unlock();
4f750c93 935
1da177e4
LT
936 return ret;
937}
938
905d77cd 939static void cpufreq_sysfs_release(struct kobject *kobj)
1da177e4 940{
905d77cd 941 struct cpufreq_policy *policy = to_policy(kobj);
2d06d8c4 942 pr_debug("last reference is dropped\n");
1da177e4
LT
943 complete(&policy->kobj_unregister);
944}
945
52cf25d0 946static const struct sysfs_ops sysfs_ops = {
1da177e4
LT
947 .show = show,
948 .store = store,
949};
950
951static struct kobj_type ktype_cpufreq = {
952 .sysfs_ops = &sysfs_ops,
953 .default_attrs = default_attrs,
954 .release = cpufreq_sysfs_release,
955};
956
2f0ba790 957static void add_cpu_dev_symlink(struct cpufreq_policy *policy, unsigned int cpu)
87549141 958{
2f0ba790
RW
959 struct device *dev = get_cpu_device(cpu);
960
961 if (!dev)
962 return;
963
964 if (cpumask_test_and_set_cpu(cpu, policy->real_cpus))
965 return;
966
26619804 967 dev_dbg(dev, "%s: Adding symlink\n", __func__);
2f0ba790
RW
968 if (sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq"))
969 dev_err(dev, "cpufreq symlink creation failed\n");
87549141
VK
970}
971
26619804
VK
972static void remove_cpu_dev_symlink(struct cpufreq_policy *policy,
973 struct device *dev)
87549141 974{
26619804
VK
975 dev_dbg(dev, "%s: Removing symlink\n", __func__);
976 sysfs_remove_link(&dev->kobj, "cpufreq");
87549141
VK
977}
978
d9612a49 979static int cpufreq_add_dev_interface(struct cpufreq_policy *policy)
909a694e
DJ
980{
981 struct freq_attr **drv_attr;
909a694e 982 int ret = 0;
909a694e 983
909a694e 984 /* set up files for this cpu device */
1c3d85dd 985 drv_attr = cpufreq_driver->attr;
f13f1184 986 while (drv_attr && *drv_attr) {
909a694e
DJ
987 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
988 if (ret)
6d4e81ed 989 return ret;
909a694e
DJ
990 drv_attr++;
991 }
1c3d85dd 992 if (cpufreq_driver->get) {
909a694e
DJ
993 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
994 if (ret)
6d4e81ed 995 return ret;
909a694e 996 }
c034b02e
DB
997
998 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
999 if (ret)
6d4e81ed 1000 return ret;
c034b02e 1001
1c3d85dd 1002 if (cpufreq_driver->bios_limit) {
e2f74f35
TR
1003 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
1004 if (ret)
6d4e81ed 1005 return ret;
e2f74f35 1006 }
909a694e 1007
26619804 1008 return 0;
e18f1682
SB
1009}
1010
de1df26b
RW
1011__weak struct cpufreq_governor *cpufreq_default_governor(void)
1012{
1013 return NULL;
1014}
1015
7f0fa40f 1016static int cpufreq_init_policy(struct cpufreq_policy *policy)
e18f1682 1017{
6e2c89d1 1018 struct cpufreq_governor *gov = NULL;
e18f1682 1019 struct cpufreq_policy new_policy;
e18f1682 1020
d5b73cd8 1021 memcpy(&new_policy, policy, sizeof(*policy));
a27a9ab7 1022
6e2c89d1 1023 /* Update governor of new_policy to the governor used before hotplug */
4573237b 1024 gov = find_governor(policy->last_governor);
de1df26b 1025 if (gov) {
6e2c89d1 1026 pr_debug("Restoring governor %s for cpu %d\n",
1027 policy->governor->name, policy->cpu);
de1df26b
RW
1028 } else {
1029 gov = cpufreq_default_governor();
1030 if (!gov)
1031 return -ENODATA;
1032 }
6e2c89d1 1033
1034 new_policy.governor = gov;
1035
69030dd1
SP
1036 /* Use the default policy if there is no last_policy. */
1037 if (cpufreq_driver->setpolicy) {
1038 if (policy->last_policy)
1039 new_policy.policy = policy->last_policy;
1040 else
ae0ff89f 1041 cpufreq_parse_governor(gov->name, &new_policy);
69030dd1 1042 }
ecf7e461 1043 /* set default policy */
7f0fa40f 1044 return cpufreq_set_policy(policy, &new_policy);
909a694e
DJ
1045}
1046
d9612a49 1047static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
fcf80582 1048{
9c0ebcf7 1049 int ret = 0;
fcf80582 1050
bb29ae15
VK
1051 /* Has this CPU been taken care of already? */
1052 if (cpumask_test_cpu(cpu, policy->cpus))
1053 return 0;
1054
49f18560 1055 down_write(&policy->rwsem);
45482c70
RW
1056 if (has_target())
1057 cpufreq_stop_governor(policy);
fcf80582 1058
fcf80582 1059 cpumask_set_cpu(cpu, policy->cpus);
2eaa3e2d 1060
9c0ebcf7 1061 if (has_target()) {
0a300767 1062 ret = cpufreq_start_governor(policy);
49f18560 1063 if (ret)
3de9bdeb 1064 pr_err("%s: Failed to start governor\n", __func__);
820c6ca2 1065 }
49f18560
VK
1066 up_write(&policy->rwsem);
1067 return ret;
fcf80582 1068}
1da177e4 1069
11eb69b9
VK
1070static void handle_update(struct work_struct *work)
1071{
1072 struct cpufreq_policy *policy =
1073 container_of(work, struct cpufreq_policy, update);
1074 unsigned int cpu = policy->cpu;
1075 pr_debug("handle_update for cpu %u called\n", cpu);
1076 cpufreq_update_policy(cpu);
fcf80582 1077}
1da177e4 1078
a34e63b1 1079static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu)
e9698cc5
SB
1080{
1081 struct cpufreq_policy *policy;
edd4a893 1082 int ret;
e9698cc5
SB
1083
1084 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
1085 if (!policy)
1086 return NULL;
1087
1088 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
1089 goto err_free_policy;
1090
1091 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
1092 goto err_free_cpumask;
1093
559ed407
RW
1094 if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL))
1095 goto err_free_rcpumask;
1096
edd4a893
VK
1097 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
1098 cpufreq_global_kobject, "policy%u", cpu);
1099 if (ret) {
1100 pr_err("%s: failed to init policy->kobj: %d\n", __func__, ret);
1101 goto err_free_real_cpus;
1102 }
1103
c88a1f8b 1104 INIT_LIST_HEAD(&policy->policy_list);
ad7722da 1105 init_rwsem(&policy->rwsem);
12478cf0
SB
1106 spin_lock_init(&policy->transition_lock);
1107 init_waitqueue_head(&policy->transition_wait);
818c5712
VK
1108 init_completion(&policy->kobj_unregister);
1109 INIT_WORK(&policy->update, handle_update);
ad7722da 1110
a34e63b1 1111 policy->cpu = cpu;
e9698cc5
SB
1112 return policy;
1113
edd4a893
VK
1114err_free_real_cpus:
1115 free_cpumask_var(policy->real_cpus);
2fc3384d
VK
1116err_free_rcpumask:
1117 free_cpumask_var(policy->related_cpus);
e9698cc5
SB
1118err_free_cpumask:
1119 free_cpumask_var(policy->cpus);
1120err_free_policy:
1121 kfree(policy);
1122
1123 return NULL;
1124}
1125
f9f41e3e 1126static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy)
42f921a6
VK
1127{
1128 struct kobject *kobj;
1129 struct completion *cmp;
1130
87549141 1131 down_write(&policy->rwsem);
1aefc75b 1132 cpufreq_stats_free_table(policy);
42f921a6
VK
1133 kobj = &policy->kobj;
1134 cmp = &policy->kobj_unregister;
87549141 1135 up_write(&policy->rwsem);
42f921a6
VK
1136 kobject_put(kobj);
1137
1138 /*
1139 * We need to make sure that the underlying kobj is
1140 * actually not referenced anymore by anybody before we
1141 * proceed with unloading.
1142 */
1143 pr_debug("waiting for dropping of refcount\n");
1144 wait_for_completion(cmp);
1145 pr_debug("wait complete\n");
1146}
1147
f9f41e3e 1148static void cpufreq_policy_free(struct cpufreq_policy *policy)
e9698cc5 1149{
988bed09
VK
1150 unsigned long flags;
1151 int cpu;
1152
1153 /* Remove policy from list */
1154 write_lock_irqsave(&cpufreq_driver_lock, flags);
1155 list_del(&policy->policy_list);
1156
1157 for_each_cpu(cpu, policy->related_cpus)
1158 per_cpu(cpufreq_cpu_data, cpu) = NULL;
1159 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1160
f9f41e3e 1161 cpufreq_policy_put_kobj(policy);
559ed407 1162 free_cpumask_var(policy->real_cpus);
e9698cc5
SB
1163 free_cpumask_var(policy->related_cpus);
1164 free_cpumask_var(policy->cpus);
1165 kfree(policy);
1166}
1167
0b275352 1168static int cpufreq_online(unsigned int cpu)
1da177e4 1169{
7f0c020a 1170 struct cpufreq_policy *policy;
194d99c7 1171 bool new_policy;
1da177e4 1172 unsigned long flags;
0b275352
RW
1173 unsigned int j;
1174 int ret;
87549141 1175
0b275352 1176 pr_debug("%s: bringing CPU%u online\n", __func__, cpu);
6eed9404 1177
bb29ae15 1178 /* Check if this CPU already has a policy to manage it */
9104bb26 1179 policy = per_cpu(cpufreq_cpu_data, cpu);
11ce707e 1180 if (policy) {
9104bb26 1181 WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus));
11ce707e 1182 if (!policy_is_inactive(policy))
d9612a49 1183 return cpufreq_add_policy_cpu(policy, cpu);
1da177e4 1184
11ce707e 1185 /* This is the only online CPU for the policy. Start over. */
194d99c7 1186 new_policy = false;
11ce707e
RW
1187 down_write(&policy->rwsem);
1188 policy->cpu = cpu;
1189 policy->governor = NULL;
1190 up_write(&policy->rwsem);
1191 } else {
194d99c7 1192 new_policy = true;
a34e63b1 1193 policy = cpufreq_policy_alloc(cpu);
72368d12 1194 if (!policy)
d4d854d6 1195 return -ENOMEM;
72368d12 1196 }
0d66b91e 1197
835481d9 1198 cpumask_copy(policy->cpus, cpumask_of(cpu));
1da177e4 1199
1da177e4
LT
1200 /* call driver. From then on the cpufreq must be able
1201 * to accept all calls to ->verify and ->setpolicy for this CPU
1202 */
1c3d85dd 1203 ret = cpufreq_driver->init(policy);
1da177e4 1204 if (ret) {
2d06d8c4 1205 pr_debug("initialization failed\n");
8101f997 1206 goto out_free_policy;
1da177e4 1207 }
643ae6e8 1208
d417e069
VK
1209 ret = cpufreq_table_validate_and_sort(policy);
1210 if (ret)
1211 goto out_exit_policy;
1212
6d4e81ed
TV
1213 down_write(&policy->rwsem);
1214
194d99c7 1215 if (new_policy) {
4d1f3a5b 1216 /* related_cpus should at least include policy->cpus. */
0998a03a 1217 cpumask_copy(policy->related_cpus, policy->cpus);
4d1f3a5b 1218 }
559ed407 1219
5a7e56a5
VK
1220 /*
1221 * affected cpus must always be the one, which are online. We aren't
1222 * managing offline cpus here.
1223 */
1224 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1225
194d99c7 1226 if (new_policy) {
5a7e56a5
VK
1227 policy->user_policy.min = policy->min;
1228 policy->user_policy.max = policy->max;
6d4e81ed 1229
2f0ba790 1230 for_each_cpu(j, policy->related_cpus) {
988bed09 1231 per_cpu(cpufreq_cpu_data, j) = policy;
2f0ba790
RW
1232 add_cpu_dev_symlink(policy, j);
1233 }
ff010472
VK
1234 } else {
1235 policy->min = policy->user_policy.min;
1236 policy->max = policy->user_policy.max;
988bed09 1237 }
652ed95d 1238
2ed99e39 1239 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
da60ce9f
VK
1240 policy->cur = cpufreq_driver->get(policy->cpu);
1241 if (!policy->cur) {
1242 pr_err("%s: ->get() failed\n", __func__);
d417e069 1243 goto out_destroy_policy;
da60ce9f
VK
1244 }
1245 }
1246
d3916691
VK
1247 /*
1248 * Sometimes boot loaders set CPU frequency to a value outside of
1249 * frequency table present with cpufreq core. In such cases CPU might be
1250 * unstable if it has to run on that frequency for long duration of time
1251 * and so its better to set it to a frequency which is specified in
1252 * freq-table. This also makes cpufreq stats inconsistent as
1253 * cpufreq-stats would fail to register because current frequency of CPU
1254 * isn't found in freq-table.
1255 *
1256 * Because we don't want this change to effect boot process badly, we go
1257 * for the next freq which is >= policy->cur ('cur' must be set by now,
1258 * otherwise we will end up setting freq to lowest of the table as 'cur'
1259 * is initialized to zero).
1260 *
1261 * We are passing target-freq as "policy->cur - 1" otherwise
1262 * __cpufreq_driver_target() would simply fail, as policy->cur will be
1263 * equal to target-freq.
1264 */
1265 if ((cpufreq_driver->flags & CPUFREQ_NEED_INITIAL_FREQ_CHECK)
1266 && has_target()) {
1267 /* Are we running at unknown frequency ? */
1268 ret = cpufreq_frequency_table_get_index(policy, policy->cur);
1269 if (ret == -EINVAL) {
1270 /* Warn user and fix it */
1271 pr_warn("%s: CPU%d: Running at unlisted freq: %u KHz\n",
1272 __func__, policy->cpu, policy->cur);
1273 ret = __cpufreq_driver_target(policy, policy->cur - 1,
1274 CPUFREQ_RELATION_L);
1275
1276 /*
1277 * Reaching here after boot in a few seconds may not
1278 * mean that system will remain stable at "unknown"
1279 * frequency for longer duration. Hence, a BUG_ON().
1280 */
1281 BUG_ON(ret);
1282 pr_warn("%s: CPU%d: Unlisted initial frequency changed to: %u KHz\n",
1283 __func__, policy->cpu, policy->cur);
1284 }
1285 }
1286
194d99c7 1287 if (new_policy) {
d9612a49 1288 ret = cpufreq_add_dev_interface(policy);
a82fab29 1289 if (ret)
d417e069 1290 goto out_destroy_policy;
1aefc75b
RW
1291
1292 cpufreq_stats_create_table(policy);
8ff69732 1293
988bed09
VK
1294 write_lock_irqsave(&cpufreq_driver_lock, flags);
1295 list_add(&policy->policy_list, &cpufreq_policy_list);
1296 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1297 }
9515f4d6 1298
7f0fa40f
VK
1299 ret = cpufreq_init_policy(policy);
1300 if (ret) {
1301 pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n",
1302 __func__, cpu, ret);
194d99c7
RW
1303 /* cpufreq_policy_free() will notify based on this */
1304 new_policy = false;
d417e069 1305 goto out_destroy_policy;
08fd8c1c 1306 }
e18f1682 1307
4e97b631 1308 up_write(&policy->rwsem);
08fd8c1c 1309
038c5b3e 1310 kobject_uevent(&policy->kobj, KOBJ_ADD);
7c45cf31 1311
7c45cf31
VK
1312 /* Callback for handling stuff after policy is ready */
1313 if (cpufreq_driver->ready)
1314 cpufreq_driver->ready(policy);
1315
2d06d8c4 1316 pr_debug("initialization complete\n");
87c32271 1317
1da177e4
LT
1318 return 0;
1319
d417e069 1320out_destroy_policy:
b24b6478
VK
1321 for_each_cpu(j, policy->real_cpus)
1322 remove_cpu_dev_symlink(policy, get_cpu_device(j));
1323
7106e02b
PB
1324 up_write(&policy->rwsem);
1325
d417e069 1326out_exit_policy:
da60ce9f
VK
1327 if (cpufreq_driver->exit)
1328 cpufreq_driver->exit(policy);
2f0ba790 1329
8101f997 1330out_free_policy:
f9f41e3e 1331 cpufreq_policy_free(policy);
1da177e4
LT
1332 return ret;
1333}
1334
0b275352
RW
1335/**
1336 * cpufreq_add_dev - the cpufreq interface for a CPU device.
1337 * @dev: CPU device.
1338 * @sif: Subsystem interface structure pointer (not used)
1339 */
1340static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1341{
a794d613 1342 struct cpufreq_policy *policy;
0b275352 1343 unsigned cpu = dev->id;
26619804 1344 int ret;
0b275352
RW
1345
1346 dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu);
1347
26619804
VK
1348 if (cpu_online(cpu)) {
1349 ret = cpufreq_online(cpu);
1350 if (ret)
1351 return ret;
1352 }
0b275352 1353
26619804 1354 /* Create sysfs link on CPU registration */
a794d613 1355 policy = per_cpu(cpufreq_cpu_data, cpu);
2f0ba790
RW
1356 if (policy)
1357 add_cpu_dev_symlink(policy, cpu);
26619804 1358
2f0ba790 1359 return 0;
1da177e4
LT
1360}
1361
27622b06 1362static int cpufreq_offline(unsigned int cpu)
1da177e4 1363{
3a3e9e06 1364 struct cpufreq_policy *policy;
69cee714 1365 int ret;
1da177e4 1366
b8eed8af 1367 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
1da177e4 1368
988bed09 1369 policy = cpufreq_cpu_get_raw(cpu);
3a3e9e06 1370 if (!policy) {
b8eed8af 1371 pr_debug("%s: No cpu_data found\n", __func__);
27622b06 1372 return 0;
1da177e4 1373 }
1da177e4 1374
49f18560 1375 down_write(&policy->rwsem);
45482c70
RW
1376 if (has_target())
1377 cpufreq_stop_governor(policy);
1da177e4 1378
9591becb 1379 cpumask_clear_cpu(cpu, policy->cpus);
4573237b 1380
9591becb
VK
1381 if (policy_is_inactive(policy)) {
1382 if (has_target())
1383 strncpy(policy->last_governor, policy->governor->name,
1384 CPUFREQ_NAME_LEN);
69030dd1
SP
1385 else
1386 policy->last_policy = policy->policy;
9591becb
VK
1387 } else if (cpu == policy->cpu) {
1388 /* Nominate new CPU */
1389 policy->cpu = cpumask_any(policy->cpus);
1390 }
084f3493 1391
9591becb
VK
1392 /* Start governor again for active policy */
1393 if (!policy_is_inactive(policy)) {
1394 if (has_target()) {
0a300767 1395 ret = cpufreq_start_governor(policy);
9591becb
VK
1396 if (ret)
1397 pr_err("%s: Failed to start governor\n", __func__);
1398 }
cedb70af 1399
49f18560 1400 goto unlock;
cedb70af
SB
1401 }
1402
69cee714
VK
1403 if (cpufreq_driver->stop_cpu)
1404 cpufreq_driver->stop_cpu(policy);
87549141 1405
36be3418
RW
1406 if (has_target())
1407 cpufreq_exit_governor(policy);
1da177e4 1408
87549141
VK
1409 /*
1410 * Perform the ->exit() even during light-weight tear-down,
1411 * since this is a core component, and is essential for the
1412 * subsequent light-weight ->init() to succeed.
1413 */
55582bcc 1414 if (cpufreq_driver->exit) {
87549141 1415 cpufreq_driver->exit(policy);
55582bcc
SP
1416 policy->freq_table = NULL;
1417 }
49f18560
VK
1418
1419unlock:
1420 up_write(&policy->rwsem);
27622b06 1421 return 0;
1da177e4
LT
1422}
1423
cedb70af 1424/**
27a862e9 1425 * cpufreq_remove_dev - remove a CPU device
cedb70af
SB
1426 *
1427 * Removes the cpufreq interface for a CPU device.
cedb70af 1428 */
71db87ba 1429static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
5a01f2e8 1430{
8a25a2fd 1431 unsigned int cpu = dev->id;
559ed407 1432 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
87549141 1433
559ed407 1434 if (!policy)
1af115d6 1435 return;
87549141 1436
69cee714
VK
1437 if (cpu_online(cpu))
1438 cpufreq_offline(cpu);
87549141 1439
559ed407 1440 cpumask_clear_cpu(cpu, policy->real_cpus);
26619804 1441 remove_cpu_dev_symlink(policy, dev);
87549141 1442
f344dae0 1443 if (cpumask_empty(policy->real_cpus))
f9f41e3e 1444 cpufreq_policy_free(policy);
5a01f2e8
VP
1445}
1446
1da177e4 1447/**
bb176f7d
VK
1448 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1449 * in deep trouble.
a1e1dc41 1450 * @policy: policy managing CPUs
1da177e4
LT
1451 * @new_freq: CPU frequency the CPU actually runs at
1452 *
29464f28
DJ
1453 * We adjust to current frequency first, and need to clean up later.
1454 * So either call to cpufreq_update_policy() or schedule handle_update()).
1da177e4 1455 */
a1e1dc41 1456static void cpufreq_out_of_sync(struct cpufreq_policy *policy,
e08f5f5b 1457 unsigned int new_freq)
1da177e4
LT
1458{
1459 struct cpufreq_freqs freqs;
b43a7ffb 1460
e837f9b5 1461 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing core thinks of %u, is %u kHz\n",
a1e1dc41 1462 policy->cur, new_freq);
1da177e4 1463
a1e1dc41 1464 freqs.old = policy->cur;
1da177e4 1465 freqs.new = new_freq;
b43a7ffb 1466
8fec051e
VK
1467 cpufreq_freq_transition_begin(policy, &freqs);
1468 cpufreq_freq_transition_end(policy, &freqs, 0);
1da177e4
LT
1469}
1470
32ee8c3e 1471/**
4ab70df4 1472 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
95235ca2
VP
1473 * @cpu: CPU number
1474 *
1475 * This is the last known freq, without actually getting it from the driver.
1476 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1477 */
1478unsigned int cpufreq_quick_get(unsigned int cpu)
1479{
9e21ba8b 1480 struct cpufreq_policy *policy;
e08f5f5b 1481 unsigned int ret_freq = 0;
c75361c0 1482 unsigned long flags;
95235ca2 1483
c75361c0
RC
1484 read_lock_irqsave(&cpufreq_driver_lock, flags);
1485
1486 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get) {
1487 ret_freq = cpufreq_driver->get(cpu);
1488 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1489 return ret_freq;
1490 }
1491
1492 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
9e21ba8b
DB
1493
1494 policy = cpufreq_cpu_get(cpu);
95235ca2 1495 if (policy) {
e08f5f5b 1496 ret_freq = policy->cur;
95235ca2
VP
1497 cpufreq_cpu_put(policy);
1498 }
1499
4d34a67d 1500 return ret_freq;
95235ca2
VP
1501}
1502EXPORT_SYMBOL(cpufreq_quick_get);
1503
3d737108
JB
1504/**
1505 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1506 * @cpu: CPU number
1507 *
1508 * Just return the max possible frequency for a given CPU.
1509 */
1510unsigned int cpufreq_quick_get_max(unsigned int cpu)
1511{
1512 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1513 unsigned int ret_freq = 0;
1514
1515 if (policy) {
1516 ret_freq = policy->max;
1517 cpufreq_cpu_put(policy);
1518 }
1519
1520 return ret_freq;
1521}
1522EXPORT_SYMBOL(cpufreq_quick_get_max);
1523
d92d50a4 1524static unsigned int __cpufreq_get(struct cpufreq_policy *policy)
1da177e4 1525{
e08f5f5b 1526 unsigned int ret_freq = 0;
5800043b 1527
1c3d85dd 1528 if (!cpufreq_driver->get)
4d34a67d 1529 return ret_freq;
1da177e4 1530
d92d50a4 1531 ret_freq = cpufreq_driver->get(policy->cpu);
1da177e4 1532
b7898fda
RW
1533 /*
1534 * Updating inactive policies is invalid, so avoid doing that. Also
1535 * if fast frequency switching is used with the given policy, the check
1536 * against policy->cur is pointless, so skip it in that case too.
1537 */
1538 if (unlikely(policy_is_inactive(policy)) || policy->fast_switch_enabled)
11e584cf
VK
1539 return ret_freq;
1540
e08f5f5b 1541 if (ret_freq && policy->cur &&
1c3d85dd 1542 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
e08f5f5b
GS
1543 /* verify no discrepancy between actual and
1544 saved value exists */
1545 if (unlikely(ret_freq != policy->cur)) {
a1e1dc41 1546 cpufreq_out_of_sync(policy, ret_freq);
1da177e4
LT
1547 schedule_work(&policy->update);
1548 }
1549 }
1550
4d34a67d 1551 return ret_freq;
5a01f2e8 1552}
1da177e4 1553
5a01f2e8
VP
1554/**
1555 * cpufreq_get - get the current CPU frequency (in kHz)
1556 * @cpu: CPU number
1557 *
1558 * Get the CPU current (static) CPU frequency
1559 */
1560unsigned int cpufreq_get(unsigned int cpu)
1561{
999976e0 1562 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
5a01f2e8 1563 unsigned int ret_freq = 0;
5a01f2e8 1564
999976e0
AP
1565 if (policy) {
1566 down_read(&policy->rwsem);
182e36af
RW
1567
1568 if (!policy_is_inactive(policy))
1569 ret_freq = __cpufreq_get(policy);
1570
999976e0 1571 up_read(&policy->rwsem);
5a01f2e8 1572
999976e0
AP
1573 cpufreq_cpu_put(policy);
1574 }
6eed9404 1575
4d34a67d 1576 return ret_freq;
1da177e4
LT
1577}
1578EXPORT_SYMBOL(cpufreq_get);
1579
999f5729
RW
1580static unsigned int cpufreq_update_current_freq(struct cpufreq_policy *policy)
1581{
1582 unsigned int new_freq;
1583
1584 new_freq = cpufreq_driver->get(policy->cpu);
1585 if (!new_freq)
1586 return 0;
1587
1588 if (!policy->cur) {
1589 pr_debug("cpufreq: Driver did not initialize current freq\n");
1590 policy->cur = new_freq;
1591 } else if (policy->cur != new_freq && has_target()) {
1592 cpufreq_out_of_sync(policy, new_freq);
1593 }
1594
1595 return new_freq;
1596}
1597
8a25a2fd
KS
1598static struct subsys_interface cpufreq_interface = {
1599 .name = "cpufreq",
1600 .subsys = &cpu_subsys,
1601 .add_dev = cpufreq_add_dev,
1602 .remove_dev = cpufreq_remove_dev,
e00e56df
RW
1603};
1604
e28867ea
VK
1605/*
1606 * In case platform wants some specific frequency to be configured
1607 * during suspend..
1608 */
1609int cpufreq_generic_suspend(struct cpufreq_policy *policy)
1610{
1611 int ret;
1612
1613 if (!policy->suspend_freq) {
201f3716
BZ
1614 pr_debug("%s: suspend_freq not defined\n", __func__);
1615 return 0;
e28867ea
VK
1616 }
1617
1618 pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1619 policy->suspend_freq);
1620
1621 ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1622 CPUFREQ_RELATION_H);
1623 if (ret)
1624 pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1625 __func__, policy->suspend_freq, ret);
1626
1627 return ret;
1628}
1629EXPORT_SYMBOL(cpufreq_generic_suspend);
1630
42d4dc3f 1631/**
2f0aea93 1632 * cpufreq_suspend() - Suspend CPUFreq governors
e00e56df 1633 *
2f0aea93
VK
1634 * Called during system wide Suspend/Hibernate cycles for suspending governors
1635 * as some platforms can't change frequency after this point in suspend cycle.
1636 * Because some of the devices (like: i2c, regulators, etc) they use for
1637 * changing frequency are suspended quickly after this point.
42d4dc3f 1638 */
2f0aea93 1639void cpufreq_suspend(void)
42d4dc3f 1640{
3a3e9e06 1641 struct cpufreq_policy *policy;
42d4dc3f 1642
2f0aea93
VK
1643 if (!cpufreq_driver)
1644 return;
42d4dc3f 1645
ba41e1bc 1646 if (!has_target() && !cpufreq_driver->suspend)
b1b12bab 1647 goto suspend;
42d4dc3f 1648
2f0aea93
VK
1649 pr_debug("%s: Suspending Governors\n", __func__);
1650
f963735a 1651 for_each_active_policy(policy) {
ba41e1bc
RW
1652 if (has_target()) {
1653 down_write(&policy->rwsem);
45482c70 1654 cpufreq_stop_governor(policy);
ba41e1bc 1655 up_write(&policy->rwsem);
ba41e1bc
RW
1656 }
1657
1658 if (cpufreq_driver->suspend && cpufreq_driver->suspend(policy))
2f0aea93
VK
1659 pr_err("%s: Failed to suspend driver: %p\n", __func__,
1660 policy);
42d4dc3f 1661 }
b1b12bab
VK
1662
1663suspend:
1664 cpufreq_suspended = true;
42d4dc3f
BH
1665}
1666
1da177e4 1667/**
2f0aea93 1668 * cpufreq_resume() - Resume CPUFreq governors
1da177e4 1669 *
2f0aea93
VK
1670 * Called during system wide Suspend/Hibernate cycle for resuming governors that
1671 * are suspended with cpufreq_suspend().
1da177e4 1672 */
2f0aea93 1673void cpufreq_resume(void)
1da177e4 1674{
3a3e9e06 1675 struct cpufreq_policy *policy;
49f18560 1676 int ret;
1da177e4 1677
2f0aea93 1678 if (!cpufreq_driver)
703cbaa6
BY
1679 return;
1680
1681 if (unlikely(!cpufreq_suspended))
2f0aea93 1682 return;
1da177e4 1683
8e30444e
LT
1684 cpufreq_suspended = false;
1685
ba41e1bc 1686 if (!has_target() && !cpufreq_driver->resume)
e00e56df 1687 return;
1da177e4 1688
2f0aea93 1689 pr_debug("%s: Resuming Governors\n", __func__);
1da177e4 1690
f963735a 1691 for_each_active_policy(policy) {
49f18560 1692 if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) {
0c5aa405
VK
1693 pr_err("%s: Failed to resume driver: %p\n", __func__,
1694 policy);
ba41e1bc 1695 } else if (has_target()) {
49f18560 1696 down_write(&policy->rwsem);
0a300767 1697 ret = cpufreq_start_governor(policy);
49f18560
VK
1698 up_write(&policy->rwsem);
1699
1700 if (ret)
1701 pr_err("%s: Failed to start governor for policy: %p\n",
1702 __func__, policy);
1703 }
2f0aea93
VK
1704 }
1705}
1da177e4 1706
9d95046e
BP
1707/**
1708 * cpufreq_get_current_driver - return current driver's name
1709 *
1710 * Return the name string of the currently loaded cpufreq driver
1711 * or NULL, if none.
1712 */
1713const char *cpufreq_get_current_driver(void)
1714{
1c3d85dd
RW
1715 if (cpufreq_driver)
1716 return cpufreq_driver->name;
1717
1718 return NULL;
9d95046e
BP
1719}
1720EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
1da177e4 1721
51315cdf
TP
1722/**
1723 * cpufreq_get_driver_data - return current driver data
1724 *
1725 * Return the private data of the currently loaded cpufreq
1726 * driver, or NULL if no cpufreq driver is loaded.
1727 */
1728void *cpufreq_get_driver_data(void)
1729{
1730 if (cpufreq_driver)
1731 return cpufreq_driver->driver_data;
1732
1733 return NULL;
1734}
1735EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);
1736
1da177e4
LT
1737/*********************************************************************
1738 * NOTIFIER LISTS INTERFACE *
1739 *********************************************************************/
1740
1741/**
1742 * cpufreq_register_notifier - register a driver with cpufreq
1743 * @nb: notifier function to register
1744 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1745 *
32ee8c3e 1746 * Add a driver to one of two lists: either a list of drivers that
1da177e4
LT
1747 * are notified about clock rate changes (once before and once after
1748 * the transition), or a list of drivers that are notified about
1749 * changes in cpufreq policy.
1750 *
1751 * This function may sleep, and has the same return conditions as
e041c683 1752 * blocking_notifier_chain_register.
1da177e4
LT
1753 */
1754int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1755{
1756 int ret;
1757
d5aaffa9
DB
1758 if (cpufreq_disabled())
1759 return -EINVAL;
1760
1da177e4
LT
1761 switch (list) {
1762 case CPUFREQ_TRANSITION_NOTIFIER:
b7898fda
RW
1763 mutex_lock(&cpufreq_fast_switch_lock);
1764
1765 if (cpufreq_fast_switch_count > 0) {
1766 mutex_unlock(&cpufreq_fast_switch_lock);
1767 return -EBUSY;
1768 }
b4dfdbb3 1769 ret = srcu_notifier_chain_register(
e041c683 1770 &cpufreq_transition_notifier_list, nb);
b7898fda
RW
1771 if (!ret)
1772 cpufreq_fast_switch_count--;
1773
1774 mutex_unlock(&cpufreq_fast_switch_lock);
1da177e4
LT
1775 break;
1776 case CPUFREQ_POLICY_NOTIFIER:
e041c683
AS
1777 ret = blocking_notifier_chain_register(
1778 &cpufreq_policy_notifier_list, nb);
1da177e4
LT
1779 break;
1780 default:
1781 ret = -EINVAL;
1782 }
1da177e4
LT
1783
1784 return ret;
1785}
1786EXPORT_SYMBOL(cpufreq_register_notifier);
1787
1da177e4
LT
1788/**
1789 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1790 * @nb: notifier block to be unregistered
bb176f7d 1791 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1da177e4
LT
1792 *
1793 * Remove a driver from the CPU frequency notifier list.
1794 *
1795 * This function may sleep, and has the same return conditions as
e041c683 1796 * blocking_notifier_chain_unregister.
1da177e4
LT
1797 */
1798int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1799{
1800 int ret;
1801
d5aaffa9
DB
1802 if (cpufreq_disabled())
1803 return -EINVAL;
1804
1da177e4
LT
1805 switch (list) {
1806 case CPUFREQ_TRANSITION_NOTIFIER:
b7898fda
RW
1807 mutex_lock(&cpufreq_fast_switch_lock);
1808
b4dfdbb3 1809 ret = srcu_notifier_chain_unregister(
e041c683 1810 &cpufreq_transition_notifier_list, nb);
b7898fda
RW
1811 if (!ret && !WARN_ON(cpufreq_fast_switch_count >= 0))
1812 cpufreq_fast_switch_count++;
1813
1814 mutex_unlock(&cpufreq_fast_switch_lock);
1da177e4
LT
1815 break;
1816 case CPUFREQ_POLICY_NOTIFIER:
e041c683
AS
1817 ret = blocking_notifier_chain_unregister(
1818 &cpufreq_policy_notifier_list, nb);
1da177e4
LT
1819 break;
1820 default:
1821 ret = -EINVAL;
1822 }
1da177e4
LT
1823
1824 return ret;
1825}
1826EXPORT_SYMBOL(cpufreq_unregister_notifier);
1827
1828
1829/*********************************************************************
1830 * GOVERNORS *
1831 *********************************************************************/
1832
b7898fda
RW
1833/**
1834 * cpufreq_driver_fast_switch - Carry out a fast CPU frequency switch.
1835 * @policy: cpufreq policy to switch the frequency for.
1836 * @target_freq: New frequency to set (may be approximate).
1837 *
1838 * Carry out a fast frequency switch without sleeping.
1839 *
1840 * The driver's ->fast_switch() callback invoked by this function must be
1841 * suitable for being called from within RCU-sched read-side critical sections
1842 * and it is expected to select the minimum available frequency greater than or
1843 * equal to @target_freq (CPUFREQ_RELATION_L).
1844 *
1845 * This function must not be called if policy->fast_switch_enabled is unset.
1846 *
1847 * Governors calling this function must guarantee that it will never be invoked
1848 * twice in parallel for the same policy and that it will never be called in
1849 * parallel with either ->target() or ->target_index() for the same policy.
1850 *
209887e6
VK
1851 * Returns the actual frequency set for the CPU.
1852 *
1853 * If 0 is returned by the driver's ->fast_switch() callback to indicate an
1854 * error condition, the hardware configuration must be preserved.
b7898fda
RW
1855 */
1856unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy,
1857 unsigned int target_freq)
1858{
b9af6948 1859 target_freq = clamp_val(target_freq, policy->min, policy->max);
b7898fda
RW
1860
1861 return cpufreq_driver->fast_switch(policy, target_freq);
1862}
1863EXPORT_SYMBOL_GPL(cpufreq_driver_fast_switch);
1864
1c03a2d0
VK
1865/* Must set freqs->new to intermediate frequency */
1866static int __target_intermediate(struct cpufreq_policy *policy,
1867 struct cpufreq_freqs *freqs, int index)
1868{
1869 int ret;
1870
1871 freqs->new = cpufreq_driver->get_intermediate(policy, index);
1872
1873 /* We don't need to switch to intermediate freq */
1874 if (!freqs->new)
1875 return 0;
1876
1877 pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
1878 __func__, policy->cpu, freqs->old, freqs->new);
1879
1880 cpufreq_freq_transition_begin(policy, freqs);
1881 ret = cpufreq_driver->target_intermediate(policy, index);
1882 cpufreq_freq_transition_end(policy, freqs, ret);
1883
1884 if (ret)
1885 pr_err("%s: Failed to change to intermediate frequency: %d\n",
1886 __func__, ret);
1887
1888 return ret;
1889}
1890
23727845 1891static int __target_index(struct cpufreq_policy *policy, int index)
8d65775d 1892{
1c03a2d0
VK
1893 struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
1894 unsigned int intermediate_freq = 0;
23727845 1895 unsigned int newfreq = policy->freq_table[index].frequency;
8d65775d
VK
1896 int retval = -EINVAL;
1897 bool notify;
1898
23727845
VK
1899 if (newfreq == policy->cur)
1900 return 0;
1901
8d65775d 1902 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
8d65775d 1903 if (notify) {
1c03a2d0
VK
1904 /* Handle switching to intermediate frequency */
1905 if (cpufreq_driver->get_intermediate) {
1906 retval = __target_intermediate(policy, &freqs, index);
1907 if (retval)
1908 return retval;
1909
1910 intermediate_freq = freqs.new;
1911 /* Set old freq to intermediate */
1912 if (intermediate_freq)
1913 freqs.old = freqs.new;
1914 }
8d65775d 1915
23727845 1916 freqs.new = newfreq;
8d65775d
VK
1917 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
1918 __func__, policy->cpu, freqs.old, freqs.new);
1919
1920 cpufreq_freq_transition_begin(policy, &freqs);
1921 }
1922
1923 retval = cpufreq_driver->target_index(policy, index);
1924 if (retval)
1925 pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
1926 retval);
1927
1c03a2d0 1928 if (notify) {
8d65775d
VK
1929 cpufreq_freq_transition_end(policy, &freqs, retval);
1930
1c03a2d0
VK
1931 /*
1932 * Failed after setting to intermediate freq? Driver should have
1933 * reverted back to initial frequency and so should we. Check
1934 * here for intermediate_freq instead of get_intermediate, in
58405af6 1935 * case we haven't switched to intermediate freq at all.
1c03a2d0
VK
1936 */
1937 if (unlikely(retval && intermediate_freq)) {
1938 freqs.old = intermediate_freq;
1939 freqs.new = policy->restore_freq;
1940 cpufreq_freq_transition_begin(policy, &freqs);
1941 cpufreq_freq_transition_end(policy, &freqs, 0);
1942 }
1943 }
1944
8d65775d
VK
1945 return retval;
1946}
1947
1da177e4
LT
1948int __cpufreq_driver_target(struct cpufreq_policy *policy,
1949 unsigned int target_freq,
1950 unsigned int relation)
1951{
7249924e 1952 unsigned int old_target_freq = target_freq;
d218ed77 1953 int index;
c32b6b8e 1954
a7b422cd
KRW
1955 if (cpufreq_disabled())
1956 return -ENODEV;
1957
7249924e 1958 /* Make sure that target_freq is within supported range */
910c6e88 1959 target_freq = clamp_val(target_freq, policy->min, policy->max);
7249924e
VK
1960
1961 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
e837f9b5 1962 policy->cpu, target_freq, relation, old_target_freq);
5a1c0228 1963
9c0ebcf7
VK
1964 /*
1965 * This might look like a redundant call as we are checking it again
1966 * after finding index. But it is left intentionally for cases where
1967 * exactly same freq is called again and so we can save on few function
1968 * calls.
1969 */
5a1c0228
VK
1970 if (target_freq == policy->cur)
1971 return 0;
1972
1c03a2d0
VK
1973 /* Save last value to restore later on errors */
1974 policy->restore_freq = policy->cur;
1975
1c3d85dd 1976 if (cpufreq_driver->target)
6019d23a 1977 return cpufreq_driver->target(policy, target_freq, relation);
9c0ebcf7 1978
6019d23a
RW
1979 if (!cpufreq_driver->target_index)
1980 return -EINVAL;
9c0ebcf7 1981
d218ed77 1982 index = cpufreq_frequency_table_target(policy, target_freq, relation);
6019d23a 1983
23727845 1984 return __target_index(policy, index);
1da177e4
LT
1985}
1986EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1987
1da177e4
LT
1988int cpufreq_driver_target(struct cpufreq_policy *policy,
1989 unsigned int target_freq,
1990 unsigned int relation)
1991{
f1829e4a 1992 int ret = -EINVAL;
1da177e4 1993
ad7722da 1994 down_write(&policy->rwsem);
1da177e4
LT
1995
1996 ret = __cpufreq_driver_target(policy, target_freq, relation);
1997
ad7722da 1998 up_write(&policy->rwsem);
1da177e4 1999
1da177e4
LT
2000 return ret;
2001}
2002EXPORT_SYMBOL_GPL(cpufreq_driver_target);
2003
de1df26b
RW
2004__weak struct cpufreq_governor *cpufreq_fallback_governor(void)
2005{
2006 return NULL;
2007}
2008
a92604b4 2009static int cpufreq_init_governor(struct cpufreq_policy *policy)
1da177e4 2010{
cc993cab 2011 int ret;
6afde10c 2012
2f0aea93
VK
2013 /* Don't start any governor operations if we are entering suspend */
2014 if (cpufreq_suspended)
2015 return 0;
cb57720b
EZ
2016 /*
2017 * Governor might not be initiated here if ACPI _PPC changed
2018 * notification happened, so check it.
2019 */
2020 if (!policy->governor)
2021 return -EINVAL;
2f0aea93 2022
ed4676e2
VK
2023 /* Platform doesn't want dynamic frequency switching ? */
2024 if (policy->governor->dynamic_switching &&
fc4c709f 2025 cpufreq_driver->flags & CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING) {
de1df26b
RW
2026 struct cpufreq_governor *gov = cpufreq_fallback_governor();
2027
2028 if (gov) {
fe829ed8 2029 pr_warn("Can't use %s governor as dynamic switching is disallowed. Fallback to %s governor\n",
e837f9b5 2030 policy->governor->name, gov->name);
6afde10c 2031 policy->governor = gov;
de1df26b
RW
2032 } else {
2033 return -EINVAL;
6afde10c 2034 }
1c256245 2035 }
1da177e4 2036
a92604b4
RW
2037 if (!try_module_get(policy->governor->owner))
2038 return -EINVAL;
95731ebb 2039
a92604b4 2040 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
1da177e4 2041
e788892b
RW
2042 if (policy->governor->init) {
2043 ret = policy->governor->init(policy);
2044 if (ret) {
36be3418 2045 module_put(policy->governor->owner);
e788892b
RW
2046 return ret;
2047 }
36be3418 2048 }
1da177e4 2049
a92604b4
RW
2050 return 0;
2051}
2052
2053static void cpufreq_exit_governor(struct cpufreq_policy *policy)
2054{
2055 if (cpufreq_suspended || !policy->governor)
2056 return;
2057
2058 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2059
e788892b
RW
2060 if (policy->governor->exit)
2061 policy->governor->exit(policy);
a92604b4 2062
a92604b4 2063 module_put(policy->governor->owner);
1da177e4
LT
2064}
2065
0a300767
RW
2066static int cpufreq_start_governor(struct cpufreq_policy *policy)
2067{
2068 int ret;
2069
a92604b4
RW
2070 if (cpufreq_suspended)
2071 return 0;
2072
2073 if (!policy->governor)
2074 return -EINVAL;
2075
2076 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2077
3bbf8fe3
RW
2078 if (cpufreq_driver->get && !cpufreq_driver->setpolicy)
2079 cpufreq_update_current_freq(policy);
2080
e788892b
RW
2081 if (policy->governor->start) {
2082 ret = policy->governor->start(policy);
2083 if (ret)
2084 return ret;
2085 }
2086
2087 if (policy->governor->limits)
2088 policy->governor->limits(policy);
d6ff44d6 2089
d6ff44d6 2090 return 0;
0a300767
RW
2091}
2092
a92604b4
RW
2093static void cpufreq_stop_governor(struct cpufreq_policy *policy)
2094{
2095 if (cpufreq_suspended || !policy->governor)
2096 return;
2097
2098 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2099
e788892b
RW
2100 if (policy->governor->stop)
2101 policy->governor->stop(policy);
a92604b4
RW
2102}
2103
2104static void cpufreq_governor_limits(struct cpufreq_policy *policy)
2105{
2106 if (cpufreq_suspended || !policy->governor)
2107 return;
2108
2109 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2110
e788892b
RW
2111 if (policy->governor->limits)
2112 policy->governor->limits(policy);
0a300767
RW
2113}
2114
1da177e4
LT
2115int cpufreq_register_governor(struct cpufreq_governor *governor)
2116{
3bcb09a3 2117 int err;
1da177e4
LT
2118
2119 if (!governor)
2120 return -EINVAL;
2121
a7b422cd
KRW
2122 if (cpufreq_disabled())
2123 return -ENODEV;
2124
3fc54d37 2125 mutex_lock(&cpufreq_governor_mutex);
32ee8c3e 2126
3bcb09a3 2127 err = -EBUSY;
42f91fa1 2128 if (!find_governor(governor->name)) {
3bcb09a3
JF
2129 err = 0;
2130 list_add(&governor->governor_list, &cpufreq_governor_list);
1da177e4 2131 }
1da177e4 2132
32ee8c3e 2133 mutex_unlock(&cpufreq_governor_mutex);
3bcb09a3 2134 return err;
1da177e4
LT
2135}
2136EXPORT_SYMBOL_GPL(cpufreq_register_governor);
2137
1da177e4
LT
2138void cpufreq_unregister_governor(struct cpufreq_governor *governor)
2139{
4573237b
VK
2140 struct cpufreq_policy *policy;
2141 unsigned long flags;
90e41bac 2142
1da177e4
LT
2143 if (!governor)
2144 return;
2145
a7b422cd
KRW
2146 if (cpufreq_disabled())
2147 return;
2148
4573237b
VK
2149 /* clear last_governor for all inactive policies */
2150 read_lock_irqsave(&cpufreq_driver_lock, flags);
2151 for_each_inactive_policy(policy) {
18bf3a12
VK
2152 if (!strcmp(policy->last_governor, governor->name)) {
2153 policy->governor = NULL;
4573237b 2154 strcpy(policy->last_governor, "\0");
18bf3a12 2155 }
90e41bac 2156 }
4573237b 2157 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
90e41bac 2158
3fc54d37 2159 mutex_lock(&cpufreq_governor_mutex);
1da177e4 2160 list_del(&governor->governor_list);
3fc54d37 2161 mutex_unlock(&cpufreq_governor_mutex);
1da177e4
LT
2162}
2163EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
2164
2165
1da177e4
LT
2166/*********************************************************************
2167 * POLICY INTERFACE *
2168 *********************************************************************/
2169
2170/**
2171 * cpufreq_get_policy - get the current cpufreq_policy
29464f28
DJ
2172 * @policy: struct cpufreq_policy into which the current cpufreq_policy
2173 * is written
1da177e4
LT
2174 *
2175 * Reads the current cpufreq policy.
2176 */
2177int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2178{
2179 struct cpufreq_policy *cpu_policy;
2180 if (!policy)
2181 return -EINVAL;
2182
2183 cpu_policy = cpufreq_cpu_get(cpu);
2184 if (!cpu_policy)
2185 return -EINVAL;
2186
d5b73cd8 2187 memcpy(policy, cpu_policy, sizeof(*policy));
1da177e4
LT
2188
2189 cpufreq_cpu_put(cpu_policy);
1da177e4
LT
2190 return 0;
2191}
2192EXPORT_SYMBOL(cpufreq_get_policy);
2193
153d7f3f 2194/*
037ce839
VK
2195 * policy : current policy.
2196 * new_policy: policy to be set.
153d7f3f 2197 */
037ce839 2198static int cpufreq_set_policy(struct cpufreq_policy *policy,
3a3e9e06 2199 struct cpufreq_policy *new_policy)
1da177e4 2200{
d9a789c7
RW
2201 struct cpufreq_governor *old_gov;
2202 int ret;
1da177e4 2203
e837f9b5
JP
2204 pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2205 new_policy->cpu, new_policy->min, new_policy->max);
1da177e4 2206
d5b73cd8 2207 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
1da177e4 2208
fba9573b
PX
2209 /*
2210 * This check works well when we store new min/max freq attributes,
2211 * because new_policy is a copy of policy with one field updated.
2212 */
2213 if (new_policy->min > new_policy->max)
d9a789c7 2214 return -EINVAL;
9c9a43ed 2215
1da177e4 2216 /* verify the cpu speed can be set within this limit */
3a3e9e06 2217 ret = cpufreq_driver->verify(new_policy);
1da177e4 2218 if (ret)
d9a789c7 2219 return ret;
1da177e4 2220
1da177e4 2221 /* adjust if necessary - all reasons */
e041c683 2222 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
3a3e9e06 2223 CPUFREQ_ADJUST, new_policy);
1da177e4 2224
bb176f7d
VK
2225 /*
2226 * verify the cpu speed can be set within this limit, which might be
2227 * different to the first one
2228 */
3a3e9e06 2229 ret = cpufreq_driver->verify(new_policy);
e041c683 2230 if (ret)
d9a789c7 2231 return ret;
1da177e4
LT
2232
2233 /* notification of the new policy */
e041c683 2234 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
3a3e9e06 2235 CPUFREQ_NOTIFY, new_policy);
1da177e4 2236
3a3e9e06
VK
2237 policy->min = new_policy->min;
2238 policy->max = new_policy->max;
1da177e4 2239
e3c06236
SM
2240 policy->cached_target_freq = UINT_MAX;
2241
2d06d8c4 2242 pr_debug("new min and max freqs are %u - %u kHz\n",
e837f9b5 2243 policy->min, policy->max);
1da177e4 2244
1c3d85dd 2245 if (cpufreq_driver->setpolicy) {
3a3e9e06 2246 policy->policy = new_policy->policy;
2d06d8c4 2247 pr_debug("setting range\n");
d9a789c7
RW
2248 return cpufreq_driver->setpolicy(new_policy);
2249 }
1da177e4 2250
0a300767
RW
2251 if (new_policy->governor == policy->governor) {
2252 pr_debug("cpufreq: governor limits update\n");
a92604b4 2253 cpufreq_governor_limits(policy);
d6ff44d6 2254 return 0;
0a300767 2255 }
7bd353a9 2256
d9a789c7
RW
2257 pr_debug("governor switch\n");
2258
2259 /* save old, working values */
2260 old_gov = policy->governor;
2261 /* end old governor */
2262 if (old_gov) {
45482c70 2263 cpufreq_stop_governor(policy);
36be3418 2264 cpufreq_exit_governor(policy);
1da177e4
LT
2265 }
2266
d9a789c7
RW
2267 /* start new governor */
2268 policy->governor = new_policy->governor;
a92604b4 2269 ret = cpufreq_init_governor(policy);
4bc384ae 2270 if (!ret) {
0a300767
RW
2271 ret = cpufreq_start_governor(policy);
2272 if (!ret) {
2273 pr_debug("cpufreq: governor change\n");
2274 return 0;
2275 }
b7898fda 2276 cpufreq_exit_governor(policy);
d9a789c7
RW
2277 }
2278
2279 /* new governor failed, so re-start old one */
2280 pr_debug("starting governor %s failed\n", policy->governor->name);
2281 if (old_gov) {
2282 policy->governor = old_gov;
a92604b4 2283 if (cpufreq_init_governor(policy))
4bc384ae
VK
2284 policy->governor = NULL;
2285 else
0a300767 2286 cpufreq_start_governor(policy);
d9a789c7
RW
2287 }
2288
4bc384ae 2289 return ret;
1da177e4
LT
2290}
2291
1da177e4
LT
2292/**
2293 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
2294 * @cpu: CPU which shall be re-evaluated
2295 *
25985edc 2296 * Useful for policy notifiers which have different necessities
1da177e4
LT
2297 * at different times.
2298 */
30248fef 2299void cpufreq_update_policy(unsigned int cpu)
1da177e4 2300{
3a3e9e06
VK
2301 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
2302 struct cpufreq_policy new_policy;
1da177e4 2303
fefa8ff8 2304 if (!policy)
30248fef 2305 return;
1da177e4 2306
ad7722da 2307 down_write(&policy->rwsem);
1da177e4 2308
30248fef 2309 if (policy_is_inactive(policy))
182e36af 2310 goto unlock;
182e36af 2311
2d06d8c4 2312 pr_debug("updating policy for CPU %u\n", cpu);
d5b73cd8 2313 memcpy(&new_policy, policy, sizeof(*policy));
3a3e9e06
VK
2314 new_policy.min = policy->user_policy.min;
2315 new_policy.max = policy->user_policy.max;
1da177e4 2316
bb176f7d
VK
2317 /*
2318 * BIOS might change freq behind our back
2319 * -> ask driver for current freq and notify governors about a change
2320 */
2ed99e39 2321 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
30248fef 2322 if (cpufreq_suspended)
742c87bf 2323 goto unlock;
30248fef 2324
999f5729 2325 new_policy.cur = cpufreq_update_current_freq(policy);
30248fef 2326 if (WARN_ON(!new_policy.cur))
fefa8ff8 2327 goto unlock;
0961dd0d
TR
2328 }
2329
30248fef 2330 cpufreq_set_policy(policy, &new_policy);
1da177e4 2331
fefa8ff8 2332unlock:
ad7722da 2333 up_write(&policy->rwsem);
5a01f2e8 2334
3a3e9e06 2335 cpufreq_cpu_put(policy);
1da177e4
LT
2336}
2337EXPORT_SYMBOL(cpufreq_update_policy);
2338
6f19efc0
LM
2339/*********************************************************************
2340 * BOOST *
2341 *********************************************************************/
2342static int cpufreq_boost_set_sw(int state)
2343{
6f19efc0
LM
2344 struct cpufreq_policy *policy;
2345 int ret = -EINVAL;
2346
f963735a 2347 for_each_active_policy(policy) {
f8bfc116
VK
2348 if (!policy->freq_table)
2349 continue;
49f18560 2350
f8bfc116
VK
2351 ret = cpufreq_frequency_table_cpuinfo(policy,
2352 policy->freq_table);
2353 if (ret) {
2354 pr_err("%s: Policy frequency update failed\n",
2355 __func__);
2356 break;
6f19efc0 2357 }
f8bfc116
VK
2358
2359 down_write(&policy->rwsem);
2360 policy->user_policy.max = policy->max;
2361 cpufreq_governor_limits(policy);
2362 up_write(&policy->rwsem);
6f19efc0
LM
2363 }
2364
2365 return ret;
2366}
2367
2368int cpufreq_boost_trigger_state(int state)
2369{
2370 unsigned long flags;
2371 int ret = 0;
2372
2373 if (cpufreq_driver->boost_enabled == state)
2374 return 0;
2375
2376 write_lock_irqsave(&cpufreq_driver_lock, flags);
2377 cpufreq_driver->boost_enabled = state;
2378 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2379
2380 ret = cpufreq_driver->set_boost(state);
2381 if (ret) {
2382 write_lock_irqsave(&cpufreq_driver_lock, flags);
2383 cpufreq_driver->boost_enabled = !state;
2384 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2385
e837f9b5
JP
2386 pr_err("%s: Cannot %s BOOST\n",
2387 __func__, state ? "enable" : "disable");
6f19efc0
LM
2388 }
2389
2390 return ret;
2391}
2392
41669da0 2393static bool cpufreq_boost_supported(void)
6f19efc0 2394{
7a6c79f2 2395 return likely(cpufreq_driver) && cpufreq_driver->set_boost;
6f19efc0 2396}
6f19efc0 2397
44139ed4
VK
2398static int create_boost_sysfs_file(void)
2399{
2400 int ret;
2401
c82bd444 2402 ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
44139ed4
VK
2403 if (ret)
2404 pr_err("%s: cannot register global BOOST sysfs file\n",
2405 __func__);
2406
2407 return ret;
2408}
2409
2410static void remove_boost_sysfs_file(void)
2411{
2412 if (cpufreq_boost_supported())
c82bd444 2413 sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
44139ed4
VK
2414}
2415
2416int cpufreq_enable_boost_support(void)
2417{
2418 if (!cpufreq_driver)
2419 return -EINVAL;
2420
2421 if (cpufreq_boost_supported())
2422 return 0;
2423
7a6c79f2 2424 cpufreq_driver->set_boost = cpufreq_boost_set_sw;
44139ed4
VK
2425
2426 /* This will get removed on driver unregister */
2427 return create_boost_sysfs_file();
2428}
2429EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
2430
6f19efc0
LM
2431int cpufreq_boost_enabled(void)
2432{
2433 return cpufreq_driver->boost_enabled;
2434}
2435EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
2436
1da177e4
LT
2437/*********************************************************************
2438 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2439 *********************************************************************/
27622b06 2440static enum cpuhp_state hp_online;
1da177e4 2441
c4a3fa26
CY
2442static int cpuhp_cpufreq_online(unsigned int cpu)
2443{
2444 cpufreq_online(cpu);
2445
2446 return 0;
2447}
2448
2449static int cpuhp_cpufreq_offline(unsigned int cpu)
2450{
2451 cpufreq_offline(cpu);
2452
2453 return 0;
2454}
2455
1da177e4
LT
2456/**
2457 * cpufreq_register_driver - register a CPU Frequency driver
2458 * @driver_data: A struct cpufreq_driver containing the values#
2459 * submitted by the CPU Frequency driver.
2460 *
bb176f7d 2461 * Registers a CPU Frequency driver to this core code. This code
63af4055 2462 * returns zero on success, -EEXIST when another driver got here first
32ee8c3e 2463 * (and isn't unregistered in the meantime).
1da177e4
LT
2464 *
2465 */
221dee28 2466int cpufreq_register_driver(struct cpufreq_driver *driver_data)
1da177e4
LT
2467{
2468 unsigned long flags;
2469 int ret;
2470
a7b422cd
KRW
2471 if (cpufreq_disabled())
2472 return -ENODEV;
2473
1da177e4 2474 if (!driver_data || !driver_data->verify || !driver_data->init ||
9c0ebcf7 2475 !(driver_data->setpolicy || driver_data->target_index ||
9832235f
RW
2476 driver_data->target) ||
2477 (driver_data->setpolicy && (driver_data->target_index ||
1c03a2d0
VK
2478 driver_data->target)) ||
2479 (!!driver_data->get_intermediate != !!driver_data->target_intermediate))
1da177e4
LT
2480 return -EINVAL;
2481
2d06d8c4 2482 pr_debug("trying to register driver %s\n", driver_data->name);
1da177e4 2483
fdd320da 2484 /* Protect against concurrent CPU online/offline. */
a92551e4 2485 cpus_read_lock();
fdd320da 2486
0d1857a1 2487 write_lock_irqsave(&cpufreq_driver_lock, flags);
1c3d85dd 2488 if (cpufreq_driver) {
0d1857a1 2489 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
fdd320da
RW
2490 ret = -EEXIST;
2491 goto out;
1da177e4 2492 }
1c3d85dd 2493 cpufreq_driver = driver_data;
0d1857a1 2494 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1da177e4 2495
bc68b7df
VK
2496 if (driver_data->setpolicy)
2497 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2498
7a6c79f2
RW
2499 if (cpufreq_boost_supported()) {
2500 ret = create_boost_sysfs_file();
2501 if (ret)
2502 goto err_null_driver;
2503 }
6f19efc0 2504
8a25a2fd 2505 ret = subsys_interface_register(&cpufreq_interface);
8f5bc2ab 2506 if (ret)
6f19efc0 2507 goto err_boost_unreg;
1da177e4 2508
ce1bcfe9
VK
2509 if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
2510 list_empty(&cpufreq_policy_list)) {
1da177e4 2511 /* if all ->init() calls failed, unregister */
6c770036 2512 ret = -ENODEV;
ce1bcfe9
VK
2513 pr_debug("%s: No CPU initialized for driver %s\n", __func__,
2514 driver_data->name);
2515 goto err_if_unreg;
1da177e4
LT
2516 }
2517
a92551e4
SAS
2518 ret = cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ONLINE_DYN,
2519 "cpufreq:online",
2520 cpuhp_cpufreq_online,
2521 cpuhp_cpufreq_offline);
27622b06
SAS
2522 if (ret < 0)
2523 goto err_if_unreg;
2524 hp_online = ret;
5372e054 2525 ret = 0;
27622b06 2526
2d06d8c4 2527 pr_debug("driver %s up and running\n", driver_data->name);
3834abb4 2528 goto out;
fdd320da 2529
8a25a2fd
KS
2530err_if_unreg:
2531 subsys_interface_unregister(&cpufreq_interface);
6f19efc0 2532err_boost_unreg:
44139ed4 2533 remove_boost_sysfs_file();
8f5bc2ab 2534err_null_driver:
0d1857a1 2535 write_lock_irqsave(&cpufreq_driver_lock, flags);
1c3d85dd 2536 cpufreq_driver = NULL;
0d1857a1 2537 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
3834abb4 2538out:
a92551e4 2539 cpus_read_unlock();
3834abb4 2540 return ret;
1da177e4
LT
2541}
2542EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2543
1da177e4
LT
2544/**
2545 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2546 *
bb176f7d 2547 * Unregister the current CPUFreq driver. Only call this if you have
1da177e4
LT
2548 * the right to do so, i.e. if you have succeeded in initialising before!
2549 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2550 * currently not initialised.
2551 */
221dee28 2552int cpufreq_unregister_driver(struct cpufreq_driver *driver)
1da177e4
LT
2553{
2554 unsigned long flags;
2555
1c3d85dd 2556 if (!cpufreq_driver || (driver != cpufreq_driver))
1da177e4 2557 return -EINVAL;
1da177e4 2558
2d06d8c4 2559 pr_debug("unregistering driver %s\n", driver->name);
1da177e4 2560
454d3a25 2561 /* Protect against concurrent cpu hotplug */
a92551e4 2562 cpus_read_lock();
8a25a2fd 2563 subsys_interface_unregister(&cpufreq_interface);
44139ed4 2564 remove_boost_sysfs_file();
a92551e4 2565 cpuhp_remove_state_nocalls_cpuslocked(hp_online);
1da177e4 2566
0d1857a1 2567 write_lock_irqsave(&cpufreq_driver_lock, flags);
6eed9404 2568
1c3d85dd 2569 cpufreq_driver = NULL;
6eed9404 2570
0d1857a1 2571 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
a92551e4 2572 cpus_read_unlock();
1da177e4
LT
2573
2574 return 0;
2575}
2576EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
5a01f2e8 2577
90de2a4a
DA
2578/*
2579 * Stop cpufreq at shutdown to make sure it isn't holding any locks
2580 * or mutexes when secondary CPUs are halted.
2581 */
2582static struct syscore_ops cpufreq_syscore_ops = {
2583 .shutdown = cpufreq_suspend,
2584};
2585
c82bd444
VK
2586struct kobject *cpufreq_global_kobject;
2587EXPORT_SYMBOL(cpufreq_global_kobject);
2588
5a01f2e8
VP
2589static int __init cpufreq_core_init(void)
2590{
a7b422cd
KRW
2591 if (cpufreq_disabled())
2592 return -ENODEV;
2593
8eec1020 2594 cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
8aa84ad8
TR
2595 BUG_ON(!cpufreq_global_kobject);
2596
90de2a4a
DA
2597 register_syscore_ops(&cpufreq_syscore_ops);
2598
5a01f2e8
VP
2599 return 0;
2600}
d82f2692 2601module_param(off, int, 0444);
5a01f2e8 2602core_initcall(cpufreq_core_init);