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, \
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 DEFINE_PER_CPU(struct cpufreq_policy
*, cpufreq_cpu_data
);
42 #ifdef CONFIG_HOTPLUG_CPU
43 /* This one keeps track of the previously set governor of a removed CPU */
44 static DEFINE_PER_CPU(char[CPUFREQ_NAME_LEN
], cpufreq_cpu_governor
);
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.
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 * - Lock should not be held across
65 * __cpufreq_governor(data, CPUFREQ_GOV_STOP);
67 static DEFINE_PER_CPU(int, cpufreq_policy_cpu
);
68 static DEFINE_PER_CPU(struct rw_semaphore
, cpu_policy_rwsem
);
70 #define lock_policy_rwsem(mode, cpu) \
71 int lock_policy_rwsem_##mode \
74 int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu); \
75 BUG_ON(policy_cpu == -1); \
76 down_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \
77 if (unlikely(!cpu_online(cpu))) { \
78 up_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \
85 lock_policy_rwsem(read
, cpu
);
86 EXPORT_SYMBOL_GPL(lock_policy_rwsem_read
);
88 lock_policy_rwsem(write
, cpu
);
89 EXPORT_SYMBOL_GPL(lock_policy_rwsem_write
);
91 void unlock_policy_rwsem_read(int cpu
)
93 int policy_cpu
= per_cpu(cpufreq_policy_cpu
, cpu
);
94 BUG_ON(policy_cpu
== -1);
95 up_read(&per_cpu(cpu_policy_rwsem
, policy_cpu
));
97 EXPORT_SYMBOL_GPL(unlock_policy_rwsem_read
);
99 void unlock_policy_rwsem_write(int cpu
)
101 int policy_cpu
= per_cpu(cpufreq_policy_cpu
, cpu
);
102 BUG_ON(policy_cpu
== -1);
103 up_write(&per_cpu(cpu_policy_rwsem
, policy_cpu
));
105 EXPORT_SYMBOL_GPL(unlock_policy_rwsem_write
);
108 /* internal prototypes */
109 static int __cpufreq_governor(struct cpufreq_policy
*policy
,
111 static unsigned int __cpufreq_get(unsigned int cpu
);
112 static void handle_update(struct work_struct
*work
);
115 * Two notifier lists: the "policy" list is involved in the
116 * validation process for a new CPU frequency policy; the
117 * "transition" list for kernel code that needs to handle
118 * changes to devices when the CPU clock speed changes.
119 * The mutex locks both lists.
121 static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list
);
122 static struct srcu_notifier_head cpufreq_transition_notifier_list
;
124 static bool init_cpufreq_transition_notifier_list_called
;
125 static int __init
init_cpufreq_transition_notifier_list(void)
127 srcu_init_notifier_head(&cpufreq_transition_notifier_list
);
128 init_cpufreq_transition_notifier_list_called
= true;
131 pure_initcall(init_cpufreq_transition_notifier_list
);
133 static LIST_HEAD(cpufreq_governor_list
);
134 static DEFINE_MUTEX(cpufreq_governor_mutex
);
136 struct cpufreq_policy
*cpufreq_cpu_get(unsigned int cpu
)
138 struct cpufreq_policy
*data
;
141 if (cpu
>= nr_cpu_ids
)
144 /* get the cpufreq driver */
145 spin_lock_irqsave(&cpufreq_driver_lock
, flags
);
150 if (!try_module_get(cpufreq_driver
->owner
))
155 data
= per_cpu(cpufreq_cpu_data
, cpu
);
158 goto err_out_put_module
;
160 if (!kobject_get(&data
->kobj
))
161 goto err_out_put_module
;
163 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
167 module_put(cpufreq_driver
->owner
);
169 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
173 EXPORT_SYMBOL_GPL(cpufreq_cpu_get
);
176 void cpufreq_cpu_put(struct cpufreq_policy
*data
)
178 kobject_put(&data
->kobj
);
179 module_put(cpufreq_driver
->owner
);
181 EXPORT_SYMBOL_GPL(cpufreq_cpu_put
);
184 /*********************************************************************
185 * UNIFIED DEBUG HELPERS *
186 *********************************************************************/
187 #ifdef CONFIG_CPU_FREQ_DEBUG
189 /* what part(s) of the CPUfreq subsystem are debugged? */
190 static unsigned int debug
;
192 /* is the debug output ratelimit'ed using printk_ratelimit? User can
193 * set or modify this value.
195 static unsigned int debug_ratelimit
= 1;
197 /* is the printk_ratelimit'ing enabled? It's enabled after a successful
198 * loading of a cpufreq driver, temporarily disabled when a new policy
199 * is set, and disabled upon cpufreq driver removal
201 static unsigned int disable_ratelimit
= 1;
202 static DEFINE_SPINLOCK(disable_ratelimit_lock
);
204 static void cpufreq_debug_enable_ratelimit(void)
208 spin_lock_irqsave(&disable_ratelimit_lock
, flags
);
209 if (disable_ratelimit
)
211 spin_unlock_irqrestore(&disable_ratelimit_lock
, flags
);
214 static void cpufreq_debug_disable_ratelimit(void)
218 spin_lock_irqsave(&disable_ratelimit_lock
, flags
);
220 spin_unlock_irqrestore(&disable_ratelimit_lock
, flags
);
223 void cpufreq_debug_printk(unsigned int type
, const char *prefix
,
224 const char *fmt
, ...)
233 spin_lock_irqsave(&disable_ratelimit_lock
, flags
);
234 if (!disable_ratelimit
&& debug_ratelimit
235 && !printk_ratelimit()) {
236 spin_unlock_irqrestore(&disable_ratelimit_lock
, flags
);
239 spin_unlock_irqrestore(&disable_ratelimit_lock
, flags
);
241 len
= snprintf(s
, 256, KERN_DEBUG
"%s: ", prefix
);
244 len
+= vsnprintf(&s
[len
], (256 - len
), fmt
, args
);
252 EXPORT_SYMBOL(cpufreq_debug_printk
);
255 module_param(debug
, uint
, 0644);
256 MODULE_PARM_DESC(debug
, "CPUfreq debugging: add 1 to debug core,"
257 " 2 to debug drivers, and 4 to debug governors.");
259 module_param(debug_ratelimit
, uint
, 0644);
260 MODULE_PARM_DESC(debug_ratelimit
, "CPUfreq debugging:"
261 " set to 0 to disable ratelimiting.");
263 #else /* !CONFIG_CPU_FREQ_DEBUG */
265 static inline void cpufreq_debug_enable_ratelimit(void) { return; }
266 static inline void cpufreq_debug_disable_ratelimit(void) { return; }
268 #endif /* CONFIG_CPU_FREQ_DEBUG */
271 /*********************************************************************
272 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
273 *********************************************************************/
276 * adjust_jiffies - adjust the system "loops_per_jiffy"
278 * This function alters the system "loops_per_jiffy" for the clock
279 * speed change. Note that loops_per_jiffy cannot be updated on SMP
280 * systems as each CPU might be scaled differently. So, use the arch
281 * per-CPU loops_per_jiffy value wherever possible.
284 static unsigned long l_p_j_ref
;
285 static unsigned int l_p_j_ref_freq
;
287 static void adjust_jiffies(unsigned long val
, struct cpufreq_freqs
*ci
)
289 if (ci
->flags
& CPUFREQ_CONST_LOOPS
)
292 if (!l_p_j_ref_freq
) {
293 l_p_j_ref
= loops_per_jiffy
;
294 l_p_j_ref_freq
= ci
->old
;
295 dprintk("saving %lu as reference value for loops_per_jiffy; "
296 "freq is %u kHz\n", l_p_j_ref
, l_p_j_ref_freq
);
298 if ((val
== CPUFREQ_PRECHANGE
&& ci
->old
< ci
->new) ||
299 (val
== CPUFREQ_POSTCHANGE
&& ci
->old
> ci
->new) ||
300 (val
== CPUFREQ_RESUMECHANGE
|| val
== CPUFREQ_SUSPENDCHANGE
)) {
301 loops_per_jiffy
= cpufreq_scale(l_p_j_ref
, l_p_j_ref_freq
,
303 dprintk("scaling loops_per_jiffy to %lu "
304 "for frequency %u kHz\n", loops_per_jiffy
, ci
->new);
308 static inline void adjust_jiffies(unsigned long val
, struct cpufreq_freqs
*ci
)
316 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
317 * on frequency transition.
319 * This function calls the transition notifiers and the "adjust_jiffies"
320 * function. It is called twice on all CPU frequency changes that have
323 void cpufreq_notify_transition(struct cpufreq_freqs
*freqs
, unsigned int state
)
325 struct cpufreq_policy
*policy
;
327 BUG_ON(irqs_disabled());
329 freqs
->flags
= cpufreq_driver
->flags
;
330 dprintk("notification %u of frequency transition to %u kHz\n",
333 policy
= per_cpu(cpufreq_cpu_data
, freqs
->cpu
);
336 case CPUFREQ_PRECHANGE
:
337 /* detect if the driver reported a value as "old frequency"
338 * which is not equal to what the cpufreq core thinks is
341 if (!(cpufreq_driver
->flags
& CPUFREQ_CONST_LOOPS
)) {
342 if ((policy
) && (policy
->cpu
== freqs
->cpu
) &&
343 (policy
->cur
) && (policy
->cur
!= freqs
->old
)) {
344 dprintk("Warning: CPU frequency is"
345 " %u, cpufreq assumed %u kHz.\n",
346 freqs
->old
, policy
->cur
);
347 freqs
->old
= policy
->cur
;
350 srcu_notifier_call_chain(&cpufreq_transition_notifier_list
,
351 CPUFREQ_PRECHANGE
, freqs
);
352 adjust_jiffies(CPUFREQ_PRECHANGE
, freqs
);
355 case CPUFREQ_POSTCHANGE
:
356 adjust_jiffies(CPUFREQ_POSTCHANGE
, freqs
);
357 srcu_notifier_call_chain(&cpufreq_transition_notifier_list
,
358 CPUFREQ_POSTCHANGE
, freqs
);
359 if (likely(policy
) && likely(policy
->cpu
== freqs
->cpu
))
360 policy
->cur
= freqs
->new;
364 EXPORT_SYMBOL_GPL(cpufreq_notify_transition
);
368 /*********************************************************************
370 *********************************************************************/
372 static struct cpufreq_governor
*__find_governor(const char *str_governor
)
374 struct cpufreq_governor
*t
;
376 list_for_each_entry(t
, &cpufreq_governor_list
, governor_list
)
377 if (!strnicmp(str_governor
, t
->name
, CPUFREQ_NAME_LEN
))
384 * cpufreq_parse_governor - parse a governor string
386 static int cpufreq_parse_governor(char *str_governor
, unsigned int *policy
,
387 struct cpufreq_governor
**governor
)
394 if (cpufreq_driver
->setpolicy
) {
395 if (!strnicmp(str_governor
, "performance", CPUFREQ_NAME_LEN
)) {
396 *policy
= CPUFREQ_POLICY_PERFORMANCE
;
398 } else if (!strnicmp(str_governor
, "powersave",
400 *policy
= CPUFREQ_POLICY_POWERSAVE
;
403 } else if (cpufreq_driver
->target
) {
404 struct cpufreq_governor
*t
;
406 mutex_lock(&cpufreq_governor_mutex
);
408 t
= __find_governor(str_governor
);
411 char *name
= kasprintf(GFP_KERNEL
, "cpufreq_%s",
417 mutex_unlock(&cpufreq_governor_mutex
);
418 ret
= request_module("%s", name
);
419 mutex_lock(&cpufreq_governor_mutex
);
422 t
= __find_governor(str_governor
);
433 mutex_unlock(&cpufreq_governor_mutex
);
441 * cpufreq_per_cpu_attr_read() / show_##file_name() -
442 * print out cpufreq information
444 * Write out information from cpufreq_driver->policy[cpu]; object must be
448 #define show_one(file_name, object) \
449 static ssize_t show_##file_name \
450 (struct cpufreq_policy *policy, char *buf) \
452 return sprintf(buf, "%u\n", policy->object); \
455 show_one(cpuinfo_min_freq
, cpuinfo
.min_freq
);
456 show_one(cpuinfo_max_freq
, cpuinfo
.max_freq
);
457 show_one(cpuinfo_transition_latency
, cpuinfo
.transition_latency
);
458 show_one(scaling_min_freq
, min
);
459 show_one(scaling_max_freq
, max
);
460 show_one(scaling_cur_freq
, cur
);
462 static int __cpufreq_set_policy(struct cpufreq_policy
*data
,
463 struct cpufreq_policy
*policy
);
466 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
468 #define store_one(file_name, object) \
469 static ssize_t store_##file_name \
470 (struct cpufreq_policy *policy, const char *buf, size_t count) \
472 unsigned int ret = -EINVAL; \
473 struct cpufreq_policy new_policy; \
475 ret = cpufreq_get_policy(&new_policy, policy->cpu); \
479 ret = sscanf(buf, "%u", &new_policy.object); \
483 ret = __cpufreq_set_policy(policy, &new_policy); \
484 policy->user_policy.object = policy->object; \
486 return ret ? ret : count; \
489 store_one(scaling_min_freq
, min
);
490 store_one(scaling_max_freq
, max
);
493 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
495 static ssize_t
show_cpuinfo_cur_freq(struct cpufreq_policy
*policy
,
498 unsigned int cur_freq
= __cpufreq_get(policy
->cpu
);
500 return sprintf(buf
, "<unknown>");
501 return sprintf(buf
, "%u\n", cur_freq
);
506 * show_scaling_governor - show the current policy for the specified CPU
508 static ssize_t
show_scaling_governor(struct cpufreq_policy
*policy
, char *buf
)
510 if (policy
->policy
== CPUFREQ_POLICY_POWERSAVE
)
511 return sprintf(buf
, "powersave\n");
512 else if (policy
->policy
== CPUFREQ_POLICY_PERFORMANCE
)
513 return sprintf(buf
, "performance\n");
514 else if (policy
->governor
)
515 return scnprintf(buf
, CPUFREQ_NAME_LEN
, "%s\n",
516 policy
->governor
->name
);
522 * store_scaling_governor - store policy for the specified CPU
524 static ssize_t
store_scaling_governor(struct cpufreq_policy
*policy
,
525 const char *buf
, size_t count
)
527 unsigned int ret
= -EINVAL
;
528 char str_governor
[16];
529 struct cpufreq_policy new_policy
;
531 ret
= cpufreq_get_policy(&new_policy
, policy
->cpu
);
535 ret
= sscanf(buf
, "%15s", str_governor
);
539 if (cpufreq_parse_governor(str_governor
, &new_policy
.policy
,
540 &new_policy
.governor
))
543 /* Do not use cpufreq_set_policy here or the user_policy.max
544 will be wrongly overridden */
545 ret
= __cpufreq_set_policy(policy
, &new_policy
);
547 policy
->user_policy
.policy
= policy
->policy
;
548 policy
->user_policy
.governor
= policy
->governor
;
557 * show_scaling_driver - show the cpufreq driver currently loaded
559 static ssize_t
show_scaling_driver(struct cpufreq_policy
*policy
, char *buf
)
561 return scnprintf(buf
, CPUFREQ_NAME_LEN
, "%s\n", cpufreq_driver
->name
);
565 * show_scaling_available_governors - show the available CPUfreq governors
567 static ssize_t
show_scaling_available_governors(struct cpufreq_policy
*policy
,
571 struct cpufreq_governor
*t
;
573 if (!cpufreq_driver
->target
) {
574 i
+= sprintf(buf
, "performance powersave");
578 list_for_each_entry(t
, &cpufreq_governor_list
, governor_list
) {
579 if (i
>= (ssize_t
) ((PAGE_SIZE
/ sizeof(char))
580 - (CPUFREQ_NAME_LEN
+ 2)))
582 i
+= scnprintf(&buf
[i
], CPUFREQ_NAME_LEN
, "%s ", t
->name
);
585 i
+= sprintf(&buf
[i
], "\n");
589 static ssize_t
show_cpus(const struct cpumask
*mask
, char *buf
)
594 for_each_cpu(cpu
, mask
) {
596 i
+= scnprintf(&buf
[i
], (PAGE_SIZE
- i
- 2), " ");
597 i
+= scnprintf(&buf
[i
], (PAGE_SIZE
- i
- 2), "%u", cpu
);
598 if (i
>= (PAGE_SIZE
- 5))
601 i
+= sprintf(&buf
[i
], "\n");
606 * show_related_cpus - show the CPUs affected by each transition even if
607 * hw coordination is in use
609 static ssize_t
show_related_cpus(struct cpufreq_policy
*policy
, char *buf
)
611 if (cpumask_empty(policy
->related_cpus
))
612 return show_cpus(policy
->cpus
, buf
);
613 return show_cpus(policy
->related_cpus
, buf
);
617 * show_affected_cpus - show the CPUs affected by each transition
619 static ssize_t
show_affected_cpus(struct cpufreq_policy
*policy
, char *buf
)
621 return show_cpus(policy
->cpus
, buf
);
624 static ssize_t
store_scaling_setspeed(struct cpufreq_policy
*policy
,
625 const char *buf
, size_t count
)
627 unsigned int freq
= 0;
630 if (!policy
->governor
|| !policy
->governor
->store_setspeed
)
633 ret
= sscanf(buf
, "%u", &freq
);
637 policy
->governor
->store_setspeed(policy
, freq
);
642 static ssize_t
show_scaling_setspeed(struct cpufreq_policy
*policy
, char *buf
)
644 if (!policy
->governor
|| !policy
->governor
->show_setspeed
)
645 return sprintf(buf
, "<unsupported>\n");
647 return policy
->governor
->show_setspeed(policy
, buf
);
651 * show_scaling_driver - show the current cpufreq HW/BIOS limitation
653 static ssize_t
show_bios_limit(struct cpufreq_policy
*policy
, char *buf
)
657 if (cpufreq_driver
->bios_limit
) {
658 ret
= cpufreq_driver
->bios_limit(policy
->cpu
, &limit
);
660 return sprintf(buf
, "%u\n", limit
);
662 return sprintf(buf
, "%u\n", policy
->cpuinfo
.max_freq
);
665 cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq
, 0400);
666 cpufreq_freq_attr_ro(cpuinfo_min_freq
);
667 cpufreq_freq_attr_ro(cpuinfo_max_freq
);
668 cpufreq_freq_attr_ro(cpuinfo_transition_latency
);
669 cpufreq_freq_attr_ro(scaling_available_governors
);
670 cpufreq_freq_attr_ro(scaling_driver
);
671 cpufreq_freq_attr_ro(scaling_cur_freq
);
672 cpufreq_freq_attr_ro(bios_limit
);
673 cpufreq_freq_attr_ro(related_cpus
);
674 cpufreq_freq_attr_ro(affected_cpus
);
675 cpufreq_freq_attr_rw(scaling_min_freq
);
676 cpufreq_freq_attr_rw(scaling_max_freq
);
677 cpufreq_freq_attr_rw(scaling_governor
);
678 cpufreq_freq_attr_rw(scaling_setspeed
);
680 static struct attribute
*default_attrs
[] = {
681 &cpuinfo_min_freq
.attr
,
682 &cpuinfo_max_freq
.attr
,
683 &cpuinfo_transition_latency
.attr
,
684 &scaling_min_freq
.attr
,
685 &scaling_max_freq
.attr
,
688 &scaling_governor
.attr
,
689 &scaling_driver
.attr
,
690 &scaling_available_governors
.attr
,
691 &scaling_setspeed
.attr
,
695 struct kobject
*cpufreq_global_kobject
;
696 EXPORT_SYMBOL(cpufreq_global_kobject
);
698 #define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
699 #define to_attr(a) container_of(a, struct freq_attr, attr)
701 static ssize_t
show(struct kobject
*kobj
, struct attribute
*attr
, char *buf
)
703 struct cpufreq_policy
*policy
= to_policy(kobj
);
704 struct freq_attr
*fattr
= to_attr(attr
);
705 ssize_t ret
= -EINVAL
;
706 policy
= cpufreq_cpu_get(policy
->cpu
);
710 if (lock_policy_rwsem_read(policy
->cpu
) < 0)
714 ret
= fattr
->show(policy
, buf
);
718 unlock_policy_rwsem_read(policy
->cpu
);
720 cpufreq_cpu_put(policy
);
725 static ssize_t
store(struct kobject
*kobj
, struct attribute
*attr
,
726 const char *buf
, size_t count
)
728 struct cpufreq_policy
*policy
= to_policy(kobj
);
729 struct freq_attr
*fattr
= to_attr(attr
);
730 ssize_t ret
= -EINVAL
;
731 policy
= cpufreq_cpu_get(policy
->cpu
);
735 if (lock_policy_rwsem_write(policy
->cpu
) < 0)
739 ret
= fattr
->store(policy
, buf
, count
);
743 unlock_policy_rwsem_write(policy
->cpu
);
745 cpufreq_cpu_put(policy
);
750 static void cpufreq_sysfs_release(struct kobject
*kobj
)
752 struct cpufreq_policy
*policy
= to_policy(kobj
);
753 dprintk("last reference is dropped\n");
754 complete(&policy
->kobj_unregister
);
757 static const struct sysfs_ops sysfs_ops
= {
762 static struct kobj_type ktype_cpufreq
= {
763 .sysfs_ops
= &sysfs_ops
,
764 .default_attrs
= default_attrs
,
765 .release
= cpufreq_sysfs_release
,
772 * Positive: When we have a managed CPU and the sysfs got symlinked
774 static int cpufreq_add_dev_policy(unsigned int cpu
,
775 struct cpufreq_policy
*policy
,
776 struct sys_device
*sys_dev
)
782 #ifdef CONFIG_HOTPLUG_CPU
783 struct cpufreq_governor
*gov
;
785 gov
= __find_governor(per_cpu(cpufreq_cpu_governor
, cpu
));
787 policy
->governor
= gov
;
788 dprintk("Restoring governor %s for cpu %d\n",
789 policy
->governor
->name
, cpu
);
793 for_each_cpu(j
, policy
->cpus
) {
794 struct cpufreq_policy
*managed_policy
;
799 /* Check for existing affected CPUs.
800 * They may not be aware of it due to CPU Hotplug.
801 * cpufreq_cpu_put is called when the device is removed
802 * in __cpufreq_remove_dev()
804 managed_policy
= cpufreq_cpu_get(j
);
805 if (unlikely(managed_policy
)) {
807 /* Set proper policy_cpu */
808 unlock_policy_rwsem_write(cpu
);
809 per_cpu(cpufreq_policy_cpu
, cpu
) = managed_policy
->cpu
;
811 if (lock_policy_rwsem_write(cpu
) < 0) {
812 /* Should not go through policy unlock path */
813 if (cpufreq_driver
->exit
)
814 cpufreq_driver
->exit(policy
);
815 cpufreq_cpu_put(managed_policy
);
819 spin_lock_irqsave(&cpufreq_driver_lock
, flags
);
820 cpumask_copy(managed_policy
->cpus
, policy
->cpus
);
821 per_cpu(cpufreq_cpu_data
, cpu
) = managed_policy
;
822 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
824 dprintk("CPU already managed, adding link\n");
825 ret
= sysfs_create_link(&sys_dev
->kobj
,
826 &managed_policy
->kobj
,
829 cpufreq_cpu_put(managed_policy
);
831 * Success. We only needed to be added to the mask.
832 * Call driver->exit() because only the cpu parent of
833 * the kobj needed to call init().
835 if (cpufreq_driver
->exit
)
836 cpufreq_driver
->exit(policy
);
849 /* symlink affected CPUs */
850 static int cpufreq_add_dev_symlink(unsigned int cpu
,
851 struct cpufreq_policy
*policy
)
856 for_each_cpu(j
, policy
->cpus
) {
857 struct cpufreq_policy
*managed_policy
;
858 struct sys_device
*cpu_sys_dev
;
865 dprintk("CPU %u already managed, adding link\n", j
);
866 managed_policy
= cpufreq_cpu_get(cpu
);
867 cpu_sys_dev
= get_cpu_sysdev(j
);
868 ret
= sysfs_create_link(&cpu_sys_dev
->kobj
, &policy
->kobj
,
871 cpufreq_cpu_put(managed_policy
);
878 static int cpufreq_add_dev_interface(unsigned int cpu
,
879 struct cpufreq_policy
*policy
,
880 struct sys_device
*sys_dev
)
882 struct cpufreq_policy new_policy
;
883 struct freq_attr
**drv_attr
;
888 /* prepare interface data */
889 ret
= kobject_init_and_add(&policy
->kobj
, &ktype_cpufreq
,
890 &sys_dev
->kobj
, "cpufreq");
894 /* set up files for this cpu device */
895 drv_attr
= cpufreq_driver
->attr
;
896 while ((drv_attr
) && (*drv_attr
)) {
897 ret
= sysfs_create_file(&policy
->kobj
, &((*drv_attr
)->attr
));
899 goto err_out_kobj_put
;
902 if (cpufreq_driver
->get
) {
903 ret
= sysfs_create_file(&policy
->kobj
, &cpuinfo_cur_freq
.attr
);
905 goto err_out_kobj_put
;
907 if (cpufreq_driver
->target
) {
908 ret
= sysfs_create_file(&policy
->kobj
, &scaling_cur_freq
.attr
);
910 goto err_out_kobj_put
;
912 if (cpufreq_driver
->bios_limit
) {
913 ret
= sysfs_create_file(&policy
->kobj
, &bios_limit
.attr
);
915 goto err_out_kobj_put
;
918 spin_lock_irqsave(&cpufreq_driver_lock
, flags
);
919 for_each_cpu(j
, policy
->cpus
) {
922 per_cpu(cpufreq_cpu_data
, j
) = policy
;
923 per_cpu(cpufreq_policy_cpu
, j
) = policy
->cpu
;
925 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
927 ret
= cpufreq_add_dev_symlink(cpu
, policy
);
929 goto err_out_kobj_put
;
931 memcpy(&new_policy
, policy
, sizeof(struct cpufreq_policy
));
932 /* assure that the starting sequence is run in __cpufreq_set_policy */
933 policy
->governor
= NULL
;
935 /* set default policy */
936 ret
= __cpufreq_set_policy(policy
, &new_policy
);
937 policy
->user_policy
.policy
= policy
->policy
;
938 policy
->user_policy
.governor
= policy
->governor
;
941 dprintk("setting policy failed\n");
942 if (cpufreq_driver
->exit
)
943 cpufreq_driver
->exit(policy
);
948 kobject_put(&policy
->kobj
);
949 wait_for_completion(&policy
->kobj_unregister
);
955 * cpufreq_add_dev - add a CPU device
957 * Adds the cpufreq interface for a CPU device.
959 * The Oracle says: try running cpufreq registration/unregistration concurrently
960 * with with cpu hotplugging and all hell will break loose. Tried to clean this
961 * mess up, but more thorough testing is needed. - Mathieu
963 static int cpufreq_add_dev(struct sys_device
*sys_dev
)
965 unsigned int cpu
= sys_dev
->id
;
966 int ret
= 0, found
= 0;
967 struct cpufreq_policy
*policy
;
970 #ifdef CONFIG_HOTPLUG_CPU
974 if (cpu_is_offline(cpu
))
977 cpufreq_debug_disable_ratelimit();
978 dprintk("adding CPU %u\n", cpu
);
981 /* check whether a different CPU already registered this
982 * CPU because it is in the same boat. */
983 policy
= cpufreq_cpu_get(cpu
);
984 if (unlikely(policy
)) {
985 cpufreq_cpu_put(policy
);
986 cpufreq_debug_enable_ratelimit();
991 if (!try_module_get(cpufreq_driver
->owner
)) {
997 policy
= kzalloc(sizeof(struct cpufreq_policy
), GFP_KERNEL
);
1001 if (!alloc_cpumask_var(&policy
->cpus
, GFP_KERNEL
))
1002 goto err_free_policy
;
1004 if (!zalloc_cpumask_var(&policy
->related_cpus
, GFP_KERNEL
))
1005 goto err_free_cpumask
;
1008 cpumask_copy(policy
->cpus
, cpumask_of(cpu
));
1010 /* Initially set CPU itself as the policy_cpu */
1011 per_cpu(cpufreq_policy_cpu
, cpu
) = cpu
;
1012 ret
= (lock_policy_rwsem_write(cpu
) < 0);
1015 init_completion(&policy
->kobj_unregister
);
1016 INIT_WORK(&policy
->update
, handle_update
);
1018 /* Set governor before ->init, so that driver could check it */
1019 #ifdef CONFIG_HOTPLUG_CPU
1020 for_each_online_cpu(sibling
) {
1021 struct cpufreq_policy
*cp
= per_cpu(cpufreq_cpu_data
, sibling
);
1022 if (cp
&& cp
->governor
&&
1023 (cpumask_test_cpu(cpu
, cp
->related_cpus
))) {
1024 policy
->governor
= cp
->governor
;
1031 policy
->governor
= CPUFREQ_DEFAULT_GOVERNOR
;
1032 /* call driver. From then on the cpufreq must be able
1033 * to accept all calls to ->verify and ->setpolicy for this CPU
1035 ret
= cpufreq_driver
->init(policy
);
1037 dprintk("initialization failed\n");
1038 goto err_unlock_policy
;
1040 policy
->user_policy
.min
= policy
->min
;
1041 policy
->user_policy
.max
= policy
->max
;
1043 blocking_notifier_call_chain(&cpufreq_policy_notifier_list
,
1044 CPUFREQ_START
, policy
);
1046 ret
= cpufreq_add_dev_policy(cpu
, policy
, sys_dev
);
1049 /* This is a managed cpu, symlink created,
1052 goto err_unlock_policy
;
1055 ret
= cpufreq_add_dev_interface(cpu
, policy
, sys_dev
);
1057 goto err_out_unregister
;
1059 unlock_policy_rwsem_write(cpu
);
1061 kobject_uevent(&policy
->kobj
, KOBJ_ADD
);
1062 module_put(cpufreq_driver
->owner
);
1063 dprintk("initialization complete\n");
1064 cpufreq_debug_enable_ratelimit();
1070 spin_lock_irqsave(&cpufreq_driver_lock
, flags
);
1071 for_each_cpu(j
, policy
->cpus
)
1072 per_cpu(cpufreq_cpu_data
, j
) = NULL
;
1073 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
1075 kobject_put(&policy
->kobj
);
1076 wait_for_completion(&policy
->kobj_unregister
);
1079 unlock_policy_rwsem_write(cpu
);
1081 free_cpumask_var(policy
->cpus
);
1085 module_put(cpufreq_driver
->owner
);
1087 cpufreq_debug_enable_ratelimit();
1093 * __cpufreq_remove_dev - remove a CPU device
1095 * Removes the cpufreq interface for a CPU device.
1096 * Caller should already have policy_rwsem in write mode for this CPU.
1097 * This routine frees the rwsem before returning.
1099 static int __cpufreq_remove_dev(struct sys_device
*sys_dev
)
1101 unsigned int cpu
= sys_dev
->id
;
1102 unsigned long flags
;
1103 struct cpufreq_policy
*data
;
1104 struct kobject
*kobj
;
1105 struct completion
*cmp
;
1107 struct sys_device
*cpu_sys_dev
;
1111 cpufreq_debug_disable_ratelimit();
1112 dprintk("unregistering CPU %u\n", cpu
);
1114 spin_lock_irqsave(&cpufreq_driver_lock
, flags
);
1115 data
= per_cpu(cpufreq_cpu_data
, cpu
);
1118 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
1119 cpufreq_debug_enable_ratelimit();
1120 unlock_policy_rwsem_write(cpu
);
1123 per_cpu(cpufreq_cpu_data
, cpu
) = NULL
;
1127 /* if this isn't the CPU which is the parent of the kobj, we
1128 * only need to unlink, put and exit
1130 if (unlikely(cpu
!= data
->cpu
)) {
1131 dprintk("removing link\n");
1132 cpumask_clear_cpu(cpu
, data
->cpus
);
1133 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
1134 kobj
= &sys_dev
->kobj
;
1135 cpufreq_cpu_put(data
);
1136 cpufreq_debug_enable_ratelimit();
1137 unlock_policy_rwsem_write(cpu
);
1138 sysfs_remove_link(kobj
, "cpufreq");
1145 #ifdef CONFIG_HOTPLUG_CPU
1146 strncpy(per_cpu(cpufreq_cpu_governor
, cpu
), data
->governor
->name
,
1150 /* if we have other CPUs still registered, we need to unlink them,
1151 * or else wait_for_completion below will lock up. Clean the
1152 * per_cpu(cpufreq_cpu_data) while holding the lock, and remove
1153 * the sysfs links afterwards.
1155 if (unlikely(cpumask_weight(data
->cpus
) > 1)) {
1156 for_each_cpu(j
, data
->cpus
) {
1159 per_cpu(cpufreq_cpu_data
, j
) = NULL
;
1163 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
1165 if (unlikely(cpumask_weight(data
->cpus
) > 1)) {
1166 for_each_cpu(j
, data
->cpus
) {
1169 dprintk("removing link for cpu %u\n", j
);
1170 #ifdef CONFIG_HOTPLUG_CPU
1171 strncpy(per_cpu(cpufreq_cpu_governor
, j
),
1172 data
->governor
->name
, CPUFREQ_NAME_LEN
);
1174 cpu_sys_dev
= get_cpu_sysdev(j
);
1175 kobj
= &cpu_sys_dev
->kobj
;
1176 unlock_policy_rwsem_write(cpu
);
1177 sysfs_remove_link(kobj
, "cpufreq");
1178 lock_policy_rwsem_write(cpu
);
1179 cpufreq_cpu_put(data
);
1183 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
1186 if (cpufreq_driver
->target
)
1187 __cpufreq_governor(data
, CPUFREQ_GOV_STOP
);
1190 cmp
= &data
->kobj_unregister
;
1191 unlock_policy_rwsem_write(cpu
);
1194 /* we need to make sure that the underlying kobj is actually
1195 * not referenced anymore by anybody before we proceed with
1198 dprintk("waiting for dropping of refcount\n");
1199 wait_for_completion(cmp
);
1200 dprintk("wait complete\n");
1202 lock_policy_rwsem_write(cpu
);
1203 if (cpufreq_driver
->exit
)
1204 cpufreq_driver
->exit(data
);
1205 unlock_policy_rwsem_write(cpu
);
1207 free_cpumask_var(data
->related_cpus
);
1208 free_cpumask_var(data
->cpus
);
1210 per_cpu(cpufreq_cpu_data
, cpu
) = NULL
;
1212 cpufreq_debug_enable_ratelimit();
1217 static int cpufreq_remove_dev(struct sys_device
*sys_dev
)
1219 unsigned int cpu
= sys_dev
->id
;
1222 if (cpu_is_offline(cpu
))
1225 if (unlikely(lock_policy_rwsem_write(cpu
)))
1228 retval
= __cpufreq_remove_dev(sys_dev
);
1233 static void handle_update(struct work_struct
*work
)
1235 struct cpufreq_policy
*policy
=
1236 container_of(work
, struct cpufreq_policy
, update
);
1237 unsigned int cpu
= policy
->cpu
;
1238 dprintk("handle_update for cpu %u called\n", cpu
);
1239 cpufreq_update_policy(cpu
);
1243 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're in deep trouble.
1245 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1246 * @new_freq: CPU frequency the CPU actually runs at
1248 * We adjust to current frequency first, and need to clean up later.
1249 * So either call to cpufreq_update_policy() or schedule handle_update()).
1251 static void cpufreq_out_of_sync(unsigned int cpu
, unsigned int old_freq
,
1252 unsigned int new_freq
)
1254 struct cpufreq_freqs freqs
;
1256 dprintk("Warning: CPU frequency out of sync: cpufreq and timing "
1257 "core thinks of %u, is %u kHz.\n", old_freq
, new_freq
);
1260 freqs
.old
= old_freq
;
1261 freqs
.new = new_freq
;
1262 cpufreq_notify_transition(&freqs
, CPUFREQ_PRECHANGE
);
1263 cpufreq_notify_transition(&freqs
, CPUFREQ_POSTCHANGE
);
1268 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
1271 * This is the last known freq, without actually getting it from the driver.
1272 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1274 unsigned int cpufreq_quick_get(unsigned int cpu
)
1276 struct cpufreq_policy
*policy
= cpufreq_cpu_get(cpu
);
1277 unsigned int ret_freq
= 0;
1280 ret_freq
= policy
->cur
;
1281 cpufreq_cpu_put(policy
);
1286 EXPORT_SYMBOL(cpufreq_quick_get
);
1289 static unsigned int __cpufreq_get(unsigned int cpu
)
1291 struct cpufreq_policy
*policy
= per_cpu(cpufreq_cpu_data
, cpu
);
1292 unsigned int ret_freq
= 0;
1294 if (!cpufreq_driver
->get
)
1297 ret_freq
= cpufreq_driver
->get(cpu
);
1299 if (ret_freq
&& policy
->cur
&&
1300 !(cpufreq_driver
->flags
& CPUFREQ_CONST_LOOPS
)) {
1301 /* verify no discrepancy between actual and
1302 saved value exists */
1303 if (unlikely(ret_freq
!= policy
->cur
)) {
1304 cpufreq_out_of_sync(cpu
, policy
->cur
, ret_freq
);
1305 schedule_work(&policy
->update
);
1313 * cpufreq_get - get the current CPU frequency (in kHz)
1316 * Get the CPU current (static) CPU frequency
1318 unsigned int cpufreq_get(unsigned int cpu
)
1320 unsigned int ret_freq
= 0;
1321 struct cpufreq_policy
*policy
= cpufreq_cpu_get(cpu
);
1326 if (unlikely(lock_policy_rwsem_read(cpu
)))
1329 ret_freq
= __cpufreq_get(cpu
);
1331 unlock_policy_rwsem_read(cpu
);
1334 cpufreq_cpu_put(policy
);
1338 EXPORT_SYMBOL(cpufreq_get
);
1342 * cpufreq_suspend - let the low level driver prepare for suspend
1345 static int cpufreq_suspend(struct sys_device
*sysdev
, pm_message_t pmsg
)
1349 int cpu
= sysdev
->id
;
1350 struct cpufreq_policy
*cpu_policy
;
1352 dprintk("suspending cpu %u\n", cpu
);
1354 if (!cpu_online(cpu
))
1357 /* we may be lax here as interrupts are off. Nonetheless
1358 * we need to grab the correct cpu policy, as to check
1359 * whether we really run on this CPU.
1362 cpu_policy
= cpufreq_cpu_get(cpu
);
1366 /* only handle each CPU group once */
1367 if (unlikely(cpu_policy
->cpu
!= cpu
))
1370 if (cpufreq_driver
->suspend
) {
1371 ret
= cpufreq_driver
->suspend(cpu_policy
, pmsg
);
1373 printk(KERN_ERR
"cpufreq: suspend failed in ->suspend "
1374 "step on CPU %u\n", cpu_policy
->cpu
);
1378 cpufreq_cpu_put(cpu_policy
);
1383 * cpufreq_resume - restore proper CPU frequency handling after resume
1385 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
1386 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1387 * restored. It will verify that the current freq is in sync with
1388 * what we believe it to be. This is a bit later than when it
1389 * should be, but nonethteless it's better than calling
1390 * cpufreq_driver->get() here which might re-enable interrupts...
1392 static int cpufreq_resume(struct sys_device
*sysdev
)
1396 int cpu
= sysdev
->id
;
1397 struct cpufreq_policy
*cpu_policy
;
1399 dprintk("resuming cpu %u\n", cpu
);
1401 if (!cpu_online(cpu
))
1404 /* we may be lax here as interrupts are off. Nonetheless
1405 * we need to grab the correct cpu policy, as to check
1406 * whether we really run on this CPU.
1409 cpu_policy
= cpufreq_cpu_get(cpu
);
1413 /* only handle each CPU group once */
1414 if (unlikely(cpu_policy
->cpu
!= cpu
))
1417 if (cpufreq_driver
->resume
) {
1418 ret
= cpufreq_driver
->resume(cpu_policy
);
1420 printk(KERN_ERR
"cpufreq: resume failed in ->resume "
1421 "step on CPU %u\n", cpu_policy
->cpu
);
1426 schedule_work(&cpu_policy
->update
);
1429 cpufreq_cpu_put(cpu_policy
);
1433 static struct sysdev_driver cpufreq_sysdev_driver
= {
1434 .add
= cpufreq_add_dev
,
1435 .remove
= cpufreq_remove_dev
,
1436 .suspend
= cpufreq_suspend
,
1437 .resume
= cpufreq_resume
,
1441 /*********************************************************************
1442 * NOTIFIER LISTS INTERFACE *
1443 *********************************************************************/
1446 * cpufreq_register_notifier - register a driver with cpufreq
1447 * @nb: notifier function to register
1448 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1450 * Add a driver to one of two lists: either a list of drivers that
1451 * are notified about clock rate changes (once before and once after
1452 * the transition), or a list of drivers that are notified about
1453 * changes in cpufreq policy.
1455 * This function may sleep, and has the same return conditions as
1456 * blocking_notifier_chain_register.
1458 int cpufreq_register_notifier(struct notifier_block
*nb
, unsigned int list
)
1462 WARN_ON(!init_cpufreq_transition_notifier_list_called
);
1465 case CPUFREQ_TRANSITION_NOTIFIER
:
1466 ret
= srcu_notifier_chain_register(
1467 &cpufreq_transition_notifier_list
, nb
);
1469 case CPUFREQ_POLICY_NOTIFIER
:
1470 ret
= blocking_notifier_chain_register(
1471 &cpufreq_policy_notifier_list
, nb
);
1479 EXPORT_SYMBOL(cpufreq_register_notifier
);
1483 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1484 * @nb: notifier block to be unregistered
1485 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1487 * Remove a driver from the CPU frequency notifier list.
1489 * This function may sleep, and has the same return conditions as
1490 * blocking_notifier_chain_unregister.
1492 int cpufreq_unregister_notifier(struct notifier_block
*nb
, unsigned int list
)
1497 case CPUFREQ_TRANSITION_NOTIFIER
:
1498 ret
= srcu_notifier_chain_unregister(
1499 &cpufreq_transition_notifier_list
, nb
);
1501 case CPUFREQ_POLICY_NOTIFIER
:
1502 ret
= blocking_notifier_chain_unregister(
1503 &cpufreq_policy_notifier_list
, nb
);
1511 EXPORT_SYMBOL(cpufreq_unregister_notifier
);
1514 /*********************************************************************
1516 *********************************************************************/
1519 int __cpufreq_driver_target(struct cpufreq_policy
*policy
,
1520 unsigned int target_freq
,
1521 unsigned int relation
)
1523 int retval
= -EINVAL
;
1525 dprintk("target for CPU %u: %u kHz, relation %u\n", policy
->cpu
,
1526 target_freq
, relation
);
1527 if (cpu_online(policy
->cpu
) && cpufreq_driver
->target
)
1528 retval
= cpufreq_driver
->target(policy
, target_freq
, relation
);
1532 EXPORT_SYMBOL_GPL(__cpufreq_driver_target
);
1534 int cpufreq_driver_target(struct cpufreq_policy
*policy
,
1535 unsigned int target_freq
,
1536 unsigned int relation
)
1540 policy
= cpufreq_cpu_get(policy
->cpu
);
1544 if (unlikely(lock_policy_rwsem_write(policy
->cpu
)))
1547 ret
= __cpufreq_driver_target(policy
, target_freq
, relation
);
1549 unlock_policy_rwsem_write(policy
->cpu
);
1552 cpufreq_cpu_put(policy
);
1556 EXPORT_SYMBOL_GPL(cpufreq_driver_target
);
1558 int __cpufreq_driver_getavg(struct cpufreq_policy
*policy
, unsigned int cpu
)
1562 policy
= cpufreq_cpu_get(policy
->cpu
);
1566 if (cpu_online(cpu
) && cpufreq_driver
->getavg
)
1567 ret
= cpufreq_driver
->getavg(policy
, cpu
);
1569 cpufreq_cpu_put(policy
);
1572 EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg
);
1575 * when "event" is CPUFREQ_GOV_LIMITS
1578 static int __cpufreq_governor(struct cpufreq_policy
*policy
,
1583 /* Only must be defined when default governor is known to have latency
1584 restrictions, like e.g. conservative or ondemand.
1585 That this is the case is already ensured in Kconfig
1587 #ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1588 struct cpufreq_governor
*gov
= &cpufreq_gov_performance
;
1590 struct cpufreq_governor
*gov
= NULL
;
1593 if (policy
->governor
->max_transition_latency
&&
1594 policy
->cpuinfo
.transition_latency
>
1595 policy
->governor
->max_transition_latency
) {
1599 printk(KERN_WARNING
"%s governor failed, too long"
1600 " transition latency of HW, fallback"
1601 " to %s governor\n",
1602 policy
->governor
->name
,
1604 policy
->governor
= gov
;
1608 if (!try_module_get(policy
->governor
->owner
))
1611 dprintk("__cpufreq_governor for CPU %u, event %u\n",
1612 policy
->cpu
, event
);
1613 ret
= policy
->governor
->governor(policy
, event
);
1615 /* we keep one module reference alive for
1616 each CPU governed by this CPU */
1617 if ((event
!= CPUFREQ_GOV_START
) || ret
)
1618 module_put(policy
->governor
->owner
);
1619 if ((event
== CPUFREQ_GOV_STOP
) && !ret
)
1620 module_put(policy
->governor
->owner
);
1626 int cpufreq_register_governor(struct cpufreq_governor
*governor
)
1633 mutex_lock(&cpufreq_governor_mutex
);
1636 if (__find_governor(governor
->name
) == NULL
) {
1638 list_add(&governor
->governor_list
, &cpufreq_governor_list
);
1641 mutex_unlock(&cpufreq_governor_mutex
);
1644 EXPORT_SYMBOL_GPL(cpufreq_register_governor
);
1647 void cpufreq_unregister_governor(struct cpufreq_governor
*governor
)
1649 #ifdef CONFIG_HOTPLUG_CPU
1656 #ifdef CONFIG_HOTPLUG_CPU
1657 for_each_present_cpu(cpu
) {
1658 if (cpu_online(cpu
))
1660 if (!strcmp(per_cpu(cpufreq_cpu_governor
, cpu
), governor
->name
))
1661 strcpy(per_cpu(cpufreq_cpu_governor
, cpu
), "\0");
1665 mutex_lock(&cpufreq_governor_mutex
);
1666 list_del(&governor
->governor_list
);
1667 mutex_unlock(&cpufreq_governor_mutex
);
1670 EXPORT_SYMBOL_GPL(cpufreq_unregister_governor
);
1674 /*********************************************************************
1675 * POLICY INTERFACE *
1676 *********************************************************************/
1679 * cpufreq_get_policy - get the current cpufreq_policy
1680 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1683 * Reads the current cpufreq policy.
1685 int cpufreq_get_policy(struct cpufreq_policy
*policy
, unsigned int cpu
)
1687 struct cpufreq_policy
*cpu_policy
;
1691 cpu_policy
= cpufreq_cpu_get(cpu
);
1695 memcpy(policy
, cpu_policy
, sizeof(struct cpufreq_policy
));
1697 cpufreq_cpu_put(cpu_policy
);
1700 EXPORT_SYMBOL(cpufreq_get_policy
);
1704 * data : current policy.
1705 * policy : policy to be set.
1707 static int __cpufreq_set_policy(struct cpufreq_policy
*data
,
1708 struct cpufreq_policy
*policy
)
1712 cpufreq_debug_disable_ratelimit();
1713 dprintk("setting new policy for CPU %u: %u - %u kHz\n", policy
->cpu
,
1714 policy
->min
, policy
->max
);
1716 memcpy(&policy
->cpuinfo
, &data
->cpuinfo
,
1717 sizeof(struct cpufreq_cpuinfo
));
1719 if (policy
->min
> data
->max
|| policy
->max
< data
->min
) {
1724 /* verify the cpu speed can be set within this limit */
1725 ret
= cpufreq_driver
->verify(policy
);
1729 /* adjust if necessary - all reasons */
1730 blocking_notifier_call_chain(&cpufreq_policy_notifier_list
,
1731 CPUFREQ_ADJUST
, policy
);
1733 /* adjust if necessary - hardware incompatibility*/
1734 blocking_notifier_call_chain(&cpufreq_policy_notifier_list
,
1735 CPUFREQ_INCOMPATIBLE
, policy
);
1737 /* verify the cpu speed can be set within this limit,
1738 which might be different to the first one */
1739 ret
= cpufreq_driver
->verify(policy
);
1743 /* notification of the new policy */
1744 blocking_notifier_call_chain(&cpufreq_policy_notifier_list
,
1745 CPUFREQ_NOTIFY
, policy
);
1747 data
->min
= policy
->min
;
1748 data
->max
= policy
->max
;
1750 dprintk("new min and max freqs are %u - %u kHz\n",
1751 data
->min
, data
->max
);
1753 if (cpufreq_driver
->setpolicy
) {
1754 data
->policy
= policy
->policy
;
1755 dprintk("setting range\n");
1756 ret
= cpufreq_driver
->setpolicy(policy
);
1758 if (policy
->governor
!= data
->governor
) {
1759 /* save old, working values */
1760 struct cpufreq_governor
*old_gov
= data
->governor
;
1762 dprintk("governor switch\n");
1764 /* end old governor */
1765 if (data
->governor
) {
1767 * Need to release the rwsem around governor
1768 * stop due to lock dependency between
1769 * cancel_delayed_work_sync and the read lock
1770 * taken in the delayed work handler.
1772 unlock_policy_rwsem_write(data
->cpu
);
1773 __cpufreq_governor(data
, CPUFREQ_GOV_STOP
);
1774 lock_policy_rwsem_write(data
->cpu
);
1777 /* start new governor */
1778 data
->governor
= policy
->governor
;
1779 if (__cpufreq_governor(data
, CPUFREQ_GOV_START
)) {
1780 /* new governor failed, so re-start old one */
1781 dprintk("starting governor %s failed\n",
1782 data
->governor
->name
);
1784 data
->governor
= old_gov
;
1785 __cpufreq_governor(data
,
1791 /* might be a policy change, too, so fall through */
1793 dprintk("governor: change or update limits\n");
1794 __cpufreq_governor(data
, CPUFREQ_GOV_LIMITS
);
1798 cpufreq_debug_enable_ratelimit();
1803 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1804 * @cpu: CPU which shall be re-evaluated
1806 * Usefull for policy notifiers which have different necessities
1807 * at different times.
1809 int cpufreq_update_policy(unsigned int cpu
)
1811 struct cpufreq_policy
*data
= cpufreq_cpu_get(cpu
);
1812 struct cpufreq_policy policy
;
1820 if (unlikely(lock_policy_rwsem_write(cpu
))) {
1825 dprintk("updating policy for CPU %u\n", cpu
);
1826 memcpy(&policy
, data
, sizeof(struct cpufreq_policy
));
1827 policy
.min
= data
->user_policy
.min
;
1828 policy
.max
= data
->user_policy
.max
;
1829 policy
.policy
= data
->user_policy
.policy
;
1830 policy
.governor
= data
->user_policy
.governor
;
1832 /* BIOS might change freq behind our back
1833 -> ask driver for current freq and notify governors about a change */
1834 if (cpufreq_driver
->get
) {
1835 policy
.cur
= cpufreq_driver
->get(cpu
);
1837 dprintk("Driver did not initialize current freq");
1838 data
->cur
= policy
.cur
;
1840 if (data
->cur
!= policy
.cur
)
1841 cpufreq_out_of_sync(cpu
, data
->cur
,
1846 ret
= __cpufreq_set_policy(data
, &policy
);
1848 unlock_policy_rwsem_write(cpu
);
1851 cpufreq_cpu_put(data
);
1855 EXPORT_SYMBOL(cpufreq_update_policy
);
1857 static int __cpuinit
cpufreq_cpu_callback(struct notifier_block
*nfb
,
1858 unsigned long action
, void *hcpu
)
1860 unsigned int cpu
= (unsigned long)hcpu
;
1861 struct sys_device
*sys_dev
;
1863 sys_dev
= get_cpu_sysdev(cpu
);
1867 case CPU_ONLINE_FROZEN
:
1868 cpufreq_add_dev(sys_dev
);
1870 case CPU_DOWN_PREPARE
:
1871 case CPU_DOWN_PREPARE_FROZEN
:
1872 if (unlikely(lock_policy_rwsem_write(cpu
)))
1875 __cpufreq_remove_dev(sys_dev
);
1877 case CPU_DOWN_FAILED
:
1878 case CPU_DOWN_FAILED_FROZEN
:
1879 cpufreq_add_dev(sys_dev
);
1886 static struct notifier_block __refdata cpufreq_cpu_notifier
=
1888 .notifier_call
= cpufreq_cpu_callback
,
1891 /*********************************************************************
1892 * REGISTER / UNREGISTER CPUFREQ DRIVER *
1893 *********************************************************************/
1896 * cpufreq_register_driver - register a CPU Frequency driver
1897 * @driver_data: A struct cpufreq_driver containing the values#
1898 * submitted by the CPU Frequency driver.
1900 * Registers a CPU Frequency driver to this core code. This code
1901 * returns zero on success, -EBUSY when another driver got here first
1902 * (and isn't unregistered in the meantime).
1905 int cpufreq_register_driver(struct cpufreq_driver
*driver_data
)
1907 unsigned long flags
;
1910 if (!driver_data
|| !driver_data
->verify
|| !driver_data
->init
||
1911 ((!driver_data
->setpolicy
) && (!driver_data
->target
)))
1914 dprintk("trying to register driver %s\n", driver_data
->name
);
1916 if (driver_data
->setpolicy
)
1917 driver_data
->flags
|= CPUFREQ_CONST_LOOPS
;
1919 spin_lock_irqsave(&cpufreq_driver_lock
, flags
);
1920 if (cpufreq_driver
) {
1921 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
1924 cpufreq_driver
= driver_data
;
1925 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
1927 ret
= sysdev_driver_register(&cpu_sysdev_class
,
1928 &cpufreq_sysdev_driver
);
1930 if ((!ret
) && !(cpufreq_driver
->flags
& CPUFREQ_STICKY
)) {
1934 /* check for at least one working CPU */
1935 for (i
= 0; i
< nr_cpu_ids
; i
++)
1936 if (cpu_possible(i
) && per_cpu(cpufreq_cpu_data
, i
)) {
1941 /* if all ->init() calls failed, unregister */
1943 dprintk("no CPU initialized for driver %s\n",
1945 sysdev_driver_unregister(&cpu_sysdev_class
,
1946 &cpufreq_sysdev_driver
);
1948 spin_lock_irqsave(&cpufreq_driver_lock
, flags
);
1949 cpufreq_driver
= NULL
;
1950 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
1955 register_hotcpu_notifier(&cpufreq_cpu_notifier
);
1956 dprintk("driver %s up and running\n", driver_data
->name
);
1957 cpufreq_debug_enable_ratelimit();
1962 EXPORT_SYMBOL_GPL(cpufreq_register_driver
);
1966 * cpufreq_unregister_driver - unregister the current CPUFreq driver
1968 * Unregister the current CPUFreq driver. Only call this if you have
1969 * the right to do so, i.e. if you have succeeded in initialising before!
1970 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
1971 * currently not initialised.
1973 int cpufreq_unregister_driver(struct cpufreq_driver
*driver
)
1975 unsigned long flags
;
1977 cpufreq_debug_disable_ratelimit();
1979 if (!cpufreq_driver
|| (driver
!= cpufreq_driver
)) {
1980 cpufreq_debug_enable_ratelimit();
1984 dprintk("unregistering driver %s\n", driver
->name
);
1986 sysdev_driver_unregister(&cpu_sysdev_class
, &cpufreq_sysdev_driver
);
1987 unregister_hotcpu_notifier(&cpufreq_cpu_notifier
);
1989 spin_lock_irqsave(&cpufreq_driver_lock
, flags
);
1990 cpufreq_driver
= NULL
;
1991 spin_unlock_irqrestore(&cpufreq_driver_lock
, flags
);
1995 EXPORT_SYMBOL_GPL(cpufreq_unregister_driver
);
1997 static int __init
cpufreq_core_init(void)
2001 for_each_possible_cpu(cpu
) {
2002 per_cpu(cpufreq_policy_cpu
, cpu
) = -1;
2003 init_rwsem(&per_cpu(cpu_policy_rwsem
, cpu
));
2006 cpufreq_global_kobject
= kobject_create_and_add("cpufreq",
2007 &cpu_sysdev_class
.kset
.kobj
);
2008 BUG_ON(!cpufreq_global_kobject
);
2012 core_initcall(cpufreq_core_init
);