xref: /linux/drivers/thermal/thermal_helpers.c (revision c434e25b62f8efcfbb6bf1f7ce55960206c1137e)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  *  thermal_helpers.c - helper functions to handle thermal devices
4  *
5  *  Copyright (C) 2016 Eduardo Valentin <edubezval@gmail.com>
6  *
7  *  Highly based on original thermal_core.c
8  *  Copyright (C) 2008 Intel Corp
9  *  Copyright (C) 2008 Zhang Rui <rui.zhang@intel.com>
10  *  Copyright (C) 2008 Sujith Thomas <sujith.thomas@intel.com>
11  */
12 
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 
15 #include <linux/device.h>
16 #include <linux/err.h>
17 #include <linux/export.h>
18 #include <linux/slab.h>
19 #include <linux/string.h>
20 #include <linux/sysfs.h>
21 
22 #include "thermal_core.h"
23 #include "thermal_trace.h"
24 
25 int get_tz_trend(struct thermal_zone_device *tz, const struct thermal_trip *trip)
26 {
27 	enum thermal_trend trend;
28 
29 	if (tz->emul_temperature || !tz->ops.get_trend ||
30 	    tz->ops.get_trend(tz, trip, &trend)) {
31 		if (tz->temperature > tz->last_temperature)
32 			trend = THERMAL_TREND_RAISING;
33 		else if (tz->temperature < tz->last_temperature)
34 			trend = THERMAL_TREND_DROPPING;
35 		else
36 			trend = THERMAL_TREND_STABLE;
37 	}
38 
39 	return trend;
40 }
41 
42 static struct thermal_instance *get_instance(struct thermal_zone_device *tz,
43 					     struct thermal_cooling_device *cdev,
44 					     const struct thermal_trip *trip)
45 {
46 	struct thermal_instance *ti;
47 
48 	list_for_each_entry(ti, &tz->thermal_instances, tz_node) {
49 		if (ti->trip == trip && ti->cdev == cdev)
50 			return ti;
51 	}
52 
53 	return NULL;
54 }
55 
56 bool thermal_trip_is_bound_to_cdev(struct thermal_zone_device *tz,
57 				   const struct thermal_trip *trip,
58 				   struct thermal_cooling_device *cdev)
59 {
60 	bool ret;
61 
62 	mutex_lock(&tz->lock);
63 	mutex_lock(&cdev->lock);
64 
65 	ret = !!get_instance(tz, cdev, trip);
66 
67 	mutex_unlock(&cdev->lock);
68 	mutex_unlock(&tz->lock);
69 
70 	return ret;
71 }
72 EXPORT_SYMBOL_GPL(thermal_trip_is_bound_to_cdev);
73 
74 struct thermal_instance *
75 get_thermal_instance(struct thermal_zone_device *tz,
76 		     struct thermal_cooling_device *cdev, int trip_index)
77 {
78 	struct thermal_instance *ti;
79 
80 	mutex_lock(&tz->lock);
81 	mutex_lock(&cdev->lock);
82 
83 	ti = get_instance(tz, cdev, &tz->trips[trip_index].trip);
84 
85 	mutex_unlock(&cdev->lock);
86 	mutex_unlock(&tz->lock);
87 
88 	return ti;
89 }
90 EXPORT_SYMBOL(get_thermal_instance);
91 
92 /**
93  * __thermal_zone_get_temp() - returns the temperature of a thermal zone
94  * @tz: a valid pointer to a struct thermal_zone_device
95  * @temp: a valid pointer to where to store the resulting temperature.
96  *
97  * When a valid thermal zone reference is passed, it will fetch its
98  * temperature and fill @temp.
99  *
100  * Both tz and tz->ops must be valid pointers when calling this function,
101  * and the tz->ops.get_temp callback must be provided.
102  * The function must be called under tz->lock.
103  *
104  * Return: On success returns 0, an error code otherwise
105  */
106 int __thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp)
107 {
108 	const struct thermal_trip_desc *td;
109 	int crit_temp = INT_MAX;
110 	int ret = -EINVAL;
111 
112 	lockdep_assert_held(&tz->lock);
113 
114 	ret = tz->ops.get_temp(tz, temp);
115 
116 	if (IS_ENABLED(CONFIG_THERMAL_EMULATION) && tz->emul_temperature) {
117 		for_each_trip_desc(tz, td) {
118 			const struct thermal_trip *trip = &td->trip;
119 
120 			if (trip->type == THERMAL_TRIP_CRITICAL) {
121 				crit_temp = trip->temperature;
122 				break;
123 			}
124 		}
125 
126 		/*
127 		 * Only allow emulating a temperature when the real temperature
128 		 * is below the critical temperature so that the emulation code
129 		 * cannot hide critical conditions.
130 		 */
131 		if (!ret && *temp < crit_temp)
132 			*temp = tz->emul_temperature;
133 	}
134 
135 	if (ret)
136 		dev_dbg(&tz->device, "Failed to get temperature: %d\n", ret);
137 
138 	return ret;
139 }
140 
141 /**
142  * thermal_zone_get_temp() - returns the temperature of a thermal zone
143  * @tz: a valid pointer to a struct thermal_zone_device
144  * @temp: a valid pointer to where to store the resulting temperature.
145  *
146  * When a valid thermal zone reference is passed, it will fetch its
147  * temperature and fill @temp.
148  *
149  * Return: On success returns 0, an error code otherwise
150  */
151 int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp)
152 {
153 	int ret;
154 
155 	if (IS_ERR_OR_NULL(tz))
156 		return -EINVAL;
157 
158 	mutex_lock(&tz->lock);
159 
160 	if (!tz->ops.get_temp) {
161 		ret = -EINVAL;
162 		goto unlock;
163 	}
164 
165 	ret = __thermal_zone_get_temp(tz, temp);
166 
167 unlock:
168 	mutex_unlock(&tz->lock);
169 
170 	return ret;
171 }
172 EXPORT_SYMBOL_GPL(thermal_zone_get_temp);
173 
174 static int thermal_cdev_set_cur_state(struct thermal_cooling_device *cdev, int state)
175 {
176 	int ret;
177 
178 	/*
179 	 * No check is needed for the ops->set_cur_state as the
180 	 * registering function checked the ops are correctly set
181 	 */
182 	ret = cdev->ops->set_cur_state(cdev, state);
183 	if (ret)
184 		return ret;
185 
186 	thermal_notify_cdev_state_update(cdev, state);
187 	thermal_cooling_device_stats_update(cdev, state);
188 	thermal_debug_cdev_state_update(cdev, state);
189 
190 	return 0;
191 }
192 
193 void __thermal_cdev_update(struct thermal_cooling_device *cdev)
194 {
195 	struct thermal_instance *instance;
196 	unsigned long target = 0;
197 
198 	/* Make sure cdev enters the deepest cooling state */
199 	list_for_each_entry(instance, &cdev->thermal_instances, cdev_node) {
200 		dev_dbg(&cdev->device, "zone%d->target=%lu\n",
201 			instance->tz->id, instance->target);
202 		if (instance->target == THERMAL_NO_TARGET)
203 			continue;
204 		if (instance->target > target)
205 			target = instance->target;
206 	}
207 
208 	thermal_cdev_set_cur_state(cdev, target);
209 
210 	trace_cdev_update(cdev, target);
211 	dev_dbg(&cdev->device, "set to state %lu\n", target);
212 }
213 
214 /**
215  * thermal_cdev_update - update cooling device state if needed
216  * @cdev:	pointer to struct thermal_cooling_device
217  *
218  * Update the cooling device state if there is a need.
219  */
220 void thermal_cdev_update(struct thermal_cooling_device *cdev)
221 {
222 	mutex_lock(&cdev->lock);
223 	if (!cdev->updated) {
224 		__thermal_cdev_update(cdev);
225 		cdev->updated = true;
226 	}
227 	mutex_unlock(&cdev->lock);
228 }
229 
230 /**
231  * thermal_zone_get_slope - return the slope attribute of the thermal zone
232  * @tz: thermal zone device with the slope attribute
233  *
234  * Return: If the thermal zone device has a slope attribute, return it, else
235  * return 1.
236  */
237 int thermal_zone_get_slope(struct thermal_zone_device *tz)
238 {
239 	if (tz && tz->tzp)
240 		return tz->tzp->slope;
241 	return 1;
242 }
243 EXPORT_SYMBOL_GPL(thermal_zone_get_slope);
244 
245 /**
246  * thermal_zone_get_offset - return the offset attribute of the thermal zone
247  * @tz: thermal zone device with the offset attribute
248  *
249  * Return: If the thermal zone device has a offset attribute, return it, else
250  * return 0.
251  */
252 int thermal_zone_get_offset(struct thermal_zone_device *tz)
253 {
254 	if (tz && tz->tzp)
255 		return tz->tzp->offset;
256 	return 0;
257 }
258 EXPORT_SYMBOL_GPL(thermal_zone_get_offset);
259