]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/drivers/cpufreq/cpufreq.c | |
3 | * | |
4 | * Copyright (C) 2001 Russell King | |
5 | * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de> | |
6 | * | |
c32b6b8e | 7 | * Oct 2005 - Ashok Raj <ashok.raj@intel.com> |
32ee8c3e | 8 | * Added handling for CPU hotplug |
8ff69732 DJ |
9 | * Feb 2006 - Jacob Shin <jacob.shin@amd.com> |
10 | * Fix handling for CPU hotplug -- affected CPUs | |
c32b6b8e | 11 | * |
1da177e4 LT |
12 | * 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 | ||
1da177e4 LT |
18 | #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> | |
3fc54d37 | 30 | #include <linux/mutex.h> |
1da177e4 | 31 | |
e08f5f5b GS |
32 | #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_CORE, \ |
33 | "cpufreq-core", msg) | |
1da177e4 LT |
34 | |
35 | /** | |
cd878479 | 36 | * The "cpufreq driver" - the arch- or hardware-dependent low |
1da177e4 LT |
37 | * level driver of CPUFreq support, and its spinlock. This lock |
38 | * also protects the cpufreq_cpu_data array. | |
39 | */ | |
7d5e350f | 40 | static struct cpufreq_driver *cpufreq_driver; |
7a6aedfa | 41 | static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data); |
084f3493 TR |
42 | #ifdef CONFIG_HOTPLUG_CPU |
43 | /* This one keeps track of the previously set governor of a removed CPU */ | |
e77b89f1 | 44 | static DEFINE_PER_CPU(char[CPUFREQ_NAME_LEN], cpufreq_cpu_governor); |
084f3493 | 45 | #endif |
1da177e4 LT |
46 | static DEFINE_SPINLOCK(cpufreq_driver_lock); |
47 | ||
5a01f2e8 VP |
48 | /* |
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. | |
395913d0 MD |
64 | * - Lock should not be held across |
65 | * __cpufreq_governor(data, CPUFREQ_GOV_STOP); | |
5a01f2e8 | 66 | */ |
f1625066 | 67 | static DEFINE_PER_CPU(int, cpufreq_policy_cpu); |
5a01f2e8 VP |
68 | static DEFINE_PER_CPU(struct rw_semaphore, cpu_policy_rwsem); |
69 | ||
70 | #define lock_policy_rwsem(mode, cpu) \ | |
71 | int lock_policy_rwsem_##mode \ | |
72 | (int cpu) \ | |
73 | { \ | |
f1625066 | 74 | int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu); \ |
5a01f2e8 VP |
75 | BUG_ON(policy_cpu == -1); \ |
76 | down_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \ | |
77 | if (unlikely(!cpu_online(cpu))) { \ | |
78 | up_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \ | |
79 | return -1; \ | |
80 | } \ | |
81 | \ | |
82 | return 0; \ | |
83 | } | |
84 | ||
85 | lock_policy_rwsem(read, cpu); | |
86 | EXPORT_SYMBOL_GPL(lock_policy_rwsem_read); | |
87 | ||
88 | lock_policy_rwsem(write, cpu); | |
89 | EXPORT_SYMBOL_GPL(lock_policy_rwsem_write); | |
90 | ||
91 | void unlock_policy_rwsem_read(int cpu) | |
92 | { | |
f1625066 | 93 | int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu); |
5a01f2e8 VP |
94 | BUG_ON(policy_cpu == -1); |
95 | up_read(&per_cpu(cpu_policy_rwsem, policy_cpu)); | |
96 | } | |
97 | EXPORT_SYMBOL_GPL(unlock_policy_rwsem_read); | |
98 | ||
99 | void unlock_policy_rwsem_write(int cpu) | |
100 | { | |
f1625066 | 101 | int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu); |
5a01f2e8 VP |
102 | BUG_ON(policy_cpu == -1); |
103 | up_write(&per_cpu(cpu_policy_rwsem, policy_cpu)); | |
104 | } | |
105 | EXPORT_SYMBOL_GPL(unlock_policy_rwsem_write); | |
106 | ||
107 | ||
1da177e4 | 108 | /* internal prototypes */ |
29464f28 DJ |
109 | static int __cpufreq_governor(struct cpufreq_policy *policy, |
110 | unsigned int event); | |
5a01f2e8 | 111 | static unsigned int __cpufreq_get(unsigned int cpu); |
65f27f38 | 112 | static void handle_update(struct work_struct *work); |
1da177e4 LT |
113 | |
114 | /** | |
32ee8c3e DJ |
115 | * Two notifier lists: the "policy" list is involved in the |
116 | * validation process for a new CPU frequency policy; the | |
1da177e4 LT |
117 | * "transition" list for kernel code that needs to handle |
118 | * changes to devices when the CPU clock speed changes. | |
119 | * The mutex locks both lists. | |
120 | */ | |
e041c683 | 121 | static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list); |
b4dfdbb3 | 122 | static struct srcu_notifier_head cpufreq_transition_notifier_list; |
1da177e4 | 123 | |
74212ca4 | 124 | static bool init_cpufreq_transition_notifier_list_called; |
b4dfdbb3 AS |
125 | static int __init init_cpufreq_transition_notifier_list(void) |
126 | { | |
127 | srcu_init_notifier_head(&cpufreq_transition_notifier_list); | |
74212ca4 | 128 | init_cpufreq_transition_notifier_list_called = true; |
b4dfdbb3 AS |
129 | return 0; |
130 | } | |
b3438f82 | 131 | pure_initcall(init_cpufreq_transition_notifier_list); |
1da177e4 LT |
132 | |
133 | static LIST_HEAD(cpufreq_governor_list); | |
29464f28 | 134 | static DEFINE_MUTEX(cpufreq_governor_mutex); |
1da177e4 | 135 | |
7d5e350f | 136 | struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu) |
1da177e4 LT |
137 | { |
138 | struct cpufreq_policy *data; | |
139 | unsigned long flags; | |
140 | ||
7a6aedfa | 141 | if (cpu >= nr_cpu_ids) |
1da177e4 LT |
142 | goto err_out; |
143 | ||
144 | /* get the cpufreq driver */ | |
145 | spin_lock_irqsave(&cpufreq_driver_lock, flags); | |
146 | ||
147 | if (!cpufreq_driver) | |
148 | goto err_out_unlock; | |
149 | ||
150 | if (!try_module_get(cpufreq_driver->owner)) | |
151 | goto err_out_unlock; | |
152 | ||
153 | ||
154 | /* get the CPU */ | |
7a6aedfa | 155 | data = per_cpu(cpufreq_cpu_data, cpu); |
1da177e4 LT |
156 | |
157 | if (!data) | |
158 | goto err_out_put_module; | |
159 | ||
160 | if (!kobject_get(&data->kobj)) | |
161 | goto err_out_put_module; | |
162 | ||
1da177e4 | 163 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
1da177e4 LT |
164 | return data; |
165 | ||
7d5e350f | 166 | err_out_put_module: |
1da177e4 | 167 | module_put(cpufreq_driver->owner); |
7d5e350f | 168 | err_out_unlock: |
1da177e4 | 169 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
7d5e350f | 170 | err_out: |
1da177e4 LT |
171 | return NULL; |
172 | } | |
173 | EXPORT_SYMBOL_GPL(cpufreq_cpu_get); | |
174 | ||
7d5e350f | 175 | |
1da177e4 LT |
176 | void cpufreq_cpu_put(struct cpufreq_policy *data) |
177 | { | |
178 | kobject_put(&data->kobj); | |
179 | module_put(cpufreq_driver->owner); | |
180 | } | |
181 | EXPORT_SYMBOL_GPL(cpufreq_cpu_put); | |
182 | ||
183 | ||
184 | /********************************************************************* | |
185 | * UNIFIED DEBUG HELPERS * | |
186 | *********************************************************************/ | |
187 | #ifdef CONFIG_CPU_FREQ_DEBUG | |
188 | ||
189 | /* what part(s) of the CPUfreq subsystem are debugged? */ | |
190 | static unsigned int debug; | |
191 | ||
192 | /* is the debug output ratelimit'ed using printk_ratelimit? User can | |
193 | * set or modify this value. | |
194 | */ | |
195 | static unsigned int debug_ratelimit = 1; | |
196 | ||
197 | /* is the printk_ratelimit'ing enabled? It's enabled after a successful | |
198 | * loading of a cpufreq driver, temporarily disabled when a new policy | |
199 | * is set, and disabled upon cpufreq driver removal | |
200 | */ | |
201 | static unsigned int disable_ratelimit = 1; | |
202 | static DEFINE_SPINLOCK(disable_ratelimit_lock); | |
203 | ||
858119e1 | 204 | static void cpufreq_debug_enable_ratelimit(void) |
1da177e4 LT |
205 | { |
206 | unsigned long flags; | |
207 | ||
208 | spin_lock_irqsave(&disable_ratelimit_lock, flags); | |
209 | if (disable_ratelimit) | |
210 | disable_ratelimit--; | |
211 | spin_unlock_irqrestore(&disable_ratelimit_lock, flags); | |
212 | } | |
213 | ||
858119e1 | 214 | static void cpufreq_debug_disable_ratelimit(void) |
1da177e4 LT |
215 | { |
216 | unsigned long flags; | |
217 | ||
218 | spin_lock_irqsave(&disable_ratelimit_lock, flags); | |
219 | disable_ratelimit++; | |
220 | spin_unlock_irqrestore(&disable_ratelimit_lock, flags); | |
221 | } | |
222 | ||
e08f5f5b | 223 | void cpufreq_debug_printk(unsigned int type, const char *prefix, |
905d77cd | 224 | const char *fmt, ...) |
1da177e4 LT |
225 | { |
226 | char s[256]; | |
227 | va_list args; | |
228 | unsigned int len; | |
229 | unsigned long flags; | |
32ee8c3e | 230 | |
1da177e4 LT |
231 | WARN_ON(!prefix); |
232 | if (type & debug) { | |
233 | spin_lock_irqsave(&disable_ratelimit_lock, flags); | |
e08f5f5b GS |
234 | if (!disable_ratelimit && debug_ratelimit |
235 | && !printk_ratelimit()) { | |
1da177e4 LT |
236 | spin_unlock_irqrestore(&disable_ratelimit_lock, flags); |
237 | return; | |
238 | } | |
239 | spin_unlock_irqrestore(&disable_ratelimit_lock, flags); | |
240 | ||
241 | len = snprintf(s, 256, KERN_DEBUG "%s: ", prefix); | |
242 | ||
243 | va_start(args, fmt); | |
244 | len += vsnprintf(&s[len], (256 - len), fmt, args); | |
245 | va_end(args); | |
246 | ||
247 | printk(s); | |
248 | ||
249 | WARN_ON(len < 5); | |
250 | } | |
251 | } | |
252 | EXPORT_SYMBOL(cpufreq_debug_printk); | |
253 | ||
254 | ||
255 | module_param(debug, uint, 0644); | |
e08f5f5b GS |
256 | MODULE_PARM_DESC(debug, "CPUfreq debugging: add 1 to debug core," |
257 | " 2 to debug drivers, and 4 to debug governors."); | |
1da177e4 LT |
258 | |
259 | module_param(debug_ratelimit, uint, 0644); | |
e08f5f5b GS |
260 | MODULE_PARM_DESC(debug_ratelimit, "CPUfreq debugging:" |
261 | " set to 0 to disable ratelimiting."); | |
1da177e4 LT |
262 | |
263 | #else /* !CONFIG_CPU_FREQ_DEBUG */ | |
264 | ||
265 | static inline void cpufreq_debug_enable_ratelimit(void) { return; } | |
266 | static inline void cpufreq_debug_disable_ratelimit(void) { return; } | |
267 | ||
268 | #endif /* CONFIG_CPU_FREQ_DEBUG */ | |
269 | ||
270 | ||
271 | /********************************************************************* | |
272 | * EXTERNALLY AFFECTING FREQUENCY CHANGES * | |
273 | *********************************************************************/ | |
274 | ||
275 | /** | |
276 | * adjust_jiffies - adjust the system "loops_per_jiffy" | |
277 | * | |
278 | * This function alters the system "loops_per_jiffy" for the clock | |
279 | * speed change. Note that loops_per_jiffy cannot be updated on SMP | |
32ee8c3e | 280 | * systems as each CPU might be scaled differently. So, use the arch |
1da177e4 LT |
281 | * per-CPU loops_per_jiffy value wherever possible. |
282 | */ | |
283 | #ifndef CONFIG_SMP | |
284 | static unsigned long l_p_j_ref; | |
285 | static unsigned int l_p_j_ref_freq; | |
286 | ||
858119e1 | 287 | static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci) |
1da177e4 LT |
288 | { |
289 | if (ci->flags & CPUFREQ_CONST_LOOPS) | |
290 | return; | |
291 | ||
292 | if (!l_p_j_ref_freq) { | |
293 | l_p_j_ref = loops_per_jiffy; | |
294 | l_p_j_ref_freq = ci->old; | |
a4a9df58 | 295 | dprintk("saving %lu as reference value for loops_per_jiffy; " |
e08f5f5b | 296 | "freq is %u kHz\n", l_p_j_ref, l_p_j_ref_freq); |
1da177e4 LT |
297 | } |
298 | if ((val == CPUFREQ_PRECHANGE && ci->old < ci->new) || | |
299 | (val == CPUFREQ_POSTCHANGE && ci->old > ci->new) || | |
42d4dc3f | 300 | (val == CPUFREQ_RESUMECHANGE || val == CPUFREQ_SUSPENDCHANGE)) { |
e08f5f5b GS |
301 | loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq, |
302 | ci->new); | |
a4a9df58 | 303 | dprintk("scaling loops_per_jiffy to %lu " |
e08f5f5b | 304 | "for frequency %u kHz\n", loops_per_jiffy, ci->new); |
1da177e4 LT |
305 | } |
306 | } | |
307 | #else | |
e08f5f5b GS |
308 | static inline void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci) |
309 | { | |
310 | return; | |
311 | } | |
1da177e4 LT |
312 | #endif |
313 | ||
314 | ||
315 | /** | |
e4472cb3 DJ |
316 | * cpufreq_notify_transition - call notifier chain and adjust_jiffies |
317 | * on frequency transition. | |
1da177e4 | 318 | * |
e4472cb3 DJ |
319 | * This function calls the transition notifiers and the "adjust_jiffies" |
320 | * function. It is called twice on all CPU frequency changes that have | |
32ee8c3e | 321 | * external effects. |
1da177e4 LT |
322 | */ |
323 | void cpufreq_notify_transition(struct cpufreq_freqs *freqs, unsigned int state) | |
324 | { | |
e4472cb3 DJ |
325 | struct cpufreq_policy *policy; |
326 | ||
1da177e4 LT |
327 | BUG_ON(irqs_disabled()); |
328 | ||
329 | freqs->flags = cpufreq_driver->flags; | |
e4472cb3 DJ |
330 | dprintk("notification %u of frequency transition to %u kHz\n", |
331 | state, freqs->new); | |
1da177e4 | 332 | |
7a6aedfa | 333 | policy = per_cpu(cpufreq_cpu_data, freqs->cpu); |
1da177e4 | 334 | switch (state) { |
e4472cb3 | 335 | |
1da177e4 | 336 | case CPUFREQ_PRECHANGE: |
32ee8c3e | 337 | /* detect if the driver reported a value as "old frequency" |
e4472cb3 DJ |
338 | * which is not equal to what the cpufreq core thinks is |
339 | * "old frequency". | |
1da177e4 LT |
340 | */ |
341 | if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) { | |
e4472cb3 DJ |
342 | if ((policy) && (policy->cpu == freqs->cpu) && |
343 | (policy->cur) && (policy->cur != freqs->old)) { | |
b10eec22 | 344 | dprintk("Warning: CPU frequency is" |
e4472cb3 DJ |
345 | " %u, cpufreq assumed %u kHz.\n", |
346 | freqs->old, policy->cur); | |
347 | freqs->old = policy->cur; | |
1da177e4 LT |
348 | } |
349 | } | |
b4dfdbb3 | 350 | srcu_notifier_call_chain(&cpufreq_transition_notifier_list, |
e041c683 | 351 | CPUFREQ_PRECHANGE, freqs); |
1da177e4 LT |
352 | adjust_jiffies(CPUFREQ_PRECHANGE, freqs); |
353 | break; | |
e4472cb3 | 354 | |
1da177e4 LT |
355 | case CPUFREQ_POSTCHANGE: |
356 | adjust_jiffies(CPUFREQ_POSTCHANGE, freqs); | |
b4dfdbb3 | 357 | srcu_notifier_call_chain(&cpufreq_transition_notifier_list, |
e041c683 | 358 | CPUFREQ_POSTCHANGE, freqs); |
e4472cb3 DJ |
359 | if (likely(policy) && likely(policy->cpu == freqs->cpu)) |
360 | policy->cur = freqs->new; | |
1da177e4 LT |
361 | break; |
362 | } | |
1da177e4 LT |
363 | } |
364 | EXPORT_SYMBOL_GPL(cpufreq_notify_transition); | |
365 | ||
366 | ||
367 | ||
368 | /********************************************************************* | |
369 | * SYSFS INTERFACE * | |
370 | *********************************************************************/ | |
371 | ||
3bcb09a3 JF |
372 | static struct cpufreq_governor *__find_governor(const char *str_governor) |
373 | { | |
374 | struct cpufreq_governor *t; | |
375 | ||
376 | list_for_each_entry(t, &cpufreq_governor_list, governor_list) | |
29464f28 | 377 | if (!strnicmp(str_governor, t->name, CPUFREQ_NAME_LEN)) |
3bcb09a3 JF |
378 | return t; |
379 | ||
380 | return NULL; | |
381 | } | |
382 | ||
1da177e4 LT |
383 | /** |
384 | * cpufreq_parse_governor - parse a governor string | |
385 | */ | |
905d77cd | 386 | static int cpufreq_parse_governor(char *str_governor, unsigned int *policy, |
1da177e4 LT |
387 | struct cpufreq_governor **governor) |
388 | { | |
3bcb09a3 JF |
389 | int err = -EINVAL; |
390 | ||
1da177e4 | 391 | if (!cpufreq_driver) |
3bcb09a3 JF |
392 | goto out; |
393 | ||
1da177e4 LT |
394 | if (cpufreq_driver->setpolicy) { |
395 | if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) { | |
396 | *policy = CPUFREQ_POLICY_PERFORMANCE; | |
3bcb09a3 | 397 | err = 0; |
e08f5f5b GS |
398 | } else if (!strnicmp(str_governor, "powersave", |
399 | CPUFREQ_NAME_LEN)) { | |
1da177e4 | 400 | *policy = CPUFREQ_POLICY_POWERSAVE; |
3bcb09a3 | 401 | err = 0; |
1da177e4 | 402 | } |
3bcb09a3 | 403 | } else if (cpufreq_driver->target) { |
1da177e4 | 404 | struct cpufreq_governor *t; |
3bcb09a3 | 405 | |
3fc54d37 | 406 | mutex_lock(&cpufreq_governor_mutex); |
3bcb09a3 JF |
407 | |
408 | t = __find_governor(str_governor); | |
409 | ||
ea714970 | 410 | if (t == NULL) { |
e08f5f5b GS |
411 | char *name = kasprintf(GFP_KERNEL, "cpufreq_%s", |
412 | str_governor); | |
ea714970 JF |
413 | |
414 | if (name) { | |
415 | int ret; | |
416 | ||
417 | mutex_unlock(&cpufreq_governor_mutex); | |
326f6a5c | 418 | ret = request_module("%s", name); |
ea714970 JF |
419 | mutex_lock(&cpufreq_governor_mutex); |
420 | ||
421 | if (ret == 0) | |
422 | t = __find_governor(str_governor); | |
423 | } | |
424 | ||
425 | kfree(name); | |
426 | } | |
427 | ||
3bcb09a3 JF |
428 | if (t != NULL) { |
429 | *governor = t; | |
430 | err = 0; | |
1da177e4 | 431 | } |
3bcb09a3 | 432 | |
3fc54d37 | 433 | mutex_unlock(&cpufreq_governor_mutex); |
1da177e4 | 434 | } |
29464f28 | 435 | out: |
3bcb09a3 | 436 | return err; |
1da177e4 | 437 | } |
1da177e4 LT |
438 | |
439 | ||
1da177e4 | 440 | /** |
e08f5f5b GS |
441 | * cpufreq_per_cpu_attr_read() / show_##file_name() - |
442 | * print out cpufreq information | |
1da177e4 LT |
443 | * |
444 | * Write out information from cpufreq_driver->policy[cpu]; object must be | |
445 | * "unsigned int". | |
446 | */ | |
447 | ||
32ee8c3e DJ |
448 | #define show_one(file_name, object) \ |
449 | static ssize_t show_##file_name \ | |
905d77cd | 450 | (struct cpufreq_policy *policy, char *buf) \ |
32ee8c3e | 451 | { \ |
29464f28 | 452 | return sprintf(buf, "%u\n", policy->object); \ |
1da177e4 LT |
453 | } |
454 | ||
455 | show_one(cpuinfo_min_freq, cpuinfo.min_freq); | |
456 | show_one(cpuinfo_max_freq, cpuinfo.max_freq); | |
ed129784 | 457 | show_one(cpuinfo_transition_latency, cpuinfo.transition_latency); |
1da177e4 LT |
458 | show_one(scaling_min_freq, min); |
459 | show_one(scaling_max_freq, max); | |
460 | show_one(scaling_cur_freq, cur); | |
461 | ||
e08f5f5b GS |
462 | static int __cpufreq_set_policy(struct cpufreq_policy *data, |
463 | struct cpufreq_policy *policy); | |
7970e08b | 464 | |
1da177e4 LT |
465 | /** |
466 | * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access | |
467 | */ | |
468 | #define store_one(file_name, object) \ | |
469 | static ssize_t store_##file_name \ | |
905d77cd | 470 | (struct cpufreq_policy *policy, const char *buf, size_t count) \ |
1da177e4 LT |
471 | { \ |
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 | \ | |
29464f28 | 479 | ret = sscanf(buf, "%u", &new_policy.object); \ |
1da177e4 LT |
480 | if (ret != 1) \ |
481 | return -EINVAL; \ | |
482 | \ | |
7970e08b TR |
483 | ret = __cpufreq_set_policy(policy, &new_policy); \ |
484 | policy->user_policy.object = policy->object; \ | |
1da177e4 LT |
485 | \ |
486 | return ret ? ret : count; \ | |
487 | } | |
488 | ||
29464f28 DJ |
489 | store_one(scaling_min_freq, min); |
490 | store_one(scaling_max_freq, max); | |
1da177e4 LT |
491 | |
492 | /** | |
493 | * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware | |
494 | */ | |
905d77cd DJ |
495 | static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy, |
496 | char *buf) | |
1da177e4 | 497 | { |
5a01f2e8 | 498 | unsigned int cur_freq = __cpufreq_get(policy->cpu); |
1da177e4 LT |
499 | 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 | */ | |
905d77cd | 508 | static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf) |
1da177e4 | 509 | { |
29464f28 | 510 | if (policy->policy == CPUFREQ_POLICY_POWERSAVE) |
1da177e4 LT |
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) | |
29464f28 DJ |
515 | return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", |
516 | policy->governor->name); | |
1da177e4 LT |
517 | return -EINVAL; |
518 | } | |
519 | ||
520 | ||
521 | /** | |
522 | * store_scaling_governor - store policy for the specified CPU | |
523 | */ | |
905d77cd DJ |
524 | static ssize_t store_scaling_governor(struct cpufreq_policy *policy, |
525 | const char *buf, size_t count) | |
1da177e4 LT |
526 | { |
527 | unsigned int ret = -EINVAL; | |
528 | char str_governor[16]; | |
529 | struct cpufreq_policy new_policy; | |
530 | ||
531 | ret = cpufreq_get_policy(&new_policy, policy->cpu); | |
532 | if (ret) | |
533 | return ret; | |
534 | ||
29464f28 | 535 | ret = sscanf(buf, "%15s", str_governor); |
1da177e4 LT |
536 | if (ret != 1) |
537 | return -EINVAL; | |
538 | ||
e08f5f5b GS |
539 | if (cpufreq_parse_governor(str_governor, &new_policy.policy, |
540 | &new_policy.governor)) | |
1da177e4 LT |
541 | return -EINVAL; |
542 | ||
7970e08b TR |
543 | /* Do not use cpufreq_set_policy here or the user_policy.max |
544 | will be wrongly overridden */ | |
7970e08b TR |
545 | ret = __cpufreq_set_policy(policy, &new_policy); |
546 | ||
547 | policy->user_policy.policy = policy->policy; | |
548 | policy->user_policy.governor = policy->governor; | |
7970e08b | 549 | |
e08f5f5b GS |
550 | if (ret) |
551 | return ret; | |
552 | else | |
553 | return count; | |
1da177e4 LT |
554 | } |
555 | ||
556 | /** | |
557 | * show_scaling_driver - show the cpufreq driver currently loaded | |
558 | */ | |
905d77cd | 559 | static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf) |
1da177e4 LT |
560 | { |
561 | return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", cpufreq_driver->name); | |
562 | } | |
563 | ||
564 | /** | |
565 | * show_scaling_available_governors - show the available CPUfreq governors | |
566 | */ | |
905d77cd DJ |
567 | static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy, |
568 | char *buf) | |
1da177e4 LT |
569 | { |
570 | ssize_t i = 0; | |
571 | struct cpufreq_governor *t; | |
572 | ||
573 | if (!cpufreq_driver->target) { | |
574 | i += sprintf(buf, "performance powersave"); | |
575 | goto out; | |
576 | } | |
577 | ||
578 | list_for_each_entry(t, &cpufreq_governor_list, governor_list) { | |
29464f28 DJ |
579 | if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char)) |
580 | - (CPUFREQ_NAME_LEN + 2))) | |
1da177e4 LT |
581 | goto out; |
582 | i += scnprintf(&buf[i], CPUFREQ_NAME_LEN, "%s ", t->name); | |
583 | } | |
7d5e350f | 584 | out: |
1da177e4 LT |
585 | i += sprintf(&buf[i], "\n"); |
586 | return i; | |
587 | } | |
e8628dd0 | 588 | |
835481d9 | 589 | static ssize_t show_cpus(const struct cpumask *mask, char *buf) |
1da177e4 LT |
590 | { |
591 | ssize_t i = 0; | |
592 | unsigned int cpu; | |
593 | ||
835481d9 | 594 | for_each_cpu(cpu, mask) { |
1da177e4 LT |
595 | if (i) |
596 | i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " "); | |
597 | i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu); | |
598 | if (i >= (PAGE_SIZE - 5)) | |
29464f28 | 599 | break; |
1da177e4 LT |
600 | } |
601 | i += sprintf(&buf[i], "\n"); | |
602 | return i; | |
603 | } | |
604 | ||
e8628dd0 DW |
605 | /** |
606 | * show_related_cpus - show the CPUs affected by each transition even if | |
607 | * hw coordination is in use | |
608 | */ | |
609 | static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf) | |
610 | { | |
835481d9 | 611 | if (cpumask_empty(policy->related_cpus)) |
e8628dd0 DW |
612 | return show_cpus(policy->cpus, buf); |
613 | return show_cpus(policy->related_cpus, buf); | |
614 | } | |
615 | ||
616 | /** | |
617 | * show_affected_cpus - show the CPUs affected by each transition | |
618 | */ | |
619 | static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf) | |
620 | { | |
621 | return show_cpus(policy->cpus, buf); | |
622 | } | |
623 | ||
9e76988e | 624 | static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy, |
905d77cd | 625 | const char *buf, size_t count) |
9e76988e VP |
626 | { |
627 | unsigned int freq = 0; | |
628 | unsigned int ret; | |
629 | ||
879000f9 | 630 | if (!policy->governor || !policy->governor->store_setspeed) |
9e76988e VP |
631 | return -EINVAL; |
632 | ||
633 | ret = sscanf(buf, "%u", &freq); | |
634 | if (ret != 1) | |
635 | return -EINVAL; | |
636 | ||
637 | policy->governor->store_setspeed(policy, freq); | |
638 | ||
639 | return count; | |
640 | } | |
641 | ||
642 | static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf) | |
643 | { | |
879000f9 | 644 | if (!policy->governor || !policy->governor->show_setspeed) |
9e76988e VP |
645 | return sprintf(buf, "<unsupported>\n"); |
646 | ||
647 | return policy->governor->show_setspeed(policy, buf); | |
648 | } | |
1da177e4 | 649 | |
e2f74f35 TR |
650 | /** |
651 | * show_scaling_driver - show the current cpufreq HW/BIOS limitation | |
652 | */ | |
653 | static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf) | |
654 | { | |
655 | unsigned int limit; | |
656 | int ret; | |
657 | if (cpufreq_driver->bios_limit) { | |
658 | ret = cpufreq_driver->bios_limit(policy->cpu, &limit); | |
659 | if (!ret) | |
660 | return sprintf(buf, "%u\n", limit); | |
661 | } | |
662 | return sprintf(buf, "%u\n", policy->cpuinfo.max_freq); | |
663 | } | |
664 | ||
6dad2a29 BP |
665 | cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400); |
666 | cpufreq_freq_attr_ro(cpuinfo_min_freq); | |
667 | cpufreq_freq_attr_ro(cpuinfo_max_freq); | |
668 | cpufreq_freq_attr_ro(cpuinfo_transition_latency); | |
669 | cpufreq_freq_attr_ro(scaling_available_governors); | |
670 | cpufreq_freq_attr_ro(scaling_driver); | |
671 | cpufreq_freq_attr_ro(scaling_cur_freq); | |
672 | cpufreq_freq_attr_ro(bios_limit); | |
673 | cpufreq_freq_attr_ro(related_cpus); | |
674 | cpufreq_freq_attr_ro(affected_cpus); | |
675 | cpufreq_freq_attr_rw(scaling_min_freq); | |
676 | cpufreq_freq_attr_rw(scaling_max_freq); | |
677 | cpufreq_freq_attr_rw(scaling_governor); | |
678 | cpufreq_freq_attr_rw(scaling_setspeed); | |
1da177e4 | 679 | |
905d77cd | 680 | static struct attribute *default_attrs[] = { |
1da177e4 LT |
681 | &cpuinfo_min_freq.attr, |
682 | &cpuinfo_max_freq.attr, | |
ed129784 | 683 | &cpuinfo_transition_latency.attr, |
1da177e4 LT |
684 | &scaling_min_freq.attr, |
685 | &scaling_max_freq.attr, | |
686 | &affected_cpus.attr, | |
e8628dd0 | 687 | &related_cpus.attr, |
1da177e4 LT |
688 | &scaling_governor.attr, |
689 | &scaling_driver.attr, | |
690 | &scaling_available_governors.attr, | |
9e76988e | 691 | &scaling_setspeed.attr, |
1da177e4 LT |
692 | NULL |
693 | }; | |
694 | ||
8aa84ad8 TR |
695 | struct kobject *cpufreq_global_kobject; |
696 | EXPORT_SYMBOL(cpufreq_global_kobject); | |
697 | ||
29464f28 DJ |
698 | #define to_policy(k) container_of(k, struct cpufreq_policy, kobj) |
699 | #define to_attr(a) container_of(a, struct freq_attr, attr) | |
1da177e4 | 700 | |
29464f28 | 701 | static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf) |
1da177e4 | 702 | { |
905d77cd DJ |
703 | struct cpufreq_policy *policy = to_policy(kobj); |
704 | struct freq_attr *fattr = to_attr(attr); | |
0db4a8a9 | 705 | ssize_t ret = -EINVAL; |
1da177e4 LT |
706 | policy = cpufreq_cpu_get(policy->cpu); |
707 | if (!policy) | |
0db4a8a9 | 708 | goto no_policy; |
5a01f2e8 VP |
709 | |
710 | if (lock_policy_rwsem_read(policy->cpu) < 0) | |
0db4a8a9 | 711 | goto fail; |
5a01f2e8 | 712 | |
e08f5f5b GS |
713 | if (fattr->show) |
714 | ret = fattr->show(policy, buf); | |
715 | else | |
716 | ret = -EIO; | |
717 | ||
5a01f2e8 | 718 | unlock_policy_rwsem_read(policy->cpu); |
0db4a8a9 | 719 | fail: |
1da177e4 | 720 | cpufreq_cpu_put(policy); |
0db4a8a9 | 721 | no_policy: |
1da177e4 LT |
722 | return ret; |
723 | } | |
724 | ||
905d77cd DJ |
725 | static ssize_t store(struct kobject *kobj, struct attribute *attr, |
726 | const char *buf, size_t count) | |
1da177e4 | 727 | { |
905d77cd DJ |
728 | struct cpufreq_policy *policy = to_policy(kobj); |
729 | struct freq_attr *fattr = to_attr(attr); | |
a07530b4 | 730 | ssize_t ret = -EINVAL; |
1da177e4 LT |
731 | policy = cpufreq_cpu_get(policy->cpu); |
732 | if (!policy) | |
a07530b4 | 733 | goto no_policy; |
5a01f2e8 VP |
734 | |
735 | if (lock_policy_rwsem_write(policy->cpu) < 0) | |
a07530b4 | 736 | goto fail; |
5a01f2e8 | 737 | |
e08f5f5b GS |
738 | if (fattr->store) |
739 | ret = fattr->store(policy, buf, count); | |
740 | else | |
741 | ret = -EIO; | |
742 | ||
5a01f2e8 | 743 | unlock_policy_rwsem_write(policy->cpu); |
a07530b4 | 744 | fail: |
1da177e4 | 745 | cpufreq_cpu_put(policy); |
a07530b4 | 746 | no_policy: |
1da177e4 LT |
747 | return ret; |
748 | } | |
749 | ||
905d77cd | 750 | static void cpufreq_sysfs_release(struct kobject *kobj) |
1da177e4 | 751 | { |
905d77cd | 752 | struct cpufreq_policy *policy = to_policy(kobj); |
1da177e4 LT |
753 | dprintk("last reference is dropped\n"); |
754 | complete(&policy->kobj_unregister); | |
755 | } | |
756 | ||
52cf25d0 | 757 | static const struct sysfs_ops sysfs_ops = { |
1da177e4 LT |
758 | .show = show, |
759 | .store = store, | |
760 | }; | |
761 | ||
762 | static struct kobj_type ktype_cpufreq = { | |
763 | .sysfs_ops = &sysfs_ops, | |
764 | .default_attrs = default_attrs, | |
765 | .release = cpufreq_sysfs_release, | |
766 | }; | |
767 | ||
4bfa042c TR |
768 | /* |
769 | * Returns: | |
770 | * Negative: Failure | |
771 | * 0: Success | |
772 | * Positive: When we have a managed CPU and the sysfs got symlinked | |
773 | */ | |
cf3289d0 AC |
774 | static int cpufreq_add_dev_policy(unsigned int cpu, |
775 | struct cpufreq_policy *policy, | |
776 | struct sys_device *sys_dev) | |
ecf7e461 DJ |
777 | { |
778 | int ret = 0; | |
779 | #ifdef CONFIG_SMP | |
780 | unsigned long flags; | |
781 | unsigned int j; | |
ecf7e461 | 782 | #ifdef CONFIG_HOTPLUG_CPU |
e77b89f1 DM |
783 | struct cpufreq_governor *gov; |
784 | ||
785 | gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu)); | |
786 | if (gov) { | |
787 | policy->governor = gov; | |
ecf7e461 DJ |
788 | dprintk("Restoring governor %s for cpu %d\n", |
789 | policy->governor->name, cpu); | |
790 | } | |
791 | #endif | |
792 | ||
793 | for_each_cpu(j, policy->cpus) { | |
794 | struct cpufreq_policy *managed_policy; | |
795 | ||
796 | if (cpu == j) | |
797 | continue; | |
798 | ||
799 | /* Check for existing affected CPUs. | |
800 | * They may not be aware of it due to CPU Hotplug. | |
801 | * cpufreq_cpu_put is called when the device is removed | |
802 | * in __cpufreq_remove_dev() | |
803 | */ | |
804 | managed_policy = cpufreq_cpu_get(j); | |
805 | if (unlikely(managed_policy)) { | |
806 | ||
807 | /* Set proper policy_cpu */ | |
808 | unlock_policy_rwsem_write(cpu); | |
f1625066 | 809 | per_cpu(cpufreq_policy_cpu, cpu) = managed_policy->cpu; |
ecf7e461 DJ |
810 | |
811 | if (lock_policy_rwsem_write(cpu) < 0) { | |
812 | /* Should not go through policy unlock path */ | |
813 | if (cpufreq_driver->exit) | |
814 | cpufreq_driver->exit(policy); | |
815 | cpufreq_cpu_put(managed_policy); | |
816 | return -EBUSY; | |
817 | } | |
818 | ||
819 | spin_lock_irqsave(&cpufreq_driver_lock, flags); | |
820 | cpumask_copy(managed_policy->cpus, policy->cpus); | |
821 | per_cpu(cpufreq_cpu_data, cpu) = managed_policy; | |
822 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
823 | ||
824 | dprintk("CPU already managed, adding link\n"); | |
825 | ret = sysfs_create_link(&sys_dev->kobj, | |
826 | &managed_policy->kobj, | |
827 | "cpufreq"); | |
828 | if (ret) | |
829 | cpufreq_cpu_put(managed_policy); | |
830 | /* | |
831 | * Success. We only needed to be added to the mask. | |
832 | * Call driver->exit() because only the cpu parent of | |
833 | * the kobj needed to call init(). | |
834 | */ | |
835 | if (cpufreq_driver->exit) | |
836 | cpufreq_driver->exit(policy); | |
4bfa042c TR |
837 | |
838 | if (!ret) | |
839 | return 1; | |
840 | else | |
841 | return ret; | |
ecf7e461 DJ |
842 | } |
843 | } | |
844 | #endif | |
845 | return ret; | |
846 | } | |
847 | ||
848 | ||
19d6f7ec | 849 | /* symlink affected CPUs */ |
cf3289d0 AC |
850 | static int cpufreq_add_dev_symlink(unsigned int cpu, |
851 | struct cpufreq_policy *policy) | |
19d6f7ec DJ |
852 | { |
853 | unsigned int j; | |
854 | int ret = 0; | |
855 | ||
856 | for_each_cpu(j, policy->cpus) { | |
857 | struct cpufreq_policy *managed_policy; | |
858 | struct sys_device *cpu_sys_dev; | |
859 | ||
860 | if (j == cpu) | |
861 | continue; | |
862 | if (!cpu_online(j)) | |
863 | continue; | |
864 | ||
865 | dprintk("CPU %u already managed, adding link\n", j); | |
866 | managed_policy = cpufreq_cpu_get(cpu); | |
867 | cpu_sys_dev = get_cpu_sysdev(j); | |
868 | ret = sysfs_create_link(&cpu_sys_dev->kobj, &policy->kobj, | |
869 | "cpufreq"); | |
870 | if (ret) { | |
871 | cpufreq_cpu_put(managed_policy); | |
872 | return ret; | |
873 | } | |
874 | } | |
875 | return ret; | |
876 | } | |
877 | ||
cf3289d0 AC |
878 | static int cpufreq_add_dev_interface(unsigned int cpu, |
879 | struct cpufreq_policy *policy, | |
880 | struct sys_device *sys_dev) | |
909a694e | 881 | { |
ecf7e461 | 882 | struct cpufreq_policy new_policy; |
909a694e DJ |
883 | struct freq_attr **drv_attr; |
884 | unsigned long flags; | |
885 | int ret = 0; | |
886 | unsigned int j; | |
887 | ||
888 | /* prepare interface data */ | |
889 | ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq, | |
890 | &sys_dev->kobj, "cpufreq"); | |
891 | if (ret) | |
892 | return ret; | |
893 | ||
894 | /* set up files for this cpu device */ | |
895 | drv_attr = cpufreq_driver->attr; | |
896 | while ((drv_attr) && (*drv_attr)) { | |
897 | ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr)); | |
898 | if (ret) | |
899 | goto err_out_kobj_put; | |
900 | drv_attr++; | |
901 | } | |
902 | if (cpufreq_driver->get) { | |
903 | ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr); | |
904 | if (ret) | |
905 | goto err_out_kobj_put; | |
906 | } | |
907 | if (cpufreq_driver->target) { | |
908 | ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr); | |
909 | if (ret) | |
910 | goto err_out_kobj_put; | |
911 | } | |
e2f74f35 TR |
912 | if (cpufreq_driver->bios_limit) { |
913 | ret = sysfs_create_file(&policy->kobj, &bios_limit.attr); | |
914 | if (ret) | |
915 | goto err_out_kobj_put; | |
916 | } | |
909a694e DJ |
917 | |
918 | spin_lock_irqsave(&cpufreq_driver_lock, flags); | |
919 | for_each_cpu(j, policy->cpus) { | |
920 | if (!cpu_online(j)) | |
921 | continue; | |
922 | per_cpu(cpufreq_cpu_data, j) = policy; | |
f1625066 | 923 | per_cpu(cpufreq_policy_cpu, j) = policy->cpu; |
909a694e DJ |
924 | } |
925 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
926 | ||
927 | ret = cpufreq_add_dev_symlink(cpu, policy); | |
ecf7e461 DJ |
928 | if (ret) |
929 | goto err_out_kobj_put; | |
930 | ||
931 | memcpy(&new_policy, policy, sizeof(struct cpufreq_policy)); | |
932 | /* assure that the starting sequence is run in __cpufreq_set_policy */ | |
933 | policy->governor = NULL; | |
934 | ||
935 | /* set default policy */ | |
936 | ret = __cpufreq_set_policy(policy, &new_policy); | |
937 | policy->user_policy.policy = policy->policy; | |
938 | policy->user_policy.governor = policy->governor; | |
939 | ||
940 | if (ret) { | |
941 | dprintk("setting policy failed\n"); | |
942 | if (cpufreq_driver->exit) | |
943 | cpufreq_driver->exit(policy); | |
944 | } | |
909a694e DJ |
945 | return ret; |
946 | ||
947 | err_out_kobj_put: | |
948 | kobject_put(&policy->kobj); | |
949 | wait_for_completion(&policy->kobj_unregister); | |
950 | return ret; | |
951 | } | |
952 | ||
1da177e4 LT |
953 | |
954 | /** | |
955 | * cpufreq_add_dev - add a CPU device | |
956 | * | |
32ee8c3e | 957 | * Adds the cpufreq interface for a CPU device. |
3f4a782b MD |
958 | * |
959 | * The Oracle says: try running cpufreq registration/unregistration concurrently | |
960 | * with with cpu hotplugging and all hell will break loose. Tried to clean this | |
961 | * mess up, but more thorough testing is needed. - Mathieu | |
1da177e4 | 962 | */ |
905d77cd | 963 | static int cpufreq_add_dev(struct sys_device *sys_dev) |
1da177e4 LT |
964 | { |
965 | unsigned int cpu = sys_dev->id; | |
90e41bac | 966 | int ret = 0, found = 0; |
1da177e4 | 967 | struct cpufreq_policy *policy; |
1da177e4 LT |
968 | unsigned long flags; |
969 | unsigned int j; | |
90e41bac PB |
970 | #ifdef CONFIG_HOTPLUG_CPU |
971 | int sibling; | |
972 | #endif | |
1da177e4 | 973 | |
c32b6b8e AR |
974 | if (cpu_is_offline(cpu)) |
975 | return 0; | |
976 | ||
1da177e4 LT |
977 | cpufreq_debug_disable_ratelimit(); |
978 | dprintk("adding CPU %u\n", cpu); | |
979 | ||
980 | #ifdef CONFIG_SMP | |
981 | /* check whether a different CPU already registered this | |
982 | * CPU because it is in the same boat. */ | |
983 | policy = cpufreq_cpu_get(cpu); | |
984 | if (unlikely(policy)) { | |
8ff69732 | 985 | cpufreq_cpu_put(policy); |
1da177e4 LT |
986 | cpufreq_debug_enable_ratelimit(); |
987 | return 0; | |
988 | } | |
989 | #endif | |
990 | ||
991 | if (!try_module_get(cpufreq_driver->owner)) { | |
992 | ret = -EINVAL; | |
993 | goto module_out; | |
994 | } | |
995 | ||
059019a3 | 996 | ret = -ENOMEM; |
e98df50c | 997 | policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL); |
059019a3 | 998 | if (!policy) |
1da177e4 | 999 | goto nomem_out; |
059019a3 DJ |
1000 | |
1001 | if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL)) | |
3f4a782b | 1002 | goto err_free_policy; |
059019a3 DJ |
1003 | |
1004 | if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL)) | |
3f4a782b | 1005 | goto err_free_cpumask; |
1da177e4 LT |
1006 | |
1007 | policy->cpu = cpu; | |
835481d9 | 1008 | cpumask_copy(policy->cpus, cpumask_of(cpu)); |
1da177e4 | 1009 | |
5a01f2e8 | 1010 | /* Initially set CPU itself as the policy_cpu */ |
f1625066 | 1011 | per_cpu(cpufreq_policy_cpu, cpu) = cpu; |
3f4a782b MD |
1012 | ret = (lock_policy_rwsem_write(cpu) < 0); |
1013 | WARN_ON(ret); | |
5a01f2e8 | 1014 | |
1da177e4 | 1015 | init_completion(&policy->kobj_unregister); |
65f27f38 | 1016 | INIT_WORK(&policy->update, handle_update); |
1da177e4 | 1017 | |
8122c6ce | 1018 | /* Set governor before ->init, so that driver could check it */ |
90e41bac PB |
1019 | #ifdef CONFIG_HOTPLUG_CPU |
1020 | for_each_online_cpu(sibling) { | |
1021 | struct cpufreq_policy *cp = per_cpu(cpufreq_cpu_data, sibling); | |
1022 | if (cp && cp->governor && | |
1023 | (cpumask_test_cpu(cpu, cp->related_cpus))) { | |
1024 | policy->governor = cp->governor; | |
1025 | found = 1; | |
1026 | break; | |
1027 | } | |
1028 | } | |
1029 | #endif | |
1030 | if (!found) | |
1031 | policy->governor = CPUFREQ_DEFAULT_GOVERNOR; | |
1da177e4 LT |
1032 | /* call driver. From then on the cpufreq must be able |
1033 | * to accept all calls to ->verify and ->setpolicy for this CPU | |
1034 | */ | |
1035 | ret = cpufreq_driver->init(policy); | |
1036 | if (ret) { | |
1037 | dprintk("initialization failed\n"); | |
3f4a782b | 1038 | goto err_unlock_policy; |
1da177e4 | 1039 | } |
187d9f4e MC |
1040 | policy->user_policy.min = policy->min; |
1041 | policy->user_policy.max = policy->max; | |
1da177e4 | 1042 | |
a1531acd TR |
1043 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
1044 | CPUFREQ_START, policy); | |
1045 | ||
ecf7e461 | 1046 | ret = cpufreq_add_dev_policy(cpu, policy, sys_dev); |
4bfa042c TR |
1047 | if (ret) { |
1048 | if (ret > 0) | |
1049 | /* This is a managed cpu, symlink created, | |
1050 | exit with 0 */ | |
1051 | ret = 0; | |
ecf7e461 | 1052 | goto err_unlock_policy; |
4bfa042c | 1053 | } |
1da177e4 | 1054 | |
909a694e | 1055 | ret = cpufreq_add_dev_interface(cpu, policy, sys_dev); |
19d6f7ec DJ |
1056 | if (ret) |
1057 | goto err_out_unregister; | |
8ff69732 | 1058 | |
dca02613 LW |
1059 | unlock_policy_rwsem_write(cpu); |
1060 | ||
038c5b3e | 1061 | kobject_uevent(&policy->kobj, KOBJ_ADD); |
1da177e4 | 1062 | module_put(cpufreq_driver->owner); |
1da177e4 LT |
1063 | dprintk("initialization complete\n"); |
1064 | cpufreq_debug_enable_ratelimit(); | |
87c32271 | 1065 | |
1da177e4 LT |
1066 | return 0; |
1067 | ||
1068 | ||
1069 | err_out_unregister: | |
1070 | spin_lock_irqsave(&cpufreq_driver_lock, flags); | |
835481d9 | 1071 | for_each_cpu(j, policy->cpus) |
7a6aedfa | 1072 | per_cpu(cpufreq_cpu_data, j) = NULL; |
1da177e4 LT |
1073 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
1074 | ||
c10997f6 | 1075 | kobject_put(&policy->kobj); |
1da177e4 LT |
1076 | wait_for_completion(&policy->kobj_unregister); |
1077 | ||
3f4a782b | 1078 | err_unlock_policy: |
45709118 | 1079 | unlock_policy_rwsem_write(cpu); |
cad70a6a | 1080 | free_cpumask_var(policy->related_cpus); |
3f4a782b MD |
1081 | err_free_cpumask: |
1082 | free_cpumask_var(policy->cpus); | |
1083 | err_free_policy: | |
1da177e4 | 1084 | kfree(policy); |
1da177e4 LT |
1085 | nomem_out: |
1086 | module_put(cpufreq_driver->owner); | |
c32b6b8e | 1087 | module_out: |
1da177e4 LT |
1088 | cpufreq_debug_enable_ratelimit(); |
1089 | return ret; | |
1090 | } | |
1091 | ||
1092 | ||
1093 | /** | |
5a01f2e8 | 1094 | * __cpufreq_remove_dev - remove a CPU device |
1da177e4 LT |
1095 | * |
1096 | * Removes the cpufreq interface for a CPU device. | |
5a01f2e8 VP |
1097 | * Caller should already have policy_rwsem in write mode for this CPU. |
1098 | * This routine frees the rwsem before returning. | |
1da177e4 | 1099 | */ |
905d77cd | 1100 | static int __cpufreq_remove_dev(struct sys_device *sys_dev) |
1da177e4 LT |
1101 | { |
1102 | unsigned int cpu = sys_dev->id; | |
1103 | unsigned long flags; | |
1104 | struct cpufreq_policy *data; | |
499bca9b AW |
1105 | struct kobject *kobj; |
1106 | struct completion *cmp; | |
1da177e4 | 1107 | #ifdef CONFIG_SMP |
e738cf6d | 1108 | struct sys_device *cpu_sys_dev; |
1da177e4 LT |
1109 | unsigned int j; |
1110 | #endif | |
1111 | ||
1112 | cpufreq_debug_disable_ratelimit(); | |
1113 | dprintk("unregistering CPU %u\n", cpu); | |
1114 | ||
1115 | spin_lock_irqsave(&cpufreq_driver_lock, flags); | |
7a6aedfa | 1116 | data = per_cpu(cpufreq_cpu_data, cpu); |
1da177e4 LT |
1117 | |
1118 | if (!data) { | |
1119 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
1da177e4 | 1120 | cpufreq_debug_enable_ratelimit(); |
5a01f2e8 | 1121 | unlock_policy_rwsem_write(cpu); |
1da177e4 LT |
1122 | return -EINVAL; |
1123 | } | |
7a6aedfa | 1124 | per_cpu(cpufreq_cpu_data, cpu) = NULL; |
1da177e4 LT |
1125 | |
1126 | ||
1127 | #ifdef CONFIG_SMP | |
1128 | /* if this isn't the CPU which is the parent of the kobj, we | |
32ee8c3e | 1129 | * only need to unlink, put and exit |
1da177e4 LT |
1130 | */ |
1131 | if (unlikely(cpu != data->cpu)) { | |
1132 | dprintk("removing link\n"); | |
835481d9 | 1133 | cpumask_clear_cpu(cpu, data->cpus); |
1da177e4 | 1134 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
499bca9b | 1135 | kobj = &sys_dev->kobj; |
1da177e4 LT |
1136 | cpufreq_cpu_put(data); |
1137 | cpufreq_debug_enable_ratelimit(); | |
5a01f2e8 | 1138 | unlock_policy_rwsem_write(cpu); |
499bca9b | 1139 | sysfs_remove_link(kobj, "cpufreq"); |
1da177e4 LT |
1140 | return 0; |
1141 | } | |
1142 | #endif | |
1143 | ||
1da177e4 | 1144 | #ifdef CONFIG_SMP |
084f3493 TR |
1145 | |
1146 | #ifdef CONFIG_HOTPLUG_CPU | |
e77b89f1 DM |
1147 | strncpy(per_cpu(cpufreq_cpu_governor, cpu), data->governor->name, |
1148 | CPUFREQ_NAME_LEN); | |
084f3493 TR |
1149 | #endif |
1150 | ||
1da177e4 LT |
1151 | /* if we have other CPUs still registered, we need to unlink them, |
1152 | * or else wait_for_completion below will lock up. Clean the | |
7a6aedfa MT |
1153 | * per_cpu(cpufreq_cpu_data) while holding the lock, and remove |
1154 | * the sysfs links afterwards. | |
1da177e4 | 1155 | */ |
835481d9 RR |
1156 | if (unlikely(cpumask_weight(data->cpus) > 1)) { |
1157 | for_each_cpu(j, data->cpus) { | |
1da177e4 LT |
1158 | if (j == cpu) |
1159 | continue; | |
7a6aedfa | 1160 | per_cpu(cpufreq_cpu_data, j) = NULL; |
1da177e4 LT |
1161 | } |
1162 | } | |
1163 | ||
1164 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
1165 | ||
835481d9 RR |
1166 | if (unlikely(cpumask_weight(data->cpus) > 1)) { |
1167 | for_each_cpu(j, data->cpus) { | |
1da177e4 LT |
1168 | if (j == cpu) |
1169 | continue; | |
1170 | dprintk("removing link for cpu %u\n", j); | |
084f3493 | 1171 | #ifdef CONFIG_HOTPLUG_CPU |
e77b89f1 DM |
1172 | strncpy(per_cpu(cpufreq_cpu_governor, j), |
1173 | data->governor->name, CPUFREQ_NAME_LEN); | |
084f3493 | 1174 | #endif |
d434fca7 | 1175 | cpu_sys_dev = get_cpu_sysdev(j); |
499bca9b AW |
1176 | kobj = &cpu_sys_dev->kobj; |
1177 | unlock_policy_rwsem_write(cpu); | |
1178 | sysfs_remove_link(kobj, "cpufreq"); | |
1179 | lock_policy_rwsem_write(cpu); | |
1da177e4 LT |
1180 | cpufreq_cpu_put(data); |
1181 | } | |
1182 | } | |
1183 | #else | |
1184 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
1185 | #endif | |
1186 | ||
1da177e4 LT |
1187 | if (cpufreq_driver->target) |
1188 | __cpufreq_governor(data, CPUFREQ_GOV_STOP); | |
5a01f2e8 | 1189 | |
499bca9b AW |
1190 | kobj = &data->kobj; |
1191 | cmp = &data->kobj_unregister; | |
1192 | unlock_policy_rwsem_write(cpu); | |
1193 | kobject_put(kobj); | |
1da177e4 LT |
1194 | |
1195 | /* we need to make sure that the underlying kobj is actually | |
32ee8c3e | 1196 | * not referenced anymore by anybody before we proceed with |
1da177e4 LT |
1197 | * unloading. |
1198 | */ | |
1199 | dprintk("waiting for dropping of refcount\n"); | |
499bca9b | 1200 | wait_for_completion(cmp); |
1da177e4 LT |
1201 | dprintk("wait complete\n"); |
1202 | ||
499bca9b | 1203 | lock_policy_rwsem_write(cpu); |
1da177e4 LT |
1204 | if (cpufreq_driver->exit) |
1205 | cpufreq_driver->exit(data); | |
7d26e2d5 | 1206 | unlock_policy_rwsem_write(cpu); |
1207 | ||
835481d9 RR |
1208 | free_cpumask_var(data->related_cpus); |
1209 | free_cpumask_var(data->cpus); | |
1da177e4 | 1210 | kfree(data); |
835481d9 | 1211 | per_cpu(cpufreq_cpu_data, cpu) = NULL; |
1da177e4 LT |
1212 | |
1213 | cpufreq_debug_enable_ratelimit(); | |
1da177e4 LT |
1214 | return 0; |
1215 | } | |
1216 | ||
1217 | ||
905d77cd | 1218 | static int cpufreq_remove_dev(struct sys_device *sys_dev) |
5a01f2e8 VP |
1219 | { |
1220 | unsigned int cpu = sys_dev->id; | |
1221 | int retval; | |
ec28297a VP |
1222 | |
1223 | if (cpu_is_offline(cpu)) | |
1224 | return 0; | |
1225 | ||
5a01f2e8 VP |
1226 | if (unlikely(lock_policy_rwsem_write(cpu))) |
1227 | BUG(); | |
1228 | ||
1229 | retval = __cpufreq_remove_dev(sys_dev); | |
1230 | return retval; | |
1231 | } | |
1232 | ||
1233 | ||
65f27f38 | 1234 | static void handle_update(struct work_struct *work) |
1da177e4 | 1235 | { |
65f27f38 DH |
1236 | struct cpufreq_policy *policy = |
1237 | container_of(work, struct cpufreq_policy, update); | |
1238 | unsigned int cpu = policy->cpu; | |
1da177e4 LT |
1239 | dprintk("handle_update for cpu %u called\n", cpu); |
1240 | cpufreq_update_policy(cpu); | |
1241 | } | |
1242 | ||
1243 | /** | |
1244 | * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're in deep trouble. | |
1245 | * @cpu: cpu number | |
1246 | * @old_freq: CPU frequency the kernel thinks the CPU runs at | |
1247 | * @new_freq: CPU frequency the CPU actually runs at | |
1248 | * | |
29464f28 DJ |
1249 | * We adjust to current frequency first, and need to clean up later. |
1250 | * So either call to cpufreq_update_policy() or schedule handle_update()). | |
1da177e4 | 1251 | */ |
e08f5f5b GS |
1252 | static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq, |
1253 | unsigned int new_freq) | |
1da177e4 LT |
1254 | { |
1255 | struct cpufreq_freqs freqs; | |
1256 | ||
b10eec22 | 1257 | dprintk("Warning: CPU frequency out of sync: cpufreq and timing " |
1da177e4 LT |
1258 | "core thinks of %u, is %u kHz.\n", old_freq, new_freq); |
1259 | ||
1260 | freqs.cpu = cpu; | |
1261 | freqs.old = old_freq; | |
1262 | freqs.new = new_freq; | |
1263 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); | |
1264 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); | |
1265 | } | |
1266 | ||
1267 | ||
32ee8c3e | 1268 | /** |
4ab70df4 | 1269 | * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur |
95235ca2 VP |
1270 | * @cpu: CPU number |
1271 | * | |
1272 | * This is the last known freq, without actually getting it from the driver. | |
1273 | * Return value will be same as what is shown in scaling_cur_freq in sysfs. | |
1274 | */ | |
1275 | unsigned int cpufreq_quick_get(unsigned int cpu) | |
1276 | { | |
1277 | struct cpufreq_policy *policy = cpufreq_cpu_get(cpu); | |
e08f5f5b | 1278 | unsigned int ret_freq = 0; |
95235ca2 VP |
1279 | |
1280 | if (policy) { | |
e08f5f5b | 1281 | ret_freq = policy->cur; |
95235ca2 VP |
1282 | cpufreq_cpu_put(policy); |
1283 | } | |
1284 | ||
4d34a67d | 1285 | return ret_freq; |
95235ca2 VP |
1286 | } |
1287 | EXPORT_SYMBOL(cpufreq_quick_get); | |
1288 | ||
1289 | ||
5a01f2e8 | 1290 | static unsigned int __cpufreq_get(unsigned int cpu) |
1da177e4 | 1291 | { |
7a6aedfa | 1292 | struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu); |
e08f5f5b | 1293 | unsigned int ret_freq = 0; |
1da177e4 | 1294 | |
1da177e4 | 1295 | if (!cpufreq_driver->get) |
4d34a67d | 1296 | return ret_freq; |
1da177e4 | 1297 | |
e08f5f5b | 1298 | ret_freq = cpufreq_driver->get(cpu); |
1da177e4 | 1299 | |
e08f5f5b GS |
1300 | if (ret_freq && policy->cur && |
1301 | !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) { | |
1302 | /* verify no discrepancy between actual and | |
1303 | saved value exists */ | |
1304 | if (unlikely(ret_freq != policy->cur)) { | |
1305 | cpufreq_out_of_sync(cpu, policy->cur, ret_freq); | |
1da177e4 LT |
1306 | schedule_work(&policy->update); |
1307 | } | |
1308 | } | |
1309 | ||
4d34a67d | 1310 | return ret_freq; |
5a01f2e8 | 1311 | } |
1da177e4 | 1312 | |
5a01f2e8 VP |
1313 | /** |
1314 | * cpufreq_get - get the current CPU frequency (in kHz) | |
1315 | * @cpu: CPU number | |
1316 | * | |
1317 | * Get the CPU current (static) CPU frequency | |
1318 | */ | |
1319 | unsigned int cpufreq_get(unsigned int cpu) | |
1320 | { | |
1321 | unsigned int ret_freq = 0; | |
1322 | struct cpufreq_policy *policy = cpufreq_cpu_get(cpu); | |
1323 | ||
1324 | if (!policy) | |
1325 | goto out; | |
1326 | ||
1327 | if (unlikely(lock_policy_rwsem_read(cpu))) | |
1328 | goto out_policy; | |
1329 | ||
1330 | ret_freq = __cpufreq_get(cpu); | |
1331 | ||
1332 | unlock_policy_rwsem_read(cpu); | |
1da177e4 | 1333 | |
5a01f2e8 VP |
1334 | out_policy: |
1335 | cpufreq_cpu_put(policy); | |
1336 | out: | |
4d34a67d | 1337 | return ret_freq; |
1da177e4 LT |
1338 | } |
1339 | EXPORT_SYMBOL(cpufreq_get); | |
1340 | ||
1341 | ||
42d4dc3f BH |
1342 | /** |
1343 | * cpufreq_suspend - let the low level driver prepare for suspend | |
1344 | */ | |
1345 | ||
905d77cd | 1346 | static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg) |
42d4dc3f | 1347 | { |
e08f5f5b | 1348 | int ret = 0; |
4bc5d341 | 1349 | |
4bc5d341 | 1350 | int cpu = sysdev->id; |
42d4dc3f BH |
1351 | struct cpufreq_policy *cpu_policy; |
1352 | ||
0e37b159 | 1353 | dprintk("suspending cpu %u\n", cpu); |
42d4dc3f BH |
1354 | |
1355 | if (!cpu_online(cpu)) | |
1356 | return 0; | |
1357 | ||
1358 | /* we may be lax here as interrupts are off. Nonetheless | |
1359 | * we need to grab the correct cpu policy, as to check | |
1360 | * whether we really run on this CPU. | |
1361 | */ | |
1362 | ||
1363 | cpu_policy = cpufreq_cpu_get(cpu); | |
1364 | if (!cpu_policy) | |
1365 | return -EINVAL; | |
1366 | ||
1367 | /* only handle each CPU group once */ | |
c9060494 DJ |
1368 | if (unlikely(cpu_policy->cpu != cpu)) |
1369 | goto out; | |
42d4dc3f BH |
1370 | |
1371 | if (cpufreq_driver->suspend) { | |
e00d9967 | 1372 | ret = cpufreq_driver->suspend(cpu_policy, pmsg); |
ce6c3997 | 1373 | if (ret) |
42d4dc3f BH |
1374 | printk(KERN_ERR "cpufreq: suspend failed in ->suspend " |
1375 | "step on CPU %u\n", cpu_policy->cpu); | |
42d4dc3f BH |
1376 | } |
1377 | ||
7d5e350f | 1378 | out: |
42d4dc3f | 1379 | cpufreq_cpu_put(cpu_policy); |
c9060494 | 1380 | return ret; |
42d4dc3f BH |
1381 | } |
1382 | ||
1da177e4 LT |
1383 | /** |
1384 | * cpufreq_resume - restore proper CPU frequency handling after resume | |
1385 | * | |
1386 | * 1.) resume CPUfreq hardware support (cpufreq_driver->resume()) | |
ce6c3997 DB |
1387 | * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are |
1388 | * restored. It will verify that the current freq is in sync with | |
1389 | * what we believe it to be. This is a bit later than when it | |
1390 | * should be, but nonethteless it's better than calling | |
1391 | * cpufreq_driver->get() here which might re-enable interrupts... | |
1da177e4 | 1392 | */ |
905d77cd | 1393 | static int cpufreq_resume(struct sys_device *sysdev) |
1da177e4 | 1394 | { |
e08f5f5b | 1395 | int ret = 0; |
4bc5d341 | 1396 | |
4bc5d341 | 1397 | int cpu = sysdev->id; |
1da177e4 LT |
1398 | struct cpufreq_policy *cpu_policy; |
1399 | ||
1400 | dprintk("resuming cpu %u\n", cpu); | |
1401 | ||
1402 | if (!cpu_online(cpu)) | |
1403 | return 0; | |
1404 | ||
1405 | /* we may be lax here as interrupts are off. Nonetheless | |
1406 | * we need to grab the correct cpu policy, as to check | |
1407 | * whether we really run on this CPU. | |
1408 | */ | |
1409 | ||
1410 | cpu_policy = cpufreq_cpu_get(cpu); | |
1411 | if (!cpu_policy) | |
1412 | return -EINVAL; | |
1413 | ||
1414 | /* only handle each CPU group once */ | |
c9060494 DJ |
1415 | if (unlikely(cpu_policy->cpu != cpu)) |
1416 | goto fail; | |
1da177e4 LT |
1417 | |
1418 | if (cpufreq_driver->resume) { | |
1419 | ret = cpufreq_driver->resume(cpu_policy); | |
1420 | if (ret) { | |
1421 | printk(KERN_ERR "cpufreq: resume failed in ->resume " | |
1422 | "step on CPU %u\n", cpu_policy->cpu); | |
c9060494 | 1423 | goto fail; |
1da177e4 LT |
1424 | } |
1425 | } | |
1426 | ||
1da177e4 | 1427 | schedule_work(&cpu_policy->update); |
ce6c3997 | 1428 | |
c9060494 | 1429 | fail: |
1da177e4 LT |
1430 | cpufreq_cpu_put(cpu_policy); |
1431 | return ret; | |
1432 | } | |
1433 | ||
1434 | static struct sysdev_driver cpufreq_sysdev_driver = { | |
1435 | .add = cpufreq_add_dev, | |
1436 | .remove = cpufreq_remove_dev, | |
42d4dc3f | 1437 | .suspend = cpufreq_suspend, |
1da177e4 LT |
1438 | .resume = cpufreq_resume, |
1439 | }; | |
1440 | ||
1441 | ||
1442 | /********************************************************************* | |
1443 | * NOTIFIER LISTS INTERFACE * | |
1444 | *********************************************************************/ | |
1445 | ||
1446 | /** | |
1447 | * cpufreq_register_notifier - register a driver with cpufreq | |
1448 | * @nb: notifier function to register | |
1449 | * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER | |
1450 | * | |
32ee8c3e | 1451 | * Add a driver to one of two lists: either a list of drivers that |
1da177e4 LT |
1452 | * are notified about clock rate changes (once before and once after |
1453 | * the transition), or a list of drivers that are notified about | |
1454 | * changes in cpufreq policy. | |
1455 | * | |
1456 | * This function may sleep, and has the same return conditions as | |
e041c683 | 1457 | * blocking_notifier_chain_register. |
1da177e4 LT |
1458 | */ |
1459 | int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list) | |
1460 | { | |
1461 | int ret; | |
1462 | ||
74212ca4 CEB |
1463 | WARN_ON(!init_cpufreq_transition_notifier_list_called); |
1464 | ||
1da177e4 LT |
1465 | switch (list) { |
1466 | case CPUFREQ_TRANSITION_NOTIFIER: | |
b4dfdbb3 | 1467 | ret = srcu_notifier_chain_register( |
e041c683 | 1468 | &cpufreq_transition_notifier_list, nb); |
1da177e4 LT |
1469 | break; |
1470 | case CPUFREQ_POLICY_NOTIFIER: | |
e041c683 AS |
1471 | ret = blocking_notifier_chain_register( |
1472 | &cpufreq_policy_notifier_list, nb); | |
1da177e4 LT |
1473 | break; |
1474 | default: | |
1475 | ret = -EINVAL; | |
1476 | } | |
1da177e4 LT |
1477 | |
1478 | return ret; | |
1479 | } | |
1480 | EXPORT_SYMBOL(cpufreq_register_notifier); | |
1481 | ||
1482 | ||
1483 | /** | |
1484 | * cpufreq_unregister_notifier - unregister a driver with cpufreq | |
1485 | * @nb: notifier block to be unregistered | |
1486 | * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER | |
1487 | * | |
1488 | * Remove a driver from the CPU frequency notifier list. | |
1489 | * | |
1490 | * This function may sleep, and has the same return conditions as | |
e041c683 | 1491 | * blocking_notifier_chain_unregister. |
1da177e4 LT |
1492 | */ |
1493 | int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list) | |
1494 | { | |
1495 | int ret; | |
1496 | ||
1da177e4 LT |
1497 | switch (list) { |
1498 | case CPUFREQ_TRANSITION_NOTIFIER: | |
b4dfdbb3 | 1499 | ret = srcu_notifier_chain_unregister( |
e041c683 | 1500 | &cpufreq_transition_notifier_list, nb); |
1da177e4 LT |
1501 | break; |
1502 | case CPUFREQ_POLICY_NOTIFIER: | |
e041c683 AS |
1503 | ret = blocking_notifier_chain_unregister( |
1504 | &cpufreq_policy_notifier_list, nb); | |
1da177e4 LT |
1505 | break; |
1506 | default: | |
1507 | ret = -EINVAL; | |
1508 | } | |
1da177e4 LT |
1509 | |
1510 | return ret; | |
1511 | } | |
1512 | EXPORT_SYMBOL(cpufreq_unregister_notifier); | |
1513 | ||
1514 | ||
1515 | /********************************************************************* | |
1516 | * GOVERNORS * | |
1517 | *********************************************************************/ | |
1518 | ||
1519 | ||
1520 | int __cpufreq_driver_target(struct cpufreq_policy *policy, | |
1521 | unsigned int target_freq, | |
1522 | unsigned int relation) | |
1523 | { | |
1524 | int retval = -EINVAL; | |
c32b6b8e | 1525 | |
1da177e4 LT |
1526 | dprintk("target for CPU %u: %u kHz, relation %u\n", policy->cpu, |
1527 | target_freq, relation); | |
1528 | if (cpu_online(policy->cpu) && cpufreq_driver->target) | |
1529 | retval = cpufreq_driver->target(policy, target_freq, relation); | |
90d45d17 | 1530 | |
1da177e4 LT |
1531 | return retval; |
1532 | } | |
1533 | EXPORT_SYMBOL_GPL(__cpufreq_driver_target); | |
1534 | ||
1da177e4 LT |
1535 | int cpufreq_driver_target(struct cpufreq_policy *policy, |
1536 | unsigned int target_freq, | |
1537 | unsigned int relation) | |
1538 | { | |
f1829e4a | 1539 | int ret = -EINVAL; |
1da177e4 LT |
1540 | |
1541 | policy = cpufreq_cpu_get(policy->cpu); | |
1542 | if (!policy) | |
f1829e4a | 1543 | goto no_policy; |
1da177e4 | 1544 | |
5a01f2e8 | 1545 | if (unlikely(lock_policy_rwsem_write(policy->cpu))) |
f1829e4a | 1546 | goto fail; |
1da177e4 LT |
1547 | |
1548 | ret = __cpufreq_driver_target(policy, target_freq, relation); | |
1549 | ||
5a01f2e8 | 1550 | unlock_policy_rwsem_write(policy->cpu); |
1da177e4 | 1551 | |
f1829e4a | 1552 | fail: |
1da177e4 | 1553 | cpufreq_cpu_put(policy); |
f1829e4a | 1554 | no_policy: |
1da177e4 LT |
1555 | return ret; |
1556 | } | |
1557 | EXPORT_SYMBOL_GPL(cpufreq_driver_target); | |
1558 | ||
bf0b90e3 | 1559 | int __cpufreq_driver_getavg(struct cpufreq_policy *policy, unsigned int cpu) |
dfde5d62 VP |
1560 | { |
1561 | int ret = 0; | |
1562 | ||
1563 | policy = cpufreq_cpu_get(policy->cpu); | |
1564 | if (!policy) | |
1565 | return -EINVAL; | |
1566 | ||
bf0b90e3 | 1567 | if (cpu_online(cpu) && cpufreq_driver->getavg) |
1568 | ret = cpufreq_driver->getavg(policy, cpu); | |
dfde5d62 | 1569 | |
dfde5d62 VP |
1570 | cpufreq_cpu_put(policy); |
1571 | return ret; | |
1572 | } | |
5a01f2e8 | 1573 | EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg); |
dfde5d62 | 1574 | |
153d7f3f | 1575 | /* |
153d7f3f AV |
1576 | * when "event" is CPUFREQ_GOV_LIMITS |
1577 | */ | |
1da177e4 | 1578 | |
e08f5f5b GS |
1579 | static int __cpufreq_governor(struct cpufreq_policy *policy, |
1580 | unsigned int event) | |
1da177e4 | 1581 | { |
cc993cab | 1582 | int ret; |
6afde10c TR |
1583 | |
1584 | /* Only must be defined when default governor is known to have latency | |
1585 | restrictions, like e.g. conservative or ondemand. | |
1586 | That this is the case is already ensured in Kconfig | |
1587 | */ | |
1588 | #ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE | |
1589 | struct cpufreq_governor *gov = &cpufreq_gov_performance; | |
1590 | #else | |
1591 | struct cpufreq_governor *gov = NULL; | |
1592 | #endif | |
1c256245 TR |
1593 | |
1594 | if (policy->governor->max_transition_latency && | |
1595 | policy->cpuinfo.transition_latency > | |
1596 | policy->governor->max_transition_latency) { | |
6afde10c TR |
1597 | if (!gov) |
1598 | return -EINVAL; | |
1599 | else { | |
1600 | printk(KERN_WARNING "%s governor failed, too long" | |
1601 | " transition latency of HW, fallback" | |
1602 | " to %s governor\n", | |
1603 | policy->governor->name, | |
1604 | gov->name); | |
1605 | policy->governor = gov; | |
1606 | } | |
1c256245 | 1607 | } |
1da177e4 LT |
1608 | |
1609 | if (!try_module_get(policy->governor->owner)) | |
1610 | return -EINVAL; | |
1611 | ||
e08f5f5b GS |
1612 | dprintk("__cpufreq_governor for CPU %u, event %u\n", |
1613 | policy->cpu, event); | |
1da177e4 LT |
1614 | ret = policy->governor->governor(policy, event); |
1615 | ||
e08f5f5b GS |
1616 | /* we keep one module reference alive for |
1617 | each CPU governed by this CPU */ | |
1da177e4 LT |
1618 | if ((event != CPUFREQ_GOV_START) || ret) |
1619 | module_put(policy->governor->owner); | |
1620 | if ((event == CPUFREQ_GOV_STOP) && !ret) | |
1621 | module_put(policy->governor->owner); | |
1622 | ||
1623 | return ret; | |
1624 | } | |
1625 | ||
1626 | ||
1da177e4 LT |
1627 | int cpufreq_register_governor(struct cpufreq_governor *governor) |
1628 | { | |
3bcb09a3 | 1629 | int err; |
1da177e4 LT |
1630 | |
1631 | if (!governor) | |
1632 | return -EINVAL; | |
1633 | ||
3fc54d37 | 1634 | mutex_lock(&cpufreq_governor_mutex); |
32ee8c3e | 1635 | |
3bcb09a3 JF |
1636 | err = -EBUSY; |
1637 | if (__find_governor(governor->name) == NULL) { | |
1638 | err = 0; | |
1639 | list_add(&governor->governor_list, &cpufreq_governor_list); | |
1da177e4 | 1640 | } |
1da177e4 | 1641 | |
32ee8c3e | 1642 | mutex_unlock(&cpufreq_governor_mutex); |
3bcb09a3 | 1643 | return err; |
1da177e4 LT |
1644 | } |
1645 | EXPORT_SYMBOL_GPL(cpufreq_register_governor); | |
1646 | ||
1647 | ||
1648 | void cpufreq_unregister_governor(struct cpufreq_governor *governor) | |
1649 | { | |
90e41bac PB |
1650 | #ifdef CONFIG_HOTPLUG_CPU |
1651 | int cpu; | |
1652 | #endif | |
1653 | ||
1da177e4 LT |
1654 | if (!governor) |
1655 | return; | |
1656 | ||
90e41bac PB |
1657 | #ifdef CONFIG_HOTPLUG_CPU |
1658 | for_each_present_cpu(cpu) { | |
1659 | if (cpu_online(cpu)) | |
1660 | continue; | |
1661 | if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name)) | |
1662 | strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0"); | |
1663 | } | |
1664 | #endif | |
1665 | ||
3fc54d37 | 1666 | mutex_lock(&cpufreq_governor_mutex); |
1da177e4 | 1667 | list_del(&governor->governor_list); |
3fc54d37 | 1668 | mutex_unlock(&cpufreq_governor_mutex); |
1da177e4 LT |
1669 | return; |
1670 | } | |
1671 | EXPORT_SYMBOL_GPL(cpufreq_unregister_governor); | |
1672 | ||
1673 | ||
1674 | ||
1675 | /********************************************************************* | |
1676 | * POLICY INTERFACE * | |
1677 | *********************************************************************/ | |
1678 | ||
1679 | /** | |
1680 | * cpufreq_get_policy - get the current cpufreq_policy | |
29464f28 DJ |
1681 | * @policy: struct cpufreq_policy into which the current cpufreq_policy |
1682 | * is written | |
1da177e4 LT |
1683 | * |
1684 | * Reads the current cpufreq policy. | |
1685 | */ | |
1686 | int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu) | |
1687 | { | |
1688 | struct cpufreq_policy *cpu_policy; | |
1689 | if (!policy) | |
1690 | return -EINVAL; | |
1691 | ||
1692 | cpu_policy = cpufreq_cpu_get(cpu); | |
1693 | if (!cpu_policy) | |
1694 | return -EINVAL; | |
1695 | ||
1da177e4 | 1696 | memcpy(policy, cpu_policy, sizeof(struct cpufreq_policy)); |
1da177e4 LT |
1697 | |
1698 | cpufreq_cpu_put(cpu_policy); | |
1da177e4 LT |
1699 | return 0; |
1700 | } | |
1701 | EXPORT_SYMBOL(cpufreq_get_policy); | |
1702 | ||
1703 | ||
153d7f3f | 1704 | /* |
e08f5f5b GS |
1705 | * data : current policy. |
1706 | * policy : policy to be set. | |
153d7f3f | 1707 | */ |
e08f5f5b GS |
1708 | static int __cpufreq_set_policy(struct cpufreq_policy *data, |
1709 | struct cpufreq_policy *policy) | |
1da177e4 LT |
1710 | { |
1711 | int ret = 0; | |
1712 | ||
1713 | cpufreq_debug_disable_ratelimit(); | |
1714 | dprintk("setting new policy for CPU %u: %u - %u kHz\n", policy->cpu, | |
1715 | policy->min, policy->max); | |
1716 | ||
e08f5f5b GS |
1717 | memcpy(&policy->cpuinfo, &data->cpuinfo, |
1718 | sizeof(struct cpufreq_cpuinfo)); | |
1da177e4 | 1719 | |
53391fa2 | 1720 | if (policy->min > data->max || policy->max < data->min) { |
9c9a43ed MD |
1721 | ret = -EINVAL; |
1722 | goto error_out; | |
1723 | } | |
1724 | ||
1da177e4 LT |
1725 | /* verify the cpu speed can be set within this limit */ |
1726 | ret = cpufreq_driver->verify(policy); | |
1727 | if (ret) | |
1728 | goto error_out; | |
1729 | ||
1da177e4 | 1730 | /* adjust if necessary - all reasons */ |
e041c683 AS |
1731 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
1732 | CPUFREQ_ADJUST, policy); | |
1da177e4 LT |
1733 | |
1734 | /* adjust if necessary - hardware incompatibility*/ | |
e041c683 AS |
1735 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
1736 | CPUFREQ_INCOMPATIBLE, policy); | |
1da177e4 LT |
1737 | |
1738 | /* verify the cpu speed can be set within this limit, | |
1739 | which might be different to the first one */ | |
1740 | ret = cpufreq_driver->verify(policy); | |
e041c683 | 1741 | if (ret) |
1da177e4 | 1742 | goto error_out; |
1da177e4 LT |
1743 | |
1744 | /* notification of the new policy */ | |
e041c683 AS |
1745 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
1746 | CPUFREQ_NOTIFY, policy); | |
1da177e4 | 1747 | |
7d5e350f DJ |
1748 | data->min = policy->min; |
1749 | data->max = policy->max; | |
1da177e4 | 1750 | |
e08f5f5b GS |
1751 | dprintk("new min and max freqs are %u - %u kHz\n", |
1752 | data->min, data->max); | |
1da177e4 LT |
1753 | |
1754 | if (cpufreq_driver->setpolicy) { | |
1755 | data->policy = policy->policy; | |
1756 | dprintk("setting range\n"); | |
1757 | ret = cpufreq_driver->setpolicy(policy); | |
1758 | } else { | |
1759 | if (policy->governor != data->governor) { | |
1760 | /* save old, working values */ | |
1761 | struct cpufreq_governor *old_gov = data->governor; | |
1762 | ||
1763 | dprintk("governor switch\n"); | |
1764 | ||
1765 | /* end old governor */ | |
ffe6275f | 1766 | if (data->governor) |
1da177e4 LT |
1767 | __cpufreq_governor(data, CPUFREQ_GOV_STOP); |
1768 | ||
1769 | /* start new governor */ | |
1770 | data->governor = policy->governor; | |
1771 | if (__cpufreq_governor(data, CPUFREQ_GOV_START)) { | |
1772 | /* new governor failed, so re-start old one */ | |
e08f5f5b GS |
1773 | dprintk("starting governor %s failed\n", |
1774 | data->governor->name); | |
1da177e4 LT |
1775 | if (old_gov) { |
1776 | data->governor = old_gov; | |
e08f5f5b GS |
1777 | __cpufreq_governor(data, |
1778 | CPUFREQ_GOV_START); | |
1da177e4 LT |
1779 | } |
1780 | ret = -EINVAL; | |
1781 | goto error_out; | |
1782 | } | |
1783 | /* might be a policy change, too, so fall through */ | |
1784 | } | |
1785 | dprintk("governor: change or update limits\n"); | |
1786 | __cpufreq_governor(data, CPUFREQ_GOV_LIMITS); | |
1787 | } | |
1788 | ||
7d5e350f | 1789 | error_out: |
1da177e4 LT |
1790 | cpufreq_debug_enable_ratelimit(); |
1791 | return ret; | |
1792 | } | |
1793 | ||
1da177e4 LT |
1794 | /** |
1795 | * cpufreq_update_policy - re-evaluate an existing cpufreq policy | |
1796 | * @cpu: CPU which shall be re-evaluated | |
1797 | * | |
1798 | * Usefull for policy notifiers which have different necessities | |
1799 | * at different times. | |
1800 | */ | |
1801 | int cpufreq_update_policy(unsigned int cpu) | |
1802 | { | |
1803 | struct cpufreq_policy *data = cpufreq_cpu_get(cpu); | |
1804 | struct cpufreq_policy policy; | |
f1829e4a | 1805 | int ret; |
1da177e4 | 1806 | |
f1829e4a JL |
1807 | if (!data) { |
1808 | ret = -ENODEV; | |
1809 | goto no_policy; | |
1810 | } | |
1da177e4 | 1811 | |
f1829e4a JL |
1812 | if (unlikely(lock_policy_rwsem_write(cpu))) { |
1813 | ret = -EINVAL; | |
1814 | goto fail; | |
1815 | } | |
1da177e4 LT |
1816 | |
1817 | dprintk("updating policy for CPU %u\n", cpu); | |
7d5e350f | 1818 | memcpy(&policy, data, sizeof(struct cpufreq_policy)); |
1da177e4 LT |
1819 | policy.min = data->user_policy.min; |
1820 | policy.max = data->user_policy.max; | |
1821 | policy.policy = data->user_policy.policy; | |
1822 | policy.governor = data->user_policy.governor; | |
1823 | ||
0961dd0d TR |
1824 | /* BIOS might change freq behind our back |
1825 | -> ask driver for current freq and notify governors about a change */ | |
1826 | if (cpufreq_driver->get) { | |
1827 | policy.cur = cpufreq_driver->get(cpu); | |
a85f7bd3 TR |
1828 | if (!data->cur) { |
1829 | dprintk("Driver did not initialize current freq"); | |
1830 | data->cur = policy.cur; | |
1831 | } else { | |
1832 | if (data->cur != policy.cur) | |
e08f5f5b GS |
1833 | cpufreq_out_of_sync(cpu, data->cur, |
1834 | policy.cur); | |
a85f7bd3 | 1835 | } |
0961dd0d TR |
1836 | } |
1837 | ||
1da177e4 LT |
1838 | ret = __cpufreq_set_policy(data, &policy); |
1839 | ||
5a01f2e8 VP |
1840 | unlock_policy_rwsem_write(cpu); |
1841 | ||
f1829e4a | 1842 | fail: |
1da177e4 | 1843 | cpufreq_cpu_put(data); |
f1829e4a | 1844 | no_policy: |
1da177e4 LT |
1845 | return ret; |
1846 | } | |
1847 | EXPORT_SYMBOL(cpufreq_update_policy); | |
1848 | ||
dd184a01 | 1849 | static int __cpuinit cpufreq_cpu_callback(struct notifier_block *nfb, |
c32b6b8e AR |
1850 | unsigned long action, void *hcpu) |
1851 | { | |
1852 | unsigned int cpu = (unsigned long)hcpu; | |
c32b6b8e AR |
1853 | struct sys_device *sys_dev; |
1854 | ||
1855 | sys_dev = get_cpu_sysdev(cpu); | |
c32b6b8e AR |
1856 | if (sys_dev) { |
1857 | switch (action) { | |
1858 | case CPU_ONLINE: | |
8bb78442 | 1859 | case CPU_ONLINE_FROZEN: |
c32b6b8e AR |
1860 | cpufreq_add_dev(sys_dev); |
1861 | break; | |
1862 | case CPU_DOWN_PREPARE: | |
8bb78442 | 1863 | case CPU_DOWN_PREPARE_FROZEN: |
5a01f2e8 VP |
1864 | if (unlikely(lock_policy_rwsem_write(cpu))) |
1865 | BUG(); | |
1866 | ||
5a01f2e8 | 1867 | __cpufreq_remove_dev(sys_dev); |
c32b6b8e | 1868 | break; |
5a01f2e8 | 1869 | case CPU_DOWN_FAILED: |
8bb78442 | 1870 | case CPU_DOWN_FAILED_FROZEN: |
5a01f2e8 | 1871 | cpufreq_add_dev(sys_dev); |
c32b6b8e AR |
1872 | break; |
1873 | } | |
1874 | } | |
1875 | return NOTIFY_OK; | |
1876 | } | |
1877 | ||
f6ebef30 | 1878 | static struct notifier_block __refdata cpufreq_cpu_notifier = |
c32b6b8e AR |
1879 | { |
1880 | .notifier_call = cpufreq_cpu_callback, | |
1881 | }; | |
1da177e4 LT |
1882 | |
1883 | /********************************************************************* | |
1884 | * REGISTER / UNREGISTER CPUFREQ DRIVER * | |
1885 | *********************************************************************/ | |
1886 | ||
1887 | /** | |
1888 | * cpufreq_register_driver - register a CPU Frequency driver | |
1889 | * @driver_data: A struct cpufreq_driver containing the values# | |
1890 | * submitted by the CPU Frequency driver. | |
1891 | * | |
32ee8c3e | 1892 | * Registers a CPU Frequency driver to this core code. This code |
1da177e4 | 1893 | * returns zero on success, -EBUSY when another driver got here first |
32ee8c3e | 1894 | * (and isn't unregistered in the meantime). |
1da177e4 LT |
1895 | * |
1896 | */ | |
221dee28 | 1897 | int cpufreq_register_driver(struct cpufreq_driver *driver_data) |
1da177e4 LT |
1898 | { |
1899 | unsigned long flags; | |
1900 | int ret; | |
1901 | ||
1902 | if (!driver_data || !driver_data->verify || !driver_data->init || | |
1903 | ((!driver_data->setpolicy) && (!driver_data->target))) | |
1904 | return -EINVAL; | |
1905 | ||
1906 | dprintk("trying to register driver %s\n", driver_data->name); | |
1907 | ||
1908 | if (driver_data->setpolicy) | |
1909 | driver_data->flags |= CPUFREQ_CONST_LOOPS; | |
1910 | ||
1911 | spin_lock_irqsave(&cpufreq_driver_lock, flags); | |
1912 | if (cpufreq_driver) { | |
1913 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
1914 | return -EBUSY; | |
1915 | } | |
1916 | cpufreq_driver = driver_data; | |
1917 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
1918 | ||
7a6aedfa MT |
1919 | ret = sysdev_driver_register(&cpu_sysdev_class, |
1920 | &cpufreq_sysdev_driver); | |
1da177e4 LT |
1921 | |
1922 | if ((!ret) && !(cpufreq_driver->flags & CPUFREQ_STICKY)) { | |
1923 | int i; | |
1924 | ret = -ENODEV; | |
1925 | ||
1926 | /* check for at least one working CPU */ | |
7a6aedfa MT |
1927 | for (i = 0; i < nr_cpu_ids; i++) |
1928 | if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) { | |
1da177e4 | 1929 | ret = 0; |
7a6aedfa MT |
1930 | break; |
1931 | } | |
1da177e4 LT |
1932 | |
1933 | /* if all ->init() calls failed, unregister */ | |
1934 | if (ret) { | |
e08f5f5b GS |
1935 | dprintk("no CPU initialized for driver %s\n", |
1936 | driver_data->name); | |
1937 | sysdev_driver_unregister(&cpu_sysdev_class, | |
1938 | &cpufreq_sysdev_driver); | |
1da177e4 LT |
1939 | |
1940 | spin_lock_irqsave(&cpufreq_driver_lock, flags); | |
1941 | cpufreq_driver = NULL; | |
1942 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
1943 | } | |
1944 | } | |
1945 | ||
1946 | if (!ret) { | |
65edc68c | 1947 | register_hotcpu_notifier(&cpufreq_cpu_notifier); |
1da177e4 LT |
1948 | dprintk("driver %s up and running\n", driver_data->name); |
1949 | cpufreq_debug_enable_ratelimit(); | |
1950 | } | |
1951 | ||
4d34a67d | 1952 | return ret; |
1da177e4 LT |
1953 | } |
1954 | EXPORT_SYMBOL_GPL(cpufreq_register_driver); | |
1955 | ||
1956 | ||
1957 | /** | |
1958 | * cpufreq_unregister_driver - unregister the current CPUFreq driver | |
1959 | * | |
32ee8c3e | 1960 | * Unregister the current CPUFreq driver. Only call this if you have |
1da177e4 LT |
1961 | * the right to do so, i.e. if you have succeeded in initialising before! |
1962 | * Returns zero if successful, and -EINVAL if the cpufreq_driver is | |
1963 | * currently not initialised. | |
1964 | */ | |
221dee28 | 1965 | int cpufreq_unregister_driver(struct cpufreq_driver *driver) |
1da177e4 LT |
1966 | { |
1967 | unsigned long flags; | |
1968 | ||
1969 | cpufreq_debug_disable_ratelimit(); | |
1970 | ||
1971 | if (!cpufreq_driver || (driver != cpufreq_driver)) { | |
1972 | cpufreq_debug_enable_ratelimit(); | |
1973 | return -EINVAL; | |
1974 | } | |
1975 | ||
1976 | dprintk("unregistering driver %s\n", driver->name); | |
1977 | ||
1978 | sysdev_driver_unregister(&cpu_sysdev_class, &cpufreq_sysdev_driver); | |
65edc68c | 1979 | unregister_hotcpu_notifier(&cpufreq_cpu_notifier); |
1da177e4 LT |
1980 | |
1981 | spin_lock_irqsave(&cpufreq_driver_lock, flags); | |
1982 | cpufreq_driver = NULL; | |
1983 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
1984 | ||
1985 | return 0; | |
1986 | } | |
1987 | EXPORT_SYMBOL_GPL(cpufreq_unregister_driver); | |
5a01f2e8 VP |
1988 | |
1989 | static int __init cpufreq_core_init(void) | |
1990 | { | |
1991 | int cpu; | |
1992 | ||
1993 | for_each_possible_cpu(cpu) { | |
f1625066 | 1994 | per_cpu(cpufreq_policy_cpu, cpu) = -1; |
5a01f2e8 VP |
1995 | init_rwsem(&per_cpu(cpu_policy_rwsem, cpu)); |
1996 | } | |
8aa84ad8 TR |
1997 | |
1998 | cpufreq_global_kobject = kobject_create_and_add("cpufreq", | |
1999 | &cpu_sysdev_class.kset.kobj); | |
2000 | BUG_ON(!cpufreq_global_kobject); | |
2001 | ||
5a01f2e8 VP |
2002 | return 0; |
2003 | } | |
5a01f2e8 | 2004 | core_initcall(cpufreq_core_init); |