1 // SPDX-License-Identifier: GPL-2.0
3 * of-thermal.c - Generic Thermal Management device tree support.
5 * Copyright (C) 2013 Texas Instruments
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/err.h>
12 #include <linux/export.h>
13 #include <linux/of_device.h>
14 #include <linux/of_platform.h>
15 #include <linux/slab.h>
16 #include <linux/thermal.h>
17 #include <linux/types.h>
18 #include <linux/string.h>
20 #include "thermal_core.h"
22 /*** Private data structures to represent thermal device tree data ***/
25 * struct __thermal_cooling_bind_param - a cooling device for a trip point
26 * @cooling_device: a pointer to identify the referred cooling device
27 * @min: minimum cooling state used at this trip point
28 * @max: maximum cooling state used at this trip point
31 struct __thermal_cooling_bind_param {
32 struct device_node *cooling_device;
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
45 struct __thermal_bind_params {
46 struct __thermal_cooling_bind_param *tcbp;
53 * struct __thermal_zone - internal representation of a thermal zone
54 * @passive_delay: polling interval while passive cooling is activated
55 * @polling_delay: zone polling interval
56 * @slope: slope of the temperature adjustment curve
57 * @offset: offset of the temperature adjustment curve
58 * @ntrips: number of trip points
59 * @trips: an array of trip points (0..ntrips - 1)
60 * @num_tbps: number of thermal bind params
61 * @tbps: an array of thermal bind params (0..num_tbps - 1)
62 * @sensor_data: sensor private data used while reading temperature and trend
63 * @ops: set of callbacks to handle the thermal zone based on DT
66 struct __thermal_zone {
74 struct thermal_trip *trips;
76 /* cooling binding data */
78 struct __thermal_bind_params *tbps;
80 /* sensor interface */
82 const struct thermal_zone_of_device_ops *ops;
85 /*** DT thermal zone device callbacks ***/
87 static int of_thermal_get_temp(struct thermal_zone_device *tz,
90 struct __thermal_zone *data = tz->devdata;
92 if (!data->ops->get_temp)
95 return data->ops->get_temp(data->sensor_data, temp);
98 static int of_thermal_set_trips(struct thermal_zone_device *tz,
101 struct __thermal_zone *data = tz->devdata;
103 if (!data->ops || !data->ops->set_trips)
106 return data->ops->set_trips(data->sensor_data, low, high);
110 * of_thermal_get_ntrips - function to export number of available trip
112 * @tz: pointer to a thermal zone
114 * This function is a globally visible wrapper to get number of trip points
115 * stored in the local struct __thermal_zone
117 * Return: number of available trip points, -ENODEV when data not available
119 int of_thermal_get_ntrips(struct thermal_zone_device *tz)
121 struct __thermal_zone *data = tz->devdata;
123 if (!data || IS_ERR(data))
128 EXPORT_SYMBOL_GPL(of_thermal_get_ntrips);
131 * of_thermal_is_trip_valid - function to check if trip point is valid
133 * @tz: pointer to a thermal zone
134 * @trip: trip point to evaluate
136 * This function is responsible for checking if passed trip point is valid
138 * Return: true if trip point is valid, false otherwise
140 bool of_thermal_is_trip_valid(struct thermal_zone_device *tz, int trip)
142 struct __thermal_zone *data = tz->devdata;
144 if (!data || trip >= data->ntrips || trip < 0)
149 EXPORT_SYMBOL_GPL(of_thermal_is_trip_valid);
152 * of_thermal_get_trip_points - function to get access to a globally exported
155 * @tz: pointer to a thermal zone
157 * This function provides a pointer to trip points table
159 * Return: pointer to trip points table, NULL otherwise
161 const struct thermal_trip *
162 of_thermal_get_trip_points(struct thermal_zone_device *tz)
164 struct __thermal_zone *data = tz->devdata;
171 EXPORT_SYMBOL_GPL(of_thermal_get_trip_points);
174 * of_thermal_set_emul_temp - function to set emulated temperature
176 * @tz: pointer to a thermal zone
177 * @temp: temperature to set
179 * This function gives the ability to set emulated value of temperature,
180 * which is handy for debugging
182 * Return: zero on success, error code otherwise
184 static int of_thermal_set_emul_temp(struct thermal_zone_device *tz,
187 struct __thermal_zone *data = tz->devdata;
189 return data->ops->set_emul_temp(data->sensor_data, temp);
192 static int of_thermal_get_trend(struct thermal_zone_device *tz, int trip,
193 enum thermal_trend *trend)
195 struct __thermal_zone *data = tz->devdata;
197 if (!data->ops->get_trend)
200 return data->ops->get_trend(data->sensor_data, trip, trend);
203 static int of_thermal_bind(struct thermal_zone_device *thermal,
204 struct thermal_cooling_device *cdev)
206 struct __thermal_zone *data = thermal->devdata;
207 struct __thermal_bind_params *tbp;
208 struct __thermal_cooling_bind_param *tcbp;
211 if (!data || IS_ERR(data))
214 /* find where to bind */
215 for (i = 0; i < data->num_tbps; i++) {
216 tbp = data->tbps + i;
218 for (j = 0; j < tbp->count; j++) {
219 tcbp = tbp->tcbp + j;
221 if (tcbp->cooling_device == cdev->np) {
224 ret = thermal_zone_bind_cooling_device(thermal,
238 static int of_thermal_unbind(struct thermal_zone_device *thermal,
239 struct thermal_cooling_device *cdev)
241 struct __thermal_zone *data = thermal->devdata;
242 struct __thermal_bind_params *tbp;
243 struct __thermal_cooling_bind_param *tcbp;
246 if (!data || IS_ERR(data))
249 /* find where to unbind */
250 for (i = 0; i < data->num_tbps; i++) {
251 tbp = data->tbps + i;
253 for (j = 0; j < tbp->count; j++) {
254 tcbp = tbp->tcbp + j;
256 if (tcbp->cooling_device == cdev->np) {
259 ret = thermal_zone_unbind_cooling_device(thermal,
270 static int of_thermal_get_trip_type(struct thermal_zone_device *tz, int trip,
271 enum thermal_trip_type *type)
273 struct __thermal_zone *data = tz->devdata;
275 if (trip >= data->ntrips || trip < 0)
278 *type = data->trips[trip].type;
283 static int of_thermal_get_trip_temp(struct thermal_zone_device *tz, int trip,
286 struct __thermal_zone *data = tz->devdata;
288 if (trip >= data->ntrips || trip < 0)
291 *temp = data->trips[trip].temperature;
296 static int of_thermal_set_trip_temp(struct thermal_zone_device *tz, int trip,
299 struct __thermal_zone *data = tz->devdata;
301 if (trip >= data->ntrips || trip < 0)
304 if (data->ops->set_trip_temp) {
307 ret = data->ops->set_trip_temp(data->sensor_data, trip, temp);
312 /* thermal framework should take care of data->mask & (1 << trip) */
313 data->trips[trip].temperature = temp;
318 static int of_thermal_get_trip_hyst(struct thermal_zone_device *tz, int trip,
321 struct __thermal_zone *data = tz->devdata;
323 if (trip >= data->ntrips || trip < 0)
326 *hyst = data->trips[trip].hysteresis;
331 static int of_thermal_set_trip_hyst(struct thermal_zone_device *tz, int trip,
334 struct __thermal_zone *data = tz->devdata;
336 if (trip >= data->ntrips || trip < 0)
339 /* thermal framework should take care of data->mask & (1 << trip) */
340 data->trips[trip].hysteresis = hyst;
345 static int of_thermal_get_crit_temp(struct thermal_zone_device *tz,
348 struct __thermal_zone *data = tz->devdata;
351 for (i = 0; i < data->ntrips; i++)
352 if (data->trips[i].type == THERMAL_TRIP_CRITICAL) {
353 *temp = data->trips[i].temperature;
360 static struct thermal_zone_device_ops of_thermal_ops = {
361 .get_trip_type = of_thermal_get_trip_type,
362 .get_trip_temp = of_thermal_get_trip_temp,
363 .set_trip_temp = of_thermal_set_trip_temp,
364 .get_trip_hyst = of_thermal_get_trip_hyst,
365 .set_trip_hyst = of_thermal_set_trip_hyst,
366 .get_crit_temp = of_thermal_get_crit_temp,
368 .bind = of_thermal_bind,
369 .unbind = of_thermal_unbind,
374 static struct thermal_zone_device *
375 thermal_zone_of_add_sensor(struct device_node *zone,
376 struct device_node *sensor, void *data,
377 const struct thermal_zone_of_device_ops *ops)
379 struct thermal_zone_device *tzd;
380 struct __thermal_zone *tz;
382 tzd = thermal_zone_get_zone_by_name(zone->name);
384 return ERR_PTR(-EPROBE_DEFER);
389 return ERR_PTR(-EINVAL);
391 mutex_lock(&tzd->lock);
393 tz->sensor_data = data;
395 tzd->ops->get_temp = of_thermal_get_temp;
396 tzd->ops->get_trend = of_thermal_get_trend;
399 * The thermal zone core will calculate the window if they have set the
400 * optional set_trips pointer.
403 tzd->ops->set_trips = of_thermal_set_trips;
405 if (ops->set_emul_temp)
406 tzd->ops->set_emul_temp = of_thermal_set_emul_temp;
408 mutex_unlock(&tzd->lock);
414 * thermal_zone_of_get_sensor_id - get sensor ID from a DT thermal zone
415 * @tz_np: a valid thermal zone device node.
416 * @sensor_np: a sensor node of a valid sensor device.
417 * @id: the sensor ID returned if success.
419 * This function will get sensor ID from a given thermal zone node and
420 * the sensor node must match the temperature provider @sensor_np.
422 * Return: 0 on success, proper error code otherwise.
425 int thermal_zone_of_get_sensor_id(struct device_node *tz_np,
426 struct device_node *sensor_np,
429 struct of_phandle_args sensor_specs;
432 ret = of_parse_phandle_with_args(tz_np,
434 "#thermal-sensor-cells",
440 if (sensor_specs.np != sensor_np) {
441 of_node_put(sensor_specs.np);
445 if (sensor_specs.args_count > 1)
446 pr_warn("%pOFn: too many cells in sensor specifier %d\n",
447 sensor_specs.np, sensor_specs.args_count);
449 *id = sensor_specs.args_count ? sensor_specs.args[0] : 0;
451 of_node_put(sensor_specs.np);
455 EXPORT_SYMBOL_GPL(thermal_zone_of_get_sensor_id);
458 * thermal_zone_of_sensor_register - registers a sensor to a DT thermal zone
459 * @dev: a valid struct device pointer of a sensor device. Must contain
460 * a valid .of_node, for the sensor node.
461 * @sensor_id: a sensor identifier, in case the sensor IP has more
463 * @data: a private pointer (owned by the caller) that will be passed
464 * back, when a temperature reading is needed.
465 * @ops: struct thermal_zone_of_device_ops *. Must contain at least .get_temp.
467 * This function will search the list of thermal zones described in device
468 * tree and look for the zone that refer to the sensor device pointed by
469 * @dev->of_node as temperature providers. For the zone pointing to the
470 * sensor node, the sensor will be added to the DT thermal zone device.
472 * The thermal zone temperature is provided by the @get_temp function
473 * pointer. When called, it will have the private pointer @data back.
475 * The thermal zone temperature trend is provided by the @get_trend function
476 * pointer. When called, it will have the private pointer @data back.
479 * 01 - This function must enqueue the new sensor instead of using
480 * it as the only source of temperature values.
482 * 02 - There must be a way to match the sensor with all thermal zones
485 * Return: On success returns a valid struct thermal_zone_device,
486 * otherwise, it returns a corresponding ERR_PTR(). Caller must
487 * check the return value with help of IS_ERR() helper.
489 struct thermal_zone_device *
490 thermal_zone_of_sensor_register(struct device *dev, int sensor_id, void *data,
491 const struct thermal_zone_of_device_ops *ops)
493 struct device_node *np, *child, *sensor_np;
494 struct thermal_zone_device *tzd = ERR_PTR(-ENODEV);
496 np = of_find_node_by_name(NULL, "thermal-zones");
498 return ERR_PTR(-ENODEV);
500 if (!dev || !dev->of_node) {
502 return ERR_PTR(-ENODEV);
505 sensor_np = of_node_get(dev->of_node);
507 for_each_available_child_of_node(np, child) {
510 /* For now, thermal framework supports only 1 sensor per zone */
511 ret = thermal_zone_of_get_sensor_id(child, sensor_np, &id);
515 if (id == sensor_id) {
516 tzd = thermal_zone_of_add_sensor(child, sensor_np,
519 thermal_zone_device_enable(tzd);
526 of_node_put(sensor_np);
531 EXPORT_SYMBOL_GPL(thermal_zone_of_sensor_register);
534 * thermal_zone_of_sensor_unregister - unregisters a sensor from a DT thermal zone
535 * @dev: a valid struct device pointer of a sensor device. Must contain
536 * a valid .of_node, for the sensor node.
537 * @tzd: a pointer to struct thermal_zone_device where the sensor is registered.
539 * This function removes the sensor callbacks and private data from the
540 * thermal zone device registered with thermal_zone_of_sensor_register()
541 * API. It will also silent the zone by remove the .get_temp() and .get_trend()
542 * thermal zone device callbacks.
544 * TODO: When the support to several sensors per zone is added, this
545 * function must search the sensor list based on @dev parameter.
548 void thermal_zone_of_sensor_unregister(struct device *dev,
549 struct thermal_zone_device *tzd)
551 struct __thermal_zone *tz;
553 if (!dev || !tzd || !tzd->devdata)
558 /* no __thermal_zone, nothing to be done */
562 mutex_lock(&tzd->lock);
563 tzd->ops->get_temp = NULL;
564 tzd->ops->get_trend = NULL;
565 tzd->ops->set_emul_temp = NULL;
568 tz->sensor_data = NULL;
569 mutex_unlock(&tzd->lock);
571 EXPORT_SYMBOL_GPL(thermal_zone_of_sensor_unregister);
573 static void devm_thermal_zone_of_sensor_release(struct device *dev, void *res)
575 thermal_zone_of_sensor_unregister(dev,
576 *(struct thermal_zone_device **)res);
579 static int devm_thermal_zone_of_sensor_match(struct device *dev, void *res,
582 struct thermal_zone_device **r = res;
584 if (WARN_ON(!r || !*r))
591 * devm_thermal_zone_of_sensor_register - Resource managed version of
592 * thermal_zone_of_sensor_register()
593 * @dev: a valid struct device pointer of a sensor device. Must contain
594 * a valid .of_node, for the sensor node.
595 * @sensor_id: a sensor identifier, in case the sensor IP has more
597 * @data: a private pointer (owned by the caller) that will be passed
598 * back, when a temperature reading is needed.
599 * @ops: struct thermal_zone_of_device_ops *. Must contain at least .get_temp.
601 * Refer thermal_zone_of_sensor_register() for more details.
603 * Return: On success returns a valid struct thermal_zone_device,
604 * otherwise, it returns a corresponding ERR_PTR(). Caller must
605 * check the return value with help of IS_ERR() helper.
606 * Registered thermal_zone_device device will automatically be
607 * released when device is unbounded.
609 struct thermal_zone_device *devm_thermal_zone_of_sensor_register(
610 struct device *dev, int sensor_id,
611 void *data, const struct thermal_zone_of_device_ops *ops)
613 struct thermal_zone_device **ptr, *tzd;
615 ptr = devres_alloc(devm_thermal_zone_of_sensor_release, sizeof(*ptr),
618 return ERR_PTR(-ENOMEM);
620 tzd = thermal_zone_of_sensor_register(dev, sensor_id, data, ops);
627 devres_add(dev, ptr);
631 EXPORT_SYMBOL_GPL(devm_thermal_zone_of_sensor_register);
634 * devm_thermal_zone_of_sensor_unregister - Resource managed version of
635 * thermal_zone_of_sensor_unregister().
636 * @dev: Device for which which resource was allocated.
637 * @tzd: a pointer to struct thermal_zone_device where the sensor is registered.
639 * This function removes the sensor callbacks and private data from the
640 * thermal zone device registered with devm_thermal_zone_of_sensor_register()
641 * API. It will also silent the zone by remove the .get_temp() and .get_trend()
642 * thermal zone device callbacks.
643 * Normally this function will not need to be called and the resource
644 * management code will ensure that the resource is freed.
646 void devm_thermal_zone_of_sensor_unregister(struct device *dev,
647 struct thermal_zone_device *tzd)
649 WARN_ON(devres_release(dev, devm_thermal_zone_of_sensor_release,
650 devm_thermal_zone_of_sensor_match, tzd));
652 EXPORT_SYMBOL_GPL(devm_thermal_zone_of_sensor_unregister);
654 /*** functions parsing device tree nodes ***/
657 * thermal_of_populate_bind_params - parse and fill cooling map data
658 * @np: DT node containing a cooling-map node
659 * @__tbp: data structure to be filled with cooling map info
660 * @trips: array of thermal zone trip points
661 * @ntrips: number of trip points inside trips.
663 * This function parses a cooling-map type of node represented by
664 * @np parameter and fills the read data into @__tbp data structure.
665 * It needs the already parsed array of trip points of the thermal zone
668 * Return: 0 on success, proper error code otherwise
670 static int thermal_of_populate_bind_params(struct device_node *np,
671 struct __thermal_bind_params *__tbp,
672 struct thermal_trip *trips,
675 struct of_phandle_args cooling_spec;
676 struct __thermal_cooling_bind_param *__tcbp;
677 struct device_node *trip;
681 /* Default weight. Usage is optional */
682 __tbp->usage = THERMAL_WEIGHT_DEFAULT;
683 ret = of_property_read_u32(np, "contribution", &prop);
687 trip = of_parse_phandle(np, "trip", 0);
689 pr_err("missing trip property\n");
693 /* match using device_node */
694 for (i = 0; i < ntrips; i++)
695 if (trip == trips[i].np) {
705 count = of_count_phandle_with_args(np, "cooling-device",
708 pr_err("Add a cooling_device property with at least one device\n");
712 __tcbp = kcalloc(count, sizeof(*__tcbp), GFP_KERNEL);
716 for (i = 0; i < count; i++) {
717 ret = of_parse_phandle_with_args(np, "cooling-device",
718 "#cooling-cells", i, &cooling_spec);
720 pr_err("Invalid cooling-device entry\n");
724 __tcbp[i].cooling_device = cooling_spec.np;
726 if (cooling_spec.args_count >= 2) { /* at least min and max */
727 __tcbp[i].min = cooling_spec.args[0];
728 __tcbp[i].max = cooling_spec.args[1];
730 pr_err("wrong reference to cooling device, missing limits\n");
734 __tbp->tcbp = __tcbp;
735 __tbp->count = count;
740 for (i = i - 1; i >= 0; i--)
741 of_node_put(__tcbp[i].cooling_device);
750 * It maps 'enum thermal_trip_type' found in include/linux/thermal.h
751 * into the device tree binding of 'trip', property type.
753 static const char * const trip_types[] = {
754 [THERMAL_TRIP_ACTIVE] = "active",
755 [THERMAL_TRIP_PASSIVE] = "passive",
756 [THERMAL_TRIP_HOT] = "hot",
757 [THERMAL_TRIP_CRITICAL] = "critical",
761 * thermal_of_get_trip_type - Get phy mode for given device_node
762 * @np: Pointer to the given device_node
763 * @type: Pointer to resulting trip type
765 * The function gets trip type string from property 'type',
766 * and store its index in trip_types table in @type,
768 * Return: 0 on success, or errno in error case.
770 static int thermal_of_get_trip_type(struct device_node *np,
771 enum thermal_trip_type *type)
776 err = of_property_read_string(np, "type", &t);
780 for (i = 0; i < ARRAY_SIZE(trip_types); i++)
781 if (!strcasecmp(t, trip_types[i])) {
790 * thermal_of_populate_trip - parse and fill one trip point data
791 * @np: DT node containing a trip point node
792 * @trip: trip point data structure to be filled up
794 * This function parses a trip point type of node represented by
795 * @np parameter and fills the read data into @trip data structure.
797 * Return: 0 on success, proper error code otherwise
799 static int thermal_of_populate_trip(struct device_node *np,
800 struct thermal_trip *trip)
805 ret = of_property_read_u32(np, "temperature", &prop);
807 pr_err("missing temperature property\n");
810 trip->temperature = prop;
812 ret = of_property_read_u32(np, "hysteresis", &prop);
814 pr_err("missing hysteresis property\n");
817 trip->hysteresis = prop;
819 ret = thermal_of_get_trip_type(np, &trip->type);
821 pr_err("wrong trip type property\n");
825 /* Required for cooling map matching */
833 * thermal_of_build_thermal_zone - parse and fill one thermal zone data
834 * @np: DT node containing a thermal zone node
836 * This function parses a thermal zone type of node represented by
837 * @np parameter and fills the read data into a __thermal_zone data structure
838 * and return this pointer.
840 * TODO: Missing properties to parse: thermal-sensor-names
842 * Return: On success returns a valid struct __thermal_zone,
843 * otherwise, it returns a corresponding ERR_PTR(). Caller must
844 * check the return value with help of IS_ERR() helper.
846 static struct __thermal_zone
847 __init *thermal_of_build_thermal_zone(struct device_node *np)
849 struct device_node *child = NULL, *gchild;
850 struct __thermal_zone *tz;
855 pr_err("no thermal zone np\n");
856 return ERR_PTR(-EINVAL);
859 tz = kzalloc(sizeof(*tz), GFP_KERNEL);
861 return ERR_PTR(-ENOMEM);
863 ret = of_property_read_u32(np, "polling-delay-passive", &prop);
865 pr_err("%pOFn: missing polling-delay-passive property\n", np);
868 tz->passive_delay = prop;
870 ret = of_property_read_u32(np, "polling-delay", &prop);
872 pr_err("%pOFn: missing polling-delay property\n", np);
875 tz->polling_delay = prop;
878 * REVIST: for now, the thermal framework supports only
879 * one sensor per thermal zone. Thus, we are considering
880 * only the first two values as slope and offset.
882 ret = of_property_read_u32_array(np, "coefficients", coef, 2);
885 tz->offset = coef[1];
892 child = of_get_child_by_name(np, "trips");
894 /* No trips provided */
898 tz->ntrips = of_get_child_count(child);
899 if (tz->ntrips == 0) /* must have at least one child */
902 tz->trips = kcalloc(tz->ntrips, sizeof(*tz->trips), GFP_KERNEL);
909 for_each_child_of_node(child, gchild) {
910 ret = thermal_of_populate_trip(gchild, &tz->trips[i++]);
918 child = of_get_child_by_name(np, "cooling-maps");
920 /* cooling-maps not provided */
924 tz->num_tbps = of_get_child_count(child);
925 if (tz->num_tbps == 0)
928 tz->tbps = kcalloc(tz->num_tbps, sizeof(*tz->tbps), GFP_KERNEL);
935 for_each_child_of_node(child, gchild) {
936 ret = thermal_of_populate_bind_params(gchild, &tz->tbps[i++],
937 tz->trips, tz->ntrips);
948 for (i = i - 1; i >= 0; i--) {
949 struct __thermal_bind_params *tbp = tz->tbps + i;
952 for (j = 0; j < tbp->count; j++)
953 of_node_put(tbp->tcbp[j].cooling_device);
960 for (i = 0; i < tz->ntrips; i++)
961 of_node_put(tz->trips[i].np);
971 static __init void of_thermal_free_zone(struct __thermal_zone *tz)
973 struct __thermal_bind_params *tbp;
976 for (i = 0; i < tz->num_tbps; i++) {
979 for (j = 0; j < tbp->count; j++)
980 of_node_put(tbp->tcbp[j].cooling_device);
986 for (i = 0; i < tz->ntrips; i++)
987 of_node_put(tz->trips[i].np);
993 * of_thermal_destroy_zones - remove all zones parsed and allocated resources
995 * Finds all zones parsed and added to the thermal framework and remove them
996 * from the system, together with their resources.
999 static __init void of_thermal_destroy_zones(void)
1001 struct device_node *np, *child;
1003 np = of_find_node_by_name(NULL, "thermal-zones");
1005 pr_debug("unable to find thermal zones\n");
1009 for_each_available_child_of_node(np, child) {
1010 struct thermal_zone_device *zone;
1012 zone = thermal_zone_get_zone_by_name(child->name);
1016 thermal_zone_device_unregister(zone);
1019 of_thermal_free_zone(zone->devdata);
1025 * of_parse_thermal_zones - parse device tree thermal data
1027 * Initialization function that can be called by machine initialization
1028 * code to parse thermal data and populate the thermal framework
1029 * with hardware thermal zones info. This function only parses thermal zones.
1030 * Cooling devices and sensor devices nodes are supposed to be parsed
1031 * by their respective drivers.
1033 * Return: 0 on success, proper error code otherwise
1036 int __init of_parse_thermal_zones(void)
1038 struct device_node *np, *child;
1039 struct __thermal_zone *tz;
1040 struct thermal_zone_device_ops *ops;
1042 np = of_find_node_by_name(NULL, "thermal-zones");
1044 pr_debug("unable to find thermal zones\n");
1045 return 0; /* Run successfully on systems without thermal DT */
1048 for_each_available_child_of_node(np, child) {
1049 struct thermal_zone_device *zone;
1050 struct thermal_zone_params *tzp;
1054 tz = thermal_of_build_thermal_zone(child);
1056 pr_err("failed to build thermal zone %pOFn: %ld\n",
1062 ops = kmemdup(&of_thermal_ops, sizeof(*ops), GFP_KERNEL);
1066 tzp = kzalloc(sizeof(*tzp), GFP_KERNEL);
1072 /* No hwmon because there might be hwmon drivers registering */
1073 tzp->no_hwmon = true;
1075 if (!of_property_read_u32(child, "sustainable-power", &prop))
1076 tzp->sustainable_power = prop;
1078 for (i = 0; i < tz->ntrips; i++)
1081 /* these two are left for temperature drivers to use */
1082 tzp->slope = tz->slope;
1083 tzp->offset = tz->offset;
1085 zone = thermal_zone_device_register(child->name, tz->ntrips,
1091 pr_err("Failed to build %pOFn zone %ld\n", child,
1095 of_thermal_free_zone(tz);
1096 /* attempting to build remaining zones still */
1106 of_thermal_free_zone(tz);
1108 /* no memory available, so free what we have built */
1109 of_thermal_destroy_zones();