blob: a38c1756442aa2611e0e207466aabba4e72b94cc [file] [log] [blame]
Eduardo Valentin445eaf82012-07-12 19:02:30 +03001/*
2 * OMAP thermal driver interface
3 *
4 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
5 * Contact:
6 * Eduardo Valentin <eduardo.valentin@ti.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
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
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
24#include <linux/device.h>
25#include <linux/err.h>
26#include <linux/mutex.h>
27#include <linux/gfp.h>
28#include <linux/kernel.h>
29#include <linux/workqueue.h>
30#include <linux/thermal.h>
Eduardo Valentin5035d482012-11-13 14:10:02 -040031#include <linux/cpumask.h>
Eduardo Valentin445eaf82012-07-12 19:02:30 +030032#include <linux/cpu_cooling.h>
Eduardo Valentin26d9cc62013-07-04 16:43:54 -040033#include <linux/of.h>
Eduardo Valentin445eaf82012-07-12 19:02:30 +030034
Eduardo Valentin7372add2013-03-19 10:54:19 -040035#include "ti-thermal.h"
36#include "ti-bandgap.h"
Eduardo Valentin445eaf82012-07-12 19:02:30 +030037
38/* common data structures */
Eduardo Valentin03e859d2013-03-19 10:54:21 -040039struct ti_thermal_data {
40 struct thermal_zone_device *ti_thermal;
Eduardo Valentin359836e2013-05-29 15:07:41 +000041 struct thermal_zone_device *pcb_tz;
Eduardo Valentin445eaf82012-07-12 19:02:30 +030042 struct thermal_cooling_device *cool_dev;
Eduardo Valentin03e859d2013-03-19 10:54:21 -040043 struct ti_bandgap *bgp;
Eduardo Valentin445eaf82012-07-12 19:02:30 +030044 enum thermal_device_mode mode;
45 struct work_struct thermal_wq;
46 int sensor_id;
Eduardo Valentin26d9cc62013-07-04 16:43:54 -040047 bool our_zone;
Eduardo Valentin445eaf82012-07-12 19:02:30 +030048};
49
Eduardo Valentin03e859d2013-03-19 10:54:21 -040050static void ti_thermal_work(struct work_struct *work)
Eduardo Valentin445eaf82012-07-12 19:02:30 +030051{
Eduardo Valentin03e859d2013-03-19 10:54:21 -040052 struct ti_thermal_data *data = container_of(work,
53 struct ti_thermal_data, thermal_wq);
Eduardo Valentin445eaf82012-07-12 19:02:30 +030054
Eduardo Valentin03e859d2013-03-19 10:54:21 -040055 thermal_zone_device_update(data->ti_thermal);
Eduardo Valentin445eaf82012-07-12 19:02:30 +030056
Eduardo Valentin03e859d2013-03-19 10:54:21 -040057 dev_dbg(&data->ti_thermal->device, "updated thermal zone %s\n",
58 data->ti_thermal->type);
Eduardo Valentin445eaf82012-07-12 19:02:30 +030059}
60
61/**
Eduardo Valentin03e859d2013-03-19 10:54:21 -040062 * ti_thermal_hotspot_temperature - returns sensor extrapolated temperature
Eduardo Valentin445eaf82012-07-12 19:02:30 +030063 * @t: omap sensor temperature
64 * @s: omap sensor slope value
65 * @c: omap sensor const value
66 */
Eduardo Valentin03e859d2013-03-19 10:54:21 -040067static inline int ti_thermal_hotspot_temperature(int t, int s, int c)
Eduardo Valentin445eaf82012-07-12 19:02:30 +030068{
69 int delta = t * s / 1000 + c;
70
71 if (delta < 0)
72 delta = 0;
73
74 return t + delta;
75}
76
77/* thermal zone ops */
78/* Get temperature callback function for thermal zone*/
Eduardo Valentin26d9cc62013-07-04 16:43:54 -040079static inline int __ti_thermal_get_temp(void *devdata, long *temp)
Eduardo Valentin445eaf82012-07-12 19:02:30 +030080{
Eduardo Valentin359836e2013-05-29 15:07:41 +000081 struct thermal_zone_device *pcb_tz = NULL;
Eduardo Valentin26d9cc62013-07-04 16:43:54 -040082 struct ti_thermal_data *data = devdata;
Eduardo Valentin03e859d2013-03-19 10:54:21 -040083 struct ti_bandgap *bgp;
Eduardo Valentin9879b2c2013-03-19 10:54:23 -040084 const struct ti_temp_sensor *s;
Eduardo Valentin359836e2013-05-29 15:07:41 +000085 int ret, tmp, slope, constant;
86 unsigned long pcb_temp;
Eduardo Valentin445eaf82012-07-12 19:02:30 +030087
Eduardo Valentin04a4d102012-09-11 19:06:55 +030088 if (!data)
89 return 0;
90
Eduardo Valentind7f080e2013-03-19 10:54:18 -040091 bgp = data->bgp;
92 s = &bgp->conf->sensors[data->sensor_id];
Eduardo Valentin04a4d102012-09-11 19:06:55 +030093
Eduardo Valentin03e859d2013-03-19 10:54:21 -040094 ret = ti_bandgap_read_temperature(bgp, data->sensor_id, &tmp);
Eduardo Valentin445eaf82012-07-12 19:02:30 +030095 if (ret)
96 return ret;
97
Eduardo Valentin359836e2013-05-29 15:07:41 +000098 /* Default constants */
99 slope = s->slope;
100 constant = s->constant;
101
102 pcb_tz = data->pcb_tz;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300103 /* In case pcb zone is available, use the extrapolation rule with it */
Eduardo Valentin0c12b5a2013-05-29 15:07:43 +0000104 if (!IS_ERR(pcb_tz)) {
Eduardo Valentin359836e2013-05-29 15:07:41 +0000105 ret = thermal_zone_get_temp(pcb_tz, &pcb_temp);
106 if (!ret) {
107 tmp -= pcb_temp; /* got a valid PCB temp */
108 slope = s->slope_pcb;
109 constant = s->constant_pcb;
110 } else {
111 dev_err(bgp->dev,
112 "Failed to read PCB state. Using defaults\n");
Eduardo Valentindf8f1342013-09-15 15:21:51 -0400113 ret = 0;
Eduardo Valentin359836e2013-05-29 15:07:41 +0000114 }
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300115 }
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400116 *temp = ti_thermal_hotspot_temperature(tmp, slope, constant);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300117
118 return ret;
119}
120
Eduardo Valentin26d9cc62013-07-04 16:43:54 -0400121static inline int ti_thermal_get_temp(struct thermal_zone_device *thermal,
122 unsigned long *temp)
123{
124 struct ti_thermal_data *data = thermal->devdata;
125
126 return __ti_thermal_get_temp(data, temp);
127}
128
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300129/* Bind callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400130static int ti_thermal_bind(struct thermal_zone_device *thermal,
131 struct thermal_cooling_device *cdev)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300132{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400133 struct ti_thermal_data *data = thermal->devdata;
Eduardo Valentin5035d482012-11-13 14:10:02 -0400134 int id;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300135
Eduardo Valentin0c12b5a2013-05-29 15:07:43 +0000136 if (!data || IS_ERR(data))
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300137 return -ENODEV;
138
139 /* check if this is the cooling device we registered */
140 if (data->cool_dev != cdev)
141 return 0;
142
143 id = data->sensor_id;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300144
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300145 /* Simple thing, two trips, one passive another critical */
Eduardo Valentina7a3b8c2012-08-23 08:37:59 +0800146 return thermal_zone_bind_cooling_device(thermal, 0, cdev,
Eduardo Valentin67b4c472013-04-08 08:19:08 -0400147 /* bind with min and max states defined by cpu_cooling */
Eduardo Valentina7a3b8c2012-08-23 08:37:59 +0800148 THERMAL_NO_LIMIT,
149 THERMAL_NO_LIMIT);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300150}
151
152/* Unbind callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400153static int ti_thermal_unbind(struct thermal_zone_device *thermal,
154 struct thermal_cooling_device *cdev)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300155{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400156 struct ti_thermal_data *data = thermal->devdata;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300157
Eduardo Valentin0c12b5a2013-05-29 15:07:43 +0000158 if (!data || IS_ERR(data))
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300159 return -ENODEV;
160
161 /* check if this is the cooling device we registered */
162 if (data->cool_dev != cdev)
163 return 0;
164
165 /* Simple thing, two trips, one passive another critical */
166 return thermal_zone_unbind_cooling_device(thermal, 0, cdev);
167}
168
169/* Get mode callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400170static int ti_thermal_get_mode(struct thermal_zone_device *thermal,
171 enum thermal_device_mode *mode)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300172{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400173 struct ti_thermal_data *data = thermal->devdata;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300174
175 if (data)
176 *mode = data->mode;
177
178 return 0;
179}
180
181/* Set mode callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400182static int ti_thermal_set_mode(struct thermal_zone_device *thermal,
183 enum thermal_device_mode mode)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300184{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400185 struct ti_thermal_data *data = thermal->devdata;
Ranganath Krishnan10ccff12013-08-23 11:08:22 -0500186 struct ti_bandgap *bgp;
187
188 bgp = data->bgp;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300189
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400190 if (!data->ti_thermal) {
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300191 dev_notice(&thermal->device, "thermal zone not registered\n");
192 return 0;
193 }
194
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400195 mutex_lock(&data->ti_thermal->lock);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300196
197 if (mode == THERMAL_DEVICE_ENABLED)
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400198 data->ti_thermal->polling_delay = FAST_TEMP_MONITORING_RATE;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300199 else
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400200 data->ti_thermal->polling_delay = 0;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300201
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400202 mutex_unlock(&data->ti_thermal->lock);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300203
204 data->mode = mode;
Ranganath Krishnan10ccff12013-08-23 11:08:22 -0500205 ti_bandgap_write_update_interval(bgp, data->sensor_id,
206 data->ti_thermal->polling_delay);
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400207 thermal_zone_device_update(data->ti_thermal);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300208 dev_dbg(&thermal->device, "thermal polling set for duration=%d msec\n",
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400209 data->ti_thermal->polling_delay);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300210
211 return 0;
212}
213
214/* Get trip type callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400215static int ti_thermal_get_trip_type(struct thermal_zone_device *thermal,
216 int trip, enum thermal_trip_type *type)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300217{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400218 if (!ti_thermal_is_valid_trip(trip))
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300219 return -EINVAL;
220
221 if (trip + 1 == OMAP_TRIP_NUMBER)
222 *type = THERMAL_TRIP_CRITICAL;
223 else
224 *type = THERMAL_TRIP_PASSIVE;
225
226 return 0;
227}
228
229/* Get trip temperature callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400230static int ti_thermal_get_trip_temp(struct thermal_zone_device *thermal,
231 int trip, unsigned long *temp)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300232{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400233 if (!ti_thermal_is_valid_trip(trip))
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300234 return -EINVAL;
235
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400236 *temp = ti_thermal_get_trip_value(trip);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300237
238 return 0;
239}
240
Eduardo Valentin26d9cc62013-07-04 16:43:54 -0400241static int __ti_thermal_get_trend(void *p, long *trend)
J Keerthy03b7f672013-04-01 12:04:46 -0400242{
Eduardo Valentin26d9cc62013-07-04 16:43:54 -0400243 struct ti_thermal_data *data = p;
J Keerthy03b7f672013-04-01 12:04:46 -0400244 struct ti_bandgap *bgp;
245 int id, tr, ret = 0;
246
247 bgp = data->bgp;
248 id = data->sensor_id;
249
250 ret = ti_bandgap_get_trend(bgp, id, &tr);
251 if (ret)
252 return ret;
253
Eduardo Valentin26d9cc62013-07-04 16:43:54 -0400254 *trend = tr;
255
256 return 0;
257}
258
259/* Get the temperature trend callback functions for thermal zone */
260static int ti_thermal_get_trend(struct thermal_zone_device *thermal,
261 int trip, enum thermal_trend *trend)
262{
263 int ret;
264 long tr;
265
266 ret = __ti_thermal_get_trend(thermal->devdata, &tr);
267 if (ret)
268 return ret;
269
J Keerthy03b7f672013-04-01 12:04:46 -0400270 if (tr > 0)
271 *trend = THERMAL_TREND_RAISING;
272 else if (tr < 0)
273 *trend = THERMAL_TREND_DROPPING;
274 else
275 *trend = THERMAL_TREND_STABLE;
276
277 return 0;
278}
279
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300280/* Get critical temperature callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400281static int ti_thermal_get_crit_temp(struct thermal_zone_device *thermal,
282 unsigned long *temp)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300283{
284 /* shutdown zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400285 return ti_thermal_get_trip_temp(thermal, OMAP_TRIP_NUMBER - 1, temp);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300286}
287
Eduardo Valentin2251aef2014-11-07 21:24:39 -0400288static const struct thermal_zone_of_device_ops ti_of_thermal_ops = {
289 .get_temp = __ti_thermal_get_temp,
290 .get_trend = __ti_thermal_get_trend,
291};
292
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400293static struct thermal_zone_device_ops ti_thermal_ops = {
294 .get_temp = ti_thermal_get_temp,
J Keerthy03b7f672013-04-01 12:04:46 -0400295 .get_trend = ti_thermal_get_trend,
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400296 .bind = ti_thermal_bind,
297 .unbind = ti_thermal_unbind,
298 .get_mode = ti_thermal_get_mode,
299 .set_mode = ti_thermal_set_mode,
300 .get_trip_type = ti_thermal_get_trip_type,
301 .get_trip_temp = ti_thermal_get_trip_temp,
302 .get_crit_temp = ti_thermal_get_crit_temp,
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300303};
304
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400305static struct ti_thermal_data
306*ti_thermal_build_data(struct ti_bandgap *bgp, int id)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300307{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400308 struct ti_thermal_data *data;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300309
Eduardo Valentind7f080e2013-03-19 10:54:18 -0400310 data = devm_kzalloc(bgp->dev, sizeof(*data), GFP_KERNEL);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300311 if (!data) {
Eduardo Valentind7f080e2013-03-19 10:54:18 -0400312 dev_err(bgp->dev, "kzalloc fail\n");
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300313 return NULL;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300314 }
315 data->sensor_id = id;
Eduardo Valentind7f080e2013-03-19 10:54:18 -0400316 data->bgp = bgp;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300317 data->mode = THERMAL_DEVICE_ENABLED;
Eduardo Valentin0c12b5a2013-05-29 15:07:43 +0000318 /* pcb_tz will be either valid or PTR_ERR() */
Eduardo Valentin359836e2013-05-29 15:07:41 +0000319 data->pcb_tz = thermal_zone_get_zone_by_name("pcb");
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400320 INIT_WORK(&data->thermal_wq, ti_thermal_work);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300321
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300322 return data;
323}
324
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400325int ti_thermal_expose_sensor(struct ti_bandgap *bgp, int id,
326 char *domain)
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300327{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400328 struct ti_thermal_data *data;
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300329
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400330 data = ti_bandgap_get_sensor_data(bgp, id);
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300331
Eduardo Valentin0c12b5a2013-05-29 15:07:43 +0000332 if (!data || IS_ERR(data))
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400333 data = ti_thermal_build_data(bgp, id);
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300334
335 if (!data)
336 return -EINVAL;
337
Eduardo Valentin26d9cc62013-07-04 16:43:54 -0400338 /* in case this is specified by DT */
339 data->ti_thermal = thermal_zone_of_sensor_register(bgp->dev, id,
Eduardo Valentin2251aef2014-11-07 21:24:39 -0400340 data, &ti_of_thermal_ops);
Eduardo Valentin26d9cc62013-07-04 16:43:54 -0400341 if (IS_ERR(data->ti_thermal)) {
342 /* Create thermal zone */
343 data->ti_thermal = thermal_zone_device_register(domain,
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400344 OMAP_TRIP_NUMBER, 0, data, &ti_thermal_ops,
Durgadoss R50125a92012-09-18 11:04:56 +0530345 NULL, FAST_TEMP_MONITORING_RATE,
Eduardo Valentin765a1932012-09-11 19:06:54 +0300346 FAST_TEMP_MONITORING_RATE);
Eduardo Valentin26d9cc62013-07-04 16:43:54 -0400347 if (IS_ERR(data->ti_thermal)) {
348 dev_err(bgp->dev, "thermal zone device is NULL\n");
349 return PTR_ERR(data->ti_thermal);
350 }
351 data->ti_thermal->polling_delay = FAST_TEMP_MONITORING_RATE;
352 data->our_zone = true;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300353 }
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400354 ti_bandgap_set_sensor_data(bgp, id, data);
Ranganath Krishnan10ccff12013-08-23 11:08:22 -0500355 ti_bandgap_write_update_interval(bgp, data->sensor_id,
356 data->ti_thermal->polling_delay);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300357
358 return 0;
359}
360
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400361int ti_thermal_remove_sensor(struct ti_bandgap *bgp, int id)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300362{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400363 struct ti_thermal_data *data;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300364
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400365 data = ti_bandgap_get_sensor_data(bgp, id);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300366
Eduardo Valentin26d9cc62013-07-04 16:43:54 -0400367 if (data && data->ti_thermal) {
368 if (data->our_zone)
369 thermal_zone_device_unregister(data->ti_thermal);
370 else
371 thermal_zone_of_sensor_unregister(bgp->dev,
372 data->ti_thermal);
373 }
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300374
375 return 0;
376}
377
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400378int ti_thermal_report_sensor_temperature(struct ti_bandgap *bgp, int id)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300379{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400380 struct ti_thermal_data *data;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300381
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400382 data = ti_bandgap_get_sensor_data(bgp, id);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300383
384 schedule_work(&data->thermal_wq);
385
386 return 0;
387}
388
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400389int ti_thermal_register_cpu_cooling(struct ti_bandgap *bgp, int id)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300390{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400391 struct ti_thermal_data *data;
Eduardo Valentin26d9cc62013-07-04 16:43:54 -0400392 struct device_node *np = bgp->dev->of_node;
393
394 /*
395 * We are assuming here that if one deploys the zone
396 * using DT, then it must be aware that the cooling device
397 * loading has to happen via cpufreq driver.
398 */
399 if (of_find_property(np, "#thermal-sensor-cells", NULL))
400 return 0;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300401
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400402 data = ti_bandgap_get_sensor_data(bgp, id);
Eduardo Valentin0c12b5a2013-05-29 15:07:43 +0000403 if (!data || IS_ERR(data))
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400404 data = ti_thermal_build_data(bgp, id);
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300405
406 if (!data)
407 return -EINVAL;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300408
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300409 /* Register cooling device */
Eduardo Valentin5035d482012-11-13 14:10:02 -0400410 data->cool_dev = cpufreq_cooling_register(cpu_present_mask);
Eduardo Valentin0c12b5a2013-05-29 15:07:43 +0000411 if (IS_ERR(data->cool_dev)) {
Eduardo Valentincffafc32014-12-12 10:05:39 -0400412 int ret = PTR_ERR(data->cool_dev);
413
414 if (ret != -EPROBE_DEFER)
415 dev_err(bgp->dev,
416 "Failed to register cpu cooling device %d\n",
417 ret);
418
419 return ret;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300420 }
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400421 ti_bandgap_set_sensor_data(bgp, id, data);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300422
423 return 0;
424}
425
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400426int ti_thermal_unregister_cpu_cooling(struct ti_bandgap *bgp, int id)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300427{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400428 struct ti_thermal_data *data;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300429
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400430 data = ti_bandgap_get_sensor_data(bgp, id);
Eduardo Valentin26d9cc62013-07-04 16:43:54 -0400431
Markus Elfring9ca9be22015-02-03 11:15:14 +0100432 if (data)
Eduardo Valentin26d9cc62013-07-04 16:43:54 -0400433 cpufreq_cooling_unregister(data->cool_dev);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300434
435 return 0;
436}