blob: 0f10ce21d879ed8b2c955fdda7e7ed88dac38853 [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,
Dave Jones905d77c2008-03-05 14:28:32 -0500219 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;
Joe Perchesa4a9df52007-11-19 17:48:06 -0800290 dprintk("saving %lu as reference value for loops_per_jiffy; "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530291 "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);
Joe Perchesa4a9df52007-11-19 17:48:06 -0800298 dprintk("scaling loops_per_jiffy to %lu "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530299 "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 */
Dave Jones905d77c2008-03-05 14:28:32 -0500381static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 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 \
Dave Jones905d77c2008-03-05 14:28:32 -0500449(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500450{ \
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 \
Dave Jones905d77c2008-03-05 14:28:32 -0500468(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{ \
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 */
Dave Jones905d77c2008-03-05 14:28:32 -0500493static 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 */
Dave Jones905d77c2008-03-05 14:28:32 -0500506static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 if(policy->policy == CPUFREQ_POLICY_POWERSAVE)
509 return sprintf(buf, "powersave\n");
510 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
511 return sprintf(buf, "performance\n");
512 else if (policy->governor)
513 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", policy->governor->name);
514 return -EINVAL;
515}
516
517
518/**
519 * store_scaling_governor - store policy for the specified CPU
520 */
Dave Jones905d77c2008-03-05 14:28:32 -0500521static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
522 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 unsigned int ret = -EINVAL;
525 char str_governor[16];
526 struct cpufreq_policy new_policy;
527
528 ret = cpufreq_get_policy(&new_policy, policy->cpu);
529 if (ret)
530 return ret;
531
532 ret = sscanf (buf, "%15s", str_governor);
533 if (ret != 1)
534 return -EINVAL;
535
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530536 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
537 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return -EINVAL;
539
Thomas Renninger7970e082006-04-13 15:14:04 +0200540 /* Do not use cpufreq_set_policy here or the user_policy.max
541 will be wrongly overridden */
Thomas Renninger7970e082006-04-13 15:14:04 +0200542 ret = __cpufreq_set_policy(policy, &new_policy);
543
544 policy->user_policy.policy = policy->policy;
545 policy->user_policy.governor = policy->governor;
Thomas Renninger7970e082006-04-13 15:14:04 +0200546
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530547 if (ret)
548 return ret;
549 else
550 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
553/**
554 * show_scaling_driver - show the cpufreq driver currently loaded
555 */
Dave Jones905d77c2008-03-05 14:28:32 -0500556static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", cpufreq_driver->name);
559}
560
561/**
562 * show_scaling_available_governors - show the available CPUfreq governors
563 */
Dave Jones905d77c2008-03-05 14:28:32 -0500564static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
565 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
567 ssize_t i = 0;
568 struct cpufreq_governor *t;
569
570 if (!cpufreq_driver->target) {
571 i += sprintf(buf, "performance powersave");
572 goto out;
573 }
574
575 list_for_each_entry(t, &cpufreq_governor_list, governor_list) {
576 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char)) - (CPUFREQ_NAME_LEN + 2)))
577 goto out;
578 i += scnprintf(&buf[i], CPUFREQ_NAME_LEN, "%s ", t->name);
579 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500580out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 i += sprintf(&buf[i], "\n");
582 return i;
583}
584/**
585 * show_affected_cpus - show the CPUs affected by each transition
586 */
Dave Jones905d77c2008-03-05 14:28:32 -0500587static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 ssize_t i = 0;
590 unsigned int cpu;
591
592 for_each_cpu_mask(cpu, policy->cpus) {
593 if (i)
594 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
595 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
596 if (i >= (PAGE_SIZE - 5))
597 break;
598 }
599 i += sprintf(&buf[i], "\n");
600 return i;
601}
602
Venki Pallipadi9e769882007-10-26 10:18:21 -0700603static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500604 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700605{
606 unsigned int freq = 0;
607 unsigned int ret;
608
609 if (!policy->governor->store_setspeed)
610 return -EINVAL;
611
612 ret = sscanf(buf, "%u", &freq);
613 if (ret != 1)
614 return -EINVAL;
615
616 policy->governor->store_setspeed(policy, freq);
617
618 return count;
619}
620
621static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
622{
623 if (!policy->governor->show_setspeed)
624 return sprintf(buf, "<unsupported>\n");
625
626 return policy->governor->show_setspeed(policy, buf);
627}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629#define define_one_ro(_name) \
630static struct freq_attr _name = \
631__ATTR(_name, 0444, show_##_name, NULL)
632
633#define define_one_ro0400(_name) \
634static struct freq_attr _name = \
635__ATTR(_name, 0400, show_##_name, NULL)
636
637#define define_one_rw(_name) \
638static struct freq_attr _name = \
639__ATTR(_name, 0644, show_##_name, store_##_name)
640
641define_one_ro0400(cpuinfo_cur_freq);
642define_one_ro(cpuinfo_min_freq);
643define_one_ro(cpuinfo_max_freq);
644define_one_ro(scaling_available_governors);
645define_one_ro(scaling_driver);
646define_one_ro(scaling_cur_freq);
647define_one_ro(affected_cpus);
648define_one_rw(scaling_min_freq);
649define_one_rw(scaling_max_freq);
650define_one_rw(scaling_governor);
Venki Pallipadi9e769882007-10-26 10:18:21 -0700651define_one_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Dave Jones905d77c2008-03-05 14:28:32 -0500653static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 &cpuinfo_min_freq.attr,
655 &cpuinfo_max_freq.attr,
656 &scaling_min_freq.attr,
657 &scaling_max_freq.attr,
658 &affected_cpus.attr,
659 &scaling_governor.attr,
660 &scaling_driver.attr,
661 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700662 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 NULL
664};
665
666#define to_policy(k) container_of(k,struct cpufreq_policy,kobj)
667#define to_attr(a) container_of(a,struct freq_attr,attr)
668
Dave Jones905d77c2008-03-05 14:28:32 -0500669static ssize_t show(struct kobject *kobj, struct attribute *attr ,char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Dave Jones905d77c2008-03-05 14:28:32 -0500671 struct cpufreq_policy *policy = to_policy(kobj);
672 struct freq_attr *fattr = to_attr(attr);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500673 ssize_t ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 policy = cpufreq_cpu_get(policy->cpu);
675 if (!policy)
Dave Jones0db4a8a2008-03-05 14:20:57 -0500676 goto no_policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800677
678 if (lock_policy_rwsem_read(policy->cpu) < 0)
Dave Jones0db4a8a2008-03-05 14:20:57 -0500679 goto fail;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800680
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530681 if (fattr->show)
682 ret = fattr->show(policy, buf);
683 else
684 ret = -EIO;
685
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800686 unlock_policy_rwsem_read(policy->cpu);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500687fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 cpufreq_cpu_put(policy);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500689no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return ret;
691}
692
Dave Jones905d77c2008-03-05 14:28:32 -0500693static ssize_t store(struct kobject *kobj, struct attribute *attr,
694 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Dave Jones905d77c2008-03-05 14:28:32 -0500696 struct cpufreq_policy *policy = to_policy(kobj);
697 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500698 ssize_t ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 policy = cpufreq_cpu_get(policy->cpu);
700 if (!policy)
Dave Jonesa07530b2008-03-05 14:22:25 -0500701 goto no_policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800702
703 if (lock_policy_rwsem_write(policy->cpu) < 0)
Dave Jonesa07530b2008-03-05 14:22:25 -0500704 goto fail;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800705
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530706 if (fattr->store)
707 ret = fattr->store(policy, buf, count);
708 else
709 ret = -EIO;
710
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800711 unlock_policy_rwsem_write(policy->cpu);
Dave Jonesa07530b2008-03-05 14:22:25 -0500712fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 cpufreq_cpu_put(policy);
Dave Jonesa07530b2008-03-05 14:22:25 -0500714no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return ret;
716}
717
Dave Jones905d77c2008-03-05 14:28:32 -0500718static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Dave Jones905d77c2008-03-05 14:28:32 -0500720 struct cpufreq_policy *policy = to_policy(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 dprintk("last reference is dropped\n");
722 complete(&policy->kobj_unregister);
723}
724
725static struct sysfs_ops sysfs_ops = {
726 .show = show,
727 .store = store,
728};
729
730static struct kobj_type ktype_cpufreq = {
731 .sysfs_ops = &sysfs_ops,
732 .default_attrs = default_attrs,
733 .release = cpufreq_sysfs_release,
734};
735
736
737/**
738 * cpufreq_add_dev - add a CPU device
739 *
Dave Jones32ee8c32006-02-28 00:43:23 -0500740 * Adds the cpufreq interface for a CPU device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 */
Dave Jones905d77c2008-03-05 14:28:32 -0500742static int cpufreq_add_dev(struct sys_device *sys_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
744 unsigned int cpu = sys_dev->id;
745 int ret = 0;
746 struct cpufreq_policy new_policy;
747 struct cpufreq_policy *policy;
748 struct freq_attr **drv_attr;
Dave Jones8ff69732006-03-05 03:37:23 -0500749 struct sys_device *cpu_sys_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 unsigned long flags;
751 unsigned int j;
Dave Jones8ff69732006-03-05 03:37:23 -0500752#ifdef CONFIG_SMP
753 struct cpufreq_policy *managed_policy;
754#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Ashok Rajc32b6b82005-10-30 14:59:54 -0800756 if (cpu_is_offline(cpu))
757 return 0;
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 cpufreq_debug_disable_ratelimit();
760 dprintk("adding CPU %u\n", cpu);
761
762#ifdef CONFIG_SMP
763 /* check whether a different CPU already registered this
764 * CPU because it is in the same boat. */
765 policy = cpufreq_cpu_get(cpu);
766 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500767 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 cpufreq_debug_enable_ratelimit();
769 return 0;
770 }
771#endif
772
773 if (!try_module_get(cpufreq_driver->owner)) {
774 ret = -EINVAL;
775 goto module_out;
776 }
777
Dave Jonese98df502005-10-20 15:17:43 -0700778 policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (!policy) {
780 ret = -ENOMEM;
781 goto nomem_out;
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 policy->cpu = cpu;
785 policy->cpus = cpumask_of_cpu(cpu);
786
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800787 /* Initially set CPU itself as the policy_cpu */
788 per_cpu(policy_cpu, cpu) = cpu;
789 lock_policy_rwsem_write(cpu);
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +0000792 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Thomas Renninger8122c6c2007-10-02 13:28:09 -0700794 /* Set governor before ->init, so that driver could check it */
795 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 /* call driver. From then on the cpufreq must be able
797 * to accept all calls to ->verify and ->setpolicy for this CPU
798 */
799 ret = cpufreq_driver->init(policy);
800 if (ret) {
801 dprintk("initialization failed\n");
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800802 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 goto err_out;
804 }
Thomas Renninger22c970f2007-04-19 15:48:34 +0200805 policy->user_policy.min = policy->cpuinfo.min_freq;
806 policy->user_policy.max = policy->cpuinfo.max_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Dave Jones8ff69732006-03-05 03:37:23 -0500808#ifdef CONFIG_SMP
Thomas Renninger084f3492007-07-09 11:35:28 -0700809
810#ifdef CONFIG_HOTPLUG_CPU
811 if (cpufreq_cpu_governor[cpu]){
812 policy->governor = cpufreq_cpu_governor[cpu];
813 dprintk("Restoring governor %s for cpu %d\n",
814 policy->governor->name, cpu);
815 }
816#endif
817
Dave Jones8ff69732006-03-05 03:37:23 -0500818 for_each_cpu_mask(j, policy->cpus) {
819 if (cpu == j)
820 continue;
821
822 /* check for existing affected CPUs. They may not be aware
823 * of it due to CPU Hotplug.
824 */
825 managed_policy = cpufreq_cpu_get(j);
826 if (unlikely(managed_policy)) {
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800827
828 /* Set proper policy_cpu */
829 unlock_policy_rwsem_write(cpu);
830 per_cpu(policy_cpu, cpu) = managed_policy->cpu;
831
832 if (lock_policy_rwsem_write(cpu) < 0)
833 goto err_out_driver_exit;
834
Dave Jones8ff69732006-03-05 03:37:23 -0500835 spin_lock_irqsave(&cpufreq_driver_lock, flags);
836 managed_policy->cpus = policy->cpus;
837 cpufreq_cpu_data[cpu] = managed_policy;
838 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
839
840 dprintk("CPU already managed, adding link\n");
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200841 ret = sysfs_create_link(&sys_dev->kobj,
842 &managed_policy->kobj,
843 "cpufreq");
844 if (ret) {
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800845 unlock_policy_rwsem_write(cpu);
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200846 goto err_out_driver_exit;
847 }
Dave Jones8ff69732006-03-05 03:37:23 -0500848
849 cpufreq_debug_enable_ratelimit();
Dave Jones8ff69732006-03-05 03:37:23 -0500850 ret = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800851 unlock_policy_rwsem_write(cpu);
Dave Jones8ff69732006-03-05 03:37:23 -0500852 goto err_out_driver_exit; /* call driver->exit() */
853 }
854 }
855#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 memcpy(&new_policy, policy, sizeof(struct cpufreq_policy));
857
858 /* prepare interface data */
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -0400859 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq, &sys_dev->kobj,
860 "cpufreq");
Andrew Mortonf3876c12006-01-18 13:40:54 -0800861 if (ret) {
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800862 unlock_policy_rwsem_write(cpu);
Venkatesh Pallipadi8085e1f2005-08-25 13:14:06 -0700863 goto err_out_driver_exit;
Andrew Mortonf3876c12006-01-18 13:40:54 -0800864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 /* set up files for this cpu device */
866 drv_attr = cpufreq_driver->attr;
867 while ((drv_attr) && (*drv_attr)) {
Tobias Klauser58a72952007-06-14 00:28:15 +0200868 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
Dave Jonesbd6cba52007-12-17 16:19:58 -0800869 if (ret) {
870 unlock_policy_rwsem_write(cpu);
Thomas Renninger0a4b2cc2007-05-21 07:20:04 -0500871 goto err_out_driver_exit;
Dave Jonesbd6cba52007-12-17 16:19:58 -0800872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 drv_attr++;
874 }
Thomas Renninger0a4b2cc2007-05-21 07:20:04 -0500875 if (cpufreq_driver->get){
Tobias Klauser58a72952007-06-14 00:28:15 +0200876 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
Dave Jonesbd6cba52007-12-17 16:19:58 -0800877 if (ret) {
878 unlock_policy_rwsem_write(cpu);
Thomas Renninger0a4b2cc2007-05-21 07:20:04 -0500879 goto err_out_driver_exit;
Dave Jonesbd6cba52007-12-17 16:19:58 -0800880 }
Thomas Renninger0a4b2cc2007-05-21 07:20:04 -0500881 }
882 if (cpufreq_driver->target){
Tobias Klauser58a72952007-06-14 00:28:15 +0200883 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
Dave Jonesbd6cba52007-12-17 16:19:58 -0800884 if (ret) {
885 unlock_policy_rwsem_write(cpu);
Thomas Renninger0a4b2cc2007-05-21 07:20:04 -0500886 goto err_out_driver_exit;
Dave Jonesbd6cba52007-12-17 16:19:58 -0800887 }
Thomas Renninger0a4b2cc2007-05-21 07:20:04 -0500888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 spin_lock_irqsave(&cpufreq_driver_lock, flags);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800891 for_each_cpu_mask(j, policy->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 cpufreq_cpu_data[j] = policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800893 per_cpu(policy_cpu, j) = policy->cpu;
894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones8ff69732006-03-05 03:37:23 -0500896
897 /* symlink affected CPUs */
898 for_each_cpu_mask(j, policy->cpus) {
899 if (j == cpu)
900 continue;
901 if (!cpu_online(j))
902 continue;
903
Dave Jones1f8b2c92006-03-29 01:40:04 -0500904 dprintk("CPU %u already managed, adding link\n", j);
Dave Jones8ff69732006-03-05 03:37:23 -0500905 cpufreq_cpu_get(cpu);
906 cpu_sys_dev = get_cpu_sysdev(j);
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200907 ret = sysfs_create_link(&cpu_sys_dev->kobj, &policy->kobj,
908 "cpufreq");
909 if (ret) {
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800910 unlock_policy_rwsem_write(cpu);
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200911 goto err_out_unregister;
912 }
Dave Jones8ff69732006-03-05 03:37:23 -0500913 }
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 policy->governor = NULL; /* to assure that the starting sequence is
916 * run in cpufreq_set_policy */
Dave Jones87c32272006-03-29 01:48:37 -0500917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 /* set default policy */
Thomas Renninger22c970f2007-04-19 15:48:34 +0200919 ret = __cpufreq_set_policy(policy, &new_policy);
920 policy->user_policy.policy = policy->policy;
Thomas Renninger084f3492007-07-09 11:35:28 -0700921 policy->user_policy.governor = policy->governor;
Thomas Renninger22c970f2007-04-19 15:48:34 +0200922
923 unlock_policy_rwsem_write(cpu);
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (ret) {
926 dprintk("setting policy failed\n");
927 goto err_out_unregister;
928 }
929
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -0400930 kobject_uevent(&policy->kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 module_put(cpufreq_driver->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 dprintk("initialization complete\n");
933 cpufreq_debug_enable_ratelimit();
Dave Jones87c32272006-03-29 01:48:37 -0500934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return 0;
936
937
938err_out_unregister:
939 spin_lock_irqsave(&cpufreq_driver_lock, flags);
940 for_each_cpu_mask(j, policy->cpus)
941 cpufreq_cpu_data[j] = NULL;
942 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
943
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800944 kobject_put(&policy->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 wait_for_completion(&policy->kobj_unregister);
946
Venkatesh Pallipadi8085e1f2005-08-25 13:14:06 -0700947err_out_driver_exit:
948 if (cpufreq_driver->exit)
949 cpufreq_driver->exit(policy);
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951err_out:
952 kfree(policy);
953
954nomem_out:
955 module_put(cpufreq_driver->owner);
Ashok Rajc32b6b82005-10-30 14:59:54 -0800956module_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 cpufreq_debug_enable_ratelimit();
958 return ret;
959}
960
961
962/**
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800963 * __cpufreq_remove_dev - remove a CPU device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 *
965 * Removes the cpufreq interface for a CPU device.
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800966 * Caller should already have policy_rwsem in write mode for this CPU.
967 * This routine frees the rwsem before returning.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 */
Dave Jones905d77c2008-03-05 14:28:32 -0500969static int __cpufreq_remove_dev(struct sys_device *sys_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
971 unsigned int cpu = sys_dev->id;
972 unsigned long flags;
973 struct cpufreq_policy *data;
974#ifdef CONFIG_SMP
Grant Coadye738cf62005-11-21 21:32:28 -0800975 struct sys_device *cpu_sys_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 unsigned int j;
977#endif
978
979 cpufreq_debug_disable_ratelimit();
980 dprintk("unregistering CPU %u\n", cpu);
981
982 spin_lock_irqsave(&cpufreq_driver_lock, flags);
983 data = cpufreq_cpu_data[cpu];
984
985 if (!data) {
986 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 cpufreq_debug_enable_ratelimit();
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800988 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return -EINVAL;
990 }
991 cpufreq_cpu_data[cpu] = NULL;
992
993
994#ifdef CONFIG_SMP
995 /* if this isn't the CPU which is the parent of the kobj, we
Dave Jones32ee8c32006-02-28 00:43:23 -0500996 * only need to unlink, put and exit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 */
998 if (unlikely(cpu != data->cpu)) {
999 dprintk("removing link\n");
Dave Jones8ff69732006-03-05 03:37:23 -05001000 cpu_clear(cpu, data->cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1002 sysfs_remove_link(&sys_dev->kobj, "cpufreq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 cpufreq_cpu_put(data);
1004 cpufreq_debug_enable_ratelimit();
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001005 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return 0;
1007 }
1008#endif
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010#ifdef CONFIG_SMP
Thomas Renninger084f3492007-07-09 11:35:28 -07001011
1012#ifdef CONFIG_HOTPLUG_CPU
1013 cpufreq_cpu_governor[cpu] = data->governor;
1014#endif
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 /* if we have other CPUs still registered, we need to unlink them,
1017 * or else wait_for_completion below will lock up. Clean the
1018 * cpufreq_cpu_data[] while holding the lock, and remove the sysfs
1019 * links afterwards.
1020 */
1021 if (unlikely(cpus_weight(data->cpus) > 1)) {
1022 for_each_cpu_mask(j, data->cpus) {
1023 if (j == cpu)
1024 continue;
1025 cpufreq_cpu_data[j] = NULL;
1026 }
1027 }
1028
1029 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1030
1031 if (unlikely(cpus_weight(data->cpus) > 1)) {
1032 for_each_cpu_mask(j, data->cpus) {
1033 if (j == cpu)
1034 continue;
1035 dprintk("removing link for cpu %u\n", j);
Thomas Renninger084f3492007-07-09 11:35:28 -07001036#ifdef CONFIG_HOTPLUG_CPU
1037 cpufreq_cpu_governor[j] = data->governor;
1038#endif
Ashok Rajd434fca2005-10-30 14:59:52 -08001039 cpu_sys_dev = get_cpu_sysdev(j);
1040 sysfs_remove_link(&cpu_sys_dev->kobj, "cpufreq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 cpufreq_cpu_put(data);
1042 }
1043 }
1044#else
1045 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1046#endif
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (cpufreq_driver->target)
1049 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001050
1051 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 kobject_put(&data->kobj);
1054
1055 /* we need to make sure that the underlying kobj is actually
Dave Jones32ee8c32006-02-28 00:43:23 -05001056 * not referenced anymore by anybody before we proceed with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 * unloading.
1058 */
1059 dprintk("waiting for dropping of refcount\n");
1060 wait_for_completion(&data->kobj_unregister);
1061 dprintk("wait complete\n");
1062
1063 if (cpufreq_driver->exit)
1064 cpufreq_driver->exit(data);
1065
1066 kfree(data);
1067
1068 cpufreq_debug_enable_ratelimit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 return 0;
1070}
1071
1072
Dave Jones905d77c2008-03-05 14:28:32 -05001073static int cpufreq_remove_dev(struct sys_device *sys_dev)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001074{
1075 unsigned int cpu = sys_dev->id;
1076 int retval;
Venki Pallipadiec282972007-03-26 12:03:19 -07001077
1078 if (cpu_is_offline(cpu))
1079 return 0;
1080
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001081 if (unlikely(lock_policy_rwsem_write(cpu)))
1082 BUG();
1083
1084 retval = __cpufreq_remove_dev(sys_dev);
1085 return retval;
1086}
1087
1088
David Howells65f27f32006-11-22 14:55:48 +00001089static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
David Howells65f27f32006-11-22 14:55:48 +00001091 struct cpufreq_policy *policy =
1092 container_of(work, struct cpufreq_policy, update);
1093 unsigned int cpu = policy->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 dprintk("handle_update for cpu %u called\n", cpu);
1095 cpufreq_update_policy(cpu);
1096}
1097
1098/**
1099 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're in deep trouble.
1100 * @cpu: cpu number
1101 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1102 * @new_freq: CPU frequency the CPU actually runs at
1103 *
1104 * We adjust to current frequency first, and need to clean up later. So either call
1105 * to cpufreq_update_policy() or schedule handle_update()).
1106 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301107static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1108 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 struct cpufreq_freqs freqs;
1111
Jan Beulichb10eec22006-04-28 13:47:13 +02001112 dprintk("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1114
1115 freqs.cpu = cpu;
1116 freqs.old = old_freq;
1117 freqs.new = new_freq;
1118 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1119 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
1120}
1121
1122
Dave Jones32ee8c32006-02-28 00:43:23 -05001123/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301124 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001125 * @cpu: CPU number
1126 *
1127 * This is the last known freq, without actually getting it from the driver.
1128 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1129 */
1130unsigned int cpufreq_quick_get(unsigned int cpu)
1131{
1132 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301133 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001134
1135 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301136 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001137 cpufreq_cpu_put(policy);
1138 }
1139
Dave Jones4d34a672008-02-07 16:33:49 -05001140 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001141}
1142EXPORT_SYMBOL(cpufreq_quick_get);
1143
1144
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001145static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001147 struct cpufreq_policy *policy = cpufreq_cpu_data[cpu];
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301148 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001151 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301153 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301155 if (ret_freq && policy->cur &&
1156 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1157 /* verify no discrepancy between actual and
1158 saved value exists */
1159 if (unlikely(ret_freq != policy->cur)) {
1160 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 schedule_work(&policy->update);
1162 }
1163 }
1164
Dave Jones4d34a672008-02-07 16:33:49 -05001165 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001166}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001168/**
1169 * cpufreq_get - get the current CPU frequency (in kHz)
1170 * @cpu: CPU number
1171 *
1172 * Get the CPU current (static) CPU frequency
1173 */
1174unsigned int cpufreq_get(unsigned int cpu)
1175{
1176 unsigned int ret_freq = 0;
1177 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1178
1179 if (!policy)
1180 goto out;
1181
1182 if (unlikely(lock_policy_rwsem_read(cpu)))
1183 goto out_policy;
1184
1185 ret_freq = __cpufreq_get(cpu);
1186
1187 unlock_policy_rwsem_read(cpu);
1188
1189out_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 cpufreq_cpu_put(policy);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001191out:
Dave Jones4d34a672008-02-07 16:33:49 -05001192 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194EXPORT_SYMBOL(cpufreq_get);
1195
1196
1197/**
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001198 * cpufreq_suspend - let the low level driver prepare for suspend
1199 */
1200
Dave Jones905d77c2008-03-05 14:28:32 -05001201static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001202{
1203 int cpu = sysdev->id;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301204 int ret = 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001205 unsigned int cur_freq = 0;
1206 struct cpufreq_policy *cpu_policy;
1207
Dave Jones0e37b152006-09-26 23:02:34 -04001208 dprintk("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001209
1210 if (!cpu_online(cpu))
1211 return 0;
1212
1213 /* we may be lax here as interrupts are off. Nonetheless
1214 * we need to grab the correct cpu policy, as to check
1215 * whether we really run on this CPU.
1216 */
1217
1218 cpu_policy = cpufreq_cpu_get(cpu);
1219 if (!cpu_policy)
1220 return -EINVAL;
1221
1222 /* only handle each CPU group once */
Dave Jonesc9060492008-02-07 16:32:18 -05001223 if (unlikely(cpu_policy->cpu != cpu))
1224 goto out;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001225
1226 if (cpufreq_driver->suspend) {
Bernard Blackhame00d9962005-07-07 17:56:42 -07001227 ret = cpufreq_driver->suspend(cpu_policy, pmsg);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001228 if (ret) {
1229 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
1230 "step on CPU %u\n", cpu_policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001231 goto out;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001232 }
1233 }
1234
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001235 if (cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)
1236 goto out;
1237
1238 if (cpufreq_driver->get)
1239 cur_freq = cpufreq_driver->get(cpu_policy->cpu);
1240
1241 if (!cur_freq || !cpu_policy->cur) {
1242 printk(KERN_ERR "cpufreq: suspend failed to assert current "
1243 "frequency is what timing core thinks it is.\n");
1244 goto out;
1245 }
1246
1247 if (unlikely(cur_freq != cpu_policy->cur)) {
1248 struct cpufreq_freqs freqs;
1249
1250 if (!(cpufreq_driver->flags & CPUFREQ_PM_NO_WARN))
Jan Beulichb10eec22006-04-28 13:47:13 +02001251 dprintk("Warning: CPU frequency is %u, "
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001252 "cpufreq assumed %u kHz.\n",
1253 cur_freq, cpu_policy->cur);
1254
1255 freqs.cpu = cpu;
1256 freqs.old = cpu_policy->cur;
1257 freqs.new = cur_freq;
1258
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001259 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001260 CPUFREQ_SUSPENDCHANGE, &freqs);
1261 adjust_jiffies(CPUFREQ_SUSPENDCHANGE, &freqs);
1262
1263 cpu_policy->cur = cur_freq;
1264 }
1265
Dave Jones7d5e3502006-02-02 17:03:42 -05001266out:
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001267 cpufreq_cpu_put(cpu_policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001268 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001269}
1270
1271/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 * cpufreq_resume - restore proper CPU frequency handling after resume
1273 *
1274 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
1275 * 2.) if ->target and !CPUFREQ_CONST_LOOPS: verify we're in sync
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001276 * 3.) schedule call cpufreq_update_policy() ASAP as interrupts are
1277 * restored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 */
Dave Jones905d77c2008-03-05 14:28:32 -05001279static int cpufreq_resume(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
1281 int cpu = sysdev->id;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301282 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 struct cpufreq_policy *cpu_policy;
1284
1285 dprintk("resuming cpu %u\n", cpu);
1286
1287 if (!cpu_online(cpu))
1288 return 0;
1289
1290 /* we may be lax here as interrupts are off. Nonetheless
1291 * we need to grab the correct cpu policy, as to check
1292 * whether we really run on this CPU.
1293 */
1294
1295 cpu_policy = cpufreq_cpu_get(cpu);
1296 if (!cpu_policy)
1297 return -EINVAL;
1298
1299 /* only handle each CPU group once */
Dave Jonesc9060492008-02-07 16:32:18 -05001300 if (unlikely(cpu_policy->cpu != cpu))
1301 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 if (cpufreq_driver->resume) {
1304 ret = cpufreq_driver->resume(cpu_policy);
1305 if (ret) {
1306 printk(KERN_ERR "cpufreq: resume failed in ->resume "
1307 "step on CPU %u\n", cpu_policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001308 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 }
1310 }
1311
1312 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1313 unsigned int cur_freq = 0;
1314
1315 if (cpufreq_driver->get)
1316 cur_freq = cpufreq_driver->get(cpu_policy->cpu);
1317
1318 if (!cur_freq || !cpu_policy->cur) {
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001319 printk(KERN_ERR "cpufreq: resume failed to assert "
1320 "current frequency is what timing core "
1321 "thinks it is.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 goto out;
1323 }
1324
1325 if (unlikely(cur_freq != cpu_policy->cur)) {
1326 struct cpufreq_freqs freqs;
1327
Benjamin Herrenschmidtac09f692005-05-02 16:25:10 +10001328 if (!(cpufreq_driver->flags & CPUFREQ_PM_NO_WARN))
Joe Perchesa4a9df52007-11-19 17:48:06 -08001329 dprintk("Warning: CPU frequency "
Benjamin Herrenschmidtac09f692005-05-02 16:25:10 +10001330 "is %u, cpufreq assumed %u kHz.\n",
1331 cur_freq, cpu_policy->cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 freqs.cpu = cpu;
1334 freqs.old = cpu_policy->cur;
1335 freqs.new = cur_freq;
1336
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001337 srcu_notifier_call_chain(
Alan Sterne041c682006-03-27 01:16:30 -08001338 &cpufreq_transition_notifier_list,
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001339 CPUFREQ_RESUMECHANGE, &freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 adjust_jiffies(CPUFREQ_RESUMECHANGE, &freqs);
1341
1342 cpu_policy->cur = cur_freq;
1343 }
1344 }
1345
1346out:
1347 schedule_work(&cpu_policy->update);
Dave Jonesc9060492008-02-07 16:32:18 -05001348fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 cpufreq_cpu_put(cpu_policy);
1350 return ret;
1351}
1352
1353static struct sysdev_driver cpufreq_sysdev_driver = {
1354 .add = cpufreq_add_dev,
1355 .remove = cpufreq_remove_dev,
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001356 .suspend = cpufreq_suspend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 .resume = cpufreq_resume,
1358};
1359
1360
1361/*********************************************************************
1362 * NOTIFIER LISTS INTERFACE *
1363 *********************************************************************/
1364
1365/**
1366 * cpufreq_register_notifier - register a driver with cpufreq
1367 * @nb: notifier function to register
1368 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1369 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001370 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 * are notified about clock rate changes (once before and once after
1372 * the transition), or a list of drivers that are notified about
1373 * changes in cpufreq policy.
1374 *
1375 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001376 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 */
1378int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1379{
1380 int ret;
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 switch (list) {
1383 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001384 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001385 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 break;
1387 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001388 ret = blocking_notifier_chain_register(
1389 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 break;
1391 default:
1392 ret = -EINVAL;
1393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 return ret;
1396}
1397EXPORT_SYMBOL(cpufreq_register_notifier);
1398
1399
1400/**
1401 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1402 * @nb: notifier block to be unregistered
1403 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1404 *
1405 * Remove a driver from the CPU frequency notifier list.
1406 *
1407 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001408 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 */
1410int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1411{
1412 int ret;
1413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 switch (list) {
1415 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001416 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001417 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 break;
1419 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001420 ret = blocking_notifier_chain_unregister(
1421 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 break;
1423 default:
1424 ret = -EINVAL;
1425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427 return ret;
1428}
1429EXPORT_SYMBOL(cpufreq_unregister_notifier);
1430
1431
1432/*********************************************************************
1433 * GOVERNORS *
1434 *********************************************************************/
1435
1436
1437int __cpufreq_driver_target(struct cpufreq_policy *policy,
1438 unsigned int target_freq,
1439 unsigned int relation)
1440{
1441 int retval = -EINVAL;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 dprintk("target for CPU %u: %u kHz, relation %u\n", policy->cpu,
1444 target_freq, relation);
1445 if (cpu_online(policy->cpu) && cpufreq_driver->target)
1446 retval = cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 return retval;
1449}
1450EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452int cpufreq_driver_target(struct cpufreq_policy *policy,
1453 unsigned int target_freq,
1454 unsigned int relation)
1455{
Dave Jonescc993ca2005-07-28 09:43:56 -07001456 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 policy = cpufreq_cpu_get(policy->cpu);
1459 if (!policy)
1460 return -EINVAL;
1461
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001462 if (unlikely(lock_policy_rwsem_write(policy->cpu)))
1463 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 ret = __cpufreq_driver_target(policy, target_freq, relation);
1466
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001467 unlock_policy_rwsem_write(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return ret;
1471}
1472EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1473
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001474int __cpufreq_driver_getavg(struct cpufreq_policy *policy)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001475{
1476 int ret = 0;
1477
1478 policy = cpufreq_cpu_get(policy->cpu);
1479 if (!policy)
1480 return -EINVAL;
1481
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001482 if (cpu_online(policy->cpu) && cpufreq_driver->getavg)
1483 ret = cpufreq_driver->getavg(policy->cpu);
1484
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001485 cpufreq_cpu_put(policy);
1486 return ret;
1487}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001488EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001489
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001490/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001491 * when "event" is CPUFREQ_GOV_LIMITS
1492 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301494static int __cpufreq_governor(struct cpufreq_policy *policy,
1495 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
Dave Jonescc993ca2005-07-28 09:43:56 -07001497 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001498
1499 /* Only must be defined when default governor is known to have latency
1500 restrictions, like e.g. conservative or ondemand.
1501 That this is the case is already ensured in Kconfig
1502 */
1503#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1504 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1505#else
1506 struct cpufreq_governor *gov = NULL;
1507#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001508
1509 if (policy->governor->max_transition_latency &&
1510 policy->cpuinfo.transition_latency >
1511 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001512 if (!gov)
1513 return -EINVAL;
1514 else {
1515 printk(KERN_WARNING "%s governor failed, too long"
1516 " transition latency of HW, fallback"
1517 " to %s governor\n",
1518 policy->governor->name,
1519 gov->name);
1520 policy->governor = gov;
1521 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 if (!try_module_get(policy->governor->owner))
1525 return -EINVAL;
1526
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301527 dprintk("__cpufreq_governor for CPU %u, event %u\n",
1528 policy->cpu, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 ret = policy->governor->governor(policy, event);
1530
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301531 /* we keep one module reference alive for
1532 each CPU governed by this CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 if ((event != CPUFREQ_GOV_START) || ret)
1534 module_put(policy->governor->owner);
1535 if ((event == CPUFREQ_GOV_STOP) && !ret)
1536 module_put(policy->governor->owner);
1537
1538 return ret;
1539}
1540
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542int cpufreq_register_governor(struct cpufreq_governor *governor)
1543{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001544 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 if (!governor)
1547 return -EINVAL;
1548
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001549 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001550
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001551 err = -EBUSY;
1552 if (__find_governor(governor->name) == NULL) {
1553 err = 0;
1554 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Dave Jones32ee8c32006-02-28 00:43:23 -05001557 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001558 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1561
1562
1563void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1564{
1565 if (!governor)
1566 return;
1567
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001568 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001570 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 return;
1572}
1573EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1574
1575
1576
1577/*********************************************************************
1578 * POLICY INTERFACE *
1579 *********************************************************************/
1580
1581/**
1582 * cpufreq_get_policy - get the current cpufreq_policy
1583 * @policy: struct cpufreq_policy into which the current cpufreq_policy is written
1584 *
1585 * Reads the current cpufreq policy.
1586 */
1587int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1588{
1589 struct cpufreq_policy *cpu_policy;
1590 if (!policy)
1591 return -EINVAL;
1592
1593 cpu_policy = cpufreq_cpu_get(cpu);
1594 if (!cpu_policy)
1595 return -EINVAL;
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 memcpy(policy, cpu_policy, sizeof(struct cpufreq_policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 return 0;
1601}
1602EXPORT_SYMBOL(cpufreq_get_policy);
1603
1604
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001605/*
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301606 * data : current policy.
1607 * policy : policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001608 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301609static int __cpufreq_set_policy(struct cpufreq_policy *data,
1610 struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
1612 int ret = 0;
1613
1614 cpufreq_debug_disable_ratelimit();
1615 dprintk("setting new policy for CPU %u: %u - %u kHz\n", policy->cpu,
1616 policy->min, policy->max);
1617
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301618 memcpy(&policy->cpuinfo, &data->cpuinfo,
1619 sizeof(struct cpufreq_cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Yi Yang53391fa2008-01-30 13:33:34 +01001621 if (policy->min > data->max || policy->max < data->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001622 ret = -EINVAL;
1623 goto error_out;
1624 }
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 /* verify the cpu speed can be set within this limit */
1627 ret = cpufreq_driver->verify(policy);
1628 if (ret)
1629 goto error_out;
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001632 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1633 CPUFREQ_ADJUST, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001636 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1637 CPUFREQ_INCOMPATIBLE, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 /* verify the cpu speed can be set within this limit,
1640 which might be different to the first one */
1641 ret = cpufreq_driver->verify(policy);
Alan Sterne041c682006-03-27 01:16:30 -08001642 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001646 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1647 CPUFREQ_NOTIFY, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Dave Jones7d5e3502006-02-02 17:03:42 -05001649 data->min = policy->min;
1650 data->max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301652 dprintk("new min and max freqs are %u - %u kHz\n",
1653 data->min, data->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 if (cpufreq_driver->setpolicy) {
1656 data->policy = policy->policy;
1657 dprintk("setting range\n");
1658 ret = cpufreq_driver->setpolicy(policy);
1659 } else {
1660 if (policy->governor != data->governor) {
1661 /* save old, working values */
1662 struct cpufreq_governor *old_gov = data->governor;
1663
1664 dprintk("governor switch\n");
1665
1666 /* end old governor */
1667 if (data->governor)
1668 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
1669
1670 /* start new governor */
1671 data->governor = policy->governor;
1672 if (__cpufreq_governor(data, CPUFREQ_GOV_START)) {
1673 /* new governor failed, so re-start old one */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301674 dprintk("starting governor %s failed\n",
1675 data->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if (old_gov) {
1677 data->governor = old_gov;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301678 __cpufreq_governor(data,
1679 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 }
1681 ret = -EINVAL;
1682 goto error_out;
1683 }
1684 /* might be a policy change, too, so fall through */
1685 }
1686 dprintk("governor: change or update limits\n");
1687 __cpufreq_governor(data, CPUFREQ_GOV_LIMITS);
1688 }
1689
Dave Jones7d5e3502006-02-02 17:03:42 -05001690error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 cpufreq_debug_enable_ratelimit();
1692 return ret;
1693}
1694
1695/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1697 * @cpu: CPU which shall be re-evaluated
1698 *
1699 * Usefull for policy notifiers which have different necessities
1700 * at different times.
1701 */
1702int cpufreq_update_policy(unsigned int cpu)
1703{
1704 struct cpufreq_policy *data = cpufreq_cpu_get(cpu);
1705 struct cpufreq_policy policy;
1706 int ret = 0;
1707
1708 if (!data)
1709 return -ENODEV;
1710
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001711 if (unlikely(lock_policy_rwsem_write(cpu)))
1712 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
1714 dprintk("updating policy for CPU %u\n", cpu);
Dave Jones7d5e3502006-02-02 17:03:42 -05001715 memcpy(&policy, data, sizeof(struct cpufreq_policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 policy.min = data->user_policy.min;
1717 policy.max = data->user_policy.max;
1718 policy.policy = data->user_policy.policy;
1719 policy.governor = data->user_policy.governor;
1720
Thomas Renninger0961dd02006-01-26 18:46:33 +01001721 /* BIOS might change freq behind our back
1722 -> ask driver for current freq and notify governors about a change */
1723 if (cpufreq_driver->get) {
1724 policy.cur = cpufreq_driver->get(cpu);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001725 if (!data->cur) {
1726 dprintk("Driver did not initialize current freq");
1727 data->cur = policy.cur;
1728 } else {
1729 if (data->cur != policy.cur)
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301730 cpufreq_out_of_sync(cpu, data->cur,
1731 policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001732 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01001733 }
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 ret = __cpufreq_set_policy(data, &policy);
1736
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001737 unlock_policy_rwsem_write(cpu);
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 cpufreq_cpu_put(data);
1740 return ret;
1741}
1742EXPORT_SYMBOL(cpufreq_update_policy);
1743
Satyam Sharmadd184a02007-10-02 13:28:14 -07001744static int __cpuinit cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08001745 unsigned long action, void *hcpu)
1746{
1747 unsigned int cpu = (unsigned long)hcpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001748 struct sys_device *sys_dev;
1749
1750 sys_dev = get_cpu_sysdev(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001751 if (sys_dev) {
1752 switch (action) {
1753 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001754 case CPU_ONLINE_FROZEN:
Ashok Rajc32b6b82005-10-30 14:59:54 -08001755 cpufreq_add_dev(sys_dev);
1756 break;
1757 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001758 case CPU_DOWN_PREPARE_FROZEN:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001759 if (unlikely(lock_policy_rwsem_write(cpu)))
1760 BUG();
1761
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001762 __cpufreq_remove_dev(sys_dev);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001763 break;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001764 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001765 case CPU_DOWN_FAILED_FROZEN:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001766 cpufreq_add_dev(sys_dev);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001767 break;
1768 }
1769 }
1770 return NOTIFY_OK;
1771}
1772
Sam Ravnborgf6ebef32008-02-17 13:22:52 +01001773static struct notifier_block __refdata cpufreq_cpu_notifier =
Ashok Rajc32b6b82005-10-30 14:59:54 -08001774{
1775 .notifier_call = cpufreq_cpu_callback,
1776};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778/*********************************************************************
1779 * REGISTER / UNREGISTER CPUFREQ DRIVER *
1780 *********************************************************************/
1781
1782/**
1783 * cpufreq_register_driver - register a CPU Frequency driver
1784 * @driver_data: A struct cpufreq_driver containing the values#
1785 * submitted by the CPU Frequency driver.
1786 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001787 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05001789 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 *
1791 */
Linus Torvalds221dee22007-02-26 14:55:48 -08001792int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
1794 unsigned long flags;
1795 int ret;
1796
1797 if (!driver_data || !driver_data->verify || !driver_data->init ||
1798 ((!driver_data->setpolicy) && (!driver_data->target)))
1799 return -EINVAL;
1800
1801 dprintk("trying to register driver %s\n", driver_data->name);
1802
1803 if (driver_data->setpolicy)
1804 driver_data->flags |= CPUFREQ_CONST_LOOPS;
1805
1806 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1807 if (cpufreq_driver) {
1808 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1809 return -EBUSY;
1810 }
1811 cpufreq_driver = driver_data;
1812 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1813
1814 ret = sysdev_driver_register(&cpu_sysdev_class,&cpufreq_sysdev_driver);
1815
1816 if ((!ret) && !(cpufreq_driver->flags & CPUFREQ_STICKY)) {
1817 int i;
1818 ret = -ENODEV;
1819
1820 /* check for at least one working CPU */
1821 for (i=0; i<NR_CPUS; i++)
1822 if (cpufreq_cpu_data[i])
1823 ret = 0;
1824
1825 /* if all ->init() calls failed, unregister */
1826 if (ret) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301827 dprintk("no CPU initialized for driver %s\n",
1828 driver_data->name);
1829 sysdev_driver_unregister(&cpu_sysdev_class,
1830 &cpufreq_sysdev_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1833 cpufreq_driver = NULL;
1834 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1835 }
1836 }
1837
1838 if (!ret) {
Chandra Seetharaman65edc682006-06-27 02:54:08 -07001839 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 dprintk("driver %s up and running\n", driver_data->name);
1841 cpufreq_debug_enable_ratelimit();
1842 }
1843
Dave Jones4d34a672008-02-07 16:33:49 -05001844 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845}
1846EXPORT_SYMBOL_GPL(cpufreq_register_driver);
1847
1848
1849/**
1850 * cpufreq_unregister_driver - unregister the current CPUFreq driver
1851 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001852 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 * the right to do so, i.e. if you have succeeded in initialising before!
1854 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
1855 * currently not initialised.
1856 */
Linus Torvalds221dee22007-02-26 14:55:48 -08001857int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858{
1859 unsigned long flags;
1860
1861 cpufreq_debug_disable_ratelimit();
1862
1863 if (!cpufreq_driver || (driver != cpufreq_driver)) {
1864 cpufreq_debug_enable_ratelimit();
1865 return -EINVAL;
1866 }
1867
1868 dprintk("unregistering driver %s\n", driver->name);
1869
1870 sysdev_driver_unregister(&cpu_sysdev_class, &cpufreq_sysdev_driver);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07001871 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1874 cpufreq_driver = NULL;
1875 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1876
1877 return 0;
1878}
1879EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001880
1881static int __init cpufreq_core_init(void)
1882{
1883 int cpu;
1884
1885 for_each_possible_cpu(cpu) {
1886 per_cpu(policy_cpu, cpu) = -1;
1887 init_rwsem(&per_cpu(cpu_policy_rwsem, cpu));
1888 }
1889 return 0;
1890}
1891
1892core_initcall(cpufreq_core_init);