]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/cpufreq/cpufreq.c
sysdev: fix up the probe/release attributes
[net-next-2.6.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>
6 *
c32b6b8e 7 * Oct 2005 - Ashok Raj <ashok.raj@intel.com>
32ee8c3e 8 * Added handling for CPU hotplug
8ff69732
DJ
9 * Feb 2006 - Jacob Shin <jacob.shin@amd.com>
10 * Fix handling for CPU hotplug -- affected CPUs
c32b6b8e 11 *
1da177e4
LT
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 *
16 */
17
1da177e4
LT
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/notifier.h>
22#include <linux/cpufreq.h>
23#include <linux/delay.h>
24#include <linux/interrupt.h>
25#include <linux/spinlock.h>
26#include <linux/device.h>
27#include <linux/slab.h>
28#include <linux/cpu.h>
29#include <linux/completion.h>
3fc54d37 30#include <linux/mutex.h>
1da177e4 31
e08f5f5b
GS
32#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_CORE, \
33 "cpufreq-core", msg)
1da177e4
LT
34
35/**
cd878479 36 * The "cpufreq driver" - the arch- or hardware-dependent low
1da177e4
LT
37 * level driver of CPUFreq support, and its spinlock. This lock
38 * also protects the cpufreq_cpu_data array.
39 */
7d5e350f 40static struct cpufreq_driver *cpufreq_driver;
7a6aedfa 41static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
084f3493
TR
42#ifdef CONFIG_HOTPLUG_CPU
43/* This one keeps track of the previously set governor of a removed CPU */
e77b89f1 44static DEFINE_PER_CPU(char[CPUFREQ_NAME_LEN], cpufreq_cpu_governor);
084f3493 45#endif
1da177e4
LT
46static DEFINE_SPINLOCK(cpufreq_driver_lock);
47
5a01f2e8
VP
48/*
49 * cpu_policy_rwsem is a per CPU reader-writer semaphore designed to cure
50 * all cpufreq/hotplug/workqueue/etc related lock issues.
51 *
52 * The rules for this semaphore:
53 * - Any routine that wants to read from the policy structure will
54 * do a down_read on this semaphore.
55 * - Any routine that will write to the policy structure and/or may take away
56 * the policy altogether (eg. CPU hotplug), will hold this lock in write
57 * mode before doing so.
58 *
59 * Additional rules:
60 * - All holders of the lock should check to make sure that the CPU they
61 * are concerned with are online after they get the lock.
62 * - Governor routines that can be called in cpufreq hotplug path should not
63 * take this sem as top level hotplug notifier handler takes this.
395913d0
MD
64 * - Lock should not be held across
65 * __cpufreq_governor(data, CPUFREQ_GOV_STOP);
5a01f2e8 66 */
f1625066 67static DEFINE_PER_CPU(int, cpufreq_policy_cpu);
5a01f2e8
VP
68static DEFINE_PER_CPU(struct rw_semaphore, cpu_policy_rwsem);
69
70#define lock_policy_rwsem(mode, cpu) \
71int lock_policy_rwsem_##mode \
72(int cpu) \
73{ \
f1625066 74 int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu); \
5a01f2e8
VP
75 BUG_ON(policy_cpu == -1); \
76 down_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \
77 if (unlikely(!cpu_online(cpu))) { \
78 up_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \
79 return -1; \
80 } \
81 \
82 return 0; \
83}
84
85lock_policy_rwsem(read, cpu);
86EXPORT_SYMBOL_GPL(lock_policy_rwsem_read);
87
88lock_policy_rwsem(write, cpu);
89EXPORT_SYMBOL_GPL(lock_policy_rwsem_write);
90
91void unlock_policy_rwsem_read(int cpu)
92{
f1625066 93 int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu);
5a01f2e8
VP
94 BUG_ON(policy_cpu == -1);
95 up_read(&per_cpu(cpu_policy_rwsem, policy_cpu));
96}
97EXPORT_SYMBOL_GPL(unlock_policy_rwsem_read);
98
99void unlock_policy_rwsem_write(int cpu)
100{
f1625066 101 int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu);
5a01f2e8
VP
102 BUG_ON(policy_cpu == -1);
103 up_write(&per_cpu(cpu_policy_rwsem, policy_cpu));
104}
105EXPORT_SYMBOL_GPL(unlock_policy_rwsem_write);
106
107
1da177e4 108/* internal prototypes */
29464f28
DJ
109static int __cpufreq_governor(struct cpufreq_policy *policy,
110 unsigned int event);
5a01f2e8 111static unsigned int __cpufreq_get(unsigned int cpu);
65f27f38 112static void handle_update(struct work_struct *work);
1da177e4
LT
113
114/**
32ee8c3e
DJ
115 * Two notifier lists: the "policy" list is involved in the
116 * validation process for a new CPU frequency policy; the
1da177e4
LT
117 * "transition" list for kernel code that needs to handle
118 * changes to devices when the CPU clock speed changes.
119 * The mutex locks both lists.
120 */
e041c683 121static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
b4dfdbb3 122static struct srcu_notifier_head cpufreq_transition_notifier_list;
1da177e4 123
74212ca4 124static bool init_cpufreq_transition_notifier_list_called;
b4dfdbb3
AS
125static int __init init_cpufreq_transition_notifier_list(void)
126{
127 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
74212ca4 128 init_cpufreq_transition_notifier_list_called = true;
b4dfdbb3
AS
129 return 0;
130}
b3438f82 131pure_initcall(init_cpufreq_transition_notifier_list);
1da177e4
LT
132
133static LIST_HEAD(cpufreq_governor_list);
29464f28 134static DEFINE_MUTEX(cpufreq_governor_mutex);
1da177e4 135
7d5e350f 136struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
1da177e4
LT
137{
138 struct cpufreq_policy *data;
139 unsigned long flags;
140
7a6aedfa 141 if (cpu >= nr_cpu_ids)
1da177e4
LT
142 goto err_out;
143
144 /* get the cpufreq driver */
145 spin_lock_irqsave(&cpufreq_driver_lock, flags);
146
147 if (!cpufreq_driver)
148 goto err_out_unlock;
149
150 if (!try_module_get(cpufreq_driver->owner))
151 goto err_out_unlock;
152
153
154 /* get the CPU */
7a6aedfa 155 data = per_cpu(cpufreq_cpu_data, cpu);
1da177e4
LT
156
157 if (!data)
158 goto err_out_put_module;
159
160 if (!kobject_get(&data->kobj))
161 goto err_out_put_module;
162
1da177e4 163 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1da177e4
LT
164 return data;
165
7d5e350f 166err_out_put_module:
1da177e4 167 module_put(cpufreq_driver->owner);
7d5e350f 168err_out_unlock:
1da177e4 169 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
7d5e350f 170err_out:
1da177e4
LT
171 return NULL;
172}
173EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
174
7d5e350f 175
1da177e4
LT
176void cpufreq_cpu_put(struct cpufreq_policy *data)
177{
178 kobject_put(&data->kobj);
179 module_put(cpufreq_driver->owner);
180}
181EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
182
183
184/*********************************************************************
185 * UNIFIED DEBUG HELPERS *
186 *********************************************************************/
187#ifdef CONFIG_CPU_FREQ_DEBUG
188
189/* what part(s) of the CPUfreq subsystem are debugged? */
190static unsigned int debug;
191
192/* is the debug output ratelimit'ed using printk_ratelimit? User can
193 * set or modify this value.
194 */
195static unsigned int debug_ratelimit = 1;
196
197/* is the printk_ratelimit'ing enabled? It's enabled after a successful
198 * loading of a cpufreq driver, temporarily disabled when a new policy
199 * is set, and disabled upon cpufreq driver removal
200 */
201static unsigned int disable_ratelimit = 1;
202static DEFINE_SPINLOCK(disable_ratelimit_lock);
203
858119e1 204static void cpufreq_debug_enable_ratelimit(void)
1da177e4
LT
205{
206 unsigned long flags;
207
208 spin_lock_irqsave(&disable_ratelimit_lock, flags);
209 if (disable_ratelimit)
210 disable_ratelimit--;
211 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
212}
213
858119e1 214static void cpufreq_debug_disable_ratelimit(void)
1da177e4
LT
215{
216 unsigned long flags;
217
218 spin_lock_irqsave(&disable_ratelimit_lock, flags);
219 disable_ratelimit++;
220 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
221}
222
e08f5f5b 223void cpufreq_debug_printk(unsigned int type, const char *prefix,
905d77cd 224 const char *fmt, ...)
1da177e4
LT
225{
226 char s[256];
227 va_list args;
228 unsigned int len;
229 unsigned long flags;
32ee8c3e 230
1da177e4
LT
231 WARN_ON(!prefix);
232 if (type & debug) {
233 spin_lock_irqsave(&disable_ratelimit_lock, flags);
e08f5f5b
GS
234 if (!disable_ratelimit && debug_ratelimit
235 && !printk_ratelimit()) {
1da177e4
LT
236 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
237 return;
238 }
239 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
240
241 len = snprintf(s, 256, KERN_DEBUG "%s: ", prefix);
242
243 va_start(args, fmt);
244 len += vsnprintf(&s[len], (256 - len), fmt, args);
245 va_end(args);
246
247 printk(s);
248
249 WARN_ON(len < 5);
250 }
251}
252EXPORT_SYMBOL(cpufreq_debug_printk);
253
254
255module_param(debug, uint, 0644);
e08f5f5b
GS
256MODULE_PARM_DESC(debug, "CPUfreq debugging: add 1 to debug core,"
257 " 2 to debug drivers, and 4 to debug governors.");
1da177e4
LT
258
259module_param(debug_ratelimit, uint, 0644);
e08f5f5b
GS
260MODULE_PARM_DESC(debug_ratelimit, "CPUfreq debugging:"
261 " set to 0 to disable ratelimiting.");
1da177e4
LT
262
263#else /* !CONFIG_CPU_FREQ_DEBUG */
264
265static inline void cpufreq_debug_enable_ratelimit(void) { return; }
266static inline void cpufreq_debug_disable_ratelimit(void) { return; }
267
268#endif /* CONFIG_CPU_FREQ_DEBUG */
269
270
271/*********************************************************************
272 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
273 *********************************************************************/
274
275/**
276 * adjust_jiffies - adjust the system "loops_per_jiffy"
277 *
278 * This function alters the system "loops_per_jiffy" for the clock
279 * speed change. Note that loops_per_jiffy cannot be updated on SMP
32ee8c3e 280 * systems as each CPU might be scaled differently. So, use the arch
1da177e4
LT
281 * per-CPU loops_per_jiffy value wherever possible.
282 */
283#ifndef CONFIG_SMP
284static unsigned long l_p_j_ref;
285static unsigned int l_p_j_ref_freq;
286
858119e1 287static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
1da177e4
LT
288{
289 if (ci->flags & CPUFREQ_CONST_LOOPS)
290 return;
291
292 if (!l_p_j_ref_freq) {
293 l_p_j_ref = loops_per_jiffy;
294 l_p_j_ref_freq = ci->old;
a4a9df58 295 dprintk("saving %lu as reference value for loops_per_jiffy; "
e08f5f5b 296 "freq is %u kHz\n", l_p_j_ref, l_p_j_ref_freq);
1da177e4
LT
297 }
298 if ((val == CPUFREQ_PRECHANGE && ci->old < ci->new) ||
299 (val == CPUFREQ_POSTCHANGE && ci->old > ci->new) ||
42d4dc3f 300 (val == CPUFREQ_RESUMECHANGE || val == CPUFREQ_SUSPENDCHANGE)) {
e08f5f5b
GS
301 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
302 ci->new);
a4a9df58 303 dprintk("scaling loops_per_jiffy to %lu "
e08f5f5b 304 "for frequency %u kHz\n", loops_per_jiffy, ci->new);
1da177e4
LT
305 }
306}
307#else
e08f5f5b
GS
308static inline void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
309{
310 return;
311}
1da177e4
LT
312#endif
313
314
315/**
e4472cb3
DJ
316 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
317 * on frequency transition.
1da177e4 318 *
e4472cb3
DJ
319 * This function calls the transition notifiers and the "adjust_jiffies"
320 * function. It is called twice on all CPU frequency changes that have
32ee8c3e 321 * external effects.
1da177e4
LT
322 */
323void cpufreq_notify_transition(struct cpufreq_freqs *freqs, unsigned int state)
324{
e4472cb3
DJ
325 struct cpufreq_policy *policy;
326
1da177e4
LT
327 BUG_ON(irqs_disabled());
328
329 freqs->flags = cpufreq_driver->flags;
e4472cb3
DJ
330 dprintk("notification %u of frequency transition to %u kHz\n",
331 state, freqs->new);
1da177e4 332
7a6aedfa 333 policy = per_cpu(cpufreq_cpu_data, freqs->cpu);
1da177e4 334 switch (state) {
e4472cb3 335
1da177e4 336 case CPUFREQ_PRECHANGE:
32ee8c3e 337 /* detect if the driver reported a value as "old frequency"
e4472cb3
DJ
338 * which is not equal to what the cpufreq core thinks is
339 * "old frequency".
1da177e4
LT
340 */
341 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
e4472cb3
DJ
342 if ((policy) && (policy->cpu == freqs->cpu) &&
343 (policy->cur) && (policy->cur != freqs->old)) {
b10eec22 344 dprintk("Warning: CPU frequency is"
e4472cb3
DJ
345 " %u, cpufreq assumed %u kHz.\n",
346 freqs->old, policy->cur);
347 freqs->old = policy->cur;
1da177e4
LT
348 }
349 }
b4dfdbb3 350 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
e041c683 351 CPUFREQ_PRECHANGE, freqs);
1da177e4
LT
352 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
353 break;
e4472cb3 354
1da177e4
LT
355 case CPUFREQ_POSTCHANGE:
356 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
b4dfdbb3 357 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
e041c683 358 CPUFREQ_POSTCHANGE, freqs);
e4472cb3
DJ
359 if (likely(policy) && likely(policy->cpu == freqs->cpu))
360 policy->cur = freqs->new;
1da177e4
LT
361 break;
362 }
1da177e4
LT
363}
364EXPORT_SYMBOL_GPL(cpufreq_notify_transition);
365
366
367
368/*********************************************************************
369 * SYSFS INTERFACE *
370 *********************************************************************/
371
3bcb09a3
JF
372static struct cpufreq_governor *__find_governor(const char *str_governor)
373{
374 struct cpufreq_governor *t;
375
376 list_for_each_entry(t, &cpufreq_governor_list, governor_list)
29464f28 377 if (!strnicmp(str_governor, t->name, CPUFREQ_NAME_LEN))
3bcb09a3
JF
378 return t;
379
380 return NULL;
381}
382
1da177e4
LT
383/**
384 * cpufreq_parse_governor - parse a governor string
385 */
905d77cd 386static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
1da177e4
LT
387 struct cpufreq_governor **governor)
388{
3bcb09a3
JF
389 int err = -EINVAL;
390
1da177e4 391 if (!cpufreq_driver)
3bcb09a3
JF
392 goto out;
393
1da177e4
LT
394 if (cpufreq_driver->setpolicy) {
395 if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
396 *policy = CPUFREQ_POLICY_PERFORMANCE;
3bcb09a3 397 err = 0;
e08f5f5b
GS
398 } else if (!strnicmp(str_governor, "powersave",
399 CPUFREQ_NAME_LEN)) {
1da177e4 400 *policy = CPUFREQ_POLICY_POWERSAVE;
3bcb09a3 401 err = 0;
1da177e4 402 }
3bcb09a3 403 } else if (cpufreq_driver->target) {
1da177e4 404 struct cpufreq_governor *t;
3bcb09a3 405
3fc54d37 406 mutex_lock(&cpufreq_governor_mutex);
3bcb09a3
JF
407
408 t = __find_governor(str_governor);
409
ea714970 410 if (t == NULL) {
e08f5f5b
GS
411 char *name = kasprintf(GFP_KERNEL, "cpufreq_%s",
412 str_governor);
ea714970
JF
413
414 if (name) {
415 int ret;
416
417 mutex_unlock(&cpufreq_governor_mutex);
326f6a5c 418 ret = request_module("%s", name);
ea714970
JF
419 mutex_lock(&cpufreq_governor_mutex);
420
421 if (ret == 0)
422 t = __find_governor(str_governor);
423 }
424
425 kfree(name);
426 }
427
3bcb09a3
JF
428 if (t != NULL) {
429 *governor = t;
430 err = 0;
1da177e4 431 }
3bcb09a3 432
3fc54d37 433 mutex_unlock(&cpufreq_governor_mutex);
1da177e4 434 }
29464f28 435out:
3bcb09a3 436 return err;
1da177e4 437}
1da177e4
LT
438
439
1da177e4 440/**
e08f5f5b
GS
441 * cpufreq_per_cpu_attr_read() / show_##file_name() -
442 * print out cpufreq information
1da177e4
LT
443 *
444 * Write out information from cpufreq_driver->policy[cpu]; object must be
445 * "unsigned int".
446 */
447
32ee8c3e
DJ
448#define show_one(file_name, object) \
449static ssize_t show_##file_name \
905d77cd 450(struct cpufreq_policy *policy, char *buf) \
32ee8c3e 451{ \
29464f28 452 return sprintf(buf, "%u\n", policy->object); \
1da177e4
LT
453}
454
455show_one(cpuinfo_min_freq, cpuinfo.min_freq);
456show_one(cpuinfo_max_freq, cpuinfo.max_freq);
ed129784 457show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
1da177e4
LT
458show_one(scaling_min_freq, min);
459show_one(scaling_max_freq, max);
460show_one(scaling_cur_freq, cur);
461
e08f5f5b
GS
462static int __cpufreq_set_policy(struct cpufreq_policy *data,
463 struct cpufreq_policy *policy);
7970e08b 464
1da177e4
LT
465/**
466 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
467 */
468#define store_one(file_name, object) \
469static ssize_t store_##file_name \
905d77cd 470(struct cpufreq_policy *policy, const char *buf, size_t count) \
1da177e4
LT
471{ \
472 unsigned int ret = -EINVAL; \
473 struct cpufreq_policy new_policy; \
474 \
475 ret = cpufreq_get_policy(&new_policy, policy->cpu); \
476 if (ret) \
477 return -EINVAL; \
478 \
29464f28 479 ret = sscanf(buf, "%u", &new_policy.object); \
1da177e4
LT
480 if (ret != 1) \
481 return -EINVAL; \
482 \
7970e08b
TR
483 ret = __cpufreq_set_policy(policy, &new_policy); \
484 policy->user_policy.object = policy->object; \
1da177e4
LT
485 \
486 return ret ? ret : count; \
487}
488
29464f28
DJ
489store_one(scaling_min_freq, min);
490store_one(scaling_max_freq, max);
1da177e4
LT
491
492/**
493 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
494 */
905d77cd
DJ
495static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
496 char *buf)
1da177e4 497{
5a01f2e8 498 unsigned int cur_freq = __cpufreq_get(policy->cpu);
1da177e4
LT
499 if (!cur_freq)
500 return sprintf(buf, "<unknown>");
501 return sprintf(buf, "%u\n", cur_freq);
502}
503
504
505/**
506 * show_scaling_governor - show the current policy for the specified CPU
507 */
905d77cd 508static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
1da177e4 509{
29464f28 510 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
1da177e4
LT
511 return sprintf(buf, "powersave\n");
512 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
513 return sprintf(buf, "performance\n");
514 else if (policy->governor)
29464f28
DJ
515 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n",
516 policy->governor->name);
1da177e4
LT
517 return -EINVAL;
518}
519
520
521/**
522 * store_scaling_governor - store policy for the specified CPU
523 */
905d77cd
DJ
524static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
525 const char *buf, size_t count)
1da177e4
LT
526{
527 unsigned int ret = -EINVAL;
528 char str_governor[16];
529 struct cpufreq_policy new_policy;
530
531 ret = cpufreq_get_policy(&new_policy, policy->cpu);
532 if (ret)
533 return ret;
534
29464f28 535 ret = sscanf(buf, "%15s", str_governor);
1da177e4
LT
536 if (ret != 1)
537 return -EINVAL;
538
e08f5f5b
GS
539 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
540 &new_policy.governor))
1da177e4
LT
541 return -EINVAL;
542
7970e08b
TR
543 /* Do not use cpufreq_set_policy here or the user_policy.max
544 will be wrongly overridden */
7970e08b
TR
545 ret = __cpufreq_set_policy(policy, &new_policy);
546
547 policy->user_policy.policy = policy->policy;
548 policy->user_policy.governor = policy->governor;
7970e08b 549
e08f5f5b
GS
550 if (ret)
551 return ret;
552 else
553 return count;
1da177e4
LT
554}
555
556/**
557 * show_scaling_driver - show the cpufreq driver currently loaded
558 */
905d77cd 559static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
1da177e4
LT
560{
561 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", cpufreq_driver->name);
562}
563
564/**
565 * show_scaling_available_governors - show the available CPUfreq governors
566 */
905d77cd
DJ
567static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
568 char *buf)
1da177e4
LT
569{
570 ssize_t i = 0;
571 struct cpufreq_governor *t;
572
573 if (!cpufreq_driver->target) {
574 i += sprintf(buf, "performance powersave");
575 goto out;
576 }
577
578 list_for_each_entry(t, &cpufreq_governor_list, governor_list) {
29464f28
DJ
579 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
580 - (CPUFREQ_NAME_LEN + 2)))
1da177e4
LT
581 goto out;
582 i += scnprintf(&buf[i], CPUFREQ_NAME_LEN, "%s ", t->name);
583 }
7d5e350f 584out:
1da177e4
LT
585 i += sprintf(&buf[i], "\n");
586 return i;
587}
e8628dd0 588
835481d9 589static ssize_t show_cpus(const struct cpumask *mask, char *buf)
1da177e4
LT
590{
591 ssize_t i = 0;
592 unsigned int cpu;
593
835481d9 594 for_each_cpu(cpu, mask) {
1da177e4
LT
595 if (i)
596 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
597 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
598 if (i >= (PAGE_SIZE - 5))
29464f28 599 break;
1da177e4
LT
600 }
601 i += sprintf(&buf[i], "\n");
602 return i;
603}
604
e8628dd0
DW
605/**
606 * show_related_cpus - show the CPUs affected by each transition even if
607 * hw coordination is in use
608 */
609static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
610{
835481d9 611 if (cpumask_empty(policy->related_cpus))
e8628dd0
DW
612 return show_cpus(policy->cpus, buf);
613 return show_cpus(policy->related_cpus, buf);
614}
615
616/**
617 * show_affected_cpus - show the CPUs affected by each transition
618 */
619static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
620{
621 return show_cpus(policy->cpus, buf);
622}
623
9e76988e 624static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
905d77cd 625 const char *buf, size_t count)
9e76988e
VP
626{
627 unsigned int freq = 0;
628 unsigned int ret;
629
879000f9 630 if (!policy->governor || !policy->governor->store_setspeed)
9e76988e
VP
631 return -EINVAL;
632
633 ret = sscanf(buf, "%u", &freq);
634 if (ret != 1)
635 return -EINVAL;
636
637 policy->governor->store_setspeed(policy, freq);
638
639 return count;
640}
641
642static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
643{
879000f9 644 if (!policy->governor || !policy->governor->show_setspeed)
9e76988e
VP
645 return sprintf(buf, "<unsupported>\n");
646
647 return policy->governor->show_setspeed(policy, buf);
648}
1da177e4 649
e2f74f35
TR
650/**
651 * show_scaling_driver - show the current cpufreq HW/BIOS limitation
652 */
653static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
654{
655 unsigned int limit;
656 int ret;
657 if (cpufreq_driver->bios_limit) {
658 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
659 if (!ret)
660 return sprintf(buf, "%u\n", limit);
661 }
662 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
663}
664
1da177e4
LT
665#define define_one_ro(_name) \
666static struct freq_attr _name = \
667__ATTR(_name, 0444, show_##_name, NULL)
668
669#define define_one_ro0400(_name) \
670static struct freq_attr _name = \
671__ATTR(_name, 0400, show_##_name, NULL)
672
673#define define_one_rw(_name) \
674static struct freq_attr _name = \
675__ATTR(_name, 0644, show_##_name, store_##_name)
676
677define_one_ro0400(cpuinfo_cur_freq);
678define_one_ro(cpuinfo_min_freq);
679define_one_ro(cpuinfo_max_freq);
ed129784 680define_one_ro(cpuinfo_transition_latency);
1da177e4
LT
681define_one_ro(scaling_available_governors);
682define_one_ro(scaling_driver);
683define_one_ro(scaling_cur_freq);
e2f74f35 684define_one_ro(bios_limit);
e8628dd0 685define_one_ro(related_cpus);
1da177e4
LT
686define_one_ro(affected_cpus);
687define_one_rw(scaling_min_freq);
688define_one_rw(scaling_max_freq);
689define_one_rw(scaling_governor);
9e76988e 690define_one_rw(scaling_setspeed);
1da177e4 691
905d77cd 692static struct attribute *default_attrs[] = {
1da177e4
LT
693 &cpuinfo_min_freq.attr,
694 &cpuinfo_max_freq.attr,
ed129784 695 &cpuinfo_transition_latency.attr,
1da177e4
LT
696 &scaling_min_freq.attr,
697 &scaling_max_freq.attr,
698 &affected_cpus.attr,
e8628dd0 699 &related_cpus.attr,
1da177e4
LT
700 &scaling_governor.attr,
701 &scaling_driver.attr,
702 &scaling_available_governors.attr,
9e76988e 703 &scaling_setspeed.attr,
1da177e4
LT
704 NULL
705};
706
8aa84ad8
TR
707struct kobject *cpufreq_global_kobject;
708EXPORT_SYMBOL(cpufreq_global_kobject);
709
29464f28
DJ
710#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
711#define to_attr(a) container_of(a, struct freq_attr, attr)
1da177e4 712
29464f28 713static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
1da177e4 714{
905d77cd
DJ
715 struct cpufreq_policy *policy = to_policy(kobj);
716 struct freq_attr *fattr = to_attr(attr);
0db4a8a9 717 ssize_t ret = -EINVAL;
1da177e4
LT
718 policy = cpufreq_cpu_get(policy->cpu);
719 if (!policy)
0db4a8a9 720 goto no_policy;
5a01f2e8
VP
721
722 if (lock_policy_rwsem_read(policy->cpu) < 0)
0db4a8a9 723 goto fail;
5a01f2e8 724
e08f5f5b
GS
725 if (fattr->show)
726 ret = fattr->show(policy, buf);
727 else
728 ret = -EIO;
729
5a01f2e8 730 unlock_policy_rwsem_read(policy->cpu);
0db4a8a9 731fail:
1da177e4 732 cpufreq_cpu_put(policy);
0db4a8a9 733no_policy:
1da177e4
LT
734 return ret;
735}
736
905d77cd
DJ
737static ssize_t store(struct kobject *kobj, struct attribute *attr,
738 const char *buf, size_t count)
1da177e4 739{
905d77cd
DJ
740 struct cpufreq_policy *policy = to_policy(kobj);
741 struct freq_attr *fattr = to_attr(attr);
a07530b4 742 ssize_t ret = -EINVAL;
1da177e4
LT
743 policy = cpufreq_cpu_get(policy->cpu);
744 if (!policy)
a07530b4 745 goto no_policy;
5a01f2e8
VP
746
747 if (lock_policy_rwsem_write(policy->cpu) < 0)
a07530b4 748 goto fail;
5a01f2e8 749
e08f5f5b
GS
750 if (fattr->store)
751 ret = fattr->store(policy, buf, count);
752 else
753 ret = -EIO;
754
5a01f2e8 755 unlock_policy_rwsem_write(policy->cpu);
a07530b4 756fail:
1da177e4 757 cpufreq_cpu_put(policy);
a07530b4 758no_policy:
1da177e4
LT
759 return ret;
760}
761
905d77cd 762static void cpufreq_sysfs_release(struct kobject *kobj)
1da177e4 763{
905d77cd 764 struct cpufreq_policy *policy = to_policy(kobj);
1da177e4
LT
765 dprintk("last reference is dropped\n");
766 complete(&policy->kobj_unregister);
767}
768
769static struct sysfs_ops sysfs_ops = {
770 .show = show,
771 .store = store,
772};
773
774static struct kobj_type ktype_cpufreq = {
775 .sysfs_ops = &sysfs_ops,
776 .default_attrs = default_attrs,
777 .release = cpufreq_sysfs_release,
778};
779
4bfa042c
TR
780/*
781 * Returns:
782 * Negative: Failure
783 * 0: Success
784 * Positive: When we have a managed CPU and the sysfs got symlinked
785 */
cf3289d0
AC
786static int cpufreq_add_dev_policy(unsigned int cpu,
787 struct cpufreq_policy *policy,
788 struct sys_device *sys_dev)
ecf7e461
DJ
789{
790 int ret = 0;
791#ifdef CONFIG_SMP
792 unsigned long flags;
793 unsigned int j;
ecf7e461 794#ifdef CONFIG_HOTPLUG_CPU
e77b89f1
DM
795 struct cpufreq_governor *gov;
796
797 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
798 if (gov) {
799 policy->governor = gov;
ecf7e461
DJ
800 dprintk("Restoring governor %s for cpu %d\n",
801 policy->governor->name, cpu);
802 }
803#endif
804
805 for_each_cpu(j, policy->cpus) {
806 struct cpufreq_policy *managed_policy;
807
808 if (cpu == j)
809 continue;
810
811 /* Check for existing affected CPUs.
812 * They may not be aware of it due to CPU Hotplug.
813 * cpufreq_cpu_put is called when the device is removed
814 * in __cpufreq_remove_dev()
815 */
816 managed_policy = cpufreq_cpu_get(j);
817 if (unlikely(managed_policy)) {
818
819 /* Set proper policy_cpu */
820 unlock_policy_rwsem_write(cpu);
f1625066 821 per_cpu(cpufreq_policy_cpu, cpu) = managed_policy->cpu;
ecf7e461
DJ
822
823 if (lock_policy_rwsem_write(cpu) < 0) {
824 /* Should not go through policy unlock path */
825 if (cpufreq_driver->exit)
826 cpufreq_driver->exit(policy);
827 cpufreq_cpu_put(managed_policy);
828 return -EBUSY;
829 }
830
831 spin_lock_irqsave(&cpufreq_driver_lock, flags);
832 cpumask_copy(managed_policy->cpus, policy->cpus);
833 per_cpu(cpufreq_cpu_data, cpu) = managed_policy;
834 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
835
836 dprintk("CPU already managed, adding link\n");
837 ret = sysfs_create_link(&sys_dev->kobj,
838 &managed_policy->kobj,
839 "cpufreq");
840 if (ret)
841 cpufreq_cpu_put(managed_policy);
842 /*
843 * Success. We only needed to be added to the mask.
844 * Call driver->exit() because only the cpu parent of
845 * the kobj needed to call init().
846 */
847 if (cpufreq_driver->exit)
848 cpufreq_driver->exit(policy);
4bfa042c
TR
849
850 if (!ret)
851 return 1;
852 else
853 return ret;
ecf7e461
DJ
854 }
855 }
856#endif
857 return ret;
858}
859
860
19d6f7ec 861/* symlink affected CPUs */
cf3289d0
AC
862static int cpufreq_add_dev_symlink(unsigned int cpu,
863 struct cpufreq_policy *policy)
19d6f7ec
DJ
864{
865 unsigned int j;
866 int ret = 0;
867
868 for_each_cpu(j, policy->cpus) {
869 struct cpufreq_policy *managed_policy;
870 struct sys_device *cpu_sys_dev;
871
872 if (j == cpu)
873 continue;
874 if (!cpu_online(j))
875 continue;
876
877 dprintk("CPU %u already managed, adding link\n", j);
878 managed_policy = cpufreq_cpu_get(cpu);
879 cpu_sys_dev = get_cpu_sysdev(j);
880 ret = sysfs_create_link(&cpu_sys_dev->kobj, &policy->kobj,
881 "cpufreq");
882 if (ret) {
883 cpufreq_cpu_put(managed_policy);
884 return ret;
885 }
886 }
887 return ret;
888}
889
cf3289d0
AC
890static int cpufreq_add_dev_interface(unsigned int cpu,
891 struct cpufreq_policy *policy,
892 struct sys_device *sys_dev)
909a694e 893{
ecf7e461 894 struct cpufreq_policy new_policy;
909a694e
DJ
895 struct freq_attr **drv_attr;
896 unsigned long flags;
897 int ret = 0;
898 unsigned int j;
899
900 /* prepare interface data */
901 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
902 &sys_dev->kobj, "cpufreq");
903 if (ret)
904 return ret;
905
906 /* set up files for this cpu device */
907 drv_attr = cpufreq_driver->attr;
908 while ((drv_attr) && (*drv_attr)) {
909 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
910 if (ret)
911 goto err_out_kobj_put;
912 drv_attr++;
913 }
914 if (cpufreq_driver->get) {
915 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
916 if (ret)
917 goto err_out_kobj_put;
918 }
919 if (cpufreq_driver->target) {
920 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
921 if (ret)
922 goto err_out_kobj_put;
923 }
e2f74f35
TR
924 if (cpufreq_driver->bios_limit) {
925 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
926 if (ret)
927 goto err_out_kobj_put;
928 }
909a694e
DJ
929
930 spin_lock_irqsave(&cpufreq_driver_lock, flags);
931 for_each_cpu(j, policy->cpus) {
932 if (!cpu_online(j))
933 continue;
934 per_cpu(cpufreq_cpu_data, j) = policy;
f1625066 935 per_cpu(cpufreq_policy_cpu, j) = policy->cpu;
909a694e
DJ
936 }
937 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
938
939 ret = cpufreq_add_dev_symlink(cpu, policy);
ecf7e461
DJ
940 if (ret)
941 goto err_out_kobj_put;
942
943 memcpy(&new_policy, policy, sizeof(struct cpufreq_policy));
944 /* assure that the starting sequence is run in __cpufreq_set_policy */
945 policy->governor = NULL;
946
947 /* set default policy */
948 ret = __cpufreq_set_policy(policy, &new_policy);
949 policy->user_policy.policy = policy->policy;
950 policy->user_policy.governor = policy->governor;
951
952 if (ret) {
953 dprintk("setting policy failed\n");
954 if (cpufreq_driver->exit)
955 cpufreq_driver->exit(policy);
956 }
909a694e
DJ
957 return ret;
958
959err_out_kobj_put:
960 kobject_put(&policy->kobj);
961 wait_for_completion(&policy->kobj_unregister);
962 return ret;
963}
964
1da177e4
LT
965
966/**
967 * cpufreq_add_dev - add a CPU device
968 *
32ee8c3e 969 * Adds the cpufreq interface for a CPU device.
3f4a782b
MD
970 *
971 * The Oracle says: try running cpufreq registration/unregistration concurrently
972 * with with cpu hotplugging and all hell will break loose. Tried to clean this
973 * mess up, but more thorough testing is needed. - Mathieu
1da177e4 974 */
905d77cd 975static int cpufreq_add_dev(struct sys_device *sys_dev)
1da177e4
LT
976{
977 unsigned int cpu = sys_dev->id;
90e41bac 978 int ret = 0, found = 0;
1da177e4 979 struct cpufreq_policy *policy;
1da177e4
LT
980 unsigned long flags;
981 unsigned int j;
90e41bac
PB
982#ifdef CONFIG_HOTPLUG_CPU
983 int sibling;
984#endif
1da177e4 985
c32b6b8e
AR
986 if (cpu_is_offline(cpu))
987 return 0;
988
1da177e4
LT
989 cpufreq_debug_disable_ratelimit();
990 dprintk("adding CPU %u\n", cpu);
991
992#ifdef CONFIG_SMP
993 /* check whether a different CPU already registered this
994 * CPU because it is in the same boat. */
995 policy = cpufreq_cpu_get(cpu);
996 if (unlikely(policy)) {
8ff69732 997 cpufreq_cpu_put(policy);
1da177e4
LT
998 cpufreq_debug_enable_ratelimit();
999 return 0;
1000 }
1001#endif
1002
1003 if (!try_module_get(cpufreq_driver->owner)) {
1004 ret = -EINVAL;
1005 goto module_out;
1006 }
1007
059019a3 1008 ret = -ENOMEM;
e98df50c 1009 policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL);
059019a3 1010 if (!policy)
1da177e4 1011 goto nomem_out;
059019a3
DJ
1012
1013 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
3f4a782b 1014 goto err_free_policy;
059019a3
DJ
1015
1016 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
3f4a782b 1017 goto err_free_cpumask;
1da177e4
LT
1018
1019 policy->cpu = cpu;
835481d9 1020 cpumask_copy(policy->cpus, cpumask_of(cpu));
1da177e4 1021
5a01f2e8 1022 /* Initially set CPU itself as the policy_cpu */
f1625066 1023 per_cpu(cpufreq_policy_cpu, cpu) = cpu;
3f4a782b
MD
1024 ret = (lock_policy_rwsem_write(cpu) < 0);
1025 WARN_ON(ret);
5a01f2e8 1026
1da177e4 1027 init_completion(&policy->kobj_unregister);
65f27f38 1028 INIT_WORK(&policy->update, handle_update);
1da177e4 1029
8122c6ce 1030 /* Set governor before ->init, so that driver could check it */
90e41bac
PB
1031#ifdef CONFIG_HOTPLUG_CPU
1032 for_each_online_cpu(sibling) {
1033 struct cpufreq_policy *cp = per_cpu(cpufreq_cpu_data, sibling);
1034 if (cp && cp->governor &&
1035 (cpumask_test_cpu(cpu, cp->related_cpus))) {
1036 policy->governor = cp->governor;
1037 found = 1;
1038 break;
1039 }
1040 }
1041#endif
1042 if (!found)
1043 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
1da177e4
LT
1044 /* call driver. From then on the cpufreq must be able
1045 * to accept all calls to ->verify and ->setpolicy for this CPU
1046 */
1047 ret = cpufreq_driver->init(policy);
1048 if (ret) {
1049 dprintk("initialization failed\n");
3f4a782b 1050 goto err_unlock_policy;
1da177e4 1051 }
187d9f4e
MC
1052 policy->user_policy.min = policy->min;
1053 policy->user_policy.max = policy->max;
1da177e4 1054
a1531acd
TR
1055 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1056 CPUFREQ_START, policy);
1057
ecf7e461 1058 ret = cpufreq_add_dev_policy(cpu, policy, sys_dev);
4bfa042c
TR
1059 if (ret) {
1060 if (ret > 0)
1061 /* This is a managed cpu, symlink created,
1062 exit with 0 */
1063 ret = 0;
ecf7e461 1064 goto err_unlock_policy;
4bfa042c 1065 }
1da177e4 1066
909a694e 1067 ret = cpufreq_add_dev_interface(cpu, policy, sys_dev);
19d6f7ec
DJ
1068 if (ret)
1069 goto err_out_unregister;
8ff69732 1070
dca02613
LW
1071 unlock_policy_rwsem_write(cpu);
1072
038c5b3e 1073 kobject_uevent(&policy->kobj, KOBJ_ADD);
1da177e4 1074 module_put(cpufreq_driver->owner);
1da177e4
LT
1075 dprintk("initialization complete\n");
1076 cpufreq_debug_enable_ratelimit();
87c32271 1077
1da177e4
LT
1078 return 0;
1079
1080
1081err_out_unregister:
1082 spin_lock_irqsave(&cpufreq_driver_lock, flags);
835481d9 1083 for_each_cpu(j, policy->cpus)
7a6aedfa 1084 per_cpu(cpufreq_cpu_data, j) = NULL;
1da177e4
LT
1085 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1086
c10997f6 1087 kobject_put(&policy->kobj);
1da177e4
LT
1088 wait_for_completion(&policy->kobj_unregister);
1089
3f4a782b 1090err_unlock_policy:
45709118 1091 unlock_policy_rwsem_write(cpu);
3f4a782b
MD
1092err_free_cpumask:
1093 free_cpumask_var(policy->cpus);
1094err_free_policy:
1da177e4 1095 kfree(policy);
1da177e4
LT
1096nomem_out:
1097 module_put(cpufreq_driver->owner);
c32b6b8e 1098module_out:
1da177e4
LT
1099 cpufreq_debug_enable_ratelimit();
1100 return ret;
1101}
1102
1103
1104/**
5a01f2e8 1105 * __cpufreq_remove_dev - remove a CPU device
1da177e4
LT
1106 *
1107 * Removes the cpufreq interface for a CPU device.
5a01f2e8
VP
1108 * Caller should already have policy_rwsem in write mode for this CPU.
1109 * This routine frees the rwsem before returning.
1da177e4 1110 */
905d77cd 1111static int __cpufreq_remove_dev(struct sys_device *sys_dev)
1da177e4
LT
1112{
1113 unsigned int cpu = sys_dev->id;
1114 unsigned long flags;
1115 struct cpufreq_policy *data;
1116#ifdef CONFIG_SMP
e738cf6d 1117 struct sys_device *cpu_sys_dev;
1da177e4
LT
1118 unsigned int j;
1119#endif
1120
1121 cpufreq_debug_disable_ratelimit();
1122 dprintk("unregistering CPU %u\n", cpu);
1123
1124 spin_lock_irqsave(&cpufreq_driver_lock, flags);
7a6aedfa 1125 data = per_cpu(cpufreq_cpu_data, cpu);
1da177e4
LT
1126
1127 if (!data) {
1128 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1da177e4 1129 cpufreq_debug_enable_ratelimit();
5a01f2e8 1130 unlock_policy_rwsem_write(cpu);
1da177e4
LT
1131 return -EINVAL;
1132 }
7a6aedfa 1133 per_cpu(cpufreq_cpu_data, cpu) = NULL;
1da177e4
LT
1134
1135
1136#ifdef CONFIG_SMP
1137 /* if this isn't the CPU which is the parent of the kobj, we
32ee8c3e 1138 * only need to unlink, put and exit
1da177e4
LT
1139 */
1140 if (unlikely(cpu != data->cpu)) {
1141 dprintk("removing link\n");
835481d9 1142 cpumask_clear_cpu(cpu, data->cpus);
1da177e4
LT
1143 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1144 sysfs_remove_link(&sys_dev->kobj, "cpufreq");
1da177e4
LT
1145 cpufreq_cpu_put(data);
1146 cpufreq_debug_enable_ratelimit();
5a01f2e8 1147 unlock_policy_rwsem_write(cpu);
1da177e4
LT
1148 return 0;
1149 }
1150#endif
1151
1da177e4 1152#ifdef CONFIG_SMP
084f3493
TR
1153
1154#ifdef CONFIG_HOTPLUG_CPU
e77b89f1
DM
1155 strncpy(per_cpu(cpufreq_cpu_governor, cpu), data->governor->name,
1156 CPUFREQ_NAME_LEN);
084f3493
TR
1157#endif
1158
1da177e4
LT
1159 /* if we have other CPUs still registered, we need to unlink them,
1160 * or else wait_for_completion below will lock up. Clean the
7a6aedfa
MT
1161 * per_cpu(cpufreq_cpu_data) while holding the lock, and remove
1162 * the sysfs links afterwards.
1da177e4 1163 */
835481d9
RR
1164 if (unlikely(cpumask_weight(data->cpus) > 1)) {
1165 for_each_cpu(j, data->cpus) {
1da177e4
LT
1166 if (j == cpu)
1167 continue;
7a6aedfa 1168 per_cpu(cpufreq_cpu_data, j) = NULL;
1da177e4
LT
1169 }
1170 }
1171
1172 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1173
835481d9
RR
1174 if (unlikely(cpumask_weight(data->cpus) > 1)) {
1175 for_each_cpu(j, data->cpus) {
1da177e4
LT
1176 if (j == cpu)
1177 continue;
1178 dprintk("removing link for cpu %u\n", j);
084f3493 1179#ifdef CONFIG_HOTPLUG_CPU
e77b89f1
DM
1180 strncpy(per_cpu(cpufreq_cpu_governor, j),
1181 data->governor->name, CPUFREQ_NAME_LEN);
084f3493 1182#endif
d434fca7
AR
1183 cpu_sys_dev = get_cpu_sysdev(j);
1184 sysfs_remove_link(&cpu_sys_dev->kobj, "cpufreq");
1da177e4
LT
1185 cpufreq_cpu_put(data);
1186 }
1187 }
1188#else
1189 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1190#endif
1191
1da177e4
LT
1192 if (cpufreq_driver->target)
1193 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
5a01f2e8 1194
1da177e4
LT
1195 kobject_put(&data->kobj);
1196
1197 /* we need to make sure that the underlying kobj is actually
32ee8c3e 1198 * not referenced anymore by anybody before we proceed with
1da177e4
LT
1199 * unloading.
1200 */
1201 dprintk("waiting for dropping of refcount\n");
1202 wait_for_completion(&data->kobj_unregister);
1203 dprintk("wait complete\n");
1204
1205 if (cpufreq_driver->exit)
1206 cpufreq_driver->exit(data);
1207
7d26e2d5 1208 unlock_policy_rwsem_write(cpu);
1209
835481d9
RR
1210 free_cpumask_var(data->related_cpus);
1211 free_cpumask_var(data->cpus);
1da177e4 1212 kfree(data);
835481d9 1213 per_cpu(cpufreq_cpu_data, cpu) = NULL;
1da177e4
LT
1214
1215 cpufreq_debug_enable_ratelimit();
1da177e4
LT
1216 return 0;
1217}
1218
1219
905d77cd 1220static int cpufreq_remove_dev(struct sys_device *sys_dev)
5a01f2e8
VP
1221{
1222 unsigned int cpu = sys_dev->id;
1223 int retval;
ec28297a
VP
1224
1225 if (cpu_is_offline(cpu))
1226 return 0;
1227
5a01f2e8
VP
1228 if (unlikely(lock_policy_rwsem_write(cpu)))
1229 BUG();
1230
1231 retval = __cpufreq_remove_dev(sys_dev);
1232 return retval;
1233}
1234
1235
65f27f38 1236static void handle_update(struct work_struct *work)
1da177e4 1237{
65f27f38
DH
1238 struct cpufreq_policy *policy =
1239 container_of(work, struct cpufreq_policy, update);
1240 unsigned int cpu = policy->cpu;
1da177e4
LT
1241 dprintk("handle_update for cpu %u called\n", cpu);
1242 cpufreq_update_policy(cpu);
1243}
1244
1245/**
1246 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're in deep trouble.
1247 * @cpu: cpu number
1248 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1249 * @new_freq: CPU frequency the CPU actually runs at
1250 *
29464f28
DJ
1251 * We adjust to current frequency first, and need to clean up later.
1252 * So either call to cpufreq_update_policy() or schedule handle_update()).
1da177e4 1253 */
e08f5f5b
GS
1254static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1255 unsigned int new_freq)
1da177e4
LT
1256{
1257 struct cpufreq_freqs freqs;
1258
b10eec22 1259 dprintk("Warning: CPU frequency out of sync: cpufreq and timing "
1da177e4
LT
1260 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1261
1262 freqs.cpu = cpu;
1263 freqs.old = old_freq;
1264 freqs.new = new_freq;
1265 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1266 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
1267}
1268
1269
32ee8c3e 1270/**
4ab70df4 1271 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
95235ca2
VP
1272 * @cpu: CPU number
1273 *
1274 * This is the last known freq, without actually getting it from the driver.
1275 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1276 */
1277unsigned int cpufreq_quick_get(unsigned int cpu)
1278{
1279 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
e08f5f5b 1280 unsigned int ret_freq = 0;
95235ca2
VP
1281
1282 if (policy) {
e08f5f5b 1283 ret_freq = policy->cur;
95235ca2
VP
1284 cpufreq_cpu_put(policy);
1285 }
1286
4d34a67d 1287 return ret_freq;
95235ca2
VP
1288}
1289EXPORT_SYMBOL(cpufreq_quick_get);
1290
1291
5a01f2e8 1292static unsigned int __cpufreq_get(unsigned int cpu)
1da177e4 1293{
7a6aedfa 1294 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
e08f5f5b 1295 unsigned int ret_freq = 0;
1da177e4 1296
1da177e4 1297 if (!cpufreq_driver->get)
4d34a67d 1298 return ret_freq;
1da177e4 1299
e08f5f5b 1300 ret_freq = cpufreq_driver->get(cpu);
1da177e4 1301
e08f5f5b
GS
1302 if (ret_freq && policy->cur &&
1303 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1304 /* verify no discrepancy between actual and
1305 saved value exists */
1306 if (unlikely(ret_freq != policy->cur)) {
1307 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
1da177e4
LT
1308 schedule_work(&policy->update);
1309 }
1310 }
1311
4d34a67d 1312 return ret_freq;
5a01f2e8 1313}
1da177e4 1314
5a01f2e8
VP
1315/**
1316 * cpufreq_get - get the current CPU frequency (in kHz)
1317 * @cpu: CPU number
1318 *
1319 * Get the CPU current (static) CPU frequency
1320 */
1321unsigned int cpufreq_get(unsigned int cpu)
1322{
1323 unsigned int ret_freq = 0;
1324 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1325
1326 if (!policy)
1327 goto out;
1328
1329 if (unlikely(lock_policy_rwsem_read(cpu)))
1330 goto out_policy;
1331
1332 ret_freq = __cpufreq_get(cpu);
1333
1334 unlock_policy_rwsem_read(cpu);
1da177e4 1335
5a01f2e8
VP
1336out_policy:
1337 cpufreq_cpu_put(policy);
1338out:
4d34a67d 1339 return ret_freq;
1da177e4
LT
1340}
1341EXPORT_SYMBOL(cpufreq_get);
1342
1343
42d4dc3f
BH
1344/**
1345 * cpufreq_suspend - let the low level driver prepare for suspend
1346 */
1347
905d77cd 1348static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg)
42d4dc3f 1349{
e08f5f5b 1350 int ret = 0;
4bc5d341 1351
4bc5d341 1352 int cpu = sysdev->id;
42d4dc3f
BH
1353 struct cpufreq_policy *cpu_policy;
1354
0e37b159 1355 dprintk("suspending cpu %u\n", cpu);
42d4dc3f
BH
1356
1357 if (!cpu_online(cpu))
1358 return 0;
1359
1360 /* we may be lax here as interrupts are off. Nonetheless
1361 * we need to grab the correct cpu policy, as to check
1362 * whether we really run on this CPU.
1363 */
1364
1365 cpu_policy = cpufreq_cpu_get(cpu);
1366 if (!cpu_policy)
1367 return -EINVAL;
1368
1369 /* only handle each CPU group once */
c9060494
DJ
1370 if (unlikely(cpu_policy->cpu != cpu))
1371 goto out;
42d4dc3f
BH
1372
1373 if (cpufreq_driver->suspend) {
e00d9967 1374 ret = cpufreq_driver->suspend(cpu_policy, pmsg);
ce6c3997 1375 if (ret)
42d4dc3f
BH
1376 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
1377 "step on CPU %u\n", cpu_policy->cpu);
42d4dc3f
BH
1378 }
1379
7d5e350f 1380out:
42d4dc3f 1381 cpufreq_cpu_put(cpu_policy);
c9060494 1382 return ret;
42d4dc3f
BH
1383}
1384
1da177e4
LT
1385/**
1386 * cpufreq_resume - restore proper CPU frequency handling after resume
1387 *
1388 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
ce6c3997
DB
1389 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1390 * restored. It will verify that the current freq is in sync with
1391 * what we believe it to be. This is a bit later than when it
1392 * should be, but nonethteless it's better than calling
1393 * cpufreq_driver->get() here which might re-enable interrupts...
1da177e4 1394 */
905d77cd 1395static int cpufreq_resume(struct sys_device *sysdev)
1da177e4 1396{
e08f5f5b 1397 int ret = 0;
4bc5d341 1398
4bc5d341 1399 int cpu = sysdev->id;
1da177e4
LT
1400 struct cpufreq_policy *cpu_policy;
1401
1402 dprintk("resuming cpu %u\n", cpu);
1403
1404 if (!cpu_online(cpu))
1405 return 0;
1406
1407 /* we may be lax here as interrupts are off. Nonetheless
1408 * we need to grab the correct cpu policy, as to check
1409 * whether we really run on this CPU.
1410 */
1411
1412 cpu_policy = cpufreq_cpu_get(cpu);
1413 if (!cpu_policy)
1414 return -EINVAL;
1415
1416 /* only handle each CPU group once */
c9060494
DJ
1417 if (unlikely(cpu_policy->cpu != cpu))
1418 goto fail;
1da177e4
LT
1419
1420 if (cpufreq_driver->resume) {
1421 ret = cpufreq_driver->resume(cpu_policy);
1422 if (ret) {
1423 printk(KERN_ERR "cpufreq: resume failed in ->resume "
1424 "step on CPU %u\n", cpu_policy->cpu);
c9060494 1425 goto fail;
1da177e4
LT
1426 }
1427 }
1428
1da177e4 1429 schedule_work(&cpu_policy->update);
ce6c3997 1430
c9060494 1431fail:
1da177e4
LT
1432 cpufreq_cpu_put(cpu_policy);
1433 return ret;
1434}
1435
1436static struct sysdev_driver cpufreq_sysdev_driver = {
1437 .add = cpufreq_add_dev,
1438 .remove = cpufreq_remove_dev,
42d4dc3f 1439 .suspend = cpufreq_suspend,
1da177e4
LT
1440 .resume = cpufreq_resume,
1441};
1442
1443
1444/*********************************************************************
1445 * NOTIFIER LISTS INTERFACE *
1446 *********************************************************************/
1447
1448/**
1449 * cpufreq_register_notifier - register a driver with cpufreq
1450 * @nb: notifier function to register
1451 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1452 *
32ee8c3e 1453 * Add a driver to one of two lists: either a list of drivers that
1da177e4
LT
1454 * are notified about clock rate changes (once before and once after
1455 * the transition), or a list of drivers that are notified about
1456 * changes in cpufreq policy.
1457 *
1458 * This function may sleep, and has the same return conditions as
e041c683 1459 * blocking_notifier_chain_register.
1da177e4
LT
1460 */
1461int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1462{
1463 int ret;
1464
74212ca4
CEB
1465 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1466
1da177e4
LT
1467 switch (list) {
1468 case CPUFREQ_TRANSITION_NOTIFIER:
b4dfdbb3 1469 ret = srcu_notifier_chain_register(
e041c683 1470 &cpufreq_transition_notifier_list, nb);
1da177e4
LT
1471 break;
1472 case CPUFREQ_POLICY_NOTIFIER:
e041c683
AS
1473 ret = blocking_notifier_chain_register(
1474 &cpufreq_policy_notifier_list, nb);
1da177e4
LT
1475 break;
1476 default:
1477 ret = -EINVAL;
1478 }
1da177e4
LT
1479
1480 return ret;
1481}
1482EXPORT_SYMBOL(cpufreq_register_notifier);
1483
1484
1485/**
1486 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1487 * @nb: notifier block to be unregistered
1488 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1489 *
1490 * Remove a driver from the CPU frequency notifier list.
1491 *
1492 * This function may sleep, and has the same return conditions as
e041c683 1493 * blocking_notifier_chain_unregister.
1da177e4
LT
1494 */
1495int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1496{
1497 int ret;
1498
1da177e4
LT
1499 switch (list) {
1500 case CPUFREQ_TRANSITION_NOTIFIER:
b4dfdbb3 1501 ret = srcu_notifier_chain_unregister(
e041c683 1502 &cpufreq_transition_notifier_list, nb);
1da177e4
LT
1503 break;
1504 case CPUFREQ_POLICY_NOTIFIER:
e041c683
AS
1505 ret = blocking_notifier_chain_unregister(
1506 &cpufreq_policy_notifier_list, nb);
1da177e4
LT
1507 break;
1508 default:
1509 ret = -EINVAL;
1510 }
1da177e4
LT
1511
1512 return ret;
1513}
1514EXPORT_SYMBOL(cpufreq_unregister_notifier);
1515
1516
1517/*********************************************************************
1518 * GOVERNORS *
1519 *********************************************************************/
1520
1521
1522int __cpufreq_driver_target(struct cpufreq_policy *policy,
1523 unsigned int target_freq,
1524 unsigned int relation)
1525{
1526 int retval = -EINVAL;
c32b6b8e 1527
1da177e4
LT
1528 dprintk("target for CPU %u: %u kHz, relation %u\n", policy->cpu,
1529 target_freq, relation);
1530 if (cpu_online(policy->cpu) && cpufreq_driver->target)
1531 retval = cpufreq_driver->target(policy, target_freq, relation);
90d45d17 1532
1da177e4
LT
1533 return retval;
1534}
1535EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1536
1da177e4
LT
1537int cpufreq_driver_target(struct cpufreq_policy *policy,
1538 unsigned int target_freq,
1539 unsigned int relation)
1540{
f1829e4a 1541 int ret = -EINVAL;
1da177e4
LT
1542
1543 policy = cpufreq_cpu_get(policy->cpu);
1544 if (!policy)
f1829e4a 1545 goto no_policy;
1da177e4 1546
5a01f2e8 1547 if (unlikely(lock_policy_rwsem_write(policy->cpu)))
f1829e4a 1548 goto fail;
1da177e4
LT
1549
1550 ret = __cpufreq_driver_target(policy, target_freq, relation);
1551
5a01f2e8 1552 unlock_policy_rwsem_write(policy->cpu);
1da177e4 1553
f1829e4a 1554fail:
1da177e4 1555 cpufreq_cpu_put(policy);
f1829e4a 1556no_policy:
1da177e4
LT
1557 return ret;
1558}
1559EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1560
bf0b90e3 1561int __cpufreq_driver_getavg(struct cpufreq_policy *policy, unsigned int cpu)
dfde5d62
VP
1562{
1563 int ret = 0;
1564
1565 policy = cpufreq_cpu_get(policy->cpu);
1566 if (!policy)
1567 return -EINVAL;
1568
bf0b90e3 1569 if (cpu_online(cpu) && cpufreq_driver->getavg)
1570 ret = cpufreq_driver->getavg(policy, cpu);
dfde5d62 1571
dfde5d62
VP
1572 cpufreq_cpu_put(policy);
1573 return ret;
1574}
5a01f2e8 1575EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg);
dfde5d62 1576
153d7f3f 1577/*
153d7f3f
AV
1578 * when "event" is CPUFREQ_GOV_LIMITS
1579 */
1da177e4 1580
e08f5f5b
GS
1581static int __cpufreq_governor(struct cpufreq_policy *policy,
1582 unsigned int event)
1da177e4 1583{
cc993cab 1584 int ret;
6afde10c
TR
1585
1586 /* Only must be defined when default governor is known to have latency
1587 restrictions, like e.g. conservative or ondemand.
1588 That this is the case is already ensured in Kconfig
1589 */
1590#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1591 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1592#else
1593 struct cpufreq_governor *gov = NULL;
1594#endif
1c256245
TR
1595
1596 if (policy->governor->max_transition_latency &&
1597 policy->cpuinfo.transition_latency >
1598 policy->governor->max_transition_latency) {
6afde10c
TR
1599 if (!gov)
1600 return -EINVAL;
1601 else {
1602 printk(KERN_WARNING "%s governor failed, too long"
1603 " transition latency of HW, fallback"
1604 " to %s governor\n",
1605 policy->governor->name,
1606 gov->name);
1607 policy->governor = gov;
1608 }
1c256245 1609 }
1da177e4
LT
1610
1611 if (!try_module_get(policy->governor->owner))
1612 return -EINVAL;
1613
e08f5f5b
GS
1614 dprintk("__cpufreq_governor for CPU %u, event %u\n",
1615 policy->cpu, event);
1da177e4
LT
1616 ret = policy->governor->governor(policy, event);
1617
e08f5f5b
GS
1618 /* we keep one module reference alive for
1619 each CPU governed by this CPU */
1da177e4
LT
1620 if ((event != CPUFREQ_GOV_START) || ret)
1621 module_put(policy->governor->owner);
1622 if ((event == CPUFREQ_GOV_STOP) && !ret)
1623 module_put(policy->governor->owner);
1624
1625 return ret;
1626}
1627
1628
1da177e4
LT
1629int cpufreq_register_governor(struct cpufreq_governor *governor)
1630{
3bcb09a3 1631 int err;
1da177e4
LT
1632
1633 if (!governor)
1634 return -EINVAL;
1635
3fc54d37 1636 mutex_lock(&cpufreq_governor_mutex);
32ee8c3e 1637
3bcb09a3
JF
1638 err = -EBUSY;
1639 if (__find_governor(governor->name) == NULL) {
1640 err = 0;
1641 list_add(&governor->governor_list, &cpufreq_governor_list);
1da177e4 1642 }
1da177e4 1643
32ee8c3e 1644 mutex_unlock(&cpufreq_governor_mutex);
3bcb09a3 1645 return err;
1da177e4
LT
1646}
1647EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1648
1649
1650void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1651{
90e41bac
PB
1652#ifdef CONFIG_HOTPLUG_CPU
1653 int cpu;
1654#endif
1655
1da177e4
LT
1656 if (!governor)
1657 return;
1658
90e41bac
PB
1659#ifdef CONFIG_HOTPLUG_CPU
1660 for_each_present_cpu(cpu) {
1661 if (cpu_online(cpu))
1662 continue;
1663 if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name))
1664 strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0");
1665 }
1666#endif
1667
3fc54d37 1668 mutex_lock(&cpufreq_governor_mutex);
1da177e4 1669 list_del(&governor->governor_list);
3fc54d37 1670 mutex_unlock(&cpufreq_governor_mutex);
1da177e4
LT
1671 return;
1672}
1673EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1674
1675
1676
1677/*********************************************************************
1678 * POLICY INTERFACE *
1679 *********************************************************************/
1680
1681/**
1682 * cpufreq_get_policy - get the current cpufreq_policy
29464f28
DJ
1683 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1684 * is written
1da177e4
LT
1685 *
1686 * Reads the current cpufreq policy.
1687 */
1688int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1689{
1690 struct cpufreq_policy *cpu_policy;
1691 if (!policy)
1692 return -EINVAL;
1693
1694 cpu_policy = cpufreq_cpu_get(cpu);
1695 if (!cpu_policy)
1696 return -EINVAL;
1697
1da177e4 1698 memcpy(policy, cpu_policy, sizeof(struct cpufreq_policy));
1da177e4
LT
1699
1700 cpufreq_cpu_put(cpu_policy);
1da177e4
LT
1701 return 0;
1702}
1703EXPORT_SYMBOL(cpufreq_get_policy);
1704
1705
153d7f3f 1706/*
e08f5f5b
GS
1707 * data : current policy.
1708 * policy : policy to be set.
153d7f3f 1709 */
e08f5f5b
GS
1710static int __cpufreq_set_policy(struct cpufreq_policy *data,
1711 struct cpufreq_policy *policy)
1da177e4
LT
1712{
1713 int ret = 0;
1714
1715 cpufreq_debug_disable_ratelimit();
1716 dprintk("setting new policy for CPU %u: %u - %u kHz\n", policy->cpu,
1717 policy->min, policy->max);
1718
e08f5f5b
GS
1719 memcpy(&policy->cpuinfo, &data->cpuinfo,
1720 sizeof(struct cpufreq_cpuinfo));
1da177e4 1721
53391fa2 1722 if (policy->min > data->max || policy->max < data->min) {
9c9a43ed
MD
1723 ret = -EINVAL;
1724 goto error_out;
1725 }
1726
1da177e4
LT
1727 /* verify the cpu speed can be set within this limit */
1728 ret = cpufreq_driver->verify(policy);
1729 if (ret)
1730 goto error_out;
1731
1da177e4 1732 /* adjust if necessary - all reasons */
e041c683
AS
1733 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1734 CPUFREQ_ADJUST, policy);
1da177e4
LT
1735
1736 /* adjust if necessary - hardware incompatibility*/
e041c683
AS
1737 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1738 CPUFREQ_INCOMPATIBLE, policy);
1da177e4
LT
1739
1740 /* verify the cpu speed can be set within this limit,
1741 which might be different to the first one */
1742 ret = cpufreq_driver->verify(policy);
e041c683 1743 if (ret)
1da177e4 1744 goto error_out;
1da177e4
LT
1745
1746 /* notification of the new policy */
e041c683
AS
1747 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1748 CPUFREQ_NOTIFY, policy);
1da177e4 1749
7d5e350f
DJ
1750 data->min = policy->min;
1751 data->max = policy->max;
1da177e4 1752
e08f5f5b
GS
1753 dprintk("new min and max freqs are %u - %u kHz\n",
1754 data->min, data->max);
1da177e4
LT
1755
1756 if (cpufreq_driver->setpolicy) {
1757 data->policy = policy->policy;
1758 dprintk("setting range\n");
1759 ret = cpufreq_driver->setpolicy(policy);
1760 } else {
1761 if (policy->governor != data->governor) {
1762 /* save old, working values */
1763 struct cpufreq_governor *old_gov = data->governor;
1764
1765 dprintk("governor switch\n");
1766
1767 /* end old governor */
395913d0
MD
1768 if (data->governor) {
1769 /*
1770 * Need to release the rwsem around governor
1771 * stop due to lock dependency between
1772 * cancel_delayed_work_sync and the read lock
1773 * taken in the delayed work handler.
1774 */
1775 unlock_policy_rwsem_write(data->cpu);
1da177e4 1776 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
395913d0
MD
1777 lock_policy_rwsem_write(data->cpu);
1778 }
1da177e4
LT
1779
1780 /* start new governor */
1781 data->governor = policy->governor;
1782 if (__cpufreq_governor(data, CPUFREQ_GOV_START)) {
1783 /* new governor failed, so re-start old one */
e08f5f5b
GS
1784 dprintk("starting governor %s failed\n",
1785 data->governor->name);
1da177e4
LT
1786 if (old_gov) {
1787 data->governor = old_gov;
e08f5f5b
GS
1788 __cpufreq_governor(data,
1789 CPUFREQ_GOV_START);
1da177e4
LT
1790 }
1791 ret = -EINVAL;
1792 goto error_out;
1793 }
1794 /* might be a policy change, too, so fall through */
1795 }
1796 dprintk("governor: change or update limits\n");
1797 __cpufreq_governor(data, CPUFREQ_GOV_LIMITS);
1798 }
1799
7d5e350f 1800error_out:
1da177e4
LT
1801 cpufreq_debug_enable_ratelimit();
1802 return ret;
1803}
1804
1da177e4
LT
1805/**
1806 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1807 * @cpu: CPU which shall be re-evaluated
1808 *
1809 * Usefull for policy notifiers which have different necessities
1810 * at different times.
1811 */
1812int cpufreq_update_policy(unsigned int cpu)
1813{
1814 struct cpufreq_policy *data = cpufreq_cpu_get(cpu);
1815 struct cpufreq_policy policy;
f1829e4a 1816 int ret;
1da177e4 1817
f1829e4a
JL
1818 if (!data) {
1819 ret = -ENODEV;
1820 goto no_policy;
1821 }
1da177e4 1822
f1829e4a
JL
1823 if (unlikely(lock_policy_rwsem_write(cpu))) {
1824 ret = -EINVAL;
1825 goto fail;
1826 }
1da177e4
LT
1827
1828 dprintk("updating policy for CPU %u\n", cpu);
7d5e350f 1829 memcpy(&policy, data, sizeof(struct cpufreq_policy));
1da177e4
LT
1830 policy.min = data->user_policy.min;
1831 policy.max = data->user_policy.max;
1832 policy.policy = data->user_policy.policy;
1833 policy.governor = data->user_policy.governor;
1834
0961dd0d
TR
1835 /* BIOS might change freq behind our back
1836 -> ask driver for current freq and notify governors about a change */
1837 if (cpufreq_driver->get) {
1838 policy.cur = cpufreq_driver->get(cpu);
a85f7bd3
TR
1839 if (!data->cur) {
1840 dprintk("Driver did not initialize current freq");
1841 data->cur = policy.cur;
1842 } else {
1843 if (data->cur != policy.cur)
e08f5f5b
GS
1844 cpufreq_out_of_sync(cpu, data->cur,
1845 policy.cur);
a85f7bd3 1846 }
0961dd0d
TR
1847 }
1848
1da177e4
LT
1849 ret = __cpufreq_set_policy(data, &policy);
1850
5a01f2e8
VP
1851 unlock_policy_rwsem_write(cpu);
1852
f1829e4a 1853fail:
1da177e4 1854 cpufreq_cpu_put(data);
f1829e4a 1855no_policy:
1da177e4
LT
1856 return ret;
1857}
1858EXPORT_SYMBOL(cpufreq_update_policy);
1859
dd184a01 1860static int __cpuinit cpufreq_cpu_callback(struct notifier_block *nfb,
c32b6b8e
AR
1861 unsigned long action, void *hcpu)
1862{
1863 unsigned int cpu = (unsigned long)hcpu;
c32b6b8e
AR
1864 struct sys_device *sys_dev;
1865
1866 sys_dev = get_cpu_sysdev(cpu);
c32b6b8e
AR
1867 if (sys_dev) {
1868 switch (action) {
1869 case CPU_ONLINE:
8bb78442 1870 case CPU_ONLINE_FROZEN:
c32b6b8e
AR
1871 cpufreq_add_dev(sys_dev);
1872 break;
1873 case CPU_DOWN_PREPARE:
8bb78442 1874 case CPU_DOWN_PREPARE_FROZEN:
5a01f2e8
VP
1875 if (unlikely(lock_policy_rwsem_write(cpu)))
1876 BUG();
1877
5a01f2e8 1878 __cpufreq_remove_dev(sys_dev);
c32b6b8e 1879 break;
5a01f2e8 1880 case CPU_DOWN_FAILED:
8bb78442 1881 case CPU_DOWN_FAILED_FROZEN:
5a01f2e8 1882 cpufreq_add_dev(sys_dev);
c32b6b8e
AR
1883 break;
1884 }
1885 }
1886 return NOTIFY_OK;
1887}
1888
f6ebef30 1889static struct notifier_block __refdata cpufreq_cpu_notifier =
c32b6b8e
AR
1890{
1891 .notifier_call = cpufreq_cpu_callback,
1892};
1da177e4
LT
1893
1894/*********************************************************************
1895 * REGISTER / UNREGISTER CPUFREQ DRIVER *
1896 *********************************************************************/
1897
1898/**
1899 * cpufreq_register_driver - register a CPU Frequency driver
1900 * @driver_data: A struct cpufreq_driver containing the values#
1901 * submitted by the CPU Frequency driver.
1902 *
32ee8c3e 1903 * Registers a CPU Frequency driver to this core code. This code
1da177e4 1904 * returns zero on success, -EBUSY when another driver got here first
32ee8c3e 1905 * (and isn't unregistered in the meantime).
1da177e4
LT
1906 *
1907 */
221dee28 1908int cpufreq_register_driver(struct cpufreq_driver *driver_data)
1da177e4
LT
1909{
1910 unsigned long flags;
1911 int ret;
1912
1913 if (!driver_data || !driver_data->verify || !driver_data->init ||
1914 ((!driver_data->setpolicy) && (!driver_data->target)))
1915 return -EINVAL;
1916
1917 dprintk("trying to register driver %s\n", driver_data->name);
1918
1919 if (driver_data->setpolicy)
1920 driver_data->flags |= CPUFREQ_CONST_LOOPS;
1921
1922 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1923 if (cpufreq_driver) {
1924 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1925 return -EBUSY;
1926 }
1927 cpufreq_driver = driver_data;
1928 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1929
7a6aedfa
MT
1930 ret = sysdev_driver_register(&cpu_sysdev_class,
1931 &cpufreq_sysdev_driver);
1da177e4
LT
1932
1933 if ((!ret) && !(cpufreq_driver->flags & CPUFREQ_STICKY)) {
1934 int i;
1935 ret = -ENODEV;
1936
1937 /* check for at least one working CPU */
7a6aedfa
MT
1938 for (i = 0; i < nr_cpu_ids; i++)
1939 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
1da177e4 1940 ret = 0;
7a6aedfa
MT
1941 break;
1942 }
1da177e4
LT
1943
1944 /* if all ->init() calls failed, unregister */
1945 if (ret) {
e08f5f5b
GS
1946 dprintk("no CPU initialized for driver %s\n",
1947 driver_data->name);
1948 sysdev_driver_unregister(&cpu_sysdev_class,
1949 &cpufreq_sysdev_driver);
1da177e4
LT
1950
1951 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1952 cpufreq_driver = NULL;
1953 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1954 }
1955 }
1956
1957 if (!ret) {
65edc68c 1958 register_hotcpu_notifier(&cpufreq_cpu_notifier);
1da177e4
LT
1959 dprintk("driver %s up and running\n", driver_data->name);
1960 cpufreq_debug_enable_ratelimit();
1961 }
1962
4d34a67d 1963 return ret;
1da177e4
LT
1964}
1965EXPORT_SYMBOL_GPL(cpufreq_register_driver);
1966
1967
1968/**
1969 * cpufreq_unregister_driver - unregister the current CPUFreq driver
1970 *
32ee8c3e 1971 * Unregister the current CPUFreq driver. Only call this if you have
1da177e4
LT
1972 * the right to do so, i.e. if you have succeeded in initialising before!
1973 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
1974 * currently not initialised.
1975 */
221dee28 1976int cpufreq_unregister_driver(struct cpufreq_driver *driver)
1da177e4
LT
1977{
1978 unsigned long flags;
1979
1980 cpufreq_debug_disable_ratelimit();
1981
1982 if (!cpufreq_driver || (driver != cpufreq_driver)) {
1983 cpufreq_debug_enable_ratelimit();
1984 return -EINVAL;
1985 }
1986
1987 dprintk("unregistering driver %s\n", driver->name);
1988
1989 sysdev_driver_unregister(&cpu_sysdev_class, &cpufreq_sysdev_driver);
65edc68c 1990 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
1da177e4
LT
1991
1992 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1993 cpufreq_driver = NULL;
1994 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1995
1996 return 0;
1997}
1998EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
5a01f2e8
VP
1999
2000static int __init cpufreq_core_init(void)
2001{
2002 int cpu;
2003
2004 for_each_possible_cpu(cpu) {
f1625066 2005 per_cpu(cpufreq_policy_cpu, cpu) = -1;
5a01f2e8
VP
2006 init_rwsem(&per_cpu(cpu_policy_rwsem, cpu));
2007 }
8aa84ad8
TR
2008
2009 cpufreq_global_kobject = kobject_create_and_add("cpufreq",
2010 &cpu_sysdev_class.kset.kobj);
2011 BUG_ON(!cpufreq_global_kobject);
2012
5a01f2e8
VP
2013 return 0;
2014}
5a01f2e8 2015core_initcall(cpufreq_core_init);