thermal: cpu_cooling: document node in struct cpufreq_cooling_device
[deliverable/linux.git] / drivers / thermal / cpu_cooling.c
CommitLineData
02361418
ADK
1/*
2 * linux/drivers/thermal/cpu_cooling.c
3 *
4 * Copyright (C) 2012 Samsung Electronics Co., Ltd(http://www.samsung.com)
5 * Copyright (C) 2012 Amit Daniel <amit.kachhap@linaro.org>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
20 *
21 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22 */
02361418
ADK
23#include <linux/module.h>
24#include <linux/thermal.h>
02361418
ADK
25#include <linux/cpufreq.h>
26#include <linux/err.h>
27#include <linux/slab.h>
28#include <linux/cpu.h>
29#include <linux/cpu_cooling.h>
30
31/**
3b3c0748 32 * struct cpufreq_cooling_device - data for cooling device with cpufreq
02361418
ADK
33 * @id: unique integer value corresponding to each cpufreq_cooling_device
34 * registered.
3b3c0748
EV
35 * @cool_dev: thermal_cooling_device pointer to keep track of the
36 * registered cooling device.
02361418
ADK
37 * @cpufreq_state: integer value representing the current state of cpufreq
38 * cooling devices.
39 * @cpufreq_val: integer value representing the absolute value of the clipped
40 * frequency.
41 * @allowed_cpus: all the cpus involved for this cpufreq_cooling_device.
fc4de356 42 * @node: list_head to link all cpufreq_cooling_device together.
02361418
ADK
43 *
44 * This structure is required for keeping information of each
67d0b2a8 45 * cpufreq_cooling_device registered. In order to prevent corruption of this a
02361418
ADK
46 * mutex lock cooling_cpufreq_lock is used.
47 */
48struct cpufreq_cooling_device {
49 int id;
50 struct thermal_cooling_device *cool_dev;
51 unsigned int cpufreq_state;
52 unsigned int cpufreq_val;
53 struct cpumask allowed_cpus;
2dcd851f 54 struct list_head node;
02361418 55};
02361418 56static DEFINE_IDR(cpufreq_idr);
160b7d80 57static DEFINE_MUTEX(cooling_cpufreq_lock);
02361418 58
160b7d80 59static unsigned int cpufreq_dev_count;
02361418 60
2dcd851f 61static LIST_HEAD(cpufreq_dev_list);
02361418
ADK
62
63/**
64 * get_idr - function to get a unique id.
65 * @idr: struct idr * handle used to create a id.
66 * @id: int * value generated by this function.
79491e53
EV
67 *
68 * This function will populate @id with an unique
69 * id, using the idr API.
70 *
71 * Return: 0 on success, an error code on failure.
02361418
ADK
72 */
73static int get_idr(struct idr *idr, int *id)
74{
6deb69fa 75 int ret;
02361418
ADK
76
77 mutex_lock(&cooling_cpufreq_lock);
6deb69fa 78 ret = idr_alloc(idr, NULL, 0, 0, GFP_KERNEL);
02361418 79 mutex_unlock(&cooling_cpufreq_lock);
6deb69fa
TH
80 if (unlikely(ret < 0))
81 return ret;
82 *id = ret;
79491e53 83
02361418
ADK
84 return 0;
85}
86
87/**
88 * release_idr - function to free the unique id.
89 * @idr: struct idr * handle used for creating the id.
90 * @id: int value representing the unique id.
91 */
92static void release_idr(struct idr *idr, int id)
93{
94 mutex_lock(&cooling_cpufreq_lock);
95 idr_remove(idr, id);
96 mutex_unlock(&cooling_cpufreq_lock);
97}
98
99/* Below code defines functions to be used for cpufreq as cooling device */
100
101/**
82b9ee40 102 * is_cpufreq_valid - function to check frequency transitioning capability.
02361418 103 * @cpu: cpu for which check is needed.
82b9ee40
EV
104 *
105 * This function will check the current state of the system if
106 * it is capable of changing the frequency for a given @cpu.
107 *
108 * Return: 0 if the system is not currently capable of changing
109 * the frequency of given cpu. !0 in case the frequency is changeable.
02361418
ADK
110 */
111static int is_cpufreq_valid(int cpu)
112{
113 struct cpufreq_policy policy;
79491e53 114
02361418
ADK
115 return !cpufreq_get_policy(&policy, cpu);
116}
117
fc35b35c
ZR
118enum cpufreq_cooling_property {
119 GET_LEVEL,
120 GET_FREQ,
121 GET_MAXL,
122};
123
2d6f28fe
EV
124/**
125 * get_property - fetch a property of interest for a give cpu.
126 * @cpu: cpu for which the property is required
127 * @input: query parameter
128 * @output: query return
129 * @property: type of query (frequency, level, max level)
130 *
131 * This is the common function to
fc35b35c
ZR
132 * 1. get maximum cpu cooling states
133 * 2. translate frequency to cooling state
134 * 3. translate cooling state to frequency
135 * Note that the code may be not in good shape
136 * but it is written in this way in order to:
137 * a) reduce duplicate code as most of the code can be shared.
138 * b) make sure the logic is consistent when translating between
139 * cooling states and frequencies.
2d6f28fe
EV
140 *
141 * Return: 0 on success, -EINVAL when invalid parameters are passed.
142 */
fc35b35c 143static int get_property(unsigned int cpu, unsigned long input,
d8892a01
EV
144 unsigned int *output,
145 enum cpufreq_cooling_property property)
02361418 146{
3c84ef3a 147 int i;
4469b997 148 unsigned long max_level = 0, level = 0;
fc35b35c
ZR
149 unsigned int freq = CPUFREQ_ENTRY_INVALID;
150 int descend = -1;
3c84ef3a 151 struct cpufreq_frequency_table *pos, *table =
02361418 152 cpufreq_frequency_get_table(cpu);
79d26401 153
fc35b35c
ZR
154 if (!output)
155 return -EINVAL;
156
02361418 157 if (!table)
fc35b35c 158 return -EINVAL;
02361418 159
3c84ef3a 160 cpufreq_for_each_valid_entry(pos, table) {
fc35b35c 161 /* ignore duplicate entry */
3c84ef3a 162 if (freq == pos->frequency)
fc35b35c
ZR
163 continue;
164
165 /* get the frequency order */
24c7a381 166 if (freq != CPUFREQ_ENTRY_INVALID && descend == -1)
3c84ef3a 167 descend = freq > pos->frequency;
02361418 168
3c84ef3a 169 freq = pos->frequency;
fc35b35c 170 max_level++;
02361418 171 }
a116776f
ZR
172
173 /* No valid cpu frequency entry */
174 if (max_level == 0)
175 return -EINVAL;
176
1c9573a4
EV
177 /* max_level is an index, not a counter */
178 max_level--;
02361418 179
fc35b35c
ZR
180 /* get max level */
181 if (property == GET_MAXL) {
182 *output = (unsigned int)max_level;
183 return 0;
184 }
02361418 185
fc35b35c 186 if (property == GET_FREQ)
1c9573a4 187 level = descend ? input : (max_level - input);
fc35b35c 188
3c84ef3a
SK
189 i = 0;
190 cpufreq_for_each_valid_entry(pos, table) {
fc35b35c 191 /* ignore duplicate entry */
3c84ef3a 192 if (freq == pos->frequency)
fc35b35c
ZR
193 continue;
194
195 /* now we have a valid frequency entry */
3c84ef3a 196 freq = pos->frequency;
fc35b35c
ZR
197
198 if (property == GET_LEVEL && (unsigned int)input == freq) {
199 /* get level by frequency */
3c84ef3a 200 *output = descend ? i : (max_level - i);
fc35b35c
ZR
201 return 0;
202 }
3c84ef3a 203 if (property == GET_FREQ && level == i) {
fc35b35c
ZR
204 /* get frequency by level */
205 *output = freq;
206 return 0;
207 }
3c84ef3a 208 i++;
02361418 209 }
79491e53 210
fc35b35c
ZR
211 return -EINVAL;
212}
213
44952d33
EV
214/**
215 * cpufreq_cooling_get_level - for a give cpu, return the cooling level.
216 * @cpu: cpu for which the level is required
217 * @freq: the frequency of interest
218 *
219 * This function will match the cooling level corresponding to the
220 * requested @freq and return it.
221 *
222 * Return: The matched cooling level on success or THERMAL_CSTATE_INVALID
223 * otherwise.
224 */
57df8106
ZR
225unsigned long cpufreq_cooling_get_level(unsigned int cpu, unsigned int freq)
226{
227 unsigned int val;
228
229 if (get_property(cpu, (unsigned long)freq, &val, GET_LEVEL))
230 return THERMAL_CSTATE_INVALID;
79491e53 231
57df8106
ZR
232 return (unsigned long)val;
233}
243dbd9c 234EXPORT_SYMBOL_GPL(cpufreq_cooling_get_level);
57df8106 235
fc35b35c
ZR
236/**
237 * get_cpu_frequency - get the absolute value of frequency from level.
238 * @cpu: cpu for which frequency is fetched.
41518c41
EV
239 * @level: cooling level
240 *
241 * This function matches cooling level with frequency. Based on a cooling level
242 * of frequency, equals cooling state of cpu cooling device, it will return
243 * the corresponding frequency.
fc35b35c 244 * e.g level=0 --> 1st MAX FREQ, level=1 ---> 2nd MAX FREQ, .... etc
41518c41
EV
245 *
246 * Return: 0 on error, the corresponding frequency otherwise.
fc35b35c
ZR
247 */
248static unsigned int get_cpu_frequency(unsigned int cpu, unsigned long level)
249{
250 int ret = 0;
251 unsigned int freq;
252
253 ret = get_property(cpu, level, &freq, GET_FREQ);
254 if (ret)
255 return 0;
79491e53 256
fc35b35c 257 return freq;
02361418
ADK
258}
259
260/**
261 * cpufreq_apply_cooling - function to apply frequency clipping.
262 * @cpufreq_device: cpufreq_cooling_device pointer containing frequency
263 * clipping data.
264 * @cooling_state: value of the cooling state.
4b33deb5
EV
265 *
266 * Function used to make sure the cpufreq layer is aware of current thermal
267 * limits. The limits are applied by updating the cpufreq policy.
268 *
269 * Return: 0 on success, an error code otherwise (-EINVAL in case wrong
270 * cooling state).
02361418
ADK
271 */
272static int cpufreq_apply_cooling(struct cpufreq_cooling_device *cpufreq_device,
5fda7f68 273 unsigned long cooling_state)
02361418
ADK
274{
275 unsigned int cpuid, clip_freq;
bde00663
LNM
276 struct cpumask *mask = &cpufreq_device->allowed_cpus;
277 unsigned int cpu = cpumask_any(mask);
02361418
ADK
278
279
280 /* Check if the old cooling action is same as new cooling action */
281 if (cpufreq_device->cpufreq_state == cooling_state)
282 return 0;
283
284 clip_freq = get_cpu_frequency(cpu, cooling_state);
285 if (!clip_freq)
286 return -EINVAL;
287
288 cpufreq_device->cpufreq_state = cooling_state;
289 cpufreq_device->cpufreq_val = clip_freq;
02361418 290
bde00663 291 for_each_cpu(cpuid, mask) {
02361418
ADK
292 if (is_cpufreq_valid(cpuid))
293 cpufreq_update_policy(cpuid);
294 }
295
02361418
ADK
296 return 0;
297}
298
299/**
300 * cpufreq_thermal_notifier - notifier callback for cpufreq policy change.
301 * @nb: struct notifier_block * with callback info.
302 * @event: value showing cpufreq event for which this function invoked.
303 * @data: callback-specific data
bab30554 304 *
9746b6e7 305 * Callback to hijack the notification on cpufreq policy transition.
bab30554
EV
306 * Every time there is a change in policy, we will intercept and
307 * update the cpufreq policy with thermal constraints.
308 *
309 * Return: 0 (success)
02361418
ADK
310 */
311static int cpufreq_thermal_notifier(struct notifier_block *nb,
5fda7f68 312 unsigned long event, void *data)
02361418
ADK
313{
314 struct cpufreq_policy *policy = data;
315 unsigned long max_freq = 0;
2dcd851f 316 struct cpufreq_cooling_device *cpufreq_dev;
02361418 317
2dcd851f 318 if (event != CPUFREQ_ADJUST)
02361418
ADK
319 return 0;
320
2dcd851f
YSB
321 mutex_lock(&cooling_cpufreq_lock);
322 list_for_each_entry(cpufreq_dev, &cpufreq_dev_list, node) {
323 if (!cpumask_test_cpu(policy->cpu,
324 &cpufreq_dev->allowed_cpus))
325 continue;
326
327 if (!cpufreq_dev->cpufreq_val)
328 cpufreq_dev->cpufreq_val = get_cpu_frequency(
329 cpumask_any(&cpufreq_dev->allowed_cpus),
330 cpufreq_dev->cpufreq_state);
02361418 331
2dcd851f 332 max_freq = cpufreq_dev->cpufreq_val;
02361418 333
2dcd851f
YSB
334 if (policy->max != max_freq)
335 cpufreq_verify_within_limits(policy, 0, max_freq);
336 }
337 mutex_unlock(&cooling_cpufreq_lock);
02361418
ADK
338
339 return 0;
340}
341
1b9e3526 342/* cpufreq cooling device callback functions are defined below */
02361418
ADK
343
344/**
345 * cpufreq_get_max_state - callback function to get the max cooling state.
346 * @cdev: thermal cooling device pointer.
347 * @state: fill this variable with the max cooling state.
62c00421
EV
348 *
349 * Callback for the thermal cooling device to return the cpufreq
350 * max cooling state.
351 *
352 * Return: 0 on success, an error code otherwise.
02361418
ADK
353 */
354static int cpufreq_get_max_state(struct thermal_cooling_device *cdev,
355 unsigned long *state)
356{
160b7d80 357 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
bde00663 358 struct cpumask *mask = &cpufreq_device->allowed_cpus;
02361418 359 unsigned int cpu;
4f89038f 360 unsigned int count = 0;
fc35b35c 361 int ret;
02361418 362
bde00663 363 cpu = cpumask_any(mask);
02361418 364
4f89038f 365 ret = get_property(cpu, 0, &count, GET_MAXL);
9c51b05a 366
fc35b35c
ZR
367 if (count > 0)
368 *state = count;
02361418 369
fc35b35c 370 return ret;
02361418
ADK
371}
372
373/**
374 * cpufreq_get_cur_state - callback function to get the current cooling state.
375 * @cdev: thermal cooling device pointer.
376 * @state: fill this variable with the current cooling state.
3672552d
EV
377 *
378 * Callback for the thermal cooling device to return the cpufreq
379 * current cooling state.
380 *
381 * Return: 0 on success, an error code otherwise.
02361418
ADK
382 */
383static int cpufreq_get_cur_state(struct thermal_cooling_device *cdev,
384 unsigned long *state)
385{
160b7d80 386 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
02361418 387
160b7d80 388 *state = cpufreq_device->cpufreq_state;
79491e53 389
160b7d80 390 return 0;
02361418
ADK
391}
392
393/**
394 * cpufreq_set_cur_state - callback function to set the current cooling state.
395 * @cdev: thermal cooling device pointer.
396 * @state: set this variable to the current cooling state.
56e05fdb
EV
397 *
398 * Callback for the thermal cooling device to change the cpufreq
399 * current cooling state.
400 *
401 * Return: 0 on success, an error code otherwise.
02361418
ADK
402 */
403static int cpufreq_set_cur_state(struct thermal_cooling_device *cdev,
404 unsigned long state)
405{
160b7d80 406 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
02361418 407
160b7d80 408 return cpufreq_apply_cooling(cpufreq_device, state);
02361418
ADK
409}
410
411/* Bind cpufreq callbacks to thermal cooling device ops */
412static struct thermal_cooling_device_ops const cpufreq_cooling_ops = {
413 .get_max_state = cpufreq_get_max_state,
414 .get_cur_state = cpufreq_get_cur_state,
415 .set_cur_state = cpufreq_set_cur_state,
416};
417
418/* Notifier for cpufreq policy change */
419static struct notifier_block thermal_cpufreq_notifier_block = {
420 .notifier_call = cpufreq_thermal_notifier,
421};
422
423/**
39d99cff
EV
424 * __cpufreq_cooling_register - helper function to create cpufreq cooling device
425 * @np: a valid struct device_node to the cooling device device tree node
02361418 426 * @clip_cpus: cpumask of cpus where the frequency constraints will happen.
12cb08ba
EV
427 *
428 * This interface function registers the cpufreq cooling device with the name
429 * "thermal-cpufreq-%x". This api can support multiple instances of cpufreq
39d99cff
EV
430 * cooling devices. It also gives the opportunity to link the cooling device
431 * with a device tree node, in order to bind it via the thermal DT code.
12cb08ba
EV
432 *
433 * Return: a valid struct thermal_cooling_device pointer on success,
434 * on failure, it returns a corresponding ERR_PTR().
02361418 435 */
39d99cff
EV
436static struct thermal_cooling_device *
437__cpufreq_cooling_register(struct device_node *np,
438 const struct cpumask *clip_cpus)
02361418
ADK
439{
440 struct thermal_cooling_device *cool_dev;
441 struct cpufreq_cooling_device *cpufreq_dev = NULL;
160b7d80 442 unsigned int min = 0, max = 0;
02361418 443 char dev_name[THERMAL_NAME_LENGTH];
a4b6fec9 444 int ret = 0, i;
02361418
ADK
445 struct cpufreq_policy policy;
446
1b9e3526 447 /* Verify that all the clip cpus have same freq_min, freq_max limit */
02361418 448 for_each_cpu(i, clip_cpus) {
1b9e3526 449 /* continue if cpufreq policy not found and not return error */
02361418
ADK
450 if (!cpufreq_get_policy(&policy, i))
451 continue;
452 if (min == 0 && max == 0) {
453 min = policy.cpuinfo.min_freq;
454 max = policy.cpuinfo.max_freq;
455 } else {
456 if (min != policy.cpuinfo.min_freq ||
5fda7f68 457 max != policy.cpuinfo.max_freq)
02361418 458 return ERR_PTR(-EINVAL);
6b6519df 459 }
02361418
ADK
460 }
461 cpufreq_dev = kzalloc(sizeof(struct cpufreq_cooling_device),
5fda7f68 462 GFP_KERNEL);
02361418
ADK
463 if (!cpufreq_dev)
464 return ERR_PTR(-ENOMEM);
465
466 cpumask_copy(&cpufreq_dev->allowed_cpus, clip_cpus);
467
02361418
ADK
468 ret = get_idr(&cpufreq_idr, &cpufreq_dev->id);
469 if (ret) {
470 kfree(cpufreq_dev);
471 return ERR_PTR(-EINVAL);
472 }
473
99871a71
EV
474 snprintf(dev_name, sizeof(dev_name), "thermal-cpufreq-%d",
475 cpufreq_dev->id);
02361418 476
39d99cff
EV
477 cool_dev = thermal_of_cooling_device_register(np, dev_name, cpufreq_dev,
478 &cpufreq_cooling_ops);
73b9bcd7 479 if (IS_ERR(cool_dev)) {
02361418
ADK
480 release_idr(&cpufreq_idr, cpufreq_dev->id);
481 kfree(cpufreq_dev);
73b9bcd7 482 return cool_dev;
02361418 483 }
02361418
ADK
484 cpufreq_dev->cool_dev = cool_dev;
485 cpufreq_dev->cpufreq_state = 0;
486 mutex_lock(&cooling_cpufreq_lock);
02361418
ADK
487
488 /* Register the notifier for first cpufreq cooling device */
489 if (cpufreq_dev_count == 0)
490 cpufreq_register_notifier(&thermal_cpufreq_notifier_block,
5fda7f68 491 CPUFREQ_POLICY_NOTIFIER);
160b7d80 492 cpufreq_dev_count++;
2dcd851f 493 list_add(&cpufreq_dev->node, &cpufreq_dev_list);
02361418
ADK
494
495 mutex_unlock(&cooling_cpufreq_lock);
79491e53 496
02361418
ADK
497 return cool_dev;
498}
39d99cff
EV
499
500/**
501 * cpufreq_cooling_register - function to create cpufreq cooling device.
502 * @clip_cpus: cpumask of cpus where the frequency constraints will happen.
503 *
504 * This interface function registers the cpufreq cooling device with the name
505 * "thermal-cpufreq-%x". This api can support multiple instances of cpufreq
506 * cooling devices.
507 *
508 * Return: a valid struct thermal_cooling_device pointer on success,
509 * on failure, it returns a corresponding ERR_PTR().
510 */
511struct thermal_cooling_device *
512cpufreq_cooling_register(const struct cpumask *clip_cpus)
513{
514 return __cpufreq_cooling_register(NULL, clip_cpus);
515}
243dbd9c 516EXPORT_SYMBOL_GPL(cpufreq_cooling_register);
02361418 517
39d99cff
EV
518/**
519 * of_cpufreq_cooling_register - function to create cpufreq cooling device.
520 * @np: a valid struct device_node to the cooling device device tree node
521 * @clip_cpus: cpumask of cpus where the frequency constraints will happen.
522 *
523 * This interface function registers the cpufreq cooling device with the name
524 * "thermal-cpufreq-%x". This api can support multiple instances of cpufreq
525 * cooling devices. Using this API, the cpufreq cooling device will be
526 * linked to the device tree node provided.
527 *
528 * Return: a valid struct thermal_cooling_device pointer on success,
529 * on failure, it returns a corresponding ERR_PTR().
530 */
531struct thermal_cooling_device *
532of_cpufreq_cooling_register(struct device_node *np,
533 const struct cpumask *clip_cpus)
534{
535 if (!np)
536 return ERR_PTR(-EINVAL);
537
538 return __cpufreq_cooling_register(np, clip_cpus);
539}
540EXPORT_SYMBOL_GPL(of_cpufreq_cooling_register);
541
02361418
ADK
542/**
543 * cpufreq_cooling_unregister - function to remove cpufreq cooling device.
544 * @cdev: thermal cooling device pointer.
135266b4
EV
545 *
546 * This interface function unregisters the "thermal-cpufreq-%x" cooling device.
02361418
ADK
547 */
548void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev)
549{
50e66c7e 550 struct cpufreq_cooling_device *cpufreq_dev;
02361418 551
50e66c7e
EV
552 if (!cdev)
553 return;
554
555 cpufreq_dev = cdev->devdata;
02361418 556 mutex_lock(&cooling_cpufreq_lock);
2dcd851f 557 list_del(&cpufreq_dev->node);
160b7d80 558 cpufreq_dev_count--;
02361418
ADK
559
560 /* Unregister the notifier for the last cpufreq cooling device */
2d9bf71c 561 if (cpufreq_dev_count == 0)
02361418 562 cpufreq_unregister_notifier(&thermal_cpufreq_notifier_block,
5fda7f68 563 CPUFREQ_POLICY_NOTIFIER);
02361418 564 mutex_unlock(&cooling_cpufreq_lock);
160b7d80 565
02361418
ADK
566 thermal_cooling_device_unregister(cpufreq_dev->cool_dev);
567 release_idr(&cpufreq_idr, cpufreq_dev->id);
02361418
ADK
568 kfree(cpufreq_dev);
569}
243dbd9c 570EXPORT_SYMBOL_GPL(cpufreq_cooling_unregister);
This page took 0.140289 seconds and 5 git commands to generate.