Durgadoss R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 1 | /* |
| 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 Rui | 3dbfff3 | 2012-11-19 16:10:20 +0800 | [diff] [blame^] | 38 | * 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 R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 51 | */ |
| 52 | static unsigned long get_target_state(struct thermal_instance *instance, |
Zhang Rui | 3dbfff3 | 2012-11-19 16:10:20 +0800 | [diff] [blame^] | 53 | enum thermal_trend trend, bool throttle) |
Durgadoss R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 54 | { |
| 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 Rui | 3dbfff3 | 2012-11-19 16:10:20 +0800 | [diff] [blame^] | 60 | switch (trend) { |
| 61 | case THERMAL_TREND_RAISING: |
| 62 | if (throttle) |
| 63 | cur_state = cur_state < instance->upper ? |
| 64 | (cur_state + 1) : instance->upper; |
| 65 | break; |
| 66 | case THERMAL_TREND_RAISE_FULL: |
| 67 | if (throttle) |
| 68 | cur_state = instance->upper; |
| 69 | break; |
| 70 | case THERMAL_TREND_DROPPING: |
| 71 | if (cur_state == instance->lower) { |
| 72 | if (!throttle) |
| 73 | cur_state = -1; |
| 74 | } else |
| 75 | cur_state -= 1; |
| 76 | break; |
| 77 | case THERMAL_TREND_DROP_FULL: |
| 78 | if (cur_state == instance->lower) { |
| 79 | if (!throttle) |
| 80 | cur_state = -1; |
| 81 | } else |
| 82 | cur_state = instance->lower; |
| 83 | break; |
| 84 | default: |
| 85 | break; |
Durgadoss R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | return cur_state; |
| 89 | } |
| 90 | |
| 91 | static void update_passive_instance(struct thermal_zone_device *tz, |
| 92 | enum thermal_trip_type type, int value) |
| 93 | { |
| 94 | /* |
| 95 | * If value is +1, activate a passive instance. |
| 96 | * If value is -1, deactivate a passive instance. |
| 97 | */ |
| 98 | if (type == THERMAL_TRIP_PASSIVE || type == THERMAL_TRIPS_NONE) |
| 99 | tz->passive += value; |
| 100 | } |
| 101 | |
| 102 | static void update_instance_for_throttle(struct thermal_zone_device *tz, |
| 103 | int trip, enum thermal_trip_type trip_type, |
| 104 | enum thermal_trend trend) |
| 105 | { |
| 106 | struct thermal_instance *instance; |
| 107 | |
| 108 | list_for_each_entry(instance, &tz->thermal_instances, tz_node) { |
| 109 | if (instance->trip != trip) |
| 110 | continue; |
| 111 | |
Zhang Rui | 3dbfff3 | 2012-11-19 16:10:20 +0800 | [diff] [blame^] | 112 | instance->target = get_target_state(instance, trend, true); |
Durgadoss R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 113 | |
| 114 | /* Activate a passive thermal instance */ |
| 115 | if (instance->target == THERMAL_NO_TARGET) |
| 116 | update_passive_instance(tz, trip_type, 1); |
| 117 | |
| 118 | instance->cdev->updated = false; /* cdev needs update */ |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | static void update_instance_for_dethrottle(struct thermal_zone_device *tz, |
Zhang Rui | 3dbfff3 | 2012-11-19 16:10:20 +0800 | [diff] [blame^] | 123 | int trip, enum thermal_trip_type trip_type, |
| 124 | enum thermal_trend trend) |
Durgadoss R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 125 | { |
| 126 | struct thermal_instance *instance; |
Durgadoss R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 127 | |
| 128 | list_for_each_entry(instance, &tz->thermal_instances, tz_node) { |
| 129 | if (instance->trip != trip || |
| 130 | instance->target == THERMAL_NO_TARGET) |
| 131 | continue; |
| 132 | |
Zhang Rui | 3dbfff3 | 2012-11-19 16:10:20 +0800 | [diff] [blame^] | 133 | instance->target = get_target_state(instance, trend, false); |
Durgadoss R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 134 | |
| 135 | /* Deactivate a passive thermal instance */ |
| 136 | if (instance->target == THERMAL_NO_TARGET) |
| 137 | update_passive_instance(tz, trip_type, -1); |
| 138 | |
Zhang Rui | 3dbfff3 | 2012-11-19 16:10:20 +0800 | [diff] [blame^] | 139 | instance->cdev->updated = false; /* cdev needs update */ |
Durgadoss R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 140 | } |
| 141 | } |
| 142 | |
| 143 | static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip) |
| 144 | { |
| 145 | long trip_temp; |
| 146 | enum thermal_trip_type trip_type; |
| 147 | enum thermal_trend trend; |
| 148 | |
| 149 | if (trip == THERMAL_TRIPS_NONE) { |
| 150 | trip_temp = tz->forced_passive; |
| 151 | trip_type = THERMAL_TRIPS_NONE; |
| 152 | } else { |
| 153 | tz->ops->get_trip_temp(tz, trip, &trip_temp); |
| 154 | tz->ops->get_trip_type(tz, trip, &trip_type); |
| 155 | } |
| 156 | |
| 157 | trend = get_tz_trend(tz, trip); |
| 158 | |
| 159 | mutex_lock(&tz->lock); |
| 160 | |
| 161 | if (tz->temperature >= trip_temp) |
| 162 | update_instance_for_throttle(tz, trip, trip_type, trend); |
| 163 | else |
Zhang Rui | 3dbfff3 | 2012-11-19 16:10:20 +0800 | [diff] [blame^] | 164 | update_instance_for_dethrottle(tz, trip, trip_type, trend); |
Durgadoss R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 165 | |
| 166 | mutex_unlock(&tz->lock); |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * step_wise_throttle - throttles devices asscciated with the given zone |
| 171 | * @tz - thermal_zone_device |
| 172 | * @trip - the trip point |
| 173 | * @trip_type - type of the trip point |
| 174 | * |
| 175 | * Throttling Logic: This uses the trend of the thermal zone to throttle. |
| 176 | * If the thermal zone is 'heating up' this throttles all the cooling |
| 177 | * devices associated with the zone and its particular trip point, by one |
| 178 | * step. If the zone is 'cooling down' it brings back the performance of |
| 179 | * the devices by one step. |
| 180 | */ |
Sachin Kamat | b88a497 | 2012-09-27 16:28:12 +0530 | [diff] [blame] | 181 | static int step_wise_throttle(struct thermal_zone_device *tz, int trip) |
Durgadoss R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 182 | { |
| 183 | struct thermal_instance *instance; |
| 184 | |
| 185 | thermal_zone_trip_update(tz, trip); |
| 186 | |
| 187 | if (tz->forced_passive) |
| 188 | thermal_zone_trip_update(tz, THERMAL_TRIPS_NONE); |
| 189 | |
| 190 | mutex_lock(&tz->lock); |
| 191 | |
| 192 | list_for_each_entry(instance, &tz->thermal_instances, tz_node) |
| 193 | thermal_cdev_update(instance->cdev); |
| 194 | |
| 195 | mutex_unlock(&tz->lock); |
| 196 | |
| 197 | return 0; |
| 198 | } |
| 199 | |
Sachin Kamat | b88a497 | 2012-09-27 16:28:12 +0530 | [diff] [blame] | 200 | static struct thermal_governor thermal_gov_step_wise = { |
Zhang Rui | 1f53ef1 | 2012-12-12 15:31:37 +0800 | [diff] [blame] | 201 | .name = "step_wise", |
Durgadoss R | e151a20 | 2012-09-21 12:06:04 +0530 | [diff] [blame] | 202 | .throttle = step_wise_throttle, |
| 203 | .owner = THIS_MODULE, |
| 204 | }; |
| 205 | |
| 206 | static int __init thermal_gov_step_wise_init(void) |
| 207 | { |
| 208 | return thermal_register_governor(&thermal_gov_step_wise); |
| 209 | } |
| 210 | |
| 211 | static void __exit thermal_gov_step_wise_exit(void) |
| 212 | { |
| 213 | thermal_unregister_governor(&thermal_gov_step_wise); |
| 214 | } |
| 215 | |
| 216 | /* This should load after thermal framework */ |
| 217 | fs_initcall(thermal_gov_step_wise_init); |
| 218 | module_exit(thermal_gov_step_wise_exit); |
| 219 | |
| 220 | MODULE_AUTHOR("Durgadoss R"); |
| 221 | MODULE_DESCRIPTION("A step-by-step thermal throttling governor"); |
| 222 | MODULE_LICENSE("GPL"); |