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