blob: f1a041205a0e00bc454ab061be52bceb8ad0755c [file] [log] [blame]
Amit Daniel Kachhap02361412012-08-16 17:11:40 +05301/*
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 */
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053023#include <linux/module.h>
24#include <linux/thermal.h>
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053025#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/**
Eduardo Valentin3b3c0742013-04-17 17:11:56 +000032 * struct cpufreq_cooling_device - data for cooling device with cpufreq
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053033 * @id: unique integer value corresponding to each cpufreq_cooling_device
34 * registered.
Eduardo Valentin3b3c0742013-04-17 17:11:56 +000035 * @cool_dev: thermal_cooling_device pointer to keep track of the
36 * registered cooling device.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053037 * @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);
hongbo.zhang160b7d82012-10-30 17:48:59 +010059static DEFINE_MUTEX(cooling_cpufreq_lock);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053060
hongbo.zhang160b7d82012-10-30 17:48:59 +010061static unsigned int cpufreq_dev_count;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053062
63/* notify_table passes value to the CPUFREQ_ADJUST callback function. */
64#define NOTIFY_INVALID NULL
Sachin Kamata0f846c2012-11-15 12:19:44 +053065static struct cpufreq_cooling_device *notify_device;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053066
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{
Tejun Heo6deb69f2013-02-27 17:04:46 -080074 int ret;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053075
76 mutex_lock(&cooling_cpufreq_lock);
Tejun Heo6deb69f2013-02-27 17:04:46 -080077 ret = idr_alloc(idr, NULL, 0, 0, GFP_KERNEL);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053078 mutex_unlock(&cooling_cpufreq_lock);
Tejun Heo6deb69f2013-02-27 17:04:46 -080079 if (unlikely(ret < 0))
80 return ret;
81 *id = ret;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053082 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/**
Eduardo Valentin82b9ee42013-04-17 17:12:00 +0000100 * is_cpufreq_valid - function to check frequency transitioning capability.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530101 * @cpu: cpu for which check is needed.
Eduardo Valentin82b9ee42013-04-17 17:12:00 +0000102 *
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.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530108 */
109static int is_cpufreq_valid(int cpu)
110{
111 struct cpufreq_policy policy;
112 return !cpufreq_get_policy(&policy, cpu);
113}
114
Zhang Ruifc35b352013-02-08 13:09:32 +0800115enum cpufreq_cooling_property {
116 GET_LEVEL,
117 GET_FREQ,
118 GET_MAXL,
119};
120
Eduardo Valentin2d6f28fe2013-04-17 17:12:01 +0000121/**
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
Zhang Ruifc35b352013-02-08 13:09:32 +0800129 * 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.
Eduardo Valentin2d6f28fe2013-04-17 17:12:01 +0000137 *
138 * Return: 0 on success, -EINVAL when invalid parameters are passed.
139 */
Zhang Ruifc35b352013-02-08 13:09:32 +0800140static int get_property(unsigned int cpu, unsigned long input,
141 unsigned int* output, enum cpufreq_cooling_property property)
142{
143 int i, j;
Eduardo Valentin4469b9972013-04-17 17:11:58 +0000144 unsigned long max_level = 0, level = 0;
Zhang Ruifc35b352013-02-08 13:09:32 +0800145 unsigned int freq = CPUFREQ_ENTRY_INVALID;
146 int descend = -1;
147 struct cpufreq_frequency_table *table =
148 cpufreq_frequency_get_table(cpu);
149
150 if (!output)
151 return -EINVAL;
152
153 if (!table)
154 return -EINVAL;
155
156
157 for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) {
158 /* ignore invalid entries */
159 if (table[i].frequency == CPUFREQ_ENTRY_INVALID)
160 continue;
161
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);
169
170 freq = table[i].frequency;
171 max_level++;
172 }
173
174 /* get max level */
175 if (property == GET_MAXL) {
176 *output = (unsigned int)max_level;
177 return 0;
178 }
179
180 if (property == GET_FREQ)
181 level = descend ? input : (max_level - input -1);
182
183
184 for (i = 0, j = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) {
185 /* ignore invalid entry */
186 if (table[i].frequency == CPUFREQ_ENTRY_INVALID)
187 continue;
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++;
207 }
208 return -EINVAL;
209}
210
Eduardo Valentin44952d32013-04-17 17:12:05 +0000211/**
212 * cpufreq_cooling_get_level - for a give cpu, return the cooling level.
213 * @cpu: cpu for which the level is required
214 * @freq: the frequency of interest
215 *
216 * This function will match the cooling level corresponding to the
217 * requested @freq and return it.
218 *
219 * Return: The matched cooling level on success or THERMAL_CSTATE_INVALID
220 * otherwise.
221 */
Zhang Rui57df8102013-02-08 14:52:06 +0800222unsigned long cpufreq_cooling_get_level(unsigned int cpu, unsigned int freq)
223{
224 unsigned int val;
225
226 if (get_property(cpu, (unsigned long)freq, &val, GET_LEVEL))
227 return THERMAL_CSTATE_INVALID;
228 return (unsigned long)val;
229}
Eduardo Valentin243dbd92013-04-17 17:11:57 +0000230EXPORT_SYMBOL_GPL(cpufreq_cooling_get_level);
Zhang Rui57df8102013-02-08 14:52:06 +0800231
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530232/**
233 * get_cpu_frequency - get the absolute value of frequency from level.
234 * @cpu: cpu for which frequency is fetched.
Zhang Rui475f41c2013-02-06 09:34:32 +0800235 * @level: level of frequency, equals cooling state of cpu cooling device
236 * e.g level=0 --> 1st MAX FREQ, level=1 ---> 2nd MAX FREQ, .... etc
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530237 */
238static unsigned int get_cpu_frequency(unsigned int cpu, unsigned long level)
239{
Zhang Ruifc35b352013-02-08 13:09:32 +0800240 int ret = 0;
241 unsigned int freq;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530242
Zhang Ruifc35b352013-02-08 13:09:32 +0800243 ret = get_property(cpu, level, &freq, GET_FREQ);
244 if (ret)
245 return 0;
246 return freq;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530247}
248
249/**
250 * cpufreq_apply_cooling - function to apply frequency clipping.
251 * @cpufreq_device: cpufreq_cooling_device pointer containing frequency
252 * clipping data.
253 * @cooling_state: value of the cooling state.
254 */
255static int cpufreq_apply_cooling(struct cpufreq_cooling_device *cpufreq_device,
256 unsigned long cooling_state)
257{
258 unsigned int cpuid, clip_freq;
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000259 struct cpumask *mask = &cpufreq_device->allowed_cpus;
260 unsigned int cpu = cpumask_any(mask);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530261
262
263 /* Check if the old cooling action is same as new cooling action */
264 if (cpufreq_device->cpufreq_state == cooling_state)
265 return 0;
266
267 clip_freq = get_cpu_frequency(cpu, cooling_state);
268 if (!clip_freq)
269 return -EINVAL;
270
271 cpufreq_device->cpufreq_state = cooling_state;
272 cpufreq_device->cpufreq_val = clip_freq;
273 notify_device = cpufreq_device;
274
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000275 for_each_cpu(cpuid, mask) {
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530276 if (is_cpufreq_valid(cpuid))
277 cpufreq_update_policy(cpuid);
278 }
279
280 notify_device = NOTIFY_INVALID;
281
282 return 0;
283}
284
285/**
286 * cpufreq_thermal_notifier - notifier callback for cpufreq policy change.
287 * @nb: struct notifier_block * with callback info.
288 * @event: value showing cpufreq event for which this function invoked.
289 * @data: callback-specific data
290 */
291static int cpufreq_thermal_notifier(struct notifier_block *nb,
292 unsigned long event, void *data)
293{
294 struct cpufreq_policy *policy = data;
295 unsigned long max_freq = 0;
296
297 if (event != CPUFREQ_ADJUST || notify_device == NOTIFY_INVALID)
298 return 0;
299
300 if (cpumask_test_cpu(policy->cpu, &notify_device->allowed_cpus))
301 max_freq = notify_device->cpufreq_val;
302
303 /* Never exceed user_policy.max*/
304 if (max_freq > policy->user_policy.max)
305 max_freq = policy->user_policy.max;
306
307 if (policy->max != max_freq)
308 cpufreq_verify_within_limits(policy, 0, max_freq);
309
310 return 0;
311}
312
313/*
314 * cpufreq cooling device callback functions are defined below
315 */
316
317/**
318 * cpufreq_get_max_state - callback function to get the max cooling state.
319 * @cdev: thermal cooling device pointer.
320 * @state: fill this variable with the max cooling state.
321 */
322static int cpufreq_get_max_state(struct thermal_cooling_device *cdev,
323 unsigned long *state)
324{
hongbo.zhang160b7d82012-10-30 17:48:59 +0100325 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000326 struct cpumask *mask = &cpufreq_device->allowed_cpus;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530327 unsigned int cpu;
Dan Carpenter4f890382013-04-17 07:18:28 +0000328 unsigned int count = 0;
Zhang Ruifc35b352013-02-08 13:09:32 +0800329 int ret;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530330
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000331 cpu = cpumask_any(mask);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530332
Dan Carpenter4f890382013-04-17 07:18:28 +0000333 ret = get_property(cpu, 0, &count, GET_MAXL);
hongbo.zhang9c51b052012-10-30 17:48:58 +0100334
Zhang Ruifc35b352013-02-08 13:09:32 +0800335 if (count > 0)
336 *state = count;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530337
Zhang Ruifc35b352013-02-08 13:09:32 +0800338 return ret;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530339}
340
341/**
342 * cpufreq_get_cur_state - callback function to get the current cooling state.
343 * @cdev: thermal cooling device pointer.
344 * @state: fill this variable with the current cooling state.
345 */
346static int cpufreq_get_cur_state(struct thermal_cooling_device *cdev,
347 unsigned long *state)
348{
hongbo.zhang160b7d82012-10-30 17:48:59 +0100349 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530350
hongbo.zhang160b7d82012-10-30 17:48:59 +0100351 *state = cpufreq_device->cpufreq_state;
352 return 0;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530353}
354
355/**
356 * cpufreq_set_cur_state - callback function to set the current cooling state.
357 * @cdev: thermal cooling device pointer.
358 * @state: set this variable to the current cooling state.
359 */
360static int cpufreq_set_cur_state(struct thermal_cooling_device *cdev,
361 unsigned long state)
362{
hongbo.zhang160b7d82012-10-30 17:48:59 +0100363 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530364
hongbo.zhang160b7d82012-10-30 17:48:59 +0100365 return cpufreq_apply_cooling(cpufreq_device, state);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530366}
367
368/* Bind cpufreq callbacks to thermal cooling device ops */
369static struct thermal_cooling_device_ops const cpufreq_cooling_ops = {
370 .get_max_state = cpufreq_get_max_state,
371 .get_cur_state = cpufreq_get_cur_state,
372 .set_cur_state = cpufreq_set_cur_state,
373};
374
375/* Notifier for cpufreq policy change */
376static struct notifier_block thermal_cpufreq_notifier_block = {
377 .notifier_call = cpufreq_thermal_notifier,
378};
379
380/**
381 * cpufreq_cooling_register - function to create cpufreq cooling device.
382 * @clip_cpus: cpumask of cpus where the frequency constraints will happen.
383 */
384struct thermal_cooling_device *cpufreq_cooling_register(
Eduardo Valentin3778ff52012-11-12 15:58:50 +0000385 const struct cpumask *clip_cpus)
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530386{
387 struct thermal_cooling_device *cool_dev;
388 struct cpufreq_cooling_device *cpufreq_dev = NULL;
hongbo.zhang160b7d82012-10-30 17:48:59 +0100389 unsigned int min = 0, max = 0;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530390 char dev_name[THERMAL_NAME_LENGTH];
Jonghwa Leea4b6fec2012-09-26 09:43:31 +0900391 int ret = 0, i;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530392 struct cpufreq_policy policy;
393
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530394 /*Verify that all the clip cpus have same freq_min, freq_max limit*/
395 for_each_cpu(i, clip_cpus) {
396 /*continue if cpufreq policy not found and not return error*/
397 if (!cpufreq_get_policy(&policy, i))
398 continue;
399 if (min == 0 && max == 0) {
400 min = policy.cpuinfo.min_freq;
401 max = policy.cpuinfo.max_freq;
402 } else {
403 if (min != policy.cpuinfo.min_freq ||
404 max != policy.cpuinfo.max_freq)
405 return ERR_PTR(-EINVAL);
hongbo.zhang6b6519d2012-10-30 17:48:57 +0100406 }
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530407 }
408 cpufreq_dev = kzalloc(sizeof(struct cpufreq_cooling_device),
409 GFP_KERNEL);
410 if (!cpufreq_dev)
411 return ERR_PTR(-ENOMEM);
412
413 cpumask_copy(&cpufreq_dev->allowed_cpus, clip_cpus);
414
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530415 ret = get_idr(&cpufreq_idr, &cpufreq_dev->id);
416 if (ret) {
417 kfree(cpufreq_dev);
418 return ERR_PTR(-EINVAL);
419 }
420
421 sprintf(dev_name, "thermal-cpufreq-%d", cpufreq_dev->id);
422
423 cool_dev = thermal_cooling_device_register(dev_name, cpufreq_dev,
424 &cpufreq_cooling_ops);
425 if (!cool_dev) {
426 release_idr(&cpufreq_idr, cpufreq_dev->id);
427 kfree(cpufreq_dev);
428 return ERR_PTR(-EINVAL);
429 }
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530430 cpufreq_dev->cool_dev = cool_dev;
431 cpufreq_dev->cpufreq_state = 0;
432 mutex_lock(&cooling_cpufreq_lock);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530433
434 /* Register the notifier for first cpufreq cooling device */
435 if (cpufreq_dev_count == 0)
436 cpufreq_register_notifier(&thermal_cpufreq_notifier_block,
437 CPUFREQ_POLICY_NOTIFIER);
hongbo.zhang160b7d82012-10-30 17:48:59 +0100438 cpufreq_dev_count++;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530439
440 mutex_unlock(&cooling_cpufreq_lock);
441 return cool_dev;
442}
Eduardo Valentin243dbd92013-04-17 17:11:57 +0000443EXPORT_SYMBOL_GPL(cpufreq_cooling_register);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530444
445/**
446 * cpufreq_cooling_unregister - function to remove cpufreq cooling device.
447 * @cdev: thermal cooling device pointer.
448 */
449void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev)
450{
hongbo.zhang160b7d82012-10-30 17:48:59 +0100451 struct cpufreq_cooling_device *cpufreq_dev = cdev->devdata;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530452
453 mutex_lock(&cooling_cpufreq_lock);
hongbo.zhang160b7d82012-10-30 17:48:59 +0100454 cpufreq_dev_count--;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530455
456 /* Unregister the notifier for the last cpufreq cooling device */
hongbo.zhang160b7d82012-10-30 17:48:59 +0100457 if (cpufreq_dev_count == 0) {
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530458 cpufreq_unregister_notifier(&thermal_cpufreq_notifier_block,
459 CPUFREQ_POLICY_NOTIFIER);
460 }
461 mutex_unlock(&cooling_cpufreq_lock);
hongbo.zhang160b7d82012-10-30 17:48:59 +0100462
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530463 thermal_cooling_device_unregister(cpufreq_dev->cool_dev);
464 release_idr(&cpufreq_idr, cpufreq_dev->id);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530465 kfree(cpufreq_dev);
466}
Eduardo Valentin243dbd92013-04-17 17:11:57 +0000467EXPORT_SYMBOL_GPL(cpufreq_cooling_unregister);