]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/thermal/cpu_cooling.c
thermal: cpu_cooling: add documentation for get_property
[mirror_ubuntu-artful-kernel.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.
42 * @node: list_head to link all cpufreq_cooling_device together.
43 *
44 * This structure is required for keeping information of each
45 * cpufreq_cooling_device registered as a list whose head is represented by
46 * cooling_cpufreq_list. In order to prevent corruption of this list a
47 * mutex lock cooling_cpufreq_lock is used.
48 */
49struct cpufreq_cooling_device {
50 int id;
51 struct thermal_cooling_device *cool_dev;
52 unsigned int cpufreq_state;
53 unsigned int cpufreq_val;
54 struct cpumask allowed_cpus;
55 struct list_head node;
56};
57static LIST_HEAD(cooling_cpufreq_list);
58static DEFINE_IDR(cpufreq_idr);
160b7d80 59static DEFINE_MUTEX(cooling_cpufreq_lock);
02361418 60
160b7d80 61static unsigned int cpufreq_dev_count;
02361418
ADK
62
63/* notify_table passes value to the CPUFREQ_ADJUST callback function. */
64#define NOTIFY_INVALID NULL
a0f846c2 65static struct cpufreq_cooling_device *notify_device;
02361418
ADK
66
67/**
68 * get_idr - function to get a unique id.
69 * @idr: struct idr * handle used to create a id.
70 * @id: int * value generated by this function.
71 */
72static int get_idr(struct idr *idr, int *id)
73{
6deb69fa 74 int ret;
02361418
ADK
75
76 mutex_lock(&cooling_cpufreq_lock);
6deb69fa 77 ret = idr_alloc(idr, NULL, 0, 0, GFP_KERNEL);
02361418 78 mutex_unlock(&cooling_cpufreq_lock);
6deb69fa
TH
79 if (unlikely(ret < 0))
80 return ret;
81 *id = ret;
02361418
ADK
82 return 0;
83}
84
85/**
86 * release_idr - function to free the unique id.
87 * @idr: struct idr * handle used for creating the id.
88 * @id: int value representing the unique id.
89 */
90static void release_idr(struct idr *idr, int id)
91{
92 mutex_lock(&cooling_cpufreq_lock);
93 idr_remove(idr, id);
94 mutex_unlock(&cooling_cpufreq_lock);
95}
96
97/* Below code defines functions to be used for cpufreq as cooling device */
98
99/**
82b9ee40 100 * is_cpufreq_valid - function to check frequency transitioning capability.
02361418 101 * @cpu: cpu for which check is needed.
82b9ee40
EV
102 *
103 * This function will check the current state of the system if
104 * it is capable of changing the frequency for a given @cpu.
105 *
106 * Return: 0 if the system is not currently capable of changing
107 * the frequency of given cpu. !0 in case the frequency is changeable.
02361418
ADK
108 */
109static int is_cpufreq_valid(int cpu)
110{
111 struct cpufreq_policy policy;
112 return !cpufreq_get_policy(&policy, cpu);
113}
114
fc35b35c
ZR
115enum cpufreq_cooling_property {
116 GET_LEVEL,
117 GET_FREQ,
118 GET_MAXL,
119};
120
2d6f28fe
EV
121/**
122 * get_property - fetch a property of interest for a give cpu.
123 * @cpu: cpu for which the property is required
124 * @input: query parameter
125 * @output: query return
126 * @property: type of query (frequency, level, max level)
127 *
128 * This is the common function to
fc35b35c
ZR
129 * 1. get maximum cpu cooling states
130 * 2. translate frequency to cooling state
131 * 3. translate cooling state to frequency
132 * Note that the code may be not in good shape
133 * but it is written in this way in order to:
134 * a) reduce duplicate code as most of the code can be shared.
135 * b) make sure the logic is consistent when translating between
136 * cooling states and frequencies.
2d6f28fe
EV
137 *
138 * Return: 0 on success, -EINVAL when invalid parameters are passed.
139 */
fc35b35c
ZR
140static int get_property(unsigned int cpu, unsigned long input,
141 unsigned int* output, enum cpufreq_cooling_property property)
02361418 142{
fc35b35c 143 int i, j;
4469b997 144 unsigned long max_level = 0, level = 0;
fc35b35c
ZR
145 unsigned int freq = CPUFREQ_ENTRY_INVALID;
146 int descend = -1;
02361418
ADK
147 struct cpufreq_frequency_table *table =
148 cpufreq_frequency_get_table(cpu);
fc35b35c
ZR
149
150 if (!output)
151 return -EINVAL;
152
02361418 153 if (!table)
fc35b35c 154 return -EINVAL;
02361418 155
fc35b35c
ZR
156
157 for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) {
158 /* ignore invalid entries */
02361418
ADK
159 if (table[i].frequency == CPUFREQ_ENTRY_INVALID)
160 continue;
161
fc35b35c
ZR
162 /* ignore duplicate entry */
163 if (freq == table[i].frequency)
164 continue;
165
166 /* get the frequency order */
167 if (freq != CPUFREQ_ENTRY_INVALID && descend != -1)
168 descend = !!(freq > table[i].frequency);
02361418 169
fc35b35c
ZR
170 freq = table[i].frequency;
171 max_level++;
02361418 172 }
02361418 173
fc35b35c
ZR
174 /* get max level */
175 if (property == GET_MAXL) {
176 *output = (unsigned int)max_level;
177 return 0;
178 }
02361418 179
fc35b35c
ZR
180 if (property == GET_FREQ)
181 level = descend ? input : (max_level - input -1);
182
02361418 183
fc35b35c
ZR
184 for (i = 0, j = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) {
185 /* ignore invalid entry */
02361418
ADK
186 if (table[i].frequency == CPUFREQ_ENTRY_INVALID)
187 continue;
fc35b35c
ZR
188
189 /* ignore duplicate entry */
190 if (freq == table[i].frequency)
191 continue;
192
193 /* now we have a valid frequency entry */
194 freq = table[i].frequency;
195
196 if (property == GET_LEVEL && (unsigned int)input == freq) {
197 /* get level by frequency */
198 *output = descend ? j : (max_level - j - 1);
199 return 0;
200 }
201 if (property == GET_FREQ && level == j) {
202 /* get frequency by level */
203 *output = freq;
204 return 0;
205 }
206 j++;
02361418 207 }
fc35b35c
ZR
208 return -EINVAL;
209}
210
57df8106
ZR
211unsigned long cpufreq_cooling_get_level(unsigned int cpu, unsigned int freq)
212{
213 unsigned int val;
214
215 if (get_property(cpu, (unsigned long)freq, &val, GET_LEVEL))
216 return THERMAL_CSTATE_INVALID;
217 return (unsigned long)val;
218}
243dbd9c 219EXPORT_SYMBOL_GPL(cpufreq_cooling_get_level);
57df8106 220
fc35b35c
ZR
221/**
222 * get_cpu_frequency - get the absolute value of frequency from level.
223 * @cpu: cpu for which frequency is fetched.
224 * @level: level of frequency, equals cooling state of cpu cooling device
225 * e.g level=0 --> 1st MAX FREQ, level=1 ---> 2nd MAX FREQ, .... etc
226 */
227static unsigned int get_cpu_frequency(unsigned int cpu, unsigned long level)
228{
229 int ret = 0;
230 unsigned int freq;
231
232 ret = get_property(cpu, level, &freq, GET_FREQ);
233 if (ret)
234 return 0;
235 return freq;
02361418
ADK
236}
237
238/**
239 * cpufreq_apply_cooling - function to apply frequency clipping.
240 * @cpufreq_device: cpufreq_cooling_device pointer containing frequency
241 * clipping data.
242 * @cooling_state: value of the cooling state.
243 */
244static int cpufreq_apply_cooling(struct cpufreq_cooling_device *cpufreq_device,
245 unsigned long cooling_state)
246{
247 unsigned int cpuid, clip_freq;
bde00663
LNM
248 struct cpumask *mask = &cpufreq_device->allowed_cpus;
249 unsigned int cpu = cpumask_any(mask);
02361418
ADK
250
251
252 /* Check if the old cooling action is same as new cooling action */
253 if (cpufreq_device->cpufreq_state == cooling_state)
254 return 0;
255
256 clip_freq = get_cpu_frequency(cpu, cooling_state);
257 if (!clip_freq)
258 return -EINVAL;
259
260 cpufreq_device->cpufreq_state = cooling_state;
261 cpufreq_device->cpufreq_val = clip_freq;
262 notify_device = cpufreq_device;
263
bde00663 264 for_each_cpu(cpuid, mask) {
02361418
ADK
265 if (is_cpufreq_valid(cpuid))
266 cpufreq_update_policy(cpuid);
267 }
268
269 notify_device = NOTIFY_INVALID;
270
271 return 0;
272}
273
274/**
275 * cpufreq_thermal_notifier - notifier callback for cpufreq policy change.
276 * @nb: struct notifier_block * with callback info.
277 * @event: value showing cpufreq event for which this function invoked.
278 * @data: callback-specific data
279 */
280static int cpufreq_thermal_notifier(struct notifier_block *nb,
281 unsigned long event, void *data)
282{
283 struct cpufreq_policy *policy = data;
284 unsigned long max_freq = 0;
285
286 if (event != CPUFREQ_ADJUST || notify_device == NOTIFY_INVALID)
287 return 0;
288
289 if (cpumask_test_cpu(policy->cpu, &notify_device->allowed_cpus))
290 max_freq = notify_device->cpufreq_val;
291
292 /* Never exceed user_policy.max*/
293 if (max_freq > policy->user_policy.max)
294 max_freq = policy->user_policy.max;
295
296 if (policy->max != max_freq)
297 cpufreq_verify_within_limits(policy, 0, max_freq);
298
299 return 0;
300}
301
302/*
303 * cpufreq cooling device callback functions are defined below
304 */
305
306/**
307 * cpufreq_get_max_state - callback function to get the max cooling state.
308 * @cdev: thermal cooling device pointer.
309 * @state: fill this variable with the max cooling state.
310 */
311static int cpufreq_get_max_state(struct thermal_cooling_device *cdev,
312 unsigned long *state)
313{
160b7d80 314 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
bde00663 315 struct cpumask *mask = &cpufreq_device->allowed_cpus;
02361418 316 unsigned int cpu;
4f89038f 317 unsigned int count = 0;
fc35b35c 318 int ret;
02361418 319
bde00663 320 cpu = cpumask_any(mask);
02361418 321
4f89038f 322 ret = get_property(cpu, 0, &count, GET_MAXL);
9c51b05a 323
fc35b35c
ZR
324 if (count > 0)
325 *state = count;
02361418 326
fc35b35c 327 return ret;
02361418
ADK
328}
329
330/**
331 * cpufreq_get_cur_state - callback function to get the current cooling state.
332 * @cdev: thermal cooling device pointer.
333 * @state: fill this variable with the current cooling state.
334 */
335static int cpufreq_get_cur_state(struct thermal_cooling_device *cdev,
336 unsigned long *state)
337{
160b7d80 338 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
02361418 339
160b7d80 340 *state = cpufreq_device->cpufreq_state;
341 return 0;
02361418
ADK
342}
343
344/**
345 * cpufreq_set_cur_state - callback function to set the current cooling state.
346 * @cdev: thermal cooling device pointer.
347 * @state: set this variable to the current cooling state.
348 */
349static int cpufreq_set_cur_state(struct thermal_cooling_device *cdev,
350 unsigned long state)
351{
160b7d80 352 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
02361418 353
160b7d80 354 return cpufreq_apply_cooling(cpufreq_device, state);
02361418
ADK
355}
356
357/* Bind cpufreq callbacks to thermal cooling device ops */
358static struct thermal_cooling_device_ops const cpufreq_cooling_ops = {
359 .get_max_state = cpufreq_get_max_state,
360 .get_cur_state = cpufreq_get_cur_state,
361 .set_cur_state = cpufreq_set_cur_state,
362};
363
364/* Notifier for cpufreq policy change */
365static struct notifier_block thermal_cpufreq_notifier_block = {
366 .notifier_call = cpufreq_thermal_notifier,
367};
368
369/**
370 * cpufreq_cooling_register - function to create cpufreq cooling device.
371 * @clip_cpus: cpumask of cpus where the frequency constraints will happen.
372 */
373struct thermal_cooling_device *cpufreq_cooling_register(
3778ff5c 374 const struct cpumask *clip_cpus)
02361418
ADK
375{
376 struct thermal_cooling_device *cool_dev;
377 struct cpufreq_cooling_device *cpufreq_dev = NULL;
160b7d80 378 unsigned int min = 0, max = 0;
02361418 379 char dev_name[THERMAL_NAME_LENGTH];
a4b6fec9 380 int ret = 0, i;
02361418
ADK
381 struct cpufreq_policy policy;
382
02361418
ADK
383 /*Verify that all the clip cpus have same freq_min, freq_max limit*/
384 for_each_cpu(i, clip_cpus) {
385 /*continue if cpufreq policy not found and not return error*/
386 if (!cpufreq_get_policy(&policy, i))
387 continue;
388 if (min == 0 && max == 0) {
389 min = policy.cpuinfo.min_freq;
390 max = policy.cpuinfo.max_freq;
391 } else {
392 if (min != policy.cpuinfo.min_freq ||
393 max != policy.cpuinfo.max_freq)
394 return ERR_PTR(-EINVAL);
6b6519df 395 }
02361418
ADK
396 }
397 cpufreq_dev = kzalloc(sizeof(struct cpufreq_cooling_device),
398 GFP_KERNEL);
399 if (!cpufreq_dev)
400 return ERR_PTR(-ENOMEM);
401
402 cpumask_copy(&cpufreq_dev->allowed_cpus, clip_cpus);
403
02361418
ADK
404 ret = get_idr(&cpufreq_idr, &cpufreq_dev->id);
405 if (ret) {
406 kfree(cpufreq_dev);
407 return ERR_PTR(-EINVAL);
408 }
409
410 sprintf(dev_name, "thermal-cpufreq-%d", cpufreq_dev->id);
411
412 cool_dev = thermal_cooling_device_register(dev_name, cpufreq_dev,
413 &cpufreq_cooling_ops);
414 if (!cool_dev) {
415 release_idr(&cpufreq_idr, cpufreq_dev->id);
416 kfree(cpufreq_dev);
417 return ERR_PTR(-EINVAL);
418 }
02361418
ADK
419 cpufreq_dev->cool_dev = cool_dev;
420 cpufreq_dev->cpufreq_state = 0;
421 mutex_lock(&cooling_cpufreq_lock);
02361418
ADK
422
423 /* Register the notifier for first cpufreq cooling device */
424 if (cpufreq_dev_count == 0)
425 cpufreq_register_notifier(&thermal_cpufreq_notifier_block,
426 CPUFREQ_POLICY_NOTIFIER);
160b7d80 427 cpufreq_dev_count++;
02361418
ADK
428
429 mutex_unlock(&cooling_cpufreq_lock);
430 return cool_dev;
431}
243dbd9c 432EXPORT_SYMBOL_GPL(cpufreq_cooling_register);
02361418
ADK
433
434/**
435 * cpufreq_cooling_unregister - function to remove cpufreq cooling device.
436 * @cdev: thermal cooling device pointer.
437 */
438void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev)
439{
160b7d80 440 struct cpufreq_cooling_device *cpufreq_dev = cdev->devdata;
02361418
ADK
441
442 mutex_lock(&cooling_cpufreq_lock);
160b7d80 443 cpufreq_dev_count--;
02361418
ADK
444
445 /* Unregister the notifier for the last cpufreq cooling device */
160b7d80 446 if (cpufreq_dev_count == 0) {
02361418
ADK
447 cpufreq_unregister_notifier(&thermal_cpufreq_notifier_block,
448 CPUFREQ_POLICY_NOTIFIER);
449 }
450 mutex_unlock(&cooling_cpufreq_lock);
160b7d80 451
02361418
ADK
452 thermal_cooling_device_unregister(cpufreq_dev->cool_dev);
453 release_idr(&cpufreq_idr, cpufreq_dev->id);
02361418
ADK
454 kfree(cpufreq_dev);
455}
243dbd9c 456EXPORT_SYMBOL_GPL(cpufreq_cooling_unregister);