]>
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 <[email protected]> | |
bb176f7d | 6 | * (C) 2013 Viresh Kumar <[email protected]> |
1da177e4 | 7 | * |
c32b6b8e | 8 | * Oct 2005 - Ashok Raj <[email protected]> |
32ee8c3e | 9 | * Added handling for CPU hotplug |
8ff69732 DJ |
10 | * Feb 2006 - Jacob Shin <[email protected]> |
11 | * Fix handling for CPU hotplug -- affected CPUs | |
c32b6b8e | 12 | * |
1da177e4 LT |
13 | * This program is free software; you can redistribute it and/or modify |
14 | * it under the terms of the GNU General Public License version 2 as | |
15 | * published by the Free Software Foundation. | |
1da177e4 LT |
16 | */ |
17 | ||
db701151 VK |
18 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
19 | ||
5ff0a268 | 20 | #include <linux/cpu.h> |
1da177e4 LT |
21 | #include <linux/cpufreq.h> |
22 | #include <linux/delay.h> | |
1da177e4 | 23 | #include <linux/device.h> |
5ff0a268 VK |
24 | #include <linux/init.h> |
25 | #include <linux/kernel_stat.h> | |
26 | #include <linux/module.h> | |
3fc54d37 | 27 | #include <linux/mutex.h> |
5ff0a268 | 28 | #include <linux/slab.h> |
2f0aea93 | 29 | #include <linux/suspend.h> |
90de2a4a | 30 | #include <linux/syscore_ops.h> |
5ff0a268 | 31 | #include <linux/tick.h> |
6f4f2723 TR |
32 | #include <trace/events/power.h> |
33 | ||
b4f0676f | 34 | static LIST_HEAD(cpufreq_policy_list); |
f963735a VK |
35 | |
36 | static inline bool policy_is_inactive(struct cpufreq_policy *policy) | |
37 | { | |
38 | return cpumask_empty(policy->cpus); | |
39 | } | |
40 | ||
f963735a | 41 | /* Macros to iterate over CPU policies */ |
fd7dc7e6 EB |
42 | #define for_each_suitable_policy(__policy, __active) \ |
43 | list_for_each_entry(__policy, &cpufreq_policy_list, policy_list) \ | |
44 | if ((__active) == !policy_is_inactive(__policy)) | |
f963735a VK |
45 | |
46 | #define for_each_active_policy(__policy) \ | |
47 | for_each_suitable_policy(__policy, true) | |
48 | #define for_each_inactive_policy(__policy) \ | |
49 | for_each_suitable_policy(__policy, false) | |
50 | ||
51 | #define for_each_policy(__policy) \ | |
b4f0676f VK |
52 | list_for_each_entry(__policy, &cpufreq_policy_list, policy_list) |
53 | ||
f7b27061 VK |
54 | /* Iterate over governors */ |
55 | static LIST_HEAD(cpufreq_governor_list); | |
56 | #define for_each_governor(__governor) \ | |
57 | list_for_each_entry(__governor, &cpufreq_governor_list, governor_list) | |
58 | ||
1da177e4 | 59 | /** |
cd878479 | 60 | * The "cpufreq driver" - the arch- or hardware-dependent low |
1da177e4 LT |
61 | * level driver of CPUFreq support, and its spinlock. This lock |
62 | * also protects the cpufreq_cpu_data array. | |
63 | */ | |
1c3d85dd | 64 | static struct cpufreq_driver *cpufreq_driver; |
7a6aedfa | 65 | static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data); |
bb176f7d | 66 | static DEFINE_RWLOCK(cpufreq_driver_lock); |
bb176f7d | 67 | |
2f0aea93 VK |
68 | /* Flag to suspend/resume CPUFreq governors */ |
69 | static bool cpufreq_suspended; | |
1da177e4 | 70 | |
9c0ebcf7 VK |
71 | static inline bool has_target(void) |
72 | { | |
73 | return cpufreq_driver->target_index || cpufreq_driver->target; | |
74 | } | |
75 | ||
1da177e4 | 76 | /* internal prototypes */ |
d92d50a4 | 77 | static unsigned int __cpufreq_get(struct cpufreq_policy *policy); |
a92604b4 RW |
78 | static int cpufreq_init_governor(struct cpufreq_policy *policy); |
79 | static void cpufreq_exit_governor(struct cpufreq_policy *policy); | |
0a300767 | 80 | static int cpufreq_start_governor(struct cpufreq_policy *policy); |
a92604b4 RW |
81 | static void cpufreq_stop_governor(struct cpufreq_policy *policy); |
82 | static void cpufreq_governor_limits(struct cpufreq_policy *policy); | |
45482c70 | 83 | |
1da177e4 | 84 | /** |
32ee8c3e DJ |
85 | * Two notifier lists: the "policy" list is involved in the |
86 | * validation process for a new CPU frequency policy; the | |
1da177e4 LT |
87 | * "transition" list for kernel code that needs to handle |
88 | * changes to devices when the CPU clock speed changes. | |
89 | * The mutex locks both lists. | |
90 | */ | |
e041c683 | 91 | static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list); |
cc85de36 | 92 | SRCU_NOTIFIER_HEAD_STATIC(cpufreq_transition_notifier_list); |
1da177e4 | 93 | |
a7b422cd | 94 | static int off __read_mostly; |
da584455 | 95 | static int cpufreq_disabled(void) |
a7b422cd KRW |
96 | { |
97 | return off; | |
98 | } | |
99 | void disable_cpufreq(void) | |
100 | { | |
101 | off = 1; | |
102 | } | |
29464f28 | 103 | static DEFINE_MUTEX(cpufreq_governor_mutex); |
1da177e4 | 104 | |
4d5dcc42 VK |
105 | bool have_governor_per_policy(void) |
106 | { | |
0b981e70 | 107 | return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY); |
4d5dcc42 | 108 | } |
3f869d6d | 109 | EXPORT_SYMBOL_GPL(have_governor_per_policy); |
4d5dcc42 | 110 | |
944e9a03 VK |
111 | struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy) |
112 | { | |
113 | if (have_governor_per_policy()) | |
114 | return &policy->kobj; | |
115 | else | |
116 | return cpufreq_global_kobject; | |
117 | } | |
118 | EXPORT_SYMBOL_GPL(get_governor_parent_kobj); | |
119 | ||
72a4ce34 VK |
120 | static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall) |
121 | { | |
122 | u64 idle_time; | |
123 | u64 cur_wall_time; | |
124 | u64 busy_time; | |
125 | ||
7fb1327e | 126 | cur_wall_time = jiffies64_to_nsecs(get_jiffies_64()); |
72a4ce34 VK |
127 | |
128 | busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER]; | |
129 | busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM]; | |
130 | busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ]; | |
131 | busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ]; | |
132 | busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL]; | |
133 | busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE]; | |
134 | ||
135 | idle_time = cur_wall_time - busy_time; | |
136 | if (wall) | |
7fb1327e | 137 | *wall = div_u64(cur_wall_time, NSEC_PER_USEC); |
72a4ce34 | 138 | |
7fb1327e | 139 | return div_u64(idle_time, NSEC_PER_USEC); |
72a4ce34 VK |
140 | } |
141 | ||
142 | u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy) | |
143 | { | |
144 | u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL); | |
145 | ||
146 | if (idle_time == -1ULL) | |
147 | return get_cpu_idle_time_jiffy(cpu, wall); | |
148 | else if (!io_busy) | |
149 | idle_time += get_cpu_iowait_time_us(cpu, wall); | |
150 | ||
151 | return idle_time; | |
152 | } | |
153 | EXPORT_SYMBOL_GPL(get_cpu_idle_time); | |
154 | ||
e7d5459d DE |
155 | __weak void arch_set_freq_scale(struct cpumask *cpus, unsigned long cur_freq, |
156 | unsigned long max_freq) | |
157 | { | |
158 | } | |
159 | EXPORT_SYMBOL_GPL(arch_set_freq_scale); | |
160 | ||
70e9e778 VK |
161 | /* |
162 | * This is a generic cpufreq init() routine which can be used by cpufreq | |
163 | * drivers of SMP systems. It will do following: | |
164 | * - validate & show freq table passed | |
165 | * - set policies transition latency | |
166 | * - policy->cpus with all possible CPUs | |
167 | */ | |
168 | int cpufreq_generic_init(struct cpufreq_policy *policy, | |
169 | struct cpufreq_frequency_table *table, | |
170 | unsigned int transition_latency) | |
171 | { | |
92c99d15 | 172 | policy->freq_table = table; |
70e9e778 VK |
173 | policy->cpuinfo.transition_latency = transition_latency; |
174 | ||
175 | /* | |
58405af6 | 176 | * The driver only supports the SMP configuration where all processors |
70e9e778 VK |
177 | * share the clock and voltage and clock. |
178 | */ | |
179 | cpumask_setall(policy->cpus); | |
180 | ||
181 | return 0; | |
182 | } | |
183 | EXPORT_SYMBOL_GPL(cpufreq_generic_init); | |
184 | ||
1f0bd44e | 185 | struct cpufreq_policy *cpufreq_cpu_get_raw(unsigned int cpu) |
652ed95d VK |
186 | { |
187 | struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu); | |
188 | ||
988bed09 VK |
189 | return policy && cpumask_test_cpu(cpu, policy->cpus) ? policy : NULL; |
190 | } | |
1f0bd44e | 191 | EXPORT_SYMBOL_GPL(cpufreq_cpu_get_raw); |
988bed09 VK |
192 | |
193 | unsigned int cpufreq_generic_get(unsigned int cpu) | |
194 | { | |
195 | struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu); | |
196 | ||
652ed95d | 197 | if (!policy || IS_ERR(policy->clk)) { |
e837f9b5 JP |
198 | pr_err("%s: No %s associated to cpu: %d\n", |
199 | __func__, policy ? "clk" : "policy", cpu); | |
652ed95d VK |
200 | return 0; |
201 | } | |
202 | ||
203 | return clk_get_rate(policy->clk) / 1000; | |
204 | } | |
205 | EXPORT_SYMBOL_GPL(cpufreq_generic_get); | |
206 | ||
50e9c852 VK |
207 | /** |
208 | * cpufreq_cpu_get: returns policy for a cpu and marks it busy. | |
209 | * | |
210 | * @cpu: cpu to find policy for. | |
211 | * | |
212 | * This returns policy for 'cpu', returns NULL if it doesn't exist. | |
213 | * It also increments the kobject reference count to mark it busy and so would | |
214 | * require a corresponding call to cpufreq_cpu_put() to decrement it back. | |
215 | * If corresponding call cpufreq_cpu_put() isn't made, the policy wouldn't be | |
216 | * freed as that depends on the kobj count. | |
217 | * | |
50e9c852 VK |
218 | * Return: A valid policy on success, otherwise NULL on failure. |
219 | */ | |
6eed9404 | 220 | struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu) |
1da177e4 | 221 | { |
6eed9404 | 222 | struct cpufreq_policy *policy = NULL; |
1da177e4 LT |
223 | unsigned long flags; |
224 | ||
1b947c90 | 225 | if (WARN_ON(cpu >= nr_cpu_ids)) |
6eed9404 VK |
226 | return NULL; |
227 | ||
1da177e4 | 228 | /* get the cpufreq driver */ |
1c3d85dd | 229 | read_lock_irqsave(&cpufreq_driver_lock, flags); |
1da177e4 | 230 | |
6eed9404 VK |
231 | if (cpufreq_driver) { |
232 | /* get the CPU */ | |
988bed09 | 233 | policy = cpufreq_cpu_get_raw(cpu); |
6eed9404 VK |
234 | if (policy) |
235 | kobject_get(&policy->kobj); | |
236 | } | |
1da177e4 | 237 | |
6eed9404 | 238 | read_unlock_irqrestore(&cpufreq_driver_lock, flags); |
1da177e4 | 239 | |
3a3e9e06 | 240 | return policy; |
a9144436 | 241 | } |
1da177e4 LT |
242 | EXPORT_SYMBOL_GPL(cpufreq_cpu_get); |
243 | ||
50e9c852 VK |
244 | /** |
245 | * cpufreq_cpu_put: Decrements the usage count of a policy | |
246 | * | |
247 | * @policy: policy earlier returned by cpufreq_cpu_get(). | |
248 | * | |
249 | * This decrements the kobject reference count incremented earlier by calling | |
250 | * cpufreq_cpu_get(). | |
50e9c852 | 251 | */ |
3a3e9e06 | 252 | void cpufreq_cpu_put(struct cpufreq_policy *policy) |
1da177e4 | 253 | { |
6eed9404 | 254 | kobject_put(&policy->kobj); |
1da177e4 LT |
255 | } |
256 | EXPORT_SYMBOL_GPL(cpufreq_cpu_put); | |
257 | ||
1da177e4 LT |
258 | /********************************************************************* |
259 | * EXTERNALLY AFFECTING FREQUENCY CHANGES * | |
260 | *********************************************************************/ | |
261 | ||
262 | /** | |
263 | * adjust_jiffies - adjust the system "loops_per_jiffy" | |
264 | * | |
265 | * This function alters the system "loops_per_jiffy" for the clock | |
266 | * speed change. Note that loops_per_jiffy cannot be updated on SMP | |
32ee8c3e | 267 | * systems as each CPU might be scaled differently. So, use the arch |
1da177e4 LT |
268 | * per-CPU loops_per_jiffy value wherever possible. |
269 | */ | |
858119e1 | 270 | static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci) |
1da177e4 | 271 | { |
39c132ee VK |
272 | #ifndef CONFIG_SMP |
273 | static unsigned long l_p_j_ref; | |
274 | static unsigned int l_p_j_ref_freq; | |
275 | ||
1da177e4 LT |
276 | if (ci->flags & CPUFREQ_CONST_LOOPS) |
277 | return; | |
278 | ||
279 | if (!l_p_j_ref_freq) { | |
280 | l_p_j_ref = loops_per_jiffy; | |
281 | l_p_j_ref_freq = ci->old; | |
e837f9b5 JP |
282 | pr_debug("saving %lu as reference value for loops_per_jiffy; freq is %u kHz\n", |
283 | l_p_j_ref, l_p_j_ref_freq); | |
1da177e4 | 284 | } |
0b443ead | 285 | if (val == CPUFREQ_POSTCHANGE && ci->old != ci->new) { |
e08f5f5b GS |
286 | loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq, |
287 | ci->new); | |
e837f9b5 JP |
288 | pr_debug("scaling loops_per_jiffy to %lu for frequency %u kHz\n", |
289 | loops_per_jiffy, ci->new); | |
1da177e4 | 290 | } |
1da177e4 | 291 | #endif |
39c132ee | 292 | } |
1da177e4 | 293 | |
20b5324d VK |
294 | /** |
295 | * cpufreq_notify_transition - Notify frequency transition and adjust_jiffies. | |
296 | * @policy: cpufreq policy to enable fast frequency switching for. | |
297 | * @freqs: contain details of the frequency update. | |
298 | * @state: set to CPUFREQ_PRECHANGE or CPUFREQ_POSTCHANGE. | |
299 | * | |
300 | * This function calls the transition notifiers and the "adjust_jiffies" | |
301 | * function. It is called twice on all CPU frequency changes that have | |
302 | * external effects. | |
303 | */ | |
304 | static void cpufreq_notify_transition(struct cpufreq_policy *policy, | |
305 | struct cpufreq_freqs *freqs, | |
306 | unsigned int state) | |
1da177e4 LT |
307 | { |
308 | BUG_ON(irqs_disabled()); | |
309 | ||
d5aaffa9 DB |
310 | if (cpufreq_disabled()) |
311 | return; | |
312 | ||
1c3d85dd | 313 | freqs->flags = cpufreq_driver->flags; |
2d06d8c4 | 314 | pr_debug("notification %u of frequency transition to %u kHz\n", |
e837f9b5 | 315 | state, freqs->new); |
1da177e4 | 316 | |
1da177e4 LT |
317 | switch (state) { |
318 | case CPUFREQ_PRECHANGE: | |
20b5324d VK |
319 | /* |
320 | * Detect if the driver reported a value as "old frequency" | |
e4472cb3 DJ |
321 | * which is not equal to what the cpufreq core thinks is |
322 | * "old frequency". | |
1da177e4 | 323 | */ |
1c3d85dd | 324 | if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) { |
20b5324d | 325 | if (policy->cur && (policy->cur != freqs->old)) { |
e837f9b5 JP |
326 | pr_debug("Warning: CPU frequency is %u, cpufreq assumed %u kHz\n", |
327 | freqs->old, policy->cur); | |
e4472cb3 | 328 | freqs->old = policy->cur; |
1da177e4 LT |
329 | } |
330 | } | |
20b5324d VK |
331 | |
332 | for_each_cpu(freqs->cpu, policy->cpus) { | |
333 | srcu_notifier_call_chain(&cpufreq_transition_notifier_list, | |
334 | CPUFREQ_PRECHANGE, freqs); | |
335 | } | |
336 | ||
1da177e4 LT |
337 | adjust_jiffies(CPUFREQ_PRECHANGE, freqs); |
338 | break; | |
e4472cb3 | 339 | |
1da177e4 LT |
340 | case CPUFREQ_POSTCHANGE: |
341 | adjust_jiffies(CPUFREQ_POSTCHANGE, freqs); | |
20b5324d VK |
342 | pr_debug("FREQ: %u - CPUs: %*pbl\n", freqs->new, |
343 | cpumask_pr_args(policy->cpus)); | |
344 | ||
345 | for_each_cpu(freqs->cpu, policy->cpus) { | |
346 | trace_cpu_frequency(freqs->new, freqs->cpu); | |
347 | srcu_notifier_call_chain(&cpufreq_transition_notifier_list, | |
348 | CPUFREQ_POSTCHANGE, freqs); | |
349 | } | |
350 | ||
1aefc75b | 351 | cpufreq_stats_record_transition(policy, freqs->new); |
20b5324d | 352 | policy->cur = freqs->new; |
1da177e4 | 353 | } |
1da177e4 | 354 | } |
bb176f7d | 355 | |
f7ba3b41 | 356 | /* Do post notifications when there are chances that transition has failed */ |
236a9800 | 357 | static void cpufreq_notify_post_transition(struct cpufreq_policy *policy, |
f7ba3b41 VK |
358 | struct cpufreq_freqs *freqs, int transition_failed) |
359 | { | |
360 | cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE); | |
361 | if (!transition_failed) | |
362 | return; | |
363 | ||
364 | swap(freqs->old, freqs->new); | |
365 | cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE); | |
366 | cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE); | |
367 | } | |
f7ba3b41 | 368 | |
12478cf0 SB |
369 | void cpufreq_freq_transition_begin(struct cpufreq_policy *policy, |
370 | struct cpufreq_freqs *freqs) | |
371 | { | |
ca654dc3 SB |
372 | |
373 | /* | |
374 | * Catch double invocations of _begin() which lead to self-deadlock. | |
375 | * ASYNC_NOTIFICATION drivers are left out because the cpufreq core | |
376 | * doesn't invoke _begin() on their behalf, and hence the chances of | |
377 | * double invocations are very low. Moreover, there are scenarios | |
378 | * where these checks can emit false-positive warnings in these | |
379 | * drivers; so we avoid that by skipping them altogether. | |
380 | */ | |
381 | WARN_ON(!(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION) | |
382 | && current == policy->transition_task); | |
383 | ||
12478cf0 SB |
384 | wait: |
385 | wait_event(policy->transition_wait, !policy->transition_ongoing); | |
386 | ||
387 | spin_lock(&policy->transition_lock); | |
388 | ||
389 | if (unlikely(policy->transition_ongoing)) { | |
390 | spin_unlock(&policy->transition_lock); | |
391 | goto wait; | |
392 | } | |
393 | ||
394 | policy->transition_ongoing = true; | |
ca654dc3 | 395 | policy->transition_task = current; |
12478cf0 SB |
396 | |
397 | spin_unlock(&policy->transition_lock); | |
398 | ||
399 | cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE); | |
400 | } | |
401 | EXPORT_SYMBOL_GPL(cpufreq_freq_transition_begin); | |
402 | ||
403 | void cpufreq_freq_transition_end(struct cpufreq_policy *policy, | |
404 | struct cpufreq_freqs *freqs, int transition_failed) | |
405 | { | |
0e7ea2f3 | 406 | if (WARN_ON(!policy->transition_ongoing)) |
12478cf0 SB |
407 | return; |
408 | ||
409 | cpufreq_notify_post_transition(policy, freqs, transition_failed); | |
410 | ||
411 | policy->transition_ongoing = false; | |
ca654dc3 | 412 | policy->transition_task = NULL; |
12478cf0 SB |
413 | |
414 | wake_up(&policy->transition_wait); | |
415 | } | |
416 | EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end); | |
417 | ||
b7898fda RW |
418 | /* |
419 | * Fast frequency switching status count. Positive means "enabled", negative | |
420 | * means "disabled" and 0 means "not decided yet". | |
421 | */ | |
422 | static int cpufreq_fast_switch_count; | |
423 | static DEFINE_MUTEX(cpufreq_fast_switch_lock); | |
424 | ||
425 | static void cpufreq_list_transition_notifiers(void) | |
426 | { | |
427 | struct notifier_block *nb; | |
428 | ||
429 | pr_info("Registered transition notifiers:\n"); | |
430 | ||
431 | mutex_lock(&cpufreq_transition_notifier_list.mutex); | |
432 | ||
433 | for (nb = cpufreq_transition_notifier_list.head; nb; nb = nb->next) | |
434 | pr_info("%pF\n", nb->notifier_call); | |
435 | ||
436 | mutex_unlock(&cpufreq_transition_notifier_list.mutex); | |
437 | } | |
438 | ||
439 | /** | |
440 | * cpufreq_enable_fast_switch - Enable fast frequency switching for policy. | |
441 | * @policy: cpufreq policy to enable fast frequency switching for. | |
442 | * | |
443 | * Try to enable fast frequency switching for @policy. | |
444 | * | |
445 | * The attempt will fail if there is at least one transition notifier registered | |
446 | * at this point, as fast frequency switching is quite fundamentally at odds | |
447 | * with transition notifiers. Thus if successful, it will make registration of | |
448 | * transition notifiers fail going forward. | |
449 | */ | |
450 | void cpufreq_enable_fast_switch(struct cpufreq_policy *policy) | |
451 | { | |
452 | lockdep_assert_held(&policy->rwsem); | |
453 | ||
454 | if (!policy->fast_switch_possible) | |
455 | return; | |
456 | ||
457 | mutex_lock(&cpufreq_fast_switch_lock); | |
458 | if (cpufreq_fast_switch_count >= 0) { | |
459 | cpufreq_fast_switch_count++; | |
460 | policy->fast_switch_enabled = true; | |
461 | } else { | |
462 | pr_warn("CPU%u: Fast frequency switching not enabled\n", | |
463 | policy->cpu); | |
464 | cpufreq_list_transition_notifiers(); | |
465 | } | |
466 | mutex_unlock(&cpufreq_fast_switch_lock); | |
467 | } | |
468 | EXPORT_SYMBOL_GPL(cpufreq_enable_fast_switch); | |
469 | ||
6c9d9c81 RW |
470 | /** |
471 | * cpufreq_disable_fast_switch - Disable fast frequency switching for policy. | |
472 | * @policy: cpufreq policy to disable fast frequency switching for. | |
473 | */ | |
474 | void cpufreq_disable_fast_switch(struct cpufreq_policy *policy) | |
b7898fda RW |
475 | { |
476 | mutex_lock(&cpufreq_fast_switch_lock); | |
477 | if (policy->fast_switch_enabled) { | |
478 | policy->fast_switch_enabled = false; | |
479 | if (!WARN_ON(cpufreq_fast_switch_count <= 0)) | |
480 | cpufreq_fast_switch_count--; | |
481 | } | |
482 | mutex_unlock(&cpufreq_fast_switch_lock); | |
483 | } | |
6c9d9c81 | 484 | EXPORT_SYMBOL_GPL(cpufreq_disable_fast_switch); |
1da177e4 | 485 | |
e3c06236 SM |
486 | /** |
487 | * cpufreq_driver_resolve_freq - Map a target frequency to a driver-supported | |
488 | * one. | |
489 | * @target_freq: target frequency to resolve. | |
490 | * | |
491 | * The target to driver frequency mapping is cached in the policy. | |
492 | * | |
493 | * Return: Lowest driver-supported frequency greater than or equal to the | |
494 | * given target_freq, subject to policy (min/max) and driver limitations. | |
495 | */ | |
496 | unsigned int cpufreq_driver_resolve_freq(struct cpufreq_policy *policy, | |
497 | unsigned int target_freq) | |
498 | { | |
499 | target_freq = clamp_val(target_freq, policy->min, policy->max); | |
500 | policy->cached_target_freq = target_freq; | |
abe8bd02 VK |
501 | |
502 | if (cpufreq_driver->target_index) { | |
503 | int idx; | |
504 | ||
505 | idx = cpufreq_frequency_table_target(policy, target_freq, | |
506 | CPUFREQ_RELATION_L); | |
507 | policy->cached_resolved_idx = idx; | |
508 | return policy->freq_table[idx].frequency; | |
509 | } | |
510 | ||
e3c06236 SM |
511 | if (cpufreq_driver->resolve_freq) |
512 | return cpufreq_driver->resolve_freq(policy, target_freq); | |
abe8bd02 VK |
513 | |
514 | return target_freq; | |
e3c06236 | 515 | } |
ae2c1ca6 | 516 | EXPORT_SYMBOL_GPL(cpufreq_driver_resolve_freq); |
e3c06236 | 517 | |
aa7519af VK |
518 | unsigned int cpufreq_policy_transition_delay_us(struct cpufreq_policy *policy) |
519 | { | |
520 | unsigned int latency; | |
521 | ||
522 | if (policy->transition_delay_us) | |
523 | return policy->transition_delay_us; | |
524 | ||
525 | latency = policy->cpuinfo.transition_latency / NSEC_PER_USEC; | |
e948bc8f VK |
526 | if (latency) { |
527 | /* | |
528 | * For platforms that can change the frequency very fast (< 10 | |
529 | * us), the above formula gives a decent transition delay. But | |
530 | * for platforms where transition_latency is in milliseconds, it | |
531 | * ends up giving unrealistic values. | |
532 | * | |
533 | * Cap the default transition delay to 10 ms, which seems to be | |
534 | * a reasonable amount of time after which we should reevaluate | |
535 | * the frequency. | |
536 | */ | |
537 | return min(latency * LATENCY_MULTIPLIER, (unsigned int)10000); | |
538 | } | |
aa7519af VK |
539 | |
540 | return LATENCY_MULTIPLIER; | |
541 | } | |
542 | EXPORT_SYMBOL_GPL(cpufreq_policy_transition_delay_us); | |
543 | ||
1da177e4 LT |
544 | /********************************************************************* |
545 | * SYSFS INTERFACE * | |
546 | *********************************************************************/ | |
8a5c74a1 | 547 | static ssize_t show_boost(struct kobject *kobj, |
6f19efc0 LM |
548 | struct attribute *attr, char *buf) |
549 | { | |
550 | return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled); | |
551 | } | |
552 | ||
553 | static ssize_t store_boost(struct kobject *kobj, struct attribute *attr, | |
554 | const char *buf, size_t count) | |
555 | { | |
556 | int ret, enable; | |
557 | ||
558 | ret = sscanf(buf, "%d", &enable); | |
559 | if (ret != 1 || enable < 0 || enable > 1) | |
560 | return -EINVAL; | |
561 | ||
562 | if (cpufreq_boost_trigger_state(enable)) { | |
e837f9b5 JP |
563 | pr_err("%s: Cannot %s BOOST!\n", |
564 | __func__, enable ? "enable" : "disable"); | |
6f19efc0 LM |
565 | return -EINVAL; |
566 | } | |
567 | ||
e837f9b5 JP |
568 | pr_debug("%s: cpufreq BOOST %s\n", |
569 | __func__, enable ? "enabled" : "disabled"); | |
6f19efc0 LM |
570 | |
571 | return count; | |
572 | } | |
573 | define_one_global_rw(boost); | |
1da177e4 | 574 | |
42f91fa1 | 575 | static struct cpufreq_governor *find_governor(const char *str_governor) |
3bcb09a3 JF |
576 | { |
577 | struct cpufreq_governor *t; | |
578 | ||
f7b27061 | 579 | for_each_governor(t) |
7c4f4539 | 580 | if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN)) |
3bcb09a3 JF |
581 | return t; |
582 | ||
583 | return NULL; | |
584 | } | |
585 | ||
1da177e4 LT |
586 | /** |
587 | * cpufreq_parse_governor - parse a governor string | |
588 | */ | |
ae0ff89f RW |
589 | static int cpufreq_parse_governor(char *str_governor, |
590 | struct cpufreq_policy *policy) | |
1da177e4 | 591 | { |
1c3d85dd | 592 | if (cpufreq_driver->setpolicy) { |
7c4f4539 | 593 | if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) { |
ae0ff89f | 594 | policy->policy = CPUFREQ_POLICY_PERFORMANCE; |
045149e6 RW |
595 | return 0; |
596 | } | |
597 | ||
598 | if (!strncasecmp(str_governor, "powersave", CPUFREQ_NAME_LEN)) { | |
ae0ff89f | 599 | policy->policy = CPUFREQ_POLICY_POWERSAVE; |
045149e6 | 600 | return 0; |
1da177e4 | 601 | } |
2e1cc3a5 | 602 | } else { |
1da177e4 | 603 | struct cpufreq_governor *t; |
3bcb09a3 | 604 | |
3fc54d37 | 605 | mutex_lock(&cpufreq_governor_mutex); |
3bcb09a3 | 606 | |
42f91fa1 | 607 | t = find_governor(str_governor); |
045149e6 | 608 | if (!t) { |
1a8e1463 | 609 | int ret; |
ea714970 | 610 | |
1a8e1463 | 611 | mutex_unlock(&cpufreq_governor_mutex); |
045149e6 | 612 | |
1a8e1463 | 613 | ret = request_module("cpufreq_%s", str_governor); |
045149e6 RW |
614 | if (ret) |
615 | return -EINVAL; | |
616 | ||
1a8e1463 | 617 | mutex_lock(&cpufreq_governor_mutex); |
ea714970 | 618 | |
045149e6 | 619 | t = find_governor(str_governor); |
ea714970 | 620 | } |
a8b149d3 RW |
621 | if (t && !try_module_get(t->owner)) |
622 | t = NULL; | |
ea714970 | 623 | |
045149e6 RW |
624 | mutex_unlock(&cpufreq_governor_mutex); |
625 | ||
626 | if (t) { | |
ae0ff89f | 627 | policy->governor = t; |
045149e6 | 628 | return 0; |
1da177e4 | 629 | } |
1da177e4 | 630 | } |
045149e6 RW |
631 | |
632 | return -EINVAL; | |
1da177e4 | 633 | } |
1da177e4 | 634 | |
1da177e4 | 635 | /** |
e08f5f5b GS |
636 | * cpufreq_per_cpu_attr_read() / show_##file_name() - |
637 | * print out cpufreq information | |
1da177e4 LT |
638 | * |
639 | * Write out information from cpufreq_driver->policy[cpu]; object must be | |
640 | * "unsigned int". | |
641 | */ | |
642 | ||
32ee8c3e DJ |
643 | #define show_one(file_name, object) \ |
644 | static ssize_t show_##file_name \ | |
905d77cd | 645 | (struct cpufreq_policy *policy, char *buf) \ |
32ee8c3e | 646 | { \ |
29464f28 | 647 | return sprintf(buf, "%u\n", policy->object); \ |
1da177e4 LT |
648 | } |
649 | ||
650 | show_one(cpuinfo_min_freq, cpuinfo.min_freq); | |
651 | show_one(cpuinfo_max_freq, cpuinfo.max_freq); | |
ed129784 | 652 | show_one(cpuinfo_transition_latency, cpuinfo.transition_latency); |
1da177e4 LT |
653 | show_one(scaling_min_freq, min); |
654 | show_one(scaling_max_freq, max); | |
c034b02e | 655 | |
f8475cef LB |
656 | __weak unsigned int arch_freq_get_on_cpu(int cpu) |
657 | { | |
658 | return 0; | |
659 | } | |
660 | ||
09347b29 | 661 | static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf) |
c034b02e DB |
662 | { |
663 | ssize_t ret; | |
f8475cef | 664 | unsigned int freq; |
c034b02e | 665 | |
f8475cef LB |
666 | freq = arch_freq_get_on_cpu(policy->cpu); |
667 | if (freq) | |
668 | ret = sprintf(buf, "%u\n", freq); | |
669 | else if (cpufreq_driver && cpufreq_driver->setpolicy && | |
670 | cpufreq_driver->get) | |
c034b02e DB |
671 | ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu)); |
672 | else | |
673 | ret = sprintf(buf, "%u\n", policy->cur); | |
674 | return ret; | |
675 | } | |
1da177e4 | 676 | |
037ce839 | 677 | static int cpufreq_set_policy(struct cpufreq_policy *policy, |
3a3e9e06 | 678 | struct cpufreq_policy *new_policy); |
7970e08b | 679 | |
1da177e4 LT |
680 | /** |
681 | * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access | |
682 | */ | |
683 | #define store_one(file_name, object) \ | |
684 | static ssize_t store_##file_name \ | |
905d77cd | 685 | (struct cpufreq_policy *policy, const char *buf, size_t count) \ |
1da177e4 | 686 | { \ |
619c144c | 687 | int ret, temp; \ |
1da177e4 LT |
688 | struct cpufreq_policy new_policy; \ |
689 | \ | |
8fa5b631 | 690 | memcpy(&new_policy, policy, sizeof(*policy)); \ |
c7d1f119 TW |
691 | new_policy.min = policy->user_policy.min; \ |
692 | new_policy.max = policy->user_policy.max; \ | |
1da177e4 | 693 | \ |
29464f28 | 694 | ret = sscanf(buf, "%u", &new_policy.object); \ |
1da177e4 LT |
695 | if (ret != 1) \ |
696 | return -EINVAL; \ | |
697 | \ | |
619c144c | 698 | temp = new_policy.object; \ |
037ce839 | 699 | ret = cpufreq_set_policy(policy, &new_policy); \ |
619c144c VH |
700 | if (!ret) \ |
701 | policy->user_policy.object = temp; \ | |
1da177e4 LT |
702 | \ |
703 | return ret ? ret : count; \ | |
704 | } | |
705 | ||
29464f28 DJ |
706 | store_one(scaling_min_freq, min); |
707 | store_one(scaling_max_freq, max); | |
1da177e4 LT |
708 | |
709 | /** | |
710 | * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware | |
711 | */ | |
905d77cd DJ |
712 | static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy, |
713 | char *buf) | |
1da177e4 | 714 | { |
d92d50a4 | 715 | unsigned int cur_freq = __cpufreq_get(policy); |
9b4f603e RW |
716 | |
717 | if (cur_freq) | |
718 | return sprintf(buf, "%u\n", cur_freq); | |
719 | ||
720 | return sprintf(buf, "<unknown>\n"); | |
1da177e4 LT |
721 | } |
722 | ||
1da177e4 LT |
723 | /** |
724 | * show_scaling_governor - show the current policy for the specified CPU | |
725 | */ | |
905d77cd | 726 | static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf) |
1da177e4 | 727 | { |
29464f28 | 728 | if (policy->policy == CPUFREQ_POLICY_POWERSAVE) |
1da177e4 LT |
729 | return sprintf(buf, "powersave\n"); |
730 | else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) | |
731 | return sprintf(buf, "performance\n"); | |
732 | else if (policy->governor) | |
4b972f0b | 733 | return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", |
29464f28 | 734 | policy->governor->name); |
1da177e4 LT |
735 | return -EINVAL; |
736 | } | |
737 | ||
1da177e4 LT |
738 | /** |
739 | * store_scaling_governor - store policy for the specified CPU | |
740 | */ | |
905d77cd DJ |
741 | static ssize_t store_scaling_governor(struct cpufreq_policy *policy, |
742 | const char *buf, size_t count) | |
1da177e4 | 743 | { |
5136fa56 | 744 | int ret; |
1da177e4 LT |
745 | char str_governor[16]; |
746 | struct cpufreq_policy new_policy; | |
747 | ||
8fa5b631 | 748 | memcpy(&new_policy, policy, sizeof(*policy)); |
1da177e4 | 749 | |
29464f28 | 750 | ret = sscanf(buf, "%15s", str_governor); |
1da177e4 LT |
751 | if (ret != 1) |
752 | return -EINVAL; | |
753 | ||
ae0ff89f | 754 | if (cpufreq_parse_governor(str_governor, &new_policy)) |
1da177e4 LT |
755 | return -EINVAL; |
756 | ||
037ce839 | 757 | ret = cpufreq_set_policy(policy, &new_policy); |
a8b149d3 RW |
758 | |
759 | if (new_policy.governor) | |
760 | module_put(new_policy.governor->owner); | |
761 | ||
88dc4384 | 762 | return ret ? ret : count; |
1da177e4 LT |
763 | } |
764 | ||
765 | /** | |
766 | * show_scaling_driver - show the cpufreq driver currently loaded | |
767 | */ | |
905d77cd | 768 | static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf) |
1da177e4 | 769 | { |
1c3d85dd | 770 | return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name); |
1da177e4 LT |
771 | } |
772 | ||
773 | /** | |
774 | * show_scaling_available_governors - show the available CPUfreq governors | |
775 | */ | |
905d77cd DJ |
776 | static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy, |
777 | char *buf) | |
1da177e4 LT |
778 | { |
779 | ssize_t i = 0; | |
780 | struct cpufreq_governor *t; | |
781 | ||
9c0ebcf7 | 782 | if (!has_target()) { |
1da177e4 LT |
783 | i += sprintf(buf, "performance powersave"); |
784 | goto out; | |
785 | } | |
786 | ||
f7b27061 | 787 | for_each_governor(t) { |
29464f28 DJ |
788 | if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char)) |
789 | - (CPUFREQ_NAME_LEN + 2))) | |
1da177e4 | 790 | goto out; |
4b972f0b | 791 | i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name); |
1da177e4 | 792 | } |
7d5e350f | 793 | out: |
1da177e4 LT |
794 | i += sprintf(&buf[i], "\n"); |
795 | return i; | |
796 | } | |
e8628dd0 | 797 | |
f4fd3797 | 798 | ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf) |
1da177e4 LT |
799 | { |
800 | ssize_t i = 0; | |
801 | unsigned int cpu; | |
802 | ||
835481d9 | 803 | for_each_cpu(cpu, mask) { |
1da177e4 LT |
804 | if (i) |
805 | i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " "); | |
806 | i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu); | |
807 | if (i >= (PAGE_SIZE - 5)) | |
29464f28 | 808 | break; |
1da177e4 LT |
809 | } |
810 | i += sprintf(&buf[i], "\n"); | |
811 | return i; | |
812 | } | |
f4fd3797 | 813 | EXPORT_SYMBOL_GPL(cpufreq_show_cpus); |
1da177e4 | 814 | |
e8628dd0 DW |
815 | /** |
816 | * show_related_cpus - show the CPUs affected by each transition even if | |
817 | * hw coordination is in use | |
818 | */ | |
819 | static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf) | |
820 | { | |
f4fd3797 | 821 | return cpufreq_show_cpus(policy->related_cpus, buf); |
e8628dd0 DW |
822 | } |
823 | ||
824 | /** | |
825 | * show_affected_cpus - show the CPUs affected by each transition | |
826 | */ | |
827 | static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf) | |
828 | { | |
f4fd3797 | 829 | return cpufreq_show_cpus(policy->cpus, buf); |
e8628dd0 DW |
830 | } |
831 | ||
9e76988e | 832 | static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy, |
905d77cd | 833 | const char *buf, size_t count) |
9e76988e VP |
834 | { |
835 | unsigned int freq = 0; | |
836 | unsigned int ret; | |
837 | ||
879000f9 | 838 | if (!policy->governor || !policy->governor->store_setspeed) |
9e76988e VP |
839 | return -EINVAL; |
840 | ||
841 | ret = sscanf(buf, "%u", &freq); | |
842 | if (ret != 1) | |
843 | return -EINVAL; | |
844 | ||
845 | policy->governor->store_setspeed(policy, freq); | |
846 | ||
847 | return count; | |
848 | } | |
849 | ||
850 | static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf) | |
851 | { | |
879000f9 | 852 | if (!policy->governor || !policy->governor->show_setspeed) |
9e76988e VP |
853 | return sprintf(buf, "<unsupported>\n"); |
854 | ||
855 | return policy->governor->show_setspeed(policy, buf); | |
856 | } | |
1da177e4 | 857 | |
e2f74f35 | 858 | /** |
8bf1ac72 | 859 | * show_bios_limit - show the current cpufreq HW/BIOS limitation |
e2f74f35 TR |
860 | */ |
861 | static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf) | |
862 | { | |
863 | unsigned int limit; | |
864 | int ret; | |
1c3d85dd RW |
865 | if (cpufreq_driver->bios_limit) { |
866 | ret = cpufreq_driver->bios_limit(policy->cpu, &limit); | |
e2f74f35 TR |
867 | if (!ret) |
868 | return sprintf(buf, "%u\n", limit); | |
869 | } | |
870 | return sprintf(buf, "%u\n", policy->cpuinfo.max_freq); | |
871 | } | |
872 | ||
6dad2a29 BP |
873 | cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400); |
874 | cpufreq_freq_attr_ro(cpuinfo_min_freq); | |
875 | cpufreq_freq_attr_ro(cpuinfo_max_freq); | |
876 | cpufreq_freq_attr_ro(cpuinfo_transition_latency); | |
877 | cpufreq_freq_attr_ro(scaling_available_governors); | |
878 | cpufreq_freq_attr_ro(scaling_driver); | |
879 | cpufreq_freq_attr_ro(scaling_cur_freq); | |
880 | cpufreq_freq_attr_ro(bios_limit); | |
881 | cpufreq_freq_attr_ro(related_cpus); | |
882 | cpufreq_freq_attr_ro(affected_cpus); | |
883 | cpufreq_freq_attr_rw(scaling_min_freq); | |
884 | cpufreq_freq_attr_rw(scaling_max_freq); | |
885 | cpufreq_freq_attr_rw(scaling_governor); | |
886 | cpufreq_freq_attr_rw(scaling_setspeed); | |
1da177e4 | 887 | |
905d77cd | 888 | static struct attribute *default_attrs[] = { |
1da177e4 LT |
889 | &cpuinfo_min_freq.attr, |
890 | &cpuinfo_max_freq.attr, | |
ed129784 | 891 | &cpuinfo_transition_latency.attr, |
1da177e4 LT |
892 | &scaling_min_freq.attr, |
893 | &scaling_max_freq.attr, | |
894 | &affected_cpus.attr, | |
e8628dd0 | 895 | &related_cpus.attr, |
1da177e4 LT |
896 | &scaling_governor.attr, |
897 | &scaling_driver.attr, | |
898 | &scaling_available_governors.attr, | |
9e76988e | 899 | &scaling_setspeed.attr, |
1da177e4 LT |
900 | NULL |
901 | }; | |
902 | ||
29464f28 DJ |
903 | #define to_policy(k) container_of(k, struct cpufreq_policy, kobj) |
904 | #define to_attr(a) container_of(a, struct freq_attr, attr) | |
1da177e4 | 905 | |
29464f28 | 906 | static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf) |
1da177e4 | 907 | { |
905d77cd DJ |
908 | struct cpufreq_policy *policy = to_policy(kobj); |
909 | struct freq_attr *fattr = to_attr(attr); | |
1b750e3b | 910 | ssize_t ret; |
6eed9404 | 911 | |
ad7722da | 912 | down_read(&policy->rwsem); |
6541aef0 | 913 | ret = fattr->show(policy, buf); |
ad7722da | 914 | up_read(&policy->rwsem); |
1b750e3b | 915 | |
1da177e4 LT |
916 | return ret; |
917 | } | |
918 | ||
905d77cd DJ |
919 | static ssize_t store(struct kobject *kobj, struct attribute *attr, |
920 | const char *buf, size_t count) | |
1da177e4 | 921 | { |
905d77cd DJ |
922 | struct cpufreq_policy *policy = to_policy(kobj); |
923 | struct freq_attr *fattr = to_attr(attr); | |
a07530b4 | 924 | ssize_t ret = -EINVAL; |
6eed9404 | 925 | |
9b3d9bb3 WL |
926 | /* |
927 | * cpus_read_trylock() is used here to work around a circular lock | |
928 | * dependency problem with respect to the cpufreq_register_driver(). | |
929 | */ | |
930 | if (!cpus_read_trylock()) | |
931 | return -EBUSY; | |
4f750c93 | 932 | |
6541aef0 RW |
933 | if (cpu_online(policy->cpu)) { |
934 | down_write(&policy->rwsem); | |
e08f5f5b | 935 | ret = fattr->store(policy, buf, count); |
6541aef0 RW |
936 | up_write(&policy->rwsem); |
937 | } | |
e08f5f5b | 938 | |
a92551e4 | 939 | cpus_read_unlock(); |
4f750c93 | 940 | |
1da177e4 LT |
941 | return ret; |
942 | } | |
943 | ||
905d77cd | 944 | static void cpufreq_sysfs_release(struct kobject *kobj) |
1da177e4 | 945 | { |
905d77cd | 946 | struct cpufreq_policy *policy = to_policy(kobj); |
2d06d8c4 | 947 | pr_debug("last reference is dropped\n"); |
1da177e4 LT |
948 | complete(&policy->kobj_unregister); |
949 | } | |
950 | ||
52cf25d0 | 951 | static const struct sysfs_ops sysfs_ops = { |
1da177e4 LT |
952 | .show = show, |
953 | .store = store, | |
954 | }; | |
955 | ||
956 | static struct kobj_type ktype_cpufreq = { | |
957 | .sysfs_ops = &sysfs_ops, | |
958 | .default_attrs = default_attrs, | |
959 | .release = cpufreq_sysfs_release, | |
960 | }; | |
961 | ||
2f0ba790 | 962 | static void add_cpu_dev_symlink(struct cpufreq_policy *policy, unsigned int cpu) |
87549141 | 963 | { |
2f0ba790 RW |
964 | struct device *dev = get_cpu_device(cpu); |
965 | ||
966 | if (!dev) | |
967 | return; | |
968 | ||
969 | if (cpumask_test_and_set_cpu(cpu, policy->real_cpus)) | |
970 | return; | |
971 | ||
26619804 | 972 | dev_dbg(dev, "%s: Adding symlink\n", __func__); |
2f0ba790 RW |
973 | if (sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq")) |
974 | dev_err(dev, "cpufreq symlink creation failed\n"); | |
87549141 VK |
975 | } |
976 | ||
26619804 VK |
977 | static void remove_cpu_dev_symlink(struct cpufreq_policy *policy, |
978 | struct device *dev) | |
87549141 | 979 | { |
26619804 VK |
980 | dev_dbg(dev, "%s: Removing symlink\n", __func__); |
981 | sysfs_remove_link(&dev->kobj, "cpufreq"); | |
87549141 VK |
982 | } |
983 | ||
d9612a49 | 984 | static int cpufreq_add_dev_interface(struct cpufreq_policy *policy) |
909a694e DJ |
985 | { |
986 | struct freq_attr **drv_attr; | |
909a694e | 987 | int ret = 0; |
909a694e | 988 | |
909a694e | 989 | /* set up files for this cpu device */ |
1c3d85dd | 990 | drv_attr = cpufreq_driver->attr; |
f13f1184 | 991 | while (drv_attr && *drv_attr) { |
909a694e DJ |
992 | ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr)); |
993 | if (ret) | |
6d4e81ed | 994 | return ret; |
909a694e DJ |
995 | drv_attr++; |
996 | } | |
1c3d85dd | 997 | if (cpufreq_driver->get) { |
909a694e DJ |
998 | ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr); |
999 | if (ret) | |
6d4e81ed | 1000 | return ret; |
909a694e | 1001 | } |
c034b02e DB |
1002 | |
1003 | ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr); | |
1004 | if (ret) | |
6d4e81ed | 1005 | return ret; |
c034b02e | 1006 | |
1c3d85dd | 1007 | if (cpufreq_driver->bios_limit) { |
e2f74f35 TR |
1008 | ret = sysfs_create_file(&policy->kobj, &bios_limit.attr); |
1009 | if (ret) | |
6d4e81ed | 1010 | return ret; |
e2f74f35 | 1011 | } |
909a694e | 1012 | |
26619804 | 1013 | return 0; |
e18f1682 SB |
1014 | } |
1015 | ||
de1df26b RW |
1016 | __weak struct cpufreq_governor *cpufreq_default_governor(void) |
1017 | { | |
1018 | return NULL; | |
1019 | } | |
1020 | ||
7f0fa40f | 1021 | static int cpufreq_init_policy(struct cpufreq_policy *policy) |
e18f1682 | 1022 | { |
6e2c89d1 | 1023 | struct cpufreq_governor *gov = NULL; |
e18f1682 | 1024 | struct cpufreq_policy new_policy; |
e18f1682 | 1025 | |
d5b73cd8 | 1026 | memcpy(&new_policy, policy, sizeof(*policy)); |
a27a9ab7 | 1027 | |
6e2c89d1 | 1028 | /* Update governor of new_policy to the governor used before hotplug */ |
4573237b | 1029 | gov = find_governor(policy->last_governor); |
de1df26b | 1030 | if (gov) { |
6e2c89d1 VK |
1031 | pr_debug("Restoring governor %s for cpu %d\n", |
1032 | policy->governor->name, policy->cpu); | |
de1df26b RW |
1033 | } else { |
1034 | gov = cpufreq_default_governor(); | |
1035 | if (!gov) | |
1036 | return -ENODATA; | |
1037 | } | |
6e2c89d1 VK |
1038 | |
1039 | new_policy.governor = gov; | |
1040 | ||
69030dd1 SP |
1041 | /* Use the default policy if there is no last_policy. */ |
1042 | if (cpufreq_driver->setpolicy) { | |
1043 | if (policy->last_policy) | |
1044 | new_policy.policy = policy->last_policy; | |
1045 | else | |
ae0ff89f | 1046 | cpufreq_parse_governor(gov->name, &new_policy); |
69030dd1 | 1047 | } |
ecf7e461 | 1048 | /* set default policy */ |
7f0fa40f | 1049 | return cpufreq_set_policy(policy, &new_policy); |
909a694e DJ |
1050 | } |
1051 | ||
d9612a49 | 1052 | static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu) |
fcf80582 | 1053 | { |
9c0ebcf7 | 1054 | int ret = 0; |
fcf80582 | 1055 | |
bb29ae15 VK |
1056 | /* Has this CPU been taken care of already? */ |
1057 | if (cpumask_test_cpu(cpu, policy->cpus)) | |
1058 | return 0; | |
1059 | ||
49f18560 | 1060 | down_write(&policy->rwsem); |
45482c70 RW |
1061 | if (has_target()) |
1062 | cpufreq_stop_governor(policy); | |
fcf80582 | 1063 | |
fcf80582 | 1064 | cpumask_set_cpu(cpu, policy->cpus); |
2eaa3e2d | 1065 | |
9c0ebcf7 | 1066 | if (has_target()) { |
0a300767 | 1067 | ret = cpufreq_start_governor(policy); |
49f18560 | 1068 | if (ret) |
3de9bdeb | 1069 | pr_err("%s: Failed to start governor\n", __func__); |
820c6ca2 | 1070 | } |
49f18560 VK |
1071 | up_write(&policy->rwsem); |
1072 | return ret; | |
fcf80582 | 1073 | } |
1da177e4 | 1074 | |
11eb69b9 VK |
1075 | static void handle_update(struct work_struct *work) |
1076 | { | |
1077 | struct cpufreq_policy *policy = | |
1078 | container_of(work, struct cpufreq_policy, update); | |
1079 | unsigned int cpu = policy->cpu; | |
1080 | pr_debug("handle_update for cpu %u called\n", cpu); | |
1081 | cpufreq_update_policy(cpu); | |
fcf80582 | 1082 | } |
1da177e4 | 1083 | |
a34e63b1 | 1084 | static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu) |
e9698cc5 SB |
1085 | { |
1086 | struct cpufreq_policy *policy; | |
edd4a893 | 1087 | int ret; |
e9698cc5 SB |
1088 | |
1089 | policy = kzalloc(sizeof(*policy), GFP_KERNEL); | |
1090 | if (!policy) | |
1091 | return NULL; | |
1092 | ||
1093 | if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL)) | |
1094 | goto err_free_policy; | |
1095 | ||
1096 | if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL)) | |
1097 | goto err_free_cpumask; | |
1098 | ||
559ed407 RW |
1099 | if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL)) |
1100 | goto err_free_rcpumask; | |
1101 | ||
edd4a893 VK |
1102 | ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq, |
1103 | cpufreq_global_kobject, "policy%u", cpu); | |
1104 | if (ret) { | |
1105 | pr_err("%s: failed to init policy->kobj: %d\n", __func__, ret); | |
1106 | goto err_free_real_cpus; | |
1107 | } | |
1108 | ||
c88a1f8b | 1109 | INIT_LIST_HEAD(&policy->policy_list); |
ad7722da | 1110 | init_rwsem(&policy->rwsem); |
12478cf0 SB |
1111 | spin_lock_init(&policy->transition_lock); |
1112 | init_waitqueue_head(&policy->transition_wait); | |
818c5712 VK |
1113 | init_completion(&policy->kobj_unregister); |
1114 | INIT_WORK(&policy->update, handle_update); | |
ad7722da | 1115 | |
a34e63b1 | 1116 | policy->cpu = cpu; |
e9698cc5 SB |
1117 | return policy; |
1118 | ||
edd4a893 VK |
1119 | err_free_real_cpus: |
1120 | free_cpumask_var(policy->real_cpus); | |
2fc3384d VK |
1121 | err_free_rcpumask: |
1122 | free_cpumask_var(policy->related_cpus); | |
e9698cc5 SB |
1123 | err_free_cpumask: |
1124 | free_cpumask_var(policy->cpus); | |
1125 | err_free_policy: | |
1126 | kfree(policy); | |
1127 | ||
1128 | return NULL; | |
1129 | } | |
1130 | ||
f9f41e3e | 1131 | static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy) |
42f921a6 VK |
1132 | { |
1133 | struct kobject *kobj; | |
1134 | struct completion *cmp; | |
1135 | ||
87549141 | 1136 | down_write(&policy->rwsem); |
1aefc75b | 1137 | cpufreq_stats_free_table(policy); |
42f921a6 VK |
1138 | kobj = &policy->kobj; |
1139 | cmp = &policy->kobj_unregister; | |
87549141 | 1140 | up_write(&policy->rwsem); |
42f921a6 VK |
1141 | kobject_put(kobj); |
1142 | ||
1143 | /* | |
1144 | * We need to make sure that the underlying kobj is | |
1145 | * actually not referenced anymore by anybody before we | |
1146 | * proceed with unloading. | |
1147 | */ | |
1148 | pr_debug("waiting for dropping of refcount\n"); | |
1149 | wait_for_completion(cmp); | |
1150 | pr_debug("wait complete\n"); | |
1151 | } | |
1152 | ||
f9f41e3e | 1153 | static void cpufreq_policy_free(struct cpufreq_policy *policy) |
e9698cc5 | 1154 | { |
988bed09 VK |
1155 | unsigned long flags; |
1156 | int cpu; | |
1157 | ||
1158 | /* Remove policy from list */ | |
1159 | write_lock_irqsave(&cpufreq_driver_lock, flags); | |
1160 | list_del(&policy->policy_list); | |
1161 | ||
1162 | for_each_cpu(cpu, policy->related_cpus) | |
1163 | per_cpu(cpufreq_cpu_data, cpu) = NULL; | |
1164 | write_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
1165 | ||
f9f41e3e | 1166 | cpufreq_policy_put_kobj(policy); |
559ed407 | 1167 | free_cpumask_var(policy->real_cpus); |
e9698cc5 SB |
1168 | free_cpumask_var(policy->related_cpus); |
1169 | free_cpumask_var(policy->cpus); | |
1170 | kfree(policy); | |
1171 | } | |
1172 | ||
0b275352 | 1173 | static int cpufreq_online(unsigned int cpu) |
1da177e4 | 1174 | { |
7f0c020a | 1175 | struct cpufreq_policy *policy; |
194d99c7 | 1176 | bool new_policy; |
1da177e4 | 1177 | unsigned long flags; |
0b275352 RW |
1178 | unsigned int j; |
1179 | int ret; | |
87549141 | 1180 | |
0b275352 | 1181 | pr_debug("%s: bringing CPU%u online\n", __func__, cpu); |
6eed9404 | 1182 | |
bb29ae15 | 1183 | /* Check if this CPU already has a policy to manage it */ |
9104bb26 | 1184 | policy = per_cpu(cpufreq_cpu_data, cpu); |
11ce707e | 1185 | if (policy) { |
9104bb26 | 1186 | WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus)); |
11ce707e | 1187 | if (!policy_is_inactive(policy)) |
d9612a49 | 1188 | return cpufreq_add_policy_cpu(policy, cpu); |
1da177e4 | 1189 | |
11ce707e | 1190 | /* This is the only online CPU for the policy. Start over. */ |
194d99c7 | 1191 | new_policy = false; |
11ce707e RW |
1192 | down_write(&policy->rwsem); |
1193 | policy->cpu = cpu; | |
1194 | policy->governor = NULL; | |
1195 | up_write(&policy->rwsem); | |
1196 | } else { | |
194d99c7 | 1197 | new_policy = true; |
a34e63b1 | 1198 | policy = cpufreq_policy_alloc(cpu); |
72368d12 | 1199 | if (!policy) |
d4d854d6 | 1200 | return -ENOMEM; |
72368d12 | 1201 | } |
0d66b91e | 1202 | |
835481d9 | 1203 | cpumask_copy(policy->cpus, cpumask_of(cpu)); |
1da177e4 | 1204 | |
1da177e4 LT |
1205 | /* call driver. From then on the cpufreq must be able |
1206 | * to accept all calls to ->verify and ->setpolicy for this CPU | |
1207 | */ | |
1c3d85dd | 1208 | ret = cpufreq_driver->init(policy); |
1da177e4 | 1209 | if (ret) { |
2d06d8c4 | 1210 | pr_debug("initialization failed\n"); |
8101f997 | 1211 | goto out_free_policy; |
1da177e4 | 1212 | } |
643ae6e8 | 1213 | |
d417e069 VK |
1214 | ret = cpufreq_table_validate_and_sort(policy); |
1215 | if (ret) | |
1216 | goto out_exit_policy; | |
1217 | ||
6d4e81ed TV |
1218 | down_write(&policy->rwsem); |
1219 | ||
194d99c7 | 1220 | if (new_policy) { |
4d1f3a5b | 1221 | /* related_cpus should at least include policy->cpus. */ |
0998a03a | 1222 | cpumask_copy(policy->related_cpus, policy->cpus); |
4d1f3a5b | 1223 | } |
559ed407 | 1224 | |
5a7e56a5 VK |
1225 | /* |
1226 | * affected cpus must always be the one, which are online. We aren't | |
1227 | * managing offline cpus here. | |
1228 | */ | |
1229 | cpumask_and(policy->cpus, policy->cpus, cpu_online_mask); | |
1230 | ||
194d99c7 | 1231 | if (new_policy) { |
5a7e56a5 VK |
1232 | policy->user_policy.min = policy->min; |
1233 | policy->user_policy.max = policy->max; | |
6d4e81ed | 1234 | |
2f0ba790 | 1235 | for_each_cpu(j, policy->related_cpus) { |
988bed09 | 1236 | per_cpu(cpufreq_cpu_data, j) = policy; |
2f0ba790 RW |
1237 | add_cpu_dev_symlink(policy, j); |
1238 | } | |
ff010472 VK |
1239 | } else { |
1240 | policy->min = policy->user_policy.min; | |
1241 | policy->max = policy->user_policy.max; | |
988bed09 | 1242 | } |
652ed95d | 1243 | |
2ed99e39 | 1244 | if (cpufreq_driver->get && !cpufreq_driver->setpolicy) { |
da60ce9f VK |
1245 | policy->cur = cpufreq_driver->get(policy->cpu); |
1246 | if (!policy->cur) { | |
1247 | pr_err("%s: ->get() failed\n", __func__); | |
d417e069 | 1248 | goto out_destroy_policy; |
da60ce9f VK |
1249 | } |
1250 | } | |
1251 | ||
d3916691 VK |
1252 | /* |
1253 | * Sometimes boot loaders set CPU frequency to a value outside of | |
1254 | * frequency table present with cpufreq core. In such cases CPU might be | |
1255 | * unstable if it has to run on that frequency for long duration of time | |
1256 | * and so its better to set it to a frequency which is specified in | |
1257 | * freq-table. This also makes cpufreq stats inconsistent as | |
1258 | * cpufreq-stats would fail to register because current frequency of CPU | |
1259 | * isn't found in freq-table. | |
1260 | * | |
1261 | * Because we don't want this change to effect boot process badly, we go | |
1262 | * for the next freq which is >= policy->cur ('cur' must be set by now, | |
1263 | * otherwise we will end up setting freq to lowest of the table as 'cur' | |
1264 | * is initialized to zero). | |
1265 | * | |
1266 | * We are passing target-freq as "policy->cur - 1" otherwise | |
1267 | * __cpufreq_driver_target() would simply fail, as policy->cur will be | |
1268 | * equal to target-freq. | |
1269 | */ | |
1270 | if ((cpufreq_driver->flags & CPUFREQ_NEED_INITIAL_FREQ_CHECK) | |
1271 | && has_target()) { | |
1272 | /* Are we running at unknown frequency ? */ | |
1273 | ret = cpufreq_frequency_table_get_index(policy, policy->cur); | |
1274 | if (ret == -EINVAL) { | |
1275 | /* Warn user and fix it */ | |
1276 | pr_warn("%s: CPU%d: Running at unlisted freq: %u KHz\n", | |
1277 | __func__, policy->cpu, policy->cur); | |
1278 | ret = __cpufreq_driver_target(policy, policy->cur - 1, | |
1279 | CPUFREQ_RELATION_L); | |
1280 | ||
1281 | /* | |
1282 | * Reaching here after boot in a few seconds may not | |
1283 | * mean that system will remain stable at "unknown" | |
1284 | * frequency for longer duration. Hence, a BUG_ON(). | |
1285 | */ | |
1286 | BUG_ON(ret); | |
1287 | pr_warn("%s: CPU%d: Unlisted initial frequency changed to: %u KHz\n", | |
1288 | __func__, policy->cpu, policy->cur); | |
1289 | } | |
1290 | } | |
1291 | ||
194d99c7 | 1292 | if (new_policy) { |
d9612a49 | 1293 | ret = cpufreq_add_dev_interface(policy); |
a82fab29 | 1294 | if (ret) |
d417e069 | 1295 | goto out_destroy_policy; |
1aefc75b RW |
1296 | |
1297 | cpufreq_stats_create_table(policy); | |
8ff69732 | 1298 | |
988bed09 VK |
1299 | write_lock_irqsave(&cpufreq_driver_lock, flags); |
1300 | list_add(&policy->policy_list, &cpufreq_policy_list); | |
1301 | write_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
1302 | } | |
9515f4d6 | 1303 | |
7f0fa40f VK |
1304 | ret = cpufreq_init_policy(policy); |
1305 | if (ret) { | |
1306 | pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n", | |
1307 | __func__, cpu, ret); | |
194d99c7 RW |
1308 | /* cpufreq_policy_free() will notify based on this */ |
1309 | new_policy = false; | |
d417e069 | 1310 | goto out_destroy_policy; |
08fd8c1c | 1311 | } |
e18f1682 | 1312 | |
4e97b631 | 1313 | up_write(&policy->rwsem); |
08fd8c1c | 1314 | |
038c5b3e | 1315 | kobject_uevent(&policy->kobj, KOBJ_ADD); |
7c45cf31 | 1316 | |
7c45cf31 VK |
1317 | /* Callback for handling stuff after policy is ready */ |
1318 | if (cpufreq_driver->ready) | |
1319 | cpufreq_driver->ready(policy); | |
1320 | ||
2d06d8c4 | 1321 | pr_debug("initialization complete\n"); |
87c32271 | 1322 | |
1da177e4 LT |
1323 | return 0; |
1324 | ||
d417e069 | 1325 | out_destroy_policy: |
b24b6478 VK |
1326 | for_each_cpu(j, policy->real_cpus) |
1327 | remove_cpu_dev_symlink(policy, get_cpu_device(j)); | |
1328 | ||
7106e02b PB |
1329 | up_write(&policy->rwsem); |
1330 | ||
d417e069 | 1331 | out_exit_policy: |
da60ce9f VK |
1332 | if (cpufreq_driver->exit) |
1333 | cpufreq_driver->exit(policy); | |
2f0ba790 | 1334 | |
8101f997 | 1335 | out_free_policy: |
f9f41e3e | 1336 | cpufreq_policy_free(policy); |
1da177e4 LT |
1337 | return ret; |
1338 | } | |
1339 | ||
0b275352 RW |
1340 | /** |
1341 | * cpufreq_add_dev - the cpufreq interface for a CPU device. | |
1342 | * @dev: CPU device. | |
1343 | * @sif: Subsystem interface structure pointer (not used) | |
1344 | */ | |
1345 | static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif) | |
1346 | { | |
a794d613 | 1347 | struct cpufreq_policy *policy; |
0b275352 | 1348 | unsigned cpu = dev->id; |
26619804 | 1349 | int ret; |
0b275352 RW |
1350 | |
1351 | dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu); | |
1352 | ||
26619804 VK |
1353 | if (cpu_online(cpu)) { |
1354 | ret = cpufreq_online(cpu); | |
1355 | if (ret) | |
1356 | return ret; | |
1357 | } | |
0b275352 | 1358 | |
26619804 | 1359 | /* Create sysfs link on CPU registration */ |
a794d613 | 1360 | policy = per_cpu(cpufreq_cpu_data, cpu); |
2f0ba790 RW |
1361 | if (policy) |
1362 | add_cpu_dev_symlink(policy, cpu); | |
26619804 | 1363 | |
2f0ba790 | 1364 | return 0; |
1da177e4 LT |
1365 | } |
1366 | ||
27622b06 | 1367 | static int cpufreq_offline(unsigned int cpu) |
1da177e4 | 1368 | { |
3a3e9e06 | 1369 | struct cpufreq_policy *policy; |
69cee714 | 1370 | int ret; |
1da177e4 | 1371 | |
b8eed8af | 1372 | pr_debug("%s: unregistering CPU %u\n", __func__, cpu); |
1da177e4 | 1373 | |
988bed09 | 1374 | policy = cpufreq_cpu_get_raw(cpu); |
3a3e9e06 | 1375 | if (!policy) { |
b8eed8af | 1376 | pr_debug("%s: No cpu_data found\n", __func__); |
27622b06 | 1377 | return 0; |
1da177e4 | 1378 | } |
1da177e4 | 1379 | |
49f18560 | 1380 | down_write(&policy->rwsem); |
45482c70 RW |
1381 | if (has_target()) |
1382 | cpufreq_stop_governor(policy); | |
1da177e4 | 1383 | |
9591becb | 1384 | cpumask_clear_cpu(cpu, policy->cpus); |
4573237b | 1385 | |
9591becb VK |
1386 | if (policy_is_inactive(policy)) { |
1387 | if (has_target()) | |
1388 | strncpy(policy->last_governor, policy->governor->name, | |
1389 | CPUFREQ_NAME_LEN); | |
69030dd1 SP |
1390 | else |
1391 | policy->last_policy = policy->policy; | |
9591becb VK |
1392 | } else if (cpu == policy->cpu) { |
1393 | /* Nominate new CPU */ | |
1394 | policy->cpu = cpumask_any(policy->cpus); | |
1395 | } | |
084f3493 | 1396 | |
9591becb VK |
1397 | /* Start governor again for active policy */ |
1398 | if (!policy_is_inactive(policy)) { | |
1399 | if (has_target()) { | |
0a300767 | 1400 | ret = cpufreq_start_governor(policy); |
9591becb VK |
1401 | if (ret) |
1402 | pr_err("%s: Failed to start governor\n", __func__); | |
1403 | } | |
cedb70af | 1404 | |
49f18560 | 1405 | goto unlock; |
cedb70af SB |
1406 | } |
1407 | ||
69cee714 VK |
1408 | if (cpufreq_driver->stop_cpu) |
1409 | cpufreq_driver->stop_cpu(policy); | |
87549141 | 1410 | |
36be3418 RW |
1411 | if (has_target()) |
1412 | cpufreq_exit_governor(policy); | |
1da177e4 | 1413 | |
87549141 VK |
1414 | /* |
1415 | * Perform the ->exit() even during light-weight tear-down, | |
1416 | * since this is a core component, and is essential for the | |
1417 | * subsequent light-weight ->init() to succeed. | |
1418 | */ | |
55582bcc | 1419 | if (cpufreq_driver->exit) { |
87549141 | 1420 | cpufreq_driver->exit(policy); |
55582bcc SP |
1421 | policy->freq_table = NULL; |
1422 | } | |
49f18560 VK |
1423 | |
1424 | unlock: | |
1425 | up_write(&policy->rwsem); | |
27622b06 | 1426 | return 0; |
1da177e4 LT |
1427 | } |
1428 | ||
cedb70af | 1429 | /** |
27a862e9 | 1430 | * cpufreq_remove_dev - remove a CPU device |
cedb70af SB |
1431 | * |
1432 | * Removes the cpufreq interface for a CPU device. | |
cedb70af | 1433 | */ |
71db87ba | 1434 | static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif) |
5a01f2e8 | 1435 | { |
8a25a2fd | 1436 | unsigned int cpu = dev->id; |
559ed407 | 1437 | struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu); |
87549141 | 1438 | |
559ed407 | 1439 | if (!policy) |
1af115d6 | 1440 | return; |
87549141 | 1441 | |
69cee714 VK |
1442 | if (cpu_online(cpu)) |
1443 | cpufreq_offline(cpu); | |
87549141 | 1444 | |
559ed407 | 1445 | cpumask_clear_cpu(cpu, policy->real_cpus); |
26619804 | 1446 | remove_cpu_dev_symlink(policy, dev); |
87549141 | 1447 | |
f344dae0 | 1448 | if (cpumask_empty(policy->real_cpus)) |
f9f41e3e | 1449 | cpufreq_policy_free(policy); |
5a01f2e8 VP |
1450 | } |
1451 | ||
1da177e4 | 1452 | /** |
bb176f7d VK |
1453 | * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're |
1454 | * in deep trouble. | |
a1e1dc41 | 1455 | * @policy: policy managing CPUs |
1da177e4 LT |
1456 | * @new_freq: CPU frequency the CPU actually runs at |
1457 | * | |
29464f28 DJ |
1458 | * We adjust to current frequency first, and need to clean up later. |
1459 | * So either call to cpufreq_update_policy() or schedule handle_update()). | |
1da177e4 | 1460 | */ |
a1e1dc41 | 1461 | static void cpufreq_out_of_sync(struct cpufreq_policy *policy, |
e08f5f5b | 1462 | unsigned int new_freq) |
1da177e4 LT |
1463 | { |
1464 | struct cpufreq_freqs freqs; | |
b43a7ffb | 1465 | |
e837f9b5 | 1466 | pr_debug("Warning: CPU frequency out of sync: cpufreq and timing core thinks of %u, is %u kHz\n", |
a1e1dc41 | 1467 | policy->cur, new_freq); |
1da177e4 | 1468 | |
a1e1dc41 | 1469 | freqs.old = policy->cur; |
1da177e4 | 1470 | freqs.new = new_freq; |
b43a7ffb | 1471 | |
8fec051e VK |
1472 | cpufreq_freq_transition_begin(policy, &freqs); |
1473 | cpufreq_freq_transition_end(policy, &freqs, 0); | |
1da177e4 LT |
1474 | } |
1475 | ||
32ee8c3e | 1476 | /** |
4ab70df4 | 1477 | * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur |
95235ca2 VP |
1478 | * @cpu: CPU number |
1479 | * | |
1480 | * This is the last known freq, without actually getting it from the driver. | |
1481 | * Return value will be same as what is shown in scaling_cur_freq in sysfs. | |
1482 | */ | |
1483 | unsigned int cpufreq_quick_get(unsigned int cpu) | |
1484 | { | |
9e21ba8b | 1485 | struct cpufreq_policy *policy; |
e08f5f5b | 1486 | unsigned int ret_freq = 0; |
c75361c0 | 1487 | unsigned long flags; |
95235ca2 | 1488 | |
c75361c0 RC |
1489 | read_lock_irqsave(&cpufreq_driver_lock, flags); |
1490 | ||
1491 | if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get) { | |
1492 | ret_freq = cpufreq_driver->get(cpu); | |
1493 | read_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
1494 | return ret_freq; | |
1495 | } | |
1496 | ||
1497 | read_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
9e21ba8b DB |
1498 | |
1499 | policy = cpufreq_cpu_get(cpu); | |
95235ca2 | 1500 | if (policy) { |
e08f5f5b | 1501 | ret_freq = policy->cur; |
95235ca2 VP |
1502 | cpufreq_cpu_put(policy); |
1503 | } | |
1504 | ||
4d34a67d | 1505 | return ret_freq; |
95235ca2 VP |
1506 | } |
1507 | EXPORT_SYMBOL(cpufreq_quick_get); | |
1508 | ||
3d737108 JB |
1509 | /** |
1510 | * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU | |
1511 | * @cpu: CPU number | |
1512 | * | |
1513 | * Just return the max possible frequency for a given CPU. | |
1514 | */ | |
1515 | unsigned int cpufreq_quick_get_max(unsigned int cpu) | |
1516 | { | |
1517 | struct cpufreq_policy *policy = cpufreq_cpu_get(cpu); | |
1518 | unsigned int ret_freq = 0; | |
1519 | ||
1520 | if (policy) { | |
1521 | ret_freq = policy->max; | |
1522 | cpufreq_cpu_put(policy); | |
1523 | } | |
1524 | ||
1525 | return ret_freq; | |
1526 | } | |
1527 | EXPORT_SYMBOL(cpufreq_quick_get_max); | |
1528 | ||
d92d50a4 | 1529 | static unsigned int __cpufreq_get(struct cpufreq_policy *policy) |
1da177e4 | 1530 | { |
e08f5f5b | 1531 | unsigned int ret_freq = 0; |
5800043b | 1532 | |
1c3d85dd | 1533 | if (!cpufreq_driver->get) |
4d34a67d | 1534 | return ret_freq; |
1da177e4 | 1535 | |
d92d50a4 | 1536 | ret_freq = cpufreq_driver->get(policy->cpu); |
1da177e4 | 1537 | |
b7898fda RW |
1538 | /* |
1539 | * Updating inactive policies is invalid, so avoid doing that. Also | |
1540 | * if fast frequency switching is used with the given policy, the check | |
1541 | * against policy->cur is pointless, so skip it in that case too. | |
1542 | */ | |
1543 | if (unlikely(policy_is_inactive(policy)) || policy->fast_switch_enabled) | |
11e584cf VK |
1544 | return ret_freq; |
1545 | ||
e08f5f5b | 1546 | if (ret_freq && policy->cur && |
1c3d85dd | 1547 | !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) { |
e08f5f5b GS |
1548 | /* verify no discrepancy between actual and |
1549 | saved value exists */ | |
1550 | if (unlikely(ret_freq != policy->cur)) { | |
a1e1dc41 | 1551 | cpufreq_out_of_sync(policy, ret_freq); |
1da177e4 LT |
1552 | schedule_work(&policy->update); |
1553 | } | |
1554 | } | |
1555 | ||
4d34a67d | 1556 | return ret_freq; |
5a01f2e8 | 1557 | } |
1da177e4 | 1558 | |
5a01f2e8 VP |
1559 | /** |
1560 | * cpufreq_get - get the current CPU frequency (in kHz) | |
1561 | * @cpu: CPU number | |
1562 | * | |
1563 | * Get the CPU current (static) CPU frequency | |
1564 | */ | |
1565 | unsigned int cpufreq_get(unsigned int cpu) | |
1566 | { | |
999976e0 | 1567 | struct cpufreq_policy *policy = cpufreq_cpu_get(cpu); |
5a01f2e8 | 1568 | unsigned int ret_freq = 0; |
5a01f2e8 | 1569 | |
999976e0 AP |
1570 | if (policy) { |
1571 | down_read(&policy->rwsem); | |
182e36af RW |
1572 | |
1573 | if (!policy_is_inactive(policy)) | |
1574 | ret_freq = __cpufreq_get(policy); | |
1575 | ||
999976e0 | 1576 | up_read(&policy->rwsem); |
5a01f2e8 | 1577 | |
999976e0 AP |
1578 | cpufreq_cpu_put(policy); |
1579 | } | |
6eed9404 | 1580 | |
4d34a67d | 1581 | return ret_freq; |
1da177e4 LT |
1582 | } |
1583 | EXPORT_SYMBOL(cpufreq_get); | |
1584 | ||
999f5729 RW |
1585 | static unsigned int cpufreq_update_current_freq(struct cpufreq_policy *policy) |
1586 | { | |
1587 | unsigned int new_freq; | |
1588 | ||
1589 | new_freq = cpufreq_driver->get(policy->cpu); | |
1590 | if (!new_freq) | |
1591 | return 0; | |
1592 | ||
1593 | if (!policy->cur) { | |
1594 | pr_debug("cpufreq: Driver did not initialize current freq\n"); | |
1595 | policy->cur = new_freq; | |
1596 | } else if (policy->cur != new_freq && has_target()) { | |
1597 | cpufreq_out_of_sync(policy, new_freq); | |
1598 | } | |
1599 | ||
1600 | return new_freq; | |
1601 | } | |
1602 | ||
8a25a2fd KS |
1603 | static struct subsys_interface cpufreq_interface = { |
1604 | .name = "cpufreq", | |
1605 | .subsys = &cpu_subsys, | |
1606 | .add_dev = cpufreq_add_dev, | |
1607 | .remove_dev = cpufreq_remove_dev, | |
e00e56df RW |
1608 | }; |
1609 | ||
e28867ea VK |
1610 | /* |
1611 | * In case platform wants some specific frequency to be configured | |
1612 | * during suspend.. | |
1613 | */ | |
1614 | int cpufreq_generic_suspend(struct cpufreq_policy *policy) | |
1615 | { | |
1616 | int ret; | |
1617 | ||
1618 | if (!policy->suspend_freq) { | |
201f3716 BZ |
1619 | pr_debug("%s: suspend_freq not defined\n", __func__); |
1620 | return 0; | |
e28867ea VK |
1621 | } |
1622 | ||
1623 | pr_debug("%s: Setting suspend-freq: %u\n", __func__, | |
1624 | policy->suspend_freq); | |
1625 | ||
1626 | ret = __cpufreq_driver_target(policy, policy->suspend_freq, | |
1627 | CPUFREQ_RELATION_H); | |
1628 | if (ret) | |
1629 | pr_err("%s: unable to set suspend-freq: %u. err: %d\n", | |
1630 | __func__, policy->suspend_freq, ret); | |
1631 | ||
1632 | return ret; | |
1633 | } | |
1634 | EXPORT_SYMBOL(cpufreq_generic_suspend); | |
1635 | ||
42d4dc3f | 1636 | /** |
2f0aea93 | 1637 | * cpufreq_suspend() - Suspend CPUFreq governors |
e00e56df | 1638 | * |
2f0aea93 VK |
1639 | * Called during system wide Suspend/Hibernate cycles for suspending governors |
1640 | * as some platforms can't change frequency after this point in suspend cycle. | |
1641 | * Because some of the devices (like: i2c, regulators, etc) they use for | |
1642 | * changing frequency are suspended quickly after this point. | |
42d4dc3f | 1643 | */ |
2f0aea93 | 1644 | void cpufreq_suspend(void) |
42d4dc3f | 1645 | { |
3a3e9e06 | 1646 | struct cpufreq_policy *policy; |
42d4dc3f | 1647 | |
2f0aea93 VK |
1648 | if (!cpufreq_driver) |
1649 | return; | |
42d4dc3f | 1650 | |
ba41e1bc | 1651 | if (!has_target() && !cpufreq_driver->suspend) |
b1b12bab | 1652 | goto suspend; |
42d4dc3f | 1653 | |
2f0aea93 VK |
1654 | pr_debug("%s: Suspending Governors\n", __func__); |
1655 | ||
f963735a | 1656 | for_each_active_policy(policy) { |
ba41e1bc RW |
1657 | if (has_target()) { |
1658 | down_write(&policy->rwsem); | |
45482c70 | 1659 | cpufreq_stop_governor(policy); |
ba41e1bc | 1660 | up_write(&policy->rwsem); |
ba41e1bc RW |
1661 | } |
1662 | ||
1663 | if (cpufreq_driver->suspend && cpufreq_driver->suspend(policy)) | |
2f0aea93 VK |
1664 | pr_err("%s: Failed to suspend driver: %p\n", __func__, |
1665 | policy); | |
42d4dc3f | 1666 | } |
b1b12bab VK |
1667 | |
1668 | suspend: | |
1669 | cpufreq_suspended = true; | |
42d4dc3f BH |
1670 | } |
1671 | ||
1da177e4 | 1672 | /** |
2f0aea93 | 1673 | * cpufreq_resume() - Resume CPUFreq governors |
1da177e4 | 1674 | * |
2f0aea93 VK |
1675 | * Called during system wide Suspend/Hibernate cycle for resuming governors that |
1676 | * are suspended with cpufreq_suspend(). | |
1da177e4 | 1677 | */ |
2f0aea93 | 1678 | void cpufreq_resume(void) |
1da177e4 | 1679 | { |
3a3e9e06 | 1680 | struct cpufreq_policy *policy; |
49f18560 | 1681 | int ret; |
1da177e4 | 1682 | |
2f0aea93 | 1683 | if (!cpufreq_driver) |
703cbaa6 BY |
1684 | return; |
1685 | ||
1686 | if (unlikely(!cpufreq_suspended)) | |
2f0aea93 | 1687 | return; |
1da177e4 | 1688 | |
8e30444e LT |
1689 | cpufreq_suspended = false; |
1690 | ||
ba41e1bc | 1691 | if (!has_target() && !cpufreq_driver->resume) |
e00e56df | 1692 | return; |
1da177e4 | 1693 | |
2f0aea93 | 1694 | pr_debug("%s: Resuming Governors\n", __func__); |
1da177e4 | 1695 | |
f963735a | 1696 | for_each_active_policy(policy) { |
49f18560 | 1697 | if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) { |
0c5aa405 VK |
1698 | pr_err("%s: Failed to resume driver: %p\n", __func__, |
1699 | policy); | |
ba41e1bc | 1700 | } else if (has_target()) { |
49f18560 | 1701 | down_write(&policy->rwsem); |
0a300767 | 1702 | ret = cpufreq_start_governor(policy); |
49f18560 VK |
1703 | up_write(&policy->rwsem); |
1704 | ||
1705 | if (ret) | |
1706 | pr_err("%s: Failed to start governor for policy: %p\n", | |
1707 | __func__, policy); | |
1708 | } | |
2f0aea93 VK |
1709 | } |
1710 | } | |
1da177e4 | 1711 | |
9d95046e BP |
1712 | /** |
1713 | * cpufreq_get_current_driver - return current driver's name | |
1714 | * | |
1715 | * Return the name string of the currently loaded cpufreq driver | |
1716 | * or NULL, if none. | |
1717 | */ | |
1718 | const char *cpufreq_get_current_driver(void) | |
1719 | { | |
1c3d85dd RW |
1720 | if (cpufreq_driver) |
1721 | return cpufreq_driver->name; | |
1722 | ||
1723 | return NULL; | |
9d95046e BP |
1724 | } |
1725 | EXPORT_SYMBOL_GPL(cpufreq_get_current_driver); | |
1da177e4 | 1726 | |
51315cdf TP |
1727 | /** |
1728 | * cpufreq_get_driver_data - return current driver data | |
1729 | * | |
1730 | * Return the private data of the currently loaded cpufreq | |
1731 | * driver, or NULL if no cpufreq driver is loaded. | |
1732 | */ | |
1733 | void *cpufreq_get_driver_data(void) | |
1734 | { | |
1735 | if (cpufreq_driver) | |
1736 | return cpufreq_driver->driver_data; | |
1737 | ||
1738 | return NULL; | |
1739 | } | |
1740 | EXPORT_SYMBOL_GPL(cpufreq_get_driver_data); | |
1741 | ||
1da177e4 LT |
1742 | /********************************************************************* |
1743 | * NOTIFIER LISTS INTERFACE * | |
1744 | *********************************************************************/ | |
1745 | ||
1746 | /** | |
1747 | * cpufreq_register_notifier - register a driver with cpufreq | |
1748 | * @nb: notifier function to register | |
1749 | * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER | |
1750 | * | |
32ee8c3e | 1751 | * Add a driver to one of two lists: either a list of drivers that |
1da177e4 LT |
1752 | * are notified about clock rate changes (once before and once after |
1753 | * the transition), or a list of drivers that are notified about | |
1754 | * changes in cpufreq policy. | |
1755 | * | |
1756 | * This function may sleep, and has the same return conditions as | |
e041c683 | 1757 | * blocking_notifier_chain_register. |
1da177e4 LT |
1758 | */ |
1759 | int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list) | |
1760 | { | |
1761 | int ret; | |
1762 | ||
d5aaffa9 DB |
1763 | if (cpufreq_disabled()) |
1764 | return -EINVAL; | |
1765 | ||
1da177e4 LT |
1766 | switch (list) { |
1767 | case CPUFREQ_TRANSITION_NOTIFIER: | |
b7898fda RW |
1768 | mutex_lock(&cpufreq_fast_switch_lock); |
1769 | ||
1770 | if (cpufreq_fast_switch_count > 0) { | |
1771 | mutex_unlock(&cpufreq_fast_switch_lock); | |
1772 | return -EBUSY; | |
1773 | } | |
b4dfdbb3 | 1774 | ret = srcu_notifier_chain_register( |
e041c683 | 1775 | &cpufreq_transition_notifier_list, nb); |
b7898fda RW |
1776 | if (!ret) |
1777 | cpufreq_fast_switch_count--; | |
1778 | ||
1779 | mutex_unlock(&cpufreq_fast_switch_lock); | |
1da177e4 LT |
1780 | break; |
1781 | case CPUFREQ_POLICY_NOTIFIER: | |
e041c683 AS |
1782 | ret = blocking_notifier_chain_register( |
1783 | &cpufreq_policy_notifier_list, nb); | |
1da177e4 LT |
1784 | break; |
1785 | default: | |
1786 | ret = -EINVAL; | |
1787 | } | |
1da177e4 LT |
1788 | |
1789 | return ret; | |
1790 | } | |
1791 | EXPORT_SYMBOL(cpufreq_register_notifier); | |
1792 | ||
1da177e4 LT |
1793 | /** |
1794 | * cpufreq_unregister_notifier - unregister a driver with cpufreq | |
1795 | * @nb: notifier block to be unregistered | |
bb176f7d | 1796 | * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER |
1da177e4 LT |
1797 | * |
1798 | * Remove a driver from the CPU frequency notifier list. | |
1799 | * | |
1800 | * This function may sleep, and has the same return conditions as | |
e041c683 | 1801 | * blocking_notifier_chain_unregister. |
1da177e4 LT |
1802 | */ |
1803 | int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list) | |
1804 | { | |
1805 | int ret; | |
1806 | ||
d5aaffa9 DB |
1807 | if (cpufreq_disabled()) |
1808 | return -EINVAL; | |
1809 | ||
1da177e4 LT |
1810 | switch (list) { |
1811 | case CPUFREQ_TRANSITION_NOTIFIER: | |
b7898fda RW |
1812 | mutex_lock(&cpufreq_fast_switch_lock); |
1813 | ||
b4dfdbb3 | 1814 | ret = srcu_notifier_chain_unregister( |
e041c683 | 1815 | &cpufreq_transition_notifier_list, nb); |
b7898fda RW |
1816 | if (!ret && !WARN_ON(cpufreq_fast_switch_count >= 0)) |
1817 | cpufreq_fast_switch_count++; | |
1818 | ||
1819 | mutex_unlock(&cpufreq_fast_switch_lock); | |
1da177e4 LT |
1820 | break; |
1821 | case CPUFREQ_POLICY_NOTIFIER: | |
e041c683 AS |
1822 | ret = blocking_notifier_chain_unregister( |
1823 | &cpufreq_policy_notifier_list, nb); | |
1da177e4 LT |
1824 | break; |
1825 | default: | |
1826 | ret = -EINVAL; | |
1827 | } | |
1da177e4 LT |
1828 | |
1829 | return ret; | |
1830 | } | |
1831 | EXPORT_SYMBOL(cpufreq_unregister_notifier); | |
1832 | ||
1833 | ||
1834 | /********************************************************************* | |
1835 | * GOVERNORS * | |
1836 | *********************************************************************/ | |
1837 | ||
b7898fda RW |
1838 | /** |
1839 | * cpufreq_driver_fast_switch - Carry out a fast CPU frequency switch. | |
1840 | * @policy: cpufreq policy to switch the frequency for. | |
1841 | * @target_freq: New frequency to set (may be approximate). | |
1842 | * | |
1843 | * Carry out a fast frequency switch without sleeping. | |
1844 | * | |
1845 | * The driver's ->fast_switch() callback invoked by this function must be | |
1846 | * suitable for being called from within RCU-sched read-side critical sections | |
1847 | * and it is expected to select the minimum available frequency greater than or | |
1848 | * equal to @target_freq (CPUFREQ_RELATION_L). | |
1849 | * | |
1850 | * This function must not be called if policy->fast_switch_enabled is unset. | |
1851 | * | |
1852 | * Governors calling this function must guarantee that it will never be invoked | |
1853 | * twice in parallel for the same policy and that it will never be called in | |
1854 | * parallel with either ->target() or ->target_index() for the same policy. | |
1855 | * | |
209887e6 VK |
1856 | * Returns the actual frequency set for the CPU. |
1857 | * | |
1858 | * If 0 is returned by the driver's ->fast_switch() callback to indicate an | |
1859 | * error condition, the hardware configuration must be preserved. | |
b7898fda RW |
1860 | */ |
1861 | unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy, | |
1862 | unsigned int target_freq) | |
1863 | { | |
b9af6948 | 1864 | target_freq = clamp_val(target_freq, policy->min, policy->max); |
b7898fda RW |
1865 | |
1866 | return cpufreq_driver->fast_switch(policy, target_freq); | |
1867 | } | |
1868 | EXPORT_SYMBOL_GPL(cpufreq_driver_fast_switch); | |
1869 | ||
1c03a2d0 VK |
1870 | /* Must set freqs->new to intermediate frequency */ |
1871 | static int __target_intermediate(struct cpufreq_policy *policy, | |
1872 | struct cpufreq_freqs *freqs, int index) | |
1873 | { | |
1874 | int ret; | |
1875 | ||
1876 | freqs->new = cpufreq_driver->get_intermediate(policy, index); | |
1877 | ||
1878 | /* We don't need to switch to intermediate freq */ | |
1879 | if (!freqs->new) | |
1880 | return 0; | |
1881 | ||
1882 | pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n", | |
1883 | __func__, policy->cpu, freqs->old, freqs->new); | |
1884 | ||
1885 | cpufreq_freq_transition_begin(policy, freqs); | |
1886 | ret = cpufreq_driver->target_intermediate(policy, index); | |
1887 | cpufreq_freq_transition_end(policy, freqs, ret); | |
1888 | ||
1889 | if (ret) | |
1890 | pr_err("%s: Failed to change to intermediate frequency: %d\n", | |
1891 | __func__, ret); | |
1892 | ||
1893 | return ret; | |
1894 | } | |
1895 | ||
23727845 | 1896 | static int __target_index(struct cpufreq_policy *policy, int index) |
8d65775d | 1897 | { |
1c03a2d0 VK |
1898 | struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0}; |
1899 | unsigned int intermediate_freq = 0; | |
23727845 | 1900 | unsigned int newfreq = policy->freq_table[index].frequency; |
8d65775d VK |
1901 | int retval = -EINVAL; |
1902 | bool notify; | |
1903 | ||
23727845 VK |
1904 | if (newfreq == policy->cur) |
1905 | return 0; | |
1906 | ||
8d65775d | 1907 | notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION); |
8d65775d | 1908 | if (notify) { |
1c03a2d0 VK |
1909 | /* Handle switching to intermediate frequency */ |
1910 | if (cpufreq_driver->get_intermediate) { | |
1911 | retval = __target_intermediate(policy, &freqs, index); | |
1912 | if (retval) | |
1913 | return retval; | |
1914 | ||
1915 | intermediate_freq = freqs.new; | |
1916 | /* Set old freq to intermediate */ | |
1917 | if (intermediate_freq) | |
1918 | freqs.old = freqs.new; | |
1919 | } | |
8d65775d | 1920 | |
23727845 | 1921 | freqs.new = newfreq; |
8d65775d VK |
1922 | pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n", |
1923 | __func__, policy->cpu, freqs.old, freqs.new); | |
1924 | ||
1925 | cpufreq_freq_transition_begin(policy, &freqs); | |
1926 | } | |
1927 | ||
1928 | retval = cpufreq_driver->target_index(policy, index); | |
1929 | if (retval) | |
1930 | pr_err("%s: Failed to change cpu frequency: %d\n", __func__, | |
1931 | retval); | |
1932 | ||
1c03a2d0 | 1933 | if (notify) { |
8d65775d VK |
1934 | cpufreq_freq_transition_end(policy, &freqs, retval); |
1935 | ||
1c03a2d0 VK |
1936 | /* |
1937 | * Failed after setting to intermediate freq? Driver should have | |
1938 | * reverted back to initial frequency and so should we. Check | |
1939 | * here for intermediate_freq instead of get_intermediate, in | |
58405af6 | 1940 | * case we haven't switched to intermediate freq at all. |
1c03a2d0 VK |
1941 | */ |
1942 | if (unlikely(retval && intermediate_freq)) { | |
1943 | freqs.old = intermediate_freq; | |
1944 | freqs.new = policy->restore_freq; | |
1945 | cpufreq_freq_transition_begin(policy, &freqs); | |
1946 | cpufreq_freq_transition_end(policy, &freqs, 0); | |
1947 | } | |
1948 | } | |
1949 | ||
8d65775d VK |
1950 | return retval; |
1951 | } | |
1952 | ||
1da177e4 LT |
1953 | int __cpufreq_driver_target(struct cpufreq_policy *policy, |
1954 | unsigned int target_freq, | |
1955 | unsigned int relation) | |
1956 | { | |
7249924e | 1957 | unsigned int old_target_freq = target_freq; |
d218ed77 | 1958 | int index; |
c32b6b8e | 1959 | |
a7b422cd KRW |
1960 | if (cpufreq_disabled()) |
1961 | return -ENODEV; | |
1962 | ||
7249924e | 1963 | /* Make sure that target_freq is within supported range */ |
910c6e88 | 1964 | target_freq = clamp_val(target_freq, policy->min, policy->max); |
7249924e VK |
1965 | |
1966 | pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n", | |
e837f9b5 | 1967 | policy->cpu, target_freq, relation, old_target_freq); |
5a1c0228 | 1968 | |
9c0ebcf7 VK |
1969 | /* |
1970 | * This might look like a redundant call as we are checking it again | |
1971 | * after finding index. But it is left intentionally for cases where | |
1972 | * exactly same freq is called again and so we can save on few function | |
1973 | * calls. | |
1974 | */ | |
5a1c0228 VK |
1975 | if (target_freq == policy->cur) |
1976 | return 0; | |
1977 | ||
1c03a2d0 VK |
1978 | /* Save last value to restore later on errors */ |
1979 | policy->restore_freq = policy->cur; | |
1980 | ||
1c3d85dd | 1981 | if (cpufreq_driver->target) |
6019d23a | 1982 | return cpufreq_driver->target(policy, target_freq, relation); |
9c0ebcf7 | 1983 | |
6019d23a RW |
1984 | if (!cpufreq_driver->target_index) |
1985 | return -EINVAL; | |
9c0ebcf7 | 1986 | |
d218ed77 | 1987 | index = cpufreq_frequency_table_target(policy, target_freq, relation); |
6019d23a | 1988 | |
23727845 | 1989 | return __target_index(policy, index); |
1da177e4 LT |
1990 | } |
1991 | EXPORT_SYMBOL_GPL(__cpufreq_driver_target); | |
1992 | ||
1da177e4 LT |
1993 | int cpufreq_driver_target(struct cpufreq_policy *policy, |
1994 | unsigned int target_freq, | |
1995 | unsigned int relation) | |
1996 | { | |
f1829e4a | 1997 | int ret = -EINVAL; |
1da177e4 | 1998 | |
ad7722da | 1999 | down_write(&policy->rwsem); |
1da177e4 LT |
2000 | |
2001 | ret = __cpufreq_driver_target(policy, target_freq, relation); | |
2002 | ||
ad7722da | 2003 | up_write(&policy->rwsem); |
1da177e4 | 2004 | |
1da177e4 LT |
2005 | return ret; |
2006 | } | |
2007 | EXPORT_SYMBOL_GPL(cpufreq_driver_target); | |
2008 | ||
de1df26b RW |
2009 | __weak struct cpufreq_governor *cpufreq_fallback_governor(void) |
2010 | { | |
2011 | return NULL; | |
2012 | } | |
2013 | ||
a92604b4 | 2014 | static int cpufreq_init_governor(struct cpufreq_policy *policy) |
1da177e4 | 2015 | { |
cc993cab | 2016 | int ret; |
6afde10c | 2017 | |
2f0aea93 VK |
2018 | /* Don't start any governor operations if we are entering suspend */ |
2019 | if (cpufreq_suspended) | |
2020 | return 0; | |
cb57720b EZ |
2021 | /* |
2022 | * Governor might not be initiated here if ACPI _PPC changed | |
2023 | * notification happened, so check it. | |
2024 | */ | |
2025 | if (!policy->governor) | |
2026 | return -EINVAL; | |
2f0aea93 | 2027 | |
ed4676e2 VK |
2028 | /* Platform doesn't want dynamic frequency switching ? */ |
2029 | if (policy->governor->dynamic_switching && | |
fc4c709f | 2030 | cpufreq_driver->flags & CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING) { |
de1df26b RW |
2031 | struct cpufreq_governor *gov = cpufreq_fallback_governor(); |
2032 | ||
2033 | if (gov) { | |
fe829ed8 | 2034 | pr_warn("Can't use %s governor as dynamic switching is disallowed. Fallback to %s governor\n", |
e837f9b5 | 2035 | policy->governor->name, gov->name); |
6afde10c | 2036 | policy->governor = gov; |
de1df26b RW |
2037 | } else { |
2038 | return -EINVAL; | |
6afde10c | 2039 | } |
1c256245 | 2040 | } |
1da177e4 | 2041 | |
a92604b4 RW |
2042 | if (!try_module_get(policy->governor->owner)) |
2043 | return -EINVAL; | |
95731ebb | 2044 | |
a92604b4 | 2045 | pr_debug("%s: for CPU %u\n", __func__, policy->cpu); |
1da177e4 | 2046 | |
e788892b RW |
2047 | if (policy->governor->init) { |
2048 | ret = policy->governor->init(policy); | |
2049 | if (ret) { | |
36be3418 | 2050 | module_put(policy->governor->owner); |
e788892b RW |
2051 | return ret; |
2052 | } | |
36be3418 | 2053 | } |
1da177e4 | 2054 | |
a92604b4 RW |
2055 | return 0; |
2056 | } | |
2057 | ||
2058 | static void cpufreq_exit_governor(struct cpufreq_policy *policy) | |
2059 | { | |
2060 | if (cpufreq_suspended || !policy->governor) | |
2061 | return; | |
2062 | ||
2063 | pr_debug("%s: for CPU %u\n", __func__, policy->cpu); | |
2064 | ||
e788892b RW |
2065 | if (policy->governor->exit) |
2066 | policy->governor->exit(policy); | |
a92604b4 | 2067 | |
a92604b4 | 2068 | module_put(policy->governor->owner); |
1da177e4 LT |
2069 | } |
2070 | ||
0a300767 RW |
2071 | static int cpufreq_start_governor(struct cpufreq_policy *policy) |
2072 | { | |
2073 | int ret; | |
2074 | ||
a92604b4 RW |
2075 | if (cpufreq_suspended) |
2076 | return 0; | |
2077 | ||
2078 | if (!policy->governor) | |
2079 | return -EINVAL; | |
2080 | ||
2081 | pr_debug("%s: for CPU %u\n", __func__, policy->cpu); | |
2082 | ||
3bbf8fe3 RW |
2083 | if (cpufreq_driver->get && !cpufreq_driver->setpolicy) |
2084 | cpufreq_update_current_freq(policy); | |
2085 | ||
e788892b RW |
2086 | if (policy->governor->start) { |
2087 | ret = policy->governor->start(policy); | |
2088 | if (ret) | |
2089 | return ret; | |
2090 | } | |
2091 | ||
2092 | if (policy->governor->limits) | |
2093 | policy->governor->limits(policy); | |
d6ff44d6 | 2094 | |
d6ff44d6 | 2095 | return 0; |
0a300767 RW |
2096 | } |
2097 | ||
a92604b4 RW |
2098 | static void cpufreq_stop_governor(struct cpufreq_policy *policy) |
2099 | { | |
2100 | if (cpufreq_suspended || !policy->governor) | |
2101 | return; | |
2102 | ||
2103 | pr_debug("%s: for CPU %u\n", __func__, policy->cpu); | |
2104 | ||
e788892b RW |
2105 | if (policy->governor->stop) |
2106 | policy->governor->stop(policy); | |
a92604b4 RW |
2107 | } |
2108 | ||
2109 | static void cpufreq_governor_limits(struct cpufreq_policy *policy) | |
2110 | { | |
2111 | if (cpufreq_suspended || !policy->governor) | |
2112 | return; | |
2113 | ||
2114 | pr_debug("%s: for CPU %u\n", __func__, policy->cpu); | |
2115 | ||
e788892b RW |
2116 | if (policy->governor->limits) |
2117 | policy->governor->limits(policy); | |
0a300767 RW |
2118 | } |
2119 | ||
1da177e4 LT |
2120 | int cpufreq_register_governor(struct cpufreq_governor *governor) |
2121 | { | |
3bcb09a3 | 2122 | int err; |
1da177e4 LT |
2123 | |
2124 | if (!governor) | |
2125 | return -EINVAL; | |
2126 | ||
a7b422cd KRW |
2127 | if (cpufreq_disabled()) |
2128 | return -ENODEV; | |
2129 | ||
3fc54d37 | 2130 | mutex_lock(&cpufreq_governor_mutex); |
32ee8c3e | 2131 | |
3bcb09a3 | 2132 | err = -EBUSY; |
42f91fa1 | 2133 | if (!find_governor(governor->name)) { |
3bcb09a3 JF |
2134 | err = 0; |
2135 | list_add(&governor->governor_list, &cpufreq_governor_list); | |
1da177e4 | 2136 | } |
1da177e4 | 2137 | |
32ee8c3e | 2138 | mutex_unlock(&cpufreq_governor_mutex); |
3bcb09a3 | 2139 | return err; |
1da177e4 LT |
2140 | } |
2141 | EXPORT_SYMBOL_GPL(cpufreq_register_governor); | |
2142 | ||
1da177e4 LT |
2143 | void cpufreq_unregister_governor(struct cpufreq_governor *governor) |
2144 | { | |
4573237b VK |
2145 | struct cpufreq_policy *policy; |
2146 | unsigned long flags; | |
90e41bac | 2147 | |
1da177e4 LT |
2148 | if (!governor) |
2149 | return; | |
2150 | ||
a7b422cd KRW |
2151 | if (cpufreq_disabled()) |
2152 | return; | |
2153 | ||
4573237b VK |
2154 | /* clear last_governor for all inactive policies */ |
2155 | read_lock_irqsave(&cpufreq_driver_lock, flags); | |
2156 | for_each_inactive_policy(policy) { | |
18bf3a12 VK |
2157 | if (!strcmp(policy->last_governor, governor->name)) { |
2158 | policy->governor = NULL; | |
4573237b | 2159 | strcpy(policy->last_governor, "\0"); |
18bf3a12 | 2160 | } |
90e41bac | 2161 | } |
4573237b | 2162 | read_unlock_irqrestore(&cpufreq_driver_lock, flags); |
90e41bac | 2163 | |
3fc54d37 | 2164 | mutex_lock(&cpufreq_governor_mutex); |
1da177e4 | 2165 | list_del(&governor->governor_list); |
3fc54d37 | 2166 | mutex_unlock(&cpufreq_governor_mutex); |
1da177e4 LT |
2167 | } |
2168 | EXPORT_SYMBOL_GPL(cpufreq_unregister_governor); | |
2169 | ||
2170 | ||
1da177e4 LT |
2171 | /********************************************************************* |
2172 | * POLICY INTERFACE * | |
2173 | *********************************************************************/ | |
2174 | ||
2175 | /** | |
2176 | * cpufreq_get_policy - get the current cpufreq_policy | |
29464f28 DJ |
2177 | * @policy: struct cpufreq_policy into which the current cpufreq_policy |
2178 | * is written | |
1da177e4 LT |
2179 | * |
2180 | * Reads the current cpufreq policy. | |
2181 | */ | |
2182 | int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu) | |
2183 | { | |
2184 | struct cpufreq_policy *cpu_policy; | |
2185 | if (!policy) | |
2186 | return -EINVAL; | |
2187 | ||
2188 | cpu_policy = cpufreq_cpu_get(cpu); | |
2189 | if (!cpu_policy) | |
2190 | return -EINVAL; | |
2191 | ||
d5b73cd8 | 2192 | memcpy(policy, cpu_policy, sizeof(*policy)); |
1da177e4 LT |
2193 | |
2194 | cpufreq_cpu_put(cpu_policy); | |
1da177e4 LT |
2195 | return 0; |
2196 | } | |
2197 | EXPORT_SYMBOL(cpufreq_get_policy); | |
2198 | ||
153d7f3f | 2199 | /* |
037ce839 VK |
2200 | * policy : current policy. |
2201 | * new_policy: policy to be set. | |
153d7f3f | 2202 | */ |
037ce839 | 2203 | static int cpufreq_set_policy(struct cpufreq_policy *policy, |
3a3e9e06 | 2204 | struct cpufreq_policy *new_policy) |
1da177e4 | 2205 | { |
d9a789c7 RW |
2206 | struct cpufreq_governor *old_gov; |
2207 | int ret; | |
1da177e4 | 2208 | |
e837f9b5 JP |
2209 | pr_debug("setting new policy for CPU %u: %u - %u kHz\n", |
2210 | new_policy->cpu, new_policy->min, new_policy->max); | |
1da177e4 | 2211 | |
d5b73cd8 | 2212 | memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo)); |
1da177e4 | 2213 | |
fba9573b PX |
2214 | /* |
2215 | * This check works well when we store new min/max freq attributes, | |
2216 | * because new_policy is a copy of policy with one field updated. | |
2217 | */ | |
2218 | if (new_policy->min > new_policy->max) | |
d9a789c7 | 2219 | return -EINVAL; |
9c9a43ed | 2220 | |
1da177e4 | 2221 | /* verify the cpu speed can be set within this limit */ |
3a3e9e06 | 2222 | ret = cpufreq_driver->verify(new_policy); |
1da177e4 | 2223 | if (ret) |
d9a789c7 | 2224 | return ret; |
1da177e4 | 2225 | |
1da177e4 | 2226 | /* adjust if necessary - all reasons */ |
e041c683 | 2227 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
3a3e9e06 | 2228 | CPUFREQ_ADJUST, new_policy); |
1da177e4 | 2229 | |
bb176f7d VK |
2230 | /* |
2231 | * verify the cpu speed can be set within this limit, which might be | |
2232 | * different to the first one | |
2233 | */ | |
3a3e9e06 | 2234 | ret = cpufreq_driver->verify(new_policy); |
e041c683 | 2235 | if (ret) |
d9a789c7 | 2236 | return ret; |
1da177e4 LT |
2237 | |
2238 | /* notification of the new policy */ | |
e041c683 | 2239 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
3a3e9e06 | 2240 | CPUFREQ_NOTIFY, new_policy); |
1da177e4 | 2241 | |
3a3e9e06 VK |
2242 | policy->min = new_policy->min; |
2243 | policy->max = new_policy->max; | |
601b2185 | 2244 | trace_cpu_frequency_limits(policy); |
1da177e4 | 2245 | |
e3c06236 SM |
2246 | policy->cached_target_freq = UINT_MAX; |
2247 | ||
2d06d8c4 | 2248 | pr_debug("new min and max freqs are %u - %u kHz\n", |
e837f9b5 | 2249 | policy->min, policy->max); |
1da177e4 | 2250 | |
1c3d85dd | 2251 | if (cpufreq_driver->setpolicy) { |
3a3e9e06 | 2252 | policy->policy = new_policy->policy; |
2d06d8c4 | 2253 | pr_debug("setting range\n"); |
d9a789c7 RW |
2254 | return cpufreq_driver->setpolicy(new_policy); |
2255 | } | |
1da177e4 | 2256 | |
0a300767 RW |
2257 | if (new_policy->governor == policy->governor) { |
2258 | pr_debug("cpufreq: governor limits update\n"); | |
a92604b4 | 2259 | cpufreq_governor_limits(policy); |
d6ff44d6 | 2260 | return 0; |
0a300767 | 2261 | } |
7bd353a9 | 2262 | |
d9a789c7 RW |
2263 | pr_debug("governor switch\n"); |
2264 | ||
2265 | /* save old, working values */ | |
2266 | old_gov = policy->governor; | |
2267 | /* end old governor */ | |
2268 | if (old_gov) { | |
45482c70 | 2269 | cpufreq_stop_governor(policy); |
36be3418 | 2270 | cpufreq_exit_governor(policy); |
1da177e4 LT |
2271 | } |
2272 | ||
d9a789c7 RW |
2273 | /* start new governor */ |
2274 | policy->governor = new_policy->governor; | |
a92604b4 | 2275 | ret = cpufreq_init_governor(policy); |
4bc384ae | 2276 | if (!ret) { |
0a300767 RW |
2277 | ret = cpufreq_start_governor(policy); |
2278 | if (!ret) { | |
2279 | pr_debug("cpufreq: governor change\n"); | |
2280 | return 0; | |
2281 | } | |
b7898fda | 2282 | cpufreq_exit_governor(policy); |
d9a789c7 RW |
2283 | } |
2284 | ||
2285 | /* new governor failed, so re-start old one */ | |
2286 | pr_debug("starting governor %s failed\n", policy->governor->name); | |
2287 | if (old_gov) { | |
2288 | policy->governor = old_gov; | |
a92604b4 | 2289 | if (cpufreq_init_governor(policy)) |
4bc384ae VK |
2290 | policy->governor = NULL; |
2291 | else | |
0a300767 | 2292 | cpufreq_start_governor(policy); |
d9a789c7 RW |
2293 | } |
2294 | ||
4bc384ae | 2295 | return ret; |
1da177e4 LT |
2296 | } |
2297 | ||
1da177e4 LT |
2298 | /** |
2299 | * cpufreq_update_policy - re-evaluate an existing cpufreq policy | |
2300 | * @cpu: CPU which shall be re-evaluated | |
2301 | * | |
25985edc | 2302 | * Useful for policy notifiers which have different necessities |
1da177e4 LT |
2303 | * at different times. |
2304 | */ | |
30248fef | 2305 | void cpufreq_update_policy(unsigned int cpu) |
1da177e4 | 2306 | { |
3a3e9e06 VK |
2307 | struct cpufreq_policy *policy = cpufreq_cpu_get(cpu); |
2308 | struct cpufreq_policy new_policy; | |
1da177e4 | 2309 | |
fefa8ff8 | 2310 | if (!policy) |
30248fef | 2311 | return; |
1da177e4 | 2312 | |
ad7722da | 2313 | down_write(&policy->rwsem); |
1da177e4 | 2314 | |
30248fef | 2315 | if (policy_is_inactive(policy)) |
182e36af | 2316 | goto unlock; |
182e36af | 2317 | |
2d06d8c4 | 2318 | pr_debug("updating policy for CPU %u\n", cpu); |
d5b73cd8 | 2319 | memcpy(&new_policy, policy, sizeof(*policy)); |
3a3e9e06 VK |
2320 | new_policy.min = policy->user_policy.min; |
2321 | new_policy.max = policy->user_policy.max; | |
1da177e4 | 2322 | |
bb176f7d VK |
2323 | /* |
2324 | * BIOS might change freq behind our back | |
2325 | * -> ask driver for current freq and notify governors about a change | |
2326 | */ | |
2ed99e39 | 2327 | if (cpufreq_driver->get && !cpufreq_driver->setpolicy) { |
30248fef | 2328 | if (cpufreq_suspended) |
742c87bf | 2329 | goto unlock; |
30248fef | 2330 | |
999f5729 | 2331 | new_policy.cur = cpufreq_update_current_freq(policy); |
30248fef | 2332 | if (WARN_ON(!new_policy.cur)) |
fefa8ff8 | 2333 | goto unlock; |
0961dd0d TR |
2334 | } |
2335 | ||
30248fef | 2336 | cpufreq_set_policy(policy, &new_policy); |
1da177e4 | 2337 | |
fefa8ff8 | 2338 | unlock: |
ad7722da | 2339 | up_write(&policy->rwsem); |
5a01f2e8 | 2340 | |
3a3e9e06 | 2341 | cpufreq_cpu_put(policy); |
1da177e4 LT |
2342 | } |
2343 | EXPORT_SYMBOL(cpufreq_update_policy); | |
2344 | ||
6f19efc0 LM |
2345 | /********************************************************************* |
2346 | * BOOST * | |
2347 | *********************************************************************/ | |
2348 | static int cpufreq_boost_set_sw(int state) | |
2349 | { | |
6f19efc0 LM |
2350 | struct cpufreq_policy *policy; |
2351 | int ret = -EINVAL; | |
2352 | ||
f963735a | 2353 | for_each_active_policy(policy) { |
f8bfc116 VK |
2354 | if (!policy->freq_table) |
2355 | continue; | |
49f18560 | 2356 | |
f8bfc116 VK |
2357 | ret = cpufreq_frequency_table_cpuinfo(policy, |
2358 | policy->freq_table); | |
2359 | if (ret) { | |
2360 | pr_err("%s: Policy frequency update failed\n", | |
2361 | __func__); | |
2362 | break; | |
6f19efc0 | 2363 | } |
f8bfc116 VK |
2364 | |
2365 | down_write(&policy->rwsem); | |
2366 | policy->user_policy.max = policy->max; | |
2367 | cpufreq_governor_limits(policy); | |
2368 | up_write(&policy->rwsem); | |
6f19efc0 LM |
2369 | } |
2370 | ||
2371 | return ret; | |
2372 | } | |
2373 | ||
2374 | int cpufreq_boost_trigger_state(int state) | |
2375 | { | |
2376 | unsigned long flags; | |
2377 | int ret = 0; | |
2378 | ||
2379 | if (cpufreq_driver->boost_enabled == state) | |
2380 | return 0; | |
2381 | ||
2382 | write_lock_irqsave(&cpufreq_driver_lock, flags); | |
2383 | cpufreq_driver->boost_enabled = state; | |
2384 | write_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
2385 | ||
2386 | ret = cpufreq_driver->set_boost(state); | |
2387 | if (ret) { | |
2388 | write_lock_irqsave(&cpufreq_driver_lock, flags); | |
2389 | cpufreq_driver->boost_enabled = !state; | |
2390 | write_unlock_irqrestore(&cpufreq_driver_lock, flags); | |
2391 | ||
e837f9b5 JP |
2392 | pr_err("%s: Cannot %s BOOST\n", |
2393 | __func__, state ? "enable" : "disable"); | |
6f19efc0 LM |
2394 | } |
2395 | ||
2396 | return ret; | |
2397 | } | |
2398 | ||
41669da0 | 2399 | static bool cpufreq_boost_supported(void) |
6f19efc0 | 2400 | { |
7a6c79f2 | 2401 | return likely(cpufreq_driver) && cpufreq_driver->set_boost; |
6f19efc0 | 2402 | } |
6f19efc0 | 2403 | |
44139ed4 VK |
2404 | static int create_boost_sysfs_file(void) |
2405 | { | |
2406 | int ret; | |
2407 | ||
c82bd444 | 2408 | ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr); |
44139ed4 VK |
2409 | if (ret) |
2410 | pr_err("%s: cannot register global BOOST sysfs file\n", | |
2411 | __func__); | |
2412 | ||
2413 | return ret; | |
2414 | } | |
2415 | ||
2416 | static void remove_boost_sysfs_file(void) | |
2417 | { | |
2418 | if (cpufreq_boost_supported()) | |
c82bd444 | 2419 | sysfs_remove_file(cpufreq_global_kobject, &boost.attr); |
44139ed4 VK |
2420 | } |
2421 | ||
2422 | int cpufreq_enable_boost_support(void) | |
2423 | { | |
2424 | if (!cpufreq_driver) | |
2425 | return -EINVAL; | |
2426 | ||
2427 | if (cpufreq_boost_supported()) | |
2428 | return 0; | |
2429 | ||
7a6c79f2 | 2430 | cpufreq_driver->set_boost = cpufreq_boost_set_sw; |
44139ed4 VK |
2431 | |
2432 | /* This will get removed on driver unregister */ | |
2433 | return create_boost_sysfs_file(); | |
2434 | } | |
2435 | EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support); | |
2436 | ||
6f19efc0 LM |
2437 | int cpufreq_boost_enabled(void) |
2438 | { | |
2439 | return cpufreq_driver->boost_enabled; | |
2440 | } | |
2441 | EXPORT_SYMBOL_GPL(cpufreq_boost_enabled); | |
2442 | ||
1da177e4 LT |
2443 | /********************************************************************* |
2444 | * REGISTER / UNREGISTER CPUFREQ DRIVER * | |
2445 | *********************************************************************/ | |
27622b06 | 2446 | static enum cpuhp_state hp_online; |
1da177e4 | 2447 | |
c4a3fa26 CY |
2448 | static int cpuhp_cpufreq_online(unsigned int cpu) |
2449 | { | |
2450 | cpufreq_online(cpu); | |
2451 | ||
2452 | return 0; | |
2453 | } | |
2454 | ||
2455 | static int cpuhp_cpufreq_offline(unsigned int cpu) | |
2456 | { | |
2457 | cpufreq_offline(cpu); | |
2458 | ||
2459 | return 0; | |
2460 | } | |
2461 | ||
1da177e4 LT |
2462 | /** |
2463 | * cpufreq_register_driver - register a CPU Frequency driver | |
2464 | * @driver_data: A struct cpufreq_driver containing the values# | |
2465 | * submitted by the CPU Frequency driver. | |
2466 | * | |
bb176f7d | 2467 | * Registers a CPU Frequency driver to this core code. This code |
63af4055 | 2468 | * returns zero on success, -EEXIST when another driver got here first |
32ee8c3e | 2469 | * (and isn't unregistered in the meantime). |
1da177e4 LT |
2470 | * |
2471 | */ | |
221dee28 | 2472 | int cpufreq_register_driver(struct cpufreq_driver *driver_data) |
1da177e4 LT |
2473 | { |
2474 | unsigned long flags; | |
2475 | int ret; | |
2476 | ||
a7b422cd KRW |
2477 | if (cpufreq_disabled()) |
2478 | return -ENODEV; | |
2479 | ||
1da177e4 | 2480 | if (!driver_data || !driver_data->verify || !driver_data->init || |
9c0ebcf7 | 2481 | !(driver_data->setpolicy || driver_data->target_index || |
9832235f RW |
2482 | driver_data->target) || |
2483 | (driver_data->setpolicy && (driver_data->target_index || | |
1c03a2d0 VK |
2484 | driver_data->target)) || |
2485 | (!!driver_data->get_intermediate != !!driver_data->target_intermediate)) | |
1da177e4 LT |
2486 | return -EINVAL; |
2487 | ||
2d06d8c4 | 2488 | pr_debug("trying to register driver %s\n", driver_data->name); |
1da177e4 | 2489 | |
fdd320da | 2490 | /* Protect against concurrent CPU online/offline. */ |
a92551e4 | 2491 | cpus_read_lock(); |
fdd320da | 2492 | |
0d1857a1 | 2493 | write_lock_irqsave(&cpufreq_driver_lock, flags); |
1c3d85dd | 2494 | if (cpufreq_driver) { |
0d1857a1 | 2495 | write_unlock_irqrestore(&cpufreq_driver_lock, flags); |
fdd320da RW |
2496 | ret = -EEXIST; |
2497 | goto out; | |
1da177e4 | 2498 | } |
1c3d85dd | 2499 | cpufreq_driver = driver_data; |
0d1857a1 | 2500 | write_unlock_irqrestore(&cpufreq_driver_lock, flags); |
1da177e4 | 2501 | |
bc68b7df VK |
2502 | if (driver_data->setpolicy) |
2503 | driver_data->flags |= CPUFREQ_CONST_LOOPS; | |
2504 | ||
7a6c79f2 RW |
2505 | if (cpufreq_boost_supported()) { |
2506 | ret = create_boost_sysfs_file(); | |
2507 | if (ret) | |
2508 | goto err_null_driver; | |
2509 | } | |
6f19efc0 | 2510 | |
8a25a2fd | 2511 | ret = subsys_interface_register(&cpufreq_interface); |
8f5bc2ab | 2512 | if (ret) |
6f19efc0 | 2513 | goto err_boost_unreg; |
1da177e4 | 2514 | |
ce1bcfe9 VK |
2515 | if (!(cpufreq_driver->flags & CPUFREQ_STICKY) && |
2516 | list_empty(&cpufreq_policy_list)) { | |
1da177e4 | 2517 | /* if all ->init() calls failed, unregister */ |
6c770036 | 2518 | ret = -ENODEV; |
ce1bcfe9 VK |
2519 | pr_debug("%s: No CPU initialized for driver %s\n", __func__, |
2520 | driver_data->name); | |
2521 | goto err_if_unreg; | |
1da177e4 LT |
2522 | } |
2523 | ||
a92551e4 SAS |
2524 | ret = cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ONLINE_DYN, |
2525 | "cpufreq:online", | |
2526 | cpuhp_cpufreq_online, | |
2527 | cpuhp_cpufreq_offline); | |
27622b06 SAS |
2528 | if (ret < 0) |
2529 | goto err_if_unreg; | |
2530 | hp_online = ret; | |
5372e054 | 2531 | ret = 0; |
27622b06 | 2532 | |
2d06d8c4 | 2533 | pr_debug("driver %s up and running\n", driver_data->name); |
3834abb4 | 2534 | goto out; |
fdd320da | 2535 | |
8a25a2fd KS |
2536 | err_if_unreg: |
2537 | subsys_interface_unregister(&cpufreq_interface); | |
6f19efc0 | 2538 | err_boost_unreg: |
44139ed4 | 2539 | remove_boost_sysfs_file(); |
8f5bc2ab | 2540 | err_null_driver: |
0d1857a1 | 2541 | write_lock_irqsave(&cpufreq_driver_lock, flags); |
1c3d85dd | 2542 | cpufreq_driver = NULL; |
0d1857a1 | 2543 | write_unlock_irqrestore(&cpufreq_driver_lock, flags); |
3834abb4 | 2544 | out: |
a92551e4 | 2545 | cpus_read_unlock(); |
3834abb4 | 2546 | return ret; |
1da177e4 LT |
2547 | } |
2548 | EXPORT_SYMBOL_GPL(cpufreq_register_driver); | |
2549 | ||
1da177e4 LT |
2550 | /** |
2551 | * cpufreq_unregister_driver - unregister the current CPUFreq driver | |
2552 | * | |
bb176f7d | 2553 | * Unregister the current CPUFreq driver. Only call this if you have |
1da177e4 LT |
2554 | * the right to do so, i.e. if you have succeeded in initialising before! |
2555 | * Returns zero if successful, and -EINVAL if the cpufreq_driver is | |
2556 | * currently not initialised. | |
2557 | */ | |
221dee28 | 2558 | int cpufreq_unregister_driver(struct cpufreq_driver *driver) |
1da177e4 LT |
2559 | { |
2560 | unsigned long flags; | |
2561 | ||
1c3d85dd | 2562 | if (!cpufreq_driver || (driver != cpufreq_driver)) |
1da177e4 | 2563 | return -EINVAL; |
1da177e4 | 2564 | |
2d06d8c4 | 2565 | pr_debug("unregistering driver %s\n", driver->name); |
1da177e4 | 2566 | |
454d3a25 | 2567 | /* Protect against concurrent cpu hotplug */ |
a92551e4 | 2568 | cpus_read_lock(); |
8a25a2fd | 2569 | subsys_interface_unregister(&cpufreq_interface); |
44139ed4 | 2570 | remove_boost_sysfs_file(); |
a92551e4 | 2571 | cpuhp_remove_state_nocalls_cpuslocked(hp_online); |
1da177e4 | 2572 | |
0d1857a1 | 2573 | write_lock_irqsave(&cpufreq_driver_lock, flags); |
6eed9404 | 2574 | |
1c3d85dd | 2575 | cpufreq_driver = NULL; |
6eed9404 | 2576 | |
0d1857a1 | 2577 | write_unlock_irqrestore(&cpufreq_driver_lock, flags); |
a92551e4 | 2578 | cpus_read_unlock(); |
1da177e4 LT |
2579 | |
2580 | return 0; | |
2581 | } | |
2582 | EXPORT_SYMBOL_GPL(cpufreq_unregister_driver); | |
5a01f2e8 | 2583 | |
90de2a4a DA |
2584 | /* |
2585 | * Stop cpufreq at shutdown to make sure it isn't holding any locks | |
2586 | * or mutexes when secondary CPUs are halted. | |
2587 | */ | |
2588 | static struct syscore_ops cpufreq_syscore_ops = { | |
2589 | .shutdown = cpufreq_suspend, | |
2590 | }; | |
2591 | ||
c82bd444 VK |
2592 | struct kobject *cpufreq_global_kobject; |
2593 | EXPORT_SYMBOL(cpufreq_global_kobject); | |
2594 | ||
5a01f2e8 VP |
2595 | static int __init cpufreq_core_init(void) |
2596 | { | |
a7b422cd KRW |
2597 | if (cpufreq_disabled()) |
2598 | return -ENODEV; | |
2599 | ||
8eec1020 | 2600 | cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj); |
8aa84ad8 TR |
2601 | BUG_ON(!cpufreq_global_kobject); |
2602 | ||
90de2a4a DA |
2603 | register_syscore_ops(&cpufreq_syscore_ops); |
2604 | ||
5a01f2e8 VP |
2605 | return 0; |
2606 | } | |
d82f2692 | 2607 | module_param(off, int, 0444); |
5a01f2e8 | 2608 | core_initcall(cpufreq_core_init); |