Input: cm109 - do not stomp on control URB
[linux-block.git] / drivers / thermal / of-thermal.c
CommitLineData
7e3c0381 1// SPDX-License-Identifier: GPL-2.0
4e5e4705
EV
2/*
3 * of-thermal.c - Generic Thermal Management device tree support.
4 *
5 * Copyright (C) 2013 Texas Instruments
6 * Copyright (C) 2013 Eduardo Valentin <eduardo.valentin@ti.com>
4e5e4705 7 */
7ffd87c6
YL
8
9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
4e5e4705
EV
11#include <linux/thermal.h>
12#include <linux/slab.h>
13#include <linux/types.h>
14#include <linux/of_device.h>
15#include <linux/of_platform.h>
16#include <linux/err.h>
17#include <linux/export.h>
18#include <linux/string.h>
19
20#include "thermal_core.h"
21
22/*** Private data structures to represent thermal device tree data ***/
23
4e5e4705 24/**
a92bab89 25 * struct __thermal_cooling_bind_param - a cooling device for a trip point
4e5e4705 26 * @cooling_device: a pointer to identify the referred cooling device
4e5e4705
EV
27 * @min: minimum cooling state used at this trip point
28 * @max: maximum cooling state used at this trip point
29 */
30
a92bab89 31struct __thermal_cooling_bind_param {
4e5e4705 32 struct device_node *cooling_device;
4e5e4705
EV
33 unsigned long min;
34 unsigned long max;
35};
36
a92bab89
VK
37/**
38 * struct __thermal_bind_param - a match between trip and cooling device
39 * @tcbp: a pointer to an array of cooling devices
40 * @count: number of elements in array
41 * @trip_id: the trip point index
42 * @usage: the percentage (from 0 to 100) of cooling contribution
43 */
44
45struct __thermal_bind_params {
46 struct __thermal_cooling_bind_param *tcbp;
47 unsigned int count;
48 unsigned int trip_id;
49 unsigned int usage;
50};
51
4e5e4705
EV
52/**
53 * struct __thermal_zone - internal representation of a thermal zone
54 * @mode: current thermal zone device mode (enabled/disabled)
55 * @passive_delay: polling interval while passive cooling is activated
56 * @polling_delay: zone polling interval
a46dbae8
EV
57 * @slope: slope of the temperature adjustment curve
58 * @offset: offset of the temperature adjustment curve
4e5e4705
EV
59 * @ntrips: number of trip points
60 * @trips: an array of trip points (0..ntrips - 1)
61 * @num_tbps: number of thermal bind params
62 * @tbps: an array of thermal bind params (0..num_tbps - 1)
63 * @sensor_data: sensor private data used while reading temperature and trend
2251aef6 64 * @ops: set of callbacks to handle the thermal zone based on DT
4e5e4705
EV
65 */
66
67struct __thermal_zone {
68 enum thermal_device_mode mode;
69 int passive_delay;
70 int polling_delay;
a46dbae8
EV
71 int slope;
72 int offset;
4e5e4705
EV
73
74 /* trip data */
75 int ntrips;
ad9914ac 76 struct thermal_trip *trips;
4e5e4705
EV
77
78 /* cooling binding data */
79 int num_tbps;
80 struct __thermal_bind_params *tbps;
81
82 /* sensor interface */
83 void *sensor_data;
2251aef6 84 const struct thermal_zone_of_device_ops *ops;
4e5e4705
EV
85};
86
87/*** DT thermal zone device callbacks ***/
88
89static int of_thermal_get_temp(struct thermal_zone_device *tz,
17e8351a 90 int *temp)
4e5e4705
EV
91{
92 struct __thermal_zone *data = tz->devdata;
93
2251aef6 94 if (!data->ops->get_temp)
4e5e4705
EV
95 return -EINVAL;
96
2251aef6 97 return data->ops->get_temp(data->sensor_data, temp);
4e5e4705
EV
98}
99
826386e7
SH
100static int of_thermal_set_trips(struct thermal_zone_device *tz,
101 int low, int high)
102{
103 struct __thermal_zone *data = tz->devdata;
104
105 if (!data->ops || !data->ops->set_trips)
106 return -EINVAL;
107
108 return data->ops->set_trips(data->sensor_data, low, high);
109}
110
08dab66e
LM
111/**
112 * of_thermal_get_ntrips - function to export number of available trip
113 * points.
114 * @tz: pointer to a thermal zone
115 *
116 * This function is a globally visible wrapper to get number of trip points
117 * stored in the local struct __thermal_zone
118 *
119 * Return: number of available trip points, -ENODEV when data not available
120 */
121int of_thermal_get_ntrips(struct thermal_zone_device *tz)
122{
123 struct __thermal_zone *data = tz->devdata;
124
125 if (!data || IS_ERR(data))
126 return -ENODEV;
127
128 return data->ntrips;
129}
130EXPORT_SYMBOL_GPL(of_thermal_get_ntrips);
131
a9bf2cc4
LM
132/**
133 * of_thermal_is_trip_valid - function to check if trip point is valid
134 *
135 * @tz: pointer to a thermal zone
136 * @trip: trip point to evaluate
137 *
138 * This function is responsible for checking if passed trip point is valid
139 *
140 * Return: true if trip point is valid, false otherwise
141 */
142bool of_thermal_is_trip_valid(struct thermal_zone_device *tz, int trip)
143{
144 struct __thermal_zone *data = tz->devdata;
145
146 if (!data || trip >= data->ntrips || trip < 0)
147 return false;
148
149 return true;
150}
151EXPORT_SYMBOL_GPL(of_thermal_is_trip_valid);
152
ce8be778
LM
153/**
154 * of_thermal_get_trip_points - function to get access to a globally exported
155 * trip points
156 *
157 * @tz: pointer to a thermal zone
158 *
159 * This function provides a pointer to trip points table
160 *
161 * Return: pointer to trip points table, NULL otherwise
162 */
ebc3193a 163const struct thermal_trip *
ce8be778
LM
164of_thermal_get_trip_points(struct thermal_zone_device *tz)
165{
166 struct __thermal_zone *data = tz->devdata;
167
168 if (!data)
169 return NULL;
170
171 return data->trips;
172}
173EXPORT_SYMBOL_GPL(of_thermal_get_trip_points);
174
184a4bf6
LM
175/**
176 * of_thermal_set_emul_temp - function to set emulated temperature
177 *
178 * @tz: pointer to a thermal zone
179 * @temp: temperature to set
180 *
181 * This function gives the ability to set emulated value of temperature,
182 * which is handy for debugging
183 *
184 * Return: zero on success, error code otherwise
185 */
186static int of_thermal_set_emul_temp(struct thermal_zone_device *tz,
17e8351a 187 int temp)
184a4bf6
LM
188{
189 struct __thermal_zone *data = tz->devdata;
190
184a4bf6
LM
191 return data->ops->set_emul_temp(data->sensor_data, temp);
192}
193
4e5e4705
EV
194static int of_thermal_get_trend(struct thermal_zone_device *tz, int trip,
195 enum thermal_trend *trend)
196{
197 struct __thermal_zone *data = tz->devdata;
4e5e4705 198
2251aef6 199 if (!data->ops->get_trend)
4e5e4705
EV
200 return -EINVAL;
201
e78eaf45 202 return data->ops->get_trend(data->sensor_data, trip, trend);
4e5e4705
EV
203}
204
205static int of_thermal_bind(struct thermal_zone_device *thermal,
206 struct thermal_cooling_device *cdev)
207{
208 struct __thermal_zone *data = thermal->devdata;
a92bab89
VK
209 struct __thermal_bind_params *tbp;
210 struct __thermal_cooling_bind_param *tcbp;
211 int i, j;
4e5e4705
EV
212
213 if (!data || IS_ERR(data))
214 return -ENODEV;
215
216 /* find where to bind */
217 for (i = 0; i < data->num_tbps; i++) {
a92bab89 218 tbp = data->tbps + i;
4e5e4705 219
a92bab89
VK
220 for (j = 0; j < tbp->count; j++) {
221 tcbp = tbp->tcbp + j;
4e5e4705 222
a92bab89
VK
223 if (tcbp->cooling_device == cdev->np) {
224 int ret;
225
226 ret = thermal_zone_bind_cooling_device(thermal,
4e5e4705 227 tbp->trip_id, cdev,
a92bab89
VK
228 tcbp->max,
229 tcbp->min,
6cd9e9f6 230 tbp->usage);
a92bab89
VK
231 if (ret)
232 return ret;
233 }
4e5e4705
EV
234 }
235 }
236
237 return 0;
238}
239
240static int of_thermal_unbind(struct thermal_zone_device *thermal,
241 struct thermal_cooling_device *cdev)
242{
243 struct __thermal_zone *data = thermal->devdata;
a92bab89
VK
244 struct __thermal_bind_params *tbp;
245 struct __thermal_cooling_bind_param *tcbp;
246 int i, j;
4e5e4705
EV
247
248 if (!data || IS_ERR(data))
249 return -ENODEV;
250
251 /* find where to unbind */
252 for (i = 0; i < data->num_tbps; i++) {
a92bab89
VK
253 tbp = data->tbps + i;
254
255 for (j = 0; j < tbp->count; j++) {
256 tcbp = tbp->tcbp + j;
4e5e4705 257
a92bab89
VK
258 if (tcbp->cooling_device == cdev->np) {
259 int ret;
4e5e4705 260
a92bab89
VK
261 ret = thermal_zone_unbind_cooling_device(thermal,
262 tbp->trip_id, cdev);
263 if (ret)
264 return ret;
265 }
4e5e4705
EV
266 }
267 }
268
269 return 0;
270}
271
272static int of_thermal_get_mode(struct thermal_zone_device *tz,
273 enum thermal_device_mode *mode)
274{
275 struct __thermal_zone *data = tz->devdata;
276
277 *mode = data->mode;
278
279 return 0;
280}
281
282static int of_thermal_set_mode(struct thermal_zone_device *tz,
283 enum thermal_device_mode mode)
284{
285 struct __thermal_zone *data = tz->devdata;
286
287 mutex_lock(&tz->lock);
288
152395fd 289 if (mode == THERMAL_DEVICE_ENABLED) {
4e5e4705 290 tz->polling_delay = data->polling_delay;
152395fd
AH
291 tz->passive_delay = data->passive_delay;
292 } else {
4e5e4705 293 tz->polling_delay = 0;
152395fd
AH
294 tz->passive_delay = 0;
295 }
4e5e4705
EV
296
297 mutex_unlock(&tz->lock);
298
299 data->mode = mode;
0e70f466 300 thermal_zone_device_update(tz, THERMAL_EVENT_UNSPECIFIED);
4e5e4705
EV
301
302 return 0;
303}
304
305static int of_thermal_get_trip_type(struct thermal_zone_device *tz, int trip,
306 enum thermal_trip_type *type)
307{
308 struct __thermal_zone *data = tz->devdata;
309
310 if (trip >= data->ntrips || trip < 0)
311 return -EDOM;
312
313 *type = data->trips[trip].type;
314
315 return 0;
316}
317
318static int of_thermal_get_trip_temp(struct thermal_zone_device *tz, int trip,
17e8351a 319 int *temp)
4e5e4705
EV
320{
321 struct __thermal_zone *data = tz->devdata;
322
323 if (trip >= data->ntrips || trip < 0)
324 return -EDOM;
325
326 *temp = data->trips[trip].temperature;
327
328 return 0;
329}
330
331static int of_thermal_set_trip_temp(struct thermal_zone_device *tz, int trip,
17e8351a 332 int temp)
4e5e4705
EV
333{
334 struct __thermal_zone *data = tz->devdata;
335
336 if (trip >= data->ntrips || trip < 0)
337 return -EDOM;
338
c3509521
WN
339 if (data->ops->set_trip_temp) {
340 int ret;
341
342 ret = data->ops->set_trip_temp(data->sensor_data, trip, temp);
343 if (ret)
344 return ret;
345 }
346
4e5e4705
EV
347 /* thermal framework should take care of data->mask & (1 << trip) */
348 data->trips[trip].temperature = temp;
349
350 return 0;
351}
352
353static int of_thermal_get_trip_hyst(struct thermal_zone_device *tz, int trip,
17e8351a 354 int *hyst)
4e5e4705
EV
355{
356 struct __thermal_zone *data = tz->devdata;
357
358 if (trip >= data->ntrips || trip < 0)
359 return -EDOM;
360
361 *hyst = data->trips[trip].hysteresis;
362
363 return 0;
364}
365
366static int of_thermal_set_trip_hyst(struct thermal_zone_device *tz, int trip,
17e8351a 367 int hyst)
4e5e4705
EV
368{
369 struct __thermal_zone *data = tz->devdata;
370
371 if (trip >= data->ntrips || trip < 0)
372 return -EDOM;
373
374 /* thermal framework should take care of data->mask & (1 << trip) */
375 data->trips[trip].hysteresis = hyst;
376
377 return 0;
378}
379
380static int of_thermal_get_crit_temp(struct thermal_zone_device *tz,
17e8351a 381 int *temp)
4e5e4705
EV
382{
383 struct __thermal_zone *data = tz->devdata;
384 int i;
385
386 for (i = 0; i < data->ntrips; i++)
387 if (data->trips[i].type == THERMAL_TRIP_CRITICAL) {
388 *temp = data->trips[i].temperature;
389 return 0;
390 }
391
392 return -EINVAL;
393}
394
395static struct thermal_zone_device_ops of_thermal_ops = {
396 .get_mode = of_thermal_get_mode,
397 .set_mode = of_thermal_set_mode,
398
399 .get_trip_type = of_thermal_get_trip_type,
400 .get_trip_temp = of_thermal_get_trip_temp,
401 .set_trip_temp = of_thermal_set_trip_temp,
402 .get_trip_hyst = of_thermal_get_trip_hyst,
403 .set_trip_hyst = of_thermal_set_trip_hyst,
404 .get_crit_temp = of_thermal_get_crit_temp,
405
406 .bind = of_thermal_bind,
407 .unbind = of_thermal_unbind,
408};
409
410/*** sensor API ***/
411
412static struct thermal_zone_device *
413thermal_zone_of_add_sensor(struct device_node *zone,
414 struct device_node *sensor, void *data,
2251aef6 415 const struct thermal_zone_of_device_ops *ops)
4e5e4705
EV
416{
417 struct thermal_zone_device *tzd;
418 struct __thermal_zone *tz;
419
420 tzd = thermal_zone_get_zone_by_name(zone->name);
421 if (IS_ERR(tzd))
422 return ERR_PTR(-EPROBE_DEFER);
423
424 tz = tzd->devdata;
425
2251aef6
EV
426 if (!ops)
427 return ERR_PTR(-EINVAL);
428
4e5e4705 429 mutex_lock(&tzd->lock);
2251aef6 430 tz->ops = ops;
4e5e4705
EV
431 tz->sensor_data = data;
432
433 tzd->ops->get_temp = of_thermal_get_temp;
434 tzd->ops->get_trend = of_thermal_get_trend;
826386e7
SH
435
436 /*
437 * The thermal zone core will calculate the window if they have set the
438 * optional set_trips pointer.
439 */
440 if (ops->set_trips)
441 tzd->ops->set_trips = of_thermal_set_trips;
442
e2fa7488
K
443 if (ops->set_emul_temp)
444 tzd->ops->set_emul_temp = of_thermal_set_emul_temp;
445
4e5e4705
EV
446 mutex_unlock(&tzd->lock);
447
448 return tzd;
449}
450
34471abf
AH
451/**
452 * thermal_zone_of_get_sensor_id - get sensor ID from a DT thermal zone
453 * @tz_np: a valid thermal zone device node.
454 * @sensor_np: a sensor node of a valid sensor device.
455 * @id: the sensor ID returned if success.
456 *
457 * This function will get sensor ID from a given thermal zone node and
458 * the sensor node must match the temperature provider @sensor_np.
459 *
460 * Return: 0 on success, proper error code otherwise.
461 */
462
463int thermal_zone_of_get_sensor_id(struct device_node *tz_np,
464 struct device_node *sensor_np,
465 u32 *id)
466{
467 struct of_phandle_args sensor_specs;
468 int ret;
469
470 ret = of_parse_phandle_with_args(tz_np,
471 "thermal-sensors",
472 "#thermal-sensor-cells",
473 0,
474 &sensor_specs);
475 if (ret)
476 return ret;
477
478 if (sensor_specs.np != sensor_np) {
479 of_node_put(sensor_specs.np);
480 return -ENODEV;
481 }
482
483 if (sensor_specs.args_count > 1)
484 pr_warn("%pOFn: too many cells in sensor specifier %d\n",
485 sensor_specs.np, sensor_specs.args_count);
486
487 *id = sensor_specs.args_count ? sensor_specs.args[0] : 0;
488
489 of_node_put(sensor_specs.np);
490
491 return 0;
492}
493EXPORT_SYMBOL_GPL(thermal_zone_of_get_sensor_id);
494
4e5e4705
EV
495/**
496 * thermal_zone_of_sensor_register - registers a sensor to a DT thermal zone
497 * @dev: a valid struct device pointer of a sensor device. Must contain
498 * a valid .of_node, for the sensor node.
499 * @sensor_id: a sensor identifier, in case the sensor IP has more
500 * than one sensors
501 * @data: a private pointer (owned by the caller) that will be passed
502 * back, when a temperature reading is needed.
2251aef6 503 * @ops: struct thermal_zone_of_device_ops *. Must contain at least .get_temp.
4e5e4705
EV
504 *
505 * This function will search the list of thermal zones described in device
506 * tree and look for the zone that refer to the sensor device pointed by
507 * @dev->of_node as temperature providers. For the zone pointing to the
508 * sensor node, the sensor will be added to the DT thermal zone device.
509 *
510 * The thermal zone temperature is provided by the @get_temp function
511 * pointer. When called, it will have the private pointer @data back.
512 *
513 * The thermal zone temperature trend is provided by the @get_trend function
514 * pointer. When called, it will have the private pointer @data back.
515 *
516 * TODO:
517 * 01 - This function must enqueue the new sensor instead of using
518 * it as the only source of temperature values.
519 *
520 * 02 - There must be a way to match the sensor with all thermal zones
521 * that refer to it.
522 *
523 * Return: On success returns a valid struct thermal_zone_device,
524 * otherwise, it returns a corresponding ERR_PTR(). Caller must
525 * check the return value with help of IS_ERR() helper.
526 */
527struct thermal_zone_device *
2251aef6
EV
528thermal_zone_of_sensor_register(struct device *dev, int sensor_id, void *data,
529 const struct thermal_zone_of_device_ops *ops)
4e5e4705
EV
530{
531 struct device_node *np, *child, *sensor_np;
c2aad93c 532 struct thermal_zone_device *tzd = ERR_PTR(-ENODEV);
4e5e4705
EV
533
534 np = of_find_node_by_name(NULL, "thermal-zones");
535 if (!np)
536 return ERR_PTR(-ENODEV);
537
c2aad93c
VZ
538 if (!dev || !dev->of_node) {
539 of_node_put(np);
370f995d 540 return ERR_PTR(-ENODEV);
c2aad93c 541 }
4e5e4705 542
c2aad93c 543 sensor_np = of_node_get(dev->of_node);
4e5e4705 544
42bbe400 545 for_each_available_child_of_node(np, child) {
4e5e4705
EV
546 int ret, id;
547
548 /* For now, thermal framework supports only 1 sensor per zone */
34471abf 549 ret = thermal_zone_of_get_sensor_id(child, sensor_np, &id);
4e5e4705
EV
550 if (ret)
551 continue;
552
34471abf 553 if (id == sensor_id) {
c2aad93c 554 tzd = thermal_zone_of_add_sensor(child, sensor_np,
2251aef6 555 data, ops);
528012c1
LM
556 if (!IS_ERR(tzd))
557 tzd->ops->set_mode(tzd, THERMAL_DEVICE_ENABLED);
558
c2aad93c
VZ
559 of_node_put(child);
560 goto exit;
4e5e4705
EV
561 }
562 }
c2aad93c
VZ
563exit:
564 of_node_put(sensor_np);
4e5e4705
EV
565 of_node_put(np);
566
c2aad93c 567 return tzd;
4e5e4705
EV
568}
569EXPORT_SYMBOL_GPL(thermal_zone_of_sensor_register);
570
571/**
572 * thermal_zone_of_sensor_unregister - unregisters a sensor from a DT thermal zone
573 * @dev: a valid struct device pointer of a sensor device. Must contain
574 * a valid .of_node, for the sensor node.
575 * @tzd: a pointer to struct thermal_zone_device where the sensor is registered.
576 *
577 * This function removes the sensor callbacks and private data from the
578 * thermal zone device registered with thermal_zone_of_sensor_register()
579 * API. It will also silent the zone by remove the .get_temp() and .get_trend()
580 * thermal zone device callbacks.
581 *
582 * TODO: When the support to several sensors per zone is added, this
583 * function must search the sensor list based on @dev parameter.
584 *
585 */
586void thermal_zone_of_sensor_unregister(struct device *dev,
587 struct thermal_zone_device *tzd)
588{
589 struct __thermal_zone *tz;
590
591 if (!dev || !tzd || !tzd->devdata)
592 return;
593
594 tz = tzd->devdata;
595
596 /* no __thermal_zone, nothing to be done */
597 if (!tz)
598 return;
599
600 mutex_lock(&tzd->lock);
601 tzd->ops->get_temp = NULL;
602 tzd->ops->get_trend = NULL;
184a4bf6 603 tzd->ops->set_emul_temp = NULL;
4e5e4705 604
2251aef6 605 tz->ops = NULL;
4e5e4705
EV
606 tz->sensor_data = NULL;
607 mutex_unlock(&tzd->lock);
608}
609EXPORT_SYMBOL_GPL(thermal_zone_of_sensor_unregister);
610
e498b498
LD
611static void devm_thermal_zone_of_sensor_release(struct device *dev, void *res)
612{
613 thermal_zone_of_sensor_unregister(dev,
614 *(struct thermal_zone_device **)res);
615}
616
617static int devm_thermal_zone_of_sensor_match(struct device *dev, void *res,
618 void *data)
619{
620 struct thermal_zone_device **r = res;
621
622 if (WARN_ON(!r || !*r))
623 return 0;
624
625 return *r == data;
626}
627
628/**
629 * devm_thermal_zone_of_sensor_register - Resource managed version of
630 * thermal_zone_of_sensor_register()
631 * @dev: a valid struct device pointer of a sensor device. Must contain
632 * a valid .of_node, for the sensor node.
633 * @sensor_id: a sensor identifier, in case the sensor IP has more
634 * than one sensors
635 * @data: a private pointer (owned by the caller) that will be passed
636 * back, when a temperature reading is needed.
637 * @ops: struct thermal_zone_of_device_ops *. Must contain at least .get_temp.
638 *
639 * Refer thermal_zone_of_sensor_register() for more details.
640 *
641 * Return: On success returns a valid struct thermal_zone_device,
642 * otherwise, it returns a corresponding ERR_PTR(). Caller must
643 * check the return value with help of IS_ERR() helper.
7b5c4a0c 644 * Registered thermal_zone_device device will automatically be
e498b498
LD
645 * released when device is unbounded.
646 */
647struct thermal_zone_device *devm_thermal_zone_of_sensor_register(
648 struct device *dev, int sensor_id,
649 void *data, const struct thermal_zone_of_device_ops *ops)
650{
651 struct thermal_zone_device **ptr, *tzd;
652
653 ptr = devres_alloc(devm_thermal_zone_of_sensor_release, sizeof(*ptr),
654 GFP_KERNEL);
655 if (!ptr)
656 return ERR_PTR(-ENOMEM);
657
658 tzd = thermal_zone_of_sensor_register(dev, sensor_id, data, ops);
659 if (IS_ERR(tzd)) {
660 devres_free(ptr);
661 return tzd;
662 }
663
664 *ptr = tzd;
665 devres_add(dev, ptr);
666
667 return tzd;
668}
669EXPORT_SYMBOL_GPL(devm_thermal_zone_of_sensor_register);
670
671/**
672 * devm_thermal_zone_of_sensor_unregister - Resource managed version of
673 * thermal_zone_of_sensor_unregister().
674 * @dev: Device for which which resource was allocated.
675 * @tzd: a pointer to struct thermal_zone_device where the sensor is registered.
676 *
677 * This function removes the sensor callbacks and private data from the
678 * thermal zone device registered with devm_thermal_zone_of_sensor_register()
679 * API. It will also silent the zone by remove the .get_temp() and .get_trend()
680 * thermal zone device callbacks.
681 * Normally this function will not need to be called and the resource
682 * management code will ensure that the resource is freed.
683 */
684void devm_thermal_zone_of_sensor_unregister(struct device *dev,
685 struct thermal_zone_device *tzd)
686{
687 WARN_ON(devres_release(dev, devm_thermal_zone_of_sensor_release,
688 devm_thermal_zone_of_sensor_match, tzd));
689}
690EXPORT_SYMBOL_GPL(devm_thermal_zone_of_sensor_unregister);
691
4e5e4705
EV
692/*** functions parsing device tree nodes ***/
693
694/**
695 * thermal_of_populate_bind_params - parse and fill cooling map data
696 * @np: DT node containing a cooling-map node
697 * @__tbp: data structure to be filled with cooling map info
698 * @trips: array of thermal zone trip points
699 * @ntrips: number of trip points inside trips.
700 *
701 * This function parses a cooling-map type of node represented by
702 * @np parameter and fills the read data into @__tbp data structure.
703 * It needs the already parsed array of trip points of the thermal zone
704 * in consideration.
705 *
706 * Return: 0 on success, proper error code otherwise
707 */
708static int thermal_of_populate_bind_params(struct device_node *np,
709 struct __thermal_bind_params *__tbp,
ad9914ac 710 struct thermal_trip *trips,
4e5e4705
EV
711 int ntrips)
712{
713 struct of_phandle_args cooling_spec;
a92bab89 714 struct __thermal_cooling_bind_param *__tcbp;
4e5e4705 715 struct device_node *trip;
a92bab89 716 int ret, i, count;
4e5e4705
EV
717 u32 prop;
718
719 /* Default weight. Usage is optional */
6cd9e9f6 720 __tbp->usage = THERMAL_WEIGHT_DEFAULT;
4e5e4705
EV
721 ret = of_property_read_u32(np, "contribution", &prop);
722 if (ret == 0)
723 __tbp->usage = prop;
724
725 trip = of_parse_phandle(np, "trip", 0);
726 if (!trip) {
727 pr_err("missing trip property\n");
728 return -ENODEV;
729 }
730
731 /* match using device_node */
732 for (i = 0; i < ntrips; i++)
733 if (trip == trips[i].np) {
734 __tbp->trip_id = i;
735 break;
736 }
737
738 if (i == ntrips) {
739 ret = -ENODEV;
740 goto end;
741 }
742
a92bab89
VK
743 count = of_count_phandle_with_args(np, "cooling-device",
744 "#cooling-cells");
745 if (!count) {
746 pr_err("Add a cooling_device property with at least one device\n");
4e5e4705
EV
747 goto end;
748 }
a92bab89
VK
749
750 __tcbp = kcalloc(count, sizeof(*__tcbp), GFP_KERNEL);
751 if (!__tcbp)
752 goto end;
753
754 for (i = 0; i < count; i++) {
755 ret = of_parse_phandle_with_args(np, "cooling-device",
756 "#cooling-cells", i, &cooling_spec);
757 if (ret < 0) {
758 pr_err("Invalid cooling-device entry\n");
759 goto free_tcbp;
760 }
761
762 __tcbp[i].cooling_device = cooling_spec.np;
763
764 if (cooling_spec.args_count >= 2) { /* at least min and max */
765 __tcbp[i].min = cooling_spec.args[0];
766 __tcbp[i].max = cooling_spec.args[1];
767 } else {
768 pr_err("wrong reference to cooling device, missing limits\n");
769 }
4e5e4705
EV
770 }
771
a92bab89
VK
772 __tbp->tcbp = __tcbp;
773 __tbp->count = count;
774
775 goto end;
776
777free_tcbp:
778 for (i = i - 1; i >= 0; i--)
779 of_node_put(__tcbp[i].cooling_device);
780 kfree(__tcbp);
4e5e4705
EV
781end:
782 of_node_put(trip);
783
784 return ret;
785}
786
faae0ed7 787/*
4e5e4705
EV
788 * It maps 'enum thermal_trip_type' found in include/linux/thermal.h
789 * into the device tree binding of 'trip', property type.
790 */
791static const char * const trip_types[] = {
792 [THERMAL_TRIP_ACTIVE] = "active",
793 [THERMAL_TRIP_PASSIVE] = "passive",
794 [THERMAL_TRIP_HOT] = "hot",
795 [THERMAL_TRIP_CRITICAL] = "critical",
796};
797
798/**
799 * thermal_of_get_trip_type - Get phy mode for given device_node
800 * @np: Pointer to the given device_node
801 * @type: Pointer to resulting trip type
802 *
803 * The function gets trip type string from property 'type',
804 * and store its index in trip_types table in @type,
805 *
806 * Return: 0 on success, or errno in error case.
807 */
808static int thermal_of_get_trip_type(struct device_node *np,
809 enum thermal_trip_type *type)
810{
811 const char *t;
812 int err, i;
813
814 err = of_property_read_string(np, "type", &t);
815 if (err < 0)
816 return err;
817
818 for (i = 0; i < ARRAY_SIZE(trip_types); i++)
819 if (!strcasecmp(t, trip_types[i])) {
820 *type = i;
821 return 0;
822 }
823
824 return -ENODEV;
825}
826
827/**
828 * thermal_of_populate_trip - parse and fill one trip point data
829 * @np: DT node containing a trip point node
830 * @trip: trip point data structure to be filled up
831 *
832 * This function parses a trip point type of node represented by
833 * @np parameter and fills the read data into @trip data structure.
834 *
835 * Return: 0 on success, proper error code otherwise
836 */
837static int thermal_of_populate_trip(struct device_node *np,
ad9914ac 838 struct thermal_trip *trip)
4e5e4705
EV
839{
840 int prop;
841 int ret;
842
843 ret = of_property_read_u32(np, "temperature", &prop);
844 if (ret < 0) {
845 pr_err("missing temperature property\n");
846 return ret;
847 }
848 trip->temperature = prop;
849
850 ret = of_property_read_u32(np, "hysteresis", &prop);
851 if (ret < 0) {
852 pr_err("missing hysteresis property\n");
853 return ret;
854 }
855 trip->hysteresis = prop;
856
857 ret = thermal_of_get_trip_type(np, &trip->type);
858 if (ret < 0) {
859 pr_err("wrong trip type property\n");
860 return ret;
861 }
862
863 /* Required for cooling map matching */
864 trip->np = np;
c2aad93c 865 of_node_get(np);
4e5e4705
EV
866
867 return 0;
868}
869
870/**
871 * thermal_of_build_thermal_zone - parse and fill one thermal zone data
872 * @np: DT node containing a thermal zone node
873 *
874 * This function parses a thermal zone type of node represented by
875 * @np parameter and fills the read data into a __thermal_zone data structure
876 * and return this pointer.
877 *
a46dbae8 878 * TODO: Missing properties to parse: thermal-sensor-names
4e5e4705
EV
879 *
880 * Return: On success returns a valid struct __thermal_zone,
881 * otherwise, it returns a corresponding ERR_PTR(). Caller must
882 * check the return value with help of IS_ERR() helper.
883 */
c0ff8aaa
JL
884static struct __thermal_zone
885__init *thermal_of_build_thermal_zone(struct device_node *np)
4e5e4705
EV
886{
887 struct device_node *child = NULL, *gchild;
888 struct __thermal_zone *tz;
889 int ret, i;
a46dbae8 890 u32 prop, coef[2];
4e5e4705
EV
891
892 if (!np) {
893 pr_err("no thermal zone np\n");
894 return ERR_PTR(-EINVAL);
895 }
896
897 tz = kzalloc(sizeof(*tz), GFP_KERNEL);
898 if (!tz)
899 return ERR_PTR(-ENOMEM);
900
901 ret = of_property_read_u32(np, "polling-delay-passive", &prop);
902 if (ret < 0) {
3079f340 903 pr_err("%pOFn: missing polling-delay-passive property\n", np);
4e5e4705
EV
904 goto free_tz;
905 }
906 tz->passive_delay = prop;
907
908 ret = of_property_read_u32(np, "polling-delay", &prop);
909 if (ret < 0) {
3079f340 910 pr_err("%pOFn: missing polling-delay property\n", np);
4e5e4705
EV
911 goto free_tz;
912 }
913 tz->polling_delay = prop;
914
a46dbae8
EV
915 /*
916 * REVIST: for now, the thermal framework supports only
917 * one sensor per thermal zone. Thus, we are considering
918 * only the first two values as slope and offset.
919 */
920 ret = of_property_read_u32_array(np, "coefficients", coef, 2);
921 if (ret == 0) {
922 tz->slope = coef[0];
923 tz->offset = coef[1];
924 } else {
925 tz->slope = 1;
926 tz->offset = 0;
927 }
928
4e5e4705
EV
929 /* trips */
930 child = of_get_child_by_name(np, "trips");
931
932 /* No trips provided */
933 if (!child)
934 goto finish;
935
936 tz->ntrips = of_get_child_count(child);
937 if (tz->ntrips == 0) /* must have at least one child */
938 goto finish;
939
6396bb22 940 tz->trips = kcalloc(tz->ntrips, sizeof(*tz->trips), GFP_KERNEL);
4e5e4705
EV
941 if (!tz->trips) {
942 ret = -ENOMEM;
943 goto free_tz;
944 }
945
946 i = 0;
947 for_each_child_of_node(child, gchild) {
948 ret = thermal_of_populate_trip(gchild, &tz->trips[i++]);
949 if (ret)
950 goto free_trips;
951 }
952
953 of_node_put(child);
954
955 /* cooling-maps */
956 child = of_get_child_by_name(np, "cooling-maps");
957
958 /* cooling-maps not provided */
959 if (!child)
960 goto finish;
961
962 tz->num_tbps = of_get_child_count(child);
963 if (tz->num_tbps == 0)
964 goto finish;
965
6396bb22 966 tz->tbps = kcalloc(tz->num_tbps, sizeof(*tz->tbps), GFP_KERNEL);
4e5e4705
EV
967 if (!tz->tbps) {
968 ret = -ENOMEM;
969 goto free_trips;
970 }
971
972 i = 0;
ca9521b7 973 for_each_child_of_node(child, gchild) {
4e5e4705
EV
974 ret = thermal_of_populate_bind_params(gchild, &tz->tbps[i++],
975 tz->trips, tz->ntrips);
976 if (ret)
977 goto free_tbps;
ca9521b7 978 }
4e5e4705
EV
979
980finish:
981 of_node_put(child);
982 tz->mode = THERMAL_DEVICE_DISABLED;
983
984 return tz;
985
986free_tbps:
a92bab89
VK
987 for (i = i - 1; i >= 0; i--) {
988 struct __thermal_bind_params *tbp = tz->tbps + i;
989 int j;
990
991 for (j = 0; j < tbp->count; j++)
992 of_node_put(tbp->tcbp[j].cooling_device);
993
994 kfree(tbp->tcbp);
995 }
996
4e5e4705
EV
997 kfree(tz->tbps);
998free_trips:
c2aad93c
VZ
999 for (i = 0; i < tz->ntrips; i++)
1000 of_node_put(tz->trips[i].np);
4e5e4705 1001 kfree(tz->trips);
c2aad93c 1002 of_node_put(gchild);
4e5e4705
EV
1003free_tz:
1004 kfree(tz);
1005 of_node_put(child);
1006
1007 return ERR_PTR(ret);
1008}
1009
93802b03 1010static __init void of_thermal_free_zone(struct __thermal_zone *tz)
4e5e4705 1011{
a92bab89
VK
1012 struct __thermal_bind_params *tbp;
1013 int i, j;
1014
1015 for (i = 0; i < tz->num_tbps; i++) {
1016 tbp = tz->tbps + i;
1017
1018 for (j = 0; j < tbp->count; j++)
1019 of_node_put(tbp->tcbp[j].cooling_device);
1020
1021 kfree(tbp->tcbp);
1022 }
c2aad93c 1023
4e5e4705 1024 kfree(tz->tbps);
c2aad93c
VZ
1025 for (i = 0; i < tz->ntrips; i++)
1026 of_node_put(tz->trips[i].np);
4e5e4705
EV
1027 kfree(tz->trips);
1028 kfree(tz);
1029}
1030
8c24b85d
DL
1031/**
1032 * of_thermal_destroy_zones - remove all zones parsed and allocated resources
1033 *
1034 * Finds all zones parsed and added to the thermal framework and remove them
1035 * from the system, together with their resources.
1036 *
1037 */
1038static __init void of_thermal_destroy_zones(void)
1039{
1040 struct device_node *np, *child;
1041
1042 np = of_find_node_by_name(NULL, "thermal-zones");
1043 if (!np) {
1044 pr_debug("unable to find thermal zones\n");
1045 return;
1046 }
1047
1048 for_each_available_child_of_node(np, child) {
1049 struct thermal_zone_device *zone;
1050
1051 zone = thermal_zone_get_zone_by_name(child->name);
1052 if (IS_ERR(zone))
1053 continue;
1054
1055 thermal_zone_device_unregister(zone);
1056 kfree(zone->tzp);
1057 kfree(zone->ops);
1058 of_thermal_free_zone(zone->devdata);
1059 }
1060 of_node_put(np);
1061}
1062
4e5e4705
EV
1063/**
1064 * of_parse_thermal_zones - parse device tree thermal data
1065 *
1066 * Initialization function that can be called by machine initialization
1067 * code to parse thermal data and populate the thermal framework
1068 * with hardware thermal zones info. This function only parses thermal zones.
1069 * Cooling devices and sensor devices nodes are supposed to be parsed
1070 * by their respective drivers.
1071 *
1072 * Return: 0 on success, proper error code otherwise
1073 *
1074 */
1075int __init of_parse_thermal_zones(void)
1076{
1077 struct device_node *np, *child;
1078 struct __thermal_zone *tz;
1079 struct thermal_zone_device_ops *ops;
1080
1081 np = of_find_node_by_name(NULL, "thermal-zones");
1082 if (!np) {
1083 pr_debug("unable to find thermal zones\n");
1084 return 0; /* Run successfully on systems without thermal DT */
1085 }
1086
42bbe400 1087 for_each_available_child_of_node(np, child) {
4e5e4705
EV
1088 struct thermal_zone_device *zone;
1089 struct thermal_zone_params *tzp;
76af5495 1090 int i, mask = 0;
647f9925 1091 u32 prop;
4e5e4705
EV
1092
1093 tz = thermal_of_build_thermal_zone(child);
1094 if (IS_ERR(tz)) {
9b965660
RH
1095 pr_err("failed to build thermal zone %pOFn: %ld\n",
1096 child,
4e5e4705
EV
1097 PTR_ERR(tz));
1098 continue;
1099 }
1100
1101 ops = kmemdup(&of_thermal_ops, sizeof(*ops), GFP_KERNEL);
1102 if (!ops)
1103 goto exit_free;
1104
1105 tzp = kzalloc(sizeof(*tzp), GFP_KERNEL);
1106 if (!tzp) {
1107 kfree(ops);
1108 goto exit_free;
1109 }
1110
1111 /* No hwmon because there might be hwmon drivers registering */
1112 tzp->no_hwmon = true;
1113
647f9925
PA
1114 if (!of_property_read_u32(child, "sustainable-power", &prop))
1115 tzp->sustainable_power = prop;
1116
76af5495
PA
1117 for (i = 0; i < tz->ntrips; i++)
1118 mask |= 1 << i;
1119
a46dbae8
EV
1120 /* these two are left for temperature drivers to use */
1121 tzp->slope = tz->slope;
1122 tzp->offset = tz->offset;
1123
4e5e4705 1124 zone = thermal_zone_device_register(child->name, tz->ntrips,
76af5495 1125 mask, tz,
4e5e4705
EV
1126 ops, tzp,
1127 tz->passive_delay,
1128 tz->polling_delay);
1129 if (IS_ERR(zone)) {
9b965660 1130 pr_err("Failed to build %pOFn zone %ld\n", child,
4e5e4705
EV
1131 PTR_ERR(zone));
1132 kfree(tzp);
1133 kfree(ops);
1134 of_thermal_free_zone(tz);
1135 /* attempting to build remaining zones still */
1136 }
1137 }
c2aad93c 1138 of_node_put(np);
4e5e4705
EV
1139
1140 return 0;
1141
1142exit_free:
c2aad93c
VZ
1143 of_node_put(child);
1144 of_node_put(np);
4e5e4705
EV
1145 of_thermal_free_zone(tz);
1146
1147 /* no memory available, so free what we have built */
1148 of_thermal_destroy_zones();
1149
1150 return -ENOMEM;
1151}