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