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