blob: 2f6a73c01b718318d583123f66aaa6c622dca6a0 [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;
41static struct cpufreq_policy *cpufreq_cpu_data[NR_CPUS];
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 */
44static struct cpufreq_governor *cpufreq_cpu_governor[NR_CPUS];
45#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.
64 */
65static DEFINE_PER_CPU(int, policy_cpu);
66static DEFINE_PER_CPU(struct rw_semaphore, cpu_policy_rwsem);
67
68#define lock_policy_rwsem(mode, cpu) \
69int lock_policy_rwsem_##mode \
70(int cpu) \
71{ \
72 int policy_cpu = per_cpu(policy_cpu, cpu); \
73 BUG_ON(policy_cpu == -1); \
74 down_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \
75 if (unlikely(!cpu_online(cpu))) { \
76 up_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \
77 return -1; \
78 } \
79 \
80 return 0; \
81}
82
83lock_policy_rwsem(read, cpu);
84EXPORT_SYMBOL_GPL(lock_policy_rwsem_read);
85
86lock_policy_rwsem(write, cpu);
87EXPORT_SYMBOL_GPL(lock_policy_rwsem_write);
88
89void unlock_policy_rwsem_read(int cpu)
90{
91 int policy_cpu = per_cpu(policy_cpu, cpu);
92 BUG_ON(policy_cpu == -1);
93 up_read(&per_cpu(cpu_policy_rwsem, policy_cpu));
94}
95EXPORT_SYMBOL_GPL(unlock_policy_rwsem_read);
96
97void unlock_policy_rwsem_write(int cpu)
98{
99 int policy_cpu = per_cpu(policy_cpu, cpu);
100 BUG_ON(policy_cpu == -1);
101 up_write(&per_cpu(cpu_policy_rwsem, policy_cpu));
102}
103EXPORT_SYMBOL_GPL(unlock_policy_rwsem_write);
104
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/* internal prototypes */
107static int __cpufreq_governor(struct cpufreq_policy *policy, unsigned int event);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800108static unsigned int __cpufreq_get(unsigned int cpu);
David Howells65f27f32006-11-22 14:55:48 +0000109static void handle_update(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111/**
Dave Jones32ee8c32006-02-28 00:43:23 -0500112 * Two notifier lists: the "policy" list is involved in the
113 * validation process for a new CPU frequency policy; the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * "transition" list for kernel code that needs to handle
115 * changes to devices when the CPU clock speed changes.
116 * The mutex locks both lists.
117 */
Alan Sterne041c682006-03-27 01:16:30 -0800118static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700119static struct srcu_notifier_head cpufreq_transition_notifier_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700121static int __init init_cpufreq_transition_notifier_list(void)
122{
123 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
124 return 0;
125}
Linus Torvaldsb3438f82006-11-20 11:47:18 -0800126pure_initcall(init_cpufreq_transition_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128static LIST_HEAD(cpufreq_governor_list);
Dave Jones7d5e3502006-02-02 17:03:42 -0500129static DEFINE_MUTEX (cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Dave Jones7d5e3502006-02-02 17:03:42 -0500131struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 struct cpufreq_policy *data;
134 unsigned long flags;
135
136 if (cpu >= NR_CPUS)
137 goto err_out;
138
139 /* get the cpufreq driver */
140 spin_lock_irqsave(&cpufreq_driver_lock, flags);
141
142 if (!cpufreq_driver)
143 goto err_out_unlock;
144
145 if (!try_module_get(cpufreq_driver->owner))
146 goto err_out_unlock;
147
148
149 /* get the CPU */
150 data = cpufreq_cpu_data[cpu];
151
152 if (!data)
153 goto err_out_put_module;
154
155 if (!kobject_get(&data->kobj))
156 goto err_out_put_module;
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return data;
160
Dave Jones7d5e3502006-02-02 17:03:42 -0500161err_out_put_module:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 module_put(cpufreq_driver->owner);
Dave Jones7d5e3502006-02-02 17:03:42 -0500163err_out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones7d5e3502006-02-02 17:03:42 -0500165err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return NULL;
167}
168EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
169
Dave Jones7d5e3502006-02-02 17:03:42 -0500170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171void cpufreq_cpu_put(struct cpufreq_policy *data)
172{
173 kobject_put(&data->kobj);
174 module_put(cpufreq_driver->owner);
175}
176EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
177
178
179/*********************************************************************
180 * UNIFIED DEBUG HELPERS *
181 *********************************************************************/
182#ifdef CONFIG_CPU_FREQ_DEBUG
183
184/* what part(s) of the CPUfreq subsystem are debugged? */
185static unsigned int debug;
186
187/* is the debug output ratelimit'ed using printk_ratelimit? User can
188 * set or modify this value.
189 */
190static unsigned int debug_ratelimit = 1;
191
192/* is the printk_ratelimit'ing enabled? It's enabled after a successful
193 * loading of a cpufreq driver, temporarily disabled when a new policy
194 * is set, and disabled upon cpufreq driver removal
195 */
196static unsigned int disable_ratelimit = 1;
197static DEFINE_SPINLOCK(disable_ratelimit_lock);
198
Arjan van de Ven858119e2006-01-14 13:20:43 -0800199static void cpufreq_debug_enable_ratelimit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 unsigned long flags;
202
203 spin_lock_irqsave(&disable_ratelimit_lock, flags);
204 if (disable_ratelimit)
205 disable_ratelimit--;
206 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
207}
208
Arjan van de Ven858119e2006-01-14 13:20:43 -0800209static void cpufreq_debug_disable_ratelimit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 unsigned long flags;
212
213 spin_lock_irqsave(&disable_ratelimit_lock, flags);
214 disable_ratelimit++;
215 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
216}
217
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530218void cpufreq_debug_printk(unsigned int type, const char *prefix,
219 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 char s[256];
222 va_list args;
223 unsigned int len;
224 unsigned long flags;
Dave Jones32ee8c32006-02-28 00:43:23 -0500225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 WARN_ON(!prefix);
227 if (type & debug) {
228 spin_lock_irqsave(&disable_ratelimit_lock, flags);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530229 if (!disable_ratelimit && debug_ratelimit
230 && !printk_ratelimit()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
232 return;
233 }
234 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
235
236 len = snprintf(s, 256, KERN_DEBUG "%s: ", prefix);
237
238 va_start(args, fmt);
239 len += vsnprintf(&s[len], (256 - len), fmt, args);
240 va_end(args);
241
242 printk(s);
243
244 WARN_ON(len < 5);
245 }
246}
247EXPORT_SYMBOL(cpufreq_debug_printk);
248
249
250module_param(debug, uint, 0644);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530251MODULE_PARM_DESC(debug, "CPUfreq debugging: add 1 to debug core,"
252 " 2 to debug drivers, and 4 to debug governors.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254module_param(debug_ratelimit, uint, 0644);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530255MODULE_PARM_DESC(debug_ratelimit, "CPUfreq debugging:"
256 " set to 0 to disable ratelimiting.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258#else /* !CONFIG_CPU_FREQ_DEBUG */
259
260static inline void cpufreq_debug_enable_ratelimit(void) { return; }
261static inline void cpufreq_debug_disable_ratelimit(void) { return; }
262
263#endif /* CONFIG_CPU_FREQ_DEBUG */
264
265
266/*********************************************************************
267 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
268 *********************************************************************/
269
270/**
271 * adjust_jiffies - adjust the system "loops_per_jiffy"
272 *
273 * This function alters the system "loops_per_jiffy" for the clock
274 * speed change. Note that loops_per_jiffy cannot be updated on SMP
Dave Jones32ee8c32006-02-28 00:43:23 -0500275 * systems as each CPU might be scaled differently. So, use the arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 * per-CPU loops_per_jiffy value wherever possible.
277 */
278#ifndef CONFIG_SMP
279static unsigned long l_p_j_ref;
280static unsigned int l_p_j_ref_freq;
281
Arjan van de Ven858119e2006-01-14 13:20:43 -0800282static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 if (ci->flags & CPUFREQ_CONST_LOOPS)
285 return;
286
287 if (!l_p_j_ref_freq) {
288 l_p_j_ref = loops_per_jiffy;
289 l_p_j_ref_freq = ci->old;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530290 dprintk("saving %lu as reference value for loops_per_jiffy;"
291 "freq is %u kHz\n", l_p_j_ref, l_p_j_ref_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293 if ((val == CPUFREQ_PRECHANGE && ci->old < ci->new) ||
294 (val == CPUFREQ_POSTCHANGE && ci->old > ci->new) ||
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -0700295 (val == CPUFREQ_RESUMECHANGE || val == CPUFREQ_SUSPENDCHANGE)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530296 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
297 ci->new);
298 dprintk("scaling loops_per_jiffy to %lu"
299 "for frequency %u kHz\n", loops_per_jiffy, ci->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301}
302#else
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530303static inline void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
304{
305 return;
306}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307#endif
308
309
310/**
Dave Jonese4472cb2006-01-31 15:53:55 -0800311 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
312 * on frequency transition.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 *
Dave Jonese4472cb2006-01-31 15:53:55 -0800314 * This function calls the transition notifiers and the "adjust_jiffies"
315 * function. It is called twice on all CPU frequency changes that have
Dave Jones32ee8c32006-02-28 00:43:23 -0500316 * external effects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 */
318void cpufreq_notify_transition(struct cpufreq_freqs *freqs, unsigned int state)
319{
Dave Jonese4472cb2006-01-31 15:53:55 -0800320 struct cpufreq_policy *policy;
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 BUG_ON(irqs_disabled());
323
324 freqs->flags = cpufreq_driver->flags;
Dave Jonese4472cb2006-01-31 15:53:55 -0800325 dprintk("notification %u of frequency transition to %u kHz\n",
326 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Dave Jonese4472cb2006-01-31 15:53:55 -0800328 policy = cpufreq_cpu_data[freqs->cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 switch (state) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 case CPUFREQ_PRECHANGE:
Dave Jones32ee8c32006-02-28 00:43:23 -0500332 /* detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800333 * which is not equal to what the cpufreq core thinks is
334 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 */
336 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800337 if ((policy) && (policy->cpu == freqs->cpu) &&
338 (policy->cur) && (policy->cur != freqs->old)) {
Jan Beulichb10eec22006-04-28 13:47:13 +0200339 dprintk("Warning: CPU frequency is"
Dave Jonese4472cb2006-01-31 15:53:55 -0800340 " %u, cpufreq assumed %u kHz.\n",
341 freqs->old, policy->cur);
342 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700345 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800346 CPUFREQ_PRECHANGE, freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
348 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 case CPUFREQ_POSTCHANGE:
351 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700352 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800353 CPUFREQ_POSTCHANGE, freqs);
Dave Jonese4472cb2006-01-31 15:53:55 -0800354 if (likely(policy) && likely(policy->cpu == freqs->cpu))
355 policy->cur = freqs->new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 break;
357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359EXPORT_SYMBOL_GPL(cpufreq_notify_transition);
360
361
362
363/*********************************************************************
364 * SYSFS INTERFACE *
365 *********************************************************************/
366
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700367static struct cpufreq_governor *__find_governor(const char *str_governor)
368{
369 struct cpufreq_governor *t;
370
371 list_for_each_entry(t, &cpufreq_governor_list, governor_list)
372 if (!strnicmp(str_governor,t->name,CPUFREQ_NAME_LEN))
373 return t;
374
375 return NULL;
376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/**
379 * cpufreq_parse_governor - parse a governor string
380 */
381static int cpufreq_parse_governor (char *str_governor, unsigned int *policy,
382 struct cpufreq_governor **governor)
383{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700384 int err = -EINVAL;
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (!cpufreq_driver)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700387 goto out;
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (cpufreq_driver->setpolicy) {
390 if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
391 *policy = CPUFREQ_POLICY_PERFORMANCE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700392 err = 0;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530393 } else if (!strnicmp(str_governor, "powersave",
394 CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 *policy = CPUFREQ_POLICY_POWERSAVE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700396 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700398 } else if (cpufreq_driver->target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700400
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800401 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700402
403 t = __find_governor(str_governor);
404
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700405 if (t == NULL) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530406 char *name = kasprintf(GFP_KERNEL, "cpufreq_%s",
407 str_governor);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700408
409 if (name) {
410 int ret;
411
412 mutex_unlock(&cpufreq_governor_mutex);
413 ret = request_module(name);
414 mutex_lock(&cpufreq_governor_mutex);
415
416 if (ret == 0)
417 t = __find_governor(str_governor);
418 }
419
420 kfree(name);
421 }
422
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700423 if (t != NULL) {
424 *governor = t;
425 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700427
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800428 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700430 out:
431 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434
435/* drivers/base/cpu.c */
436extern struct sysdev_class cpu_sysdev_class;
437
438
439/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530440 * cpufreq_per_cpu_attr_read() / show_##file_name() -
441 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 *
443 * Write out information from cpufreq_driver->policy[cpu]; object must be
444 * "unsigned int".
445 */
446
Dave Jones32ee8c32006-02-28 00:43:23 -0500447#define show_one(file_name, object) \
448static ssize_t show_##file_name \
449(struct cpufreq_policy * policy, char *buf) \
450{ \
451 return sprintf (buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
454show_one(cpuinfo_min_freq, cpuinfo.min_freq);
455show_one(cpuinfo_max_freq, cpuinfo.max_freq);
456show_one(scaling_min_freq, min);
457show_one(scaling_max_freq, max);
458show_one(scaling_cur_freq, cur);
459
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530460static int __cpufreq_set_policy(struct cpufreq_policy *data,
461 struct cpufreq_policy *policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463/**
464 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
465 */
466#define store_one(file_name, object) \
467static ssize_t store_##file_name \
468(struct cpufreq_policy * policy, const char *buf, size_t count) \
469{ \
470 unsigned int ret = -EINVAL; \
471 struct cpufreq_policy new_policy; \
472 \
473 ret = cpufreq_get_policy(&new_policy, policy->cpu); \
474 if (ret) \
475 return -EINVAL; \
476 \
477 ret = sscanf (buf, "%u", &new_policy.object); \
478 if (ret != 1) \
479 return -EINVAL; \
480 \
Thomas Renninger7970e082006-04-13 15:14:04 +0200481 ret = __cpufreq_set_policy(policy, &new_policy); \
482 policy->user_policy.object = policy->object; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 \
484 return ret ? ret : count; \
485}
486
487store_one(scaling_min_freq,min);
488store_one(scaling_max_freq,max);
489
490/**
491 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
492 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530493static ssize_t show_cpuinfo_cur_freq (struct cpufreq_policy * policy,
494 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800496 unsigned int cur_freq = __cpufreq_get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (!cur_freq)
498 return sprintf(buf, "<unknown>");
499 return sprintf(buf, "%u\n", cur_freq);
500}
501
502
503/**
504 * show_scaling_governor - show the current policy for the specified CPU
505 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530506static ssize_t show_scaling_governor (struct cpufreq_policy * policy,
507 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 if(policy->policy == CPUFREQ_POLICY_POWERSAVE)
510 return sprintf(buf, "powersave\n");
511 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
512 return sprintf(buf, "performance\n");
513 else if (policy->governor)
514 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", policy->governor->name);
515 return -EINVAL;
516}
517
518
519/**
520 * store_scaling_governor - store policy for the specified CPU
521 */
Dave Jones32ee8c32006-02-28 00:43:23 -0500522static ssize_t store_scaling_governor (struct cpufreq_policy * policy,
523 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 unsigned int ret = -EINVAL;
526 char str_governor[16];
527 struct cpufreq_policy new_policy;
528
529 ret = cpufreq_get_policy(&new_policy, policy->cpu);
530 if (ret)
531 return ret;
532
533 ret = sscanf (buf, "%15s", str_governor);
534 if (ret != 1)
535 return -EINVAL;
536
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530537 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
538 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return -EINVAL;
540
Thomas Renninger7970e082006-04-13 15:14:04 +0200541 /* Do not use cpufreq_set_policy here or the user_policy.max
542 will be wrongly overridden */
Thomas Renninger7970e082006-04-13 15:14:04 +0200543 ret = __cpufreq_set_policy(policy, &new_policy);
544
545 policy->user_policy.policy = policy->policy;
546 policy->user_policy.governor = policy->governor;
Thomas Renninger7970e082006-04-13 15:14:04 +0200547
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530548 if (ret)
549 return ret;
550 else
551 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554/**
555 * show_scaling_driver - show the cpufreq driver currently loaded
556 */
557static ssize_t show_scaling_driver (struct cpufreq_policy * policy, char *buf)
558{
559 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", cpufreq_driver->name);
560}
561
562/**
563 * show_scaling_available_governors - show the available CPUfreq governors
564 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530565static ssize_t show_scaling_available_governors (struct cpufreq_policy *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 char *buf)
567{
568 ssize_t i = 0;
569 struct cpufreq_governor *t;
570
571 if (!cpufreq_driver->target) {
572 i += sprintf(buf, "performance powersave");
573 goto out;
574 }
575
576 list_for_each_entry(t, &cpufreq_governor_list, governor_list) {
577 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char)) - (CPUFREQ_NAME_LEN + 2)))
578 goto out;
579 i += scnprintf(&buf[i], CPUFREQ_NAME_LEN, "%s ", t->name);
580 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500581out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 i += sprintf(&buf[i], "\n");
583 return i;
584}
585/**
586 * show_affected_cpus - show the CPUs affected by each transition
587 */
588static ssize_t show_affected_cpus (struct cpufreq_policy * policy, char *buf)
589{
590 ssize_t i = 0;
591 unsigned int cpu;
592
593 for_each_cpu_mask(cpu, policy->cpus) {
594 if (i)
595 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
596 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
597 if (i >= (PAGE_SIZE - 5))
598 break;
599 }
600 i += sprintf(&buf[i], "\n");
601 return i;
602}
603
604
605#define define_one_ro(_name) \
606static struct freq_attr _name = \
607__ATTR(_name, 0444, show_##_name, NULL)
608
609#define define_one_ro0400(_name) \
610static struct freq_attr _name = \
611__ATTR(_name, 0400, show_##_name, NULL)
612
613#define define_one_rw(_name) \
614static struct freq_attr _name = \
615__ATTR(_name, 0644, show_##_name, store_##_name)
616
617define_one_ro0400(cpuinfo_cur_freq);
618define_one_ro(cpuinfo_min_freq);
619define_one_ro(cpuinfo_max_freq);
620define_one_ro(scaling_available_governors);
621define_one_ro(scaling_driver);
622define_one_ro(scaling_cur_freq);
623define_one_ro(affected_cpus);
624define_one_rw(scaling_min_freq);
625define_one_rw(scaling_max_freq);
626define_one_rw(scaling_governor);
627
628static struct attribute * default_attrs[] = {
629 &cpuinfo_min_freq.attr,
630 &cpuinfo_max_freq.attr,
631 &scaling_min_freq.attr,
632 &scaling_max_freq.attr,
633 &affected_cpus.attr,
634 &scaling_governor.attr,
635 &scaling_driver.attr,
636 &scaling_available_governors.attr,
637 NULL
638};
639
640#define to_policy(k) container_of(k,struct cpufreq_policy,kobj)
641#define to_attr(a) container_of(a,struct freq_attr,attr)
642
643static ssize_t show(struct kobject * kobj, struct attribute * attr ,char * buf)
644{
645 struct cpufreq_policy * policy = to_policy(kobj);
646 struct freq_attr * fattr = to_attr(attr);
647 ssize_t ret;
648 policy = cpufreq_cpu_get(policy->cpu);
649 if (!policy)
650 return -EINVAL;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800651
652 if (lock_policy_rwsem_read(policy->cpu) < 0)
653 return -EINVAL;
654
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530655 if (fattr->show)
656 ret = fattr->show(policy, buf);
657 else
658 ret = -EIO;
659
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800660 unlock_policy_rwsem_read(policy->cpu);
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 cpufreq_cpu_put(policy);
663 return ret;
664}
665
Dave Jones32ee8c32006-02-28 00:43:23 -0500666static ssize_t store(struct kobject * kobj, struct attribute * attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 const char * buf, size_t count)
668{
669 struct cpufreq_policy * policy = to_policy(kobj);
670 struct freq_attr * fattr = to_attr(attr);
671 ssize_t ret;
672 policy = cpufreq_cpu_get(policy->cpu);
673 if (!policy)
674 return -EINVAL;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800675
676 if (lock_policy_rwsem_write(policy->cpu) < 0)
677 return -EINVAL;
678
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530679 if (fattr->store)
680 ret = fattr->store(policy, buf, count);
681 else
682 ret = -EIO;
683
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800684 unlock_policy_rwsem_write(policy->cpu);
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 cpufreq_cpu_put(policy);
687 return ret;
688}
689
690static void cpufreq_sysfs_release(struct kobject * kobj)
691{
692 struct cpufreq_policy * policy = to_policy(kobj);
693 dprintk("last reference is dropped\n");
694 complete(&policy->kobj_unregister);
695}
696
697static struct sysfs_ops sysfs_ops = {
698 .show = show,
699 .store = store,
700};
701
702static struct kobj_type ktype_cpufreq = {
703 .sysfs_ops = &sysfs_ops,
704 .default_attrs = default_attrs,
705 .release = cpufreq_sysfs_release,
706};
707
708
709/**
710 * cpufreq_add_dev - add a CPU device
711 *
Dave Jones32ee8c32006-02-28 00:43:23 -0500712 * Adds the cpufreq interface for a CPU device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 */
714static int cpufreq_add_dev (struct sys_device * sys_dev)
715{
716 unsigned int cpu = sys_dev->id;
717 int ret = 0;
718 struct cpufreq_policy new_policy;
719 struct cpufreq_policy *policy;
720 struct freq_attr **drv_attr;
Dave Jones8ff69732006-03-05 03:37:23 -0500721 struct sys_device *cpu_sys_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 unsigned long flags;
723 unsigned int j;
Dave Jones8ff69732006-03-05 03:37:23 -0500724#ifdef CONFIG_SMP
725 struct cpufreq_policy *managed_policy;
726#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Ashok Rajc32b6b82005-10-30 14:59:54 -0800728 if (cpu_is_offline(cpu))
729 return 0;
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 cpufreq_debug_disable_ratelimit();
732 dprintk("adding CPU %u\n", cpu);
733
734#ifdef CONFIG_SMP
735 /* check whether a different CPU already registered this
736 * CPU because it is in the same boat. */
737 policy = cpufreq_cpu_get(cpu);
738 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500739 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 cpufreq_debug_enable_ratelimit();
741 return 0;
742 }
743#endif
744
745 if (!try_module_get(cpufreq_driver->owner)) {
746 ret = -EINVAL;
747 goto module_out;
748 }
749
Dave Jonese98df502005-10-20 15:17:43 -0700750 policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (!policy) {
752 ret = -ENOMEM;
753 goto nomem_out;
754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 policy->cpu = cpu;
757 policy->cpus = cpumask_of_cpu(cpu);
758
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800759 /* Initially set CPU itself as the policy_cpu */
760 per_cpu(policy_cpu, cpu) = cpu;
761 lock_policy_rwsem_write(cpu);
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +0000764 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 /* call driver. From then on the cpufreq must be able
767 * to accept all calls to ->verify and ->setpolicy for this CPU
768 */
769 ret = cpufreq_driver->init(policy);
770 if (ret) {
771 dprintk("initialization failed\n");
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800772 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 goto err_out;
774 }
Thomas Renninger22c970f2007-04-19 15:48:34 +0200775 policy->user_policy.min = policy->cpuinfo.min_freq;
776 policy->user_policy.max = policy->cpuinfo.max_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Dave Jones8ff69732006-03-05 03:37:23 -0500778#ifdef CONFIG_SMP
Thomas Renninger084f3492007-07-09 11:35:28 -0700779
780#ifdef CONFIG_HOTPLUG_CPU
781 if (cpufreq_cpu_governor[cpu]){
782 policy->governor = cpufreq_cpu_governor[cpu];
783 dprintk("Restoring governor %s for cpu %d\n",
784 policy->governor->name, cpu);
785 }
786#endif
787
Dave Jones8ff69732006-03-05 03:37:23 -0500788 for_each_cpu_mask(j, policy->cpus) {
789 if (cpu == j)
790 continue;
791
792 /* check for existing affected CPUs. They may not be aware
793 * of it due to CPU Hotplug.
794 */
795 managed_policy = cpufreq_cpu_get(j);
796 if (unlikely(managed_policy)) {
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800797
798 /* Set proper policy_cpu */
799 unlock_policy_rwsem_write(cpu);
800 per_cpu(policy_cpu, cpu) = managed_policy->cpu;
801
802 if (lock_policy_rwsem_write(cpu) < 0)
803 goto err_out_driver_exit;
804
Dave Jones8ff69732006-03-05 03:37:23 -0500805 spin_lock_irqsave(&cpufreq_driver_lock, flags);
806 managed_policy->cpus = policy->cpus;
807 cpufreq_cpu_data[cpu] = managed_policy;
808 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
809
810 dprintk("CPU already managed, adding link\n");
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200811 ret = sysfs_create_link(&sys_dev->kobj,
812 &managed_policy->kobj,
813 "cpufreq");
814 if (ret) {
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800815 unlock_policy_rwsem_write(cpu);
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200816 goto err_out_driver_exit;
817 }
Dave Jones8ff69732006-03-05 03:37:23 -0500818
819 cpufreq_debug_enable_ratelimit();
Dave Jones8ff69732006-03-05 03:37:23 -0500820 ret = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800821 unlock_policy_rwsem_write(cpu);
Dave Jones8ff69732006-03-05 03:37:23 -0500822 goto err_out_driver_exit; /* call driver->exit() */
823 }
824 }
825#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 memcpy(&new_policy, policy, sizeof(struct cpufreq_policy));
827
828 /* prepare interface data */
829 policy->kobj.parent = &sys_dev->kobj;
830 policy->kobj.ktype = &ktype_cpufreq;
831 strlcpy(policy->kobj.name, "cpufreq", KOBJ_NAME_LEN);
832
833 ret = kobject_register(&policy->kobj);
Andrew Mortonf3876c12006-01-18 13:40:54 -0800834 if (ret) {
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800835 unlock_policy_rwsem_write(cpu);
Venkatesh Pallipadi8085e1f2005-08-25 13:14:06 -0700836 goto err_out_driver_exit;
Andrew Mortonf3876c12006-01-18 13:40:54 -0800837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 /* set up files for this cpu device */
839 drv_attr = cpufreq_driver->attr;
840 while ((drv_attr) && (*drv_attr)) {
Tobias Klauser58a72952007-06-14 00:28:15 +0200841 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
842 if (ret)
Thomas Renninger0a4b2cc2007-05-21 07:20:04 -0500843 goto err_out_driver_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 drv_attr++;
845 }
Thomas Renninger0a4b2cc2007-05-21 07:20:04 -0500846 if (cpufreq_driver->get){
Tobias Klauser58a72952007-06-14 00:28:15 +0200847 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
848 if (ret)
Thomas Renninger0a4b2cc2007-05-21 07:20:04 -0500849 goto err_out_driver_exit;
850 }
851 if (cpufreq_driver->target){
Tobias Klauser58a72952007-06-14 00:28:15 +0200852 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
853 if (ret)
Thomas Renninger0a4b2cc2007-05-21 07:20:04 -0500854 goto err_out_driver_exit;
855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 spin_lock_irqsave(&cpufreq_driver_lock, flags);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800858 for_each_cpu_mask(j, policy->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 cpufreq_cpu_data[j] = policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800860 per_cpu(policy_cpu, j) = policy->cpu;
861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones8ff69732006-03-05 03:37:23 -0500863
864 /* symlink affected CPUs */
865 for_each_cpu_mask(j, policy->cpus) {
866 if (j == cpu)
867 continue;
868 if (!cpu_online(j))
869 continue;
870
Dave Jones1f8b2c92006-03-29 01:40:04 -0500871 dprintk("CPU %u already managed, adding link\n", j);
Dave Jones8ff69732006-03-05 03:37:23 -0500872 cpufreq_cpu_get(cpu);
873 cpu_sys_dev = get_cpu_sysdev(j);
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200874 ret = sysfs_create_link(&cpu_sys_dev->kobj, &policy->kobj,
875 "cpufreq");
876 if (ret) {
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800877 unlock_policy_rwsem_write(cpu);
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200878 goto err_out_unregister;
879 }
Dave Jones8ff69732006-03-05 03:37:23 -0500880 }
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 policy->governor = NULL; /* to assure that the starting sequence is
883 * run in cpufreq_set_policy */
Dave Jones87c32272006-03-29 01:48:37 -0500884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 /* set default policy */
Thomas Renninger22c970f2007-04-19 15:48:34 +0200886 ret = __cpufreq_set_policy(policy, &new_policy);
887 policy->user_policy.policy = policy->policy;
Thomas Renninger084f3492007-07-09 11:35:28 -0700888 policy->user_policy.governor = policy->governor;
Thomas Renninger22c970f2007-04-19 15:48:34 +0200889
890 unlock_policy_rwsem_write(cpu);
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (ret) {
893 dprintk("setting policy failed\n");
894 goto err_out_unregister;
895 }
896
897 module_put(cpufreq_driver->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 dprintk("initialization complete\n");
899 cpufreq_debug_enable_ratelimit();
Dave Jones87c32272006-03-29 01:48:37 -0500900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return 0;
902
903
904err_out_unregister:
905 spin_lock_irqsave(&cpufreq_driver_lock, flags);
906 for_each_cpu_mask(j, policy->cpus)
907 cpufreq_cpu_data[j] = NULL;
908 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
909
910 kobject_unregister(&policy->kobj);
911 wait_for_completion(&policy->kobj_unregister);
912
Venkatesh Pallipadi8085e1f2005-08-25 13:14:06 -0700913err_out_driver_exit:
914 if (cpufreq_driver->exit)
915 cpufreq_driver->exit(policy);
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917err_out:
918 kfree(policy);
919
920nomem_out:
921 module_put(cpufreq_driver->owner);
Ashok Rajc32b6b82005-10-30 14:59:54 -0800922module_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 cpufreq_debug_enable_ratelimit();
924 return ret;
925}
926
927
928/**
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800929 * __cpufreq_remove_dev - remove a CPU device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 *
931 * Removes the cpufreq interface for a CPU device.
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800932 * Caller should already have policy_rwsem in write mode for this CPU.
933 * This routine frees the rwsem before returning.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 */
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800935static int __cpufreq_remove_dev (struct sys_device * sys_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
937 unsigned int cpu = sys_dev->id;
938 unsigned long flags;
939 struct cpufreq_policy *data;
940#ifdef CONFIG_SMP
Grant Coadye738cf62005-11-21 21:32:28 -0800941 struct sys_device *cpu_sys_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 unsigned int j;
943#endif
944
945 cpufreq_debug_disable_ratelimit();
946 dprintk("unregistering CPU %u\n", cpu);
947
948 spin_lock_irqsave(&cpufreq_driver_lock, flags);
949 data = cpufreq_cpu_data[cpu];
950
951 if (!data) {
952 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 cpufreq_debug_enable_ratelimit();
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800954 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return -EINVAL;
956 }
957 cpufreq_cpu_data[cpu] = NULL;
958
959
960#ifdef CONFIG_SMP
961 /* if this isn't the CPU which is the parent of the kobj, we
Dave Jones32ee8c32006-02-28 00:43:23 -0500962 * only need to unlink, put and exit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 */
964 if (unlikely(cpu != data->cpu)) {
965 dprintk("removing link\n");
Dave Jones8ff69732006-03-05 03:37:23 -0500966 cpu_clear(cpu, data->cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
968 sysfs_remove_link(&sys_dev->kobj, "cpufreq");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 cpufreq_cpu_put(data);
970 cpufreq_debug_enable_ratelimit();
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800971 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return 0;
973 }
974#endif
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 if (!kobject_get(&data->kobj)) {
978 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
979 cpufreq_debug_enable_ratelimit();
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800980 unlock_policy_rwsem_write(cpu);
Dave Jones32ee8c32006-02-28 00:43:23 -0500981 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983
984#ifdef CONFIG_SMP
Thomas Renninger084f3492007-07-09 11:35:28 -0700985
986#ifdef CONFIG_HOTPLUG_CPU
987 cpufreq_cpu_governor[cpu] = data->governor;
988#endif
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 /* if we have other CPUs still registered, we need to unlink them,
991 * or else wait_for_completion below will lock up. Clean the
992 * cpufreq_cpu_data[] while holding the lock, and remove the sysfs
993 * links afterwards.
994 */
995 if (unlikely(cpus_weight(data->cpus) > 1)) {
996 for_each_cpu_mask(j, data->cpus) {
997 if (j == cpu)
998 continue;
999 cpufreq_cpu_data[j] = NULL;
1000 }
1001 }
1002
1003 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1004
1005 if (unlikely(cpus_weight(data->cpus) > 1)) {
1006 for_each_cpu_mask(j, data->cpus) {
1007 if (j == cpu)
1008 continue;
1009 dprintk("removing link for cpu %u\n", j);
Thomas Renninger084f3492007-07-09 11:35:28 -07001010#ifdef CONFIG_HOTPLUG_CPU
1011 cpufreq_cpu_governor[j] = data->governor;
1012#endif
Ashok Rajd434fca2005-10-30 14:59:52 -08001013 cpu_sys_dev = get_cpu_sysdev(j);
1014 sysfs_remove_link(&cpu_sys_dev->kobj, "cpufreq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 cpufreq_cpu_put(data);
1016 }
1017 }
1018#else
1019 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1020#endif
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (cpufreq_driver->target)
1023 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001024
1025 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 kobject_unregister(&data->kobj);
1028
1029 kobject_put(&data->kobj);
1030
1031 /* we need to make sure that the underlying kobj is actually
Dave Jones32ee8c32006-02-28 00:43:23 -05001032 * not referenced anymore by anybody before we proceed with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 * unloading.
1034 */
1035 dprintk("waiting for dropping of refcount\n");
1036 wait_for_completion(&data->kobj_unregister);
1037 dprintk("wait complete\n");
1038
1039 if (cpufreq_driver->exit)
1040 cpufreq_driver->exit(data);
1041
1042 kfree(data);
1043
1044 cpufreq_debug_enable_ratelimit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return 0;
1046}
1047
1048
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001049static int cpufreq_remove_dev (struct sys_device * sys_dev)
1050{
1051 unsigned int cpu = sys_dev->id;
1052 int retval;
Venki Pallipadiec282972007-03-26 12:03:19 -07001053
1054 if (cpu_is_offline(cpu))
1055 return 0;
1056
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001057 if (unlikely(lock_policy_rwsem_write(cpu)))
1058 BUG();
1059
1060 retval = __cpufreq_remove_dev(sys_dev);
1061 return retval;
1062}
1063
1064
David Howells65f27f32006-11-22 14:55:48 +00001065static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
David Howells65f27f32006-11-22 14:55:48 +00001067 struct cpufreq_policy *policy =
1068 container_of(work, struct cpufreq_policy, update);
1069 unsigned int cpu = policy->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 dprintk("handle_update for cpu %u called\n", cpu);
1071 cpufreq_update_policy(cpu);
1072}
1073
1074/**
1075 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're in deep trouble.
1076 * @cpu: cpu number
1077 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1078 * @new_freq: CPU frequency the CPU actually runs at
1079 *
1080 * We adjust to current frequency first, and need to clean up later. So either call
1081 * to cpufreq_update_policy() or schedule handle_update()).
1082 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301083static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1084 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 struct cpufreq_freqs freqs;
1087
Jan Beulichb10eec22006-04-28 13:47:13 +02001088 dprintk("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1090
1091 freqs.cpu = cpu;
1092 freqs.old = old_freq;
1093 freqs.new = new_freq;
1094 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1095 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
1096}
1097
1098
Dave Jones32ee8c32006-02-28 00:43:23 -05001099/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301100 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001101 * @cpu: CPU number
1102 *
1103 * This is the last known freq, without actually getting it from the driver.
1104 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1105 */
1106unsigned int cpufreq_quick_get(unsigned int cpu)
1107{
1108 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301109 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001110
1111 if (policy) {
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001112 if (unlikely(lock_policy_rwsem_read(cpu)))
1113 return ret_freq;
1114
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301115 ret_freq = policy->cur;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001116
1117 unlock_policy_rwsem_read(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001118 cpufreq_cpu_put(policy);
1119 }
1120
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301121 return (ret_freq);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001122}
1123EXPORT_SYMBOL(cpufreq_quick_get);
1124
1125
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001126static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001128 struct cpufreq_policy *policy = cpufreq_cpu_data[cpu];
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301129 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (!cpufreq_driver->get)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001132 return (ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301134 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301136 if (ret_freq && policy->cur &&
1137 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1138 /* verify no discrepancy between actual and
1139 saved value exists */
1140 if (unlikely(ret_freq != policy->cur)) {
1141 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 schedule_work(&policy->update);
1143 }
1144 }
1145
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001146 return (ret_freq);
1147}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001149/**
1150 * cpufreq_get - get the current CPU frequency (in kHz)
1151 * @cpu: CPU number
1152 *
1153 * Get the CPU current (static) CPU frequency
1154 */
1155unsigned int cpufreq_get(unsigned int cpu)
1156{
1157 unsigned int ret_freq = 0;
1158 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1159
1160 if (!policy)
1161 goto out;
1162
1163 if (unlikely(lock_policy_rwsem_read(cpu)))
1164 goto out_policy;
1165
1166 ret_freq = __cpufreq_get(cpu);
1167
1168 unlock_policy_rwsem_read(cpu);
1169
1170out_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 cpufreq_cpu_put(policy);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001172out:
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301173 return (ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175EXPORT_SYMBOL(cpufreq_get);
1176
1177
1178/**
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001179 * cpufreq_suspend - let the low level driver prepare for suspend
1180 */
1181
Bernard Blackhame00d9962005-07-07 17:56:42 -07001182static int cpufreq_suspend(struct sys_device * sysdev, pm_message_t pmsg)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001183{
1184 int cpu = sysdev->id;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301185 int ret = 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001186 unsigned int cur_freq = 0;
1187 struct cpufreq_policy *cpu_policy;
1188
Dave Jones0e37b152006-09-26 23:02:34 -04001189 dprintk("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001190
1191 if (!cpu_online(cpu))
1192 return 0;
1193
1194 /* we may be lax here as interrupts are off. Nonetheless
1195 * we need to grab the correct cpu policy, as to check
1196 * whether we really run on this CPU.
1197 */
1198
1199 cpu_policy = cpufreq_cpu_get(cpu);
1200 if (!cpu_policy)
1201 return -EINVAL;
1202
1203 /* only handle each CPU group once */
1204 if (unlikely(cpu_policy->cpu != cpu)) {
1205 cpufreq_cpu_put(cpu_policy);
1206 return 0;
1207 }
1208
1209 if (cpufreq_driver->suspend) {
Bernard Blackhame00d9962005-07-07 17:56:42 -07001210 ret = cpufreq_driver->suspend(cpu_policy, pmsg);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001211 if (ret) {
1212 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
1213 "step on CPU %u\n", cpu_policy->cpu);
1214 cpufreq_cpu_put(cpu_policy);
1215 return ret;
1216 }
1217 }
1218
1219
1220 if (cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)
1221 goto out;
1222
1223 if (cpufreq_driver->get)
1224 cur_freq = cpufreq_driver->get(cpu_policy->cpu);
1225
1226 if (!cur_freq || !cpu_policy->cur) {
1227 printk(KERN_ERR "cpufreq: suspend failed to assert current "
1228 "frequency is what timing core thinks it is.\n");
1229 goto out;
1230 }
1231
1232 if (unlikely(cur_freq != cpu_policy->cur)) {
1233 struct cpufreq_freqs freqs;
1234
1235 if (!(cpufreq_driver->flags & CPUFREQ_PM_NO_WARN))
Jan Beulichb10eec22006-04-28 13:47:13 +02001236 dprintk("Warning: CPU frequency is %u, "
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001237 "cpufreq assumed %u kHz.\n",
1238 cur_freq, cpu_policy->cur);
1239
1240 freqs.cpu = cpu;
1241 freqs.old = cpu_policy->cur;
1242 freqs.new = cur_freq;
1243
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001244 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001245 CPUFREQ_SUSPENDCHANGE, &freqs);
1246 adjust_jiffies(CPUFREQ_SUSPENDCHANGE, &freqs);
1247
1248 cpu_policy->cur = cur_freq;
1249 }
1250
Dave Jones7d5e3502006-02-02 17:03:42 -05001251out:
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001252 cpufreq_cpu_put(cpu_policy);
1253 return 0;
1254}
1255
1256/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 * cpufreq_resume - restore proper CPU frequency handling after resume
1258 *
1259 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
1260 * 2.) if ->target and !CPUFREQ_CONST_LOOPS: verify we're in sync
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001261 * 3.) schedule call cpufreq_update_policy() ASAP as interrupts are
1262 * restored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 */
1264static int cpufreq_resume(struct sys_device * sysdev)
1265{
1266 int cpu = sysdev->id;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301267 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 struct cpufreq_policy *cpu_policy;
1269
1270 dprintk("resuming cpu %u\n", cpu);
1271
1272 if (!cpu_online(cpu))
1273 return 0;
1274
1275 /* we may be lax here as interrupts are off. Nonetheless
1276 * we need to grab the correct cpu policy, as to check
1277 * whether we really run on this CPU.
1278 */
1279
1280 cpu_policy = cpufreq_cpu_get(cpu);
1281 if (!cpu_policy)
1282 return -EINVAL;
1283
1284 /* only handle each CPU group once */
1285 if (unlikely(cpu_policy->cpu != cpu)) {
1286 cpufreq_cpu_put(cpu_policy);
1287 return 0;
1288 }
1289
1290 if (cpufreq_driver->resume) {
1291 ret = cpufreq_driver->resume(cpu_policy);
1292 if (ret) {
1293 printk(KERN_ERR "cpufreq: resume failed in ->resume "
1294 "step on CPU %u\n", cpu_policy->cpu);
1295 cpufreq_cpu_put(cpu_policy);
1296 return ret;
1297 }
1298 }
1299
1300 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1301 unsigned int cur_freq = 0;
1302
1303 if (cpufreq_driver->get)
1304 cur_freq = cpufreq_driver->get(cpu_policy->cpu);
1305
1306 if (!cur_freq || !cpu_policy->cur) {
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001307 printk(KERN_ERR "cpufreq: resume failed to assert "
1308 "current frequency is what timing core "
1309 "thinks it is.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 goto out;
1311 }
1312
1313 if (unlikely(cur_freq != cpu_policy->cur)) {
1314 struct cpufreq_freqs freqs;
1315
Benjamin Herrenschmidtac09f692005-05-02 16:25:10 +10001316 if (!(cpufreq_driver->flags & CPUFREQ_PM_NO_WARN))
Jan Beulichb10eec22006-04-28 13:47:13 +02001317 dprintk("Warning: CPU frequency"
Benjamin Herrenschmidtac09f692005-05-02 16:25:10 +10001318 "is %u, cpufreq assumed %u kHz.\n",
1319 cur_freq, cpu_policy->cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 freqs.cpu = cpu;
1322 freqs.old = cpu_policy->cur;
1323 freqs.new = cur_freq;
1324
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001325 srcu_notifier_call_chain(
Alan Sterne041c682006-03-27 01:16:30 -08001326 &cpufreq_transition_notifier_list,
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001327 CPUFREQ_RESUMECHANGE, &freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 adjust_jiffies(CPUFREQ_RESUMECHANGE, &freqs);
1329
1330 cpu_policy->cur = cur_freq;
1331 }
1332 }
1333
1334out:
1335 schedule_work(&cpu_policy->update);
1336 cpufreq_cpu_put(cpu_policy);
1337 return ret;
1338}
1339
1340static struct sysdev_driver cpufreq_sysdev_driver = {
1341 .add = cpufreq_add_dev,
1342 .remove = cpufreq_remove_dev,
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001343 .suspend = cpufreq_suspend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 .resume = cpufreq_resume,
1345};
1346
1347
1348/*********************************************************************
1349 * NOTIFIER LISTS INTERFACE *
1350 *********************************************************************/
1351
1352/**
1353 * cpufreq_register_notifier - register a driver with cpufreq
1354 * @nb: notifier function to register
1355 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1356 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001357 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 * are notified about clock rate changes (once before and once after
1359 * the transition), or a list of drivers that are notified about
1360 * changes in cpufreq policy.
1361 *
1362 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001363 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 */
1365int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1366{
1367 int ret;
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 switch (list) {
1370 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001371 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001372 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 break;
1374 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001375 ret = blocking_notifier_chain_register(
1376 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 break;
1378 default:
1379 ret = -EINVAL;
1380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 return ret;
1383}
1384EXPORT_SYMBOL(cpufreq_register_notifier);
1385
1386
1387/**
1388 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1389 * @nb: notifier block to be unregistered
1390 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1391 *
1392 * Remove a driver from the CPU frequency notifier list.
1393 *
1394 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001395 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 */
1397int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1398{
1399 int ret;
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 switch (list) {
1402 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001403 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001404 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 break;
1406 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001407 ret = blocking_notifier_chain_unregister(
1408 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 break;
1410 default:
1411 ret = -EINVAL;
1412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 return ret;
1415}
1416EXPORT_SYMBOL(cpufreq_unregister_notifier);
1417
1418
1419/*********************************************************************
1420 * GOVERNORS *
1421 *********************************************************************/
1422
1423
1424int __cpufreq_driver_target(struct cpufreq_policy *policy,
1425 unsigned int target_freq,
1426 unsigned int relation)
1427{
1428 int retval = -EINVAL;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 dprintk("target for CPU %u: %u kHz, relation %u\n", policy->cpu,
1431 target_freq, relation);
1432 if (cpu_online(policy->cpu) && cpufreq_driver->target)
1433 retval = cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return retval;
1436}
1437EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439int cpufreq_driver_target(struct cpufreq_policy *policy,
1440 unsigned int target_freq,
1441 unsigned int relation)
1442{
Dave Jonescc993ca2005-07-28 09:43:56 -07001443 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 policy = cpufreq_cpu_get(policy->cpu);
1446 if (!policy)
1447 return -EINVAL;
1448
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001449 if (unlikely(lock_policy_rwsem_write(policy->cpu)))
1450 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452 ret = __cpufreq_driver_target(policy, target_freq, relation);
1453
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001454 unlock_policy_rwsem_write(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return ret;
1458}
1459EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1460
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001461int __cpufreq_driver_getavg(struct cpufreq_policy *policy)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001462{
1463 int ret = 0;
1464
1465 policy = cpufreq_cpu_get(policy->cpu);
1466 if (!policy)
1467 return -EINVAL;
1468
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001469 if (cpu_online(policy->cpu) && cpufreq_driver->getavg)
1470 ret = cpufreq_driver->getavg(policy->cpu);
1471
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001472 cpufreq_cpu_put(policy);
1473 return ret;
1474}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001475EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001476
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001477/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001478 * when "event" is CPUFREQ_GOV_LIMITS
1479 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301481static int __cpufreq_governor(struct cpufreq_policy *policy,
1482 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Dave Jonescc993ca2005-07-28 09:43:56 -07001484 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 if (!try_module_get(policy->governor->owner))
1487 return -EINVAL;
1488
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301489 dprintk("__cpufreq_governor for CPU %u, event %u\n",
1490 policy->cpu, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 ret = policy->governor->governor(policy, event);
1492
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301493 /* we keep one module reference alive for
1494 each CPU governed by this CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 if ((event != CPUFREQ_GOV_START) || ret)
1496 module_put(policy->governor->owner);
1497 if ((event == CPUFREQ_GOV_STOP) && !ret)
1498 module_put(policy->governor->owner);
1499
1500 return ret;
1501}
1502
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504int cpufreq_register_governor(struct cpufreq_governor *governor)
1505{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001506 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508 if (!governor)
1509 return -EINVAL;
1510
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001511 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001512
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001513 err = -EBUSY;
1514 if (__find_governor(governor->name) == NULL) {
1515 err = 0;
1516 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Dave Jones32ee8c32006-02-28 00:43:23 -05001519 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001520 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1523
1524
1525void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1526{
1527 if (!governor)
1528 return;
1529
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001530 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001532 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 return;
1534}
1535EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1536
1537
1538
1539/*********************************************************************
1540 * POLICY INTERFACE *
1541 *********************************************************************/
1542
1543/**
1544 * cpufreq_get_policy - get the current cpufreq_policy
1545 * @policy: struct cpufreq_policy into which the current cpufreq_policy is written
1546 *
1547 * Reads the current cpufreq policy.
1548 */
1549int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1550{
1551 struct cpufreq_policy *cpu_policy;
1552 if (!policy)
1553 return -EINVAL;
1554
1555 cpu_policy = cpufreq_cpu_get(cpu);
1556 if (!cpu_policy)
1557 return -EINVAL;
1558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 memcpy(policy, cpu_policy, sizeof(struct cpufreq_policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 return 0;
1563}
1564EXPORT_SYMBOL(cpufreq_get_policy);
1565
1566
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001567/*
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301568 * data : current policy.
1569 * policy : policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001570 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301571static int __cpufreq_set_policy(struct cpufreq_policy *data,
1572 struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573{
1574 int ret = 0;
1575
1576 cpufreq_debug_disable_ratelimit();
1577 dprintk("setting new policy for CPU %u: %u - %u kHz\n", policy->cpu,
1578 policy->min, policy->max);
1579
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301580 memcpy(&policy->cpuinfo, &data->cpuinfo,
1581 sizeof(struct cpufreq_cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001583 if (policy->min > data->min && policy->min > policy->max) {
1584 ret = -EINVAL;
1585 goto error_out;
1586 }
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 /* verify the cpu speed can be set within this limit */
1589 ret = cpufreq_driver->verify(policy);
1590 if (ret)
1591 goto error_out;
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001594 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1595 CPUFREQ_ADJUST, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
1597 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001598 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1599 CPUFREQ_INCOMPATIBLE, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 /* verify the cpu speed can be set within this limit,
1602 which might be different to the first one */
1603 ret = cpufreq_driver->verify(policy);
Alan Sterne041c682006-03-27 01:16:30 -08001604 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001608 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1609 CPUFREQ_NOTIFY, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Dave Jones7d5e3502006-02-02 17:03:42 -05001611 data->min = policy->min;
1612 data->max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301614 dprintk("new min and max freqs are %u - %u kHz\n",
1615 data->min, data->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 if (cpufreq_driver->setpolicy) {
1618 data->policy = policy->policy;
1619 dprintk("setting range\n");
1620 ret = cpufreq_driver->setpolicy(policy);
1621 } else {
1622 if (policy->governor != data->governor) {
1623 /* save old, working values */
1624 struct cpufreq_governor *old_gov = data->governor;
1625
1626 dprintk("governor switch\n");
1627
1628 /* end old governor */
1629 if (data->governor)
1630 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
1631
1632 /* start new governor */
1633 data->governor = policy->governor;
1634 if (__cpufreq_governor(data, CPUFREQ_GOV_START)) {
1635 /* new governor failed, so re-start old one */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301636 dprintk("starting governor %s failed\n",
1637 data->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 if (old_gov) {
1639 data->governor = old_gov;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301640 __cpufreq_governor(data,
1641 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
1643 ret = -EINVAL;
1644 goto error_out;
1645 }
1646 /* might be a policy change, too, so fall through */
1647 }
1648 dprintk("governor: change or update limits\n");
1649 __cpufreq_governor(data, CPUFREQ_GOV_LIMITS);
1650 }
1651
Dave Jones7d5e3502006-02-02 17:03:42 -05001652error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 cpufreq_debug_enable_ratelimit();
1654 return ret;
1655}
1656
1657/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1659 * @cpu: CPU which shall be re-evaluated
1660 *
1661 * Usefull for policy notifiers which have different necessities
1662 * at different times.
1663 */
1664int cpufreq_update_policy(unsigned int cpu)
1665{
1666 struct cpufreq_policy *data = cpufreq_cpu_get(cpu);
1667 struct cpufreq_policy policy;
1668 int ret = 0;
1669
1670 if (!data)
1671 return -ENODEV;
1672
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001673 if (unlikely(lock_policy_rwsem_write(cpu)))
1674 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 dprintk("updating policy for CPU %u\n", cpu);
Dave Jones7d5e3502006-02-02 17:03:42 -05001677 memcpy(&policy, data, sizeof(struct cpufreq_policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 policy.min = data->user_policy.min;
1679 policy.max = data->user_policy.max;
1680 policy.policy = data->user_policy.policy;
1681 policy.governor = data->user_policy.governor;
1682
Thomas Renninger0961dd02006-01-26 18:46:33 +01001683 /* BIOS might change freq behind our back
1684 -> ask driver for current freq and notify governors about a change */
1685 if (cpufreq_driver->get) {
1686 policy.cur = cpufreq_driver->get(cpu);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001687 if (!data->cur) {
1688 dprintk("Driver did not initialize current freq");
1689 data->cur = policy.cur;
1690 } else {
1691 if (data->cur != policy.cur)
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301692 cpufreq_out_of_sync(cpu, data->cur,
1693 policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001694 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01001695 }
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 ret = __cpufreq_set_policy(data, &policy);
1698
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001699 unlock_policy_rwsem_write(cpu);
1700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 cpufreq_cpu_put(data);
1702 return ret;
1703}
1704EXPORT_SYMBOL(cpufreq_update_policy);
1705
Chandra Seetharaman65edc682006-06-27 02:54:08 -07001706static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08001707 unsigned long action, void *hcpu)
1708{
1709 unsigned int cpu = (unsigned long)hcpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001710 struct sys_device *sys_dev;
1711
1712 sys_dev = get_cpu_sysdev(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001713 if (sys_dev) {
1714 switch (action) {
1715 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001716 case CPU_ONLINE_FROZEN:
Ashok Rajc32b6b82005-10-30 14:59:54 -08001717 cpufreq_add_dev(sys_dev);
1718 break;
1719 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001720 case CPU_DOWN_PREPARE_FROZEN:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001721 if (unlikely(lock_policy_rwsem_write(cpu)))
1722 BUG();
1723
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001724 __cpufreq_remove_dev(sys_dev);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001725 break;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001726 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001727 case CPU_DOWN_FAILED_FROZEN:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001728 cpufreq_add_dev(sys_dev);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001729 break;
1730 }
1731 }
1732 return NOTIFY_OK;
1733}
1734
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001735static struct notifier_block __cpuinitdata cpufreq_cpu_notifier =
Ashok Rajc32b6b82005-10-30 14:59:54 -08001736{
1737 .notifier_call = cpufreq_cpu_callback,
1738};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740/*********************************************************************
1741 * REGISTER / UNREGISTER CPUFREQ DRIVER *
1742 *********************************************************************/
1743
1744/**
1745 * cpufreq_register_driver - register a CPU Frequency driver
1746 * @driver_data: A struct cpufreq_driver containing the values#
1747 * submitted by the CPU Frequency driver.
1748 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001749 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05001751 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 *
1753 */
Linus Torvalds221dee22007-02-26 14:55:48 -08001754int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755{
1756 unsigned long flags;
1757 int ret;
1758
1759 if (!driver_data || !driver_data->verify || !driver_data->init ||
1760 ((!driver_data->setpolicy) && (!driver_data->target)))
1761 return -EINVAL;
1762
1763 dprintk("trying to register driver %s\n", driver_data->name);
1764
1765 if (driver_data->setpolicy)
1766 driver_data->flags |= CPUFREQ_CONST_LOOPS;
1767
1768 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1769 if (cpufreq_driver) {
1770 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1771 return -EBUSY;
1772 }
1773 cpufreq_driver = driver_data;
1774 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1775
1776 ret = sysdev_driver_register(&cpu_sysdev_class,&cpufreq_sysdev_driver);
1777
1778 if ((!ret) && !(cpufreq_driver->flags & CPUFREQ_STICKY)) {
1779 int i;
1780 ret = -ENODEV;
1781
1782 /* check for at least one working CPU */
1783 for (i=0; i<NR_CPUS; i++)
1784 if (cpufreq_cpu_data[i])
1785 ret = 0;
1786
1787 /* if all ->init() calls failed, unregister */
1788 if (ret) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301789 dprintk("no CPU initialized for driver %s\n",
1790 driver_data->name);
1791 sysdev_driver_unregister(&cpu_sysdev_class,
1792 &cpufreq_sysdev_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1795 cpufreq_driver = NULL;
1796 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1797 }
1798 }
1799
1800 if (!ret) {
Chandra Seetharaman65edc682006-06-27 02:54:08 -07001801 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 dprintk("driver %s up and running\n", driver_data->name);
1803 cpufreq_debug_enable_ratelimit();
1804 }
1805
1806 return (ret);
1807}
1808EXPORT_SYMBOL_GPL(cpufreq_register_driver);
1809
1810
1811/**
1812 * cpufreq_unregister_driver - unregister the current CPUFreq driver
1813 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001814 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 * the right to do so, i.e. if you have succeeded in initialising before!
1816 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
1817 * currently not initialised.
1818 */
Linus Torvalds221dee22007-02-26 14:55:48 -08001819int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
1821 unsigned long flags;
1822
1823 cpufreq_debug_disable_ratelimit();
1824
1825 if (!cpufreq_driver || (driver != cpufreq_driver)) {
1826 cpufreq_debug_enable_ratelimit();
1827 return -EINVAL;
1828 }
1829
1830 dprintk("unregistering driver %s\n", driver->name);
1831
1832 sysdev_driver_unregister(&cpu_sysdev_class, &cpufreq_sysdev_driver);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07001833 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1836 cpufreq_driver = NULL;
1837 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1838
1839 return 0;
1840}
1841EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001842
1843static int __init cpufreq_core_init(void)
1844{
1845 int cpu;
1846
1847 for_each_possible_cpu(cpu) {
1848 per_cpu(policy_cpu, cpu) = -1;
1849 init_rwsem(&per_cpu(cpu_policy_rwsem, cpu));
1850 }
1851 return 0;
1852}
1853
1854core_initcall(cpufreq_core_init);