blob: dab1410d1c0dcb4610f45e4227c132449e4cb507 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/cpufreq/cpufreq.c
3 *
4 * Copyright (C) 2001 Russell King
5 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
6 *
Ashok Rajc32b6b82005-10-30 14:59:54 -08007 * Oct 2005 - Ashok Raj <ashok.raj@intel.com>
Dave Jones32ee8c32006-02-28 00:43:23 -05008 * Added handling for CPU hotplug
Dave Jones8ff69732006-03-05 03:37:23 -05009 * Feb 2006 - Jacob Shin <jacob.shin@amd.com>
10 * Fix handling for CPU hotplug -- affected CPUs
Ashok Rajc32b6b82005-10-30 14:59:54 -080011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 *
16 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#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>
akpm@osdl.org3fc54d32006-01-13 15:54:22 -080030#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Gautham R Shenoye08f5f52006-10-26 16:20:58 +053032#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_CORE, \
33 "cpufreq-core", msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/**
Dave Jonescd878472006-08-11 17:59:28 -040036 * The "cpufreq driver" - the arch- or hardware-dependent low
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * level driver of CPUFreq support, and its spinlock. This lock
38 * also protects the cpufreq_cpu_data array.
39 */
Dave Jones7d5e3502006-02-02 17:03:42 -050040static struct cpufreq_driver *cpufreq_driver;
Mike Travis7a6aedf2008-03-25 15:06:53 -070041static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
Thomas Renninger084f3492007-07-09 11:35:28 -070042#ifdef CONFIG_HOTPLUG_CPU
43/* This one keeps track of the previously set governor of a removed CPU */
Dmitry Monakhove77b89f2009-10-05 00:38:55 +040044static DEFINE_PER_CPU(char[CPUFREQ_NAME_LEN], cpufreq_cpu_governor);
Thomas Renninger084f3492007-07-09 11:35:28 -070045#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static DEFINE_SPINLOCK(cpufreq_driver_lock);
47
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080048/*
49 * cpu_policy_rwsem is a per CPU reader-writer semaphore designed to cure
50 * all cpufreq/hotplug/workqueue/etc related lock issues.
51 *
52 * The rules for this semaphore:
53 * - Any routine that wants to read from the policy structure will
54 * do a down_read on this semaphore.
55 * - Any routine that will write to the policy structure and/or may take away
56 * the policy altogether (eg. CPU hotplug), will hold this lock in write
57 * mode before doing so.
58 *
59 * Additional rules:
60 * - All holders of the lock should check to make sure that the CPU they
61 * are concerned with are online after they get the lock.
62 * - Governor routines that can be called in cpufreq hotplug path should not
63 * take this sem as top level hotplug notifier handler takes this.
Mathieu Desnoyers395913d2009-06-08 13:17:31 -040064 * - Lock should not be held across
65 * __cpufreq_governor(data, CPUFREQ_GOV_STOP);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080066 */
67static DEFINE_PER_CPU(int, policy_cpu);
68static DEFINE_PER_CPU(struct rw_semaphore, cpu_policy_rwsem);
69
70#define lock_policy_rwsem(mode, cpu) \
71int lock_policy_rwsem_##mode \
72(int cpu) \
73{ \
74 int policy_cpu = per_cpu(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)); \
79 return -1; \
80 } \
81 \
82 return 0; \
83}
84
85lock_policy_rwsem(read, cpu);
86EXPORT_SYMBOL_GPL(lock_policy_rwsem_read);
87
88lock_policy_rwsem(write, cpu);
89EXPORT_SYMBOL_GPL(lock_policy_rwsem_write);
90
91void unlock_policy_rwsem_read(int cpu)
92{
93 int policy_cpu = per_cpu(policy_cpu, cpu);
94 BUG_ON(policy_cpu == -1);
95 up_read(&per_cpu(cpu_policy_rwsem, policy_cpu));
96}
97EXPORT_SYMBOL_GPL(unlock_policy_rwsem_read);
98
99void unlock_policy_rwsem_write(int cpu)
100{
101 int policy_cpu = per_cpu(policy_cpu, cpu);
102 BUG_ON(policy_cpu == -1);
103 up_write(&per_cpu(cpu_policy_rwsem, policy_cpu));
104}
105EXPORT_SYMBOL_GPL(unlock_policy_rwsem_write);
106
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/* internal prototypes */
Dave Jones29464f22009-01-18 01:37:11 -0500109static int __cpufreq_governor(struct cpufreq_policy *policy,
110 unsigned int event);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800111static unsigned int __cpufreq_get(unsigned int cpu);
David Howells65f27f32006-11-22 14:55:48 +0000112static void handle_update(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114/**
Dave Jones32ee8c32006-02-28 00:43:23 -0500115 * Two notifier lists: the "policy" list is involved in the
116 * validation process for a new CPU frequency policy; the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * "transition" list for kernel code that needs to handle
118 * changes to devices when the CPU clock speed changes.
119 * The mutex locks both lists.
120 */
Alan Sterne041c682006-03-27 01:16:30 -0800121static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700122static struct srcu_notifier_head cpufreq_transition_notifier_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200124static bool init_cpufreq_transition_notifier_list_called;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700125static int __init init_cpufreq_transition_notifier_list(void)
126{
127 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200128 init_cpufreq_transition_notifier_list_called = true;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700129 return 0;
130}
Linus Torvaldsb3438f82006-11-20 11:47:18 -0800131pure_initcall(init_cpufreq_transition_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133static LIST_HEAD(cpufreq_governor_list);
Dave Jones29464f22009-01-18 01:37:11 -0500134static DEFINE_MUTEX(cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Dave Jones7d5e3502006-02-02 17:03:42 -0500136struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 struct cpufreq_policy *data;
139 unsigned long flags;
140
Mike Travis7a6aedf2008-03-25 15:06:53 -0700141 if (cpu >= nr_cpu_ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 goto err_out;
143
144 /* get the cpufreq driver */
145 spin_lock_irqsave(&cpufreq_driver_lock, flags);
146
147 if (!cpufreq_driver)
148 goto err_out_unlock;
149
150 if (!try_module_get(cpufreq_driver->owner))
151 goto err_out_unlock;
152
153
154 /* get the CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -0700155 data = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 if (!data)
158 goto err_out_put_module;
159
160 if (!kobject_get(&data->kobj))
161 goto err_out_put_module;
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return data;
165
Dave Jones7d5e3502006-02-02 17:03:42 -0500166err_out_put_module:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 module_put(cpufreq_driver->owner);
Dave Jones7d5e3502006-02-02 17:03:42 -0500168err_out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones7d5e3502006-02-02 17:03:42 -0500170err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return NULL;
172}
173EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
174
Dave Jones7d5e3502006-02-02 17:03:42 -0500175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176void cpufreq_cpu_put(struct cpufreq_policy *data)
177{
178 kobject_put(&data->kobj);
179 module_put(cpufreq_driver->owner);
180}
181EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
182
183
184/*********************************************************************
185 * UNIFIED DEBUG HELPERS *
186 *********************************************************************/
187#ifdef CONFIG_CPU_FREQ_DEBUG
188
189/* what part(s) of the CPUfreq subsystem are debugged? */
190static unsigned int debug;
191
192/* is the debug output ratelimit'ed using printk_ratelimit? User can
193 * set or modify this value.
194 */
195static unsigned int debug_ratelimit = 1;
196
197/* is the printk_ratelimit'ing enabled? It's enabled after a successful
198 * loading of a cpufreq driver, temporarily disabled when a new policy
199 * is set, and disabled upon cpufreq driver removal
200 */
201static unsigned int disable_ratelimit = 1;
202static DEFINE_SPINLOCK(disable_ratelimit_lock);
203
Arjan van de Ven858119e2006-01-14 13:20:43 -0800204static void cpufreq_debug_enable_ratelimit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 unsigned long flags;
207
208 spin_lock_irqsave(&disable_ratelimit_lock, flags);
209 if (disable_ratelimit)
210 disable_ratelimit--;
211 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
212}
213
Arjan van de Ven858119e2006-01-14 13:20:43 -0800214static void cpufreq_debug_disable_ratelimit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 unsigned long flags;
217
218 spin_lock_irqsave(&disable_ratelimit_lock, flags);
219 disable_ratelimit++;
220 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
221}
222
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530223void cpufreq_debug_printk(unsigned int type, const char *prefix,
Dave Jones905d77c2008-03-05 14:28:32 -0500224 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 char s[256];
227 va_list args;
228 unsigned int len;
229 unsigned long flags;
Dave Jones32ee8c32006-02-28 00:43:23 -0500230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 WARN_ON(!prefix);
232 if (type & debug) {
233 spin_lock_irqsave(&disable_ratelimit_lock, flags);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530234 if (!disable_ratelimit && debug_ratelimit
235 && !printk_ratelimit()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
237 return;
238 }
239 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
240
241 len = snprintf(s, 256, KERN_DEBUG "%s: ", prefix);
242
243 va_start(args, fmt);
244 len += vsnprintf(&s[len], (256 - len), fmt, args);
245 va_end(args);
246
247 printk(s);
248
249 WARN_ON(len < 5);
250 }
251}
252EXPORT_SYMBOL(cpufreq_debug_printk);
253
254
255module_param(debug, uint, 0644);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530256MODULE_PARM_DESC(debug, "CPUfreq debugging: add 1 to debug core,"
257 " 2 to debug drivers, and 4 to debug governors.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259module_param(debug_ratelimit, uint, 0644);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530260MODULE_PARM_DESC(debug_ratelimit, "CPUfreq debugging:"
261 " set to 0 to disable ratelimiting.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263#else /* !CONFIG_CPU_FREQ_DEBUG */
264
265static inline void cpufreq_debug_enable_ratelimit(void) { return; }
266static inline void cpufreq_debug_disable_ratelimit(void) { return; }
267
268#endif /* CONFIG_CPU_FREQ_DEBUG */
269
270
271/*********************************************************************
272 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
273 *********************************************************************/
274
275/**
276 * adjust_jiffies - adjust the system "loops_per_jiffy"
277 *
278 * This function alters the system "loops_per_jiffy" for the clock
279 * speed change. Note that loops_per_jiffy cannot be updated on SMP
Dave Jones32ee8c32006-02-28 00:43:23 -0500280 * systems as each CPU might be scaled differently. So, use the arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 * per-CPU loops_per_jiffy value wherever possible.
282 */
283#ifndef CONFIG_SMP
284static unsigned long l_p_j_ref;
285static unsigned int l_p_j_ref_freq;
286
Arjan van de Ven858119e2006-01-14 13:20:43 -0800287static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 if (ci->flags & CPUFREQ_CONST_LOOPS)
290 return;
291
292 if (!l_p_j_ref_freq) {
293 l_p_j_ref = loops_per_jiffy;
294 l_p_j_ref_freq = ci->old;
Joe Perchesa4a9df52007-11-19 17:48:06 -0800295 dprintk("saving %lu as reference value for loops_per_jiffy; "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530296 "freq is %u kHz\n", l_p_j_ref, l_p_j_ref_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298 if ((val == CPUFREQ_PRECHANGE && ci->old < ci->new) ||
299 (val == CPUFREQ_POSTCHANGE && ci->old > ci->new) ||
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -0700300 (val == CPUFREQ_RESUMECHANGE || val == CPUFREQ_SUSPENDCHANGE)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530301 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
302 ci->new);
Joe Perchesa4a9df52007-11-19 17:48:06 -0800303 dprintk("scaling loops_per_jiffy to %lu "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530304 "for frequency %u kHz\n", loops_per_jiffy, ci->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
306}
307#else
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530308static inline void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
309{
310 return;
311}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312#endif
313
314
315/**
Dave Jonese4472cb2006-01-31 15:53:55 -0800316 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
317 * on frequency transition.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 *
Dave Jonese4472cb2006-01-31 15:53:55 -0800319 * This function calls the transition notifiers and the "adjust_jiffies"
320 * function. It is called twice on all CPU frequency changes that have
Dave Jones32ee8c32006-02-28 00:43:23 -0500321 * external effects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 */
323void cpufreq_notify_transition(struct cpufreq_freqs *freqs, unsigned int state)
324{
Dave Jonese4472cb2006-01-31 15:53:55 -0800325 struct cpufreq_policy *policy;
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 BUG_ON(irqs_disabled());
328
329 freqs->flags = cpufreq_driver->flags;
Dave Jonese4472cb2006-01-31 15:53:55 -0800330 dprintk("notification %u of frequency transition to %u kHz\n",
331 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Mike Travis7a6aedf2008-03-25 15:06:53 -0700333 policy = per_cpu(cpufreq_cpu_data, freqs->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 switch (state) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 case CPUFREQ_PRECHANGE:
Dave Jones32ee8c32006-02-28 00:43:23 -0500337 /* detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800338 * which is not equal to what the cpufreq core thinks is
339 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 */
341 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800342 if ((policy) && (policy->cpu == freqs->cpu) &&
343 (policy->cur) && (policy->cur != freqs->old)) {
Jan Beulichb10eec22006-04-28 13:47:13 +0200344 dprintk("Warning: CPU frequency is"
Dave Jonese4472cb2006-01-31 15:53:55 -0800345 " %u, cpufreq assumed %u kHz.\n",
346 freqs->old, policy->cur);
347 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700350 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800351 CPUFREQ_PRECHANGE, freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
353 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 case CPUFREQ_POSTCHANGE:
356 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700357 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800358 CPUFREQ_POSTCHANGE, freqs);
Dave Jonese4472cb2006-01-31 15:53:55 -0800359 if (likely(policy) && likely(policy->cpu == freqs->cpu))
360 policy->cur = freqs->new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 break;
362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364EXPORT_SYMBOL_GPL(cpufreq_notify_transition);
365
366
367
368/*********************************************************************
369 * SYSFS INTERFACE *
370 *********************************************************************/
371
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700372static struct cpufreq_governor *__find_governor(const char *str_governor)
373{
374 struct cpufreq_governor *t;
375
376 list_for_each_entry(t, &cpufreq_governor_list, governor_list)
Dave Jones29464f22009-01-18 01:37:11 -0500377 if (!strnicmp(str_governor, t->name, CPUFREQ_NAME_LEN))
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700378 return t;
379
380 return NULL;
381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383/**
384 * cpufreq_parse_governor - parse a governor string
385 */
Dave Jones905d77c2008-03-05 14:28:32 -0500386static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 struct cpufreq_governor **governor)
388{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700389 int err = -EINVAL;
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (!cpufreq_driver)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700392 goto out;
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (cpufreq_driver->setpolicy) {
395 if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
396 *policy = CPUFREQ_POLICY_PERFORMANCE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700397 err = 0;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530398 } else if (!strnicmp(str_governor, "powersave",
399 CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 *policy = CPUFREQ_POLICY_POWERSAVE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700401 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700403 } else if (cpufreq_driver->target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700405
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800406 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700407
408 t = __find_governor(str_governor);
409
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700410 if (t == NULL) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530411 char *name = kasprintf(GFP_KERNEL, "cpufreq_%s",
412 str_governor);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700413
414 if (name) {
415 int ret;
416
417 mutex_unlock(&cpufreq_governor_mutex);
Chris Wright326f6a52008-06-06 21:26:02 -0700418 ret = request_module("%s", name);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700419 mutex_lock(&cpufreq_governor_mutex);
420
421 if (ret == 0)
422 t = __find_governor(str_governor);
423 }
424
425 kfree(name);
426 }
427
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700428 if (t != NULL) {
429 *governor = t;
430 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700432
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800433 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
Dave Jones29464f22009-01-18 01:37:11 -0500435out:
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700436 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530441 * cpufreq_per_cpu_attr_read() / show_##file_name() -
442 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 *
444 * Write out information from cpufreq_driver->policy[cpu]; object must be
445 * "unsigned int".
446 */
447
Dave Jones32ee8c32006-02-28 00:43:23 -0500448#define show_one(file_name, object) \
449static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500450(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500451{ \
Dave Jones29464f22009-01-18 01:37:11 -0500452 return sprintf(buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
455show_one(cpuinfo_min_freq, cpuinfo.min_freq);
456show_one(cpuinfo_max_freq, cpuinfo.max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100457show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458show_one(scaling_min_freq, min);
459show_one(scaling_max_freq, max);
460show_one(scaling_cur_freq, cur);
461
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530462static int __cpufreq_set_policy(struct cpufreq_policy *data,
463 struct cpufreq_policy *policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/**
466 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
467 */
468#define store_one(file_name, object) \
469static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500470(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{ \
472 unsigned int ret = -EINVAL; \
473 struct cpufreq_policy new_policy; \
474 \
475 ret = cpufreq_get_policy(&new_policy, policy->cpu); \
476 if (ret) \
477 return -EINVAL; \
478 \
Dave Jones29464f22009-01-18 01:37:11 -0500479 ret = sscanf(buf, "%u", &new_policy.object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (ret != 1) \
481 return -EINVAL; \
482 \
Thomas Renninger7970e082006-04-13 15:14:04 +0200483 ret = __cpufreq_set_policy(policy, &new_policy); \
484 policy->user_policy.object = policy->object; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 \
486 return ret ? ret : count; \
487}
488
Dave Jones29464f22009-01-18 01:37:11 -0500489store_one(scaling_min_freq, min);
490store_one(scaling_max_freq, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492/**
493 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
494 */
Dave Jones905d77c2008-03-05 14:28:32 -0500495static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
496 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800498 unsigned int cur_freq = __cpufreq_get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (!cur_freq)
500 return sprintf(buf, "<unknown>");
501 return sprintf(buf, "%u\n", cur_freq);
502}
503
504
505/**
506 * show_scaling_governor - show the current policy for the specified CPU
507 */
Dave Jones905d77c2008-03-05 14:28:32 -0500508static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Dave Jones29464f22009-01-18 01:37:11 -0500510 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return sprintf(buf, "powersave\n");
512 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
513 return sprintf(buf, "performance\n");
514 else if (policy->governor)
Dave Jones29464f22009-01-18 01:37:11 -0500515 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n",
516 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return -EINVAL;
518}
519
520
521/**
522 * store_scaling_governor - store policy for the specified CPU
523 */
Dave Jones905d77c2008-03-05 14:28:32 -0500524static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
525 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 unsigned int ret = -EINVAL;
528 char str_governor[16];
529 struct cpufreq_policy new_policy;
530
531 ret = cpufreq_get_policy(&new_policy, policy->cpu);
532 if (ret)
533 return ret;
534
Dave Jones29464f22009-01-18 01:37:11 -0500535 ret = sscanf(buf, "%15s", str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (ret != 1)
537 return -EINVAL;
538
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530539 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
540 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return -EINVAL;
542
Thomas Renninger7970e082006-04-13 15:14:04 +0200543 /* Do not use cpufreq_set_policy here or the user_policy.max
544 will be wrongly overridden */
Thomas Renninger7970e082006-04-13 15:14:04 +0200545 ret = __cpufreq_set_policy(policy, &new_policy);
546
547 policy->user_policy.policy = policy->policy;
548 policy->user_policy.governor = policy->governor;
Thomas Renninger7970e082006-04-13 15:14:04 +0200549
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530550 if (ret)
551 return ret;
552 else
553 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
556/**
557 * show_scaling_driver - show the cpufreq driver currently loaded
558 */
Dave Jones905d77c2008-03-05 14:28:32 -0500559static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", cpufreq_driver->name);
562}
563
564/**
565 * show_scaling_available_governors - show the available CPUfreq governors
566 */
Dave Jones905d77c2008-03-05 14:28:32 -0500567static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
568 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 ssize_t i = 0;
571 struct cpufreq_governor *t;
572
573 if (!cpufreq_driver->target) {
574 i += sprintf(buf, "performance powersave");
575 goto out;
576 }
577
578 list_for_each_entry(t, &cpufreq_governor_list, governor_list) {
Dave Jones29464f22009-01-18 01:37:11 -0500579 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
580 - (CPUFREQ_NAME_LEN + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 goto out;
582 i += scnprintf(&buf[i], CPUFREQ_NAME_LEN, "%s ", t->name);
583 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500584out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 i += sprintf(&buf[i], "\n");
586 return i;
587}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700588
Rusty Russell835481d2009-01-04 05:18:06 -0800589static ssize_t show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
591 ssize_t i = 0;
592 unsigned int cpu;
593
Rusty Russell835481d2009-01-04 05:18:06 -0800594 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (i)
596 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
597 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
598 if (i >= (PAGE_SIZE - 5))
Dave Jones29464f22009-01-18 01:37:11 -0500599 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601 i += sprintf(&buf[i], "\n");
602 return i;
603}
604
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700605/**
606 * show_related_cpus - show the CPUs affected by each transition even if
607 * hw coordination is in use
608 */
609static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
610{
Rusty Russell835481d2009-01-04 05:18:06 -0800611 if (cpumask_empty(policy->related_cpus))
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700612 return show_cpus(policy->cpus, buf);
613 return show_cpus(policy->related_cpus, buf);
614}
615
616/**
617 * show_affected_cpus - show the CPUs affected by each transition
618 */
619static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
620{
621 return show_cpus(policy->cpus, buf);
622}
623
Venki Pallipadi9e769882007-10-26 10:18:21 -0700624static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500625 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700626{
627 unsigned int freq = 0;
628 unsigned int ret;
629
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700630 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700631 return -EINVAL;
632
633 ret = sscanf(buf, "%u", &freq);
634 if (ret != 1)
635 return -EINVAL;
636
637 policy->governor->store_setspeed(policy, freq);
638
639 return count;
640}
641
642static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
643{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700644 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700645 return sprintf(buf, "<unsupported>\n");
646
647 return policy->governor->show_setspeed(policy, buf);
648}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650#define define_one_ro(_name) \
651static struct freq_attr _name = \
652__ATTR(_name, 0444, show_##_name, NULL)
653
654#define define_one_ro0400(_name) \
655static struct freq_attr _name = \
656__ATTR(_name, 0400, show_##_name, NULL)
657
658#define define_one_rw(_name) \
659static struct freq_attr _name = \
660__ATTR(_name, 0644, show_##_name, store_##_name)
661
662define_one_ro0400(cpuinfo_cur_freq);
663define_one_ro(cpuinfo_min_freq);
664define_one_ro(cpuinfo_max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100665define_one_ro(cpuinfo_transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666define_one_ro(scaling_available_governors);
667define_one_ro(scaling_driver);
668define_one_ro(scaling_cur_freq);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700669define_one_ro(related_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670define_one_ro(affected_cpus);
671define_one_rw(scaling_min_freq);
672define_one_rw(scaling_max_freq);
673define_one_rw(scaling_governor);
Venki Pallipadi9e769882007-10-26 10:18:21 -0700674define_one_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Dave Jones905d77c2008-03-05 14:28:32 -0500676static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 &cpuinfo_min_freq.attr,
678 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100679 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 &scaling_min_freq.attr,
681 &scaling_max_freq.attr,
682 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700683 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 &scaling_governor.attr,
685 &scaling_driver.attr,
686 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700687 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 NULL
689};
690
Thomas Renninger8aa84ad2009-07-24 15:25:05 +0200691struct kobject *cpufreq_global_kobject;
692EXPORT_SYMBOL(cpufreq_global_kobject);
693
Dave Jones29464f22009-01-18 01:37:11 -0500694#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
695#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Dave Jones29464f22009-01-18 01:37:11 -0500697static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Dave Jones905d77c2008-03-05 14:28:32 -0500699 struct cpufreq_policy *policy = to_policy(kobj);
700 struct freq_attr *fattr = to_attr(attr);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500701 ssize_t ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 policy = cpufreq_cpu_get(policy->cpu);
703 if (!policy)
Dave Jones0db4a8a2008-03-05 14:20:57 -0500704 goto no_policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800705
706 if (lock_policy_rwsem_read(policy->cpu) < 0)
Dave Jones0db4a8a2008-03-05 14:20:57 -0500707 goto fail;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800708
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530709 if (fattr->show)
710 ret = fattr->show(policy, buf);
711 else
712 ret = -EIO;
713
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800714 unlock_policy_rwsem_read(policy->cpu);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500715fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 cpufreq_cpu_put(policy);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500717no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return ret;
719}
720
Dave Jones905d77c2008-03-05 14:28:32 -0500721static ssize_t store(struct kobject *kobj, struct attribute *attr,
722 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Dave Jones905d77c2008-03-05 14:28:32 -0500724 struct cpufreq_policy *policy = to_policy(kobj);
725 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500726 ssize_t ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 policy = cpufreq_cpu_get(policy->cpu);
728 if (!policy)
Dave Jonesa07530b2008-03-05 14:22:25 -0500729 goto no_policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800730
731 if (lock_policy_rwsem_write(policy->cpu) < 0)
Dave Jonesa07530b2008-03-05 14:22:25 -0500732 goto fail;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800733
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530734 if (fattr->store)
735 ret = fattr->store(policy, buf, count);
736 else
737 ret = -EIO;
738
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800739 unlock_policy_rwsem_write(policy->cpu);
Dave Jonesa07530b2008-03-05 14:22:25 -0500740fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 cpufreq_cpu_put(policy);
Dave Jonesa07530b2008-03-05 14:22:25 -0500742no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return ret;
744}
745
Dave Jones905d77c2008-03-05 14:28:32 -0500746static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Dave Jones905d77c2008-03-05 14:28:32 -0500748 struct cpufreq_policy *policy = to_policy(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 dprintk("last reference is dropped\n");
750 complete(&policy->kobj_unregister);
751}
752
753static struct sysfs_ops sysfs_ops = {
754 .show = show,
755 .store = store,
756};
757
758static struct kobj_type ktype_cpufreq = {
759 .sysfs_ops = &sysfs_ops,
760 .default_attrs = default_attrs,
761 .release = cpufreq_sysfs_release,
762};
763
Thomas Renninger4bfa0422009-07-24 15:25:03 +0200764/*
765 * Returns:
766 * Negative: Failure
767 * 0: Success
768 * Positive: When we have a managed CPU and the sysfs got symlinked
769 */
Dave Jonesecf7e462009-07-08 18:48:47 -0400770int cpufreq_add_dev_policy(unsigned int cpu, struct cpufreq_policy *policy,
771 struct sys_device *sys_dev)
772{
773 int ret = 0;
774#ifdef CONFIG_SMP
775 unsigned long flags;
776 unsigned int j;
Dave Jonesecf7e462009-07-08 18:48:47 -0400777#ifdef CONFIG_HOTPLUG_CPU
Dmitry Monakhove77b89f2009-10-05 00:38:55 +0400778 struct cpufreq_governor *gov;
779
780 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
781 if (gov) {
782 policy->governor = gov;
Dave Jonesecf7e462009-07-08 18:48:47 -0400783 dprintk("Restoring governor %s for cpu %d\n",
784 policy->governor->name, cpu);
785 }
786#endif
787
788 for_each_cpu(j, policy->cpus) {
789 struct cpufreq_policy *managed_policy;
790
791 if (cpu == j)
792 continue;
793
794 /* Check for existing affected CPUs.
795 * They may not be aware of it due to CPU Hotplug.
796 * cpufreq_cpu_put is called when the device is removed
797 * in __cpufreq_remove_dev()
798 */
799 managed_policy = cpufreq_cpu_get(j);
800 if (unlikely(managed_policy)) {
801
802 /* Set proper policy_cpu */
803 unlock_policy_rwsem_write(cpu);
804 per_cpu(policy_cpu, cpu) = managed_policy->cpu;
805
806 if (lock_policy_rwsem_write(cpu) < 0) {
807 /* Should not go through policy unlock path */
808 if (cpufreq_driver->exit)
809 cpufreq_driver->exit(policy);
810 cpufreq_cpu_put(managed_policy);
811 return -EBUSY;
812 }
813
814 spin_lock_irqsave(&cpufreq_driver_lock, flags);
815 cpumask_copy(managed_policy->cpus, policy->cpus);
816 per_cpu(cpufreq_cpu_data, cpu) = managed_policy;
817 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
818
819 dprintk("CPU already managed, adding link\n");
820 ret = sysfs_create_link(&sys_dev->kobj,
821 &managed_policy->kobj,
822 "cpufreq");
823 if (ret)
824 cpufreq_cpu_put(managed_policy);
825 /*
826 * Success. We only needed to be added to the mask.
827 * Call driver->exit() because only the cpu parent of
828 * the kobj needed to call init().
829 */
830 if (cpufreq_driver->exit)
831 cpufreq_driver->exit(policy);
Thomas Renninger4bfa0422009-07-24 15:25:03 +0200832
833 if (!ret)
834 return 1;
835 else
836 return ret;
Dave Jonesecf7e462009-07-08 18:48:47 -0400837 }
838 }
839#endif
840 return ret;
841}
842
843
Dave Jones19d6f7e2009-07-08 17:35:39 -0400844/* symlink affected CPUs */
845int cpufreq_add_dev_symlink(unsigned int cpu, struct cpufreq_policy *policy)
846{
847 unsigned int j;
848 int ret = 0;
849
850 for_each_cpu(j, policy->cpus) {
851 struct cpufreq_policy *managed_policy;
852 struct sys_device *cpu_sys_dev;
853
854 if (j == cpu)
855 continue;
856 if (!cpu_online(j))
857 continue;
858
859 dprintk("CPU %u already managed, adding link\n", j);
860 managed_policy = cpufreq_cpu_get(cpu);
861 cpu_sys_dev = get_cpu_sysdev(j);
862 ret = sysfs_create_link(&cpu_sys_dev->kobj, &policy->kobj,
863 "cpufreq");
864 if (ret) {
865 cpufreq_cpu_put(managed_policy);
866 return ret;
867 }
868 }
869 return ret;
870}
871
Dave Jones909a6942009-07-08 18:05:42 -0400872int cpufreq_add_dev_interface(unsigned int cpu, struct cpufreq_policy *policy,
873 struct sys_device *sys_dev)
874{
Dave Jonesecf7e462009-07-08 18:48:47 -0400875 struct cpufreq_policy new_policy;
Dave Jones909a6942009-07-08 18:05:42 -0400876 struct freq_attr **drv_attr;
877 unsigned long flags;
878 int ret = 0;
879 unsigned int j;
880
881 /* prepare interface data */
882 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
883 &sys_dev->kobj, "cpufreq");
884 if (ret)
885 return ret;
886
887 /* set up files for this cpu device */
888 drv_attr = cpufreq_driver->attr;
889 while ((drv_attr) && (*drv_attr)) {
890 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
891 if (ret)
892 goto err_out_kobj_put;
893 drv_attr++;
894 }
895 if (cpufreq_driver->get) {
896 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
897 if (ret)
898 goto err_out_kobj_put;
899 }
900 if (cpufreq_driver->target) {
901 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
902 if (ret)
903 goto err_out_kobj_put;
904 }
905
906 spin_lock_irqsave(&cpufreq_driver_lock, flags);
907 for_each_cpu(j, policy->cpus) {
908 if (!cpu_online(j))
909 continue;
910 per_cpu(cpufreq_cpu_data, j) = policy;
911 per_cpu(policy_cpu, j) = policy->cpu;
912 }
913 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
914
915 ret = cpufreq_add_dev_symlink(cpu, policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400916 if (ret)
917 goto err_out_kobj_put;
918
919 memcpy(&new_policy, policy, sizeof(struct cpufreq_policy));
920 /* assure that the starting sequence is run in __cpufreq_set_policy */
921 policy->governor = NULL;
922
923 /* set default policy */
924 ret = __cpufreq_set_policy(policy, &new_policy);
925 policy->user_policy.policy = policy->policy;
926 policy->user_policy.governor = policy->governor;
927
928 if (ret) {
929 dprintk("setting policy failed\n");
930 if (cpufreq_driver->exit)
931 cpufreq_driver->exit(policy);
932 }
Dave Jones909a6942009-07-08 18:05:42 -0400933 return ret;
934
935err_out_kobj_put:
936 kobject_put(&policy->kobj);
937 wait_for_completion(&policy->kobj_unregister);
938 return ret;
939}
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942/**
943 * cpufreq_add_dev - add a CPU device
944 *
Dave Jones32ee8c32006-02-28 00:43:23 -0500945 * Adds the cpufreq interface for a CPU device.
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -0400946 *
947 * The Oracle says: try running cpufreq registration/unregistration concurrently
948 * with with cpu hotplugging and all hell will break loose. Tried to clean this
949 * mess up, but more thorough testing is needed. - Mathieu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 */
Dave Jones905d77c2008-03-05 14:28:32 -0500951static int cpufreq_add_dev(struct sys_device *sys_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
953 unsigned int cpu = sys_dev->id;
954 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 unsigned long flags;
957 unsigned int j;
958
Ashok Rajc32b6b82005-10-30 14:59:54 -0800959 if (cpu_is_offline(cpu))
960 return 0;
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 cpufreq_debug_disable_ratelimit();
963 dprintk("adding CPU %u\n", cpu);
964
965#ifdef CONFIG_SMP
966 /* check whether a different CPU already registered this
967 * CPU because it is in the same boat. */
968 policy = cpufreq_cpu_get(cpu);
969 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500970 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 cpufreq_debug_enable_ratelimit();
972 return 0;
973 }
974#endif
975
976 if (!try_module_get(cpufreq_driver->owner)) {
977 ret = -EINVAL;
978 goto module_out;
979 }
980
Dave Jones059019a2009-07-08 16:30:03 -0400981 ret = -ENOMEM;
Dave Jonese98df502005-10-20 15:17:43 -0700982 policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL);
Dave Jones059019a2009-07-08 16:30:03 -0400983 if (!policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 goto nomem_out;
Dave Jones059019a2009-07-08 16:30:03 -0400985
986 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -0400987 goto err_free_policy;
Dave Jones059019a2009-07-08 16:30:03 -0400988
989 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -0400990 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 policy->cpu = cpu;
Rusty Russell835481d2009-01-04 05:18:06 -0800993 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800995 /* Initially set CPU itself as the policy_cpu */
996 per_cpu(policy_cpu, cpu) = cpu;
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -0400997 ret = (lock_policy_rwsem_write(cpu) < 0);
998 WARN_ON(ret);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +00001001 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Thomas Renninger8122c6c2007-10-02 13:28:09 -07001003 /* Set governor before ->init, so that driver could check it */
1004 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 /* call driver. From then on the cpufreq must be able
1006 * to accept all calls to ->verify and ->setpolicy for this CPU
1007 */
1008 ret = cpufreq_driver->init(policy);
1009 if (ret) {
1010 dprintk("initialization failed\n");
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -04001011 goto err_unlock_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
Mike Chan187d9f42008-12-04 12:19:17 -08001013 policy->user_policy.min = policy->min;
1014 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Thomas Renningera1531ac2008-07-29 22:32:58 -07001016 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1017 CPUFREQ_START, policy);
1018
Dave Jonesecf7e462009-07-08 18:48:47 -04001019 ret = cpufreq_add_dev_policy(cpu, policy, sys_dev);
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001020 if (ret) {
1021 if (ret > 0)
1022 /* This is a managed cpu, symlink created,
1023 exit with 0 */
1024 ret = 0;
Dave Jonesecf7e462009-07-08 18:48:47 -04001025 goto err_unlock_policy;
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Dave Jones909a6942009-07-08 18:05:42 -04001028 ret = cpufreq_add_dev_interface(cpu, policy, sys_dev);
Dave Jones19d6f7e2009-07-08 17:35:39 -04001029 if (ret)
1030 goto err_out_unregister;
Dave Jones8ff69732006-03-05 03:37:23 -05001031
Lothar Waßmanndca02612008-05-29 17:54:52 +02001032 unlock_policy_rwsem_write(cpu);
1033
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001034 kobject_uevent(&policy->kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 module_put(cpufreq_driver->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 dprintk("initialization complete\n");
1037 cpufreq_debug_enable_ratelimit();
Dave Jones87c32272006-03-29 01:48:37 -05001038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return 0;
1040
1041
1042err_out_unregister:
1043 spin_lock_irqsave(&cpufreq_driver_lock, flags);
Rusty Russell835481d2009-01-04 05:18:06 -08001044 for_each_cpu(j, policy->cpus)
Mike Travis7a6aedf2008-03-25 15:06:53 -07001045 per_cpu(cpufreq_cpu_data, j) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1047
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -08001048 kobject_put(&policy->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 wait_for_completion(&policy->kobj_unregister);
1050
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -04001051err_unlock_policy:
Dave Jones45709112008-03-05 14:07:34 -05001052 unlock_policy_rwsem_write(cpu);
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -04001053err_free_cpumask:
1054 free_cpumask_var(policy->cpus);
1055err_free_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 kfree(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057nomem_out:
1058 module_put(cpufreq_driver->owner);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001059module_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 cpufreq_debug_enable_ratelimit();
1061 return ret;
1062}
1063
1064
1065/**
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001066 * __cpufreq_remove_dev - remove a CPU device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 *
1068 * Removes the cpufreq interface for a CPU device.
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001069 * Caller should already have policy_rwsem in write mode for this CPU.
1070 * This routine frees the rwsem before returning.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 */
Dave Jones905d77c2008-03-05 14:28:32 -05001072static int __cpufreq_remove_dev(struct sys_device *sys_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
1074 unsigned int cpu = sys_dev->id;
1075 unsigned long flags;
1076 struct cpufreq_policy *data;
1077#ifdef CONFIG_SMP
Grant Coadye738cf62005-11-21 21:32:28 -08001078 struct sys_device *cpu_sys_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 unsigned int j;
1080#endif
1081
1082 cpufreq_debug_disable_ratelimit();
1083 dprintk("unregistering CPU %u\n", cpu);
1084
1085 spin_lock_irqsave(&cpufreq_driver_lock, flags);
Mike Travis7a6aedf2008-03-25 15:06:53 -07001086 data = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 if (!data) {
1089 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 cpufreq_debug_enable_ratelimit();
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001091 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return -EINVAL;
1093 }
Mike Travis7a6aedf2008-03-25 15:06:53 -07001094 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096
1097#ifdef CONFIG_SMP
1098 /* if this isn't the CPU which is the parent of the kobj, we
Dave Jones32ee8c32006-02-28 00:43:23 -05001099 * only need to unlink, put and exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 */
1101 if (unlikely(cpu != data->cpu)) {
1102 dprintk("removing link\n");
Rusty Russell835481d2009-01-04 05:18:06 -08001103 cpumask_clear_cpu(cpu, data->cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1105 sysfs_remove_link(&sys_dev->kobj, "cpufreq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 cpufreq_cpu_put(data);
1107 cpufreq_debug_enable_ratelimit();
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001108 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return 0;
1110 }
1111#endif
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113#ifdef CONFIG_SMP
Thomas Renninger084f3492007-07-09 11:35:28 -07001114
1115#ifdef CONFIG_HOTPLUG_CPU
Dmitry Monakhove77b89f2009-10-05 00:38:55 +04001116 strncpy(per_cpu(cpufreq_cpu_governor, cpu), data->governor->name,
1117 CPUFREQ_NAME_LEN);
Thomas Renninger084f3492007-07-09 11:35:28 -07001118#endif
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /* if we have other CPUs still registered, we need to unlink them,
1121 * or else wait_for_completion below will lock up. Clean the
Mike Travis7a6aedf2008-03-25 15:06:53 -07001122 * per_cpu(cpufreq_cpu_data) while holding the lock, and remove
1123 * the sysfs links afterwards.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 */
Rusty Russell835481d2009-01-04 05:18:06 -08001125 if (unlikely(cpumask_weight(data->cpus) > 1)) {
1126 for_each_cpu(j, data->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (j == cpu)
1128 continue;
Mike Travis7a6aedf2008-03-25 15:06:53 -07001129 per_cpu(cpufreq_cpu_data, j) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131 }
1132
1133 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1134
Rusty Russell835481d2009-01-04 05:18:06 -08001135 if (unlikely(cpumask_weight(data->cpus) > 1)) {
1136 for_each_cpu(j, data->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (j == cpu)
1138 continue;
1139 dprintk("removing link for cpu %u\n", j);
Thomas Renninger084f3492007-07-09 11:35:28 -07001140#ifdef CONFIG_HOTPLUG_CPU
Dmitry Monakhove77b89f2009-10-05 00:38:55 +04001141 strncpy(per_cpu(cpufreq_cpu_governor, j),
1142 data->governor->name, CPUFREQ_NAME_LEN);
Thomas Renninger084f3492007-07-09 11:35:28 -07001143#endif
Ashok Rajd434fca2005-10-30 14:59:52 -08001144 cpu_sys_dev = get_cpu_sysdev(j);
1145 sysfs_remove_link(&cpu_sys_dev->kobj, "cpufreq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 cpufreq_cpu_put(data);
1147 }
1148 }
1149#else
1150 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1151#endif
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (cpufreq_driver->target)
1154 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 kobject_put(&data->kobj);
1157
1158 /* we need to make sure that the underlying kobj is actually
Dave Jones32ee8c32006-02-28 00:43:23 -05001159 * not referenced anymore by anybody before we proceed with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 * unloading.
1161 */
1162 dprintk("waiting for dropping of refcount\n");
1163 wait_for_completion(&data->kobj_unregister);
1164 dprintk("wait complete\n");
1165
1166 if (cpufreq_driver->exit)
1167 cpufreq_driver->exit(data);
1168
venkatesh.pallipadi@intel.com7d26e2d2009-07-02 17:08:30 -07001169 unlock_policy_rwsem_write(cpu);
1170
Rusty Russell835481d2009-01-04 05:18:06 -08001171 free_cpumask_var(data->related_cpus);
1172 free_cpumask_var(data->cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 kfree(data);
Rusty Russell835481d2009-01-04 05:18:06 -08001174 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 cpufreq_debug_enable_ratelimit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return 0;
1178}
1179
1180
Dave Jones905d77c2008-03-05 14:28:32 -05001181static int cpufreq_remove_dev(struct sys_device *sys_dev)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001182{
1183 unsigned int cpu = sys_dev->id;
1184 int retval;
Venki Pallipadiec282972007-03-26 12:03:19 -07001185
1186 if (cpu_is_offline(cpu))
1187 return 0;
1188
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001189 if (unlikely(lock_policy_rwsem_write(cpu)))
1190 BUG();
1191
1192 retval = __cpufreq_remove_dev(sys_dev);
1193 return retval;
1194}
1195
1196
David Howells65f27f32006-11-22 14:55:48 +00001197static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
David Howells65f27f32006-11-22 14:55:48 +00001199 struct cpufreq_policy *policy =
1200 container_of(work, struct cpufreq_policy, update);
1201 unsigned int cpu = policy->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 dprintk("handle_update for cpu %u called\n", cpu);
1203 cpufreq_update_policy(cpu);
1204}
1205
1206/**
1207 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're in deep trouble.
1208 * @cpu: cpu number
1209 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1210 * @new_freq: CPU frequency the CPU actually runs at
1211 *
Dave Jones29464f22009-01-18 01:37:11 -05001212 * We adjust to current frequency first, and need to clean up later.
1213 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301215static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1216 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
1218 struct cpufreq_freqs freqs;
1219
Jan Beulichb10eec22006-04-28 13:47:13 +02001220 dprintk("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1222
1223 freqs.cpu = cpu;
1224 freqs.old = old_freq;
1225 freqs.new = new_freq;
1226 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1227 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
1228}
1229
1230
Dave Jones32ee8c32006-02-28 00:43:23 -05001231/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301232 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001233 * @cpu: CPU number
1234 *
1235 * This is the last known freq, without actually getting it from the driver.
1236 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1237 */
1238unsigned int cpufreq_quick_get(unsigned int cpu)
1239{
1240 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301241 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001242
1243 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301244 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001245 cpufreq_cpu_put(policy);
1246 }
1247
Dave Jones4d34a672008-02-07 16:33:49 -05001248 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001249}
1250EXPORT_SYMBOL(cpufreq_quick_get);
1251
1252
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001253static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001255 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301256 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001259 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301261 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301263 if (ret_freq && policy->cur &&
1264 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1265 /* verify no discrepancy between actual and
1266 saved value exists */
1267 if (unlikely(ret_freq != policy->cur)) {
1268 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 schedule_work(&policy->update);
1270 }
1271 }
1272
Dave Jones4d34a672008-02-07 16:33:49 -05001273 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001274}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001276/**
1277 * cpufreq_get - get the current CPU frequency (in kHz)
1278 * @cpu: CPU number
1279 *
1280 * Get the CPU current (static) CPU frequency
1281 */
1282unsigned int cpufreq_get(unsigned int cpu)
1283{
1284 unsigned int ret_freq = 0;
1285 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1286
1287 if (!policy)
1288 goto out;
1289
1290 if (unlikely(lock_policy_rwsem_read(cpu)))
1291 goto out_policy;
1292
1293 ret_freq = __cpufreq_get(cpu);
1294
1295 unlock_policy_rwsem_read(cpu);
1296
1297out_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 cpufreq_cpu_put(policy);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001299out:
Dave Jones4d34a672008-02-07 16:33:49 -05001300 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302EXPORT_SYMBOL(cpufreq_get);
1303
1304
1305/**
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001306 * cpufreq_suspend - let the low level driver prepare for suspend
1307 */
1308
Dave Jones905d77c2008-03-05 14:28:32 -05001309static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001310{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301311 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001312
Dave Jones4bc5d342009-08-04 14:03:25 -04001313 int cpu = sysdev->id;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001314 struct cpufreq_policy *cpu_policy;
1315
Dave Jones0e37b152006-09-26 23:02:34 -04001316 dprintk("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001317
1318 if (!cpu_online(cpu))
1319 return 0;
1320
1321 /* we may be lax here as interrupts are off. Nonetheless
1322 * we need to grab the correct cpu policy, as to check
1323 * whether we really run on this CPU.
1324 */
1325
1326 cpu_policy = cpufreq_cpu_get(cpu);
1327 if (!cpu_policy)
1328 return -EINVAL;
1329
1330 /* only handle each CPU group once */
Dave Jonesc9060492008-02-07 16:32:18 -05001331 if (unlikely(cpu_policy->cpu != cpu))
1332 goto out;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001333
1334 if (cpufreq_driver->suspend) {
Bernard Blackhame00d9962005-07-07 17:56:42 -07001335 ret = cpufreq_driver->suspend(cpu_policy, pmsg);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001336 if (ret)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001337 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
1338 "step on CPU %u\n", cpu_policy->cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001339 }
1340
Dave Jones7d5e3502006-02-02 17:03:42 -05001341out:
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001342 cpufreq_cpu_put(cpu_policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001343 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001344}
1345
1346/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 * cpufreq_resume - restore proper CPU frequency handling after resume
1348 *
1349 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001350 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1351 * restored. It will verify that the current freq is in sync with
1352 * what we believe it to be. This is a bit later than when it
1353 * should be, but nonethteless it's better than calling
1354 * cpufreq_driver->get() here which might re-enable interrupts...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 */
Dave Jones905d77c2008-03-05 14:28:32 -05001356static int cpufreq_resume(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301358 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001359
Dave Jones4bc5d342009-08-04 14:03:25 -04001360 int cpu = sysdev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 struct cpufreq_policy *cpu_policy;
1362
1363 dprintk("resuming cpu %u\n", cpu);
1364
1365 if (!cpu_online(cpu))
1366 return 0;
1367
1368 /* we may be lax here as interrupts are off. Nonetheless
1369 * we need to grab the correct cpu policy, as to check
1370 * whether we really run on this CPU.
1371 */
1372
1373 cpu_policy = cpufreq_cpu_get(cpu);
1374 if (!cpu_policy)
1375 return -EINVAL;
1376
1377 /* only handle each CPU group once */
Dave Jonesc9060492008-02-07 16:32:18 -05001378 if (unlikely(cpu_policy->cpu != cpu))
1379 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 if (cpufreq_driver->resume) {
1382 ret = cpufreq_driver->resume(cpu_policy);
1383 if (ret) {
1384 printk(KERN_ERR "cpufreq: resume failed in ->resume "
1385 "step on CPU %u\n", cpu_policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001386 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
1388 }
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 schedule_work(&cpu_policy->update);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001391
Dave Jonesc9060492008-02-07 16:32:18 -05001392fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 cpufreq_cpu_put(cpu_policy);
1394 return ret;
1395}
1396
1397static struct sysdev_driver cpufreq_sysdev_driver = {
1398 .add = cpufreq_add_dev,
1399 .remove = cpufreq_remove_dev,
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001400 .suspend = cpufreq_suspend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 .resume = cpufreq_resume,
1402};
1403
1404
1405/*********************************************************************
1406 * NOTIFIER LISTS INTERFACE *
1407 *********************************************************************/
1408
1409/**
1410 * cpufreq_register_notifier - register a driver with cpufreq
1411 * @nb: notifier function to register
1412 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1413 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001414 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 * are notified about clock rate changes (once before and once after
1416 * the transition), or a list of drivers that are notified about
1417 * changes in cpufreq policy.
1418 *
1419 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001420 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 */
1422int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1423{
1424 int ret;
1425
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001426 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 switch (list) {
1429 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001430 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001431 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 break;
1433 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001434 ret = blocking_notifier_chain_register(
1435 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 break;
1437 default:
1438 ret = -EINVAL;
1439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 return ret;
1442}
1443EXPORT_SYMBOL(cpufreq_register_notifier);
1444
1445
1446/**
1447 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1448 * @nb: notifier block to be unregistered
1449 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1450 *
1451 * Remove a driver from the CPU frequency notifier list.
1452 *
1453 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001454 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 */
1456int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1457{
1458 int ret;
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 switch (list) {
1461 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001462 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001463 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 break;
1465 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001466 ret = blocking_notifier_chain_unregister(
1467 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 break;
1469 default:
1470 ret = -EINVAL;
1471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 return ret;
1474}
1475EXPORT_SYMBOL(cpufreq_unregister_notifier);
1476
1477
1478/*********************************************************************
1479 * GOVERNORS *
1480 *********************************************************************/
1481
1482
1483int __cpufreq_driver_target(struct cpufreq_policy *policy,
1484 unsigned int target_freq,
1485 unsigned int relation)
1486{
1487 int retval = -EINVAL;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 dprintk("target for CPU %u: %u kHz, relation %u\n", policy->cpu,
1490 target_freq, relation);
1491 if (cpu_online(policy->cpu) && cpufreq_driver->target)
1492 retval = cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 return retval;
1495}
1496EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498int cpufreq_driver_target(struct cpufreq_policy *policy,
1499 unsigned int target_freq,
1500 unsigned int relation)
1501{
Julia Lawallf1829e42008-07-25 22:44:53 +02001502 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 policy = cpufreq_cpu_get(policy->cpu);
1505 if (!policy)
Julia Lawallf1829e42008-07-25 22:44:53 +02001506 goto no_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001508 if (unlikely(lock_policy_rwsem_write(policy->cpu)))
Julia Lawallf1829e42008-07-25 22:44:53 +02001509 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 ret = __cpufreq_driver_target(policy, target_freq, relation);
1512
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001513 unlock_policy_rwsem_write(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Julia Lawallf1829e42008-07-25 22:44:53 +02001515fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 cpufreq_cpu_put(policy);
Julia Lawallf1829e42008-07-25 22:44:53 +02001517no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 return ret;
1519}
1520EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1521
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -07001522int __cpufreq_driver_getavg(struct cpufreq_policy *policy, unsigned int cpu)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001523{
1524 int ret = 0;
1525
1526 policy = cpufreq_cpu_get(policy->cpu);
1527 if (!policy)
1528 return -EINVAL;
1529
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -07001530 if (cpu_online(cpu) && cpufreq_driver->getavg)
1531 ret = cpufreq_driver->getavg(policy, cpu);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001532
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001533 cpufreq_cpu_put(policy);
1534 return ret;
1535}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001536EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001537
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001538/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001539 * when "event" is CPUFREQ_GOV_LIMITS
1540 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301542static int __cpufreq_governor(struct cpufreq_policy *policy,
1543 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Dave Jonescc993ca2005-07-28 09:43:56 -07001545 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001546
1547 /* Only must be defined when default governor is known to have latency
1548 restrictions, like e.g. conservative or ondemand.
1549 That this is the case is already ensured in Kconfig
1550 */
1551#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1552 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1553#else
1554 struct cpufreq_governor *gov = NULL;
1555#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001556
1557 if (policy->governor->max_transition_latency &&
1558 policy->cpuinfo.transition_latency >
1559 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001560 if (!gov)
1561 return -EINVAL;
1562 else {
1563 printk(KERN_WARNING "%s governor failed, too long"
1564 " transition latency of HW, fallback"
1565 " to %s governor\n",
1566 policy->governor->name,
1567 gov->name);
1568 policy->governor = gov;
1569 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 if (!try_module_get(policy->governor->owner))
1573 return -EINVAL;
1574
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301575 dprintk("__cpufreq_governor for CPU %u, event %u\n",
1576 policy->cpu, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 ret = policy->governor->governor(policy, event);
1578
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301579 /* we keep one module reference alive for
1580 each CPU governed by this CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if ((event != CPUFREQ_GOV_START) || ret)
1582 module_put(policy->governor->owner);
1583 if ((event == CPUFREQ_GOV_STOP) && !ret)
1584 module_put(policy->governor->owner);
1585
1586 return ret;
1587}
1588
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590int cpufreq_register_governor(struct cpufreq_governor *governor)
1591{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001592 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 if (!governor)
1595 return -EINVAL;
1596
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001597 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001598
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001599 err = -EBUSY;
1600 if (__find_governor(governor->name) == NULL) {
1601 err = 0;
1602 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Dave Jones32ee8c32006-02-28 00:43:23 -05001605 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001606 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607}
1608EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1609
1610
1611void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1612{
1613 if (!governor)
1614 return;
1615
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001616 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001618 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 return;
1620}
1621EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1622
1623
1624
1625/*********************************************************************
1626 * POLICY INTERFACE *
1627 *********************************************************************/
1628
1629/**
1630 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05001631 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1632 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 *
1634 * Reads the current cpufreq policy.
1635 */
1636int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1637{
1638 struct cpufreq_policy *cpu_policy;
1639 if (!policy)
1640 return -EINVAL;
1641
1642 cpu_policy = cpufreq_cpu_get(cpu);
1643 if (!cpu_policy)
1644 return -EINVAL;
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 memcpy(policy, cpu_policy, sizeof(struct cpufreq_policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return 0;
1650}
1651EXPORT_SYMBOL(cpufreq_get_policy);
1652
1653
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001654/*
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301655 * data : current policy.
1656 * policy : policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001657 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301658static int __cpufreq_set_policy(struct cpufreq_policy *data,
1659 struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
1661 int ret = 0;
1662
1663 cpufreq_debug_disable_ratelimit();
1664 dprintk("setting new policy for CPU %u: %u - %u kHz\n", policy->cpu,
1665 policy->min, policy->max);
1666
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301667 memcpy(&policy->cpuinfo, &data->cpuinfo,
1668 sizeof(struct cpufreq_cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Yi Yang53391fa2008-01-30 13:33:34 +01001670 if (policy->min > data->max || policy->max < data->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001671 ret = -EINVAL;
1672 goto error_out;
1673 }
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 /* verify the cpu speed can be set within this limit */
1676 ret = cpufreq_driver->verify(policy);
1677 if (ret)
1678 goto error_out;
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001681 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1682 CPUFREQ_ADJUST, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001685 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1686 CPUFREQ_INCOMPATIBLE, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 /* verify the cpu speed can be set within this limit,
1689 which might be different to the first one */
1690 ret = cpufreq_driver->verify(policy);
Alan Sterne041c682006-03-27 01:16:30 -08001691 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001695 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1696 CPUFREQ_NOTIFY, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Dave Jones7d5e3502006-02-02 17:03:42 -05001698 data->min = policy->min;
1699 data->max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301701 dprintk("new min and max freqs are %u - %u kHz\n",
1702 data->min, data->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704 if (cpufreq_driver->setpolicy) {
1705 data->policy = policy->policy;
1706 dprintk("setting range\n");
1707 ret = cpufreq_driver->setpolicy(policy);
1708 } else {
1709 if (policy->governor != data->governor) {
1710 /* save old, working values */
1711 struct cpufreq_governor *old_gov = data->governor;
1712
1713 dprintk("governor switch\n");
1714
1715 /* end old governor */
Mathieu Desnoyers395913d2009-06-08 13:17:31 -04001716 if (data->governor) {
1717 /*
1718 * Need to release the rwsem around governor
1719 * stop due to lock dependency between
1720 * cancel_delayed_work_sync and the read lock
1721 * taken in the delayed work handler.
1722 */
1723 unlock_policy_rwsem_write(data->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
Mathieu Desnoyers395913d2009-06-08 13:17:31 -04001725 lock_policy_rwsem_write(data->cpu);
1726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 /* start new governor */
1729 data->governor = policy->governor;
1730 if (__cpufreq_governor(data, CPUFREQ_GOV_START)) {
1731 /* new governor failed, so re-start old one */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301732 dprintk("starting governor %s failed\n",
1733 data->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 if (old_gov) {
1735 data->governor = old_gov;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301736 __cpufreq_governor(data,
1737 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
1739 ret = -EINVAL;
1740 goto error_out;
1741 }
1742 /* might be a policy change, too, so fall through */
1743 }
1744 dprintk("governor: change or update limits\n");
1745 __cpufreq_governor(data, CPUFREQ_GOV_LIMITS);
1746 }
1747
Dave Jones7d5e3502006-02-02 17:03:42 -05001748error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 cpufreq_debug_enable_ratelimit();
1750 return ret;
1751}
1752
1753/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1755 * @cpu: CPU which shall be re-evaluated
1756 *
1757 * Usefull for policy notifiers which have different necessities
1758 * at different times.
1759 */
1760int cpufreq_update_policy(unsigned int cpu)
1761{
1762 struct cpufreq_policy *data = cpufreq_cpu_get(cpu);
1763 struct cpufreq_policy policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02001764 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Julia Lawallf1829e42008-07-25 22:44:53 +02001766 if (!data) {
1767 ret = -ENODEV;
1768 goto no_policy;
1769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Julia Lawallf1829e42008-07-25 22:44:53 +02001771 if (unlikely(lock_policy_rwsem_write(cpu))) {
1772 ret = -EINVAL;
1773 goto fail;
1774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
1776 dprintk("updating policy for CPU %u\n", cpu);
Dave Jones7d5e3502006-02-02 17:03:42 -05001777 memcpy(&policy, data, sizeof(struct cpufreq_policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 policy.min = data->user_policy.min;
1779 policy.max = data->user_policy.max;
1780 policy.policy = data->user_policy.policy;
1781 policy.governor = data->user_policy.governor;
1782
Thomas Renninger0961dd02006-01-26 18:46:33 +01001783 /* BIOS might change freq behind our back
1784 -> ask driver for current freq and notify governors about a change */
1785 if (cpufreq_driver->get) {
1786 policy.cur = cpufreq_driver->get(cpu);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001787 if (!data->cur) {
1788 dprintk("Driver did not initialize current freq");
1789 data->cur = policy.cur;
1790 } else {
1791 if (data->cur != policy.cur)
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301792 cpufreq_out_of_sync(cpu, data->cur,
1793 policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001794 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01001795 }
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 ret = __cpufreq_set_policy(data, &policy);
1798
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001799 unlock_policy_rwsem_write(cpu);
1800
Julia Lawallf1829e42008-07-25 22:44:53 +02001801fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 cpufreq_cpu_put(data);
Julia Lawallf1829e42008-07-25 22:44:53 +02001803no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return ret;
1805}
1806EXPORT_SYMBOL(cpufreq_update_policy);
1807
Satyam Sharmadd184a02007-10-02 13:28:14 -07001808static int __cpuinit cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08001809 unsigned long action, void *hcpu)
1810{
1811 unsigned int cpu = (unsigned long)hcpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001812 struct sys_device *sys_dev;
1813
1814 sys_dev = get_cpu_sysdev(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001815 if (sys_dev) {
1816 switch (action) {
1817 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001818 case CPU_ONLINE_FROZEN:
Ashok Rajc32b6b82005-10-30 14:59:54 -08001819 cpufreq_add_dev(sys_dev);
1820 break;
1821 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001822 case CPU_DOWN_PREPARE_FROZEN:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001823 if (unlikely(lock_policy_rwsem_write(cpu)))
1824 BUG();
1825
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001826 __cpufreq_remove_dev(sys_dev);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001827 break;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001828 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001829 case CPU_DOWN_FAILED_FROZEN:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001830 cpufreq_add_dev(sys_dev);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001831 break;
1832 }
1833 }
1834 return NOTIFY_OK;
1835}
1836
Sam Ravnborgf6ebef32008-02-17 13:22:52 +01001837static struct notifier_block __refdata cpufreq_cpu_notifier =
Ashok Rajc32b6b82005-10-30 14:59:54 -08001838{
1839 .notifier_call = cpufreq_cpu_callback,
1840};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842/*********************************************************************
1843 * REGISTER / UNREGISTER CPUFREQ DRIVER *
1844 *********************************************************************/
1845
1846/**
1847 * cpufreq_register_driver - register a CPU Frequency driver
1848 * @driver_data: A struct cpufreq_driver containing the values#
1849 * submitted by the CPU Frequency driver.
1850 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001851 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05001853 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 *
1855 */
Linus Torvalds221dee22007-02-26 14:55:48 -08001856int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
1858 unsigned long flags;
1859 int ret;
1860
1861 if (!driver_data || !driver_data->verify || !driver_data->init ||
1862 ((!driver_data->setpolicy) && (!driver_data->target)))
1863 return -EINVAL;
1864
1865 dprintk("trying to register driver %s\n", driver_data->name);
1866
1867 if (driver_data->setpolicy)
1868 driver_data->flags |= CPUFREQ_CONST_LOOPS;
1869
1870 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1871 if (cpufreq_driver) {
1872 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1873 return -EBUSY;
1874 }
1875 cpufreq_driver = driver_data;
1876 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1877
Mike Travis7a6aedf2008-03-25 15:06:53 -07001878 ret = sysdev_driver_register(&cpu_sysdev_class,
1879 &cpufreq_sysdev_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
1881 if ((!ret) && !(cpufreq_driver->flags & CPUFREQ_STICKY)) {
1882 int i;
1883 ret = -ENODEV;
1884
1885 /* check for at least one working CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -07001886 for (i = 0; i < nr_cpu_ids; i++)
1887 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 ret = 0;
Mike Travis7a6aedf2008-03-25 15:06:53 -07001889 break;
1890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892 /* if all ->init() calls failed, unregister */
1893 if (ret) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301894 dprintk("no CPU initialized for driver %s\n",
1895 driver_data->name);
1896 sysdev_driver_unregister(&cpu_sysdev_class,
1897 &cpufreq_sysdev_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
1899 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1900 cpufreq_driver = NULL;
1901 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1902 }
1903 }
1904
1905 if (!ret) {
Chandra Seetharaman65edc682006-06-27 02:54:08 -07001906 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 dprintk("driver %s up and running\n", driver_data->name);
1908 cpufreq_debug_enable_ratelimit();
1909 }
1910
Dave Jones4d34a672008-02-07 16:33:49 -05001911 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912}
1913EXPORT_SYMBOL_GPL(cpufreq_register_driver);
1914
1915
1916/**
1917 * cpufreq_unregister_driver - unregister the current CPUFreq driver
1918 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001919 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 * the right to do so, i.e. if you have succeeded in initialising before!
1921 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
1922 * currently not initialised.
1923 */
Linus Torvalds221dee22007-02-26 14:55:48 -08001924int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
1926 unsigned long flags;
1927
1928 cpufreq_debug_disable_ratelimit();
1929
1930 if (!cpufreq_driver || (driver != cpufreq_driver)) {
1931 cpufreq_debug_enable_ratelimit();
1932 return -EINVAL;
1933 }
1934
1935 dprintk("unregistering driver %s\n", driver->name);
1936
1937 sysdev_driver_unregister(&cpu_sysdev_class, &cpufreq_sysdev_driver);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07001938 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1941 cpufreq_driver = NULL;
1942 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1943
1944 return 0;
1945}
1946EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001947
1948static int __init cpufreq_core_init(void)
1949{
1950 int cpu;
1951
1952 for_each_possible_cpu(cpu) {
1953 per_cpu(policy_cpu, cpu) = -1;
1954 init_rwsem(&per_cpu(cpu_policy_rwsem, cpu));
1955 }
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02001956
1957 cpufreq_global_kobject = kobject_create_and_add("cpufreq",
1958 &cpu_sysdev_class.kset.kobj);
1959 BUG_ON(!cpufreq_global_kobject);
1960
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001961 return 0;
1962}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001963core_initcall(cpufreq_core_init);