blob: 8e67ebf98404bcc69dad79f146133ba17d52d17e [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>
31#include <linux/cpufreq.h>
Eduardo Valentin5035d482012-11-13 14:10:02 -040032#include <linux/cpumask.h>
Eduardo Valentin445eaf82012-07-12 19:02:30 +030033#include <linux/cpu_cooling.h>
34
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;
47};
48
Eduardo Valentin03e859d2013-03-19 10:54:21 -040049static void ti_thermal_work(struct work_struct *work)
Eduardo Valentin445eaf82012-07-12 19:02:30 +030050{
Eduardo Valentin03e859d2013-03-19 10:54:21 -040051 struct ti_thermal_data *data = container_of(work,
52 struct ti_thermal_data, thermal_wq);
Eduardo Valentin445eaf82012-07-12 19:02:30 +030053
Eduardo Valentin03e859d2013-03-19 10:54:21 -040054 thermal_zone_device_update(data->ti_thermal);
Eduardo Valentin445eaf82012-07-12 19:02:30 +030055
Eduardo Valentin03e859d2013-03-19 10:54:21 -040056 dev_dbg(&data->ti_thermal->device, "updated thermal zone %s\n",
57 data->ti_thermal->type);
Eduardo Valentin445eaf82012-07-12 19:02:30 +030058}
59
60/**
Eduardo Valentin03e859d2013-03-19 10:54:21 -040061 * ti_thermal_hotspot_temperature - returns sensor extrapolated temperature
Eduardo Valentin445eaf82012-07-12 19:02:30 +030062 * @t: omap sensor temperature
63 * @s: omap sensor slope value
64 * @c: omap sensor const value
65 */
Eduardo Valentin03e859d2013-03-19 10:54:21 -040066static inline int ti_thermal_hotspot_temperature(int t, int s, int c)
Eduardo Valentin445eaf82012-07-12 19:02:30 +030067{
68 int delta = t * s / 1000 + c;
69
70 if (delta < 0)
71 delta = 0;
72
73 return t + delta;
74}
75
76/* thermal zone ops */
77/* Get temperature callback function for thermal zone*/
Eduardo Valentin03e859d2013-03-19 10:54:21 -040078static inline int ti_thermal_get_temp(struct thermal_zone_device *thermal,
79 unsigned 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 Valentin03e859d2013-03-19 10:54:21 -040082 struct ti_thermal_data *data = thermal->devdata;
83 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 Valentin359836e2013-05-29 15:07:41 +0000104 if (!IS_ERR_OR_NULL(pcb_tz)) {
105 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");
113 }
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300114 }
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400115 *temp = ti_thermal_hotspot_temperature(tmp, slope, constant);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300116
117 return ret;
118}
119
120/* Bind callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400121static int ti_thermal_bind(struct thermal_zone_device *thermal,
122 struct thermal_cooling_device *cdev)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300123{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400124 struct ti_thermal_data *data = thermal->devdata;
Eduardo Valentin5035d482012-11-13 14:10:02 -0400125 int id;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300126
127 if (IS_ERR_OR_NULL(data))
128 return -ENODEV;
129
130 /* check if this is the cooling device we registered */
131 if (data->cool_dev != cdev)
132 return 0;
133
134 id = data->sensor_id;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300135
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300136 /* Simple thing, two trips, one passive another critical */
Eduardo Valentina7a3b8c2012-08-23 08:37:59 +0800137 return thermal_zone_bind_cooling_device(thermal, 0, cdev,
Eduardo Valentin67b4c472013-04-08 08:19:08 -0400138 /* bind with min and max states defined by cpu_cooling */
Eduardo Valentina7a3b8c2012-08-23 08:37:59 +0800139 THERMAL_NO_LIMIT,
140 THERMAL_NO_LIMIT);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300141}
142
143/* Unbind callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400144static int ti_thermal_unbind(struct thermal_zone_device *thermal,
145 struct thermal_cooling_device *cdev)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300146{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400147 struct ti_thermal_data *data = thermal->devdata;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300148
149 if (IS_ERR_OR_NULL(data))
150 return -ENODEV;
151
152 /* check if this is the cooling device we registered */
153 if (data->cool_dev != cdev)
154 return 0;
155
156 /* Simple thing, two trips, one passive another critical */
157 return thermal_zone_unbind_cooling_device(thermal, 0, cdev);
158}
159
160/* Get mode callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400161static int ti_thermal_get_mode(struct thermal_zone_device *thermal,
162 enum thermal_device_mode *mode)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300163{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400164 struct ti_thermal_data *data = thermal->devdata;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300165
166 if (data)
167 *mode = data->mode;
168
169 return 0;
170}
171
172/* Set mode callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400173static int ti_thermal_set_mode(struct thermal_zone_device *thermal,
174 enum thermal_device_mode mode)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300175{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400176 struct ti_thermal_data *data = thermal->devdata;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300177
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400178 if (!data->ti_thermal) {
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300179 dev_notice(&thermal->device, "thermal zone not registered\n");
180 return 0;
181 }
182
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400183 mutex_lock(&data->ti_thermal->lock);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300184
185 if (mode == THERMAL_DEVICE_ENABLED)
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400186 data->ti_thermal->polling_delay = FAST_TEMP_MONITORING_RATE;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300187 else
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400188 data->ti_thermal->polling_delay = 0;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300189
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400190 mutex_unlock(&data->ti_thermal->lock);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300191
192 data->mode = mode;
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400193 thermal_zone_device_update(data->ti_thermal);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300194 dev_dbg(&thermal->device, "thermal polling set for duration=%d msec\n",
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400195 data->ti_thermal->polling_delay);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300196
197 return 0;
198}
199
200/* Get trip type callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400201static int ti_thermal_get_trip_type(struct thermal_zone_device *thermal,
202 int trip, enum thermal_trip_type *type)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300203{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400204 if (!ti_thermal_is_valid_trip(trip))
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300205 return -EINVAL;
206
207 if (trip + 1 == OMAP_TRIP_NUMBER)
208 *type = THERMAL_TRIP_CRITICAL;
209 else
210 *type = THERMAL_TRIP_PASSIVE;
211
212 return 0;
213}
214
215/* Get trip temperature callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400216static int ti_thermal_get_trip_temp(struct thermal_zone_device *thermal,
217 int trip, unsigned long *temp)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300218{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400219 if (!ti_thermal_is_valid_trip(trip))
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300220 return -EINVAL;
221
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400222 *temp = ti_thermal_get_trip_value(trip);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300223
224 return 0;
225}
226
J Keerthy03b7f672013-04-01 12:04:46 -0400227/* Get the temperature trend callback functions for thermal zone */
228static int ti_thermal_get_trend(struct thermal_zone_device *thermal,
229 int trip, enum thermal_trend *trend)
230{
231 struct ti_thermal_data *data = thermal->devdata;
232 struct ti_bandgap *bgp;
233 int id, tr, ret = 0;
234
235 bgp = data->bgp;
236 id = data->sensor_id;
237
238 ret = ti_bandgap_get_trend(bgp, id, &tr);
239 if (ret)
240 return ret;
241
242 if (tr > 0)
243 *trend = THERMAL_TREND_RAISING;
244 else if (tr < 0)
245 *trend = THERMAL_TREND_DROPPING;
246 else
247 *trend = THERMAL_TREND_STABLE;
248
249 return 0;
250}
251
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300252/* Get critical temperature callback functions for thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400253static int ti_thermal_get_crit_temp(struct thermal_zone_device *thermal,
254 unsigned long *temp)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300255{
256 /* shutdown zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400257 return ti_thermal_get_trip_temp(thermal, OMAP_TRIP_NUMBER - 1, temp);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300258}
259
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400260static struct thermal_zone_device_ops ti_thermal_ops = {
261 .get_temp = ti_thermal_get_temp,
J Keerthy03b7f672013-04-01 12:04:46 -0400262 .get_trend = ti_thermal_get_trend,
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400263 .bind = ti_thermal_bind,
264 .unbind = ti_thermal_unbind,
265 .get_mode = ti_thermal_get_mode,
266 .set_mode = ti_thermal_set_mode,
267 .get_trip_type = ti_thermal_get_trip_type,
268 .get_trip_temp = ti_thermal_get_trip_temp,
269 .get_crit_temp = ti_thermal_get_crit_temp,
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300270};
271
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400272static struct ti_thermal_data
273*ti_thermal_build_data(struct ti_bandgap *bgp, int id)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300274{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400275 struct ti_thermal_data *data;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300276
Eduardo Valentind7f080e2013-03-19 10:54:18 -0400277 data = devm_kzalloc(bgp->dev, sizeof(*data), GFP_KERNEL);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300278 if (!data) {
Eduardo Valentind7f080e2013-03-19 10:54:18 -0400279 dev_err(bgp->dev, "kzalloc fail\n");
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300280 return NULL;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300281 }
282 data->sensor_id = id;
Eduardo Valentind7f080e2013-03-19 10:54:18 -0400283 data->bgp = bgp;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300284 data->mode = THERMAL_DEVICE_ENABLED;
Eduardo Valentin359836e2013-05-29 15:07:41 +0000285 data->pcb_tz = thermal_zone_get_zone_by_name("pcb");
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400286 INIT_WORK(&data->thermal_wq, ti_thermal_work);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300287
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300288 return data;
289}
290
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400291int ti_thermal_expose_sensor(struct ti_bandgap *bgp, int id,
292 char *domain)
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300293{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400294 struct ti_thermal_data *data;
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300295
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400296 data = ti_bandgap_get_sensor_data(bgp, id);
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300297
Eduardo Valentin35b052a2013-03-15 08:59:54 -0400298 if (IS_ERR_OR_NULL(data))
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400299 data = ti_thermal_build_data(bgp, id);
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300300
301 if (!data)
302 return -EINVAL;
303
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300304 /* Create thermal zone */
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400305 data->ti_thermal = thermal_zone_device_register(domain,
306 OMAP_TRIP_NUMBER, 0, data, &ti_thermal_ops,
Durgadoss R50125a92012-09-18 11:04:56 +0530307 NULL, FAST_TEMP_MONITORING_RATE,
Eduardo Valentin765a1932012-09-11 19:06:54 +0300308 FAST_TEMP_MONITORING_RATE);
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400309 if (IS_ERR_OR_NULL(data->ti_thermal)) {
Eduardo Valentind7f080e2013-03-19 10:54:18 -0400310 dev_err(bgp->dev, "thermal zone device is NULL\n");
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400311 return PTR_ERR(data->ti_thermal);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300312 }
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400313 data->ti_thermal->polling_delay = FAST_TEMP_MONITORING_RATE;
314 ti_bandgap_set_sensor_data(bgp, id, data);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300315
316 return 0;
317}
318
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400319int ti_thermal_remove_sensor(struct ti_bandgap *bgp, int id)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300320{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400321 struct ti_thermal_data *data;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300322
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400323 data = ti_bandgap_get_sensor_data(bgp, id);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300324
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400325 thermal_zone_device_unregister(data->ti_thermal);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300326
327 return 0;
328}
329
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400330int ti_thermal_report_sensor_temperature(struct ti_bandgap *bgp, int id)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300331{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400332 struct ti_thermal_data *data;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300333
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400334 data = ti_bandgap_get_sensor_data(bgp, id);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300335
336 schedule_work(&data->thermal_wq);
337
338 return 0;
339}
340
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400341int ti_thermal_register_cpu_cooling(struct ti_bandgap *bgp, int id)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300342{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400343 struct ti_thermal_data *data;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300344
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400345 data = ti_bandgap_get_sensor_data(bgp, id);
Eduardo Valentin35b052a2013-03-15 08:59:54 -0400346 if (IS_ERR_OR_NULL(data))
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400347 data = ti_thermal_build_data(bgp, id);
Eduardo Valentin04a4d102012-09-11 19:06:55 +0300348
349 if (!data)
350 return -EINVAL;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300351
Eduardo Valentinf1553332013-04-08 08:19:13 -0400352 if (!cpufreq_get_current_driver()) {
353 dev_dbg(bgp->dev, "no cpufreq driver yet\n");
354 return -EPROBE_DEFER;
355 }
356
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300357 /* Register cooling device */
Eduardo Valentin5035d482012-11-13 14:10:02 -0400358 data->cool_dev = cpufreq_cooling_register(cpu_present_mask);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300359 if (IS_ERR_OR_NULL(data->cool_dev)) {
Eduardo Valentind7f080e2013-03-19 10:54:18 -0400360 dev_err(bgp->dev,
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300361 "Failed to register cpufreq cooling device\n");
362 return PTR_ERR(data->cool_dev);
363 }
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400364 ti_bandgap_set_sensor_data(bgp, id, data);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300365
366 return 0;
367}
368
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400369int ti_thermal_unregister_cpu_cooling(struct ti_bandgap *bgp, int id)
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300370{
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400371 struct ti_thermal_data *data;
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300372
Eduardo Valentin03e859d2013-03-19 10:54:21 -0400373 data = ti_bandgap_get_sensor_data(bgp, id);
Eduardo Valentin445eaf82012-07-12 19:02:30 +0300374 cpufreq_cooling_unregister(data->cool_dev);
375
376 return 0;
377}