blob: d6daf3c507d3491b0e78a75f2366820114027f03 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/cpufreq/cpufreq.c
3 *
4 * Copyright (C) 2001 Russell King
5 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
6 *
Ashok Rajc32b6b82005-10-30 14:59:54 -08007 * Oct 2005 - Ashok Raj <ashok.raj@intel.com>
Dave Jones32ee8c32006-02-28 00:43:23 -05008 * Added handling for CPU hotplug
Dave Jones8ff69732006-03-05 03:37:23 -05009 * Feb 2006 - Jacob Shin <jacob.shin@amd.com>
10 * Fix handling for CPU hotplug -- affected CPUs
Ashok Rajc32b6b82005-10-30 14:59:54 -080011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 *
16 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/notifier.h>
22#include <linux/cpufreq.h>
23#include <linux/delay.h>
24#include <linux/interrupt.h>
25#include <linux/spinlock.h>
26#include <linux/device.h>
27#include <linux/slab.h>
28#include <linux/cpu.h>
29#include <linux/completion.h>
akpm@osdl.org3fc54d32006-01-13 15:54:22 -080030#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Gautham R Shenoye08f5f52006-10-26 16:20:58 +053032#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_CORE, \
33 "cpufreq-core", msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/**
Dave Jonescd878472006-08-11 17:59:28 -040036 * The "cpufreq driver" - the arch- or hardware-dependent low
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * level driver of CPUFreq support, and its spinlock. This lock
38 * also protects the cpufreq_cpu_data array.
39 */
Dave Jones7d5e3502006-02-02 17:03:42 -050040static struct cpufreq_driver *cpufreq_driver;
Mike Travis7a6aedf2008-03-25 15:06:53 -070041static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
Thomas Renninger084f3492007-07-09 11:35:28 -070042#ifdef CONFIG_HOTPLUG_CPU
43/* This one keeps track of the previously set governor of a removed CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -070044static DEFINE_PER_CPU(struct cpufreq_governor *, cpufreq_cpu_governor);
Thomas Renninger084f3492007-07-09 11:35:28 -070045#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static DEFINE_SPINLOCK(cpufreq_driver_lock);
47
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080048/*
49 * cpu_policy_rwsem is a per CPU reader-writer semaphore designed to cure
50 * all cpufreq/hotplug/workqueue/etc related lock issues.
51 *
52 * The rules for this semaphore:
53 * - Any routine that wants to read from the policy structure will
54 * do a down_read on this semaphore.
55 * - Any routine that will write to the policy structure and/or may take away
56 * the policy altogether (eg. CPU hotplug), will hold this lock in write
57 * mode before doing so.
58 *
59 * Additional rules:
60 * - All holders of the lock should check to make sure that the CPU they
61 * are concerned with are online after they get the lock.
62 * - Governor routines that can be called in cpufreq hotplug path should not
63 * take this sem as top level hotplug notifier handler takes this.
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
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200121static bool init_cpufreq_transition_notifier_list_called;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700122static int __init init_cpufreq_transition_notifier_list(void)
123{
124 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200125 init_cpufreq_transition_notifier_list_called = true;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700126 return 0;
127}
Linus Torvaldsb3438f82006-11-20 11:47:18 -0800128pure_initcall(init_cpufreq_transition_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130static LIST_HEAD(cpufreq_governor_list);
Dave Jones7d5e3502006-02-02 17:03:42 -0500131static DEFINE_MUTEX (cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Dave Jones7d5e3502006-02-02 17:03:42 -0500133struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 struct cpufreq_policy *data;
136 unsigned long flags;
137
Mike Travis7a6aedf2008-03-25 15:06:53 -0700138 if (cpu >= nr_cpu_ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 goto err_out;
140
141 /* get the cpufreq driver */
142 spin_lock_irqsave(&cpufreq_driver_lock, flags);
143
144 if (!cpufreq_driver)
145 goto err_out_unlock;
146
147 if (!try_module_get(cpufreq_driver->owner))
148 goto err_out_unlock;
149
150
151 /* get the CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -0700152 data = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 if (!data)
155 goto err_out_put_module;
156
157 if (!kobject_get(&data->kobj))
158 goto err_out_put_module;
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return data;
162
Dave Jones7d5e3502006-02-02 17:03:42 -0500163err_out_put_module:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 module_put(cpufreq_driver->owner);
Dave Jones7d5e3502006-02-02 17:03:42 -0500165err_out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones7d5e3502006-02-02 17:03:42 -0500167err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return NULL;
169}
170EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
171
Dave Jones7d5e3502006-02-02 17:03:42 -0500172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173void cpufreq_cpu_put(struct cpufreq_policy *data)
174{
175 kobject_put(&data->kobj);
176 module_put(cpufreq_driver->owner);
177}
178EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
179
180
181/*********************************************************************
182 * UNIFIED DEBUG HELPERS *
183 *********************************************************************/
184#ifdef CONFIG_CPU_FREQ_DEBUG
185
186/* what part(s) of the CPUfreq subsystem are debugged? */
187static unsigned int debug;
188
189/* is the debug output ratelimit'ed using printk_ratelimit? User can
190 * set or modify this value.
191 */
192static unsigned int debug_ratelimit = 1;
193
194/* is the printk_ratelimit'ing enabled? It's enabled after a successful
195 * loading of a cpufreq driver, temporarily disabled when a new policy
196 * is set, and disabled upon cpufreq driver removal
197 */
198static unsigned int disable_ratelimit = 1;
199static DEFINE_SPINLOCK(disable_ratelimit_lock);
200
Arjan van de Ven858119e2006-01-14 13:20:43 -0800201static void cpufreq_debug_enable_ratelimit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 unsigned long flags;
204
205 spin_lock_irqsave(&disable_ratelimit_lock, flags);
206 if (disable_ratelimit)
207 disable_ratelimit--;
208 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
209}
210
Arjan van de Ven858119e2006-01-14 13:20:43 -0800211static void cpufreq_debug_disable_ratelimit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 unsigned long flags;
214
215 spin_lock_irqsave(&disable_ratelimit_lock, flags);
216 disable_ratelimit++;
217 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
218}
219
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530220void cpufreq_debug_printk(unsigned int type, const char *prefix,
Dave Jones905d77c2008-03-05 14:28:32 -0500221 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 char s[256];
224 va_list args;
225 unsigned int len;
226 unsigned long flags;
Dave Jones32ee8c32006-02-28 00:43:23 -0500227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 WARN_ON(!prefix);
229 if (type & debug) {
230 spin_lock_irqsave(&disable_ratelimit_lock, flags);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530231 if (!disable_ratelimit && debug_ratelimit
232 && !printk_ratelimit()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
234 return;
235 }
236 spin_unlock_irqrestore(&disable_ratelimit_lock, flags);
237
238 len = snprintf(s, 256, KERN_DEBUG "%s: ", prefix);
239
240 va_start(args, fmt);
241 len += vsnprintf(&s[len], (256 - len), fmt, args);
242 va_end(args);
243
244 printk(s);
245
246 WARN_ON(len < 5);
247 }
248}
249EXPORT_SYMBOL(cpufreq_debug_printk);
250
251
252module_param(debug, uint, 0644);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530253MODULE_PARM_DESC(debug, "CPUfreq debugging: add 1 to debug core,"
254 " 2 to debug drivers, and 4 to debug governors.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256module_param(debug_ratelimit, uint, 0644);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530257MODULE_PARM_DESC(debug_ratelimit, "CPUfreq debugging:"
258 " set to 0 to disable ratelimiting.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260#else /* !CONFIG_CPU_FREQ_DEBUG */
261
262static inline void cpufreq_debug_enable_ratelimit(void) { return; }
263static inline void cpufreq_debug_disable_ratelimit(void) { return; }
264
265#endif /* CONFIG_CPU_FREQ_DEBUG */
266
267
268/*********************************************************************
269 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
270 *********************************************************************/
271
272/**
273 * adjust_jiffies - adjust the system "loops_per_jiffy"
274 *
275 * This function alters the system "loops_per_jiffy" for the clock
276 * speed change. Note that loops_per_jiffy cannot be updated on SMP
Dave Jones32ee8c32006-02-28 00:43:23 -0500277 * systems as each CPU might be scaled differently. So, use the arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 * per-CPU loops_per_jiffy value wherever possible.
279 */
280#ifndef CONFIG_SMP
281static unsigned long l_p_j_ref;
282static unsigned int l_p_j_ref_freq;
283
Arjan van de Ven858119e2006-01-14 13:20:43 -0800284static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 if (ci->flags & CPUFREQ_CONST_LOOPS)
287 return;
288
289 if (!l_p_j_ref_freq) {
290 l_p_j_ref = loops_per_jiffy;
291 l_p_j_ref_freq = ci->old;
Joe Perchesa4a9df52007-11-19 17:48:06 -0800292 dprintk("saving %lu as reference value for loops_per_jiffy; "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530293 "freq is %u kHz\n", l_p_j_ref, l_p_j_ref_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295 if ((val == CPUFREQ_PRECHANGE && ci->old < ci->new) ||
296 (val == CPUFREQ_POSTCHANGE && ci->old > ci->new) ||
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -0700297 (val == CPUFREQ_RESUMECHANGE || val == CPUFREQ_SUSPENDCHANGE)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530298 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
299 ci->new);
Joe Perchesa4a9df52007-11-19 17:48:06 -0800300 dprintk("scaling loops_per_jiffy to %lu "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530301 "for frequency %u kHz\n", loops_per_jiffy, ci->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303}
304#else
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530305static inline void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
306{
307 return;
308}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309#endif
310
311
312/**
Dave Jonese4472cb2006-01-31 15:53:55 -0800313 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
314 * on frequency transition.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 *
Dave Jonese4472cb2006-01-31 15:53:55 -0800316 * This function calls the transition notifiers and the "adjust_jiffies"
317 * function. It is called twice on all CPU frequency changes that have
Dave Jones32ee8c32006-02-28 00:43:23 -0500318 * external effects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 */
320void cpufreq_notify_transition(struct cpufreq_freqs *freqs, unsigned int state)
321{
Dave Jonese4472cb2006-01-31 15:53:55 -0800322 struct cpufreq_policy *policy;
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 BUG_ON(irqs_disabled());
325
326 freqs->flags = cpufreq_driver->flags;
Dave Jonese4472cb2006-01-31 15:53:55 -0800327 dprintk("notification %u of frequency transition to %u kHz\n",
328 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Mike Travis7a6aedf2008-03-25 15:06:53 -0700330 policy = per_cpu(cpufreq_cpu_data, freqs->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 switch (state) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 case CPUFREQ_PRECHANGE:
Dave Jones32ee8c32006-02-28 00:43:23 -0500334 /* detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800335 * which is not equal to what the cpufreq core thinks is
336 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 */
338 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800339 if ((policy) && (policy->cpu == freqs->cpu) &&
340 (policy->cur) && (policy->cur != freqs->old)) {
Jan Beulichb10eec22006-04-28 13:47:13 +0200341 dprintk("Warning: CPU frequency is"
Dave Jonese4472cb2006-01-31 15:53:55 -0800342 " %u, cpufreq assumed %u kHz.\n",
343 freqs->old, policy->cur);
344 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700347 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800348 CPUFREQ_PRECHANGE, freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
350 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 case CPUFREQ_POSTCHANGE:
353 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700354 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800355 CPUFREQ_POSTCHANGE, freqs);
Dave Jonese4472cb2006-01-31 15:53:55 -0800356 if (likely(policy) && likely(policy->cpu == freqs->cpu))
357 policy->cur = freqs->new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 break;
359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361EXPORT_SYMBOL_GPL(cpufreq_notify_transition);
362
363
364
365/*********************************************************************
366 * SYSFS INTERFACE *
367 *********************************************************************/
368
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700369static struct cpufreq_governor *__find_governor(const char *str_governor)
370{
371 struct cpufreq_governor *t;
372
373 list_for_each_entry(t, &cpufreq_governor_list, governor_list)
374 if (!strnicmp(str_governor,t->name,CPUFREQ_NAME_LEN))
375 return t;
376
377 return NULL;
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380/**
381 * cpufreq_parse_governor - parse a governor string
382 */
Dave Jones905d77c2008-03-05 14:28:32 -0500383static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 struct cpufreq_governor **governor)
385{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700386 int err = -EINVAL;
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (!cpufreq_driver)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700389 goto out;
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (cpufreq_driver->setpolicy) {
392 if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
393 *policy = CPUFREQ_POLICY_PERFORMANCE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700394 err = 0;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530395 } else if (!strnicmp(str_governor, "powersave",
396 CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 *policy = CPUFREQ_POLICY_POWERSAVE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700398 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700400 } else if (cpufreq_driver->target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700402
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800403 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700404
405 t = __find_governor(str_governor);
406
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700407 if (t == NULL) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530408 char *name = kasprintf(GFP_KERNEL, "cpufreq_%s",
409 str_governor);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700410
411 if (name) {
412 int ret;
413
414 mutex_unlock(&cpufreq_governor_mutex);
Chris Wright326f6a52008-06-06 21:26:02 -0700415 ret = request_module("%s", name);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700416 mutex_lock(&cpufreq_governor_mutex);
417
418 if (ret == 0)
419 t = __find_governor(str_governor);
420 }
421
422 kfree(name);
423 }
424
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700425 if (t != NULL) {
426 *governor = t;
427 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700429
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800430 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700432 out:
433 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436
437/* drivers/base/cpu.c */
438extern struct sysdev_class cpu_sysdev_class;
439
440
441/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530442 * cpufreq_per_cpu_attr_read() / show_##file_name() -
443 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 *
445 * Write out information from cpufreq_driver->policy[cpu]; object must be
446 * "unsigned int".
447 */
448
Dave Jones32ee8c32006-02-28 00:43:23 -0500449#define show_one(file_name, object) \
450static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500451(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500452{ \
453 return sprintf (buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
456show_one(cpuinfo_min_freq, cpuinfo.min_freq);
457show_one(cpuinfo_max_freq, cpuinfo.max_freq);
458show_one(scaling_min_freq, min);
459show_one(scaling_max_freq, max);
460show_one(scaling_cur_freq, cur);
461
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530462static int __cpufreq_set_policy(struct cpufreq_policy *data,
463 struct cpufreq_policy *policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/**
466 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
467 */
468#define store_one(file_name, object) \
469static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500470(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{ \
472 unsigned int ret = -EINVAL; \
473 struct cpufreq_policy new_policy; \
474 \
475 ret = cpufreq_get_policy(&new_policy, policy->cpu); \
476 if (ret) \
477 return -EINVAL; \
478 \
479 ret = sscanf (buf, "%u", &new_policy.object); \
480 if (ret != 1) \
481 return -EINVAL; \
482 \
Thomas Renninger7970e082006-04-13 15:14:04 +0200483 ret = __cpufreq_set_policy(policy, &new_policy); \
484 policy->user_policy.object = policy->object; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 \
486 return ret ? ret : count; \
487}
488
489store_one(scaling_min_freq,min);
490store_one(scaling_max_freq,max);
491
492/**
493 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
494 */
Dave Jones905d77c2008-03-05 14:28:32 -0500495static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
496 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800498 unsigned int cur_freq = __cpufreq_get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (!cur_freq)
500 return sprintf(buf, "<unknown>");
501 return sprintf(buf, "%u\n", cur_freq);
502}
503
504
505/**
506 * show_scaling_governor - show the current policy for the specified CPU
507 */
Dave Jones905d77c2008-03-05 14:28:32 -0500508static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 if(policy->policy == CPUFREQ_POLICY_POWERSAVE)
511 return sprintf(buf, "powersave\n");
512 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
513 return sprintf(buf, "performance\n");
514 else if (policy->governor)
515 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", policy->governor->name);
516 return -EINVAL;
517}
518
519
520/**
521 * store_scaling_governor - store policy for the specified CPU
522 */
Dave Jones905d77c2008-03-05 14:28:32 -0500523static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
524 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 unsigned int ret = -EINVAL;
527 char str_governor[16];
528 struct cpufreq_policy new_policy;
529
530 ret = cpufreq_get_policy(&new_policy, policy->cpu);
531 if (ret)
532 return ret;
533
534 ret = sscanf (buf, "%15s", str_governor);
535 if (ret != 1)
536 return -EINVAL;
537
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530538 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
539 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return -EINVAL;
541
Thomas Renninger7970e082006-04-13 15:14:04 +0200542 /* Do not use cpufreq_set_policy here or the user_policy.max
543 will be wrongly overridden */
Thomas Renninger7970e082006-04-13 15:14:04 +0200544 ret = __cpufreq_set_policy(policy, &new_policy);
545
546 policy->user_policy.policy = policy->policy;
547 policy->user_policy.governor = policy->governor;
Thomas Renninger7970e082006-04-13 15:14:04 +0200548
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530549 if (ret)
550 return ret;
551 else
552 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
555/**
556 * show_scaling_driver - show the cpufreq driver currently loaded
557 */
Dave Jones905d77c2008-03-05 14:28:32 -0500558static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", cpufreq_driver->name);
561}
562
563/**
564 * show_scaling_available_governors - show the available CPUfreq governors
565 */
Dave Jones905d77c2008-03-05 14:28:32 -0500566static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
567 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 ssize_t i = 0;
570 struct cpufreq_governor *t;
571
572 if (!cpufreq_driver->target) {
573 i += sprintf(buf, "performance powersave");
574 goto out;
575 }
576
577 list_for_each_entry(t, &cpufreq_governor_list, governor_list) {
578 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char)) - (CPUFREQ_NAME_LEN + 2)))
579 goto out;
580 i += scnprintf(&buf[i], CPUFREQ_NAME_LEN, "%s ", t->name);
581 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500582out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 i += sprintf(&buf[i], "\n");
584 return i;
585}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700586
Rusty Russell835481d2009-01-04 05:18:06 -0800587static ssize_t show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 ssize_t i = 0;
590 unsigned int cpu;
591
Rusty Russell835481d2009-01-04 05:18:06 -0800592 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 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
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700603/**
604 * show_related_cpus - show the CPUs affected by each transition even if
605 * hw coordination is in use
606 */
607static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
608{
Rusty Russell835481d2009-01-04 05:18:06 -0800609 if (cpumask_empty(policy->related_cpus))
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700610 return show_cpus(policy->cpus, buf);
611 return show_cpus(policy->related_cpus, buf);
612}
613
614/**
615 * show_affected_cpus - show the CPUs affected by each transition
616 */
617static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
618{
619 return show_cpus(policy->cpus, buf);
620}
621
Venki Pallipadi9e769882007-10-26 10:18:21 -0700622static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500623 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700624{
625 unsigned int freq = 0;
626 unsigned int ret;
627
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700628 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700629 return -EINVAL;
630
631 ret = sscanf(buf, "%u", &freq);
632 if (ret != 1)
633 return -EINVAL;
634
635 policy->governor->store_setspeed(policy, freq);
636
637 return count;
638}
639
640static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
641{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700642 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700643 return sprintf(buf, "<unsupported>\n");
644
645 return policy->governor->show_setspeed(policy, buf);
646}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648#define define_one_ro(_name) \
649static struct freq_attr _name = \
650__ATTR(_name, 0444, show_##_name, NULL)
651
652#define define_one_ro0400(_name) \
653static struct freq_attr _name = \
654__ATTR(_name, 0400, show_##_name, NULL)
655
656#define define_one_rw(_name) \
657static struct freq_attr _name = \
658__ATTR(_name, 0644, show_##_name, store_##_name)
659
660define_one_ro0400(cpuinfo_cur_freq);
661define_one_ro(cpuinfo_min_freq);
662define_one_ro(cpuinfo_max_freq);
663define_one_ro(scaling_available_governors);
664define_one_ro(scaling_driver);
665define_one_ro(scaling_cur_freq);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700666define_one_ro(related_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667define_one_ro(affected_cpus);
668define_one_rw(scaling_min_freq);
669define_one_rw(scaling_max_freq);
670define_one_rw(scaling_governor);
Venki Pallipadi9e769882007-10-26 10:18:21 -0700671define_one_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Dave Jones905d77c2008-03-05 14:28:32 -0500673static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 &cpuinfo_min_freq.attr,
675 &cpuinfo_max_freq.attr,
676 &scaling_min_freq.attr,
677 &scaling_max_freq.attr,
678 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700679 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 &scaling_governor.attr,
681 &scaling_driver.attr,
682 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700683 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 NULL
685};
686
687#define to_policy(k) container_of(k,struct cpufreq_policy,kobj)
688#define to_attr(a) container_of(a,struct freq_attr,attr)
689
Dave Jones905d77c2008-03-05 14:28:32 -0500690static ssize_t show(struct kobject *kobj, struct attribute *attr ,char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Dave Jones905d77c2008-03-05 14:28:32 -0500692 struct cpufreq_policy *policy = to_policy(kobj);
693 struct freq_attr *fattr = to_attr(attr);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500694 ssize_t ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 policy = cpufreq_cpu_get(policy->cpu);
696 if (!policy)
Dave Jones0db4a8a2008-03-05 14:20:57 -0500697 goto no_policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800698
699 if (lock_policy_rwsem_read(policy->cpu) < 0)
Dave Jones0db4a8a2008-03-05 14:20:57 -0500700 goto fail;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800701
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530702 if (fattr->show)
703 ret = fattr->show(policy, buf);
704 else
705 ret = -EIO;
706
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800707 unlock_policy_rwsem_read(policy->cpu);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500708fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 cpufreq_cpu_put(policy);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500710no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return ret;
712}
713
Dave Jones905d77c2008-03-05 14:28:32 -0500714static ssize_t store(struct kobject *kobj, struct attribute *attr,
715 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Dave Jones905d77c2008-03-05 14:28:32 -0500717 struct cpufreq_policy *policy = to_policy(kobj);
718 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500719 ssize_t ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 policy = cpufreq_cpu_get(policy->cpu);
721 if (!policy)
Dave Jonesa07530b2008-03-05 14:22:25 -0500722 goto no_policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800723
724 if (lock_policy_rwsem_write(policy->cpu) < 0)
Dave Jonesa07530b2008-03-05 14:22:25 -0500725 goto fail;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800726
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530727 if (fattr->store)
728 ret = fattr->store(policy, buf, count);
729 else
730 ret = -EIO;
731
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800732 unlock_policy_rwsem_write(policy->cpu);
Dave Jonesa07530b2008-03-05 14:22:25 -0500733fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 cpufreq_cpu_put(policy);
Dave Jonesa07530b2008-03-05 14:22:25 -0500735no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return ret;
737}
738
Dave Jones905d77c2008-03-05 14:28:32 -0500739static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Dave Jones905d77c2008-03-05 14:28:32 -0500741 struct cpufreq_policy *policy = to_policy(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 dprintk("last reference is dropped\n");
743 complete(&policy->kobj_unregister);
744}
745
746static struct sysfs_ops sysfs_ops = {
747 .show = show,
748 .store = store,
749};
750
751static struct kobj_type ktype_cpufreq = {
752 .sysfs_ops = &sysfs_ops,
753 .default_attrs = default_attrs,
754 .release = cpufreq_sysfs_release,
755};
756
757
758/**
759 * cpufreq_add_dev - add a CPU device
760 *
Dave Jones32ee8c32006-02-28 00:43:23 -0500761 * Adds the cpufreq interface for a CPU device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 */
Dave Jones905d77c2008-03-05 14:28:32 -0500763static int cpufreq_add_dev(struct sys_device *sys_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
765 unsigned int cpu = sys_dev->id;
766 int ret = 0;
767 struct cpufreq_policy new_policy;
768 struct cpufreq_policy *policy;
769 struct freq_attr **drv_attr;
Dave Jones8ff69732006-03-05 03:37:23 -0500770 struct sys_device *cpu_sys_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 unsigned long flags;
772 unsigned int j;
Dave Jones8ff69732006-03-05 03:37:23 -0500773#ifdef CONFIG_SMP
774 struct cpufreq_policy *managed_policy;
775#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Ashok Rajc32b6b82005-10-30 14:59:54 -0800777 if (cpu_is_offline(cpu))
778 return 0;
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 cpufreq_debug_disable_ratelimit();
781 dprintk("adding CPU %u\n", cpu);
782
783#ifdef CONFIG_SMP
784 /* check whether a different CPU already registered this
785 * CPU because it is in the same boat. */
786 policy = cpufreq_cpu_get(cpu);
787 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500788 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 cpufreq_debug_enable_ratelimit();
790 return 0;
791 }
792#endif
793
794 if (!try_module_get(cpufreq_driver->owner)) {
795 ret = -EINVAL;
796 goto module_out;
797 }
798
Dave Jonese98df502005-10-20 15:17:43 -0700799 policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (!policy) {
801 ret = -ENOMEM;
802 goto nomem_out;
803 }
Rusty Russell835481d2009-01-04 05:18:06 -0800804 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL)) {
805 kfree(policy);
806 ret = -ENOMEM;
807 goto nomem_out;
808 }
809 if (!alloc_cpumask_var(&policy->related_cpus, GFP_KERNEL)) {
810 free_cpumask_var(policy->cpus);
811 kfree(policy);
812 ret = -ENOMEM;
813 goto nomem_out;
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 policy->cpu = cpu;
Rusty Russell835481d2009-01-04 05:18:06 -0800817 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800819 /* Initially set CPU itself as the policy_cpu */
820 per_cpu(policy_cpu, cpu) = cpu;
821 lock_policy_rwsem_write(cpu);
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +0000824 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Thomas Renninger8122c6c2007-10-02 13:28:09 -0700826 /* Set governor before ->init, so that driver could check it */
827 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 /* call driver. From then on the cpufreq must be able
829 * to accept all calls to ->verify and ->setpolicy for this CPU
830 */
831 ret = cpufreq_driver->init(policy);
832 if (ret) {
833 dprintk("initialization failed\n");
834 goto err_out;
835 }
Mike Chan187d9f42008-12-04 12:19:17 -0800836 policy->user_policy.min = policy->min;
837 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Thomas Renningera1531ac2008-07-29 22:32:58 -0700839 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
840 CPUFREQ_START, policy);
841
Dave Jones8ff69732006-03-05 03:37:23 -0500842#ifdef CONFIG_SMP
Thomas Renninger084f3492007-07-09 11:35:28 -0700843
844#ifdef CONFIG_HOTPLUG_CPU
Mike Travis7a6aedf2008-03-25 15:06:53 -0700845 if (per_cpu(cpufreq_cpu_governor, cpu)) {
846 policy->governor = per_cpu(cpufreq_cpu_governor, cpu);
Thomas Renninger084f3492007-07-09 11:35:28 -0700847 dprintk("Restoring governor %s for cpu %d\n",
848 policy->governor->name, cpu);
849 }
850#endif
851
Rusty Russell835481d2009-01-04 05:18:06 -0800852 for_each_cpu(j, policy->cpus) {
Dave Jones8ff69732006-03-05 03:37:23 -0500853 if (cpu == j)
854 continue;
855
856 /* check for existing affected CPUs. They may not be aware
857 * of it due to CPU Hotplug.
858 */
Dave Jones45709112008-03-05 14:07:34 -0500859 managed_policy = cpufreq_cpu_get(j); // FIXME: Where is this released? What about error paths?
Dave Jones8ff69732006-03-05 03:37:23 -0500860 if (unlikely(managed_policy)) {
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800861
862 /* Set proper policy_cpu */
863 unlock_policy_rwsem_write(cpu);
864 per_cpu(policy_cpu, cpu) = managed_policy->cpu;
865
866 if (lock_policy_rwsem_write(cpu) < 0)
867 goto err_out_driver_exit;
868
Dave Jones8ff69732006-03-05 03:37:23 -0500869 spin_lock_irqsave(&cpufreq_driver_lock, flags);
Rusty Russell835481d2009-01-04 05:18:06 -0800870 cpumask_copy(managed_policy->cpus, policy->cpus);
Mike Travis7a6aedf2008-03-25 15:06:53 -0700871 per_cpu(cpufreq_cpu_data, cpu) = managed_policy;
Dave Jones8ff69732006-03-05 03:37:23 -0500872 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
873
874 dprintk("CPU already managed, adding link\n");
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200875 ret = sysfs_create_link(&sys_dev->kobj,
876 &managed_policy->kobj,
877 "cpufreq");
Dave Jones45709112008-03-05 14:07:34 -0500878 if (ret)
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200879 goto err_out_driver_exit;
Dave Jones8ff69732006-03-05 03:37:23 -0500880
881 cpufreq_debug_enable_ratelimit();
Dave Jones8ff69732006-03-05 03:37:23 -0500882 ret = 0;
883 goto err_out_driver_exit; /* call driver->exit() */
884 }
885 }
886#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 memcpy(&new_policy, policy, sizeof(struct cpufreq_policy));
888
889 /* prepare interface data */
Dave Jones129f8ae2009-03-09 15:07:33 -0400890 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq, &sys_dev->kobj,
891 "cpufreq");
892 if (ret)
893 goto err_out_driver_exit;
894
895 /* set up files for this cpu device */
896 drv_attr = cpufreq_driver->attr;
897 while ((drv_attr) && (*drv_attr)) {
898 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
Matthew Garrette088e4c2008-11-25 13:29:47 -0500899 if (ret)
900 goto err_out_driver_exit;
Dave Jones129f8ae2009-03-09 15:07:33 -0400901 drv_attr++;
902 }
903 if (cpufreq_driver->get) {
904 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
905 if (ret)
906 goto err_out_driver_exit;
907 }
908 if (cpufreq_driver->target) {
909 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
Dave Jones45709112008-03-05 14:07:34 -0500910 if (ret)
Thomas Renninger0a4b2cc2007-05-21 07:20:04 -0500911 goto err_out_driver_exit;
912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 spin_lock_irqsave(&cpufreq_driver_lock, flags);
Rusty Russell835481d2009-01-04 05:18:06 -0800915 for_each_cpu(j, policy->cpus) {
Mike Travis7a6aedf2008-03-25 15:06:53 -0700916 per_cpu(cpufreq_cpu_data, j) = policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800917 per_cpu(policy_cpu, j) = policy->cpu;
918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones8ff69732006-03-05 03:37:23 -0500920
921 /* symlink affected CPUs */
Rusty Russell835481d2009-01-04 05:18:06 -0800922 for_each_cpu(j, policy->cpus) {
Dave Jones8ff69732006-03-05 03:37:23 -0500923 if (j == cpu)
924 continue;
925 if (!cpu_online(j))
926 continue;
927
Dave Jones1f8b2c92006-03-29 01:40:04 -0500928 dprintk("CPU %u already managed, adding link\n", j);
Dave Jones8ff69732006-03-05 03:37:23 -0500929 cpufreq_cpu_get(cpu);
930 cpu_sys_dev = get_cpu_sysdev(j);
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200931 ret = sysfs_create_link(&cpu_sys_dev->kobj, &policy->kobj,
932 "cpufreq");
Dave Jones45709112008-03-05 14:07:34 -0500933 if (ret)
Ahmed S. Darwish0142f9d2007-01-05 05:44:54 +0200934 goto err_out_unregister;
Dave Jones8ff69732006-03-05 03:37:23 -0500935 }
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 policy->governor = NULL; /* to assure that the starting sequence is
938 * run in cpufreq_set_policy */
Dave Jones87c32272006-03-29 01:48:37 -0500939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* set default policy */
Thomas Renninger22c970f2007-04-19 15:48:34 +0200941 ret = __cpufreq_set_policy(policy, &new_policy);
942 policy->user_policy.policy = policy->policy;
Thomas Renninger084f3492007-07-09 11:35:28 -0700943 policy->user_policy.governor = policy->governor;
Thomas Renninger22c970f2007-04-19 15:48:34 +0200944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (ret) {
946 dprintk("setting policy failed\n");
947 goto err_out_unregister;
948 }
949
Lothar Waßmanndca02612008-05-29 17:54:52 +0200950 unlock_policy_rwsem_write(cpu);
951
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -0400952 kobject_uevent(&policy->kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 module_put(cpufreq_driver->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 dprintk("initialization complete\n");
955 cpufreq_debug_enable_ratelimit();
Dave Jones87c32272006-03-29 01:48:37 -0500956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return 0;
958
959
960err_out_unregister:
961 spin_lock_irqsave(&cpufreq_driver_lock, flags);
Rusty Russell835481d2009-01-04 05:18:06 -0800962 for_each_cpu(j, policy->cpus)
Mike Travis7a6aedf2008-03-25 15:06:53 -0700963 per_cpu(cpufreq_cpu_data, j) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
965
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800966 kobject_put(&policy->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 wait_for_completion(&policy->kobj_unregister);
968
Venkatesh Pallipadi8085e1f2005-08-25 13:14:06 -0700969err_out_driver_exit:
970 if (cpufreq_driver->exit)
971 cpufreq_driver->exit(policy);
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973err_out:
Dave Jones45709112008-03-05 14:07:34 -0500974 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 kfree(policy);
976
977nomem_out:
978 module_put(cpufreq_driver->owner);
Ashok Rajc32b6b82005-10-30 14:59:54 -0800979module_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 cpufreq_debug_enable_ratelimit();
981 return ret;
982}
983
984
985/**
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800986 * __cpufreq_remove_dev - remove a CPU device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 *
988 * Removes the cpufreq interface for a CPU device.
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800989 * Caller should already have policy_rwsem in write mode for this CPU.
990 * This routine frees the rwsem before returning.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 */
Dave Jones905d77c2008-03-05 14:28:32 -0500992static int __cpufreq_remove_dev(struct sys_device *sys_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
994 unsigned int cpu = sys_dev->id;
995 unsigned long flags;
996 struct cpufreq_policy *data;
997#ifdef CONFIG_SMP
Grant Coadye738cf62005-11-21 21:32:28 -0800998 struct sys_device *cpu_sys_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 unsigned int j;
1000#endif
1001
1002 cpufreq_debug_disable_ratelimit();
1003 dprintk("unregistering CPU %u\n", cpu);
1004
1005 spin_lock_irqsave(&cpufreq_driver_lock, flags);
Mike Travis7a6aedf2008-03-25 15:06:53 -07001006 data = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 if (!data) {
1009 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 cpufreq_debug_enable_ratelimit();
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001011 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return -EINVAL;
1013 }
Mike Travis7a6aedf2008-03-25 15:06:53 -07001014 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016
1017#ifdef CONFIG_SMP
1018 /* if this isn't the CPU which is the parent of the kobj, we
Dave Jones32ee8c32006-02-28 00:43:23 -05001019 * only need to unlink, put and exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 */
1021 if (unlikely(cpu != data->cpu)) {
1022 dprintk("removing link\n");
Rusty Russell835481d2009-01-04 05:18:06 -08001023 cpumask_clear_cpu(cpu, data->cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1025 sysfs_remove_link(&sys_dev->kobj, "cpufreq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 cpufreq_cpu_put(data);
1027 cpufreq_debug_enable_ratelimit();
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001028 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return 0;
1030 }
1031#endif
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033#ifdef CONFIG_SMP
Thomas Renninger084f3492007-07-09 11:35:28 -07001034
1035#ifdef CONFIG_HOTPLUG_CPU
Mike Travis7a6aedf2008-03-25 15:06:53 -07001036 per_cpu(cpufreq_cpu_governor, cpu) = data->governor;
Thomas Renninger084f3492007-07-09 11:35:28 -07001037#endif
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 /* if we have other CPUs still registered, we need to unlink them,
1040 * or else wait_for_completion below will lock up. Clean the
Mike Travis7a6aedf2008-03-25 15:06:53 -07001041 * per_cpu(cpufreq_cpu_data) while holding the lock, and remove
1042 * the sysfs links afterwards.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 */
Rusty Russell835481d2009-01-04 05:18:06 -08001044 if (unlikely(cpumask_weight(data->cpus) > 1)) {
1045 for_each_cpu(j, data->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (j == cpu)
1047 continue;
Mike Travis7a6aedf2008-03-25 15:06:53 -07001048 per_cpu(cpufreq_cpu_data, j) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050 }
1051
1052 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1053
Rusty Russell835481d2009-01-04 05:18:06 -08001054 if (unlikely(cpumask_weight(data->cpus) > 1)) {
1055 for_each_cpu(j, data->cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (j == cpu)
1057 continue;
1058 dprintk("removing link for cpu %u\n", j);
Thomas Renninger084f3492007-07-09 11:35:28 -07001059#ifdef CONFIG_HOTPLUG_CPU
Mike Travis7a6aedf2008-03-25 15:06:53 -07001060 per_cpu(cpufreq_cpu_governor, j) = data->governor;
Thomas Renninger084f3492007-07-09 11:35:28 -07001061#endif
Ashok Rajd434fca2005-10-30 14:59:52 -08001062 cpu_sys_dev = get_cpu_sysdev(j);
1063 sysfs_remove_link(&cpu_sys_dev->kobj, "cpufreq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 cpufreq_cpu_put(data);
1065 }
1066 }
1067#else
1068 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1069#endif
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (cpufreq_driver->target)
1072 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001073
1074 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 kobject_put(&data->kobj);
1077
1078 /* we need to make sure that the underlying kobj is actually
Dave Jones32ee8c32006-02-28 00:43:23 -05001079 * not referenced anymore by anybody before we proceed with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 * unloading.
1081 */
1082 dprintk("waiting for dropping of refcount\n");
1083 wait_for_completion(&data->kobj_unregister);
1084 dprintk("wait complete\n");
1085
1086 if (cpufreq_driver->exit)
1087 cpufreq_driver->exit(data);
1088
Rusty Russell835481d2009-01-04 05:18:06 -08001089 free_cpumask_var(data->related_cpus);
1090 free_cpumask_var(data->cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 kfree(data);
Rusty Russell835481d2009-01-04 05:18:06 -08001092 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 cpufreq_debug_enable_ratelimit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return 0;
1096}
1097
1098
Dave Jones905d77c2008-03-05 14:28:32 -05001099static int cpufreq_remove_dev(struct sys_device *sys_dev)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001100{
1101 unsigned int cpu = sys_dev->id;
1102 int retval;
Venki Pallipadiec282972007-03-26 12:03:19 -07001103
1104 if (cpu_is_offline(cpu))
1105 return 0;
1106
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001107 if (unlikely(lock_policy_rwsem_write(cpu)))
1108 BUG();
1109
1110 retval = __cpufreq_remove_dev(sys_dev);
1111 return retval;
1112}
1113
1114
David Howells65f27f32006-11-22 14:55:48 +00001115static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
David Howells65f27f32006-11-22 14:55:48 +00001117 struct cpufreq_policy *policy =
1118 container_of(work, struct cpufreq_policy, update);
1119 unsigned int cpu = policy->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 dprintk("handle_update for cpu %u called\n", cpu);
1121 cpufreq_update_policy(cpu);
1122}
1123
1124/**
1125 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're in deep trouble.
1126 * @cpu: cpu number
1127 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1128 * @new_freq: CPU frequency the CPU actually runs at
1129 *
1130 * We adjust to current frequency first, and need to clean up later. So either call
1131 * to cpufreq_update_policy() or schedule handle_update()).
1132 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301133static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1134 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
1136 struct cpufreq_freqs freqs;
1137
Jan Beulichb10eec22006-04-28 13:47:13 +02001138 dprintk("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1140
1141 freqs.cpu = cpu;
1142 freqs.old = old_freq;
1143 freqs.new = new_freq;
1144 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
1145 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
1146}
1147
1148
Dave Jones32ee8c32006-02-28 00:43:23 -05001149/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301150 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001151 * @cpu: CPU number
1152 *
1153 * This is the last known freq, without actually getting it from the driver.
1154 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1155 */
1156unsigned int cpufreq_quick_get(unsigned int cpu)
1157{
1158 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301159 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001160
1161 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301162 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001163 cpufreq_cpu_put(policy);
1164 }
1165
Dave Jones4d34a672008-02-07 16:33:49 -05001166 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001167}
1168EXPORT_SYMBOL(cpufreq_quick_get);
1169
1170
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001171static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001173 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301174 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001177 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301179 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301181 if (ret_freq && policy->cur &&
1182 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1183 /* verify no discrepancy between actual and
1184 saved value exists */
1185 if (unlikely(ret_freq != policy->cur)) {
1186 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 schedule_work(&policy->update);
1188 }
1189 }
1190
Dave Jones4d34a672008-02-07 16:33:49 -05001191 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001192}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001194/**
1195 * cpufreq_get - get the current CPU frequency (in kHz)
1196 * @cpu: CPU number
1197 *
1198 * Get the CPU current (static) CPU frequency
1199 */
1200unsigned int cpufreq_get(unsigned int cpu)
1201{
1202 unsigned int ret_freq = 0;
1203 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1204
1205 if (!policy)
1206 goto out;
1207
1208 if (unlikely(lock_policy_rwsem_read(cpu)))
1209 goto out_policy;
1210
1211 ret_freq = __cpufreq_get(cpu);
1212
1213 unlock_policy_rwsem_read(cpu);
1214
1215out_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 cpufreq_cpu_put(policy);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001217out:
Dave Jones4d34a672008-02-07 16:33:49 -05001218 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220EXPORT_SYMBOL(cpufreq_get);
1221
1222
1223/**
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001224 * cpufreq_suspend - let the low level driver prepare for suspend
1225 */
1226
Dave Jones905d77c2008-03-05 14:28:32 -05001227static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001228{
1229 int cpu = sysdev->id;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301230 int ret = 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001231 unsigned int cur_freq = 0;
1232 struct cpufreq_policy *cpu_policy;
1233
Dave Jones0e37b152006-09-26 23:02:34 -04001234 dprintk("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001235
1236 if (!cpu_online(cpu))
1237 return 0;
1238
1239 /* we may be lax here as interrupts are off. Nonetheless
1240 * we need to grab the correct cpu policy, as to check
1241 * whether we really run on this CPU.
1242 */
1243
1244 cpu_policy = cpufreq_cpu_get(cpu);
1245 if (!cpu_policy)
1246 return -EINVAL;
1247
1248 /* only handle each CPU group once */
Dave Jonesc9060492008-02-07 16:32:18 -05001249 if (unlikely(cpu_policy->cpu != cpu))
1250 goto out;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001251
1252 if (cpufreq_driver->suspend) {
Bernard Blackhame00d9962005-07-07 17:56:42 -07001253 ret = cpufreq_driver->suspend(cpu_policy, pmsg);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001254 if (ret) {
1255 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
1256 "step on CPU %u\n", cpu_policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001257 goto out;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001258 }
1259 }
1260
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001261 if (cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)
1262 goto out;
1263
1264 if (cpufreq_driver->get)
1265 cur_freq = cpufreq_driver->get(cpu_policy->cpu);
1266
1267 if (!cur_freq || !cpu_policy->cur) {
1268 printk(KERN_ERR "cpufreq: suspend failed to assert current "
1269 "frequency is what timing core thinks it is.\n");
1270 goto out;
1271 }
1272
1273 if (unlikely(cur_freq != cpu_policy->cur)) {
1274 struct cpufreq_freqs freqs;
1275
1276 if (!(cpufreq_driver->flags & CPUFREQ_PM_NO_WARN))
Jan Beulichb10eec22006-04-28 13:47:13 +02001277 dprintk("Warning: CPU frequency is %u, "
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001278 "cpufreq assumed %u kHz.\n",
1279 cur_freq, cpu_policy->cur);
1280
1281 freqs.cpu = cpu;
1282 freqs.old = cpu_policy->cur;
1283 freqs.new = cur_freq;
1284
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001285 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001286 CPUFREQ_SUSPENDCHANGE, &freqs);
1287 adjust_jiffies(CPUFREQ_SUSPENDCHANGE, &freqs);
1288
1289 cpu_policy->cur = cur_freq;
1290 }
1291
Dave Jones7d5e3502006-02-02 17:03:42 -05001292out:
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001293 cpufreq_cpu_put(cpu_policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001294 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001295}
1296
1297/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 * cpufreq_resume - restore proper CPU frequency handling after resume
1299 *
1300 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
1301 * 2.) if ->target and !CPUFREQ_CONST_LOOPS: verify we're in sync
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001302 * 3.) schedule call cpufreq_update_policy() ASAP as interrupts are
1303 * restored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 */
Dave Jones905d77c2008-03-05 14:28:32 -05001305static int cpufreq_resume(struct sys_device *sysdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
1307 int cpu = sysdev->id;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301308 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 struct cpufreq_policy *cpu_policy;
1310
1311 dprintk("resuming cpu %u\n", cpu);
1312
1313 if (!cpu_online(cpu))
1314 return 0;
1315
1316 /* we may be lax here as interrupts are off. Nonetheless
1317 * we need to grab the correct cpu policy, as to check
1318 * whether we really run on this CPU.
1319 */
1320
1321 cpu_policy = cpufreq_cpu_get(cpu);
1322 if (!cpu_policy)
1323 return -EINVAL;
1324
1325 /* only handle each CPU group once */
Dave Jonesc9060492008-02-07 16:32:18 -05001326 if (unlikely(cpu_policy->cpu != cpu))
1327 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 if (cpufreq_driver->resume) {
1330 ret = cpufreq_driver->resume(cpu_policy);
1331 if (ret) {
1332 printk(KERN_ERR "cpufreq: resume failed in ->resume "
1333 "step on CPU %u\n", cpu_policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001334 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
1336 }
1337
1338 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1339 unsigned int cur_freq = 0;
1340
1341 if (cpufreq_driver->get)
1342 cur_freq = cpufreq_driver->get(cpu_policy->cpu);
1343
1344 if (!cur_freq || !cpu_policy->cur) {
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001345 printk(KERN_ERR "cpufreq: resume failed to assert "
1346 "current frequency is what timing core "
1347 "thinks it is.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 goto out;
1349 }
1350
1351 if (unlikely(cur_freq != cpu_policy->cur)) {
1352 struct cpufreq_freqs freqs;
1353
Benjamin Herrenschmidtac09f692005-05-02 16:25:10 +10001354 if (!(cpufreq_driver->flags & CPUFREQ_PM_NO_WARN))
Joe Perchesa4a9df52007-11-19 17:48:06 -08001355 dprintk("Warning: CPU frequency "
Benjamin Herrenschmidtac09f692005-05-02 16:25:10 +10001356 "is %u, cpufreq assumed %u kHz.\n",
1357 cur_freq, cpu_policy->cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 freqs.cpu = cpu;
1360 freqs.old = cpu_policy->cur;
1361 freqs.new = cur_freq;
1362
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001363 srcu_notifier_call_chain(
Alan Sterne041c682006-03-27 01:16:30 -08001364 &cpufreq_transition_notifier_list,
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001365 CPUFREQ_RESUMECHANGE, &freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 adjust_jiffies(CPUFREQ_RESUMECHANGE, &freqs);
1367
1368 cpu_policy->cur = cur_freq;
1369 }
1370 }
1371
1372out:
1373 schedule_work(&cpu_policy->update);
Dave Jonesc9060492008-02-07 16:32:18 -05001374fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 cpufreq_cpu_put(cpu_policy);
1376 return ret;
1377}
1378
1379static struct sysdev_driver cpufreq_sysdev_driver = {
1380 .add = cpufreq_add_dev,
1381 .remove = cpufreq_remove_dev,
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001382 .suspend = cpufreq_suspend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 .resume = cpufreq_resume,
1384};
1385
1386
1387/*********************************************************************
1388 * NOTIFIER LISTS INTERFACE *
1389 *********************************************************************/
1390
1391/**
1392 * cpufreq_register_notifier - register a driver with cpufreq
1393 * @nb: notifier function to register
1394 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1395 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001396 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 * are notified about clock rate changes (once before and once after
1398 * the transition), or a list of drivers that are notified about
1399 * changes in cpufreq policy.
1400 *
1401 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001402 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 */
1404int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1405{
1406 int ret;
1407
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001408 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 switch (list) {
1411 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001412 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001413 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 break;
1415 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001416 ret = blocking_notifier_chain_register(
1417 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 break;
1419 default:
1420 ret = -EINVAL;
1421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 return ret;
1424}
1425EXPORT_SYMBOL(cpufreq_register_notifier);
1426
1427
1428/**
1429 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1430 * @nb: notifier block to be unregistered
1431 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1432 *
1433 * Remove a driver from the CPU frequency notifier list.
1434 *
1435 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001436 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 */
1438int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1439{
1440 int ret;
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 switch (list) {
1443 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001444 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001445 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 break;
1447 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001448 ret = blocking_notifier_chain_unregister(
1449 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 break;
1451 default:
1452 ret = -EINVAL;
1453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 return ret;
1456}
1457EXPORT_SYMBOL(cpufreq_unregister_notifier);
1458
1459
1460/*********************************************************************
1461 * GOVERNORS *
1462 *********************************************************************/
1463
1464
1465int __cpufreq_driver_target(struct cpufreq_policy *policy,
1466 unsigned int target_freq,
1467 unsigned int relation)
1468{
1469 int retval = -EINVAL;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 dprintk("target for CPU %u: %u kHz, relation %u\n", policy->cpu,
1472 target_freq, relation);
1473 if (cpu_online(policy->cpu) && cpufreq_driver->target)
1474 retval = cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 return retval;
1477}
1478EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480int cpufreq_driver_target(struct cpufreq_policy *policy,
1481 unsigned int target_freq,
1482 unsigned int relation)
1483{
Julia Lawallf1829e42008-07-25 22:44:53 +02001484 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 policy = cpufreq_cpu_get(policy->cpu);
1487 if (!policy)
Julia Lawallf1829e42008-07-25 22:44:53 +02001488 goto no_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001490 if (unlikely(lock_policy_rwsem_write(policy->cpu)))
Julia Lawallf1829e42008-07-25 22:44:53 +02001491 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493 ret = __cpufreq_driver_target(policy, target_freq, relation);
1494
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001495 unlock_policy_rwsem_write(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Julia Lawallf1829e42008-07-25 22:44:53 +02001497fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 cpufreq_cpu_put(policy);
Julia Lawallf1829e42008-07-25 22:44:53 +02001499no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 return ret;
1501}
1502EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1503
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -07001504int __cpufreq_driver_getavg(struct cpufreq_policy *policy, unsigned int cpu)
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001505{
1506 int ret = 0;
1507
1508 policy = cpufreq_cpu_get(policy->cpu);
1509 if (!policy)
1510 return -EINVAL;
1511
venkatesh.pallipadi@intel.combf0b90e2008-08-04 11:59:07 -07001512 if (cpu_online(cpu) && cpufreq_driver->getavg)
1513 ret = cpufreq_driver->getavg(policy, cpu);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001514
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001515 cpufreq_cpu_put(policy);
1516 return ret;
1517}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001518EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg);
Venkatesh Pallipadidfde5d62006-10-03 12:38:45 -07001519
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001520/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001521 * when "event" is CPUFREQ_GOV_LIMITS
1522 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301524static int __cpufreq_governor(struct cpufreq_policy *policy,
1525 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
Dave Jonescc993ca2005-07-28 09:43:56 -07001527 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001528
1529 /* Only must be defined when default governor is known to have latency
1530 restrictions, like e.g. conservative or ondemand.
1531 That this is the case is already ensured in Kconfig
1532 */
1533#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1534 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1535#else
1536 struct cpufreq_governor *gov = NULL;
1537#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001538
1539 if (policy->governor->max_transition_latency &&
1540 policy->cpuinfo.transition_latency >
1541 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001542 if (!gov)
1543 return -EINVAL;
1544 else {
1545 printk(KERN_WARNING "%s governor failed, too long"
1546 " transition latency of HW, fallback"
1547 " to %s governor\n",
1548 policy->governor->name,
1549 gov->name);
1550 policy->governor = gov;
1551 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 if (!try_module_get(policy->governor->owner))
1555 return -EINVAL;
1556
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301557 dprintk("__cpufreq_governor for CPU %u, event %u\n",
1558 policy->cpu, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 ret = policy->governor->governor(policy, event);
1560
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301561 /* we keep one module reference alive for
1562 each CPU governed by this CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if ((event != CPUFREQ_GOV_START) || ret)
1564 module_put(policy->governor->owner);
1565 if ((event == CPUFREQ_GOV_STOP) && !ret)
1566 module_put(policy->governor->owner);
1567
1568 return ret;
1569}
1570
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572int cpufreq_register_governor(struct cpufreq_governor *governor)
1573{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001574 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 if (!governor)
1577 return -EINVAL;
1578
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001579 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001580
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001581 err = -EBUSY;
1582 if (__find_governor(governor->name) == NULL) {
1583 err = 0;
1584 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Dave Jones32ee8c32006-02-28 00:43:23 -05001587 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001588 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1591
1592
1593void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1594{
1595 if (!governor)
1596 return;
1597
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001598 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001600 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 return;
1602}
1603EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1604
1605
1606
1607/*********************************************************************
1608 * POLICY INTERFACE *
1609 *********************************************************************/
1610
1611/**
1612 * cpufreq_get_policy - get the current cpufreq_policy
1613 * @policy: struct cpufreq_policy into which the current cpufreq_policy is written
1614 *
1615 * Reads the current cpufreq policy.
1616 */
1617int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1618{
1619 struct cpufreq_policy *cpu_policy;
1620 if (!policy)
1621 return -EINVAL;
1622
1623 cpu_policy = cpufreq_cpu_get(cpu);
1624 if (!cpu_policy)
1625 return -EINVAL;
1626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 memcpy(policy, cpu_policy, sizeof(struct cpufreq_policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 return 0;
1631}
1632EXPORT_SYMBOL(cpufreq_get_policy);
1633
1634
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001635/*
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301636 * data : current policy.
1637 * policy : policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001638 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301639static int __cpufreq_set_policy(struct cpufreq_policy *data,
1640 struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
1642 int ret = 0;
1643
1644 cpufreq_debug_disable_ratelimit();
1645 dprintk("setting new policy for CPU %u: %u - %u kHz\n", policy->cpu,
1646 policy->min, policy->max);
1647
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301648 memcpy(&policy->cpuinfo, &data->cpuinfo,
1649 sizeof(struct cpufreq_cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Yi Yang53391fa2008-01-30 13:33:34 +01001651 if (policy->min > data->max || policy->max < data->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001652 ret = -EINVAL;
1653 goto error_out;
1654 }
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 /* verify the cpu speed can be set within this limit */
1657 ret = cpufreq_driver->verify(policy);
1658 if (ret)
1659 goto error_out;
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001662 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1663 CPUFREQ_ADJUST, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001666 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1667 CPUFREQ_INCOMPATIBLE, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669 /* verify the cpu speed can be set within this limit,
1670 which might be different to the first one */
1671 ret = cpufreq_driver->verify(policy);
Alan Sterne041c682006-03-27 01:16:30 -08001672 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001676 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1677 CPUFREQ_NOTIFY, policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Dave Jones7d5e3502006-02-02 17:03:42 -05001679 data->min = policy->min;
1680 data->max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301682 dprintk("new min and max freqs are %u - %u kHz\n",
1683 data->min, data->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 if (cpufreq_driver->setpolicy) {
1686 data->policy = policy->policy;
1687 dprintk("setting range\n");
1688 ret = cpufreq_driver->setpolicy(policy);
1689 } else {
1690 if (policy->governor != data->governor) {
1691 /* save old, working values */
1692 struct cpufreq_governor *old_gov = data->governor;
1693
1694 dprintk("governor switch\n");
1695
1696 /* end old governor */
1697 if (data->governor)
1698 __cpufreq_governor(data, CPUFREQ_GOV_STOP);
1699
1700 /* start new governor */
1701 data->governor = policy->governor;
1702 if (__cpufreq_governor(data, CPUFREQ_GOV_START)) {
1703 /* new governor failed, so re-start old one */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301704 dprintk("starting governor %s failed\n",
1705 data->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 if (old_gov) {
1707 data->governor = old_gov;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301708 __cpufreq_governor(data,
1709 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711 ret = -EINVAL;
1712 goto error_out;
1713 }
1714 /* might be a policy change, too, so fall through */
1715 }
1716 dprintk("governor: change or update limits\n");
1717 __cpufreq_governor(data, CPUFREQ_GOV_LIMITS);
1718 }
1719
Dave Jones7d5e3502006-02-02 17:03:42 -05001720error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 cpufreq_debug_enable_ratelimit();
1722 return ret;
1723}
1724
1725/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1727 * @cpu: CPU which shall be re-evaluated
1728 *
1729 * Usefull for policy notifiers which have different necessities
1730 * at different times.
1731 */
1732int cpufreq_update_policy(unsigned int cpu)
1733{
1734 struct cpufreq_policy *data = cpufreq_cpu_get(cpu);
1735 struct cpufreq_policy policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02001736 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Julia Lawallf1829e42008-07-25 22:44:53 +02001738 if (!data) {
1739 ret = -ENODEV;
1740 goto no_policy;
1741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Julia Lawallf1829e42008-07-25 22:44:53 +02001743 if (unlikely(lock_policy_rwsem_write(cpu))) {
1744 ret = -EINVAL;
1745 goto fail;
1746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 dprintk("updating policy for CPU %u\n", cpu);
Dave Jones7d5e3502006-02-02 17:03:42 -05001749 memcpy(&policy, data, sizeof(struct cpufreq_policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 policy.min = data->user_policy.min;
1751 policy.max = data->user_policy.max;
1752 policy.policy = data->user_policy.policy;
1753 policy.governor = data->user_policy.governor;
1754
Thomas Renninger0961dd02006-01-26 18:46:33 +01001755 /* BIOS might change freq behind our back
1756 -> ask driver for current freq and notify governors about a change */
1757 if (cpufreq_driver->get) {
1758 policy.cur = cpufreq_driver->get(cpu);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001759 if (!data->cur) {
1760 dprintk("Driver did not initialize current freq");
1761 data->cur = policy.cur;
1762 } else {
1763 if (data->cur != policy.cur)
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301764 cpufreq_out_of_sync(cpu, data->cur,
1765 policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001766 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01001767 }
1768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 ret = __cpufreq_set_policy(data, &policy);
1770
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001771 unlock_policy_rwsem_write(cpu);
1772
Julia Lawallf1829e42008-07-25 22:44:53 +02001773fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 cpufreq_cpu_put(data);
Julia Lawallf1829e42008-07-25 22:44:53 +02001775no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 return ret;
1777}
1778EXPORT_SYMBOL(cpufreq_update_policy);
1779
Satyam Sharmadd184a02007-10-02 13:28:14 -07001780static int __cpuinit cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08001781 unsigned long action, void *hcpu)
1782{
1783 unsigned int cpu = (unsigned long)hcpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001784 struct sys_device *sys_dev;
1785
1786 sys_dev = get_cpu_sysdev(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001787 if (sys_dev) {
1788 switch (action) {
1789 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001790 case CPU_ONLINE_FROZEN:
Ashok Rajc32b6b82005-10-30 14:59:54 -08001791 cpufreq_add_dev(sys_dev);
1792 break;
1793 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001794 case CPU_DOWN_PREPARE_FROZEN:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001795 if (unlikely(lock_policy_rwsem_write(cpu)))
1796 BUG();
1797
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001798 __cpufreq_remove_dev(sys_dev);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001799 break;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001800 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001801 case CPU_DOWN_FAILED_FROZEN:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001802 cpufreq_add_dev(sys_dev);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001803 break;
1804 }
1805 }
1806 return NOTIFY_OK;
1807}
1808
Sam Ravnborgf6ebef32008-02-17 13:22:52 +01001809static struct notifier_block __refdata cpufreq_cpu_notifier =
Ashok Rajc32b6b82005-10-30 14:59:54 -08001810{
1811 .notifier_call = cpufreq_cpu_callback,
1812};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814/*********************************************************************
1815 * REGISTER / UNREGISTER CPUFREQ DRIVER *
1816 *********************************************************************/
1817
1818/**
1819 * cpufreq_register_driver - register a CPU Frequency driver
1820 * @driver_data: A struct cpufreq_driver containing the values#
1821 * submitted by the CPU Frequency driver.
1822 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001823 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05001825 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 *
1827 */
Linus Torvalds221dee22007-02-26 14:55:48 -08001828int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
1830 unsigned long flags;
1831 int ret;
1832
1833 if (!driver_data || !driver_data->verify || !driver_data->init ||
1834 ((!driver_data->setpolicy) && (!driver_data->target)))
1835 return -EINVAL;
1836
1837 dprintk("trying to register driver %s\n", driver_data->name);
1838
1839 if (driver_data->setpolicy)
1840 driver_data->flags |= CPUFREQ_CONST_LOOPS;
1841
1842 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1843 if (cpufreq_driver) {
1844 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1845 return -EBUSY;
1846 }
1847 cpufreq_driver = driver_data;
1848 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1849
Mike Travis7a6aedf2008-03-25 15:06:53 -07001850 ret = sysdev_driver_register(&cpu_sysdev_class,
1851 &cpufreq_sysdev_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
1853 if ((!ret) && !(cpufreq_driver->flags & CPUFREQ_STICKY)) {
1854 int i;
1855 ret = -ENODEV;
1856
1857 /* check for at least one working CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -07001858 for (i = 0; i < nr_cpu_ids; i++)
1859 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 ret = 0;
Mike Travis7a6aedf2008-03-25 15:06:53 -07001861 break;
1862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 /* if all ->init() calls failed, unregister */
1865 if (ret) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301866 dprintk("no CPU initialized for driver %s\n",
1867 driver_data->name);
1868 sysdev_driver_unregister(&cpu_sysdev_class,
1869 &cpufreq_sysdev_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
1871 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1872 cpufreq_driver = NULL;
1873 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1874 }
1875 }
1876
1877 if (!ret) {
Chandra Seetharaman65edc682006-06-27 02:54:08 -07001878 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 dprintk("driver %s up and running\n", driver_data->name);
1880 cpufreq_debug_enable_ratelimit();
1881 }
1882
Dave Jones4d34a672008-02-07 16:33:49 -05001883 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884}
1885EXPORT_SYMBOL_GPL(cpufreq_register_driver);
1886
1887
1888/**
1889 * cpufreq_unregister_driver - unregister the current CPUFreq driver
1890 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001891 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 * the right to do so, i.e. if you have succeeded in initialising before!
1893 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
1894 * currently not initialised.
1895 */
Linus Torvalds221dee22007-02-26 14:55:48 -08001896int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
1898 unsigned long flags;
1899
1900 cpufreq_debug_disable_ratelimit();
1901
1902 if (!cpufreq_driver || (driver != cpufreq_driver)) {
1903 cpufreq_debug_enable_ratelimit();
1904 return -EINVAL;
1905 }
1906
1907 dprintk("unregistering driver %s\n", driver->name);
1908
1909 sysdev_driver_unregister(&cpu_sysdev_class, &cpufreq_sysdev_driver);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07001910 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 spin_lock_irqsave(&cpufreq_driver_lock, flags);
1913 cpufreq_driver = NULL;
1914 spin_unlock_irqrestore(&cpufreq_driver_lock, flags);
1915
1916 return 0;
1917}
1918EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001919
1920static int __init cpufreq_core_init(void)
1921{
1922 int cpu;
1923
1924 for_each_possible_cpu(cpu) {
1925 per_cpu(policy_cpu, cpu) = -1;
1926 init_rwsem(&per_cpu(cpu_policy_rwsem, cpu));
1927 }
1928 return 0;
1929}
1930
1931core_initcall(cpufreq_core_init);