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