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