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