blob: 4d75f6b0b442c1922d84a8118b3c85cab346723b [file] [log] [blame]
Durgadoss Re151a202012-09-21 12:06:04 +05301/*
2 * step_wise.c - A step-by-step Thermal throttling governor
3 *
4 * Copyright (C) 2012 Intel Corp
5 * Copyright (C) 2012 Durgadoss R <durgadoss.r@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 *
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 */
24
Durgadoss Re151a202012-09-21 12:06:04 +053025#include <linux/thermal.h>
Punit Agrawal208cd822014-07-29 11:50:50 +010026#include <trace/events/thermal.h>
Durgadoss Re151a202012-09-21 12:06:04 +053027
28#include "thermal_core.h"
29
30/*
31 * If the temperature is higher than a trip point,
32 * a. if the trend is THERMAL_TREND_RAISING, use higher cooling
33 * state for this trip point
Daniel Lezcanod8914532017-10-19 19:05:58 +020034 * b. if the trend is THERMAL_TREND_DROPPING, do nothing
Zhang Rui3dbfff32012-11-19 16:10:20 +080035 * c. if the trend is THERMAL_TREND_RAISE_FULL, use upper limit
36 * for this trip point
37 * d. if the trend is THERMAL_TREND_DROP_FULL, use lower limit
38 * for this trip point
Ram Chandrasekarc6b140d2016-07-20 16:16:52 -060039 * If the temperature is lower than a hysteresis temperature,
Zhang Rui3dbfff32012-11-19 16:10:20 +080040 * a. if the trend is THERMAL_TREND_RAISING, do nothing
41 * b. if the trend is THERMAL_TREND_DROPPING, use lower cooling
42 * state for this trip point, if the cooling state already
43 * equals lower limit, deactivate the thermal instance
44 * c. if the trend is THERMAL_TREND_RAISE_FULL, do nothing
45 * d. if the trend is THERMAL_TREND_DROP_FULL, use lower limit,
46 * if the cooling state already equals lower limit,
Brian Norris56b613e2015-01-29 09:57:21 -080047 * deactivate the thermal instance
Durgadoss Re151a202012-09-21 12:06:04 +053048 */
49static unsigned long get_target_state(struct thermal_instance *instance,
Zhang Rui3dbfff32012-11-19 16:10:20 +080050 enum thermal_trend trend, bool throttle)
Durgadoss Re151a202012-09-21 12:06:04 +053051{
52 struct thermal_cooling_device *cdev = instance->cdev;
53 unsigned long cur_state;
Eduardo Valentinca56caa2013-06-17 21:24:24 +080054 unsigned long next_target;
Durgadoss Re151a202012-09-21 12:06:04 +053055
Eduardo Valentinca56caa2013-06-17 21:24:24 +080056 /*
57 * We keep this instance the way it is by default.
58 * Otherwise, we use the current state of the
59 * cdev in use to determine the next_target.
60 */
Durgadoss Re151a202012-09-21 12:06:04 +053061 cdev->ops->get_cur_state(cdev, &cur_state);
Eduardo Valentinca56caa2013-06-17 21:24:24 +080062 next_target = instance->target;
Aaron Lu06475b52013-12-02 13:54:26 +080063 dev_dbg(&cdev->device, "cur_state=%ld\n", cur_state);
Durgadoss Re151a202012-09-21 12:06:04 +053064
Zhang Ruibb431ba2015-10-30 16:31:47 +080065 if (!instance->initialized) {
66 if (throttle) {
67 next_target = (cur_state + 1) >= instance->upper ?
68 instance->upper :
69 ((cur_state + 1) < instance->lower ?
70 instance->lower : (cur_state + 1));
71 } else {
72 next_target = THERMAL_NO_TARGET;
73 }
74
75 return next_target;
76 }
77
Ram Chandrasekar40f107b2017-06-06 16:23:10 -060078 /*
79 * If there is no new throttle request and if the thermal zone
80 * wasn't requesting any previous mitigation, then skip the
81 * evaluation.
82 */
83 if (instance->target == THERMAL_NO_TARGET && !throttle)
84 return next_target;
85
Zhang Rui3dbfff32012-11-19 16:10:20 +080086 switch (trend) {
87 case THERMAL_TREND_RAISING:
Andrew Brestickere79fe642013-04-09 21:59:47 +000088 if (throttle) {
Eduardo Valentinca56caa2013-06-17 21:24:24 +080089 next_target = cur_state < instance->upper ?
Zhang Rui3dbfff32012-11-19 16:10:20 +080090 (cur_state + 1) : instance->upper;
Eduardo Valentinca56caa2013-06-17 21:24:24 +080091 if (next_target < instance->lower)
92 next_target = instance->lower;
Andrew Brestickere79fe642013-04-09 21:59:47 +000093 }
Zhang Rui3dbfff32012-11-19 16:10:20 +080094 break;
95 case THERMAL_TREND_RAISE_FULL:
96 if (throttle)
Eduardo Valentinca56caa2013-06-17 21:24:24 +080097 next_target = instance->upper;
Zhang Rui3dbfff32012-11-19 16:10:20 +080098 break;
99 case THERMAL_TREND_DROPPING:
Lukasz Majewski26bb0e92014-09-24 10:27:10 +0200100 if (cur_state <= instance->lower) {
Zhang Rui3dbfff32012-11-19 16:10:20 +0800101 if (!throttle)
Eduardo Valentinca56caa2013-06-17 21:24:24 +0800102 next_target = THERMAL_NO_TARGET;
Andrew Brestickere79fe642013-04-09 21:59:47 +0000103 } else {
Daniel Lezcanod8914532017-10-19 19:05:58 +0200104 if (!throttle) {
Ram Chandrasekar19263c92017-06-26 12:56:21 -0600105 next_target = cur_state - 1;
Daniel Lezcanod8914532017-10-19 19:05:58 +0200106 if (next_target > instance->upper)
107 next_target = instance->upper;
108 }
Andrew Brestickere79fe642013-04-09 21:59:47 +0000109 }
Zhang Rui3dbfff32012-11-19 16:10:20 +0800110 break;
111 case THERMAL_TREND_DROP_FULL:
112 if (cur_state == instance->lower) {
113 if (!throttle)
Eduardo Valentinca56caa2013-06-17 21:24:24 +0800114 next_target = THERMAL_NO_TARGET;
Zhang Rui3dbfff32012-11-19 16:10:20 +0800115 } else
Eduardo Valentinca56caa2013-06-17 21:24:24 +0800116 next_target = instance->lower;
Zhang Rui3dbfff32012-11-19 16:10:20 +0800117 break;
118 default:
119 break;
Durgadoss Re151a202012-09-21 12:06:04 +0530120 }
121
Eduardo Valentinca56caa2013-06-17 21:24:24 +0800122 return next_target;
Durgadoss Re151a202012-09-21 12:06:04 +0530123}
124
125static void update_passive_instance(struct thermal_zone_device *tz,
126 enum thermal_trip_type type, int value)
127{
128 /*
129 * If value is +1, activate a passive instance.
130 * If value is -1, deactivate a passive instance.
131 */
132 if (type == THERMAL_TRIP_PASSIVE || type == THERMAL_TRIPS_NONE)
133 tz->passive += value;
134}
135
Durgadoss Re151a202012-09-21 12:06:04 +0530136static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip)
137{
Ram Chandrasekarc6b140d2016-07-20 16:16:52 -0600138 int trip_temp, hyst_temp;
Durgadoss Re151a202012-09-21 12:06:04 +0530139 enum thermal_trip_type trip_type;
140 enum thermal_trend trend;
Zhang Ruib8bb6cb2012-11-22 15:45:02 +0800141 struct thermal_instance *instance;
142 bool throttle = false;
143 int old_target;
Durgadoss Re151a202012-09-21 12:06:04 +0530144
145 if (trip == THERMAL_TRIPS_NONE) {
Ram Chandrasekarc6b140d2016-07-20 16:16:52 -0600146 hyst_temp = trip_temp = tz->forced_passive;
Durgadoss Re151a202012-09-21 12:06:04 +0530147 trip_type = THERMAL_TRIPS_NONE;
148 } else {
149 tz->ops->get_trip_temp(tz, trip, &trip_temp);
Ram Chandrasekarc6b140d2016-07-20 16:16:52 -0600150 if (tz->ops->get_trip_hyst) {
151 tz->ops->get_trip_hyst(tz, trip, &hyst_temp);
152 hyst_temp = trip_temp - hyst_temp;
153 } else {
154 hyst_temp = trip_temp;
155 }
Durgadoss Re151a202012-09-21 12:06:04 +0530156 tz->ops->get_trip_type(tz, trip, &trip_type);
157 }
158
159 trend = get_tz_trend(tz, trip);
160
Ram Chandrasekarc6b140d2016-07-20 16:16:52 -0600161 dev_dbg(&tz->device,
162 "Trip%d[type=%d,temp=%d,hyst=%d]:trend=%d,throttle=%d\n",
163 trip, trip_type, trip_temp, hyst_temp, trend, throttle);
Aaron Lu06475b52013-12-02 13:54:26 +0800164
Durgadoss Re151a202012-09-21 12:06:04 +0530165 mutex_lock(&tz->lock);
166
Zhang Ruib8bb6cb2012-11-22 15:45:02 +0800167 list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
168 if (instance->trip != trip)
169 continue;
170
171 old_target = instance->target;
Ram Chandrasekarc6b140d2016-07-20 16:16:52 -0600172 /*
173 * Step wise has to lower the mitigation only if the
174 * temperature goes below the hysteresis temperature.
175 * Atleast, it has to hold on to mitigation device lower
176 * limit if the temperature is above the hysteresis
177 * temperature.
178 */
179 if (tz->temperature >= trip_temp ||
Ram Chandrasekar14f93182017-10-17 17:34:21 -0600180 (tz->temperature > hyst_temp &&
Ram Chandrasekar5b1c0d12017-03-28 11:35:40 -0600181 old_target != THERMAL_NO_TARGET))
Ram Chandrasekarc6b140d2016-07-20 16:16:52 -0600182 throttle = true;
Ram Chandrasekar5b1c0d12017-03-28 11:35:40 -0600183 else
Ram Chandrasekarc6b140d2016-07-20 16:16:52 -0600184 throttle = false;
Ram Chandrasekarc6b140d2016-07-20 16:16:52 -0600185
Zhang Ruib8bb6cb2012-11-22 15:45:02 +0800186 instance->target = get_target_state(instance, trend, throttle);
Aaron Lu06475b52013-12-02 13:54:26 +0800187 dev_dbg(&instance->cdev->device, "old_target=%d, target=%d\n",
188 old_target, (int)instance->target);
Zhang Ruib8bb6cb2012-11-22 15:45:02 +0800189
Zhang Ruibb431ba2015-10-30 16:31:47 +0800190 if (instance->initialized && old_target == instance->target)
Shawn Guo178c2492013-06-17 21:24:23 +0800191 continue;
192
Manaf Meethalavalappu Pallikunhi6df7a422018-05-29 14:56:28 +0530193 if (!instance->initialized) {
194 if (instance->target != THERMAL_NO_TARGET) {
195 trace_thermal_zone_trip(tz, trip, trip_type,
196 true);
197 update_passive_instance(tz, trip_type, 1);
198 }
199 } else {
200 /* Activate a passive thermal instance */
201 if (old_target == THERMAL_NO_TARGET &&
202 instance->target != THERMAL_NO_TARGET) {
203 trace_thermal_zone_trip(tz, trip, trip_type,
204 true);
205 update_passive_instance(tz, trip_type, 1);
206 /* Deactivate a passive thermal instance */
207 } else if (old_target != THERMAL_NO_TARGET &&
208 instance->target == THERMAL_NO_TARGET) {
209 trace_thermal_zone_trip(tz, trip, trip_type,
210 false);
211 update_passive_instance(tz, trip_type, -1);
212 }
Ram Chandrasekar5b1c0d12017-03-28 11:35:40 -0600213 }
Zhang Ruib8bb6cb2012-11-22 15:45:02 +0800214
Zhang Ruibb431ba2015-10-30 16:31:47 +0800215 instance->initialized = true;
Michele Di Giorgiod0b73062016-06-02 15:25:31 +0100216 mutex_lock(&instance->cdev->lock);
Zhang Ruib8bb6cb2012-11-22 15:45:02 +0800217 instance->cdev->updated = false; /* cdev needs update */
Michele Di Giorgiod0b73062016-06-02 15:25:31 +0100218 mutex_unlock(&instance->cdev->lock);
Zhang Ruib8bb6cb2012-11-22 15:45:02 +0800219 }
Durgadoss Re151a202012-09-21 12:06:04 +0530220
221 mutex_unlock(&tz->lock);
222}
223
224/**
Brian Norris56b613e2015-01-29 09:57:21 -0800225 * step_wise_throttle - throttles devices associated with the given zone
Durgadoss Re151a202012-09-21 12:06:04 +0530226 * @tz - thermal_zone_device
227 * @trip - the trip point
228 * @trip_type - type of the trip point
229 *
230 * Throttling Logic: This uses the trend of the thermal zone to throttle.
231 * If the thermal zone is 'heating up' this throttles all the cooling
232 * devices associated with the zone and its particular trip point, by one
233 * step. If the zone is 'cooling down' it brings back the performance of
234 * the devices by one step.
235 */
Sachin Kamatb88a4972012-09-27 16:28:12 +0530236static int step_wise_throttle(struct thermal_zone_device *tz, int trip)
Durgadoss Re151a202012-09-21 12:06:04 +0530237{
238 struct thermal_instance *instance;
239
240 thermal_zone_trip_update(tz, trip);
241
242 if (tz->forced_passive)
243 thermal_zone_trip_update(tz, THERMAL_TRIPS_NONE);
244
245 mutex_lock(&tz->lock);
246
247 list_for_each_entry(instance, &tz->thermal_instances, tz_node)
248 thermal_cdev_update(instance->cdev);
249
250 mutex_unlock(&tz->lock);
251
252 return 0;
253}
254
Sachin Kamatb88a4972012-09-27 16:28:12 +0530255static struct thermal_governor thermal_gov_step_wise = {
Zhang Rui1f53ef12012-12-12 15:31:37 +0800256 .name = "step_wise",
Durgadoss Re151a202012-09-21 12:06:04 +0530257 .throttle = step_wise_throttle,
Durgadoss Re151a202012-09-21 12:06:04 +0530258};
259
Zhang Rui80a26a52013-03-26 16:38:29 +0800260int thermal_gov_step_wise_register(void)
Durgadoss Re151a202012-09-21 12:06:04 +0530261{
262 return thermal_register_governor(&thermal_gov_step_wise);
263}
264
Zhang Rui80a26a52013-03-26 16:38:29 +0800265void thermal_gov_step_wise_unregister(void)
Durgadoss Re151a202012-09-21 12:06:04 +0530266{
267 thermal_unregister_governor(&thermal_gov_step_wise);
268}