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