2 * of-thermal.c - Generic Thermal Management device tree support.
4 * Copyright (C) 2013 Texas Instruments
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; version 2 of the License.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 #include <linux/thermal.h>
26 #include <linux/slab.h>
27 #include <linux/types.h>
28 #include <linux/of_device.h>
29 #include <linux/of_platform.h>
30 #include <linux/err.h>
31 #include <linux/export.h>
32 #include <linux/string.h>
33 #include <linux/thermal.h>
35 #include "thermal_core.h"
37 /*** Private data structures to represent thermal device tree data ***/
40 * struct __thermal_bind_param - a match between trip and cooling device
41 * @cooling_device: a pointer to identify the referred cooling device
42 * @trip_id: the trip point index
43 * @usage: the percentage (from 0 to 100) of cooling contribution
44 * @min: minimum cooling state used at this trip point
45 * @max: maximum cooling state used at this trip point
48 struct __thermal_bind_params {
49 struct device_node *cooling_device;
57 * struct __thermal_zone - internal representation of a thermal zone
58 * @mode: current thermal zone device mode (enabled/disabled)
59 * @passive_delay: polling interval while passive cooling is activated
60 * @polling_delay: zone polling interval
61 * @slope: slope of the temperature adjustment curve
62 * @offset: offset of the temperature adjustment curve
63 * @ntrips: number of trip points
64 * @trips: an array of trip points (0..ntrips - 1)
65 * @num_tbps: number of thermal bind params
66 * @tbps: an array of thermal bind params (0..num_tbps - 1)
67 * @sensor_data: sensor private data used while reading temperature and trend
68 * @ops: set of callbacks to handle the thermal zone based on DT
71 struct __thermal_zone {
72 enum thermal_device_mode mode;
80 struct thermal_trip *trips;
82 /* cooling binding data */
84 struct __thermal_bind_params *tbps;
86 /* sensor interface */
88 const struct thermal_zone_of_device_ops *ops;
91 /*** DT thermal zone device callbacks ***/
93 static int of_thermal_get_temp(struct thermal_zone_device *tz,
96 struct __thermal_zone *data = tz->devdata;
98 if (!data->ops->get_temp)
101 return data->ops->get_temp(data->sensor_data, temp);
104 static int of_thermal_set_trips(struct thermal_zone_device *tz,
107 struct __thermal_zone *data = tz->devdata;
109 if (!data->ops || !data->ops->set_trips)
112 return data->ops->set_trips(data->sensor_data, low, high);
116 * of_thermal_get_ntrips - function to export number of available trip
118 * @tz: pointer to a thermal zone
120 * This function is a globally visible wrapper to get number of trip points
121 * stored in the local struct __thermal_zone
123 * Return: number of available trip points, -ENODEV when data not available
125 int of_thermal_get_ntrips(struct thermal_zone_device *tz)
127 struct __thermal_zone *data = tz->devdata;
129 if (!data || IS_ERR(data))
134 EXPORT_SYMBOL_GPL(of_thermal_get_ntrips);
137 * of_thermal_is_trip_valid - function to check if trip point is valid
139 * @tz: pointer to a thermal zone
140 * @trip: trip point to evaluate
142 * This function is responsible for checking if passed trip point is valid
144 * Return: true if trip point is valid, false otherwise
146 bool of_thermal_is_trip_valid(struct thermal_zone_device *tz, int trip)
148 struct __thermal_zone *data = tz->devdata;
150 if (!data || trip >= data->ntrips || trip < 0)
155 EXPORT_SYMBOL_GPL(of_thermal_is_trip_valid);
158 * of_thermal_get_trip_points - function to get access to a globally exported
161 * @tz: pointer to a thermal zone
163 * This function provides a pointer to trip points table
165 * Return: pointer to trip points table, NULL otherwise
167 const struct thermal_trip *
168 of_thermal_get_trip_points(struct thermal_zone_device *tz)
170 struct __thermal_zone *data = tz->devdata;
177 EXPORT_SYMBOL_GPL(of_thermal_get_trip_points);
180 * of_thermal_set_emul_temp - function to set emulated temperature
182 * @tz: pointer to a thermal zone
183 * @temp: temperature to set
185 * This function gives the ability to set emulated value of temperature,
186 * which is handy for debugging
188 * Return: zero on success, error code otherwise
190 static int of_thermal_set_emul_temp(struct thermal_zone_device *tz,
193 struct __thermal_zone *data = tz->devdata;
195 return data->ops->set_emul_temp(data->sensor_data, temp);
198 static int of_thermal_get_trend(struct thermal_zone_device *tz, int trip,
199 enum thermal_trend *trend)
201 struct __thermal_zone *data = tz->devdata;
203 if (!data->ops->get_trend)
206 return data->ops->get_trend(data->sensor_data, trip, trend);
209 static int of_thermal_bind(struct thermal_zone_device *thermal,
210 struct thermal_cooling_device *cdev)
212 struct __thermal_zone *data = thermal->devdata;
215 if (!data || IS_ERR(data))
218 /* find where to bind */
219 for (i = 0; i < data->num_tbps; i++) {
220 struct __thermal_bind_params *tbp = data->tbps + i;
222 if (tbp->cooling_device == cdev->np) {
225 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;
244 if (!data || IS_ERR(data))
247 /* find where to unbind */
248 for (i = 0; i < data->num_tbps; i++) {
249 struct __thermal_bind_params *tbp = data->tbps + i;
251 if (tbp->cooling_device == cdev->np) {
254 ret = thermal_zone_unbind_cooling_device(thermal,
264 static int of_thermal_get_mode(struct thermal_zone_device *tz,
265 enum thermal_device_mode *mode)
267 struct __thermal_zone *data = tz->devdata;
274 static int of_thermal_set_mode(struct thermal_zone_device *tz,
275 enum thermal_device_mode mode)
277 struct __thermal_zone *data = tz->devdata;
279 mutex_lock(&tz->lock);
281 if (mode == THERMAL_DEVICE_ENABLED)
282 tz->polling_delay = data->polling_delay;
284 tz->polling_delay = 0;
286 mutex_unlock(&tz->lock);
289 thermal_zone_device_update(tz, THERMAL_EVENT_UNSPECIFIED);
294 static int of_thermal_get_trip_type(struct thermal_zone_device *tz, int trip,
295 enum thermal_trip_type *type)
297 struct __thermal_zone *data = tz->devdata;
299 if (trip >= data->ntrips || trip < 0)
302 *type = data->trips[trip].type;
307 static int of_thermal_get_trip_temp(struct thermal_zone_device *tz, int trip,
310 struct __thermal_zone *data = tz->devdata;
312 if (trip >= data->ntrips || trip < 0)
315 *temp = data->trips[trip].temperature;
320 static int of_thermal_set_trip_temp(struct thermal_zone_device *tz, int trip,
323 struct __thermal_zone *data = tz->devdata;
325 if (trip >= data->ntrips || trip < 0)
328 if (data->ops->set_trip_temp) {
331 ret = data->ops->set_trip_temp(data->sensor_data, trip, temp);
336 /* thermal framework should take care of data->mask & (1 << trip) */
337 data->trips[trip].temperature = temp;
342 static int of_thermal_get_trip_hyst(struct thermal_zone_device *tz, int trip,
345 struct __thermal_zone *data = tz->devdata;
347 if (trip >= data->ntrips || trip < 0)
350 *hyst = data->trips[trip].hysteresis;
355 static int of_thermal_set_trip_hyst(struct thermal_zone_device *tz, int trip,
358 struct __thermal_zone *data = tz->devdata;
360 if (trip >= data->ntrips || trip < 0)
363 /* thermal framework should take care of data->mask & (1 << trip) */
364 data->trips[trip].hysteresis = hyst;
369 static int of_thermal_get_crit_temp(struct thermal_zone_device *tz,
372 struct __thermal_zone *data = tz->devdata;
375 for (i = 0; i < data->ntrips; i++)
376 if (data->trips[i].type == THERMAL_TRIP_CRITICAL) {
377 *temp = data->trips[i].temperature;
384 static struct thermal_zone_device_ops of_thermal_ops = {
385 .get_mode = of_thermal_get_mode,
386 .set_mode = of_thermal_set_mode,
388 .get_trip_type = of_thermal_get_trip_type,
389 .get_trip_temp = of_thermal_get_trip_temp,
390 .set_trip_temp = of_thermal_set_trip_temp,
391 .get_trip_hyst = of_thermal_get_trip_hyst,
392 .set_trip_hyst = of_thermal_set_trip_hyst,
393 .get_crit_temp = of_thermal_get_crit_temp,
395 .bind = of_thermal_bind,
396 .unbind = of_thermal_unbind,
401 static struct thermal_zone_device *
402 thermal_zone_of_add_sensor(struct device_node *zone,
403 struct device_node *sensor, void *data,
404 const struct thermal_zone_of_device_ops *ops)
406 struct thermal_zone_device *tzd;
407 struct __thermal_zone *tz;
409 tzd = thermal_zone_get_zone_by_name(zone->name);
411 return ERR_PTR(-EPROBE_DEFER);
416 return ERR_PTR(-EINVAL);
418 mutex_lock(&tzd->lock);
420 tz->sensor_data = data;
422 tzd->ops->get_temp = of_thermal_get_temp;
423 tzd->ops->get_trend = of_thermal_get_trend;
426 * The thermal zone core will calculate the window if they have set the
427 * optional set_trips pointer.
430 tzd->ops->set_trips = of_thermal_set_trips;
432 if (ops->set_emul_temp)
433 tzd->ops->set_emul_temp = of_thermal_set_emul_temp;
435 mutex_unlock(&tzd->lock);
441 * thermal_zone_of_sensor_register - registers a sensor to a DT thermal zone
442 * @dev: a valid struct device pointer of a sensor device. Must contain
443 * a valid .of_node, for the sensor node.
444 * @sensor_id: a sensor identifier, in case the sensor IP has more
446 * @data: a private pointer (owned by the caller) that will be passed
447 * back, when a temperature reading is needed.
448 * @ops: struct thermal_zone_of_device_ops *. Must contain at least .get_temp.
450 * This function will search the list of thermal zones described in device
451 * tree and look for the zone that refer to the sensor device pointed by
452 * @dev->of_node as temperature providers. For the zone pointing to the
453 * sensor node, the sensor will be added to the DT thermal zone device.
455 * The thermal zone temperature is provided by the @get_temp function
456 * pointer. When called, it will have the private pointer @data back.
458 * The thermal zone temperature trend is provided by the @get_trend function
459 * pointer. When called, it will have the private pointer @data back.
462 * 01 - This function must enqueue the new sensor instead of using
463 * it as the only source of temperature values.
465 * 02 - There must be a way to match the sensor with all thermal zones
468 * Return: On success returns a valid struct thermal_zone_device,
469 * otherwise, it returns a corresponding ERR_PTR(). Caller must
470 * check the return value with help of IS_ERR() helper.
472 struct thermal_zone_device *
473 thermal_zone_of_sensor_register(struct device *dev, int sensor_id, void *data,
474 const struct thermal_zone_of_device_ops *ops)
476 struct device_node *np, *child, *sensor_np;
477 struct thermal_zone_device *tzd = ERR_PTR(-ENODEV);
479 np = of_find_node_by_name(NULL, "thermal-zones");
481 return ERR_PTR(-ENODEV);
483 if (!dev || !dev->of_node) {
485 return ERR_PTR(-EINVAL);
488 sensor_np = of_node_get(dev->of_node);
490 for_each_available_child_of_node(np, child) {
491 struct of_phandle_args sensor_specs;
494 /* For now, thermal framework supports only 1 sensor per zone */
495 ret = of_parse_phandle_with_args(child, "thermal-sensors",
496 "#thermal-sensor-cells",
501 if (sensor_specs.args_count >= 1) {
502 id = sensor_specs.args[0];
503 WARN(sensor_specs.args_count > 1,
504 "%s: too many cells in sensor specifier %d\n",
505 sensor_specs.np->name, sensor_specs.args_count);
510 if (sensor_specs.np == sensor_np && id == sensor_id) {
511 tzd = thermal_zone_of_add_sensor(child, sensor_np,
514 tzd->ops->set_mode(tzd, THERMAL_DEVICE_ENABLED);
516 of_node_put(sensor_specs.np);
520 of_node_put(sensor_specs.np);
523 of_node_put(sensor_np);
528 EXPORT_SYMBOL_GPL(thermal_zone_of_sensor_register);
531 * thermal_zone_of_sensor_unregister - unregisters a sensor from a DT thermal zone
532 * @dev: a valid struct device pointer of a sensor device. Must contain
533 * a valid .of_node, for the sensor node.
534 * @tzd: a pointer to struct thermal_zone_device where the sensor is registered.
536 * This function removes the sensor callbacks and private data from the
537 * thermal zone device registered with thermal_zone_of_sensor_register()
538 * API. It will also silent the zone by remove the .get_temp() and .get_trend()
539 * thermal zone device callbacks.
541 * TODO: When the support to several sensors per zone is added, this
542 * function must search the sensor list based on @dev parameter.
545 void thermal_zone_of_sensor_unregister(struct device *dev,
546 struct thermal_zone_device *tzd)
548 struct __thermal_zone *tz;
550 if (!dev || !tzd || !tzd->devdata)
555 /* no __thermal_zone, nothing to be done */
559 mutex_lock(&tzd->lock);
560 tzd->ops->get_temp = NULL;
561 tzd->ops->get_trend = NULL;
562 tzd->ops->set_emul_temp = NULL;
565 tz->sensor_data = NULL;
566 mutex_unlock(&tzd->lock);
568 EXPORT_SYMBOL_GPL(thermal_zone_of_sensor_unregister);
570 static void devm_thermal_zone_of_sensor_release(struct device *dev, void *res)
572 thermal_zone_of_sensor_unregister(dev,
573 *(struct thermal_zone_device **)res);
576 static int devm_thermal_zone_of_sensor_match(struct device *dev, void *res,
579 struct thermal_zone_device **r = res;
581 if (WARN_ON(!r || !*r))
588 * devm_thermal_zone_of_sensor_register - Resource managed version of
589 * thermal_zone_of_sensor_register()
590 * @dev: a valid struct device pointer of a sensor device. Must contain
591 * a valid .of_node, for the sensor node.
592 * @sensor_id: a sensor identifier, in case the sensor IP has more
594 * @data: a private pointer (owned by the caller) that will be passed
595 * back, when a temperature reading is needed.
596 * @ops: struct thermal_zone_of_device_ops *. Must contain at least .get_temp.
598 * Refer thermal_zone_of_sensor_register() for more details.
600 * Return: On success returns a valid struct thermal_zone_device,
601 * otherwise, it returns a corresponding ERR_PTR(). Caller must
602 * check the return value with help of IS_ERR() helper.
603 * Registered thermal_zone_device device will automatically be
604 * released when device is unbounded.
606 struct thermal_zone_device *devm_thermal_zone_of_sensor_register(
607 struct device *dev, int sensor_id,
608 void *data, const struct thermal_zone_of_device_ops *ops)
610 struct thermal_zone_device **ptr, *tzd;
612 ptr = devres_alloc(devm_thermal_zone_of_sensor_release, sizeof(*ptr),
615 return ERR_PTR(-ENOMEM);
617 tzd = thermal_zone_of_sensor_register(dev, sensor_id, data, ops);
624 devres_add(dev, ptr);
628 EXPORT_SYMBOL_GPL(devm_thermal_zone_of_sensor_register);
631 * devm_thermal_zone_of_sensor_unregister - Resource managed version of
632 * thermal_zone_of_sensor_unregister().
633 * @dev: Device for which which resource was allocated.
634 * @tzd: a pointer to struct thermal_zone_device where the sensor is registered.
636 * This function removes the sensor callbacks and private data from the
637 * thermal zone device registered with devm_thermal_zone_of_sensor_register()
638 * API. It will also silent the zone by remove the .get_temp() and .get_trend()
639 * thermal zone device callbacks.
640 * Normally this function will not need to be called and the resource
641 * management code will ensure that the resource is freed.
643 void devm_thermal_zone_of_sensor_unregister(struct device *dev,
644 struct thermal_zone_device *tzd)
646 WARN_ON(devres_release(dev, devm_thermal_zone_of_sensor_release,
647 devm_thermal_zone_of_sensor_match, tzd));
649 EXPORT_SYMBOL_GPL(devm_thermal_zone_of_sensor_unregister);
651 /*** functions parsing device tree nodes ***/
654 * thermal_of_populate_bind_params - parse and fill cooling map data
655 * @np: DT node containing a cooling-map node
656 * @__tbp: data structure to be filled with cooling map info
657 * @trips: array of thermal zone trip points
658 * @ntrips: number of trip points inside trips.
660 * This function parses a cooling-map type of node represented by
661 * @np parameter and fills the read data into @__tbp data structure.
662 * It needs the already parsed array of trip points of the thermal zone
665 * Return: 0 on success, proper error code otherwise
667 static int thermal_of_populate_bind_params(struct device_node *np,
668 struct __thermal_bind_params *__tbp,
669 struct thermal_trip *trips,
672 struct of_phandle_args cooling_spec;
673 struct device_node *trip;
677 /* Default weight. Usage is optional */
678 __tbp->usage = THERMAL_WEIGHT_DEFAULT;
679 ret = of_property_read_u32(np, "contribution", &prop);
683 trip = of_parse_phandle(np, "trip", 0);
685 pr_err("missing trip property\n");
689 /* match using device_node */
690 for (i = 0; i < ntrips; i++)
691 if (trip == trips[i].np) {
701 ret = of_parse_phandle_with_args(np, "cooling-device", "#cooling-cells",
704 pr_err("missing cooling_device property\n");
707 __tbp->cooling_device = cooling_spec.np;
708 if (cooling_spec.args_count >= 2) { /* at least min and max */
709 __tbp->min = cooling_spec.args[0];
710 __tbp->max = cooling_spec.args[1];
712 pr_err("wrong reference to cooling device, missing limits\n");
722 * It maps 'enum thermal_trip_type' found in include/linux/thermal.h
723 * into the device tree binding of 'trip', property type.
725 static const char * const trip_types[] = {
726 [THERMAL_TRIP_ACTIVE] = "active",
727 [THERMAL_TRIP_PASSIVE] = "passive",
728 [THERMAL_TRIP_HOT] = "hot",
729 [THERMAL_TRIP_CRITICAL] = "critical",
733 * thermal_of_get_trip_type - Get phy mode for given device_node
734 * @np: Pointer to the given device_node
735 * @type: Pointer to resulting trip type
737 * The function gets trip type string from property 'type',
738 * and store its index in trip_types table in @type,
740 * Return: 0 on success, or errno in error case.
742 static int thermal_of_get_trip_type(struct device_node *np,
743 enum thermal_trip_type *type)
748 err = of_property_read_string(np, "type", &t);
752 for (i = 0; i < ARRAY_SIZE(trip_types); i++)
753 if (!strcasecmp(t, trip_types[i])) {
762 * thermal_of_populate_trip - parse and fill one trip point data
763 * @np: DT node containing a trip point node
764 * @trip: trip point data structure to be filled up
766 * This function parses a trip point type of node represented by
767 * @np parameter and fills the read data into @trip data structure.
769 * Return: 0 on success, proper error code otherwise
771 static int thermal_of_populate_trip(struct device_node *np,
772 struct thermal_trip *trip)
777 ret = of_property_read_u32(np, "temperature", &prop);
779 pr_err("missing temperature property\n");
782 trip->temperature = prop;
784 ret = of_property_read_u32(np, "hysteresis", &prop);
786 pr_err("missing hysteresis property\n");
789 trip->hysteresis = prop;
791 ret = thermal_of_get_trip_type(np, &trip->type);
793 pr_err("wrong trip type property\n");
797 /* Required for cooling map matching */
805 * thermal_of_build_thermal_zone - parse and fill one thermal zone data
806 * @np: DT node containing a thermal zone node
808 * This function parses a thermal zone type of node represented by
809 * @np parameter and fills the read data into a __thermal_zone data structure
810 * and return this pointer.
812 * TODO: Missing properties to parse: thermal-sensor-names
814 * Return: On success returns a valid struct __thermal_zone,
815 * otherwise, it returns a corresponding ERR_PTR(). Caller must
816 * check the return value with help of IS_ERR() helper.
818 static struct __thermal_zone
819 __init *thermal_of_build_thermal_zone(struct device_node *np)
821 struct device_node *child = NULL, *gchild;
822 struct __thermal_zone *tz;
827 pr_err("no thermal zone np\n");
828 return ERR_PTR(-EINVAL);
831 tz = kzalloc(sizeof(*tz), GFP_KERNEL);
833 return ERR_PTR(-ENOMEM);
835 ret = of_property_read_u32(np, "polling-delay-passive", &prop);
837 pr_err("missing polling-delay-passive property\n");
840 tz->passive_delay = prop;
842 ret = of_property_read_u32(np, "polling-delay", &prop);
844 pr_err("missing polling-delay property\n");
847 tz->polling_delay = prop;
850 * REVIST: for now, the thermal framework supports only
851 * one sensor per thermal zone. Thus, we are considering
852 * only the first two values as slope and offset.
854 ret = of_property_read_u32_array(np, "coefficients", coef, 2);
857 tz->offset = coef[1];
864 child = of_get_child_by_name(np, "trips");
866 /* No trips provided */
870 tz->ntrips = of_get_child_count(child);
871 if (tz->ntrips == 0) /* must have at least one child */
874 tz->trips = kzalloc(tz->ntrips * sizeof(*tz->trips), GFP_KERNEL);
881 for_each_child_of_node(child, gchild) {
882 ret = thermal_of_populate_trip(gchild, &tz->trips[i++]);
890 child = of_get_child_by_name(np, "cooling-maps");
892 /* cooling-maps not provided */
896 tz->num_tbps = of_get_child_count(child);
897 if (tz->num_tbps == 0)
900 tz->tbps = kzalloc(tz->num_tbps * sizeof(*tz->tbps), GFP_KERNEL);
907 for_each_child_of_node(child, gchild) {
908 ret = thermal_of_populate_bind_params(gchild, &tz->tbps[i++],
909 tz->trips, tz->ntrips);
916 tz->mode = THERMAL_DEVICE_DISABLED;
921 for (i = i - 1; i >= 0; i--)
922 of_node_put(tz->tbps[i].cooling_device);
925 for (i = 0; i < tz->ntrips; i++)
926 of_node_put(tz->trips[i].np);
936 static inline void of_thermal_free_zone(struct __thermal_zone *tz)
940 for (i = 0; i < tz->num_tbps; i++)
941 of_node_put(tz->tbps[i].cooling_device);
943 for (i = 0; i < tz->ntrips; i++)
944 of_node_put(tz->trips[i].np);
950 * of_parse_thermal_zones - parse device tree thermal data
952 * Initialization function that can be called by machine initialization
953 * code to parse thermal data and populate the thermal framework
954 * with hardware thermal zones info. This function only parses thermal zones.
955 * Cooling devices and sensor devices nodes are supposed to be parsed
956 * by their respective drivers.
958 * Return: 0 on success, proper error code otherwise
961 int __init of_parse_thermal_zones(void)
963 struct device_node *np, *child;
964 struct __thermal_zone *tz;
965 struct thermal_zone_device_ops *ops;
967 np = of_find_node_by_name(NULL, "thermal-zones");
969 pr_debug("unable to find thermal zones\n");
970 return 0; /* Run successfully on systems without thermal DT */
973 for_each_available_child_of_node(np, child) {
974 struct thermal_zone_device *zone;
975 struct thermal_zone_params *tzp;
979 tz = thermal_of_build_thermal_zone(child);
981 pr_err("failed to build thermal zone %s: %ld\n",
987 ops = kmemdup(&of_thermal_ops, sizeof(*ops), GFP_KERNEL);
991 tzp = kzalloc(sizeof(*tzp), GFP_KERNEL);
997 /* No hwmon because there might be hwmon drivers registering */
998 tzp->no_hwmon = true;
1000 if (!of_property_read_u32(child, "sustainable-power", &prop))
1001 tzp->sustainable_power = prop;
1003 for (i = 0; i < tz->ntrips; i++)
1006 /* these two are left for temperature drivers to use */
1007 tzp->slope = tz->slope;
1008 tzp->offset = tz->offset;
1010 zone = thermal_zone_device_register(child->name, tz->ntrips,
1016 pr_err("Failed to build %s zone %ld\n", child->name,
1020 of_thermal_free_zone(tz);
1021 /* attempting to build remaining zones still */
1031 of_thermal_free_zone(tz);
1033 /* no memory available, so free what we have built */
1034 of_thermal_destroy_zones();
1040 * of_thermal_destroy_zones - remove all zones parsed and allocated resources
1042 * Finds all zones parsed and added to the thermal framework and remove them
1043 * from the system, together with their resources.
1046 void of_thermal_destroy_zones(void)
1048 struct device_node *np, *child;
1050 np = of_find_node_by_name(NULL, "thermal-zones");
1052 pr_debug("unable to find thermal zones\n");
1056 for_each_available_child_of_node(np, child) {
1057 struct thermal_zone_device *zone;
1059 zone = thermal_zone_get_zone_by_name(child->name);
1063 thermal_zone_device_unregister(zone);
1066 of_thermal_free_zone(zone->devdata);