Thomas Gleixner | 50acfb2 | 2019-05-29 07:18:00 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Peter Feuerer | e4dbf98 | 2014-07-22 17:37:13 +0200 | [diff] [blame] | 2 | /* |
| 3 | * gov_bang_bang.c - A simple thermal throttling governor using hysteresis |
| 4 | * |
Peter Kaestle | d3f5b73 | 2019-10-19 00:59:36 +0200 | [diff] [blame] | 5 | * Copyright (C) 2014 Peter Kaestle <peter@piie.net> |
Peter Feuerer | e4dbf98 | 2014-07-22 17:37:13 +0200 | [diff] [blame] | 6 | * |
| 7 | * Based on step_wise.c with following Copyrights: |
| 8 | * Copyright (C) 2012 Intel Corp |
| 9 | * Copyright (C) 2012 Durgadoss R <durgadoss.r@intel.com> |
Peter Feuerer | e4dbf98 | 2014-07-22 17:37:13 +0200 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <linux/thermal.h> |
| 13 | |
| 14 | #include "thermal_core.h" |
| 15 | |
| 16 | static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip) |
| 17 | { |
Sascha Hauer | 17e8351 | 2015-07-24 08:12:54 +0200 | [diff] [blame] | 18 | int trip_temp, trip_hyst; |
Peter Feuerer | e4dbf98 | 2014-07-22 17:37:13 +0200 | [diff] [blame] | 19 | struct thermal_instance *instance; |
| 20 | |
| 21 | tz->ops->get_trip_temp(tz, trip, &trip_temp); |
Michele Di Giorgio | 191b075 | 2016-05-11 10:49:07 +0100 | [diff] [blame] | 22 | |
| 23 | if (!tz->ops->get_trip_hyst) { |
| 24 | pr_warn_once("Undefined get_trip_hyst for thermal zone %s - " |
| 25 | "running with default hysteresis zero\n", tz->type); |
| 26 | trip_hyst = 0; |
| 27 | } else |
| 28 | tz->ops->get_trip_hyst(tz, trip, &trip_hyst); |
Peter Feuerer | e4dbf98 | 2014-07-22 17:37:13 +0200 | [diff] [blame] | 29 | |
Sascha Hauer | 17e8351 | 2015-07-24 08:12:54 +0200 | [diff] [blame] | 30 | dev_dbg(&tz->device, "Trip%d[temp=%d]:temp=%d:hyst=%d\n", |
Peter Feuerer | e4dbf98 | 2014-07-22 17:37:13 +0200 | [diff] [blame] | 31 | trip, trip_temp, tz->temperature, |
| 32 | trip_hyst); |
| 33 | |
| 34 | mutex_lock(&tz->lock); |
| 35 | |
| 36 | list_for_each_entry(instance, &tz->thermal_instances, tz_node) { |
| 37 | if (instance->trip != trip) |
| 38 | continue; |
| 39 | |
| 40 | /* in case fan is in initial state, switch the fan off */ |
| 41 | if (instance->target == THERMAL_NO_TARGET) |
| 42 | instance->target = 0; |
| 43 | |
| 44 | /* in case fan is neither on nor off set the fan to active */ |
| 45 | if (instance->target != 0 && instance->target != 1) { |
| 46 | pr_warn("Thermal instance %s controlled by bang-bang has unexpected state: %ld\n", |
| 47 | instance->name, instance->target); |
| 48 | instance->target = 1; |
| 49 | } |
| 50 | |
| 51 | /* |
| 52 | * enable fan when temperature exceeds trip_temp and disable |
| 53 | * the fan in case it falls below trip_temp minus hysteresis |
| 54 | */ |
| 55 | if (instance->target == 0 && tz->temperature >= trip_temp) |
| 56 | instance->target = 1; |
| 57 | else if (instance->target == 1 && |
Sascha Hauer | 897e721 | 2016-06-22 16:42:04 +0800 | [diff] [blame] | 58 | tz->temperature <= trip_temp - trip_hyst) |
Peter Feuerer | e4dbf98 | 2014-07-22 17:37:13 +0200 | [diff] [blame] | 59 | instance->target = 0; |
| 60 | |
| 61 | dev_dbg(&instance->cdev->device, "target=%d\n", |
| 62 | (int)instance->target); |
| 63 | |
Michele Di Giorgio | d0b7306 | 2016-06-02 15:25:31 +0100 | [diff] [blame] | 64 | mutex_lock(&instance->cdev->lock); |
Peter Feuerer | e4dbf98 | 2014-07-22 17:37:13 +0200 | [diff] [blame] | 65 | instance->cdev->updated = false; /* cdev needs update */ |
Michele Di Giorgio | d0b7306 | 2016-06-02 15:25:31 +0100 | [diff] [blame] | 66 | mutex_unlock(&instance->cdev->lock); |
Peter Feuerer | e4dbf98 | 2014-07-22 17:37:13 +0200 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | mutex_unlock(&tz->lock); |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * bang_bang_control - controls devices associated with the given zone |
Amit Kucheria | 53d256e | 2019-11-20 21:15:12 +0530 | [diff] [blame] | 74 | * @tz: thermal_zone_device |
| 75 | * @trip: the trip point |
Peter Feuerer | e4dbf98 | 2014-07-22 17:37:13 +0200 | [diff] [blame] | 76 | * |
| 77 | * Regulation Logic: a two point regulation, deliver cooling state depending |
| 78 | * on the previous state shown in this diagram: |
| 79 | * |
| 80 | * Fan: OFF ON |
| 81 | * |
| 82 | * | |
| 83 | * | |
| 84 | * trip_temp: +---->+ |
| 85 | * | | ^ |
| 86 | * | | | |
| 87 | * | | Temperature |
| 88 | * (trip_temp - hyst): +<----+ |
| 89 | * | |
| 90 | * | |
| 91 | * | |
| 92 | * |
| 93 | * * If the fan is not running and temperature exceeds trip_temp, the fan |
| 94 | * gets turned on. |
| 95 | * * In case the fan is running, temperature must fall below |
| 96 | * (trip_temp - hyst) so that the fan gets turned off again. |
| 97 | * |
| 98 | */ |
| 99 | static int bang_bang_control(struct thermal_zone_device *tz, int trip) |
| 100 | { |
| 101 | struct thermal_instance *instance; |
| 102 | |
| 103 | thermal_zone_trip_update(tz, trip); |
| 104 | |
| 105 | mutex_lock(&tz->lock); |
| 106 | |
| 107 | list_for_each_entry(instance, &tz->thermal_instances, tz_node) |
| 108 | thermal_cdev_update(instance->cdev); |
| 109 | |
| 110 | mutex_unlock(&tz->lock); |
| 111 | |
| 112 | return 0; |
| 113 | } |
| 114 | |
| 115 | static struct thermal_governor thermal_gov_bang_bang = { |
| 116 | .name = "bang_bang", |
| 117 | .throttle = bang_bang_control, |
| 118 | }; |
Daniel Lezcano | 57c5b2e | 2019-06-12 22:13:25 +0200 | [diff] [blame] | 119 | THERMAL_GOVERNOR_DECLARE(thermal_gov_bang_bang); |