mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 22:24:11 +08:00
5b674baa59
Because __thermal_zone_get_trip() is only called by thermal_zone_get_trip() now, fold the former into the latter. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Link: https://patch.msgid.link/22339769.EfDdHjke4D@rjwysocki.net
180 lines
4.5 KiB
C
180 lines
4.5 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2008 Intel Corp
|
|
* Copyright (C) 2008 Zhang Rui <rui.zhang@intel.com>
|
|
* Copyright (C) 2008 Sujith Thomas <sujith.thomas@intel.com>
|
|
* Copyright 2022 Linaro Limited
|
|
*
|
|
* Thermal trips handling
|
|
*/
|
|
#include "thermal_core.h"
|
|
|
|
static const char *trip_type_names[] = {
|
|
[THERMAL_TRIP_ACTIVE] = "active",
|
|
[THERMAL_TRIP_PASSIVE] = "passive",
|
|
[THERMAL_TRIP_HOT] = "hot",
|
|
[THERMAL_TRIP_CRITICAL] = "critical",
|
|
};
|
|
|
|
const char *thermal_trip_type_name(enum thermal_trip_type trip_type)
|
|
{
|
|
if (trip_type < THERMAL_TRIP_ACTIVE || trip_type > THERMAL_TRIP_CRITICAL)
|
|
return "unknown";
|
|
|
|
return trip_type_names[trip_type];
|
|
}
|
|
|
|
int for_each_thermal_trip(struct thermal_zone_device *tz,
|
|
int (*cb)(struct thermal_trip *, void *),
|
|
void *data)
|
|
{
|
|
struct thermal_trip_desc *td;
|
|
int ret;
|
|
|
|
for_each_trip_desc(tz, td) {
|
|
ret = cb(&td->trip, data);
|
|
if (ret)
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(for_each_thermal_trip);
|
|
|
|
int thermal_zone_for_each_trip(struct thermal_zone_device *tz,
|
|
int (*cb)(struct thermal_trip *, void *),
|
|
void *data)
|
|
{
|
|
int ret;
|
|
|
|
mutex_lock(&tz->lock);
|
|
ret = for_each_thermal_trip(tz, cb, data);
|
|
mutex_unlock(&tz->lock);
|
|
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(thermal_zone_for_each_trip);
|
|
|
|
int thermal_zone_get_num_trips(struct thermal_zone_device *tz)
|
|
{
|
|
return tz->num_trips;
|
|
}
|
|
EXPORT_SYMBOL_GPL(thermal_zone_get_num_trips);
|
|
|
|
/**
|
|
* thermal_zone_set_trips - Computes the next trip points for the driver
|
|
* @tz: a pointer to a thermal zone device structure
|
|
*
|
|
* The function computes the next temperature boundaries by browsing
|
|
* the trip points. The result is the closer low and high trip points
|
|
* to the current temperature. These values are passed to the backend
|
|
* driver to let it set its own notification mechanism (usually an
|
|
* interrupt).
|
|
*
|
|
* This function must be called with tz->lock held. Both tz and tz->ops
|
|
* must be valid pointers.
|
|
*
|
|
* It does not return a value
|
|
*/
|
|
void thermal_zone_set_trips(struct thermal_zone_device *tz)
|
|
{
|
|
const struct thermal_trip_desc *td;
|
|
int low = -INT_MAX, high = INT_MAX;
|
|
int ret;
|
|
|
|
lockdep_assert_held(&tz->lock);
|
|
|
|
if (!tz->ops.set_trips)
|
|
return;
|
|
|
|
for_each_trip_desc(tz, td) {
|
|
if (td->threshold < tz->temperature && td->threshold > low)
|
|
low = td->threshold;
|
|
|
|
if (td->threshold > tz->temperature && td->threshold < high)
|
|
high = td->threshold;
|
|
}
|
|
|
|
/* No need to change trip points */
|
|
if (tz->prev_low_trip == low && tz->prev_high_trip == high)
|
|
return;
|
|
|
|
tz->prev_low_trip = low;
|
|
tz->prev_high_trip = high;
|
|
|
|
dev_dbg(&tz->device,
|
|
"new temperature boundaries: %d < x < %d\n", low, high);
|
|
|
|
/*
|
|
* Set a temperature window. When this window is left the driver
|
|
* must inform the thermal core via thermal_zone_device_update.
|
|
*/
|
|
ret = tz->ops.set_trips(tz, low, high);
|
|
if (ret)
|
|
dev_err(&tz->device, "Failed to set trips: %d\n", ret);
|
|
}
|
|
|
|
int thermal_zone_get_trip(struct thermal_zone_device *tz, int trip_id,
|
|
struct thermal_trip *trip)
|
|
{
|
|
if (!tz || !trip || trip_id < 0 || trip_id >= tz->num_trips)
|
|
return -EINVAL;
|
|
|
|
mutex_lock(&tz->lock);
|
|
*trip = tz->trips[trip_id].trip;
|
|
mutex_unlock(&tz->lock);
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(thermal_zone_get_trip);
|
|
|
|
int thermal_zone_trip_id(const struct thermal_zone_device *tz,
|
|
const struct thermal_trip *trip)
|
|
{
|
|
/*
|
|
* Assume the trip to be located within the bounds of the thermal
|
|
* zone's trips[] table.
|
|
*/
|
|
return trip_to_trip_desc(trip) - tz->trips;
|
|
}
|
|
|
|
void thermal_zone_trip_updated(struct thermal_zone_device *tz,
|
|
const struct thermal_trip *trip)
|
|
{
|
|
thermal_notify_tz_trip_change(tz, trip);
|
|
__thermal_zone_device_update(tz, THERMAL_TRIP_CHANGED);
|
|
}
|
|
|
|
void thermal_zone_set_trip_temp(struct thermal_zone_device *tz,
|
|
struct thermal_trip *trip, int temp)
|
|
{
|
|
if (trip->temperature == temp)
|
|
return;
|
|
|
|
WRITE_ONCE(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 (tz->temperature >= td->threshold) {
|
|
/*
|
|
* The trip has been crossed on the way up, so some
|
|
* adjustments are needed to compensate for the lack
|
|
* of it going forward.
|
|
*/
|
|
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
|
|
* trip crossing notification when the trip becomes valid.
|
|
*/
|
|
td->threshold = INT_MAX;
|
|
}
|
|
}
|
|
EXPORT_SYMBOL_GPL(thermal_zone_set_trip_temp);
|