Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / drivers / cpufreq / cpufreq.c
blob42050bf189577cee5df5aecedbf7b40c2d270b1f
1 /*
2 * linux/drivers/cpufreq/cpufreq.c
4 * Copyright (C) 2001 Russell King
5 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
7 * Oct 2005 - Ashok Raj <ashok.raj@intel.com>
8 * Added handling for CPU hotplug
9 * Feb 2006 - Jacob Shin <jacob.shin@amd.com>
10 * Fix handling for CPU hotplug -- affected CPUs
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.
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>
30 #include <linux/mutex.h>
32 #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_CORE, \
33 "cpufreq-core", msg)
35 /**
36 * The "cpufreq driver" - the arch- or hardware-dependent low
37 * level driver of CPUFreq support, and its spinlock. This lock
38 * also protects the cpufreq_cpu_data array.
40 static struct cpufreq_driver *cpufreq_driver;
41 static struct cpufreq_policy *cpufreq_cpu_data[NR_CPUS];
42 #ifdef CONFIG_HOTPLUG_CPU
43 /* This one keeps track of the previously set governor of a removed CPU */
44 static struct cpufreq_governor *cpufreq_cpu_governor[NR_CPUS];
45 #endif
46 static DEFINE_SPINLOCK(cpufreq_driver_lock);
49 * cpu_policy_rwsem is a per CPU reader-writer semaphore designed to cure
50 * all cpufreq/hotplug/workqueue/etc related lock issues.
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.
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.
65 static DEFINE_PER_CPU(int, policy_cpu);
66 static DEFINE_PER_CPU(struct rw_semaphore, cpu_policy_rwsem);
68 #define lock_policy_rwsem(mode, cpu) \
69 int 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 } \
80 return 0; \
83 lock_policy_rwsem(read, cpu);
84 EXPORT_SYMBOL_GPL(lock_policy_rwsem_read);
86 lock_policy_rwsem(write, cpu);
87 EXPORT_SYMBOL_GPL(lock_policy_rwsem_write);
89 void unlock_policy_rwsem_read(int cpu)
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));
95 EXPORT_SYMBOL_GPL(unlock_policy_rwsem_read);
97 void unlock_policy_rwsem_write(int cpu)
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));
103 EXPORT_SYMBOL_GPL(unlock_policy_rwsem_write);
106 /* internal prototypes */
107 static int __cpufreq_governor(struct cpufreq_policy *policy, unsigned int event);
108 static unsigned int __cpufreq_get(unsigned int cpu);
109 static void handle_update(struct work_struct *work);
112 * Two notifier lists: the "policy" list is involved in the
113 * validation process for a new CPU frequency policy; the
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.
118 static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
119 static struct srcu_notifier_head cpufreq_transition_notifier_list;
121 static int __init init_cpufreq_transition_notifier_list(void)
123 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
124 return 0;
126 pure_initcall(init_cpufreq_transition_notifier_list);
128 static LIST_HEAD(cpufreq_governor_list);
129 static DEFINE_MUTEX (cpufreq_governor_mutex);
131 struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
133 struct cpufreq_policy *data;
134 unsigned long flags;
136 if (cpu >= NR_CPUS)
137 goto err_out;
139 /* get the cpufreq driver */
140 spin_lock_irqsave(&cpufreq_driver_lock, flags);
142 if (!cpufreq_driver)
143 goto err_out_unlock;
145 if (!try_module_get(cpufreq_driver->owner))
146 goto err_out_unlock;
149 /* get the CPU */
150 data = cpufreq_cpu_data[cpu];
152 if (!data)
153 goto err_out_put_module;
155 if (!kobject_get(&data->kobj))
156 goto err_out_put_module;
158 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
159 return data;
161 err_out_put_module:
162 module_put(cpufreq_driver->owner);
163 err_out_unlock:
164 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
165 err_out:
166 return NULL;
168 EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
171 void cpufreq_cpu_put(struct cpufreq_policy *data)
173 kobject_put(&data->kobj);
174 module_put(cpufreq_driver->owner);
176 EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
179 /*********************************************************************
180 * UNIFIED DEBUG HELPERS *
181 *********************************************************************/
182 #ifdef CONFIG_CPU_FREQ_DEBUG
184 /* what part(s) of the CPUfreq subsystem are debugged? */
185 static unsigned int debug;
187 /* is the debug output ratelimit'ed using printk_ratelimit? User can
188 * set or modify this value.
190 static unsigned int debug_ratelimit = 1;
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
196 static unsigned int disable_ratelimit = 1;
197 static DEFINE_SPINLOCK(disable_ratelimit_lock);
199 static void cpufreq_debug_enable_ratelimit(void)
201 unsigned long flags;
203 spin_lock_irqsave(&disable_ratelimit_lock, flags);
204 if (disable_ratelimit)
205 disable_ratelimit--;
206 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
209 static void cpufreq_debug_disable_ratelimit(void)
211 unsigned long flags;
213 spin_lock_irqsave(&disable_ratelimit_lock, flags);
214 disable_ratelimit++;
215 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
218 void cpufreq_debug_printk(unsigned int type, const char *prefix,
219 const char *fmt, ...)
221 char s[256];
222 va_list args;
223 unsigned int len;
224 unsigned long flags;
226 WARN_ON(!prefix);
227 if (type & debug) {
228 spin_lock_irqsave(&disable_ratelimit_lock, flags);
229 if (!disable_ratelimit && debug_ratelimit
230 && !printk_ratelimit()) {
231 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
232 return;
234 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
236 len = snprintf(s, 256, KERN_DEBUG "%s: ", prefix);
238 va_start(args, fmt);
239 len += vsnprintf(&s[len], (256 - len), fmt, args);
240 va_end(args);
242 printk(s);
244 WARN_ON(len < 5);
247 EXPORT_SYMBOL(cpufreq_debug_printk);
250 module_param(debug, uint, 0644);
251 MODULE_PARM_DESC(debug, "CPUfreq debugging: add 1 to debug core,"
252 " 2 to debug drivers, and 4 to debug governors.");
254 module_param(debug_ratelimit, uint, 0644);
255 MODULE_PARM_DESC(debug_ratelimit, "CPUfreq debugging:"
256 " set to 0 to disable ratelimiting.");
258 #else /* !CONFIG_CPU_FREQ_DEBUG */
260 static inline void cpufreq_debug_enable_ratelimit(void) { return; }
261 static inline void cpufreq_debug_disable_ratelimit(void) { return; }
263 #endif /* CONFIG_CPU_FREQ_DEBUG */
266 /*********************************************************************
267 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
268 *********************************************************************/
271 * adjust_jiffies - adjust the system "loops_per_jiffy"
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
275 * systems as each CPU might be scaled differently. So, use the arch
276 * per-CPU loops_per_jiffy value wherever possible.
278 #ifndef CONFIG_SMP
279 static unsigned long l_p_j_ref;
280 static unsigned int l_p_j_ref_freq;
282 static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
284 if (ci->flags & CPUFREQ_CONST_LOOPS)
285 return;
287 if (!l_p_j_ref_freq) {
288 l_p_j_ref = loops_per_jiffy;
289 l_p_j_ref_freq = ci->old;
290 dprintk("saving %lu as reference value for loops_per_jiffy; "
291 "freq is %u kHz\n", l_p_j_ref, l_p_j_ref_freq);
293 if ((val == CPUFREQ_PRECHANGE && ci->old < ci->new) ||
294 (val == CPUFREQ_POSTCHANGE && ci->old > ci->new) ||
295 (val == CPUFREQ_RESUMECHANGE || val == CPUFREQ_SUSPENDCHANGE)) {
296 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
297 ci->new);
298 dprintk("scaling loops_per_jiffy to %lu "
299 "for frequency %u kHz\n", loops_per_jiffy, ci->new);
302 #else
303 static inline void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
305 return;
307 #endif
311 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
312 * on frequency transition.
314 * This function calls the transition notifiers and the "adjust_jiffies"
315 * function. It is called twice on all CPU frequency changes that have
316 * external effects.
318 void cpufreq_notify_transition(struct cpufreq_freqs *freqs, unsigned int state)
320 struct cpufreq_policy *policy;
322 BUG_ON(irqs_disabled());
324 freqs->flags = cpufreq_driver->flags;
325 dprintk("notification %u of frequency transition to %u kHz\n",
326 state, freqs->new);
328 policy = cpufreq_cpu_data[freqs->cpu];
329 switch (state) {
331 case CPUFREQ_PRECHANGE:
332 /* detect if the driver reported a value as "old frequency"
333 * which is not equal to what the cpufreq core thinks is
334 * "old frequency".
336 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
337 if ((policy) && (policy->cpu == freqs->cpu) &&
338 (policy->cur) && (policy->cur != freqs->old)) {
339 dprintk("Warning: CPU frequency is"
340 " %u, cpufreq assumed %u kHz.\n",
341 freqs->old, policy->cur);
342 freqs->old = policy->cur;
345 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
346 CPUFREQ_PRECHANGE, freqs);
347 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
348 break;
350 case CPUFREQ_POSTCHANGE:
351 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
352 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
353 CPUFREQ_POSTCHANGE, freqs);
354 if (likely(policy) && likely(policy->cpu == freqs->cpu))
355 policy->cur = freqs->new;
356 break;
359 EXPORT_SYMBOL_GPL(cpufreq_notify_transition);
363 /*********************************************************************
364 * SYSFS INTERFACE *
365 *********************************************************************/
367 static struct cpufreq_governor *__find_governor(const char *str_governor)
369 struct cpufreq_governor *t;
371 list_for_each_entry(t, &cpufreq_governor_list, governor_list)
372 if (!strnicmp(str_governor,t->name,CPUFREQ_NAME_LEN))
373 return t;
375 return NULL;
379 * cpufreq_parse_governor - parse a governor string
381 static int cpufreq_parse_governor (char *str_governor, unsigned int *policy,
382 struct cpufreq_governor **governor)
384 int err = -EINVAL;
386 if (!cpufreq_driver)
387 goto out;
389 if (cpufreq_driver->setpolicy) {
390 if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
391 *policy = CPUFREQ_POLICY_PERFORMANCE;
392 err = 0;
393 } else if (!strnicmp(str_governor, "powersave",
394 CPUFREQ_NAME_LEN)) {
395 *policy = CPUFREQ_POLICY_POWERSAVE;
396 err = 0;
398 } else if (cpufreq_driver->target) {
399 struct cpufreq_governor *t;
401 mutex_lock(&cpufreq_governor_mutex);
403 t = __find_governor(str_governor);
405 if (t == NULL) {
406 char *name = kasprintf(GFP_KERNEL, "cpufreq_%s",
407 str_governor);
409 if (name) {
410 int ret;
412 mutex_unlock(&cpufreq_governor_mutex);
413 ret = request_module(name);
414 mutex_lock(&cpufreq_governor_mutex);
416 if (ret == 0)
417 t = __find_governor(str_governor);
420 kfree(name);
423 if (t != NULL) {
424 *governor = t;
425 err = 0;
428 mutex_unlock(&cpufreq_governor_mutex);
430 out:
431 return err;
435 /* drivers/base/cpu.c */
436 extern struct sysdev_class cpu_sysdev_class;
440 * cpufreq_per_cpu_attr_read() / show_##file_name() -
441 * print out cpufreq information
443 * Write out information from cpufreq_driver->policy[cpu]; object must be
444 * "unsigned int".
447 #define show_one(file_name, object) \
448 static ssize_t show_##file_name \
449 (struct cpufreq_policy * policy, char *buf) \
451 return sprintf (buf, "%u\n", policy->object); \
454 show_one(cpuinfo_min_freq, cpuinfo.min_freq);
455 show_one(cpuinfo_max_freq, cpuinfo.max_freq);
456 show_one(scaling_min_freq, min);
457 show_one(scaling_max_freq, max);
458 show_one(scaling_cur_freq, cur);
460 static int __cpufreq_set_policy(struct cpufreq_policy *data,
461 struct cpufreq_policy *policy);
464 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
466 #define store_one(file_name, object) \
467 static ssize_t store_##file_name \
468 (struct cpufreq_policy * policy, const char *buf, size_t count) \
470 unsigned int ret = -EINVAL; \
471 struct cpufreq_policy new_policy; \
473 ret = cpufreq_get_policy(&new_policy, policy->cpu); \
474 if (ret) \
475 return -EINVAL; \
477 ret = sscanf (buf, "%u", &new_policy.object); \
478 if (ret != 1) \
479 return -EINVAL; \
481 ret = __cpufreq_set_policy(policy, &new_policy); \
482 policy->user_policy.object = policy->object; \
484 return ret ? ret : count; \
487 store_one(scaling_min_freq,min);
488 store_one(scaling_max_freq,max);
491 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
493 static ssize_t show_cpuinfo_cur_freq (struct cpufreq_policy * policy,
494 char *buf)
496 unsigned int cur_freq = __cpufreq_get(policy->cpu);
497 if (!cur_freq)
498 return sprintf(buf, "<unknown>");
499 return sprintf(buf, "%u\n", cur_freq);
504 * show_scaling_governor - show the current policy for the specified CPU
506 static ssize_t show_scaling_governor (struct cpufreq_policy * policy,
507 char *buf)
509 if(policy->policy == CPUFREQ_POLICY_POWERSAVE)
510 return sprintf(buf, "powersave\n");
511 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
512 return sprintf(buf, "performance\n");
513 else if (policy->governor)
514 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", policy->governor->name);
515 return -EINVAL;
520 * store_scaling_governor - store policy for the specified CPU
522 static ssize_t store_scaling_governor (struct cpufreq_policy * policy,
523 const char *buf, size_t count)
525 unsigned int ret = -EINVAL;
526 char str_governor[16];
527 struct cpufreq_policy new_policy;
529 ret = cpufreq_get_policy(&new_policy, policy->cpu);
530 if (ret)
531 return ret;
533 ret = sscanf (buf, "%15s", str_governor);
534 if (ret != 1)
535 return -EINVAL;
537 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
538 &new_policy.governor))
539 return -EINVAL;
541 /* Do not use cpufreq_set_policy here or the user_policy.max
542 will be wrongly overridden */
543 ret = __cpufreq_set_policy(policy, &new_policy);
545 policy->user_policy.policy = policy->policy;
546 policy->user_policy.governor = policy->governor;
548 if (ret)
549 return ret;
550 else
551 return count;
555 * show_scaling_driver - show the cpufreq driver currently loaded
557 static ssize_t show_scaling_driver (struct cpufreq_policy * policy, char *buf)
559 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", cpufreq_driver->name);
563 * show_scaling_available_governors - show the available CPUfreq governors
565 static ssize_t show_scaling_available_governors (struct cpufreq_policy *policy,
566 char *buf)
568 ssize_t i = 0;
569 struct cpufreq_governor *t;
571 if (!cpufreq_driver->target) {
572 i += sprintf(buf, "performance powersave");
573 goto out;
576 list_for_each_entry(t, &cpufreq_governor_list, governor_list) {
577 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char)) - (CPUFREQ_NAME_LEN + 2)))
578 goto out;
579 i += scnprintf(&buf[i], CPUFREQ_NAME_LEN, "%s ", t->name);
581 out:
582 i += sprintf(&buf[i], "\n");
583 return i;
586 * show_affected_cpus - show the CPUs affected by each transition
588 static ssize_t show_affected_cpus (struct cpufreq_policy * policy, char *buf)
590 ssize_t i = 0;
591 unsigned int cpu;
593 for_each_cpu_mask(cpu, policy->cpus) {
594 if (i)
595 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
596 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
597 if (i >= (PAGE_SIZE - 5))
598 break;
600 i += sprintf(&buf[i], "\n");
601 return i;
604 static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
605 const char *buf, size_t count)
607 unsigned int freq = 0;
608 unsigned int ret;
610 if (!policy->governor->store_setspeed)
611 return -EINVAL;
613 ret = sscanf(buf, "%u", &freq);
614 if (ret != 1)
615 return -EINVAL;
617 policy->governor->store_setspeed(policy, freq);
619 return count;
622 static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
624 if (!policy->governor->show_setspeed)
625 return sprintf(buf, "<unsupported>\n");
627 return policy->governor->show_setspeed(policy, buf);
630 #define define_one_ro(_name) \
631 static struct freq_attr _name = \
632 __ATTR(_name, 0444, show_##_name, NULL)
634 #define define_one_ro0400(_name) \
635 static struct freq_attr _name = \
636 __ATTR(_name, 0400, show_##_name, NULL)
638 #define define_one_rw(_name) \
639 static struct freq_attr _name = \
640 __ATTR(_name, 0644, show_##_name, store_##_name)
642 define_one_ro0400(cpuinfo_cur_freq);
643 define_one_ro(cpuinfo_min_freq);
644 define_one_ro(cpuinfo_max_freq);
645 define_one_ro(scaling_available_governors);
646 define_one_ro(scaling_driver);
647 define_one_ro(scaling_cur_freq);
648 define_one_ro(affected_cpus);
649 define_one_rw(scaling_min_freq);
650 define_one_rw(scaling_max_freq);
651 define_one_rw(scaling_governor);
652 define_one_rw(scaling_setspeed);
654 static struct attribute * default_attrs[] = {
655 &cpuinfo_min_freq.attr,
656 &cpuinfo_max_freq.attr,
657 &scaling_min_freq.attr,
658 &scaling_max_freq.attr,
659 &affected_cpus.attr,
660 &scaling_governor.attr,
661 &scaling_driver.attr,
662 &scaling_available_governors.attr,
663 &scaling_setspeed.attr,
664 NULL
667 #define to_policy(k) container_of(k,struct cpufreq_policy,kobj)
668 #define to_attr(a) container_of(a,struct freq_attr,attr)
670 static ssize_t show(struct kobject * kobj, struct attribute * attr ,char * buf)
672 struct cpufreq_policy * policy = to_policy(kobj);
673 struct freq_attr * fattr = to_attr(attr);
674 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
675 ssize_t ret;
676 =======
677 ssize_t ret = -EINVAL;
678 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
679 policy = cpufreq_cpu_get(policy->cpu);
680 if (!policy)
681 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
682 return -EINVAL;
683 =======
684 goto no_policy;
685 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
687 if (lock_policy_rwsem_read(policy->cpu) < 0)
688 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
689 return -EINVAL;
690 =======
691 goto fail;
692 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
694 if (fattr->show)
695 ret = fattr->show(policy, buf);
696 else
697 ret = -EIO;
699 unlock_policy_rwsem_read(policy->cpu);
700 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
702 =======
703 fail:
704 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
705 cpufreq_cpu_put(policy);
706 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
707 =======
708 no_policy:
709 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
710 return ret;
713 static ssize_t store(struct kobject * kobj, struct attribute * attr,
714 const char * buf, size_t count)
716 struct cpufreq_policy * policy = to_policy(kobj);
717 struct freq_attr * fattr = to_attr(attr);
718 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
719 ssize_t ret;
720 =======
721 ssize_t ret = -EINVAL;
722 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
723 policy = cpufreq_cpu_get(policy->cpu);
724 if (!policy)
725 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
726 return -EINVAL;
727 =======
728 goto no_policy;
729 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
731 if (lock_policy_rwsem_write(policy->cpu) < 0)
732 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
733 return -EINVAL;
734 =======
735 goto fail;
736 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
738 if (fattr->store)
739 ret = fattr->store(policy, buf, count);
740 else
741 ret = -EIO;
743 unlock_policy_rwsem_write(policy->cpu);
744 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
746 =======
747 fail:
748 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
749 cpufreq_cpu_put(policy);
750 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
751 =======
752 no_policy:
753 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
754 return ret;
757 static void cpufreq_sysfs_release(struct kobject * kobj)
759 struct cpufreq_policy * policy = to_policy(kobj);
760 dprintk("last reference is dropped\n");
761 complete(&policy->kobj_unregister);
764 static struct sysfs_ops sysfs_ops = {
765 .show = show,
766 .store = store,
769 static struct kobj_type ktype_cpufreq = {
770 .sysfs_ops = &sysfs_ops,
771 .default_attrs = default_attrs,
772 .release = cpufreq_sysfs_release,
777 * cpufreq_add_dev - add a CPU device
779 * Adds the cpufreq interface for a CPU device.
781 static int cpufreq_add_dev (struct sys_device * sys_dev)
783 unsigned int cpu = sys_dev->id;
784 int ret = 0;
785 struct cpufreq_policy new_policy;
786 struct cpufreq_policy *policy;
787 struct freq_attr **drv_attr;
788 struct sys_device *cpu_sys_dev;
789 unsigned long flags;
790 unsigned int j;
791 #ifdef CONFIG_SMP
792 struct cpufreq_policy *managed_policy;
793 #endif
795 if (cpu_is_offline(cpu))
796 return 0;
798 cpufreq_debug_disable_ratelimit();
799 dprintk("adding CPU %u\n", cpu);
801 #ifdef CONFIG_SMP
802 /* check whether a different CPU already registered this
803 * CPU because it is in the same boat. */
804 policy = cpufreq_cpu_get(cpu);
805 if (unlikely(policy)) {
806 cpufreq_cpu_put(policy);
807 cpufreq_debug_enable_ratelimit();
808 return 0;
810 #endif
812 if (!try_module_get(cpufreq_driver->owner)) {
813 ret = -EINVAL;
814 goto module_out;
817 policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL);
818 if (!policy) {
819 ret = -ENOMEM;
820 goto nomem_out;
823 policy->cpu = cpu;
824 policy->cpus = cpumask_of_cpu(cpu);
826 /* Initially set CPU itself as the policy_cpu */
827 per_cpu(policy_cpu, cpu) = cpu;
828 lock_policy_rwsem_write(cpu);
830 init_completion(&policy->kobj_unregister);
831 INIT_WORK(&policy->update, handle_update);
833 /* Set governor before ->init, so that driver could check it */
834 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
835 /* call driver. From then on the cpufreq must be able
836 * to accept all calls to ->verify and ->setpolicy for this CPU
838 ret = cpufreq_driver->init(policy);
839 if (ret) {
840 dprintk("initialization failed\n");
841 unlock_policy_rwsem_write(cpu);
842 goto err_out;
844 policy->user_policy.min = policy->cpuinfo.min_freq;
845 policy->user_policy.max = policy->cpuinfo.max_freq;
847 #ifdef CONFIG_SMP
849 #ifdef CONFIG_HOTPLUG_CPU
850 if (cpufreq_cpu_governor[cpu]){
851 policy->governor = cpufreq_cpu_governor[cpu];
852 dprintk("Restoring governor %s for cpu %d\n",
853 policy->governor->name, cpu);
855 #endif
857 for_each_cpu_mask(j, policy->cpus) {
858 if (cpu == j)
859 continue;
861 /* check for existing affected CPUs. They may not be aware
862 * of it due to CPU Hotplug.
864 managed_policy = cpufreq_cpu_get(j);
865 if (unlikely(managed_policy)) {
867 /* Set proper policy_cpu */
868 unlock_policy_rwsem_write(cpu);
869 per_cpu(policy_cpu, cpu) = managed_policy->cpu;
871 if (lock_policy_rwsem_write(cpu) < 0)
872 goto err_out_driver_exit;
874 spin_lock_irqsave(&cpufreq_driver_lock, flags);
875 managed_policy->cpus = policy->cpus;
876 cpufreq_cpu_data[cpu] = managed_policy;
877 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
879 dprintk("CPU already managed, adding link\n");
880 ret = sysfs_create_link(&sys_dev->kobj,
881 &managed_policy->kobj,
882 "cpufreq");
883 if (ret) {
884 unlock_policy_rwsem_write(cpu);
885 goto err_out_driver_exit;
888 cpufreq_debug_enable_ratelimit();
889 ret = 0;
890 unlock_policy_rwsem_write(cpu);
891 goto err_out_driver_exit; /* call driver->exit() */
894 #endif
895 memcpy(&new_policy, policy, sizeof(struct cpufreq_policy));
897 /* prepare interface data */
898 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq, &sys_dev->kobj,
899 "cpufreq");
900 if (ret) {
901 unlock_policy_rwsem_write(cpu);
902 goto err_out_driver_exit;
904 /* set up files for this cpu device */
905 drv_attr = cpufreq_driver->attr;
906 while ((drv_attr) && (*drv_attr)) {
907 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
908 if (ret) {
909 unlock_policy_rwsem_write(cpu);
910 goto err_out_driver_exit;
912 drv_attr++;
914 if (cpufreq_driver->get){
915 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
916 if (ret) {
917 unlock_policy_rwsem_write(cpu);
918 goto err_out_driver_exit;
921 if (cpufreq_driver->target){
922 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
923 if (ret) {
924 unlock_policy_rwsem_write(cpu);
925 goto err_out_driver_exit;
929 spin_lock_irqsave(&cpufreq_driver_lock, flags);
930 for_each_cpu_mask(j, policy->cpus) {
931 cpufreq_cpu_data[j] = policy;
932 per_cpu(policy_cpu, j) = policy->cpu;
934 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
936 /* symlink affected CPUs */
937 for_each_cpu_mask(j, policy->cpus) {
938 if (j == cpu)
939 continue;
940 if (!cpu_online(j))
941 continue;
943 dprintk("CPU %u already managed, adding link\n", j);
944 cpufreq_cpu_get(cpu);
945 cpu_sys_dev = get_cpu_sysdev(j);
946 ret = sysfs_create_link(&cpu_sys_dev->kobj, &policy->kobj,
947 "cpufreq");
948 if (ret) {
949 unlock_policy_rwsem_write(cpu);
950 goto err_out_unregister;
954 policy->governor = NULL; /* to assure that the starting sequence is
955 * run in cpufreq_set_policy */
957 /* set default policy */
958 ret = __cpufreq_set_policy(policy, &new_policy);
959 policy->user_policy.policy = policy->policy;
960 policy->user_policy.governor = policy->governor;
962 unlock_policy_rwsem_write(cpu);
964 if (ret) {
965 dprintk("setting policy failed\n");
966 goto err_out_unregister;
969 kobject_uevent(&policy->kobj, KOBJ_ADD);
970 module_put(cpufreq_driver->owner);
971 dprintk("initialization complete\n");
972 cpufreq_debug_enable_ratelimit();
974 return 0;
977 err_out_unregister:
978 spin_lock_irqsave(&cpufreq_driver_lock, flags);
979 for_each_cpu_mask(j, policy->cpus)
980 cpufreq_cpu_data[j] = NULL;
981 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
983 kobject_put(&policy->kobj);
984 wait_for_completion(&policy->kobj_unregister);
986 err_out_driver_exit:
987 if (cpufreq_driver->exit)
988 cpufreq_driver->exit(policy);
990 err_out:
991 kfree(policy);
993 nomem_out:
994 module_put(cpufreq_driver->owner);
995 module_out:
996 cpufreq_debug_enable_ratelimit();
997 return ret;
1002 * __cpufreq_remove_dev - remove a CPU device
1004 * Removes the cpufreq interface for a CPU device.
1005 * Caller should already have policy_rwsem in write mode for this CPU.
1006 * This routine frees the rwsem before returning.
1008 static int __cpufreq_remove_dev (struct sys_device * sys_dev)
1010 unsigned int cpu = sys_dev->id;
1011 unsigned long flags;
1012 struct cpufreq_policy *data;
1013 #ifdef CONFIG_SMP
1014 struct sys_device *cpu_sys_dev;
1015 unsigned int j;
1016 #endif
1018 cpufreq_debug_disable_ratelimit();
1019 dprintk("unregistering CPU %u\n", cpu);
1021 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1022 data = cpufreq_cpu_data[cpu];
1024 if (!data) {
1025 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1026 cpufreq_debug_enable_ratelimit();
1027 unlock_policy_rwsem_write(cpu);
1028 return -EINVAL;
1030 cpufreq_cpu_data[cpu] = NULL;
1033 #ifdef CONFIG_SMP
1034 /* if this isn't the CPU which is the parent of the kobj, we
1035 * only need to unlink, put and exit
1037 if (unlikely(cpu != data->cpu)) {
1038 dprintk("removing link\n");
1039 cpu_clear(cpu, data->cpus);
1040 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1041 sysfs_remove_link(&sys_dev->kobj, "cpufreq");
1042 cpufreq_cpu_put(data);
1043 cpufreq_debug_enable_ratelimit();
1044 unlock_policy_rwsem_write(cpu);
1045 return 0;
1047 #endif
1049 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
1051 if (!kobject_get(&data->kobj)) {
1052 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1053 cpufreq_debug_enable_ratelimit();
1054 unlock_policy_rwsem_write(cpu);
1055 return -EFAULT;
1058 =======
1059 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
1060 #ifdef CONFIG_SMP
1062 #ifdef CONFIG_HOTPLUG_CPU
1063 cpufreq_cpu_governor[cpu] = data->governor;
1064 #endif
1066 /* if we have other CPUs still registered, we need to unlink them,
1067 * or else wait_for_completion below will lock up. Clean the
1068 * cpufreq_cpu_data[] while holding the lock, and remove the sysfs
1069 * links afterwards.
1071 if (unlikely(cpus_weight(data->cpus) > 1)) {
1072 for_each_cpu_mask(j, data->cpus) {
1073 if (j == cpu)
1074 continue;
1075 cpufreq_cpu_data[j] = NULL;
1079 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1081 if (unlikely(cpus_weight(data->cpus) > 1)) {
1082 for_each_cpu_mask(j, data->cpus) {
1083 if (j == cpu)
1084 continue;
1085 dprintk("removing link for cpu %u\n", j);
1086 #ifdef CONFIG_HOTPLUG_CPU
1087 cpufreq_cpu_governor[j] = data->governor;
1088 #endif
1089 cpu_sys_dev = get_cpu_sysdev(j);
1090 sysfs_remove_link(&cpu_sys_dev->kobj, "cpufreq");
1091 cpufreq_cpu_put(data);
1094 #else
1095 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1096 #endif
1098 if (cpufreq_driver->target)
1099 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
1101 unlock_policy_rwsem_write(cpu);
1103 kobject_put(&data->kobj);
1105 /* we need to make sure that the underlying kobj is actually
1106 * not referenced anymore by anybody before we proceed with
1107 * unloading.
1109 dprintk("waiting for dropping of refcount\n");
1110 wait_for_completion(&data->kobj_unregister);
1111 dprintk("wait complete\n");
1113 if (cpufreq_driver->exit)
1114 cpufreq_driver->exit(data);
1116 kfree(data);
1118 cpufreq_debug_enable_ratelimit();
1119 return 0;
1123 static int cpufreq_remove_dev (struct sys_device * sys_dev)
1125 unsigned int cpu = sys_dev->id;
1126 int retval;
1128 if (cpu_is_offline(cpu))
1129 return 0;
1131 if (unlikely(lock_policy_rwsem_write(cpu)))
1132 BUG();
1134 retval = __cpufreq_remove_dev(sys_dev);
1135 return retval;
1139 static void handle_update(struct work_struct *work)
1141 struct cpufreq_policy *policy =
1142 container_of(work, struct cpufreq_policy, update);
1143 unsigned int cpu = policy->cpu;
1144 dprintk("handle_update for cpu %u called\n", cpu);
1145 cpufreq_update_policy(cpu);
1149 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're in deep trouble.
1150 * @cpu: cpu number
1151 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1152 * @new_freq: CPU frequency the CPU actually runs at
1154 * We adjust to current frequency first, and need to clean up later. So either call
1155 * to cpufreq_update_policy() or schedule handle_update()).
1157 static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1158 unsigned int new_freq)
1160 struct cpufreq_freqs freqs;
1162 dprintk("Warning: CPU frequency out of sync: cpufreq and timing "
1163 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1165 freqs.cpu = cpu;
1166 freqs.old = old_freq;
1167 freqs.new = new_freq;
1168 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1169 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
1174 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
1175 * @cpu: CPU number
1177 * This is the last known freq, without actually getting it from the driver.
1178 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1180 unsigned int cpufreq_quick_get(unsigned int cpu)
1182 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1183 unsigned int ret_freq = 0;
1185 if (policy) {
1186 ret_freq = policy->cur;
1187 cpufreq_cpu_put(policy);
1190 return (ret_freq);
1192 EXPORT_SYMBOL(cpufreq_quick_get);
1195 static unsigned int __cpufreq_get(unsigned int cpu)
1197 struct cpufreq_policy *policy = cpufreq_cpu_data[cpu];
1198 unsigned int ret_freq = 0;
1200 if (!cpufreq_driver->get)
1201 return (ret_freq);
1203 ret_freq = cpufreq_driver->get(cpu);
1205 if (ret_freq && policy->cur &&
1206 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1207 /* verify no discrepancy between actual and
1208 saved value exists */
1209 if (unlikely(ret_freq != policy->cur)) {
1210 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
1211 schedule_work(&policy->update);
1215 return (ret_freq);
1219 * cpufreq_get - get the current CPU frequency (in kHz)
1220 * @cpu: CPU number
1222 * Get the CPU current (static) CPU frequency
1224 unsigned int cpufreq_get(unsigned int cpu)
1226 unsigned int ret_freq = 0;
1227 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1229 if (!policy)
1230 goto out;
1232 if (unlikely(lock_policy_rwsem_read(cpu)))
1233 goto out_policy;
1235 ret_freq = __cpufreq_get(cpu);
1237 unlock_policy_rwsem_read(cpu);
1239 out_policy:
1240 cpufreq_cpu_put(policy);
1241 out:
1242 return (ret_freq);
1244 EXPORT_SYMBOL(cpufreq_get);
1248 * cpufreq_suspend - let the low level driver prepare for suspend
1251 static int cpufreq_suspend(struct sys_device * sysdev, pm_message_t pmsg)
1253 int cpu = sysdev->id;
1254 int ret = 0;
1255 unsigned int cur_freq = 0;
1256 struct cpufreq_policy *cpu_policy;
1258 dprintk("suspending cpu %u\n", cpu);
1260 if (!cpu_online(cpu))
1261 return 0;
1263 /* we may be lax here as interrupts are off. Nonetheless
1264 * we need to grab the correct cpu policy, as to check
1265 * whether we really run on this CPU.
1268 cpu_policy = cpufreq_cpu_get(cpu);
1269 if (!cpu_policy)
1270 return -EINVAL;
1272 /* only handle each CPU group once */
1273 if (unlikely(cpu_policy->cpu != cpu)) {
1274 cpufreq_cpu_put(cpu_policy);
1275 return 0;
1278 if (cpufreq_driver->suspend) {
1279 ret = cpufreq_driver->suspend(cpu_policy, pmsg);
1280 if (ret) {
1281 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
1282 "step on CPU %u\n", cpu_policy->cpu);
1283 cpufreq_cpu_put(cpu_policy);
1284 return ret;
1289 if (cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)
1290 goto out;
1292 if (cpufreq_driver->get)
1293 cur_freq = cpufreq_driver->get(cpu_policy->cpu);
1295 if (!cur_freq || !cpu_policy->cur) {
1296 printk(KERN_ERR "cpufreq: suspend failed to assert current "
1297 "frequency is what timing core thinks it is.\n");
1298 goto out;
1301 if (unlikely(cur_freq != cpu_policy->cur)) {
1302 struct cpufreq_freqs freqs;
1304 if (!(cpufreq_driver->flags & CPUFREQ_PM_NO_WARN))
1305 dprintk("Warning: CPU frequency is %u, "
1306 "cpufreq assumed %u kHz.\n",
1307 cur_freq, cpu_policy->cur);
1309 freqs.cpu = cpu;
1310 freqs.old = cpu_policy->cur;
1311 freqs.new = cur_freq;
1313 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
1314 CPUFREQ_SUSPENDCHANGE, &freqs);
1315 adjust_jiffies(CPUFREQ_SUSPENDCHANGE, &freqs);
1317 cpu_policy->cur = cur_freq;
1320 out:
1321 cpufreq_cpu_put(cpu_policy);
1322 return 0;
1326 * cpufreq_resume - restore proper CPU frequency handling after resume
1328 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
1329 * 2.) if ->target and !CPUFREQ_CONST_LOOPS: verify we're in sync
1330 * 3.) schedule call cpufreq_update_policy() ASAP as interrupts are
1331 * restored.
1333 static int cpufreq_resume(struct sys_device * sysdev)
1335 int cpu = sysdev->id;
1336 int ret = 0;
1337 struct cpufreq_policy *cpu_policy;
1339 dprintk("resuming cpu %u\n", cpu);
1341 if (!cpu_online(cpu))
1342 return 0;
1344 /* we may be lax here as interrupts are off. Nonetheless
1345 * we need to grab the correct cpu policy, as to check
1346 * whether we really run on this CPU.
1349 cpu_policy = cpufreq_cpu_get(cpu);
1350 if (!cpu_policy)
1351 return -EINVAL;
1353 /* only handle each CPU group once */
1354 if (unlikely(cpu_policy->cpu != cpu)) {
1355 cpufreq_cpu_put(cpu_policy);
1356 return 0;
1359 if (cpufreq_driver->resume) {
1360 ret = cpufreq_driver->resume(cpu_policy);
1361 if (ret) {
1362 printk(KERN_ERR "cpufreq: resume failed in ->resume "
1363 "step on CPU %u\n", cpu_policy->cpu);
1364 cpufreq_cpu_put(cpu_policy);
1365 return ret;
1369 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1370 unsigned int cur_freq = 0;
1372 if (cpufreq_driver->get)
1373 cur_freq = cpufreq_driver->get(cpu_policy->cpu);
1375 if (!cur_freq || !cpu_policy->cur) {
1376 printk(KERN_ERR "cpufreq: resume failed to assert "
1377 "current frequency is what timing core "
1378 "thinks it is.\n");
1379 goto out;
1382 if (unlikely(cur_freq != cpu_policy->cur)) {
1383 struct cpufreq_freqs freqs;
1385 if (!(cpufreq_driver->flags & CPUFREQ_PM_NO_WARN))
1386 dprintk("Warning: CPU frequency "
1387 "is %u, cpufreq assumed %u kHz.\n",
1388 cur_freq, cpu_policy->cur);
1390 freqs.cpu = cpu;
1391 freqs.old = cpu_policy->cur;
1392 freqs.new = cur_freq;
1394 srcu_notifier_call_chain(
1395 &cpufreq_transition_notifier_list,
1396 CPUFREQ_RESUMECHANGE, &freqs);
1397 adjust_jiffies(CPUFREQ_RESUMECHANGE, &freqs);
1399 cpu_policy->cur = cur_freq;
1403 out:
1404 schedule_work(&cpu_policy->update);
1405 cpufreq_cpu_put(cpu_policy);
1406 return ret;
1409 static struct sysdev_driver cpufreq_sysdev_driver = {
1410 .add = cpufreq_add_dev,
1411 .remove = cpufreq_remove_dev,
1412 .suspend = cpufreq_suspend,
1413 .resume = cpufreq_resume,
1417 /*********************************************************************
1418 * NOTIFIER LISTS INTERFACE *
1419 *********************************************************************/
1422 * cpufreq_register_notifier - register a driver with cpufreq
1423 * @nb: notifier function to register
1424 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1426 * Add a driver to one of two lists: either a list of drivers that
1427 * are notified about clock rate changes (once before and once after
1428 * the transition), or a list of drivers that are notified about
1429 * changes in cpufreq policy.
1431 * This function may sleep, and has the same return conditions as
1432 * blocking_notifier_chain_register.
1434 int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1436 int ret;
1438 switch (list) {
1439 case CPUFREQ_TRANSITION_NOTIFIER:
1440 ret = srcu_notifier_chain_register(
1441 &cpufreq_transition_notifier_list, nb);
1442 break;
1443 case CPUFREQ_POLICY_NOTIFIER:
1444 ret = blocking_notifier_chain_register(
1445 &cpufreq_policy_notifier_list, nb);
1446 break;
1447 default:
1448 ret = -EINVAL;
1451 return ret;
1453 EXPORT_SYMBOL(cpufreq_register_notifier);
1457 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1458 * @nb: notifier block to be unregistered
1459 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1461 * Remove a driver from the CPU frequency notifier list.
1463 * This function may sleep, and has the same return conditions as
1464 * blocking_notifier_chain_unregister.
1466 int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1468 int ret;
1470 switch (list) {
1471 case CPUFREQ_TRANSITION_NOTIFIER:
1472 ret = srcu_notifier_chain_unregister(
1473 &cpufreq_transition_notifier_list, nb);
1474 break;
1475 case CPUFREQ_POLICY_NOTIFIER:
1476 ret = blocking_notifier_chain_unregister(
1477 &cpufreq_policy_notifier_list, nb);
1478 break;
1479 default:
1480 ret = -EINVAL;
1483 return ret;
1485 EXPORT_SYMBOL(cpufreq_unregister_notifier);
1488 /*********************************************************************
1489 * GOVERNORS *
1490 *********************************************************************/
1493 int __cpufreq_driver_target(struct cpufreq_policy *policy,
1494 unsigned int target_freq,
1495 unsigned int relation)
1497 int retval = -EINVAL;
1499 dprintk("target for CPU %u: %u kHz, relation %u\n", policy->cpu,
1500 target_freq, relation);
1501 if (cpu_online(policy->cpu) && cpufreq_driver->target)
1502 retval = cpufreq_driver->target(policy, target_freq, relation);
1504 return retval;
1506 EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1508 int cpufreq_driver_target(struct cpufreq_policy *policy,
1509 unsigned int target_freq,
1510 unsigned int relation)
1512 int ret;
1514 policy = cpufreq_cpu_get(policy->cpu);
1515 if (!policy)
1516 return -EINVAL;
1518 if (unlikely(lock_policy_rwsem_write(policy->cpu)))
1519 return -EINVAL;
1521 ret = __cpufreq_driver_target(policy, target_freq, relation);
1523 unlock_policy_rwsem_write(policy->cpu);
1525 cpufreq_cpu_put(policy);
1526 return ret;
1528 EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1530 int __cpufreq_driver_getavg(struct cpufreq_policy *policy)
1532 int ret = 0;
1534 policy = cpufreq_cpu_get(policy->cpu);
1535 if (!policy)
1536 return -EINVAL;
1538 if (cpu_online(policy->cpu) && cpufreq_driver->getavg)
1539 ret = cpufreq_driver->getavg(policy->cpu);
1541 cpufreq_cpu_put(policy);
1542 return ret;
1544 EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg);
1547 * when "event" is CPUFREQ_GOV_LIMITS
1550 static int __cpufreq_governor(struct cpufreq_policy *policy,
1551 unsigned int event)
1553 int ret;
1555 /* Only must be defined when default governor is known to have latency
1556 restrictions, like e.g. conservative or ondemand.
1557 That this is the case is already ensured in Kconfig
1559 #ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1560 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1561 #else
1562 struct cpufreq_governor *gov = NULL;
1563 #endif
1565 if (policy->governor->max_transition_latency &&
1566 policy->cpuinfo.transition_latency >
1567 policy->governor->max_transition_latency) {
1568 if (!gov)
1569 return -EINVAL;
1570 else {
1571 printk(KERN_WARNING "%s governor failed, too long"
1572 " transition latency of HW, fallback"
1573 " to %s governor\n",
1574 policy->governor->name,
1575 gov->name);
1576 policy->governor = gov;
1580 if (!try_module_get(policy->governor->owner))
1581 return -EINVAL;
1583 dprintk("__cpufreq_governor for CPU %u, event %u\n",
1584 policy->cpu, event);
1585 ret = policy->governor->governor(policy, event);
1587 /* we keep one module reference alive for
1588 each CPU governed by this CPU */
1589 if ((event != CPUFREQ_GOV_START) || ret)
1590 module_put(policy->governor->owner);
1591 if ((event == CPUFREQ_GOV_STOP) && !ret)
1592 module_put(policy->governor->owner);
1594 return ret;
1598 int cpufreq_register_governor(struct cpufreq_governor *governor)
1600 int err;
1602 if (!governor)
1603 return -EINVAL;
1605 mutex_lock(&cpufreq_governor_mutex);
1607 err = -EBUSY;
1608 if (__find_governor(governor->name) == NULL) {
1609 err = 0;
1610 list_add(&governor->governor_list, &cpufreq_governor_list);
1613 mutex_unlock(&cpufreq_governor_mutex);
1614 return err;
1616 EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1619 void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1621 if (!governor)
1622 return;
1624 mutex_lock(&cpufreq_governor_mutex);
1625 list_del(&governor->governor_list);
1626 mutex_unlock(&cpufreq_governor_mutex);
1627 return;
1629 EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1633 /*********************************************************************
1634 * POLICY INTERFACE *
1635 *********************************************************************/
1638 * cpufreq_get_policy - get the current cpufreq_policy
1639 * @policy: struct cpufreq_policy into which the current cpufreq_policy is written
1641 * Reads the current cpufreq policy.
1643 int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1645 struct cpufreq_policy *cpu_policy;
1646 if (!policy)
1647 return -EINVAL;
1649 cpu_policy = cpufreq_cpu_get(cpu);
1650 if (!cpu_policy)
1651 return -EINVAL;
1653 memcpy(policy, cpu_policy, sizeof(struct cpufreq_policy));
1655 cpufreq_cpu_put(cpu_policy);
1656 return 0;
1658 EXPORT_SYMBOL(cpufreq_get_policy);
1662 * data : current policy.
1663 * policy : policy to be set.
1665 static int __cpufreq_set_policy(struct cpufreq_policy *data,
1666 struct cpufreq_policy *policy)
1668 int ret = 0;
1670 cpufreq_debug_disable_ratelimit();
1671 dprintk("setting new policy for CPU %u: %u - %u kHz\n", policy->cpu,
1672 policy->min, policy->max);
1674 memcpy(&policy->cpuinfo, &data->cpuinfo,
1675 sizeof(struct cpufreq_cpuinfo));
1677 if (policy->min > data->max || policy->max < data->min) {
1678 ret = -EINVAL;
1679 goto error_out;
1682 /* verify the cpu speed can be set within this limit */
1683 ret = cpufreq_driver->verify(policy);
1684 if (ret)
1685 goto error_out;
1687 /* adjust if necessary - all reasons */
1688 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1689 CPUFREQ_ADJUST, policy);
1691 /* adjust if necessary - hardware incompatibility*/
1692 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1693 CPUFREQ_INCOMPATIBLE, policy);
1695 /* verify the cpu speed can be set within this limit,
1696 which might be different to the first one */
1697 ret = cpufreq_driver->verify(policy);
1698 if (ret)
1699 goto error_out;
1701 /* notification of the new policy */
1702 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1703 CPUFREQ_NOTIFY, policy);
1705 data->min = policy->min;
1706 data->max = policy->max;
1708 dprintk("new min and max freqs are %u - %u kHz\n",
1709 data->min, data->max);
1711 if (cpufreq_driver->setpolicy) {
1712 data->policy = policy->policy;
1713 dprintk("setting range\n");
1714 ret = cpufreq_driver->setpolicy(policy);
1715 } else {
1716 if (policy->governor != data->governor) {
1717 /* save old, working values */
1718 struct cpufreq_governor *old_gov = data->governor;
1720 dprintk("governor switch\n");
1722 /* end old governor */
1723 if (data->governor)
1724 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
1726 /* start new governor */
1727 data->governor = policy->governor;
1728 if (__cpufreq_governor(data, CPUFREQ_GOV_START)) {
1729 /* new governor failed, so re-start old one */
1730 dprintk("starting governor %s failed\n",
1731 data->governor->name);
1732 if (old_gov) {
1733 data->governor = old_gov;
1734 __cpufreq_governor(data,
1735 CPUFREQ_GOV_START);
1737 ret = -EINVAL;
1738 goto error_out;
1740 /* might be a policy change, too, so fall through */
1742 dprintk("governor: change or update limits\n");
1743 __cpufreq_governor(data, CPUFREQ_GOV_LIMITS);
1746 error_out:
1747 cpufreq_debug_enable_ratelimit();
1748 return ret;
1752 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1753 * @cpu: CPU which shall be re-evaluated
1755 * Usefull for policy notifiers which have different necessities
1756 * at different times.
1758 int cpufreq_update_policy(unsigned int cpu)
1760 struct cpufreq_policy *data = cpufreq_cpu_get(cpu);
1761 struct cpufreq_policy policy;
1762 int ret = 0;
1764 if (!data)
1765 return -ENODEV;
1767 if (unlikely(lock_policy_rwsem_write(cpu)))
1768 return -EINVAL;
1770 dprintk("updating policy for CPU %u\n", cpu);
1771 memcpy(&policy, data, sizeof(struct cpufreq_policy));
1772 policy.min = data->user_policy.min;
1773 policy.max = data->user_policy.max;
1774 policy.policy = data->user_policy.policy;
1775 policy.governor = data->user_policy.governor;
1777 /* BIOS might change freq behind our back
1778 -> ask driver for current freq and notify governors about a change */
1779 if (cpufreq_driver->get) {
1780 policy.cur = cpufreq_driver->get(cpu);
1781 if (!data->cur) {
1782 dprintk("Driver did not initialize current freq");
1783 data->cur = policy.cur;
1784 } else {
1785 if (data->cur != policy.cur)
1786 cpufreq_out_of_sync(cpu, data->cur,
1787 policy.cur);
1791 ret = __cpufreq_set_policy(data, &policy);
1793 unlock_policy_rwsem_write(cpu);
1795 cpufreq_cpu_put(data);
1796 return ret;
1798 EXPORT_SYMBOL(cpufreq_update_policy);
1800 static int __cpuinit cpufreq_cpu_callback(struct notifier_block *nfb,
1801 unsigned long action, void *hcpu)
1803 unsigned int cpu = (unsigned long)hcpu;
1804 struct sys_device *sys_dev;
1806 sys_dev = get_cpu_sysdev(cpu);
1807 if (sys_dev) {
1808 switch (action) {
1809 case CPU_ONLINE:
1810 case CPU_ONLINE_FROZEN:
1811 cpufreq_add_dev(sys_dev);
1812 break;
1813 case CPU_DOWN_PREPARE:
1814 case CPU_DOWN_PREPARE_FROZEN:
1815 if (unlikely(lock_policy_rwsem_write(cpu)))
1816 BUG();
1818 __cpufreq_remove_dev(sys_dev);
1819 break;
1820 case CPU_DOWN_FAILED:
1821 case CPU_DOWN_FAILED_FROZEN:
1822 cpufreq_add_dev(sys_dev);
1823 break;
1826 return NOTIFY_OK;
1829 <<<<<<< HEAD:drivers/cpufreq/cpufreq.c
1830 static struct notifier_block __cpuinitdata cpufreq_cpu_notifier =
1831 =======
1832 static struct notifier_block __refdata cpufreq_cpu_notifier =
1833 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/cpufreq/cpufreq.c
1835 .notifier_call = cpufreq_cpu_callback,
1838 /*********************************************************************
1839 * REGISTER / UNREGISTER CPUFREQ DRIVER *
1840 *********************************************************************/
1843 * cpufreq_register_driver - register a CPU Frequency driver
1844 * @driver_data: A struct cpufreq_driver containing the values#
1845 * submitted by the CPU Frequency driver.
1847 * Registers a CPU Frequency driver to this core code. This code
1848 * returns zero on success, -EBUSY when another driver got here first
1849 * (and isn't unregistered in the meantime).
1852 int cpufreq_register_driver(struct cpufreq_driver *driver_data)
1854 unsigned long flags;
1855 int ret;
1857 if (!driver_data || !driver_data->verify || !driver_data->init ||
1858 ((!driver_data->setpolicy) && (!driver_data->target)))
1859 return -EINVAL;
1861 dprintk("trying to register driver %s\n", driver_data->name);
1863 if (driver_data->setpolicy)
1864 driver_data->flags |= CPUFREQ_CONST_LOOPS;
1866 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1867 if (cpufreq_driver) {
1868 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1869 return -EBUSY;
1871 cpufreq_driver = driver_data;
1872 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1874 ret = sysdev_driver_register(&cpu_sysdev_class,&cpufreq_sysdev_driver);
1876 if ((!ret) && !(cpufreq_driver->flags & CPUFREQ_STICKY)) {
1877 int i;
1878 ret = -ENODEV;
1880 /* check for at least one working CPU */
1881 for (i=0; i<NR_CPUS; i++)
1882 if (cpufreq_cpu_data[i])
1883 ret = 0;
1885 /* if all ->init() calls failed, unregister */
1886 if (ret) {
1887 dprintk("no CPU initialized for driver %s\n",
1888 driver_data->name);
1889 sysdev_driver_unregister(&cpu_sysdev_class,
1890 &cpufreq_sysdev_driver);
1892 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1893 cpufreq_driver = NULL;
1894 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1898 if (!ret) {
1899 register_hotcpu_notifier(&cpufreq_cpu_notifier);
1900 dprintk("driver %s up and running\n", driver_data->name);
1901 cpufreq_debug_enable_ratelimit();
1904 return (ret);
1906 EXPORT_SYMBOL_GPL(cpufreq_register_driver);
1910 * cpufreq_unregister_driver - unregister the current CPUFreq driver
1912 * Unregister the current CPUFreq driver. Only call this if you have
1913 * the right to do so, i.e. if you have succeeded in initialising before!
1914 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
1915 * currently not initialised.
1917 int cpufreq_unregister_driver(struct cpufreq_driver *driver)
1919 unsigned long flags;
1921 cpufreq_debug_disable_ratelimit();
1923 if (!cpufreq_driver || (driver != cpufreq_driver)) {
1924 cpufreq_debug_enable_ratelimit();
1925 return -EINVAL;
1928 dprintk("unregistering driver %s\n", driver->name);
1930 sysdev_driver_unregister(&cpu_sysdev_class, &cpufreq_sysdev_driver);
1931 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
1933 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1934 cpufreq_driver = NULL;
1935 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1937 return 0;
1939 EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
1941 static int __init cpufreq_core_init(void)
1943 int cpu;
1945 for_each_possible_cpu(cpu) {
1946 per_cpu(policy_cpu, cpu) = -1;
1947 init_rwsem(&per_cpu(cpu_policy_rwsem, cpu));
1949 return 0;
1952 core_initcall(cpufreq_core_init);