blob: a294921be650e4845d87599c108ede85079c22e5 [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.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053042 *
43 * This structure is required for keeping information of each
Eduardo Valentin67d0b2a2013-04-17 17:12:19 +000044 * cpufreq_cooling_device registered. In order to prevent corruption of this a
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053045 * mutex lock cooling_cpufreq_lock is used.
46 */
47struct cpufreq_cooling_device {
48 int id;
49 struct thermal_cooling_device *cool_dev;
50 unsigned int cpufreq_state;
51 unsigned int cpufreq_val;
52 struct cpumask allowed_cpus;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053053};
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053054static DEFINE_IDR(cpufreq_idr);
hongbo.zhang160b7d82012-10-30 17:48:59 +010055static DEFINE_MUTEX(cooling_cpufreq_lock);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053056
hongbo.zhang160b7d82012-10-30 17:48:59 +010057static unsigned int cpufreq_dev_count;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053058
59/* notify_table passes value to the CPUFREQ_ADJUST callback function. */
60#define NOTIFY_INVALID NULL
Sachin Kamata0f846c2012-11-15 12:19:44 +053061static struct cpufreq_cooling_device *notify_device;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053062
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.
67 */
68static int get_idr(struct idr *idr, int *id)
69{
Tejun Heo6deb69f2013-02-27 17:04:46 -080070 int ret;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053071
72 mutex_lock(&cooling_cpufreq_lock);
Tejun Heo6deb69f2013-02-27 17:04:46 -080073 ret = idr_alloc(idr, NULL, 0, 0, GFP_KERNEL);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053074 mutex_unlock(&cooling_cpufreq_lock);
Tejun Heo6deb69f2013-02-27 17:04:46 -080075 if (unlikely(ret < 0))
76 return ret;
77 *id = ret;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053078 return 0;
79}
80
81/**
82 * release_idr - function to free the unique id.
83 * @idr: struct idr * handle used for creating the id.
84 * @id: int value representing the unique id.
85 */
86static void release_idr(struct idr *idr, int id)
87{
88 mutex_lock(&cooling_cpufreq_lock);
89 idr_remove(idr, id);
90 mutex_unlock(&cooling_cpufreq_lock);
91}
92
93/* Below code defines functions to be used for cpufreq as cooling device */
94
95/**
Eduardo Valentin82b9ee42013-04-17 17:12:00 +000096 * is_cpufreq_valid - function to check frequency transitioning capability.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053097 * @cpu: cpu for which check is needed.
Eduardo Valentin82b9ee42013-04-17 17:12:00 +000098 *
99 * This function will check the current state of the system if
100 * it is capable of changing the frequency for a given @cpu.
101 *
102 * Return: 0 if the system is not currently capable of changing
103 * the frequency of given cpu. !0 in case the frequency is changeable.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530104 */
105static int is_cpufreq_valid(int cpu)
106{
107 struct cpufreq_policy policy;
108 return !cpufreq_get_policy(&policy, cpu);
109}
110
Zhang Ruifc35b352013-02-08 13:09:32 +0800111enum cpufreq_cooling_property {
112 GET_LEVEL,
113 GET_FREQ,
114 GET_MAXL,
115};
116
Eduardo Valentin2d6f28f2013-04-17 17:12:01 +0000117/**
118 * get_property - fetch a property of interest for a give cpu.
119 * @cpu: cpu for which the property is required
120 * @input: query parameter
121 * @output: query return
122 * @property: type of query (frequency, level, max level)
123 *
124 * This is the common function to
Zhang Ruifc35b352013-02-08 13:09:32 +0800125 * 1. get maximum cpu cooling states
126 * 2. translate frequency to cooling state
127 * 3. translate cooling state to frequency
128 * Note that the code may be not in good shape
129 * but it is written in this way in order to:
130 * a) reduce duplicate code as most of the code can be shared.
131 * b) make sure the logic is consistent when translating between
132 * cooling states and frequencies.
Eduardo Valentin2d6f28f2013-04-17 17:12:01 +0000133 *
134 * Return: 0 on success, -EINVAL when invalid parameters are passed.
135 */
Zhang Ruifc35b352013-02-08 13:09:32 +0800136static int get_property(unsigned int cpu, unsigned long input,
137 unsigned int* output, enum cpufreq_cooling_property property)
138{
139 int i, j;
Eduardo Valentin4469b992013-04-17 17:11:58 +0000140 unsigned long max_level = 0, level = 0;
Zhang Ruifc35b352013-02-08 13:09:32 +0800141 unsigned int freq = CPUFREQ_ENTRY_INVALID;
142 int descend = -1;
143 struct cpufreq_frequency_table *table =
144 cpufreq_frequency_get_table(cpu);
145
146 if (!output)
147 return -EINVAL;
148
149 if (!table)
150 return -EINVAL;
151
152
153 for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) {
154 /* ignore invalid entries */
155 if (table[i].frequency == CPUFREQ_ENTRY_INVALID)
156 continue;
157
158 /* ignore duplicate entry */
159 if (freq == table[i].frequency)
160 continue;
161
162 /* get the frequency order */
163 if (freq != CPUFREQ_ENTRY_INVALID && descend != -1)
164 descend = !!(freq > table[i].frequency);
165
166 freq = table[i].frequency;
167 max_level++;
168 }
169
170 /* get max level */
171 if (property == GET_MAXL) {
172 *output = (unsigned int)max_level;
173 return 0;
174 }
175
176 if (property == GET_FREQ)
177 level = descend ? input : (max_level - input -1);
178
179
180 for (i = 0, j = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) {
181 /* ignore invalid entry */
182 if (table[i].frequency == CPUFREQ_ENTRY_INVALID)
183 continue;
184
185 /* ignore duplicate entry */
186 if (freq == table[i].frequency)
187 continue;
188
189 /* now we have a valid frequency entry */
190 freq = table[i].frequency;
191
192 if (property == GET_LEVEL && (unsigned int)input == freq) {
193 /* get level by frequency */
194 *output = descend ? j : (max_level - j - 1);
195 return 0;
196 }
197 if (property == GET_FREQ && level == j) {
198 /* get frequency by level */
199 *output = freq;
200 return 0;
201 }
202 j++;
203 }
204 return -EINVAL;
205}
206
Eduardo Valentin44952d32013-04-17 17:12:05 +0000207/**
208 * cpufreq_cooling_get_level - for a give cpu, return the cooling level.
209 * @cpu: cpu for which the level is required
210 * @freq: the frequency of interest
211 *
212 * This function will match the cooling level corresponding to the
213 * requested @freq and return it.
214 *
215 * Return: The matched cooling level on success or THERMAL_CSTATE_INVALID
216 * otherwise.
217 */
Zhang Rui57df8102013-02-08 14:52:06 +0800218unsigned long cpufreq_cooling_get_level(unsigned int cpu, unsigned int freq)
219{
220 unsigned int val;
221
222 if (get_property(cpu, (unsigned long)freq, &val, GET_LEVEL))
223 return THERMAL_CSTATE_INVALID;
224 return (unsigned long)val;
225}
Eduardo Valentin243dbd92013-04-17 17:11:57 +0000226EXPORT_SYMBOL_GPL(cpufreq_cooling_get_level);
Zhang Rui57df8102013-02-08 14:52:06 +0800227
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530228/**
229 * get_cpu_frequency - get the absolute value of frequency from level.
230 * @cpu: cpu for which frequency is fetched.
Eduardo Valentin41518c42013-04-17 17:12:07 +0000231 * @level: cooling level
232 *
233 * This function matches cooling level with frequency. Based on a cooling level
234 * of frequency, equals cooling state of cpu cooling device, it will return
235 * the corresponding frequency.
Zhang Rui475f41c2013-02-06 09:34:32 +0800236 * e.g level=0 --> 1st MAX FREQ, level=1 ---> 2nd MAX FREQ, .... etc
Eduardo Valentin41518c42013-04-17 17:12:07 +0000237 *
238 * Return: 0 on error, the corresponding frequency otherwise.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530239 */
240static unsigned int get_cpu_frequency(unsigned int cpu, unsigned long level)
241{
Zhang Ruifc35b352013-02-08 13:09:32 +0800242 int ret = 0;
243 unsigned int freq;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530244
Zhang Ruifc35b352013-02-08 13:09:32 +0800245 ret = get_property(cpu, level, &freq, GET_FREQ);
246 if (ret)
247 return 0;
248 return freq;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530249}
250
251/**
252 * cpufreq_apply_cooling - function to apply frequency clipping.
253 * @cpufreq_device: cpufreq_cooling_device pointer containing frequency
254 * clipping data.
255 * @cooling_state: value of the cooling state.
Eduardo Valentin4b33deb2013-04-17 17:12:08 +0000256 *
257 * Function used to make sure the cpufreq layer is aware of current thermal
258 * limits. The limits are applied by updating the cpufreq policy.
259 *
260 * Return: 0 on success, an error code otherwise (-EINVAL in case wrong
261 * cooling state).
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530262 */
263static int cpufreq_apply_cooling(struct cpufreq_cooling_device *cpufreq_device,
264 unsigned long cooling_state)
265{
266 unsigned int cpuid, clip_freq;
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000267 struct cpumask *mask = &cpufreq_device->allowed_cpus;
268 unsigned int cpu = cpumask_any(mask);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530269
270
271 /* Check if the old cooling action is same as new cooling action */
272 if (cpufreq_device->cpufreq_state == cooling_state)
273 return 0;
274
275 clip_freq = get_cpu_frequency(cpu, cooling_state);
276 if (!clip_freq)
277 return -EINVAL;
278
279 cpufreq_device->cpufreq_state = cooling_state;
280 cpufreq_device->cpufreq_val = clip_freq;
281 notify_device = cpufreq_device;
282
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000283 for_each_cpu(cpuid, mask) {
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530284 if (is_cpufreq_valid(cpuid))
285 cpufreq_update_policy(cpuid);
286 }
287
288 notify_device = NOTIFY_INVALID;
289
290 return 0;
291}
292
293/**
294 * cpufreq_thermal_notifier - notifier callback for cpufreq policy change.
295 * @nb: struct notifier_block * with callback info.
296 * @event: value showing cpufreq event for which this function invoked.
297 * @data: callback-specific data
Eduardo Valentinbab30552013-04-17 17:12:09 +0000298 *
299 * Callback to highjack the notification on cpufreq policy transition.
300 * Every time there is a change in policy, we will intercept and
301 * update the cpufreq policy with thermal constraints.
302 *
303 * Return: 0 (success)
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530304 */
305static int cpufreq_thermal_notifier(struct notifier_block *nb,
306 unsigned long event, void *data)
307{
308 struct cpufreq_policy *policy = data;
309 unsigned long max_freq = 0;
310
311 if (event != CPUFREQ_ADJUST || notify_device == NOTIFY_INVALID)
312 return 0;
313
314 if (cpumask_test_cpu(policy->cpu, &notify_device->allowed_cpus))
315 max_freq = notify_device->cpufreq_val;
316
317 /* Never exceed user_policy.max*/
318 if (max_freq > policy->user_policy.max)
319 max_freq = policy->user_policy.max;
320
321 if (policy->max != max_freq)
322 cpufreq_verify_within_limits(policy, 0, max_freq);
323
324 return 0;
325}
326
327/*
328 * cpufreq cooling device callback functions are defined below
329 */
330
331/**
332 * cpufreq_get_max_state - callback function to get the max cooling state.
333 * @cdev: thermal cooling device pointer.
334 * @state: fill this variable with the max cooling state.
Eduardo Valentin62c00422013-04-17 17:12:12 +0000335 *
336 * Callback for the thermal cooling device to return the cpufreq
337 * max cooling state.
338 *
339 * Return: 0 on success, an error code otherwise.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530340 */
341static int cpufreq_get_max_state(struct thermal_cooling_device *cdev,
342 unsigned long *state)
343{
hongbo.zhang160b7d82012-10-30 17:48:59 +0100344 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000345 struct cpumask *mask = &cpufreq_device->allowed_cpus;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530346 unsigned int cpu;
Dan Carpenter4f890382013-04-17 07:18:28 +0000347 unsigned int count = 0;
Zhang Ruifc35b352013-02-08 13:09:32 +0800348 int ret;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530349
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000350 cpu = cpumask_any(mask);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530351
Dan Carpenter4f890382013-04-17 07:18:28 +0000352 ret = get_property(cpu, 0, &count, GET_MAXL);
hongbo.zhang9c51b052012-10-30 17:48:58 +0100353
Zhang Ruifc35b352013-02-08 13:09:32 +0800354 if (count > 0)
355 *state = count;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530356
Zhang Ruifc35b352013-02-08 13:09:32 +0800357 return ret;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530358}
359
360/**
361 * cpufreq_get_cur_state - callback function to get the current cooling state.
362 * @cdev: thermal cooling device pointer.
363 * @state: fill this variable with the current cooling state.
Eduardo Valentin36725522013-04-17 17:12:13 +0000364 *
365 * Callback for the thermal cooling device to return the cpufreq
366 * current cooling state.
367 *
368 * Return: 0 on success, an error code otherwise.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530369 */
370static int cpufreq_get_cur_state(struct thermal_cooling_device *cdev,
371 unsigned long *state)
372{
hongbo.zhang160b7d82012-10-30 17:48:59 +0100373 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530374
hongbo.zhang160b7d82012-10-30 17:48:59 +0100375 *state = cpufreq_device->cpufreq_state;
376 return 0;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530377}
378
379/**
380 * cpufreq_set_cur_state - callback function to set the current cooling state.
381 * @cdev: thermal cooling device pointer.
382 * @state: set this variable to the current cooling state.
Eduardo Valentin56e05fd2013-04-17 17:12:14 +0000383 *
384 * Callback for the thermal cooling device to change the cpufreq
385 * current cooling state.
386 *
387 * Return: 0 on success, an error code otherwise.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530388 */
389static int cpufreq_set_cur_state(struct thermal_cooling_device *cdev,
390 unsigned long state)
391{
hongbo.zhang160b7d82012-10-30 17:48:59 +0100392 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530393
hongbo.zhang160b7d82012-10-30 17:48:59 +0100394 return cpufreq_apply_cooling(cpufreq_device, state);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530395}
396
397/* Bind cpufreq callbacks to thermal cooling device ops */
398static struct thermal_cooling_device_ops const cpufreq_cooling_ops = {
399 .get_max_state = cpufreq_get_max_state,
400 .get_cur_state = cpufreq_get_cur_state,
401 .set_cur_state = cpufreq_set_cur_state,
402};
403
404/* Notifier for cpufreq policy change */
405static struct notifier_block thermal_cpufreq_notifier_block = {
406 .notifier_call = cpufreq_thermal_notifier,
407};
408
409/**
410 * cpufreq_cooling_register - function to create cpufreq cooling device.
411 * @clip_cpus: cpumask of cpus where the frequency constraints will happen.
Eduardo Valentin12cb08b2013-04-17 17:12:15 +0000412 *
413 * This interface function registers the cpufreq cooling device with the name
414 * "thermal-cpufreq-%x". This api can support multiple instances of cpufreq
415 * cooling devices.
416 *
417 * Return: a valid struct thermal_cooling_device pointer on success,
418 * on failure, it returns a corresponding ERR_PTR().
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530419 */
420struct thermal_cooling_device *cpufreq_cooling_register(
Eduardo Valentin3778ff52012-11-12 15:58:50 +0000421 const struct cpumask *clip_cpus)
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530422{
423 struct thermal_cooling_device *cool_dev;
424 struct cpufreq_cooling_device *cpufreq_dev = NULL;
hongbo.zhang160b7d82012-10-30 17:48:59 +0100425 unsigned int min = 0, max = 0;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530426 char dev_name[THERMAL_NAME_LENGTH];
Jonghwa Leea4b6fec2012-09-26 09:43:31 +0900427 int ret = 0, i;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530428 struct cpufreq_policy policy;
429
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530430 /*Verify that all the clip cpus have same freq_min, freq_max limit*/
431 for_each_cpu(i, clip_cpus) {
432 /*continue if cpufreq policy not found and not return error*/
433 if (!cpufreq_get_policy(&policy, i))
434 continue;
435 if (min == 0 && max == 0) {
436 min = policy.cpuinfo.min_freq;
437 max = policy.cpuinfo.max_freq;
438 } else {
439 if (min != policy.cpuinfo.min_freq ||
440 max != policy.cpuinfo.max_freq)
441 return ERR_PTR(-EINVAL);
hongbo.zhang6b6519d2012-10-30 17:48:57 +0100442 }
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530443 }
444 cpufreq_dev = kzalloc(sizeof(struct cpufreq_cooling_device),
445 GFP_KERNEL);
446 if (!cpufreq_dev)
447 return ERR_PTR(-ENOMEM);
448
449 cpumask_copy(&cpufreq_dev->allowed_cpus, clip_cpus);
450
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530451 ret = get_idr(&cpufreq_idr, &cpufreq_dev->id);
452 if (ret) {
453 kfree(cpufreq_dev);
454 return ERR_PTR(-EINVAL);
455 }
456
Eduardo Valentin99871a72013-04-17 17:12:17 +0000457 snprintf(dev_name, sizeof(dev_name), "thermal-cpufreq-%d",
458 cpufreq_dev->id);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530459
460 cool_dev = thermal_cooling_device_register(dev_name, cpufreq_dev,
461 &cpufreq_cooling_ops);
462 if (!cool_dev) {
463 release_idr(&cpufreq_idr, cpufreq_dev->id);
464 kfree(cpufreq_dev);
465 return ERR_PTR(-EINVAL);
466 }
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530467 cpufreq_dev->cool_dev = cool_dev;
468 cpufreq_dev->cpufreq_state = 0;
469 mutex_lock(&cooling_cpufreq_lock);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530470
471 /* Register the notifier for first cpufreq cooling device */
472 if (cpufreq_dev_count == 0)
473 cpufreq_register_notifier(&thermal_cpufreq_notifier_block,
474 CPUFREQ_POLICY_NOTIFIER);
hongbo.zhang160b7d82012-10-30 17:48:59 +0100475 cpufreq_dev_count++;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530476
477 mutex_unlock(&cooling_cpufreq_lock);
478 return cool_dev;
479}
Eduardo Valentin243dbd92013-04-17 17:11:57 +0000480EXPORT_SYMBOL_GPL(cpufreq_cooling_register);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530481
482/**
483 * cpufreq_cooling_unregister - function to remove cpufreq cooling device.
484 * @cdev: thermal cooling device pointer.
Eduardo Valentin135266b2013-04-17 17:12:16 +0000485 *
486 * This interface function unregisters the "thermal-cpufreq-%x" cooling device.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530487 */
488void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev)
489{
hongbo.zhang160b7d82012-10-30 17:48:59 +0100490 struct cpufreq_cooling_device *cpufreq_dev = cdev->devdata;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530491
492 mutex_lock(&cooling_cpufreq_lock);
hongbo.zhang160b7d82012-10-30 17:48:59 +0100493 cpufreq_dev_count--;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530494
495 /* Unregister the notifier for the last cpufreq cooling device */
Eduardo Valentin2d9bf712013-04-17 17:12:18 +0000496 if (cpufreq_dev_count == 0)
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530497 cpufreq_unregister_notifier(&thermal_cpufreq_notifier_block,
498 CPUFREQ_POLICY_NOTIFIER);
Eduardo Valentin2d9bf712013-04-17 17:12:18 +0000499
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530500 mutex_unlock(&cooling_cpufreq_lock);
hongbo.zhang160b7d82012-10-30 17:48:59 +0100501
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530502 thermal_cooling_device_unregister(cpufreq_dev->cool_dev);
503 release_idr(&cpufreq_idr, cpufreq_dev->id);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530504 kfree(cpufreq_dev);
505}
Eduardo Valentin243dbd92013-04-17 17:11:57 +0000506EXPORT_SYMBOL_GPL(cpufreq_cooling_unregister);