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