intel_pstate: Set core to min P state during core offline
[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 1339 }
367dc4aa
DB
1340 } else if (cpufreq_driver->stop_cpu && cpufreq_driver->setpolicy) {
1341 cpufreq_driver->stop_cpu(policy);
1da177e4 1342 }
1da177e4 1343
cedb70af
SB
1344 return 0;
1345}
1346
1347static int __cpufreq_remove_dev_finish(struct device *dev,
96bbbe4a 1348 struct subsys_interface *sif)
cedb70af
SB
1349{
1350 unsigned int cpu = dev->id, cpus;
1351 int ret;
1352 unsigned long flags;
1353 struct cpufreq_policy *policy;
cedb70af
SB
1354
1355 read_lock_irqsave(&cpufreq_driver_lock, flags);
1356 policy = per_cpu(cpufreq_cpu_data, cpu);
1357 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1358
1359 if (!policy) {
1360 pr_debug("%s: No cpu_data found\n", __func__);
1361 return -EINVAL;
1362 }
1363
ad7722da 1364 down_write(&policy->rwsem);
cedb70af 1365 cpus = cpumask_weight(policy->cpus);
9c8f1ee4
VK
1366
1367 if (cpus > 1)
1368 cpumask_clear_cpu(cpu, policy->cpus);
ad7722da 1369 up_write(&policy->rwsem);
cedb70af 1370
b8eed8af
VK
1371 /* If cpu is last user of policy, free policy */
1372 if (cpus == 1) {
9c0ebcf7 1373 if (has_target()) {
3de9bdeb
VK
1374 ret = __cpufreq_governor(policy,
1375 CPUFREQ_GOV_POLICY_EXIT);
1376 if (ret) {
1377 pr_err("%s: Failed to exit governor\n",
e837f9b5 1378 __func__);
3de9bdeb
VK
1379 return ret;
1380 }
edab2fbc 1381 }
2a998599 1382
96bbbe4a 1383 if (!cpufreq_suspended)
42f921a6 1384 cpufreq_policy_put_kobj(policy);
7d26e2d5 1385
8414809c
SB
1386 /*
1387 * Perform the ->exit() even during light-weight tear-down,
1388 * since this is a core component, and is essential for the
1389 * subsequent light-weight ->init() to succeed.
b8eed8af 1390 */
1c3d85dd 1391 if (cpufreq_driver->exit)
3a3e9e06 1392 cpufreq_driver->exit(policy);
27ecddc2 1393
9515f4d6
VK
1394 /* Remove policy from list of active policies */
1395 write_lock_irqsave(&cpufreq_driver_lock, flags);
1396 list_del(&policy->policy_list);
1397 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1398
96bbbe4a 1399 if (!cpufreq_suspended)
3a3e9e06 1400 cpufreq_policy_free(policy);
e5c87b76
SK
1401 } else if (has_target()) {
1402 ret = __cpufreq_governor(policy, CPUFREQ_GOV_START);
1403 if (!ret)
1404 ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
1405
1406 if (ret) {
1407 pr_err("%s: Failed to start governor\n", __func__);
1408 return ret;
2a998599 1409 }
27ecddc2 1410 }
1da177e4 1411
474deff7 1412 per_cpu(cpufreq_cpu_data, cpu) = NULL;
1da177e4
LT
1413 return 0;
1414}
1415
cedb70af 1416/**
27a862e9 1417 * cpufreq_remove_dev - remove a CPU device
cedb70af
SB
1418 *
1419 * Removes the cpufreq interface for a CPU device.
cedb70af 1420 */
8a25a2fd 1421static int cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
5a01f2e8 1422{
8a25a2fd 1423 unsigned int cpu = dev->id;
27a862e9 1424 int ret;
ec28297a
VP
1425
1426 if (cpu_is_offline(cpu))
1427 return 0;
1428
96bbbe4a 1429 ret = __cpufreq_remove_dev_prepare(dev, sif);
27a862e9
VK
1430
1431 if (!ret)
96bbbe4a 1432 ret = __cpufreq_remove_dev_finish(dev, sif);
27a862e9
VK
1433
1434 return ret;
5a01f2e8
VP
1435}
1436
65f27f38 1437static void handle_update(struct work_struct *work)
1da177e4 1438{
65f27f38
DH
1439 struct cpufreq_policy *policy =
1440 container_of(work, struct cpufreq_policy, update);
1441 unsigned int cpu = policy->cpu;
2d06d8c4 1442 pr_debug("handle_update for cpu %u called\n", cpu);
1da177e4
LT
1443 cpufreq_update_policy(cpu);
1444}
1445
1446/**
bb176f7d
VK
1447 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1448 * in deep trouble.
1da177e4
LT
1449 * @cpu: cpu number
1450 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1451 * @new_freq: CPU frequency the CPU actually runs at
1452 *
29464f28
DJ
1453 * We adjust to current frequency first, and need to clean up later.
1454 * So either call to cpufreq_update_policy() or schedule handle_update()).
1da177e4 1455 */
e08f5f5b
GS
1456static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1457 unsigned int new_freq)
1da177e4 1458{
b43a7ffb 1459 struct cpufreq_policy *policy;
1da177e4 1460 struct cpufreq_freqs freqs;
b43a7ffb
VK
1461 unsigned long flags;
1462
e837f9b5
JP
1463 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing core thinks of %u, is %u kHz\n",
1464 old_freq, new_freq);
1da177e4 1465
1da177e4
LT
1466 freqs.old = old_freq;
1467 freqs.new = new_freq;
b43a7ffb
VK
1468
1469 read_lock_irqsave(&cpufreq_driver_lock, flags);
1470 policy = per_cpu(cpufreq_cpu_data, cpu);
1471 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1472
1473 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
1474 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
1da177e4
LT
1475}
1476
32ee8c3e 1477/**
4ab70df4 1478 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
95235ca2
VP
1479 * @cpu: CPU number
1480 *
1481 * This is the last known freq, without actually getting it from the driver.
1482 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1483 */
1484unsigned int cpufreq_quick_get(unsigned int cpu)
1485{
9e21ba8b 1486 struct cpufreq_policy *policy;
e08f5f5b 1487 unsigned int ret_freq = 0;
95235ca2 1488
1c3d85dd
RW
1489 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
1490 return cpufreq_driver->get(cpu);
9e21ba8b
DB
1491
1492 policy = cpufreq_cpu_get(cpu);
95235ca2 1493 if (policy) {
e08f5f5b 1494 ret_freq = policy->cur;
95235ca2
VP
1495 cpufreq_cpu_put(policy);
1496 }
1497
4d34a67d 1498 return ret_freq;
95235ca2
VP
1499}
1500EXPORT_SYMBOL(cpufreq_quick_get);
1501
3d737108
JB
1502/**
1503 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1504 * @cpu: CPU number
1505 *
1506 * Just return the max possible frequency for a given CPU.
1507 */
1508unsigned int cpufreq_quick_get_max(unsigned int cpu)
1509{
1510 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1511 unsigned int ret_freq = 0;
1512
1513 if (policy) {
1514 ret_freq = policy->max;
1515 cpufreq_cpu_put(policy);
1516 }
1517
1518 return ret_freq;
1519}
1520EXPORT_SYMBOL(cpufreq_quick_get_max);
1521
5a01f2e8 1522static unsigned int __cpufreq_get(unsigned int cpu)
1da177e4 1523{
7a6aedfa 1524 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
e08f5f5b 1525 unsigned int ret_freq = 0;
5800043b 1526
1c3d85dd 1527 if (!cpufreq_driver->get)
4d34a67d 1528 return ret_freq;
1da177e4 1529
1c3d85dd 1530 ret_freq = cpufreq_driver->get(cpu);
1da177e4 1531
e08f5f5b 1532 if (ret_freq && policy->cur &&
1c3d85dd 1533 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
e08f5f5b
GS
1534 /* verify no discrepancy between actual and
1535 saved value exists */
1536 if (unlikely(ret_freq != policy->cur)) {
1537 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
1da177e4
LT
1538 schedule_work(&policy->update);
1539 }
1540 }
1541
4d34a67d 1542 return ret_freq;
5a01f2e8 1543}
1da177e4 1544
5a01f2e8
VP
1545/**
1546 * cpufreq_get - get the current CPU frequency (in kHz)
1547 * @cpu: CPU number
1548 *
1549 * Get the CPU current (static) CPU frequency
1550 */
1551unsigned int cpufreq_get(unsigned int cpu)
1552{
999976e0 1553 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
5a01f2e8 1554 unsigned int ret_freq = 0;
5a01f2e8 1555
999976e0
AP
1556 if (policy) {
1557 down_read(&policy->rwsem);
1558 ret_freq = __cpufreq_get(cpu);
1559 up_read(&policy->rwsem);
5a01f2e8 1560
999976e0
AP
1561 cpufreq_cpu_put(policy);
1562 }
6eed9404 1563
4d34a67d 1564 return ret_freq;
1da177e4
LT
1565}
1566EXPORT_SYMBOL(cpufreq_get);
1567
8a25a2fd
KS
1568static struct subsys_interface cpufreq_interface = {
1569 .name = "cpufreq",
1570 .subsys = &cpu_subsys,
1571 .add_dev = cpufreq_add_dev,
1572 .remove_dev = cpufreq_remove_dev,
e00e56df
RW
1573};
1574
e28867ea
VK
1575/*
1576 * In case platform wants some specific frequency to be configured
1577 * during suspend..
1578 */
1579int cpufreq_generic_suspend(struct cpufreq_policy *policy)
1580{
1581 int ret;
1582
1583 if (!policy->suspend_freq) {
1584 pr_err("%s: suspend_freq can't be zero\n", __func__);
1585 return -EINVAL;
1586 }
1587
1588 pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1589 policy->suspend_freq);
1590
1591 ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1592 CPUFREQ_RELATION_H);
1593 if (ret)
1594 pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1595 __func__, policy->suspend_freq, ret);
1596
1597 return ret;
1598}
1599EXPORT_SYMBOL(cpufreq_generic_suspend);
1600
42d4dc3f 1601/**
2f0aea93 1602 * cpufreq_suspend() - Suspend CPUFreq governors
e00e56df 1603 *
2f0aea93
VK
1604 * Called during system wide Suspend/Hibernate cycles for suspending governors
1605 * as some platforms can't change frequency after this point in suspend cycle.
1606 * Because some of the devices (like: i2c, regulators, etc) they use for
1607 * changing frequency are suspended quickly after this point.
42d4dc3f 1608 */
2f0aea93 1609void cpufreq_suspend(void)
42d4dc3f 1610{
3a3e9e06 1611 struct cpufreq_policy *policy;
42d4dc3f 1612
2f0aea93
VK
1613 if (!cpufreq_driver)
1614 return;
42d4dc3f 1615
2f0aea93
VK
1616 if (!has_target())
1617 return;
42d4dc3f 1618
2f0aea93
VK
1619 pr_debug("%s: Suspending Governors\n", __func__);
1620
1621 list_for_each_entry(policy, &cpufreq_policy_list, policy_list) {
1622 if (__cpufreq_governor(policy, CPUFREQ_GOV_STOP))
1623 pr_err("%s: Failed to stop governor for policy: %p\n",
1624 __func__, policy);
1625 else if (cpufreq_driver->suspend
1626 && cpufreq_driver->suspend(policy))
1627 pr_err("%s: Failed to suspend driver: %p\n", __func__,
1628 policy);
42d4dc3f
BH
1629 }
1630
2f0aea93 1631 cpufreq_suspended = true;
42d4dc3f
BH
1632}
1633
1da177e4 1634/**
2f0aea93 1635 * cpufreq_resume() - Resume CPUFreq governors
1da177e4 1636 *
2f0aea93
VK
1637 * Called during system wide Suspend/Hibernate cycle for resuming governors that
1638 * are suspended with cpufreq_suspend().
1da177e4 1639 */
2f0aea93 1640void cpufreq_resume(void)
1da177e4 1641{
3a3e9e06 1642 struct cpufreq_policy *policy;
1da177e4 1643
2f0aea93
VK
1644 if (!cpufreq_driver)
1645 return;
1da177e4 1646
2f0aea93 1647 if (!has_target())
e00e56df 1648 return;
1da177e4 1649
2f0aea93 1650 pr_debug("%s: Resuming Governors\n", __func__);
1da177e4 1651
2f0aea93 1652 cpufreq_suspended = false;
ce6c3997 1653
2f0aea93
VK
1654 list_for_each_entry(policy, &cpufreq_policy_list, policy_list) {
1655 if (__cpufreq_governor(policy, CPUFREQ_GOV_START)
1656 || __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))
1657 pr_err("%s: Failed to start governor for policy: %p\n",
1658 __func__, policy);
1659 else if (cpufreq_driver->resume
1660 && cpufreq_driver->resume(policy))
1661 pr_err("%s: Failed to resume driver: %p\n", __func__,
1662 policy);
1da177e4 1663
2f0aea93
VK
1664 /*
1665 * schedule call cpufreq_update_policy() for boot CPU, i.e. last
1666 * policy in list. It will verify that the current freq is in
1667 * sync with what we believe it to be.
1668 */
1669 if (list_is_last(&policy->policy_list, &cpufreq_policy_list))
1670 schedule_work(&policy->update);
1671 }
1672}
1da177e4 1673
9d95046e
BP
1674/**
1675 * cpufreq_get_current_driver - return current driver's name
1676 *
1677 * Return the name string of the currently loaded cpufreq driver
1678 * or NULL, if none.
1679 */
1680const char *cpufreq_get_current_driver(void)
1681{
1c3d85dd
RW
1682 if (cpufreq_driver)
1683 return cpufreq_driver->name;
1684
1685 return NULL;
9d95046e
BP
1686}
1687EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
1da177e4
LT
1688
1689/*********************************************************************
1690 * NOTIFIER LISTS INTERFACE *
1691 *********************************************************************/
1692
1693/**
1694 * cpufreq_register_notifier - register a driver with cpufreq
1695 * @nb: notifier function to register
1696 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1697 *
32ee8c3e 1698 * Add a driver to one of two lists: either a list of drivers that
1da177e4
LT
1699 * are notified about clock rate changes (once before and once after
1700 * the transition), or a list of drivers that are notified about
1701 * changes in cpufreq policy.
1702 *
1703 * This function may sleep, and has the same return conditions as
e041c683 1704 * blocking_notifier_chain_register.
1da177e4
LT
1705 */
1706int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1707{
1708 int ret;
1709
d5aaffa9
DB
1710 if (cpufreq_disabled())
1711 return -EINVAL;
1712
74212ca4
CEB
1713 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1714
1da177e4
LT
1715 switch (list) {
1716 case CPUFREQ_TRANSITION_NOTIFIER:
b4dfdbb3 1717 ret = srcu_notifier_chain_register(
e041c683 1718 &cpufreq_transition_notifier_list, nb);
1da177e4
LT
1719 break;
1720 case CPUFREQ_POLICY_NOTIFIER:
e041c683
AS
1721 ret = blocking_notifier_chain_register(
1722 &cpufreq_policy_notifier_list, nb);
1da177e4
LT
1723 break;
1724 default:
1725 ret = -EINVAL;
1726 }
1da177e4
LT
1727
1728 return ret;
1729}
1730EXPORT_SYMBOL(cpufreq_register_notifier);
1731
1da177e4
LT
1732/**
1733 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1734 * @nb: notifier block to be unregistered
bb176f7d 1735 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1da177e4
LT
1736 *
1737 * Remove a driver from the CPU frequency notifier list.
1738 *
1739 * This function may sleep, and has the same return conditions as
e041c683 1740 * blocking_notifier_chain_unregister.
1da177e4
LT
1741 */
1742int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1743{
1744 int ret;
1745
d5aaffa9
DB
1746 if (cpufreq_disabled())
1747 return -EINVAL;
1748
1da177e4
LT
1749 switch (list) {
1750 case CPUFREQ_TRANSITION_NOTIFIER:
b4dfdbb3 1751 ret = srcu_notifier_chain_unregister(
e041c683 1752 &cpufreq_transition_notifier_list, nb);
1da177e4
LT
1753 break;
1754 case CPUFREQ_POLICY_NOTIFIER:
e041c683
AS
1755 ret = blocking_notifier_chain_unregister(
1756 &cpufreq_policy_notifier_list, nb);
1da177e4
LT
1757 break;
1758 default:
1759 ret = -EINVAL;
1760 }
1da177e4
LT
1761
1762 return ret;
1763}
1764EXPORT_SYMBOL(cpufreq_unregister_notifier);
1765
1766
1767/*********************************************************************
1768 * GOVERNORS *
1769 *********************************************************************/
1770
1da177e4
LT
1771int __cpufreq_driver_target(struct cpufreq_policy *policy,
1772 unsigned int target_freq,
1773 unsigned int relation)
1774{
1775 int retval = -EINVAL;
7249924e 1776 unsigned int old_target_freq = target_freq;
c32b6b8e 1777
a7b422cd
KRW
1778 if (cpufreq_disabled())
1779 return -ENODEV;
1780
7249924e
VK
1781 /* Make sure that target_freq is within supported range */
1782 if (target_freq > policy->max)
1783 target_freq = policy->max;
1784 if (target_freq < policy->min)
1785 target_freq = policy->min;
1786
1787 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
e837f9b5 1788 policy->cpu, target_freq, relation, old_target_freq);
5a1c0228 1789
9c0ebcf7
VK
1790 /*
1791 * This might look like a redundant call as we are checking it again
1792 * after finding index. But it is left intentionally for cases where
1793 * exactly same freq is called again and so we can save on few function
1794 * calls.
1795 */
5a1c0228
VK
1796 if (target_freq == policy->cur)
1797 return 0;
1798
1c3d85dd
RW
1799 if (cpufreq_driver->target)
1800 retval = cpufreq_driver->target(policy, target_freq, relation);
9c0ebcf7
VK
1801 else if (cpufreq_driver->target_index) {
1802 struct cpufreq_frequency_table *freq_table;
d4019f0a
VK
1803 struct cpufreq_freqs freqs;
1804 bool notify;
9c0ebcf7 1805 int index;
90d45d17 1806
9c0ebcf7
VK
1807 freq_table = cpufreq_frequency_get_table(policy->cpu);
1808 if (unlikely(!freq_table)) {
1809 pr_err("%s: Unable to find freq_table\n", __func__);
1810 goto out;
1811 }
1812
1813 retval = cpufreq_frequency_table_target(policy, freq_table,
1814 target_freq, relation, &index);
1815 if (unlikely(retval)) {
1816 pr_err("%s: Unable to find matching freq\n", __func__);
1817 goto out;
1818 }
1819
d4019f0a 1820 if (freq_table[index].frequency == policy->cur) {
9c0ebcf7 1821 retval = 0;
d4019f0a
VK
1822 goto out;
1823 }
1824
1825 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
1826
1827 if (notify) {
1828 freqs.old = policy->cur;
1829 freqs.new = freq_table[index].frequency;
1830 freqs.flags = 0;
1831
1832 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
e837f9b5 1833 __func__, policy->cpu, freqs.old, freqs.new);
d4019f0a
VK
1834
1835 cpufreq_notify_transition(policy, &freqs,
1836 CPUFREQ_PRECHANGE);
1837 }
1838
1839 retval = cpufreq_driver->target_index(policy, index);
1840 if (retval)
1841 pr_err("%s: Failed to change cpu frequency: %d\n",
e837f9b5 1842 __func__, retval);
d4019f0a 1843
ab1b1c4e
VK
1844 if (notify)
1845 cpufreq_notify_post_transition(policy, &freqs, retval);
9c0ebcf7
VK
1846 }
1847
1848out:
1da177e4
LT
1849 return retval;
1850}
1851EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1852
1da177e4
LT
1853int cpufreq_driver_target(struct cpufreq_policy *policy,
1854 unsigned int target_freq,
1855 unsigned int relation)
1856{
f1829e4a 1857 int ret = -EINVAL;
1da177e4 1858
ad7722da 1859 down_write(&policy->rwsem);
1da177e4
LT
1860
1861 ret = __cpufreq_driver_target(policy, target_freq, relation);
1862
ad7722da 1863 up_write(&policy->rwsem);
1da177e4 1864
1da177e4
LT
1865 return ret;
1866}
1867EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1868
153d7f3f 1869/*
153d7f3f
AV
1870 * when "event" is CPUFREQ_GOV_LIMITS
1871 */
1da177e4 1872
e08f5f5b
GS
1873static int __cpufreq_governor(struct cpufreq_policy *policy,
1874 unsigned int event)
1da177e4 1875{
cc993cab 1876 int ret;
6afde10c
TR
1877
1878 /* Only must be defined when default governor is known to have latency
1879 restrictions, like e.g. conservative or ondemand.
1880 That this is the case is already ensured in Kconfig
1881 */
1882#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1883 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1884#else
1885 struct cpufreq_governor *gov = NULL;
1886#endif
1c256245 1887
2f0aea93
VK
1888 /* Don't start any governor operations if we are entering suspend */
1889 if (cpufreq_suspended)
1890 return 0;
1891
1c256245
TR
1892 if (policy->governor->max_transition_latency &&
1893 policy->cpuinfo.transition_latency >
1894 policy->governor->max_transition_latency) {
6afde10c
TR
1895 if (!gov)
1896 return -EINVAL;
1897 else {
e837f9b5
JP
1898 pr_warn("%s governor failed, too long transition latency of HW, fallback to %s governor\n",
1899 policy->governor->name, gov->name);
6afde10c
TR
1900 policy->governor = gov;
1901 }
1c256245 1902 }
1da177e4 1903
fe492f3f
VK
1904 if (event == CPUFREQ_GOV_POLICY_INIT)
1905 if (!try_module_get(policy->governor->owner))
1906 return -EINVAL;
1da177e4 1907
2d06d8c4 1908 pr_debug("__cpufreq_governor for CPU %u, event %u\n",
e837f9b5 1909 policy->cpu, event);
95731ebb
XC
1910
1911 mutex_lock(&cpufreq_governor_lock);
56d07db2 1912 if ((policy->governor_enabled && event == CPUFREQ_GOV_START)
f73d3933
VK
1913 || (!policy->governor_enabled
1914 && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) {
95731ebb
XC
1915 mutex_unlock(&cpufreq_governor_lock);
1916 return -EBUSY;
1917 }
1918
1919 if (event == CPUFREQ_GOV_STOP)
1920 policy->governor_enabled = false;
1921 else if (event == CPUFREQ_GOV_START)
1922 policy->governor_enabled = true;
1923
1924 mutex_unlock(&cpufreq_governor_lock);
1925
1da177e4
LT
1926 ret = policy->governor->governor(policy, event);
1927
4d5dcc42
VK
1928 if (!ret) {
1929 if (event == CPUFREQ_GOV_POLICY_INIT)
1930 policy->governor->initialized++;
1931 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1932 policy->governor->initialized--;
95731ebb
XC
1933 } else {
1934 /* Restore original values */
1935 mutex_lock(&cpufreq_governor_lock);
1936 if (event == CPUFREQ_GOV_STOP)
1937 policy->governor_enabled = true;
1938 else if (event == CPUFREQ_GOV_START)
1939 policy->governor_enabled = false;
1940 mutex_unlock(&cpufreq_governor_lock);
4d5dcc42 1941 }
b394058f 1942
fe492f3f
VK
1943 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
1944 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
1da177e4
LT
1945 module_put(policy->governor->owner);
1946
1947 return ret;
1948}
1949
1da177e4
LT
1950int cpufreq_register_governor(struct cpufreq_governor *governor)
1951{
3bcb09a3 1952 int err;
1da177e4
LT
1953
1954 if (!governor)
1955 return -EINVAL;
1956
a7b422cd
KRW
1957 if (cpufreq_disabled())
1958 return -ENODEV;
1959
3fc54d37 1960 mutex_lock(&cpufreq_governor_mutex);
32ee8c3e 1961
b394058f 1962 governor->initialized = 0;
3bcb09a3
JF
1963 err = -EBUSY;
1964 if (__find_governor(governor->name) == NULL) {
1965 err = 0;
1966 list_add(&governor->governor_list, &cpufreq_governor_list);
1da177e4 1967 }
1da177e4 1968
32ee8c3e 1969 mutex_unlock(&cpufreq_governor_mutex);
3bcb09a3 1970 return err;
1da177e4
LT
1971}
1972EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1973
1da177e4
LT
1974void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1975{
90e41bac 1976 int cpu;
90e41bac 1977
1da177e4
LT
1978 if (!governor)
1979 return;
1980
a7b422cd
KRW
1981 if (cpufreq_disabled())
1982 return;
1983
90e41bac
PB
1984 for_each_present_cpu(cpu) {
1985 if (cpu_online(cpu))
1986 continue;
1987 if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name))
1988 strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0");
1989 }
90e41bac 1990
3fc54d37 1991 mutex_lock(&cpufreq_governor_mutex);
1da177e4 1992 list_del(&governor->governor_list);
3fc54d37 1993 mutex_unlock(&cpufreq_governor_mutex);
1da177e4
LT
1994 return;
1995}
1996EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1997
1998
1da177e4
LT
1999/*********************************************************************
2000 * POLICY INTERFACE *
2001 *********************************************************************/
2002
2003/**
2004 * cpufreq_get_policy - get the current cpufreq_policy
29464f28
DJ
2005 * @policy: struct cpufreq_policy into which the current cpufreq_policy
2006 * is written
1da177e4
LT
2007 *
2008 * Reads the current cpufreq policy.
2009 */
2010int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2011{
2012 struct cpufreq_policy *cpu_policy;
2013 if (!policy)
2014 return -EINVAL;
2015
2016 cpu_policy = cpufreq_cpu_get(cpu);
2017 if (!cpu_policy)
2018 return -EINVAL;
2019
d5b73cd8 2020 memcpy(policy, cpu_policy, sizeof(*policy));
1da177e4
LT
2021
2022 cpufreq_cpu_put(cpu_policy);
1da177e4
LT
2023 return 0;
2024}
2025EXPORT_SYMBOL(cpufreq_get_policy);
2026
153d7f3f 2027/*
037ce839
VK
2028 * policy : current policy.
2029 * new_policy: policy to be set.
153d7f3f 2030 */
037ce839 2031static int cpufreq_set_policy(struct cpufreq_policy *policy,
3a3e9e06 2032 struct cpufreq_policy *new_policy)
1da177e4 2033{
d9a789c7
RW
2034 struct cpufreq_governor *old_gov;
2035 int ret;
1da177e4 2036
e837f9b5
JP
2037 pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2038 new_policy->cpu, new_policy->min, new_policy->max);
1da177e4 2039
d5b73cd8 2040 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
1da177e4 2041
d9a789c7
RW
2042 if (new_policy->min > policy->max || new_policy->max < policy->min)
2043 return -EINVAL;
9c9a43ed 2044
1da177e4 2045 /* verify the cpu speed can be set within this limit */
3a3e9e06 2046 ret = cpufreq_driver->verify(new_policy);
1da177e4 2047 if (ret)
d9a789c7 2048 return ret;
1da177e4 2049
1da177e4 2050 /* adjust if necessary - all reasons */
e041c683 2051 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
3a3e9e06 2052 CPUFREQ_ADJUST, new_policy);
1da177e4
LT
2053
2054 /* adjust if necessary - hardware incompatibility*/
e041c683 2055 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
3a3e9e06 2056 CPUFREQ_INCOMPATIBLE, new_policy);
1da177e4 2057
bb176f7d
VK
2058 /*
2059 * verify the cpu speed can be set within this limit, which might be
2060 * different to the first one
2061 */
3a3e9e06 2062 ret = cpufreq_driver->verify(new_policy);
e041c683 2063 if (ret)
d9a789c7 2064 return ret;
1da177e4
LT
2065
2066 /* notification of the new policy */
e041c683 2067 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
3a3e9e06 2068 CPUFREQ_NOTIFY, new_policy);
1da177e4 2069
3a3e9e06
VK
2070 policy->min = new_policy->min;
2071 policy->max = new_policy->max;
1da177e4 2072
2d06d8c4 2073 pr_debug("new min and max freqs are %u - %u kHz\n",
e837f9b5 2074 policy->min, policy->max);
1da177e4 2075
1c3d85dd 2076 if (cpufreq_driver->setpolicy) {
3a3e9e06 2077 policy->policy = new_policy->policy;
2d06d8c4 2078 pr_debug("setting range\n");
d9a789c7
RW
2079 return cpufreq_driver->setpolicy(new_policy);
2080 }
1da177e4 2081
d9a789c7
RW
2082 if (new_policy->governor == policy->governor)
2083 goto out;
7bd353a9 2084
d9a789c7
RW
2085 pr_debug("governor switch\n");
2086
2087 /* save old, working values */
2088 old_gov = policy->governor;
2089 /* end old governor */
2090 if (old_gov) {
2091 __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
2092 up_write(&policy->rwsem);
e5c87b76 2093 __cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
d9a789c7 2094 down_write(&policy->rwsem);
1da177e4
LT
2095 }
2096
d9a789c7
RW
2097 /* start new governor */
2098 policy->governor = new_policy->governor;
2099 if (!__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT)) {
2100 if (!__cpufreq_governor(policy, CPUFREQ_GOV_START))
2101 goto out;
2102
2103 up_write(&policy->rwsem);
2104 __cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
2105 down_write(&policy->rwsem);
2106 }
2107
2108 /* new governor failed, so re-start old one */
2109 pr_debug("starting governor %s failed\n", policy->governor->name);
2110 if (old_gov) {
2111 policy->governor = old_gov;
2112 __cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT);
2113 __cpufreq_governor(policy, CPUFREQ_GOV_START);
2114 }
2115
2116 return -EINVAL;
2117
2118 out:
2119 pr_debug("governor: change or update limits\n");
2120 return __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
1da177e4
LT
2121}
2122
1da177e4
LT
2123/**
2124 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
2125 * @cpu: CPU which shall be re-evaluated
2126 *
25985edc 2127 * Useful for policy notifiers which have different necessities
1da177e4
LT
2128 * at different times.
2129 */
2130int cpufreq_update_policy(unsigned int cpu)
2131{
3a3e9e06
VK
2132 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
2133 struct cpufreq_policy new_policy;
f1829e4a 2134 int ret;
1da177e4 2135
3a3e9e06 2136 if (!policy) {
f1829e4a
JL
2137 ret = -ENODEV;
2138 goto no_policy;
2139 }
1da177e4 2140
ad7722da 2141 down_write(&policy->rwsem);
1da177e4 2142
2d06d8c4 2143 pr_debug("updating policy for CPU %u\n", cpu);
d5b73cd8 2144 memcpy(&new_policy, policy, sizeof(*policy));
3a3e9e06
VK
2145 new_policy.min = policy->user_policy.min;
2146 new_policy.max = policy->user_policy.max;
2147 new_policy.policy = policy->user_policy.policy;
2148 new_policy.governor = policy->user_policy.governor;
1da177e4 2149
bb176f7d
VK
2150 /*
2151 * BIOS might change freq behind our back
2152 * -> ask driver for current freq and notify governors about a change
2153 */
2ed99e39 2154 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
3a3e9e06 2155 new_policy.cur = cpufreq_driver->get(cpu);
bd0fa9bb
VK
2156 if (WARN_ON(!new_policy.cur)) {
2157 ret = -EIO;
2158 goto no_policy;
2159 }
2160
3a3e9e06 2161 if (!policy->cur) {
e837f9b5 2162 pr_debug("Driver did not initialize current freq\n");
3a3e9e06 2163 policy->cur = new_policy.cur;
a85f7bd3 2164 } else {
9c0ebcf7 2165 if (policy->cur != new_policy.cur && has_target())
3a3e9e06
VK
2166 cpufreq_out_of_sync(cpu, policy->cur,
2167 new_policy.cur);
a85f7bd3 2168 }
0961dd0d
TR
2169 }
2170
037ce839 2171 ret = cpufreq_set_policy(policy, &new_policy);
1da177e4 2172
ad7722da 2173 up_write(&policy->rwsem);
5a01f2e8 2174
3a3e9e06 2175 cpufreq_cpu_put(policy);
f1829e4a 2176no_policy:
1da177e4
LT
2177 return ret;
2178}
2179EXPORT_SYMBOL(cpufreq_update_policy);
2180
2760984f 2181static int cpufreq_cpu_callback(struct notifier_block *nfb,
c32b6b8e
AR
2182 unsigned long action, void *hcpu)
2183{
2184 unsigned int cpu = (unsigned long)hcpu;
8a25a2fd 2185 struct device *dev;
c32b6b8e 2186
8a25a2fd
KS
2187 dev = get_cpu_device(cpu);
2188 if (dev) {
5302c3fb 2189 switch (action & ~CPU_TASKS_FROZEN) {
c32b6b8e 2190 case CPU_ONLINE:
96bbbe4a 2191 __cpufreq_add_dev(dev, NULL);
c32b6b8e 2192 break;
5302c3fb 2193
c32b6b8e 2194 case CPU_DOWN_PREPARE:
96bbbe4a 2195 __cpufreq_remove_dev_prepare(dev, NULL);
1aee40ac
SB
2196 break;
2197
2198 case CPU_POST_DEAD:
96bbbe4a 2199 __cpufreq_remove_dev_finish(dev, NULL);
c32b6b8e 2200 break;
5302c3fb 2201
5a01f2e8 2202 case CPU_DOWN_FAILED:
96bbbe4a 2203 __cpufreq_add_dev(dev, NULL);
c32b6b8e
AR
2204 break;
2205 }
2206 }
2207 return NOTIFY_OK;
2208}
2209
9c36f746 2210static struct notifier_block __refdata cpufreq_cpu_notifier = {
bb176f7d 2211 .notifier_call = cpufreq_cpu_callback,
c32b6b8e 2212};
1da177e4 2213
6f19efc0
LM
2214/*********************************************************************
2215 * BOOST *
2216 *********************************************************************/
2217static int cpufreq_boost_set_sw(int state)
2218{
2219 struct cpufreq_frequency_table *freq_table;
2220 struct cpufreq_policy *policy;
2221 int ret = -EINVAL;
2222
2223 list_for_each_entry(policy, &cpufreq_policy_list, policy_list) {
2224 freq_table = cpufreq_frequency_get_table(policy->cpu);
2225 if (freq_table) {
2226 ret = cpufreq_frequency_table_cpuinfo(policy,
2227 freq_table);
2228 if (ret) {
2229 pr_err("%s: Policy frequency update failed\n",
2230 __func__);
2231 break;
2232 }
2233 policy->user_policy.max = policy->max;
2234 __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
2235 }
2236 }
2237
2238 return ret;
2239}
2240
2241int cpufreq_boost_trigger_state(int state)
2242{
2243 unsigned long flags;
2244 int ret = 0;
2245
2246 if (cpufreq_driver->boost_enabled == state)
2247 return 0;
2248
2249 write_lock_irqsave(&cpufreq_driver_lock, flags);
2250 cpufreq_driver->boost_enabled = state;
2251 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2252
2253 ret = cpufreq_driver->set_boost(state);
2254 if (ret) {
2255 write_lock_irqsave(&cpufreq_driver_lock, flags);
2256 cpufreq_driver->boost_enabled = !state;
2257 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2258
e837f9b5
JP
2259 pr_err("%s: Cannot %s BOOST\n",
2260 __func__, state ? "enable" : "disable");
6f19efc0
LM
2261 }
2262
2263 return ret;
2264}
2265
2266int cpufreq_boost_supported(void)
2267{
2268 if (likely(cpufreq_driver))
2269 return cpufreq_driver->boost_supported;
2270
2271 return 0;
2272}
2273EXPORT_SYMBOL_GPL(cpufreq_boost_supported);
2274
2275int cpufreq_boost_enabled(void)
2276{
2277 return cpufreq_driver->boost_enabled;
2278}
2279EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
2280
1da177e4
LT
2281/*********************************************************************
2282 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2283 *********************************************************************/
2284
2285/**
2286 * cpufreq_register_driver - register a CPU Frequency driver
2287 * @driver_data: A struct cpufreq_driver containing the values#
2288 * submitted by the CPU Frequency driver.
2289 *
bb176f7d 2290 * Registers a CPU Frequency driver to this core code. This code
1da177e4 2291 * returns zero on success, -EBUSY when another driver got here first
32ee8c3e 2292 * (and isn't unregistered in the meantime).
1da177e4
LT
2293 *
2294 */
221dee28 2295int cpufreq_register_driver(struct cpufreq_driver *driver_data)
1da177e4
LT
2296{
2297 unsigned long flags;
2298 int ret;
2299
a7b422cd
KRW
2300 if (cpufreq_disabled())
2301 return -ENODEV;
2302
1da177e4 2303 if (!driver_data || !driver_data->verify || !driver_data->init ||
9c0ebcf7 2304 !(driver_data->setpolicy || driver_data->target_index ||
9832235f
RW
2305 driver_data->target) ||
2306 (driver_data->setpolicy && (driver_data->target_index ||
2307 driver_data->target)))
1da177e4
LT
2308 return -EINVAL;
2309
2d06d8c4 2310 pr_debug("trying to register driver %s\n", driver_data->name);
1da177e4
LT
2311
2312 if (driver_data->setpolicy)
2313 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2314
0d1857a1 2315 write_lock_irqsave(&cpufreq_driver_lock, flags);
1c3d85dd 2316 if (cpufreq_driver) {
0d1857a1 2317 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
4dea5806 2318 return -EEXIST;
1da177e4 2319 }
1c3d85dd 2320 cpufreq_driver = driver_data;
0d1857a1 2321 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1da177e4 2322
6f19efc0
LM
2323 if (cpufreq_boost_supported()) {
2324 /*
2325 * Check if driver provides function to enable boost -
2326 * if not, use cpufreq_boost_set_sw as default
2327 */
2328 if (!cpufreq_driver->set_boost)
2329 cpufreq_driver->set_boost = cpufreq_boost_set_sw;
2330
2331 ret = cpufreq_sysfs_create_file(&boost.attr);
2332 if (ret) {
2333 pr_err("%s: cannot register global BOOST sysfs file\n",
e837f9b5 2334 __func__);
6f19efc0
LM
2335 goto err_null_driver;
2336 }
2337 }
2338
8a25a2fd 2339 ret = subsys_interface_register(&cpufreq_interface);
8f5bc2ab 2340 if (ret)
6f19efc0 2341 goto err_boost_unreg;
1da177e4 2342
1c3d85dd 2343 if (!(cpufreq_driver->flags & CPUFREQ_STICKY)) {
1da177e4
LT
2344 int i;
2345 ret = -ENODEV;
2346
2347 /* check for at least one working CPU */
7a6aedfa
MT
2348 for (i = 0; i < nr_cpu_ids; i++)
2349 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
1da177e4 2350 ret = 0;
7a6aedfa
MT
2351 break;
2352 }
1da177e4
LT
2353
2354 /* if all ->init() calls failed, unregister */
2355 if (ret) {
2d06d8c4 2356 pr_debug("no CPU initialized for driver %s\n",
e837f9b5 2357 driver_data->name);
8a25a2fd 2358 goto err_if_unreg;
1da177e4
LT
2359 }
2360 }
2361
8f5bc2ab 2362 register_hotcpu_notifier(&cpufreq_cpu_notifier);
2d06d8c4 2363 pr_debug("driver %s up and running\n", driver_data->name);
1da177e4 2364
8f5bc2ab 2365 return 0;
8a25a2fd
KS
2366err_if_unreg:
2367 subsys_interface_unregister(&cpufreq_interface);
6f19efc0
LM
2368err_boost_unreg:
2369 if (cpufreq_boost_supported())
2370 cpufreq_sysfs_remove_file(&boost.attr);
8f5bc2ab 2371err_null_driver:
0d1857a1 2372 write_lock_irqsave(&cpufreq_driver_lock, flags);
1c3d85dd 2373 cpufreq_driver = NULL;
0d1857a1 2374 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
4d34a67d 2375 return ret;
1da177e4
LT
2376}
2377EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2378
1da177e4
LT
2379/**
2380 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2381 *
bb176f7d 2382 * Unregister the current CPUFreq driver. Only call this if you have
1da177e4
LT
2383 * the right to do so, i.e. if you have succeeded in initialising before!
2384 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2385 * currently not initialised.
2386 */
221dee28 2387int cpufreq_unregister_driver(struct cpufreq_driver *driver)
1da177e4
LT
2388{
2389 unsigned long flags;
2390
1c3d85dd 2391 if (!cpufreq_driver || (driver != cpufreq_driver))
1da177e4 2392 return -EINVAL;
1da177e4 2393
2d06d8c4 2394 pr_debug("unregistering driver %s\n", driver->name);
1da177e4 2395
8a25a2fd 2396 subsys_interface_unregister(&cpufreq_interface);
6f19efc0
LM
2397 if (cpufreq_boost_supported())
2398 cpufreq_sysfs_remove_file(&boost.attr);
2399
65edc68c 2400 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
1da177e4 2401
6eed9404 2402 down_write(&cpufreq_rwsem);
0d1857a1 2403 write_lock_irqsave(&cpufreq_driver_lock, flags);
6eed9404 2404
1c3d85dd 2405 cpufreq_driver = NULL;
6eed9404 2406
0d1857a1 2407 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
6eed9404 2408 up_write(&cpufreq_rwsem);
1da177e4
LT
2409
2410 return 0;
2411}
2412EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
5a01f2e8
VP
2413
2414static int __init cpufreq_core_init(void)
2415{
a7b422cd
KRW
2416 if (cpufreq_disabled())
2417 return -ENODEV;
2418
2361be23 2419 cpufreq_global_kobject = kobject_create();
8aa84ad8
TR
2420 BUG_ON(!cpufreq_global_kobject);
2421
5a01f2e8
VP
2422 return 0;
2423}
5a01f2e8 2424core_initcall(cpufreq_core_init);
This page took 1.131415 seconds and 5 git commands to generate.