blob: 6f2d41e7a9e7b53538c055eee982bcc40b30c92f [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;
Yadwinder Singh Brar2dcd8512014-11-07 19:12:29 +053053 struct list_head node;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053054};
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053055static DEFINE_IDR(cpufreq_idr);
hongbo.zhang160b7d82012-10-30 17:48:59 +010056static DEFINE_MUTEX(cooling_cpufreq_lock);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053057
hongbo.zhang160b7d82012-10-30 17:48:59 +010058static unsigned int cpufreq_dev_count;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053059
Yadwinder Singh Brar2dcd8512014-11-07 19:12:29 +053060static LIST_HEAD(cpufreq_dev_list);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053061
62/**
63 * get_idr - function to get a unique id.
64 * @idr: struct idr * handle used to create a id.
65 * @id: int * value generated by this function.
Eduardo Valentin79491e52013-04-17 17:11:59 +000066 *
67 * This function will populate @id with an unique
68 * id, using the idr API.
69 *
70 * Return: 0 on success, an error code on failure.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053071 */
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;
Eduardo Valentin79491e52013-04-17 17:11:59 +000082
Amit Daniel Kachhap02361412012-08-16 17:11:40 +053083 return 0;
84}
85
86/**
87 * release_idr - function to free the unique id.
88 * @idr: struct idr * handle used for creating the id.
89 * @id: int value representing the unique id.
90 */
91static void release_idr(struct idr *idr, int id)
92{
93 mutex_lock(&cooling_cpufreq_lock);
94 idr_remove(idr, id);
95 mutex_unlock(&cooling_cpufreq_lock);
96}
97
98/* Below code defines functions to be used for cpufreq as cooling device */
99
100/**
Eduardo Valentin82b9ee42013-04-17 17:12:00 +0000101 * is_cpufreq_valid - function to check frequency transitioning capability.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530102 * @cpu: cpu for which check is needed.
Eduardo Valentin82b9ee42013-04-17 17:12:00 +0000103 *
104 * This function will check the current state of the system if
105 * it is capable of changing the frequency for a given @cpu.
106 *
107 * Return: 0 if the system is not currently capable of changing
108 * the frequency of given cpu. !0 in case the frequency is changeable.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530109 */
110static int is_cpufreq_valid(int cpu)
111{
112 struct cpufreq_policy policy;
Eduardo Valentin79491e52013-04-17 17:11:59 +0000113
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530114 return !cpufreq_get_policy(&policy, cpu);
115}
116
Zhang Ruifc35b352013-02-08 13:09:32 +0800117enum cpufreq_cooling_property {
118 GET_LEVEL,
119 GET_FREQ,
120 GET_MAXL,
121};
122
Eduardo Valentin2d6f28f2013-04-17 17:12:01 +0000123/**
Viresh Kumar728c03c2014-12-04 09:41:47 +0530124 * get_property - fetch a property of interest for a given cpu.
Eduardo Valentin2d6f28f2013-04-17 17:12:01 +0000125 * @cpu: cpu for which the property is required
126 * @input: query parameter
127 * @output: query return
128 * @property: type of query (frequency, level, max level)
129 *
130 * This is the common function to
Zhang Ruifc35b352013-02-08 13:09:32 +0800131 * 1. get maximum cpu cooling states
132 * 2. translate frequency to cooling state
133 * 3. translate cooling state to frequency
Viresh Kumar728c03c2014-12-04 09:41:47 +0530134 *
Zhang Ruifc35b352013-02-08 13:09:32 +0800135 * 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.
Eduardo Valentin2d6f28f2013-04-17 17:12:01 +0000140 *
141 * Return: 0 on success, -EINVAL when invalid parameters are passed.
142 */
Zhang Ruifc35b352013-02-08 13:09:32 +0800143static int get_property(unsigned int cpu, unsigned long input,
Eduardo Valentind8892a02013-04-17 17:12:03 +0000144 unsigned int *output,
145 enum cpufreq_cooling_property property)
Zhang Ruifc35b352013-02-08 13:09:32 +0800146{
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300147 int i;
Eduardo Valentin4469b992013-04-17 17:11:58 +0000148 unsigned long max_level = 0, level = 0;
Zhang Ruifc35b352013-02-08 13:09:32 +0800149 unsigned int freq = CPUFREQ_ENTRY_INVALID;
150 int descend = -1;
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300151 struct cpufreq_frequency_table *pos, *table =
Zhang Ruifc35b352013-02-08 13:09:32 +0800152 cpufreq_frequency_get_table(cpu);
Eduardo Valentin79d26402013-04-17 17:11:55 +0000153
Zhang Ruifc35b352013-02-08 13:09:32 +0800154 if (!output)
155 return -EINVAL;
156
157 if (!table)
158 return -EINVAL;
159
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300160 cpufreq_for_each_valid_entry(pos, table) {
Zhang Ruifc35b352013-02-08 13:09:32 +0800161 /* ignore duplicate entry */
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300162 if (freq == pos->frequency)
Zhang Ruifc35b352013-02-08 13:09:32 +0800163 continue;
164
165 /* get the frequency order */
Shawn Guo24c7a382013-05-28 06:22:32 +0000166 if (freq != CPUFREQ_ENTRY_INVALID && descend == -1)
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300167 descend = freq > pos->frequency;
Zhang Ruifc35b352013-02-08 13:09:32 +0800168
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300169 freq = pos->frequency;
Zhang Ruifc35b352013-02-08 13:09:32 +0800170 max_level++;
171 }
Zhang Ruia1167762014-01-02 11:57:48 +0800172
173 /* No valid cpu frequency entry */
174 if (max_level == 0)
175 return -EINVAL;
176
Eduardo Valentin1c9573a2013-11-13 14:11:09 -0400177 /* max_level is an index, not a counter */
178 max_level--;
Zhang Ruifc35b352013-02-08 13:09:32 +0800179
180 /* get max level */
181 if (property == GET_MAXL) {
182 *output = (unsigned int)max_level;
183 return 0;
184 }
185
186 if (property == GET_FREQ)
Eduardo Valentin1c9573a2013-11-13 14:11:09 -0400187 level = descend ? input : (max_level - input);
Zhang Ruifc35b352013-02-08 13:09:32 +0800188
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300189 i = 0;
190 cpufreq_for_each_valid_entry(pos, table) {
Zhang Ruifc35b352013-02-08 13:09:32 +0800191 /* ignore duplicate entry */
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300192 if (freq == pos->frequency)
Zhang Ruifc35b352013-02-08 13:09:32 +0800193 continue;
194
195 /* now we have a valid frequency entry */
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300196 freq = pos->frequency;
Zhang Ruifc35b352013-02-08 13:09:32 +0800197
198 if (property == GET_LEVEL && (unsigned int)input == freq) {
199 /* get level by frequency */
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300200 *output = descend ? i : (max_level - i);
Zhang Ruifc35b352013-02-08 13:09:32 +0800201 return 0;
202 }
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300203 if (property == GET_FREQ && level == i) {
Zhang Ruifc35b352013-02-08 13:09:32 +0800204 /* get frequency by level */
205 *output = freq;
206 return 0;
207 }
Stratos Karafotis3c84ef32014-04-25 23:16:39 +0300208 i++;
Zhang Ruifc35b352013-02-08 13:09:32 +0800209 }
Eduardo Valentin79491e52013-04-17 17:11:59 +0000210
Zhang Ruifc35b352013-02-08 13:09:32 +0800211 return -EINVAL;
212}
213
Eduardo Valentin44952d32013-04-17 17:12:05 +0000214/**
Viresh Kumar728c03c2014-12-04 09:41:47 +0530215 * cpufreq_cooling_get_level - for a given cpu, return the cooling level.
Eduardo Valentin44952d32013-04-17 17:12:05 +0000216 * @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 */
Zhang Rui57df8102013-02-08 14:52:06 +0800225unsigned 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;
Eduardo Valentin79491e52013-04-17 17:11:59 +0000231
Zhang Rui57df8102013-02-08 14:52:06 +0800232 return (unsigned long)val;
233}
Eduardo Valentin243dbd92013-04-17 17:11:57 +0000234EXPORT_SYMBOL_GPL(cpufreq_cooling_get_level);
Zhang Rui57df8102013-02-08 14:52:06 +0800235
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530236/**
237 * get_cpu_frequency - get the absolute value of frequency from level.
238 * @cpu: cpu for which frequency is fetched.
Eduardo Valentin41518c42013-04-17 17:12:07 +0000239 * @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.
Zhang Rui475f41c2013-02-06 09:34:32 +0800244 * e.g level=0 --> 1st MAX FREQ, level=1 ---> 2nd MAX FREQ, .... etc
Eduardo Valentin41518c42013-04-17 17:12:07 +0000245 *
246 * Return: 0 on error, the corresponding frequency otherwise.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530247 */
248static unsigned int get_cpu_frequency(unsigned int cpu, unsigned long level)
249{
Zhang Ruifc35b352013-02-08 13:09:32 +0800250 int ret = 0;
251 unsigned int freq;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530252
Zhang Ruifc35b352013-02-08 13:09:32 +0800253 ret = get_property(cpu, level, &freq, GET_FREQ);
254 if (ret)
255 return 0;
Eduardo Valentin79491e52013-04-17 17:11:59 +0000256
Zhang Ruifc35b352013-02-08 13:09:32 +0800257 return freq;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530258}
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.
Eduardo Valentin4b33deb2013-04-17 17:12:08 +0000265 *
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).
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530271 */
272static int cpufreq_apply_cooling(struct cpufreq_cooling_device *cpufreq_device,
Eduardo Valentin5fda7f62013-04-17 17:12:11 +0000273 unsigned long cooling_state)
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530274{
275 unsigned int cpuid, clip_freq;
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000276 struct cpumask *mask = &cpufreq_device->allowed_cpus;
277 unsigned int cpu = cpumask_any(mask);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530278
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;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530290
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000291 for_each_cpu(cpuid, mask) {
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530292 if (is_cpufreq_valid(cpuid))
293 cpufreq_update_policy(cpuid);
294 }
295
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530296 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
Eduardo Valentinbab30552013-04-17 17:12:09 +0000304 *
Javi Merino9746b6e2014-06-25 18:11:17 +0100305 * Callback to hijack the notification on cpufreq policy transition.
Eduardo Valentinbab30552013-04-17 17:12:09 +0000306 * 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)
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530310 */
311static int cpufreq_thermal_notifier(struct notifier_block *nb,
Eduardo Valentin5fda7f62013-04-17 17:12:11 +0000312 unsigned long event, void *data)
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530313{
314 struct cpufreq_policy *policy = data;
315 unsigned long max_freq = 0;
Yadwinder Singh Brar2dcd8512014-11-07 19:12:29 +0530316 struct cpufreq_cooling_device *cpufreq_dev;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530317
Yadwinder Singh Brar2dcd8512014-11-07 19:12:29 +0530318 if (event != CPUFREQ_ADJUST)
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530319 return 0;
320
Yadwinder Singh Brar2dcd8512014-11-07 19:12:29 +0530321 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;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530326
Yadwinder Singh Brar2dcd8512014-11-07 19:12:29 +0530327 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);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530331
Yadwinder Singh Brar2dcd8512014-11-07 19:12:29 +0530332 max_freq = cpufreq_dev->cpufreq_val;
333
334 if (policy->max != max_freq)
335 cpufreq_verify_within_limits(policy, 0, max_freq);
336 }
337 mutex_unlock(&cooling_cpufreq_lock);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530338
339 return 0;
340}
341
Eduardo Valentin1b9e3522013-04-17 17:12:02 +0000342/* cpufreq cooling device callback functions are defined below */
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530343
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.
Eduardo Valentin62c00422013-04-17 17:12:12 +0000348 *
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.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530353 */
354static int cpufreq_get_max_state(struct thermal_cooling_device *cdev,
355 unsigned long *state)
356{
hongbo.zhang160b7d82012-10-30 17:48:59 +0100357 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000358 struct cpumask *mask = &cpufreq_device->allowed_cpus;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530359 unsigned int cpu;
Dan Carpenter4f890382013-04-17 07:18:28 +0000360 unsigned int count = 0;
Zhang Ruifc35b352013-02-08 13:09:32 +0800361 int ret;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530362
Laurent Navet [Mali]bde00662013-03-12 10:47:50 +0000363 cpu = cpumask_any(mask);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530364
Dan Carpenter4f890382013-04-17 07:18:28 +0000365 ret = get_property(cpu, 0, &count, GET_MAXL);
hongbo.zhang9c51b052012-10-30 17:48:58 +0100366
Zhang Ruifc35b352013-02-08 13:09:32 +0800367 if (count > 0)
368 *state = count;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530369
Zhang Ruifc35b352013-02-08 13:09:32 +0800370 return ret;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530371}
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.
Eduardo Valentin36725522013-04-17 17:12:13 +0000377 *
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.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530382 */
383static int cpufreq_get_cur_state(struct thermal_cooling_device *cdev,
384 unsigned long *state)
385{
hongbo.zhang160b7d82012-10-30 17:48:59 +0100386 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530387
hongbo.zhang160b7d82012-10-30 17:48:59 +0100388 *state = cpufreq_device->cpufreq_state;
Eduardo Valentin79491e52013-04-17 17:11:59 +0000389
hongbo.zhang160b7d82012-10-30 17:48:59 +0100390 return 0;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530391}
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.
Eduardo Valentin56e05fdb2013-04-17 17:12:14 +0000397 *
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.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530402 */
403static int cpufreq_set_cur_state(struct thermal_cooling_device *cdev,
404 unsigned long state)
405{
hongbo.zhang160b7d82012-10-30 17:48:59 +0100406 struct cpufreq_cooling_device *cpufreq_device = cdev->devdata;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530407
hongbo.zhang160b7d82012-10-30 17:48:59 +0100408 return cpufreq_apply_cooling(cpufreq_device, state);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530409}
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/**
Eduardo Valentin39d99cf2013-09-12 19:26:45 -0400424 * __cpufreq_cooling_register - helper function to create cpufreq cooling device
425 * @np: a valid struct device_node to the cooling device device tree node
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530426 * @clip_cpus: cpumask of cpus where the frequency constraints will happen.
Eduardo Valentin12cb08b2013-04-17 17:12:15 +0000427 *
428 * This interface function registers the cpufreq cooling device with the name
429 * "thermal-cpufreq-%x". This api can support multiple instances of cpufreq
Eduardo Valentin39d99cf2013-09-12 19:26:45 -0400430 * 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.
Eduardo Valentin12cb08b2013-04-17 17:12:15 +0000432 *
433 * Return: a valid struct thermal_cooling_device pointer on success,
434 * on failure, it returns a corresponding ERR_PTR().
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530435 */
Eduardo Valentin39d99cf2013-09-12 19:26:45 -0400436static struct thermal_cooling_device *
437__cpufreq_cooling_register(struct device_node *np,
438 const struct cpumask *clip_cpus)
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530439{
440 struct thermal_cooling_device *cool_dev;
441 struct cpufreq_cooling_device *cpufreq_dev = NULL;
hongbo.zhang160b7d82012-10-30 17:48:59 +0100442 unsigned int min = 0, max = 0;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530443 char dev_name[THERMAL_NAME_LENGTH];
Jonghwa Leea4b6fec2012-09-26 09:43:31 +0900444 int ret = 0, i;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530445 struct cpufreq_policy policy;
446
Eduardo Valentin0f1be512014-12-04 09:41:43 +0530447 if (!cpufreq_frequency_get_table(cpumask_first(clip_cpus))) {
448 pr_debug("%s: CPUFreq table not found\n", __func__);
449 return ERR_PTR(-EPROBE_DEFER);
450 }
451
Eduardo Valentin1b9e3522013-04-17 17:12:02 +0000452 /* Verify that all the clip cpus have same freq_min, freq_max limit */
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530453 for_each_cpu(i, clip_cpus) {
Eduardo Valentin1b9e3522013-04-17 17:12:02 +0000454 /* continue if cpufreq policy not found and not return error */
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530455 if (!cpufreq_get_policy(&policy, i))
456 continue;
457 if (min == 0 && max == 0) {
458 min = policy.cpuinfo.min_freq;
459 max = policy.cpuinfo.max_freq;
460 } else {
461 if (min != policy.cpuinfo.min_freq ||
Eduardo Valentin5fda7f62013-04-17 17:12:11 +0000462 max != policy.cpuinfo.max_freq)
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530463 return ERR_PTR(-EINVAL);
hongbo.zhang6b6519d2012-10-30 17:48:57 +0100464 }
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530465 }
466 cpufreq_dev = kzalloc(sizeof(struct cpufreq_cooling_device),
Eduardo Valentin5fda7f62013-04-17 17:12:11 +0000467 GFP_KERNEL);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530468 if (!cpufreq_dev)
469 return ERR_PTR(-ENOMEM);
470
471 cpumask_copy(&cpufreq_dev->allowed_cpus, clip_cpus);
472
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530473 ret = get_idr(&cpufreq_idr, &cpufreq_dev->id);
474 if (ret) {
475 kfree(cpufreq_dev);
476 return ERR_PTR(-EINVAL);
477 }
478
Eduardo Valentin99871a72013-04-17 17:12:17 +0000479 snprintf(dev_name, sizeof(dev_name), "thermal-cpufreq-%d",
480 cpufreq_dev->id);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530481
Eduardo Valentin39d99cf2013-09-12 19:26:45 -0400482 cool_dev = thermal_of_cooling_device_register(np, dev_name, cpufreq_dev,
483 &cpufreq_cooling_ops);
Wei Yongjun73b9bcd2013-10-25 21:55:42 +0800484 if (IS_ERR(cool_dev)) {
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530485 release_idr(&cpufreq_idr, cpufreq_dev->id);
486 kfree(cpufreq_dev);
Wei Yongjun73b9bcd2013-10-25 21:55:42 +0800487 return cool_dev;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530488 }
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530489 cpufreq_dev->cool_dev = cool_dev;
490 cpufreq_dev->cpufreq_state = 0;
491 mutex_lock(&cooling_cpufreq_lock);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530492
493 /* Register the notifier for first cpufreq cooling device */
494 if (cpufreq_dev_count == 0)
495 cpufreq_register_notifier(&thermal_cpufreq_notifier_block,
Eduardo Valentin5fda7f62013-04-17 17:12:11 +0000496 CPUFREQ_POLICY_NOTIFIER);
hongbo.zhang160b7d82012-10-30 17:48:59 +0100497 cpufreq_dev_count++;
Yadwinder Singh Brar2dcd8512014-11-07 19:12:29 +0530498 list_add(&cpufreq_dev->node, &cpufreq_dev_list);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530499
500 mutex_unlock(&cooling_cpufreq_lock);
Eduardo Valentin79491e52013-04-17 17:11:59 +0000501
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530502 return cool_dev;
503}
Eduardo Valentin39d99cf2013-09-12 19:26:45 -0400504
505/**
506 * cpufreq_cooling_register - function to create cpufreq cooling device.
507 * @clip_cpus: cpumask of cpus where the frequency constraints will happen.
508 *
509 * This interface function registers the cpufreq cooling device with the name
510 * "thermal-cpufreq-%x". This api can support multiple instances of cpufreq
511 * cooling devices.
512 *
513 * Return: a valid struct thermal_cooling_device pointer on success,
514 * on failure, it returns a corresponding ERR_PTR().
515 */
516struct thermal_cooling_device *
517cpufreq_cooling_register(const struct cpumask *clip_cpus)
518{
519 return __cpufreq_cooling_register(NULL, clip_cpus);
520}
Eduardo Valentin243dbd92013-04-17 17:11:57 +0000521EXPORT_SYMBOL_GPL(cpufreq_cooling_register);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530522
523/**
Eduardo Valentin39d99cf2013-09-12 19:26:45 -0400524 * of_cpufreq_cooling_register - function to create cpufreq cooling device.
525 * @np: a valid struct device_node to the cooling device device tree node
526 * @clip_cpus: cpumask of cpus where the frequency constraints will happen.
527 *
528 * This interface function registers the cpufreq cooling device with the name
529 * "thermal-cpufreq-%x". This api can support multiple instances of cpufreq
530 * cooling devices. Using this API, the cpufreq cooling device will be
531 * linked to the device tree node provided.
532 *
533 * Return: a valid struct thermal_cooling_device pointer on success,
534 * on failure, it returns a corresponding ERR_PTR().
535 */
536struct thermal_cooling_device *
537of_cpufreq_cooling_register(struct device_node *np,
538 const struct cpumask *clip_cpus)
539{
540 if (!np)
541 return ERR_PTR(-EINVAL);
542
543 return __cpufreq_cooling_register(np, clip_cpus);
544}
545EXPORT_SYMBOL_GPL(of_cpufreq_cooling_register);
546
547/**
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530548 * cpufreq_cooling_unregister - function to remove cpufreq cooling device.
549 * @cdev: thermal cooling device pointer.
Eduardo Valentin135266b2013-04-17 17:12:16 +0000550 *
551 * This interface function unregisters the "thermal-cpufreq-%x" cooling device.
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530552 */
553void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev)
554{
Eduardo Valentin50e66c72013-08-15 10:54:46 -0400555 struct cpufreq_cooling_device *cpufreq_dev;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530556
Eduardo Valentin50e66c72013-08-15 10:54:46 -0400557 if (!cdev)
558 return;
559
560 cpufreq_dev = cdev->devdata;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530561 mutex_lock(&cooling_cpufreq_lock);
Yadwinder Singh Brar2dcd8512014-11-07 19:12:29 +0530562 list_del(&cpufreq_dev->node);
hongbo.zhang160b7d82012-10-30 17:48:59 +0100563 cpufreq_dev_count--;
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530564
565 /* Unregister the notifier for the last cpufreq cooling device */
Eduardo Valentin2d9bf712013-04-17 17:12:18 +0000566 if (cpufreq_dev_count == 0)
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530567 cpufreq_unregister_notifier(&thermal_cpufreq_notifier_block,
Eduardo Valentin5fda7f62013-04-17 17:12:11 +0000568 CPUFREQ_POLICY_NOTIFIER);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530569 mutex_unlock(&cooling_cpufreq_lock);
hongbo.zhang160b7d82012-10-30 17:48:59 +0100570
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530571 thermal_cooling_device_unregister(cpufreq_dev->cool_dev);
572 release_idr(&cpufreq_idr, cpufreq_dev->id);
Amit Daniel Kachhap02361412012-08-16 17:11:40 +0530573 kfree(cpufreq_dev);
574}
Eduardo Valentin243dbd92013-04-17 17:11:57 +0000575EXPORT_SYMBOL_GPL(cpufreq_cooling_unregister);