1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2008 Intel Corp
4 * Copyright (C) 2008 Zhang Rui <rui.zhang@intel.com>
5 * Copyright (C) 2008 Sujith Thomas <sujith.thomas@intel.com>
6 * Copyright 2022 Linaro Limited
8 * Thermal trips handling
10 #include "thermal_core.h"
12 int for_each_thermal_trip(struct thermal_zone_device *tz,
13 int (*cb)(struct thermal_trip *, void *),
18 lockdep_assert_held(&tz->lock);
23 for (i = 0; i < tz->num_trips; i++) {
24 ret = cb(&tz->trips[i], data);
31 EXPORT_SYMBOL_GPL(for_each_thermal_trip);
33 int thermal_zone_get_num_trips(struct thermal_zone_device *tz)
37 EXPORT_SYMBOL_GPL(thermal_zone_get_num_trips);
40 * __thermal_zone_set_trips - Computes the next trip points for the driver
41 * @tz: a pointer to a thermal zone device structure
43 * The function computes the next temperature boundaries by browsing
44 * the trip points. The result is the closer low and high trip points
45 * to the current temperature. These values are passed to the backend
46 * driver to let it set its own notification mechanism (usually an
49 * This function must be called with tz->lock held. Both tz and tz->ops
50 * must be valid pointers.
52 * It does not return a value
54 void __thermal_zone_set_trips(struct thermal_zone_device *tz)
56 struct thermal_trip trip;
57 int low = -INT_MAX, high = INT_MAX;
60 lockdep_assert_held(&tz->lock);
62 if (!tz->ops->set_trips)
65 for (i = 0; i < tz->num_trips; i++) {
68 ret = __thermal_zone_get_trip(tz, i , &trip);
72 trip_low = trip.temperature - trip.hysteresis;
74 if (trip_low < tz->temperature && trip_low > low)
77 if (trip.temperature > tz->temperature &&
78 trip.temperature < high)
79 high = trip.temperature;
82 /* No need to change trip points */
83 if (tz->prev_low_trip == low && tz->prev_high_trip == high)
86 tz->prev_low_trip = low;
87 tz->prev_high_trip = high;
90 "new temperature boundaries: %d < x < %d\n", low, high);
93 * Set a temperature window. When this window is left the driver
94 * must inform the thermal core via thermal_zone_device_update.
96 ret = tz->ops->set_trips(tz, low, high);
98 dev_err(&tz->device, "Failed to set trips: %d\n", ret);
101 int __thermal_zone_get_trip(struct thermal_zone_device *tz, int trip_id,
102 struct thermal_trip *trip)
104 if (!tz || !tz->trips || trip_id < 0 || trip_id >= tz->num_trips || !trip)
107 *trip = tz->trips[trip_id];
110 EXPORT_SYMBOL_GPL(__thermal_zone_get_trip);
112 int thermal_zone_get_trip(struct thermal_zone_device *tz, int trip_id,
113 struct thermal_trip *trip)
117 mutex_lock(&tz->lock);
118 ret = __thermal_zone_get_trip(tz, trip_id, trip);
119 mutex_unlock(&tz->lock);
123 EXPORT_SYMBOL_GPL(thermal_zone_get_trip);
125 int thermal_zone_set_trip(struct thermal_zone_device *tz, int trip_id,
126 const struct thermal_trip *trip)
128 struct thermal_trip t;
131 if (!tz->ops->set_trip_temp && !tz->ops->set_trip_hyst && !tz->trips)
134 ret = __thermal_zone_get_trip(tz, trip_id, &t);
138 if (t.type != trip->type)
141 if (t.temperature != trip->temperature && tz->ops->set_trip_temp) {
142 ret = tz->ops->set_trip_temp(tz, trip_id, trip->temperature);
147 if (t.hysteresis != trip->hysteresis && tz->ops->set_trip_hyst) {
148 ret = tz->ops->set_trip_hyst(tz, trip_id, trip->hysteresis);
153 if (tz->trips && (t.temperature != trip->temperature || t.hysteresis != trip->hysteresis))
154 tz->trips[trip_id] = *trip;
156 thermal_notify_tz_trip_change(tz->id, trip_id, trip->type,
157 trip->temperature, trip->hysteresis);
159 __thermal_zone_device_update(tz, THERMAL_TRIP_CHANGED);