blob: ca4f79fb72cf381a7dbc62631ba96ecb95974d25 [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
25#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26
27#include <linux/module.h>
28#include <linux/thermal.h>
29
30#include "thermal_core.h"
31
32/*
33 * If the temperature is higher than a trip point,
34 * a. if the trend is THERMAL_TREND_RAISING, use higher cooling
35 * state for this trip point
36 * b. if the trend is THERMAL_TREND_DROPPING, use lower cooling
37 * state for this trip point
Zhang Rui3dbfff32012-11-19 16:10:20 +080038 * c. if the trend is THERMAL_TREND_RAISE_FULL, use upper limit
39 * for this trip point
40 * d. if the trend is THERMAL_TREND_DROP_FULL, use lower limit
41 * for this trip point
42 * If the temperature is lower than a trip point,
43 * a. if the trend is THERMAL_TREND_RAISING, do nothing
44 * b. if the trend is THERMAL_TREND_DROPPING, use lower cooling
45 * state for this trip point, if the cooling state already
46 * equals lower limit, deactivate the thermal instance
47 * c. if the trend is THERMAL_TREND_RAISE_FULL, do nothing
48 * d. if the trend is THERMAL_TREND_DROP_FULL, use lower limit,
49 * if the cooling state already equals lower limit,
50 * deactive the thermal instance
Durgadoss Re151a202012-09-21 12:06:04 +053051 */
52static unsigned long get_target_state(struct thermal_instance *instance,
Zhang Rui3dbfff32012-11-19 16:10:20 +080053 enum thermal_trend trend, bool throttle)
Durgadoss Re151a202012-09-21 12:06:04 +053054{
55 struct thermal_cooling_device *cdev = instance->cdev;
56 unsigned long cur_state;
57
58 cdev->ops->get_cur_state(cdev, &cur_state);
59
Zhang Rui3dbfff32012-11-19 16:10:20 +080060 switch (trend) {
61 case THERMAL_TREND_RAISING:
Andrew Brestickere79fe642013-04-09 21:59:47 +000062 if (throttle) {
Zhang Rui3dbfff32012-11-19 16:10:20 +080063 cur_state = cur_state < instance->upper ?
64 (cur_state + 1) : instance->upper;
Andrew Brestickere79fe642013-04-09 21:59:47 +000065 if (cur_state < instance->lower)
66 cur_state = instance->lower;
67 }
Zhang Rui3dbfff32012-11-19 16:10:20 +080068 break;
69 case THERMAL_TREND_RAISE_FULL:
70 if (throttle)
71 cur_state = instance->upper;
72 break;
73 case THERMAL_TREND_DROPPING:
74 if (cur_state == instance->lower) {
75 if (!throttle)
76 cur_state = -1;
Andrew Brestickere79fe642013-04-09 21:59:47 +000077 } else {
Zhang Rui3dbfff32012-11-19 16:10:20 +080078 cur_state -= 1;
Andrew Brestickere79fe642013-04-09 21:59:47 +000079 if (cur_state > instance->upper)
80 cur_state = instance->upper;
81 }
Zhang Rui3dbfff32012-11-19 16:10:20 +080082 break;
83 case THERMAL_TREND_DROP_FULL:
84 if (cur_state == instance->lower) {
85 if (!throttle)
86 cur_state = -1;
87 } else
88 cur_state = instance->lower;
89 break;
90 default:
91 break;
Durgadoss Re151a202012-09-21 12:06:04 +053092 }
93
94 return cur_state;
95}
96
97static void update_passive_instance(struct thermal_zone_device *tz,
98 enum thermal_trip_type type, int value)
99{
100 /*
101 * If value is +1, activate a passive instance.
102 * If value is -1, deactivate a passive instance.
103 */
104 if (type == THERMAL_TRIP_PASSIVE || type == THERMAL_TRIPS_NONE)
105 tz->passive += value;
106}
107
Durgadoss Re151a202012-09-21 12:06:04 +0530108static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip)
109{
110 long trip_temp;
111 enum thermal_trip_type trip_type;
112 enum thermal_trend trend;
Zhang Ruib8bb6cb2012-11-22 15:45:02 +0800113 struct thermal_instance *instance;
114 bool throttle = false;
115 int old_target;
Durgadoss Re151a202012-09-21 12:06:04 +0530116
117 if (trip == THERMAL_TRIPS_NONE) {
118 trip_temp = tz->forced_passive;
119 trip_type = THERMAL_TRIPS_NONE;
120 } else {
121 tz->ops->get_trip_temp(tz, trip, &trip_temp);
122 tz->ops->get_trip_type(tz, trip, &trip_type);
123 }
124
125 trend = get_tz_trend(tz, trip);
126
Zhang Ruib8bb6cb2012-11-22 15:45:02 +0800127 if (tz->temperature >= trip_temp)
128 throttle = true;
129
Durgadoss Re151a202012-09-21 12:06:04 +0530130 mutex_lock(&tz->lock);
131
Zhang Ruib8bb6cb2012-11-22 15:45:02 +0800132 list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
133 if (instance->trip != trip)
134 continue;
135
136 old_target = instance->target;
137 instance->target = get_target_state(instance, trend, throttle);
138
139 /* Activate a passive thermal instance */
140 if (old_target == THERMAL_NO_TARGET &&
141 instance->target != THERMAL_NO_TARGET)
142 update_passive_instance(tz, trip_type, 1);
143 /* Deactivate a passive thermal instance */
144 else if (old_target != THERMAL_NO_TARGET &&
145 instance->target == THERMAL_NO_TARGET)
146 update_passive_instance(tz, trip_type, -1);
147
148
149 instance->cdev->updated = false; /* cdev needs update */
150 }
Durgadoss Re151a202012-09-21 12:06:04 +0530151
152 mutex_unlock(&tz->lock);
153}
154
155/**
156 * step_wise_throttle - throttles devices asscciated with the given zone
157 * @tz - thermal_zone_device
158 * @trip - the trip point
159 * @trip_type - type of the trip point
160 *
161 * Throttling Logic: This uses the trend of the thermal zone to throttle.
162 * If the thermal zone is 'heating up' this throttles all the cooling
163 * devices associated with the zone and its particular trip point, by one
164 * step. If the zone is 'cooling down' it brings back the performance of
165 * the devices by one step.
166 */
Sachin Kamatb88a4972012-09-27 16:28:12 +0530167static int step_wise_throttle(struct thermal_zone_device *tz, int trip)
Durgadoss Re151a202012-09-21 12:06:04 +0530168{
169 struct thermal_instance *instance;
170
171 thermal_zone_trip_update(tz, trip);
172
173 if (tz->forced_passive)
174 thermal_zone_trip_update(tz, THERMAL_TRIPS_NONE);
175
176 mutex_lock(&tz->lock);
177
178 list_for_each_entry(instance, &tz->thermal_instances, tz_node)
179 thermal_cdev_update(instance->cdev);
180
181 mutex_unlock(&tz->lock);
182
183 return 0;
184}
185
Sachin Kamatb88a4972012-09-27 16:28:12 +0530186static struct thermal_governor thermal_gov_step_wise = {
Zhang Rui1f53ef12012-12-12 15:31:37 +0800187 .name = "step_wise",
Durgadoss Re151a202012-09-21 12:06:04 +0530188 .throttle = step_wise_throttle,
189 .owner = THIS_MODULE,
190};
191
192static int __init thermal_gov_step_wise_init(void)
193{
194 return thermal_register_governor(&thermal_gov_step_wise);
195}
196
197static void __exit thermal_gov_step_wise_exit(void)
198{
199 thermal_unregister_governor(&thermal_gov_step_wise);
200}
201
202/* This should load after thermal framework */
203fs_initcall(thermal_gov_step_wise_init);
204module_exit(thermal_gov_step_wise_exit);
205
206MODULE_AUTHOR("Durgadoss R");
207MODULE_DESCRIPTION("A step-by-step thermal throttling governor");
208MODULE_LICENSE("GPL");