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