blob: e02e4174c2c8f6d4e7bcc70dc86c03e19547e8a8 [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 */
Tejun Heof1625062009-10-29 22:34:13 +090067static DEFINE_PER_CPU(int, cpufreq_policy_cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080068static 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{ \
Tejun Heof1625062009-10-29 22:34:13 +090074 int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu); \
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080075 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{
Tejun Heof1625062009-10-29 22:34:13 +090093 int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080094 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{
Tejun Heof1625062009-10-29 22:34:13 +0900101 int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800102 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
Thomas Renningere2f74f32009-11-19 12:31:01 +0100650/**
651 * show_scaling_driver - show the current cpufreq HW/BIOS limitation
652 */
653static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
654{
655 unsigned int limit;
656 int ret;
657 if (cpufreq_driver->bios_limit) {
658 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
659 if (!ret)
660 return sprintf(buf, "%u\n", limit);
661 }
662 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
663}
664
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200665cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
666cpufreq_freq_attr_ro(cpuinfo_min_freq);
667cpufreq_freq_attr_ro(cpuinfo_max_freq);
668cpufreq_freq_attr_ro(cpuinfo_transition_latency);
669cpufreq_freq_attr_ro(scaling_available_governors);
670cpufreq_freq_attr_ro(scaling_driver);
671cpufreq_freq_attr_ro(scaling_cur_freq);
672cpufreq_freq_attr_ro(bios_limit);
673cpufreq_freq_attr_ro(related_cpus);
674cpufreq_freq_attr_ro(affected_cpus);
675cpufreq_freq_attr_rw(scaling_min_freq);
676cpufreq_freq_attr_rw(scaling_max_freq);
677cpufreq_freq_attr_rw(scaling_governor);
678cpufreq_freq_attr_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Dave Jones905d77c2008-03-05 14:28:32 -0500680static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 &cpuinfo_min_freq.attr,
682 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100683 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 &scaling_min_freq.attr,
685 &scaling_max_freq.attr,
686 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700687 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 &scaling_governor.attr,
689 &scaling_driver.attr,
690 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700691 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 NULL
693};
694
Thomas Renninger8aa84ad2009-07-24 15:25:05 +0200695struct kobject *cpufreq_global_kobject;
696EXPORT_SYMBOL(cpufreq_global_kobject);
697
Dave Jones29464f22009-01-18 01:37:11 -0500698#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
699#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Dave Jones29464f22009-01-18 01:37:11 -0500701static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Dave Jones905d77c2008-03-05 14:28:32 -0500703 struct cpufreq_policy *policy = to_policy(kobj);
704 struct freq_attr *fattr = to_attr(attr);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500705 ssize_t ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 policy = cpufreq_cpu_get(policy->cpu);
707 if (!policy)
Dave Jones0db4a8a2008-03-05 14:20:57 -0500708 goto no_policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800709
710 if (lock_policy_rwsem_read(policy->cpu) < 0)
Dave Jones0db4a8a2008-03-05 14:20:57 -0500711 goto fail;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800712
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530713 if (fattr->show)
714 ret = fattr->show(policy, buf);
715 else
716 ret = -EIO;
717
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800718 unlock_policy_rwsem_read(policy->cpu);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500719fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 cpufreq_cpu_put(policy);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500721no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return ret;
723}
724
Dave Jones905d77c2008-03-05 14:28:32 -0500725static ssize_t store(struct kobject *kobj, struct attribute *attr,
726 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Dave Jones905d77c2008-03-05 14:28:32 -0500728 struct cpufreq_policy *policy = to_policy(kobj);
729 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500730 ssize_t ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 policy = cpufreq_cpu_get(policy->cpu);
732 if (!policy)
Dave Jonesa07530b2008-03-05 14:22:25 -0500733 goto no_policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800734
735 if (lock_policy_rwsem_write(policy->cpu) < 0)
Dave Jonesa07530b2008-03-05 14:22:25 -0500736 goto fail;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800737
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530738 if (fattr->store)
739 ret = fattr->store(policy, buf, count);
740 else
741 ret = -EIO;
742
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800743 unlock_policy_rwsem_write(policy->cpu);
Dave Jonesa07530b2008-03-05 14:22:25 -0500744fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 cpufreq_cpu_put(policy);
Dave Jonesa07530b2008-03-05 14:22:25 -0500746no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return ret;
748}
749
Dave Jones905d77c2008-03-05 14:28:32 -0500750static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Dave Jones905d77c2008-03-05 14:28:32 -0500752 struct cpufreq_policy *policy = to_policy(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 dprintk("last reference is dropped\n");
754 complete(&policy->kobj_unregister);
755}
756
Emese Revfy52cf25d2010-01-19 02:58:23 +0100757static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 .show = show,
759 .store = store,
760};
761
762static struct kobj_type ktype_cpufreq = {
763 .sysfs_ops = &sysfs_ops,
764 .default_attrs = default_attrs,
765 .release = cpufreq_sysfs_release,
766};
767
Thomas Renninger4bfa0422009-07-24 15:25:03 +0200768/*
769 * Returns:
770 * Negative: Failure
771 * 0: Success
772 * Positive: When we have a managed CPU and the sysfs got symlinked
773 */
Alex Chiangcf3289d02009-11-17 20:27:08 -0700774static int cpufreq_add_dev_policy(unsigned int cpu,
775 struct cpufreq_policy *policy,
776 struct sys_device *sys_dev)
Dave Jonesecf7e462009-07-08 18:48:47 -0400777{
778 int ret = 0;
779#ifdef CONFIG_SMP
780 unsigned long flags;
781 unsigned int j;
Dave Jonesecf7e462009-07-08 18:48:47 -0400782#ifdef CONFIG_HOTPLUG_CPU
Dmitry Monakhove77b89f2009-10-05 00:38:55 +0400783 struct cpufreq_governor *gov;
784
785 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
786 if (gov) {
787 policy->governor = gov;
Dave Jonesecf7e462009-07-08 18:48:47 -0400788 dprintk("Restoring governor %s for cpu %d\n",
789 policy->governor->name, cpu);
790 }
791#endif
792
793 for_each_cpu(j, policy->cpus) {
794 struct cpufreq_policy *managed_policy;
795
796 if (cpu == j)
797 continue;
798
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()
803 */
804 managed_policy = cpufreq_cpu_get(j);
805 if (unlikely(managed_policy)) {
806
807 /* Set proper policy_cpu */
808 unlock_policy_rwsem_write(cpu);
Tejun Heof1625062009-10-29 22:34:13 +0900809 per_cpu(cpufreq_policy_cpu, cpu) = managed_policy->cpu;
Dave Jonesecf7e462009-07-08 18:48:47 -0400810
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);
816 return -EBUSY;
817 }
818
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);
823
824 dprintk("CPU already managed, adding link\n");
825 ret = sysfs_create_link(&sys_dev->kobj,
826 &managed_policy->kobj,
827 "cpufreq");
828 if (ret)
829 cpufreq_cpu_put(managed_policy);
830 /*
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().
834 */
835 if (cpufreq_driver->exit)
836 cpufreq_driver->exit(policy);
Thomas Renninger4bfa0422009-07-24 15:25:03 +0200837
838 if (!ret)
839 return 1;
840 else
841 return ret;
Dave Jonesecf7e462009-07-08 18:48:47 -0400842 }
843 }
844#endif
845 return ret;
846}
847
848
Dave Jones19d6f7e2009-07-08 17:35:39 -0400849/* symlink affected CPUs */
Alex Chiangcf3289d02009-11-17 20:27:08 -0700850static int cpufreq_add_dev_symlink(unsigned int cpu,
851 struct cpufreq_policy *policy)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400852{
853 unsigned int j;
854 int ret = 0;
855
856 for_each_cpu(j, policy->cpus) {
857 struct cpufreq_policy *managed_policy;
858 struct sys_device *cpu_sys_dev;
859
860 if (j == cpu)
861 continue;
862 if (!cpu_online(j))
863 continue;
864
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,
869 "cpufreq");
870 if (ret) {
871 cpufreq_cpu_put(managed_policy);
872 return ret;
873 }
874 }
875 return ret;
876}
877
Alex Chiangcf3289d02009-11-17 20:27:08 -0700878static int cpufreq_add_dev_interface(unsigned int cpu,
879 struct cpufreq_policy *policy,
880 struct sys_device *sys_dev)
Dave Jones909a6942009-07-08 18:05:42 -0400881{
Dave Jonesecf7e462009-07-08 18:48:47 -0400882 struct cpufreq_policy new_policy;
Dave Jones909a6942009-07-08 18:05:42 -0400883 struct freq_attr **drv_attr;
884 unsigned long flags;
885 int ret = 0;
886 unsigned int j;
887
888 /* prepare interface data */
889 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
890 &sys_dev->kobj, "cpufreq");
891 if (ret)
892 return ret;
893
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));
898 if (ret)
899 goto err_out_kobj_put;
900 drv_attr++;
901 }
902 if (cpufreq_driver->get) {
903 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
904 if (ret)
905 goto err_out_kobj_put;
906 }
907 if (cpufreq_driver->target) {
908 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
909 if (ret)
910 goto err_out_kobj_put;
911 }
Thomas Renningere2f74f32009-11-19 12:31:01 +0100912 if (cpufreq_driver->bios_limit) {
913 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
914 if (ret)
915 goto err_out_kobj_put;
916 }
Dave Jones909a6942009-07-08 18:05:42 -0400917
918 spin_lock_irqsave(&cpufreq_driver_lock, flags);
919 for_each_cpu(j, policy->cpus) {
920 if (!cpu_online(j))
921 continue;
922 per_cpu(cpufreq_cpu_data, j) = policy;
Tejun Heof1625062009-10-29 22:34:13 +0900923 per_cpu(cpufreq_policy_cpu, j) = policy->cpu;
Dave Jones909a6942009-07-08 18:05:42 -0400924 }
925 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
926
927 ret = cpufreq_add_dev_symlink(cpu, policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400928 if (ret)
929 goto err_out_kobj_put;
930
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;
934
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;
939
940 if (ret) {
941 dprintk("setting policy failed\n");
942 if (cpufreq_driver->exit)
943 cpufreq_driver->exit(policy);
944 }
Dave Jones909a6942009-07-08 18:05:42 -0400945 return ret;
946
947err_out_kobj_put:
948 kobject_put(&policy->kobj);
949 wait_for_completion(&policy->kobj_unregister);
950 return ret;
951}
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954/**
955 * cpufreq_add_dev - add a CPU device
956 *
Dave Jones32ee8c32006-02-28 00:43:23 -0500957 * Adds the cpufreq interface for a CPU device.
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -0400958 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 */
Dave Jones905d77c2008-03-05 14:28:32 -0500963static int cpufreq_add_dev(struct sys_device *sys_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
965 unsigned int cpu = sys_dev->id;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500966 int ret = 0, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 unsigned long flags;
969 unsigned int j;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500970#ifdef CONFIG_HOTPLUG_CPU
971 int sibling;
972#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Ashok Rajc32b6b82005-10-30 14:59:54 -0800974 if (cpu_is_offline(cpu))
975 return 0;
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 cpufreq_debug_disable_ratelimit();
978 dprintk("adding CPU %u\n", cpu);
979
980#ifdef CONFIG_SMP
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)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500985 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 cpufreq_debug_enable_ratelimit();
987 return 0;
988 }
989#endif
990
991 if (!try_module_get(cpufreq_driver->owner)) {
992 ret = -EINVAL;
993 goto module_out;
994 }
995
Dave Jones059019a2009-07-08 16:30:03 -0400996 ret = -ENOMEM;
Dave Jonese98df502005-10-20 15:17:43 -0700997 policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL);
Dave Jones059019a2009-07-08 16:30:03 -0400998 if (!policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 goto nomem_out;
Dave Jones059019a2009-07-08 16:30:03 -04001000
1001 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -04001002 goto err_free_policy;
Dave Jones059019a2009-07-08 16:30:03 -04001003
1004 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -04001005 goto err_free_cpumask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 policy->cpu = cpu;
Rusty Russell835481d2009-01-04 05:18:06 -08001008 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001010 /* Initially set CPU itself as the policy_cpu */
Tejun Heof1625062009-10-29 22:34:13 +09001011 per_cpu(cpufreq_policy_cpu, cpu) = cpu;
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -04001012 ret = (lock_policy_rwsem_write(cpu) < 0);
1013 WARN_ON(ret);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +00001016 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Thomas Renninger8122c6c2007-10-02 13:28:09 -07001018 /* Set governor before ->init, so that driver could check it */
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001019#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;
1025 found = 1;
1026 break;
1027 }
1028 }
1029#endif
1030 if (!found)
1031 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 /* call driver. From then on the cpufreq must be able
1033 * to accept all calls to ->verify and ->setpolicy for this CPU
1034 */
1035 ret = cpufreq_driver->init(policy);
1036 if (ret) {
1037 dprintk("initialization failed\n");
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -04001038 goto err_unlock_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
Mike Chan187d9f42008-12-04 12:19:17 -08001040 policy->user_policy.min = policy->min;
1041 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Thomas Renningera1531ac2008-07-29 22:32:58 -07001043 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1044 CPUFREQ_START, policy);
1045
Dave Jonesecf7e462009-07-08 18:48:47 -04001046 ret = cpufreq_add_dev_policy(cpu, policy, sys_dev);
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001047 if (ret) {
1048 if (ret > 0)
1049 /* This is a managed cpu, symlink created,
1050 exit with 0 */
1051 ret = 0;
Dave Jonesecf7e462009-07-08 18:48:47 -04001052 goto err_unlock_policy;
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Dave Jones909a6942009-07-08 18:05:42 -04001055 ret = cpufreq_add_dev_interface(cpu, policy, sys_dev);
Dave Jones19d6f7e2009-07-08 17:35:39 -04001056 if (ret)
1057 goto err_out_unregister;
Dave Jones8ff69732006-03-05 03:37:23 -05001058
Lothar Waßmanndca02612008-05-29 17:54:52 +02001059 unlock_policy_rwsem_write(cpu);
1060
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001061 kobject_uevent(&policy->kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 module_put(cpufreq_driver->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 dprintk("initialization complete\n");
1064 cpufreq_debug_enable_ratelimit();
Dave Jones87c32272006-03-29 01:48:37 -05001065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return 0;
1067
1068
1069err_out_unregister:
1070 spin_lock_irqsave(&cpufreq_driver_lock, flags);
Rusty Russell835481d2009-01-04 05:18:06 -08001071 for_each_cpu(j, policy->cpus)
Mike Travis7a6aedf2008-03-25 15:06:53 -07001072 per_cpu(cpufreq_cpu_data, j) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1074
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -08001075 kobject_put(&policy->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 wait_for_completion(&policy->kobj_unregister);
1077
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -04001078err_unlock_policy:
Dave Jones45709112008-03-05 14:07:34 -05001079 unlock_policy_rwsem_write(cpu);
Mathieu Desnoyers3f4a7822009-07-03 11:25:16 -04001080err_free_cpumask:
1081 free_cpumask_var(policy->cpus);
1082err_free_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 kfree(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084nomem_out:
1085 module_put(cpufreq_driver->owner);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001086module_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 cpufreq_debug_enable_ratelimit();
1088 return ret;
1089}
1090
1091
1092/**
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001093 * __cpufreq_remove_dev - remove a CPU device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 *
1095 * Removes the cpufreq interface for a CPU device.
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001096 * Caller should already have policy_rwsem in write mode for this CPU.
1097 * This routine frees the rwsem before returning.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 */
Dave Jones905d77c2008-03-05 14:28:32 -05001099static int __cpufreq_remove_dev(struct sys_device *sys_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
1101 unsigned int cpu = sys_dev->id;
1102 unsigned long flags;
1103 struct cpufreq_policy *data;
1104#ifdef CONFIG_SMP
Grant Coadye738cf62005-11-21 21:32:28 -08001105 struct sys_device *cpu_sys_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 unsigned int j;
1107#endif
1108
1109 cpufreq_debug_disable_ratelimit();
1110 dprintk("unregistering CPU %u\n", cpu);
1111
1112 spin_lock_irqsave(&cpufreq_driver_lock, flags);
Mike Travis7a6aedf2008-03-25 15:06:53 -07001113 data = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 if (!data) {
1116 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 cpufreq_debug_enable_ratelimit();
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001118 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return -EINVAL;
1120 }
Mike Travis7a6aedf2008-03-25 15:06:53 -07001121 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123
1124#ifdef CONFIG_SMP
1125 /* if this isn't the CPU which is the parent of the kobj, we
Dave Jones32ee8c32006-02-28 00:43:23 -05001126 * only need to unlink, put and exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 */
1128 if (unlikely(cpu != data->cpu)) {
1129 dprintk("removing link\n");
Rusty Russell835481d2009-01-04 05:18:06 -08001130 cpumask_clear_cpu(cpu, data->cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1132 sysfs_remove_link(&sys_dev->kobj, "cpufreq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 cpufreq_cpu_put(data);
1134 cpufreq_debug_enable_ratelimit();
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001135 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 return 0;
1137 }
1138#endif
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140#ifdef CONFIG_SMP
Thomas Renninger084f3492007-07-09 11:35:28 -07001141
1142#ifdef CONFIG_HOTPLUG_CPU
Dmitry Monakhove77b89f2009-10-05 00:38:55 +04001143 strncpy(per_cpu(cpufreq_cpu_governor, cpu), data->governor->name,
1144 CPUFREQ_NAME_LEN);
Thomas Renninger084f3492007-07-09 11:35:28 -07001145#endif
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 /* if we have other CPUs still registered, we need to unlink them,
1148 * or else wait_for_completion below will lock up. Clean the
Mike Travis7a6aedf2008-03-25 15:06:53 -07001149 * per_cpu(cpufreq_cpu_data) while holding the lock, and remove
1150 * the sysfs links afterwards.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 */
Rusty Russell835481d2009-01-04 05:18:06 -08001152 if (unlikely(cpumask_weight(data->cpus) > 1)) {
1153 for_each_cpu(j, data->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 if (j == cpu)
1155 continue;
Mike Travis7a6aedf2008-03-25 15:06:53 -07001156 per_cpu(cpufreq_cpu_data, j) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
1158 }
1159
1160 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1161
Rusty Russell835481d2009-01-04 05:18:06 -08001162 if (unlikely(cpumask_weight(data->cpus) > 1)) {
1163 for_each_cpu(j, data->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (j == cpu)
1165 continue;
1166 dprintk("removing link for cpu %u\n", j);
Thomas Renninger084f3492007-07-09 11:35:28 -07001167#ifdef CONFIG_HOTPLUG_CPU
Dmitry Monakhove77b89f2009-10-05 00:38:55 +04001168 strncpy(per_cpu(cpufreq_cpu_governor, j),
1169 data->governor->name, CPUFREQ_NAME_LEN);
Thomas Renninger084f3492007-07-09 11:35:28 -07001170#endif
Ashok Rajd434fca2005-10-30 14:59:52 -08001171 cpu_sys_dev = get_cpu_sysdev(j);
1172 sysfs_remove_link(&cpu_sys_dev->kobj, "cpufreq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 cpufreq_cpu_put(data);
1174 }
1175 }
1176#else
1177 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1178#endif
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 if (cpufreq_driver->target)
1181 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 kobject_put(&data->kobj);
1184
1185 /* we need to make sure that the underlying kobj is actually
Dave Jones32ee8c32006-02-28 00:43:23 -05001186 * not referenced anymore by anybody before we proceed with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 * unloading.
1188 */
1189 dprintk("waiting for dropping of refcount\n");
1190 wait_for_completion(&data->kobj_unregister);
1191 dprintk("wait complete\n");
1192
1193 if (cpufreq_driver->exit)
1194 cpufreq_driver->exit(data);
1195
venkatesh.pallipadi@intel.com7d26e2d2009-07-02 17:08:30 -07001196 unlock_policy_rwsem_write(cpu);
1197
Rusty Russell835481d2009-01-04 05:18:06 -08001198 free_cpumask_var(data->related_cpus);
1199 free_cpumask_var(data->cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 kfree(data);
Rusty Russell835481d2009-01-04 05:18:06 -08001201 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 cpufreq_debug_enable_ratelimit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return 0;
1205}
1206
1207
Dave Jones905d77c2008-03-05 14:28:32 -05001208static int cpufreq_remove_dev(struct sys_device *sys_dev)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001209{
1210 unsigned int cpu = sys_dev->id;
1211 int retval;
Venki Pallipadiec282972007-03-26 12:03:19 -07001212
1213 if (cpu_is_offline(cpu))
1214 return 0;
1215
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001216 if (unlikely(lock_policy_rwsem_write(cpu)))
1217 BUG();
1218
1219 retval = __cpufreq_remove_dev(sys_dev);
1220 return retval;
1221}
1222
1223
David Howells65f27f32006-11-22 14:55:48 +00001224static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
David Howells65f27f32006-11-22 14:55:48 +00001226 struct cpufreq_policy *policy =
1227 container_of(work, struct cpufreq_policy, update);
1228 unsigned int cpu = policy->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 dprintk("handle_update for cpu %u called\n", cpu);
1230 cpufreq_update_policy(cpu);
1231}
1232
1233/**
1234 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're in deep trouble.
1235 * @cpu: cpu number
1236 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1237 * @new_freq: CPU frequency the CPU actually runs at
1238 *
Dave Jones29464f22009-01-18 01:37:11 -05001239 * We adjust to current frequency first, and need to clean up later.
1240 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301242static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1243 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 struct cpufreq_freqs freqs;
1246
Jan Beulichb10eec22006-04-28 13:47:13 +02001247 dprintk("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1249
1250 freqs.cpu = cpu;
1251 freqs.old = old_freq;
1252 freqs.new = new_freq;
1253 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1254 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
1255}
1256
1257
Dave Jones32ee8c32006-02-28 00:43:23 -05001258/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301259 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001260 * @cpu: CPU number
1261 *
1262 * This is the last known freq, without actually getting it from the driver.
1263 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1264 */
1265unsigned int cpufreq_quick_get(unsigned int cpu)
1266{
1267 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301268 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001269
1270 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301271 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001272 cpufreq_cpu_put(policy);
1273 }
1274
Dave Jones4d34a672008-02-07 16:33:49 -05001275 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001276}
1277EXPORT_SYMBOL(cpufreq_quick_get);
1278
1279
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001280static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001282 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301283 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001286 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301288 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301290 if (ret_freq && policy->cur &&
1291 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1292 /* verify no discrepancy between actual and
1293 saved value exists */
1294 if (unlikely(ret_freq != policy->cur)) {
1295 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 schedule_work(&policy->update);
1297 }
1298 }
1299
Dave Jones4d34a672008-02-07 16:33:49 -05001300 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001301}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001303/**
1304 * cpufreq_get - get the current CPU frequency (in kHz)
1305 * @cpu: CPU number
1306 *
1307 * Get the CPU current (static) CPU frequency
1308 */
1309unsigned int cpufreq_get(unsigned int cpu)
1310{
1311 unsigned int ret_freq = 0;
1312 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1313
1314 if (!policy)
1315 goto out;
1316
1317 if (unlikely(lock_policy_rwsem_read(cpu)))
1318 goto out_policy;
1319
1320 ret_freq = __cpufreq_get(cpu);
1321
1322 unlock_policy_rwsem_read(cpu);
1323
1324out_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 cpufreq_cpu_put(policy);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001326out:
Dave Jones4d34a672008-02-07 16:33:49 -05001327 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329EXPORT_SYMBOL(cpufreq_get);
1330
1331
1332/**
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001333 * cpufreq_suspend - let the low level driver prepare for suspend
1334 */
1335
Dave Jones905d77c2008-03-05 14:28:32 -05001336static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001337{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301338 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001339
Dave Jones4bc5d342009-08-04 14:03:25 -04001340 int cpu = sysdev->id;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001341 struct cpufreq_policy *cpu_policy;
1342
Dave Jones0e37b152006-09-26 23:02:34 -04001343 dprintk("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001344
1345 if (!cpu_online(cpu))
1346 return 0;
1347
1348 /* we may be lax here as interrupts are off. Nonetheless
1349 * we need to grab the correct cpu policy, as to check
1350 * whether we really run on this CPU.
1351 */
1352
1353 cpu_policy = cpufreq_cpu_get(cpu);
1354 if (!cpu_policy)
1355 return -EINVAL;
1356
1357 /* only handle each CPU group once */
Dave Jonesc9060492008-02-07 16:32:18 -05001358 if (unlikely(cpu_policy->cpu != cpu))
1359 goto out;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001360
1361 if (cpufreq_driver->suspend) {
Bernard Blackhame00d9962005-07-07 17:56:42 -07001362 ret = cpufreq_driver->suspend(cpu_policy, pmsg);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001363 if (ret)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001364 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
1365 "step on CPU %u\n", cpu_policy->cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001366 }
1367
Dave Jones7d5e3502006-02-02 17:03:42 -05001368out:
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001369 cpufreq_cpu_put(cpu_policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001370 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001371}
1372
1373/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 * cpufreq_resume - restore proper CPU frequency handling after resume
1375 *
1376 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001377 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1378 * restored. It will verify that the current freq is in sync with
1379 * what we believe it to be. This is a bit later than when it
1380 * should be, but nonethteless it's better than calling
1381 * cpufreq_driver->get() here which might re-enable interrupts...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 */
Dave Jones905d77c2008-03-05 14:28:32 -05001383static int cpufreq_resume(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301385 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001386
Dave Jones4bc5d342009-08-04 14:03:25 -04001387 int cpu = sysdev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 struct cpufreq_policy *cpu_policy;
1389
1390 dprintk("resuming cpu %u\n", cpu);
1391
1392 if (!cpu_online(cpu))
1393 return 0;
1394
1395 /* we may be lax here as interrupts are off. Nonetheless
1396 * we need to grab the correct cpu policy, as to check
1397 * whether we really run on this CPU.
1398 */
1399
1400 cpu_policy = cpufreq_cpu_get(cpu);
1401 if (!cpu_policy)
1402 return -EINVAL;
1403
1404 /* only handle each CPU group once */
Dave Jonesc9060492008-02-07 16:32:18 -05001405 if (unlikely(cpu_policy->cpu != cpu))
1406 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 if (cpufreq_driver->resume) {
1409 ret = cpufreq_driver->resume(cpu_policy);
1410 if (ret) {
1411 printk(KERN_ERR "cpufreq: resume failed in ->resume "
1412 "step on CPU %u\n", cpu_policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001413 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
1415 }
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 schedule_work(&cpu_policy->update);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001418
Dave Jonesc9060492008-02-07 16:32:18 -05001419fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 cpufreq_cpu_put(cpu_policy);
1421 return ret;
1422}
1423
1424static struct sysdev_driver cpufreq_sysdev_driver = {
1425 .add = cpufreq_add_dev,
1426 .remove = cpufreq_remove_dev,
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001427 .suspend = cpufreq_suspend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 .resume = cpufreq_resume,
1429};
1430
1431
1432/*********************************************************************
1433 * NOTIFIER LISTS INTERFACE *
1434 *********************************************************************/
1435
1436/**
1437 * cpufreq_register_notifier - register a driver with cpufreq
1438 * @nb: notifier function to register
1439 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1440 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001441 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 * are notified about clock rate changes (once before and once after
1443 * the transition), or a list of drivers that are notified about
1444 * changes in cpufreq policy.
1445 *
1446 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001447 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 */
1449int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1450{
1451 int ret;
1452
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001453 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 switch (list) {
1456 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001457 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001458 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 break;
1460 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001461 ret = blocking_notifier_chain_register(
1462 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 break;
1464 default:
1465 ret = -EINVAL;
1466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468 return ret;
1469}
1470EXPORT_SYMBOL(cpufreq_register_notifier);
1471
1472
1473/**
1474 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1475 * @nb: notifier block to be unregistered
1476 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1477 *
1478 * Remove a driver from the CPU frequency notifier list.
1479 *
1480 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001481 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 */
1483int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1484{
1485 int ret;
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 switch (list) {
1488 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001489 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001490 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 break;
1492 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001493 ret = blocking_notifier_chain_unregister(
1494 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 break;
1496 default:
1497 ret = -EINVAL;
1498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 return ret;
1501}
1502EXPORT_SYMBOL(cpufreq_unregister_notifier);
1503
1504
1505/*********************************************************************
1506 * GOVERNORS *
1507 *********************************************************************/
1508
1509
1510int __cpufreq_driver_target(struct cpufreq_policy *policy,
1511 unsigned int target_freq,
1512 unsigned int relation)
1513{
1514 int retval = -EINVAL;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 dprintk("target for CPU %u: %u kHz, relation %u\n", policy->cpu,
1517 target_freq, relation);
1518 if (cpu_online(policy->cpu) && cpufreq_driver->target)
1519 retval = cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 return retval;
1522}
1523EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525int cpufreq_driver_target(struct cpufreq_policy *policy,
1526 unsigned int target_freq,
1527 unsigned int relation)
1528{
Julia Lawallf1829e42008-07-25 22:44:53 +02001529 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531 policy = cpufreq_cpu_get(policy->cpu);
1532 if (!policy)
Julia Lawallf1829e42008-07-25 22:44:53 +02001533 goto no_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001535 if (unlikely(lock_policy_rwsem_write(policy->cpu)))
Julia Lawallf1829e42008-07-25 22:44:53 +02001536 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538 ret = __cpufreq_driver_target(policy, target_freq, relation);
1539
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001540 unlock_policy_rwsem_write(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Julia Lawallf1829e42008-07-25 22:44:53 +02001542fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 cpufreq_cpu_put(policy);
Julia Lawallf1829e42008-07-25 22:44:53 +02001544no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 return ret;
1546}
1547EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1548
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -07001549int __cpufreq_driver_getavg(struct cpufreq_policy *policy, unsigned int cpu)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001550{
1551 int ret = 0;
1552
1553 policy = cpufreq_cpu_get(policy->cpu);
1554 if (!policy)
1555 return -EINVAL;
1556
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -07001557 if (cpu_online(cpu) && cpufreq_driver->getavg)
1558 ret = cpufreq_driver->getavg(policy, cpu);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001559
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001560 cpufreq_cpu_put(policy);
1561 return ret;
1562}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001563EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001564
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001565/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001566 * when "event" is CPUFREQ_GOV_LIMITS
1567 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301569static int __cpufreq_governor(struct cpufreq_policy *policy,
1570 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Dave Jonescc993ca2005-07-28 09:43:56 -07001572 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001573
1574 /* Only must be defined when default governor is known to have latency
1575 restrictions, like e.g. conservative or ondemand.
1576 That this is the case is already ensured in Kconfig
1577 */
1578#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1579 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1580#else
1581 struct cpufreq_governor *gov = NULL;
1582#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001583
1584 if (policy->governor->max_transition_latency &&
1585 policy->cpuinfo.transition_latency >
1586 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001587 if (!gov)
1588 return -EINVAL;
1589 else {
1590 printk(KERN_WARNING "%s governor failed, too long"
1591 " transition latency of HW, fallback"
1592 " to %s governor\n",
1593 policy->governor->name,
1594 gov->name);
1595 policy->governor = gov;
1596 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 if (!try_module_get(policy->governor->owner))
1600 return -EINVAL;
1601
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301602 dprintk("__cpufreq_governor for CPU %u, event %u\n",
1603 policy->cpu, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 ret = policy->governor->governor(policy, event);
1605
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301606 /* we keep one module reference alive for
1607 each CPU governed by this CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if ((event != CPUFREQ_GOV_START) || ret)
1609 module_put(policy->governor->owner);
1610 if ((event == CPUFREQ_GOV_STOP) && !ret)
1611 module_put(policy->governor->owner);
1612
1613 return ret;
1614}
1615
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617int cpufreq_register_governor(struct cpufreq_governor *governor)
1618{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001619 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
1621 if (!governor)
1622 return -EINVAL;
1623
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001624 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001625
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001626 err = -EBUSY;
1627 if (__find_governor(governor->name) == NULL) {
1628 err = 0;
1629 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Dave Jones32ee8c32006-02-28 00:43:23 -05001632 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001633 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1636
1637
1638void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1639{
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001640#ifdef CONFIG_HOTPLUG_CPU
1641 int cpu;
1642#endif
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (!governor)
1645 return;
1646
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001647#ifdef CONFIG_HOTPLUG_CPU
1648 for_each_present_cpu(cpu) {
1649 if (cpu_online(cpu))
1650 continue;
1651 if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name))
1652 strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0");
1653 }
1654#endif
1655
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001656 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001658 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 return;
1660}
1661EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1662
1663
1664
1665/*********************************************************************
1666 * POLICY INTERFACE *
1667 *********************************************************************/
1668
1669/**
1670 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05001671 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1672 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 *
1674 * Reads the current cpufreq policy.
1675 */
1676int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1677{
1678 struct cpufreq_policy *cpu_policy;
1679 if (!policy)
1680 return -EINVAL;
1681
1682 cpu_policy = cpufreq_cpu_get(cpu);
1683 if (!cpu_policy)
1684 return -EINVAL;
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 memcpy(policy, cpu_policy, sizeof(struct cpufreq_policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return 0;
1690}
1691EXPORT_SYMBOL(cpufreq_get_policy);
1692
1693
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001694/*
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301695 * data : current policy.
1696 * policy : policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001697 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301698static int __cpufreq_set_policy(struct cpufreq_policy *data,
1699 struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
1701 int ret = 0;
1702
1703 cpufreq_debug_disable_ratelimit();
1704 dprintk("setting new policy for CPU %u: %u - %u kHz\n", policy->cpu,
1705 policy->min, policy->max);
1706
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301707 memcpy(&policy->cpuinfo, &data->cpuinfo,
1708 sizeof(struct cpufreq_cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Yi Yang53391fa2008-01-30 13:33:34 +01001710 if (policy->min > data->max || policy->max < data->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001711 ret = -EINVAL;
1712 goto error_out;
1713 }
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 /* verify the cpu speed can be set within this limit */
1716 ret = cpufreq_driver->verify(policy);
1717 if (ret)
1718 goto error_out;
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001721 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1722 CPUFREQ_ADJUST, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001725 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1726 CPUFREQ_INCOMPATIBLE, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 /* verify the cpu speed can be set within this limit,
1729 which might be different to the first one */
1730 ret = cpufreq_driver->verify(policy);
Alan Sterne041c682006-03-27 01:16:30 -08001731 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001735 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1736 CPUFREQ_NOTIFY, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Dave Jones7d5e3502006-02-02 17:03:42 -05001738 data->min = policy->min;
1739 data->max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301741 dprintk("new min and max freqs are %u - %u kHz\n",
1742 data->min, data->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 if (cpufreq_driver->setpolicy) {
1745 data->policy = policy->policy;
1746 dprintk("setting range\n");
1747 ret = cpufreq_driver->setpolicy(policy);
1748 } else {
1749 if (policy->governor != data->governor) {
1750 /* save old, working values */
1751 struct cpufreq_governor *old_gov = data->governor;
1752
1753 dprintk("governor switch\n");
1754
1755 /* end old governor */
Mathieu Desnoyers395913d2009-06-08 13:17:31 -04001756 if (data->governor) {
1757 /*
1758 * Need to release the rwsem around governor
1759 * stop due to lock dependency between
1760 * cancel_delayed_work_sync and the read lock
1761 * taken in the delayed work handler.
1762 */
1763 unlock_policy_rwsem_write(data->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
Mathieu Desnoyers395913d2009-06-08 13:17:31 -04001765 lock_policy_rwsem_write(data->cpu);
1766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 /* start new governor */
1769 data->governor = policy->governor;
1770 if (__cpufreq_governor(data, CPUFREQ_GOV_START)) {
1771 /* new governor failed, so re-start old one */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301772 dprintk("starting governor %s failed\n",
1773 data->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 if (old_gov) {
1775 data->governor = old_gov;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301776 __cpufreq_governor(data,
1777 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 }
1779 ret = -EINVAL;
1780 goto error_out;
1781 }
1782 /* might be a policy change, too, so fall through */
1783 }
1784 dprintk("governor: change or update limits\n");
1785 __cpufreq_governor(data, CPUFREQ_GOV_LIMITS);
1786 }
1787
Dave Jones7d5e3502006-02-02 17:03:42 -05001788error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 cpufreq_debug_enable_ratelimit();
1790 return ret;
1791}
1792
1793/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1795 * @cpu: CPU which shall be re-evaluated
1796 *
1797 * Usefull for policy notifiers which have different necessities
1798 * at different times.
1799 */
1800int cpufreq_update_policy(unsigned int cpu)
1801{
1802 struct cpufreq_policy *data = cpufreq_cpu_get(cpu);
1803 struct cpufreq_policy policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02001804 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Julia Lawallf1829e42008-07-25 22:44:53 +02001806 if (!data) {
1807 ret = -ENODEV;
1808 goto no_policy;
1809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Julia Lawallf1829e42008-07-25 22:44:53 +02001811 if (unlikely(lock_policy_rwsem_write(cpu))) {
1812 ret = -EINVAL;
1813 goto fail;
1814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816 dprintk("updating policy for CPU %u\n", cpu);
Dave Jones7d5e3502006-02-02 17:03:42 -05001817 memcpy(&policy, data, sizeof(struct cpufreq_policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 policy.min = data->user_policy.min;
1819 policy.max = data->user_policy.max;
1820 policy.policy = data->user_policy.policy;
1821 policy.governor = data->user_policy.governor;
1822
Thomas Renninger0961dd02006-01-26 18:46:33 +01001823 /* BIOS might change freq behind our back
1824 -> ask driver for current freq and notify governors about a change */
1825 if (cpufreq_driver->get) {
1826 policy.cur = cpufreq_driver->get(cpu);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001827 if (!data->cur) {
1828 dprintk("Driver did not initialize current freq");
1829 data->cur = policy.cur;
1830 } else {
1831 if (data->cur != policy.cur)
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301832 cpufreq_out_of_sync(cpu, data->cur,
1833 policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001834 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01001835 }
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 ret = __cpufreq_set_policy(data, &policy);
1838
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001839 unlock_policy_rwsem_write(cpu);
1840
Julia Lawallf1829e42008-07-25 22:44:53 +02001841fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 cpufreq_cpu_put(data);
Julia Lawallf1829e42008-07-25 22:44:53 +02001843no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return ret;
1845}
1846EXPORT_SYMBOL(cpufreq_update_policy);
1847
Satyam Sharmadd184a02007-10-02 13:28:14 -07001848static int __cpuinit cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08001849 unsigned long action, void *hcpu)
1850{
1851 unsigned int cpu = (unsigned long)hcpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001852 struct sys_device *sys_dev;
1853
1854 sys_dev = get_cpu_sysdev(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001855 if (sys_dev) {
1856 switch (action) {
1857 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001858 case CPU_ONLINE_FROZEN:
Ashok Rajc32b6b82005-10-30 14:59:54 -08001859 cpufreq_add_dev(sys_dev);
1860 break;
1861 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001862 case CPU_DOWN_PREPARE_FROZEN:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001863 if (unlikely(lock_policy_rwsem_write(cpu)))
1864 BUG();
1865
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001866 __cpufreq_remove_dev(sys_dev);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001867 break;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001868 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001869 case CPU_DOWN_FAILED_FROZEN:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001870 cpufreq_add_dev(sys_dev);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001871 break;
1872 }
1873 }
1874 return NOTIFY_OK;
1875}
1876
Sam Ravnborgf6ebef32008-02-17 13:22:52 +01001877static struct notifier_block __refdata cpufreq_cpu_notifier =
Ashok Rajc32b6b82005-10-30 14:59:54 -08001878{
1879 .notifier_call = cpufreq_cpu_callback,
1880};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882/*********************************************************************
1883 * REGISTER / UNREGISTER CPUFREQ DRIVER *
1884 *********************************************************************/
1885
1886/**
1887 * cpufreq_register_driver - register a CPU Frequency driver
1888 * @driver_data: A struct cpufreq_driver containing the values#
1889 * submitted by the CPU Frequency driver.
1890 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001891 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05001893 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 *
1895 */
Linus Torvalds221dee22007-02-26 14:55:48 -08001896int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
1898 unsigned long flags;
1899 int ret;
1900
1901 if (!driver_data || !driver_data->verify || !driver_data->init ||
1902 ((!driver_data->setpolicy) && (!driver_data->target)))
1903 return -EINVAL;
1904
1905 dprintk("trying to register driver %s\n", driver_data->name);
1906
1907 if (driver_data->setpolicy)
1908 driver_data->flags |= CPUFREQ_CONST_LOOPS;
1909
1910 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1911 if (cpufreq_driver) {
1912 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1913 return -EBUSY;
1914 }
1915 cpufreq_driver = driver_data;
1916 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1917
Mike Travis7a6aedf2008-03-25 15:06:53 -07001918 ret = sysdev_driver_register(&cpu_sysdev_class,
1919 &cpufreq_sysdev_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 if ((!ret) && !(cpufreq_driver->flags & CPUFREQ_STICKY)) {
1922 int i;
1923 ret = -ENODEV;
1924
1925 /* check for at least one working CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -07001926 for (i = 0; i < nr_cpu_ids; i++)
1927 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 ret = 0;
Mike Travis7a6aedf2008-03-25 15:06:53 -07001929 break;
1930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 /* if all ->init() calls failed, unregister */
1933 if (ret) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301934 dprintk("no CPU initialized for driver %s\n",
1935 driver_data->name);
1936 sysdev_driver_unregister(&cpu_sysdev_class,
1937 &cpufreq_sysdev_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1940 cpufreq_driver = NULL;
1941 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1942 }
1943 }
1944
1945 if (!ret) {
Chandra Seetharaman65edc682006-06-27 02:54:08 -07001946 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 dprintk("driver %s up and running\n", driver_data->name);
1948 cpufreq_debug_enable_ratelimit();
1949 }
1950
Dave Jones4d34a672008-02-07 16:33:49 -05001951 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952}
1953EXPORT_SYMBOL_GPL(cpufreq_register_driver);
1954
1955
1956/**
1957 * cpufreq_unregister_driver - unregister the current CPUFreq driver
1958 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001959 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 * the right to do so, i.e. if you have succeeded in initialising before!
1961 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
1962 * currently not initialised.
1963 */
Linus Torvalds221dee22007-02-26 14:55:48 -08001964int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965{
1966 unsigned long flags;
1967
1968 cpufreq_debug_disable_ratelimit();
1969
1970 if (!cpufreq_driver || (driver != cpufreq_driver)) {
1971 cpufreq_debug_enable_ratelimit();
1972 return -EINVAL;
1973 }
1974
1975 dprintk("unregistering driver %s\n", driver->name);
1976
1977 sysdev_driver_unregister(&cpu_sysdev_class, &cpufreq_sysdev_driver);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07001978 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1981 cpufreq_driver = NULL;
1982 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1983
1984 return 0;
1985}
1986EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001987
1988static int __init cpufreq_core_init(void)
1989{
1990 int cpu;
1991
1992 for_each_possible_cpu(cpu) {
Tejun Heof1625062009-10-29 22:34:13 +09001993 per_cpu(cpufreq_policy_cpu, cpu) = -1;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001994 init_rwsem(&per_cpu(cpu_policy_rwsem, cpu));
1995 }
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02001996
1997 cpufreq_global_kobject = kobject_create_and_add("cpufreq",
1998 &cpu_sysdev_class.kset.kobj);
1999 BUG_ON(!cpufreq_global_kobject);
2000
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002001 return 0;
2002}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002003core_initcall(cpufreq_core_init);