Thermal control fixes for 6.10-rc3
Fix issues related to the handling of invalid trip points in the thermal core and in the thermal debug code that have been overlooked by some recent thermal control core changes. -----BEGIN PGP SIGNATURE----- iQJGBAABCAAwFiEE4fcc61cGeeHD/fCwgsRv/nhiVHEFAmZgpJcSHHJqd0Byand5 c29ja2kubmV0AAoJEILEb/54YlRxn2EP/0YxHS9yw7XC50hwDQBmIQjFsAPIaz29 uLGokZkn4LU7aTvza3Vo7HDd7TVTDucVxtRD1R0+YPVFW/zzuj/BqiHntdPfBd/y krOQIHREY6vF/9wJPXlwHgGrai8PSAar90gZ13YuCruI6VtKmQ3dLuVDRFbnccqX GazHnQG3YL2mwjKVS9mnYwYlNjtctPbOjjTQ1+Zbr4/rnpJYYfJDwZ/AudcH1gSr 28LkOh3PvXxb126j4slBjJwlwPgpQKQW3ozEbvH+RgJQiYA5pVOpaM+o+9R2zd8J AcmPvuP6Qtgyzs+Su7N+0NpQJ/vw0OCMEJ6BRUhw/NoeYOdKRvQZYrXeBjbiw+Yt b+7l1sHhtoIUnZJK8JpDo6+4nLzF9sV3aPousMEEzc+NsPwFJdCClU/6HN4Gr1bN H4GahJ0NWf/JzYrTQsoIte2JfdueXanhZ/oxoKHXBamo3t5eIKp3v1l05H+Upe4y rtB5DrG/fLJXlO4H2orc4vuLcurxGOpMXhEC4dAIu1y6dndxPJC+fGhSNp6+4eTv R46iJBKNyZ1YILVH3iNW7k+dQZKCxKgN/MKQFPBGh28KsZ+9zpjFn7XX3OTzFYHR gKyvhYOWr2kcKlSLh1LPKg0zv6cu2b62qttrKHPAcPVZvOW9nNhbCZGrC4Wnh3xM PIOXPftKHelM =uz/z -----END PGP SIGNATURE----- Merge tag 'thermal-6.10-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm Pull thermal control fixes from Rafael Wysocki: "Fix issues related to the handling of invalid trip points in the thermal core and in the thermal debug code that have been overlooked by some recent thermal control core changes" * tag 'thermal-6.10-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: thermal: trip: Trigger trip down notifications when trips involved in mitigation become invalid thermal: core: Introduce thermal_trip_crossed() thermal/debugfs: Allow tze_seq_show() to print statistics for invalid trips thermal/debugfs: Print initial trip temperature and hysteresis in tze_seq_show()
This commit is contained in:
commit
2df0193e62
@ -467,6 +467,21 @@ static void thermal_governor_trip_crossed(struct thermal_governor *governor,
|
||||
governor->trip_crossed(tz, trip, crossed_up);
|
||||
}
|
||||
|
||||
static void thermal_trip_crossed(struct thermal_zone_device *tz,
|
||||
const struct thermal_trip *trip,
|
||||
struct thermal_governor *governor,
|
||||
bool crossed_up)
|
||||
{
|
||||
if (crossed_up) {
|
||||
thermal_notify_tz_trip_up(tz, trip);
|
||||
thermal_debug_tz_trip_up(tz, trip);
|
||||
} else {
|
||||
thermal_notify_tz_trip_down(tz, trip);
|
||||
thermal_debug_tz_trip_down(tz, trip);
|
||||
}
|
||||
thermal_governor_trip_crossed(governor, tz, trip, crossed_up);
|
||||
}
|
||||
|
||||
static int thermal_trip_notify_cmp(void *ascending, const struct list_head *a,
|
||||
const struct list_head *b)
|
||||
{
|
||||
@ -506,18 +521,12 @@ void __thermal_zone_device_update(struct thermal_zone_device *tz,
|
||||
handle_thermal_trip(tz, td, &way_up_list, &way_down_list);
|
||||
|
||||
list_sort(&way_up_list, &way_up_list, thermal_trip_notify_cmp);
|
||||
list_for_each_entry(td, &way_up_list, notify_list_node) {
|
||||
thermal_notify_tz_trip_up(tz, &td->trip);
|
||||
thermal_debug_tz_trip_up(tz, &td->trip);
|
||||
thermal_governor_trip_crossed(governor, tz, &td->trip, true);
|
||||
}
|
||||
list_for_each_entry(td, &way_up_list, notify_list_node)
|
||||
thermal_trip_crossed(tz, &td->trip, governor, true);
|
||||
|
||||
list_sort(NULL, &way_down_list, thermal_trip_notify_cmp);
|
||||
list_for_each_entry(td, &way_down_list, notify_list_node) {
|
||||
thermal_notify_tz_trip_down(tz, &td->trip);
|
||||
thermal_debug_tz_trip_down(tz, &td->trip);
|
||||
thermal_governor_trip_crossed(governor, tz, &td->trip, false);
|
||||
}
|
||||
list_for_each_entry(td, &way_down_list, notify_list_node)
|
||||
thermal_trip_crossed(tz, &td->trip, governor, false);
|
||||
|
||||
if (governor->manage)
|
||||
governor->manage(tz);
|
||||
@ -593,6 +602,12 @@ void thermal_zone_device_update(struct thermal_zone_device *tz,
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(thermal_zone_device_update);
|
||||
|
||||
void thermal_zone_trip_down(struct thermal_zone_device *tz,
|
||||
const struct thermal_trip *trip)
|
||||
{
|
||||
thermal_trip_crossed(tz, trip, thermal_get_tz_governor(tz), false);
|
||||
}
|
||||
|
||||
int for_each_thermal_governor(int (*cb)(struct thermal_governor *, void *),
|
||||
void *data)
|
||||
{
|
||||
|
@ -246,6 +246,8 @@ int thermal_zone_trip_id(const struct thermal_zone_device *tz,
|
||||
void thermal_zone_trip_updated(struct thermal_zone_device *tz,
|
||||
const struct thermal_trip *trip);
|
||||
int __thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp);
|
||||
void thermal_zone_trip_down(struct thermal_zone_device *tz,
|
||||
const struct thermal_trip *trip);
|
||||
|
||||
/* sysfs I/F */
|
||||
int thermal_zone_create_device_groups(struct thermal_zone_device *tz);
|
||||
|
@ -91,6 +91,8 @@ struct cdev_record {
|
||||
*
|
||||
* @timestamp: the trip crossing timestamp
|
||||
* @duration: total time when the zone temperature was above the trip point
|
||||
* @trip_temp: trip temperature at mitigation start
|
||||
* @trip_hyst: trip hysteresis at mitigation start
|
||||
* @count: the number of times the zone temperature was above the trip point
|
||||
* @max: maximum recorded temperature above the trip point
|
||||
* @min: minimum recorded temperature above the trip point
|
||||
@ -99,6 +101,8 @@ struct cdev_record {
|
||||
struct trip_stats {
|
||||
ktime_t timestamp;
|
||||
ktime_t duration;
|
||||
int trip_temp;
|
||||
int trip_hyst;
|
||||
int count;
|
||||
int max;
|
||||
int min;
|
||||
@ -574,6 +578,7 @@ void thermal_debug_tz_trip_up(struct thermal_zone_device *tz,
|
||||
struct thermal_debugfs *thermal_dbg = tz->debugfs;
|
||||
int trip_id = thermal_zone_trip_id(tz, trip);
|
||||
ktime_t now = ktime_get();
|
||||
struct trip_stats *trip_stats;
|
||||
|
||||
if (!thermal_dbg)
|
||||
return;
|
||||
@ -639,7 +644,10 @@ void thermal_debug_tz_trip_up(struct thermal_zone_device *tz,
|
||||
tz_dbg->trips_crossed[tz_dbg->nr_trips++] = trip_id;
|
||||
|
||||
tze = list_first_entry(&tz_dbg->tz_episodes, struct tz_episode, node);
|
||||
tze->trip_stats[trip_id].timestamp = now;
|
||||
trip_stats = &tze->trip_stats[trip_id];
|
||||
trip_stats->trip_temp = trip->temperature;
|
||||
trip_stats->trip_hyst = trip->hysteresis;
|
||||
trip_stats->timestamp = now;
|
||||
|
||||
unlock:
|
||||
mutex_unlock(&thermal_dbg->lock);
|
||||
@ -794,10 +802,6 @@ static int tze_seq_show(struct seq_file *s, void *v)
|
||||
const struct thermal_trip *trip = &td->trip;
|
||||
struct trip_stats *trip_stats;
|
||||
|
||||
/* Skip invalid trips. */
|
||||
if (trip->temperature == THERMAL_TEMP_INVALID)
|
||||
continue;
|
||||
|
||||
/*
|
||||
* There is no possible mitigation happening at the
|
||||
* critical trip point, so the stats will be always
|
||||
@ -836,8 +840,8 @@ static int tze_seq_show(struct seq_file *s, void *v)
|
||||
seq_printf(s, "| %*d | %*s | %*d | %*d | %c%*lld | %*d | %*d | %*d |\n",
|
||||
4 , trip_id,
|
||||
8, type,
|
||||
9, trip->temperature,
|
||||
9, trip->hysteresis,
|
||||
9, trip_stats->trip_temp,
|
||||
9, trip_stats->trip_hyst,
|
||||
c, 10, duration_ms,
|
||||
9, trip_stats->avg,
|
||||
9, trip_stats->min,
|
||||
|
@ -152,17 +152,23 @@ void thermal_zone_set_trip_temp(struct thermal_zone_device *tz,
|
||||
if (trip->temperature == temp)
|
||||
return;
|
||||
|
||||
trip->temperature = temp;
|
||||
thermal_notify_tz_trip_change(tz, trip);
|
||||
|
||||
if (temp == THERMAL_TEMP_INVALID) {
|
||||
struct thermal_trip_desc *td = trip_to_trip_desc(trip);
|
||||
|
||||
if (trip->type == THERMAL_TRIP_PASSIVE &&
|
||||
tz->temperature >= td->threshold) {
|
||||
if (tz->temperature >= td->threshold) {
|
||||
/*
|
||||
* The trip has been crossed, so the thermal zone's
|
||||
* passive count needs to be adjusted.
|
||||
* The trip has been crossed on the way up, so some
|
||||
* adjustments are needed to compensate for the lack
|
||||
* of it going forward.
|
||||
*/
|
||||
tz->passive--;
|
||||
WARN_ON_ONCE(tz->passive < 0);
|
||||
if (trip->type == THERMAL_TRIP_PASSIVE) {
|
||||
tz->passive--;
|
||||
WARN_ON_ONCE(tz->passive < 0);
|
||||
}
|
||||
thermal_zone_trip_down(tz, trip);
|
||||
}
|
||||
/*
|
||||
* Invalidate the threshold to avoid triggering a spurious
|
||||
@ -170,7 +176,5 @@ void thermal_zone_set_trip_temp(struct thermal_zone_device *tz,
|
||||
*/
|
||||
td->threshold = INT_MAX;
|
||||
}
|
||||
trip->temperature = temp;
|
||||
thermal_notify_tz_trip_change(tz, trip);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(thermal_zone_set_trip_temp);
|
||||
|
Loading…
Reference in New Issue
Block a user