Commit 530c932b authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

thermal: gov_bang_bang: Use .trip_crossed() instead of .throttle()

The Bang-Bang governor really is only concerned about trip point
crossing, so it can use the new .trip_crossed() callback instead of
.throttle() that is not particularly suitable for it.

Modify it to do so which also takes trip hysteresis into account, so the
governor does not need to use it directly any more.
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: default avatarLukasz Luba <lukasz.luba@arm.com>
Acked-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
parent 80f5fd45
...@@ -13,8 +13,9 @@ ...@@ -13,8 +13,9 @@
#include "thermal_core.h" #include "thermal_core.h"
static int thermal_zone_trip_update(struct thermal_zone_device *tz, static void thermal_zone_trip_update(struct thermal_zone_device *tz,
const struct thermal_trip *trip) const struct thermal_trip *trip,
bool crossed_up)
{ {
int trip_index = thermal_zone_trip_id(tz, trip); int trip_index = thermal_zone_trip_id(tz, trip);
struct thermal_instance *instance; struct thermal_instance *instance;
...@@ -43,13 +44,12 @@ static int thermal_zone_trip_update(struct thermal_zone_device *tz, ...@@ -43,13 +44,12 @@ static int thermal_zone_trip_update(struct thermal_zone_device *tz,
} }
/* /*
* enable fan when temperature exceeds trip_temp and disable * Enable the fan when the trip is crossed on the way up and
* the fan in case it falls below trip_temp minus hysteresis * disable it when the trip is crossed on the way down.
*/ */
if (instance->target == 0 && tz->temperature >= trip->temperature) if (instance->target == 0 && crossed_up)
instance->target = 1; instance->target = 1;
else if (instance->target == 1 && else if (instance->target == 1 && !crossed_up)
tz->temperature < trip->temperature - trip->hysteresis)
instance->target = 0; instance->target = 0;
dev_dbg(&instance->cdev->device, "target=%d\n", dev_dbg(&instance->cdev->device, "target=%d\n",
...@@ -59,14 +59,13 @@ static int thermal_zone_trip_update(struct thermal_zone_device *tz, ...@@ -59,14 +59,13 @@ static int thermal_zone_trip_update(struct thermal_zone_device *tz,
instance->cdev->updated = false; /* cdev needs update */ instance->cdev->updated = false; /* cdev needs update */
mutex_unlock(&instance->cdev->lock); mutex_unlock(&instance->cdev->lock);
} }
return 0;
} }
/** /**
* bang_bang_control - controls devices associated with the given zone * bang_bang_control - controls devices associated with the given zone
* @tz: thermal_zone_device * @tz: thermal_zone_device
* @trip: the trip point * @trip: the trip point
* @crossed_up: whether or not the trip has been crossed on the way up
* *
* Regulation Logic: a two point regulation, deliver cooling state depending * Regulation Logic: a two point regulation, deliver cooling state depending
* on the previous state shown in this diagram: * on the previous state shown in this diagram:
...@@ -90,26 +89,22 @@ static int thermal_zone_trip_update(struct thermal_zone_device *tz, ...@@ -90,26 +89,22 @@ static int thermal_zone_trip_update(struct thermal_zone_device *tz,
* (trip_temp - hyst) so that the fan gets turned off again. * (trip_temp - hyst) so that the fan gets turned off again.
* *
*/ */
static int bang_bang_control(struct thermal_zone_device *tz, static void bang_bang_control(struct thermal_zone_device *tz,
const struct thermal_trip *trip) const struct thermal_trip *trip,
bool crossed_up)
{ {
struct thermal_instance *instance; struct thermal_instance *instance;
int ret;
lockdep_assert_held(&tz->lock); lockdep_assert_held(&tz->lock);
ret = thermal_zone_trip_update(tz, trip); thermal_zone_trip_update(tz, trip, crossed_up);
if (ret)
return ret;
list_for_each_entry(instance, &tz->thermal_instances, tz_node) list_for_each_entry(instance, &tz->thermal_instances, tz_node)
thermal_cdev_update(instance->cdev); thermal_cdev_update(instance->cdev);
return 0;
} }
static struct thermal_governor thermal_gov_bang_bang = { static struct thermal_governor thermal_gov_bang_bang = {
.name = "bang_bang", .name = "bang_bang",
.throttle = bang_bang_control, .trip_crossed = bang_bang_control,
}; };
THERMAL_GOVERNOR_DECLARE(thermal_gov_bang_bang); THERMAL_GOVERNOR_DECLARE(thermal_gov_bang_bang);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment