Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
omap-thermal-common.c
Go to the documentation of this file.
1 /*
2  * OMAP thermal driver interface
3  *
4  * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
5  * Contact:
6  * Eduardo Valentin <[email protected]>
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>
32 #include <linux/cpu_cooling.h>
33 
34 #include "omap-thermal.h"
35 #include "omap-bandgap.h"
36 
37 /* common data structures */
44  int sensor_id;
45 };
46 
47 static void omap_thermal_work(struct work_struct *work)
48 {
49  struct omap_thermal_data *data = container_of(work,
51 
53 
54  dev_dbg(&data->omap_thermal->device, "updated thermal zone %s\n",
55  data->omap_thermal->type);
56 }
57 
64 static inline int omap_thermal_hotspot_temperature(int t, int s, int c)
65 {
66  int delta = t * s / 1000 + c;
67 
68  if (delta < 0)
69  delta = 0;
70 
71  return t + delta;
72 }
73 
74 /* thermal zone ops */
75 /* Get temperature callback function for thermal zone*/
76 static inline int omap_thermal_get_temp(struct thermal_zone_device *thermal,
77  unsigned long *temp)
78 {
79  struct omap_thermal_data *data = thermal->devdata;
80  struct omap_bandgap *bg_ptr;
81  struct omap_temp_sensor *s;
82  int ret, tmp, pcb_temp, slope, constant;
83 
84  if (!data)
85  return 0;
86 
87  bg_ptr = data->bg_ptr;
88  s = &bg_ptr->conf->sensors[data->sensor_id];
89 
90  ret = omap_bandgap_read_temperature(bg_ptr, data->sensor_id, &tmp);
91  if (ret)
92  return ret;
93 
94  pcb_temp = 0;
95  /* TODO: Introduce pcb temperature lookup */
96  /* In case pcb zone is available, use the extrapolation rule with it */
97  if (pcb_temp) {
98  tmp -= pcb_temp;
99  slope = s->slope_pcb;
100  constant = s->constant_pcb;
101  } else {
102  slope = s->slope;
103  constant = s->constant;
104  }
105  *temp = omap_thermal_hotspot_temperature(tmp, slope, constant);
106 
107  return ret;
108 }
109 
110 /* Bind callback functions for thermal zone */
111 static int omap_thermal_bind(struct thermal_zone_device *thermal,
113 {
114  struct omap_thermal_data *data = thermal->devdata;
115  int max, id;
116 
117  if (IS_ERR_OR_NULL(data))
118  return -ENODEV;
119 
120  /* check if this is the cooling device we registered */
121  if (data->cool_dev != cdev)
122  return 0;
123 
124  id = data->sensor_id;
125  max = data->bg_ptr->conf->sensors[id].cooling_data.freq_clip_count;
126 
127  /* TODO: bind with min and max states */
128  /* Simple thing, two trips, one passive another critical */
129  return thermal_zone_bind_cooling_device(thermal, 0, cdev,
132 }
133 
134 /* Unbind callback functions for thermal zone */
135 static int omap_thermal_unbind(struct thermal_zone_device *thermal,
136  struct thermal_cooling_device *cdev)
137 {
138  struct omap_thermal_data *data = thermal->devdata;
139 
140  if (IS_ERR_OR_NULL(data))
141  return -ENODEV;
142 
143  /* check if this is the cooling device we registered */
144  if (data->cool_dev != cdev)
145  return 0;
146 
147  /* Simple thing, two trips, one passive another critical */
148  return thermal_zone_unbind_cooling_device(thermal, 0, cdev);
149 }
150 
151 /* Get mode callback functions for thermal zone */
152 static int omap_thermal_get_mode(struct thermal_zone_device *thermal,
154 {
155  struct omap_thermal_data *data = thermal->devdata;
156 
157  if (data)
158  *mode = data->mode;
159 
160  return 0;
161 }
162 
163 /* Set mode callback functions for thermal zone */
164 static int omap_thermal_set_mode(struct thermal_zone_device *thermal,
165  enum thermal_device_mode mode)
166 {
167  struct omap_thermal_data *data = thermal->devdata;
168 
169  if (!data->omap_thermal) {
170  dev_notice(&thermal->device, "thermal zone not registered\n");
171  return 0;
172  }
173 
174  mutex_lock(&data->omap_thermal->lock);
175 
176  if (mode == THERMAL_DEVICE_ENABLED)
177  data->omap_thermal->polling_delay = FAST_TEMP_MONITORING_RATE;
178  else
179  data->omap_thermal->polling_delay = 0;
180 
181  mutex_unlock(&data->omap_thermal->lock);
182 
183  data->mode = mode;
185  dev_dbg(&thermal->device, "thermal polling set for duration=%d msec\n",
186  data->omap_thermal->polling_delay);
187 
188  return 0;
189 }
190 
191 /* Get trip type callback functions for thermal zone */
192 static int omap_thermal_get_trip_type(struct thermal_zone_device *thermal,
193  int trip, enum thermal_trip_type *type)
194 {
195  if (!omap_thermal_is_valid_trip(trip))
196  return -EINVAL;
197 
198  if (trip + 1 == OMAP_TRIP_NUMBER)
199  *type = THERMAL_TRIP_CRITICAL;
200  else
201  *type = THERMAL_TRIP_PASSIVE;
202 
203  return 0;
204 }
205 
206 /* Get trip temperature callback functions for thermal zone */
207 static int omap_thermal_get_trip_temp(struct thermal_zone_device *thermal,
208  int trip, unsigned long *temp)
209 {
210  if (!omap_thermal_is_valid_trip(trip))
211  return -EINVAL;
212 
213  *temp = omap_thermal_get_trip_value(trip);
214 
215  return 0;
216 }
217 
218 /* Get critical temperature callback functions for thermal zone */
219 static int omap_thermal_get_crit_temp(struct thermal_zone_device *thermal,
220  unsigned long *temp)
221 {
222  /* shutdown zone */
223  return omap_thermal_get_trip_temp(thermal, OMAP_TRIP_NUMBER - 1, temp);
224 }
225 
226 static struct thermal_zone_device_ops omap_thermal_ops = {
227  .get_temp = omap_thermal_get_temp,
228  /* TODO: add .get_trend */
229  .bind = omap_thermal_bind,
230  .unbind = omap_thermal_unbind,
231  .get_mode = omap_thermal_get_mode,
232  .set_mode = omap_thermal_set_mode,
233  .get_trip_type = omap_thermal_get_trip_type,
234  .get_trip_temp = omap_thermal_get_trip_temp,
235  .get_crit_temp = omap_thermal_get_crit_temp,
236 };
237 
238 static struct omap_thermal_data
239 *omap_thermal_build_data(struct omap_bandgap *bg_ptr, int id)
240 {
241  struct omap_thermal_data *data;
242 
243  data = devm_kzalloc(bg_ptr->dev, sizeof(*data), GFP_KERNEL);
244  if (!data) {
245  dev_err(bg_ptr->dev, "kzalloc fail\n");
246  return NULL;
247  }
248  data->sensor_id = id;
249  data->bg_ptr = bg_ptr;
251  INIT_WORK(&data->thermal_wq, omap_thermal_work);
252 
253  return data;
254 }
255 
256 int omap_thermal_expose_sensor(struct omap_bandgap *bg_ptr, int id,
257  char *domain)
258 {
259  struct omap_thermal_pdata pdata;
260 
261  data = omap_bandgap_get_sensor_data(bg_ptr, id);
262 
263  if (!data)
264  data = omap_thermal_build_pdata(bg_ptr, id);
265 
266  if (!data)
267  return -EINVAL;
268 
269  /* TODO: remove TC1 TC2 */
270  /* Create thermal zone */
271  data->omap_thermal = thermal_zone_device_register(domain,
272  OMAP_TRIP_NUMBER, 0, data, &omap_thermal_ops,
275  if (IS_ERR_OR_NULL(data->omap_thermal)) {
276  dev_err(bg_ptr->dev, "thermal zone device is NULL\n");
277  return PTR_ERR(data->omap_thermal);
278  }
279  data->omap_thermal->polling_delay = FAST_TEMP_MONITORING_RATE;
280  omap_bandgap_set_sensor_data(bg_ptr, id, data);
281 
282  return 0;
283 }
284 
285 int omap_thermal_remove_sensor(struct omap_bandgap *bg_ptr, int id)
286 {
287  struct omap_thermal_data *data;
288 
289  data = omap_bandgap_get_sensor_data(bg_ptr, id);
290 
292 
293  return 0;
294 }
295 
297 {
298  struct omap_thermal_data *data;
299 
300  data = omap_bandgap_get_sensor_data(bg_ptr, id);
301 
302  schedule_work(&data->thermal_wq);
303 
304  return 0;
305 }
306 
307 static int omap_thermal_build_cpufreq_clip(struct omap_bandgap *bg_ptr,
308  struct freq_clip_table **tab_ptr,
309  int *tab_size)
310 {
312  struct freq_clip_table *tab;
313  int i, count = 0;
314 
315  freq_table = cpufreq_frequency_get_table(0);
316  if (IS_ERR_OR_NULL(freq_table)) {
317  dev_err(bg_ptr->dev,
318  "%s: failed to get cpufreq table (%p)\n",
319  __func__, freq_table);
320  return -EINVAL;
321  }
322 
323  for (i = 0; freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
324  unsigned int freq = freq_table[i].frequency;
325  if (freq == CPUFREQ_ENTRY_INVALID)
326  continue;
327  count++;
328  }
329 
330  tab = devm_kzalloc(bg_ptr->dev, sizeof(*tab) * count, GFP_KERNEL);
331  if (!tab) {
332  dev_err(bg_ptr->dev,
333  "%s: no memory available\n", __func__);
334  return -ENOMEM;
335  }
336 
337  for (i = 0; freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
338  unsigned int freq = freq_table[i].frequency;
339 
340  if (freq == CPUFREQ_ENTRY_INVALID)
341  continue;
342 
343  tab[count - i - 1].freq_clip_max = freq;
344  tab[count - i - 1].temp_level = OMAP_TRIP_HOT;
345  tab[count - i - 1].mask_val = cpumask_of(0);
346  }
347 
348  *tab_ptr = tab;
349  *tab_size = count;
350 
351  return 0;
352 }
353 
355 {
356  struct omap_thermal_data *data;
357  struct freq_clip_table *tab_ptr;
358  int tab_size, ret;
359 
360  data = omap_bandgap_get_sensor_data(bg_ptr, id);
361  if (!data)
362  data = omap_thermal_build_pdata(bg_ptr, id);
363 
364  if (!data)
365  return -EINVAL;
366 
367  ret = omap_thermal_build_cpufreq_clip(bg_ptr, &tab_ptr, &tab_size);
368  if (ret < 0) {
369  dev_err(bg_ptr->dev,
370  "%s: failed to build cpufreq clip table\n", __func__);
371  return ret;
372  }
373 
374  /* Register cooling device */
375  data->cool_dev = cpufreq_cooling_register(tab_ptr, tab_size);
376  if (IS_ERR_OR_NULL(data->cool_dev)) {
377  dev_err(bg_ptr->dev,
378  "Failed to register cpufreq cooling device\n");
379  return PTR_ERR(data->cool_dev);
380  }
381  bg_ptr->conf->sensors[id].cooling_data.freq_clip_count = tab_size;
382  omap_bandgap_set_sensor_data(bg_ptr, id, data);
383 
384  return 0;
385 }
386 
388 {
389  struct omap_thermal_data *data;
390 
391  data = omap_bandgap_get_sensor_data(bg_ptr, id);
393 
394  return 0;
395 }