mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
- Rework the device tree initialization, convert the drivers to the
new API and remove the old OF code (Daniel Lezcano) - Fix return value to -ENODEV when searching for a specific thermal zone which does not exist (Daniel Lezcano) - Fix the return value inspection in of_thermal_zone_find() (Dan Carpenter) - Fix kernel panic when kasan is enabled as it detects an use after free when unregistering a thermal zone (Daniel Lezcano) - Move the set_trip ops inside the therma sysfs code (Daniel Lezcano) - Remove unnecessary error message as it is already showed in the underlying function (Jiapeng Chong) - Rework the monitoring path and move the locks upper in the call stack to fix some potentials race windows (Daniel Lezcano) - Fix lockdep_assert() warning introduced by the lock rework (Daniel Lezcano) - Revert the Mellanox 'hotter thermal zone' feature because it is already handled in the thermal framework core code (Daniel Lezcano) -----BEGIN PGP SIGNATURE----- iQEzBAABCAAdFiEEGn3N4YVz0WNVyHskqDIjiipP6E8FAmMEyhwACgkQqDIjiipP 6E8+AAf/QFLCn1CzLsWCvHC+i4+CjoX/d/1ZhX24mZm17llBdSP5zGxlCVNCRAk/ xabT62WUbRsIzG0lCYAGUYXDUQf6qjs1QJ/fMZxtwoyHJA0yc3BtIlhxlnezpcA/ Dvfu0gu3NaZvf/yIl+PWrEJP6ZXmPzpiiYdtCZIReB+L1XR0tSJ49bxP+QIaN5JH EXOmO0Y0XLG9jGshUS4xJrej9QQcTvgpbLGy/QLS43sdmmXHOkfbjvl1i4CPFeo3 14ENCsGm5wXAS1UHDRluoasgPUXTlG809aVzeh6pBcHzWn/90K8XeNA+lCbL8k23 hiXrpYX2Xhgy1vibyB7DW1bzQYOYxQ== =wF0H -----END PGP SIGNATURE----- Merge tag 'thermal-v6.1-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/thermal/linux Pull thermal control changes for v6.1-rc1 from Daniel Lezcano: "- Rework the device tree initialization, convert the drivers to the new API and remove the old OF code (Daniel Lezcano) - Fix return value to -ENODEV when searching for a specific thermal zone which does not exist (Daniel Lezcano) - Fix the return value inspection in of_thermal_zone_find() (Dan Carpenter) - Fix kernel panic when KASAN is enabled as it detects use after free when unregistering a thermal zone (Daniel Lezcano) - Move the set_trip ops inside the therma sysfs code (Daniel Lezcano) - Remove unnecessary error message as it is already showed in the underlying function (Jiapeng Chong) - Rework the monitoring path and move the locks upper in the call stack to fix some potentials race windows (Daniel Lezcano) - Fix lockdep_assert() warning introduced by the lock rework (Daniel Lezcano) - Revert the Mellanox 'hotter thermal zone' feature because it is already handled in the thermal framework core code (Daniel Lezcano)" * tag 'thermal-v6.1-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/thermal/linux: (46 commits) Revert "mlxsw: core: Add the hottest thermal zone detection" thermal/core: Fix lockdep_assert() warning thermal/core: Move the mutex inside the thermal_zone_device_update() function thermal/core: Move the thermal zone lock out of the governors thermal/governors: Group the thermal zone lock inside the throttle function thermal/core: Rework the monitoring a bit thermal/core: Rearm the monitoring only one time thermal/drivers/qcom/spmi-adc-tm5: Remove unnecessary print function dev_err() thermal/of: Remove old OF code thermal/core: Move set_trip_temp ops to the sysfs code thermal/drivers/samsung: Switch to new of thermal API regulator/drivers/max8976: Switch to new of thermal API Input: sun4i-ts - switch to new of thermal API iio/drivers/sun4i_gpadc: Switch to new of thermal API hwmon/drivers/core: Switch to new of thermal API hwmon: pm_bus: core: Switch to new of thermal API ata/drivers/ahci_imx: Switch to new of thermal API thermal/drivers/ti-soc: Switch to new of API thermal/drivers/hisilicon: Switch to new of API thermal/drivers/maxim: Switch to new of API ...
This commit is contained in:
commit
393d0f5c2a
@ -214,6 +214,7 @@ patternProperties:
|
||||
- polling-delay
|
||||
- polling-delay-passive
|
||||
- thermal-sensors
|
||||
- trips
|
||||
|
||||
additionalProperties: false
|
||||
|
||||
|
@ -327,7 +327,7 @@ static int read_adc_sum(void *dev, u16 rtune_ctl_reg, void __iomem * mmio)
|
||||
}
|
||||
|
||||
/* SATA AHCI temperature monitor */
|
||||
static int sata_ahci_read_temperature(void *dev, int *temp)
|
||||
static int __sata_ahci_read_temperature(void *dev, int *temp)
|
||||
{
|
||||
u16 mpll_test_reg, rtune_ctl_reg, dac_ctl_reg, read_sum;
|
||||
u32 str1, str2, str3, str4;
|
||||
@ -416,6 +416,11 @@ static int sata_ahci_read_temperature(void *dev, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int sata_ahci_read_temperature(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
return __sata_ahci_read_temperature(tz->devdata, temp);
|
||||
}
|
||||
|
||||
static ssize_t sata_ahci_show_temp(struct device *dev,
|
||||
struct device_attribute *da,
|
||||
char *buf)
|
||||
@ -423,14 +428,14 @@ static ssize_t sata_ahci_show_temp(struct device *dev,
|
||||
unsigned int temp = 0;
|
||||
int err;
|
||||
|
||||
err = sata_ahci_read_temperature(dev, &temp);
|
||||
err = __sata_ahci_read_temperature(dev, &temp);
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
||||
return sprintf(buf, "%u\n", temp);
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops fsl_sata_ahci_of_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops fsl_sata_ahci_of_thermal_ops = {
|
||||
.get_temp = sata_ahci_read_temperature,
|
||||
};
|
||||
|
||||
@ -1131,8 +1136,8 @@ static int imx_ahci_probe(struct platform_device *pdev)
|
||||
ret = PTR_ERR(hwmon_dev);
|
||||
goto disable_clk;
|
||||
}
|
||||
devm_thermal_zone_of_sensor_register(hwmon_dev, 0, hwmon_dev,
|
||||
&fsl_sata_ahci_of_thermal_ops);
|
||||
devm_thermal_of_zone_register(hwmon_dev, 0, hwmon_dev,
|
||||
&fsl_sata_ahci_of_thermal_ops);
|
||||
dev_info(dev, "%s: sensor 'sata_ahci'\n", dev_name(hwmon_dev));
|
||||
}
|
||||
|
||||
|
@ -151,9 +151,9 @@ static DEFINE_IDA(hwmon_ida);
|
||||
* between hwmon and thermal_sys modules.
|
||||
*/
|
||||
#ifdef CONFIG_THERMAL_OF
|
||||
static int hwmon_thermal_get_temp(void *data, int *temp)
|
||||
static int hwmon_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct hwmon_thermal_data *tdata = data;
|
||||
struct hwmon_thermal_data *tdata = tz->devdata;
|
||||
struct hwmon_device *hwdev = to_hwmon_device(tdata->dev);
|
||||
int ret;
|
||||
long t;
|
||||
@ -168,9 +168,9 @@ static int hwmon_thermal_get_temp(void *data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int hwmon_thermal_set_trips(void *data, int low, int high)
|
||||
static int hwmon_thermal_set_trips(struct thermal_zone_device *tz, int low, int high)
|
||||
{
|
||||
struct hwmon_thermal_data *tdata = data;
|
||||
struct hwmon_thermal_data *tdata = tz->devdata;
|
||||
struct hwmon_device *hwdev = to_hwmon_device(tdata->dev);
|
||||
const struct hwmon_chip_info *chip = hwdev->chip;
|
||||
const struct hwmon_channel_info **info = chip->info;
|
||||
@ -203,7 +203,7 @@ static int hwmon_thermal_set_trips(void *data, int low, int high)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops hwmon_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops hwmon_thermal_ops = {
|
||||
.get_temp = hwmon_thermal_get_temp,
|
||||
.set_trips = hwmon_thermal_set_trips,
|
||||
};
|
||||
@ -227,8 +227,8 @@ static int hwmon_thermal_add_sensor(struct device *dev, int index)
|
||||
tdata->dev = dev;
|
||||
tdata->index = index;
|
||||
|
||||
tzd = devm_thermal_zone_of_sensor_register(dev, index, tdata,
|
||||
&hwmon_thermal_ops);
|
||||
tzd = devm_thermal_of_zone_register(dev, index, tdata,
|
||||
&hwmon_thermal_ops);
|
||||
if (IS_ERR(tzd)) {
|
||||
if (PTR_ERR(tzd) != -ENODEV)
|
||||
return PTR_ERR(tzd);
|
||||
|
@ -1270,9 +1270,9 @@ struct pmbus_thermal_data {
|
||||
struct pmbus_sensor *sensor;
|
||||
};
|
||||
|
||||
static int pmbus_thermal_get_temp(void *data, int *temp)
|
||||
static int pmbus_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct pmbus_thermal_data *tdata = data;
|
||||
struct pmbus_thermal_data *tdata = tz->devdata;
|
||||
struct pmbus_sensor *sensor = tdata->sensor;
|
||||
struct pmbus_data *pmbus_data = tdata->pmbus_data;
|
||||
struct i2c_client *client = to_i2c_client(pmbus_data->dev);
|
||||
@ -1296,7 +1296,7 @@ static int pmbus_thermal_get_temp(void *data, int *temp)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops pmbus_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops pmbus_thermal_ops = {
|
||||
.get_temp = pmbus_thermal_get_temp,
|
||||
};
|
||||
|
||||
@ -1314,8 +1314,8 @@ static int pmbus_thermal_add_sensor(struct pmbus_data *pmbus_data,
|
||||
tdata->sensor = sensor;
|
||||
tdata->pmbus_data = pmbus_data;
|
||||
|
||||
tzd = devm_thermal_zone_of_sensor_register(dev, index, tdata,
|
||||
&pmbus_thermal_ops);
|
||||
tzd = devm_thermal_of_zone_register(dev, index, tdata,
|
||||
&pmbus_thermal_ops);
|
||||
/*
|
||||
* If CONFIG_THERMAL_OF is disabled, this returns -ENODEV,
|
||||
* so ignore that error but forward any other error.
|
||||
|
@ -62,9 +62,9 @@ static void scpi_scale_reading(u64 *value, struct sensor_data *sensor)
|
||||
}
|
||||
}
|
||||
|
||||
static int scpi_read_temp(void *dev, int *temp)
|
||||
static int scpi_read_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct scpi_thermal_zone *zone = dev;
|
||||
struct scpi_thermal_zone *zone = tz->devdata;
|
||||
struct scpi_sensors *scpi_sensors = zone->scpi_sensors;
|
||||
struct scpi_ops *scpi_ops = scpi_sensors->scpi_ops;
|
||||
struct sensor_data *sensor = &scpi_sensors->data[zone->sensor_id];
|
||||
@ -121,7 +121,7 @@ scpi_show_label(struct device *dev, struct device_attribute *attr, char *buf)
|
||||
return sprintf(buf, "%s\n", sensor->info.name);
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops scpi_sensor_ops = {
|
||||
static const struct thermal_zone_device_ops scpi_sensor_ops = {
|
||||
.get_temp = scpi_read_temp,
|
||||
};
|
||||
|
||||
@ -275,10 +275,10 @@ static int scpi_hwmon_probe(struct platform_device *pdev)
|
||||
|
||||
zone->sensor_id = i;
|
||||
zone->scpi_sensors = scpi_sensors;
|
||||
z = devm_thermal_zone_of_sensor_register(dev,
|
||||
sensor->info.sensor_id,
|
||||
zone,
|
||||
&scpi_sensor_ops);
|
||||
z = devm_thermal_of_zone_register(dev,
|
||||
sensor->info.sensor_id,
|
||||
zone,
|
||||
&scpi_sensor_ops);
|
||||
/*
|
||||
* The call to thermal_zone_of_sensor_register returns
|
||||
* an error for sensors that are not associated with
|
||||
|
@ -412,9 +412,9 @@ static int sun4i_gpadc_runtime_resume(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int sun4i_gpadc_get_temp(void *data, int *temp)
|
||||
static int sun4i_gpadc_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct sun4i_gpadc_iio *info = data;
|
||||
struct sun4i_gpadc_iio *info = tz->devdata;
|
||||
int val, scale, offset;
|
||||
|
||||
if (sun4i_gpadc_temp_read(info->indio_dev, &val))
|
||||
@ -428,7 +428,7 @@ static int sun4i_gpadc_get_temp(void *data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops sun4i_ts_tz_ops = {
|
||||
static const struct thermal_zone_device_ops sun4i_ts_tz_ops = {
|
||||
.get_temp = &sun4i_gpadc_get_temp,
|
||||
};
|
||||
|
||||
@ -637,9 +637,9 @@ static int sun4i_gpadc_probe(struct platform_device *pdev)
|
||||
pm_runtime_enable(&pdev->dev);
|
||||
|
||||
if (IS_ENABLED(CONFIG_THERMAL_OF)) {
|
||||
info->tzd = thermal_zone_of_sensor_register(info->sensor_device,
|
||||
0, info,
|
||||
&sun4i_ts_tz_ops);
|
||||
info->tzd = devm_thermal_of_zone_register(info->sensor_device,
|
||||
0, info,
|
||||
&sun4i_ts_tz_ops);
|
||||
/*
|
||||
* Do not fail driver probing when failing to register in
|
||||
* thermal because no thermal DT node is found.
|
||||
@ -681,8 +681,6 @@ static int sun4i_gpadc_remove(struct platform_device *pdev)
|
||||
if (!IS_ENABLED(CONFIG_THERMAL_OF))
|
||||
return 0;
|
||||
|
||||
thermal_zone_of_sensor_unregister(info->sensor_device, info->tzd);
|
||||
|
||||
if (!info->no_irq)
|
||||
iio_map_array_unregister(indio_dev);
|
||||
|
||||
|
@ -192,12 +192,12 @@ static int sun4i_get_temp(const struct sun4i_ts_data *ts, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int sun4i_get_tz_temp(void *data, int *temp)
|
||||
static int sun4i_get_tz_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
return sun4i_get_temp(data, temp);
|
||||
return sun4i_get_temp(tz->devdata, temp);
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops sun4i_ts_tz_ops = {
|
||||
static const struct thermal_zone_device_ops sun4i_ts_tz_ops = {
|
||||
.get_temp = sun4i_get_tz_temp,
|
||||
};
|
||||
|
||||
@ -356,8 +356,8 @@ static int sun4i_ts_probe(struct platform_device *pdev)
|
||||
if (IS_ERR(hwmon))
|
||||
return PTR_ERR(hwmon);
|
||||
|
||||
thermal = devm_thermal_zone_of_sensor_register(ts->dev, 0, ts,
|
||||
&sun4i_ts_tz_ops);
|
||||
thermal = devm_thermal_of_zone_register(ts->dev, 0, ts,
|
||||
&sun4i_ts_tz_ops);
|
||||
if (IS_ERR(thermal))
|
||||
return PTR_ERR(thermal);
|
||||
|
||||
|
@ -21,7 +21,6 @@
|
||||
#define MLXSW_THERMAL_ASIC_TEMP_HOT 105000 /* 105C */
|
||||
#define MLXSW_THERMAL_HYSTERESIS_TEMP 5000 /* 5C */
|
||||
#define MLXSW_THERMAL_MODULE_TEMP_SHIFT (MLXSW_THERMAL_HYSTERESIS_TEMP * 2)
|
||||
#define MLXSW_THERMAL_TEMP_SCORE_MAX GENMASK(31, 0)
|
||||
#define MLXSW_THERMAL_MAX_STATE 10
|
||||
#define MLXSW_THERMAL_MIN_STATE 2
|
||||
#define MLXSW_THERMAL_MAX_DUTY 255
|
||||
@ -101,8 +100,6 @@ struct mlxsw_thermal {
|
||||
struct thermal_cooling_device *cdevs[MLXSW_MFCR_PWMS_MAX];
|
||||
u8 cooling_levels[MLXSW_THERMAL_MAX_STATE + 1];
|
||||
struct mlxsw_thermal_trip trips[MLXSW_THERMAL_NUM_TRIPS];
|
||||
unsigned int tz_highest_score;
|
||||
struct thermal_zone_device *tz_highest_dev;
|
||||
struct mlxsw_thermal_area line_cards[];
|
||||
};
|
||||
|
||||
@ -193,34 +190,6 @@ mlxsw_thermal_module_trips_update(struct device *dev, struct mlxsw_core *core,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void mlxsw_thermal_tz_score_update(struct mlxsw_thermal *thermal,
|
||||
struct thermal_zone_device *tzdev,
|
||||
struct mlxsw_thermal_trip *trips,
|
||||
int temp)
|
||||
{
|
||||
struct mlxsw_thermal_trip *trip = trips;
|
||||
unsigned int score, delta, i, shift = 1;
|
||||
|
||||
/* Calculate thermal zone score, if temperature is above the hot
|
||||
* threshold score is set to MLXSW_THERMAL_TEMP_SCORE_MAX.
|
||||
*/
|
||||
score = MLXSW_THERMAL_TEMP_SCORE_MAX;
|
||||
for (i = MLXSW_THERMAL_TEMP_TRIP_NORM; i < MLXSW_THERMAL_NUM_TRIPS;
|
||||
i++, trip++) {
|
||||
if (temp < trip->temp) {
|
||||
delta = DIV_ROUND_CLOSEST(temp, trip->temp - temp);
|
||||
score = delta * shift;
|
||||
break;
|
||||
}
|
||||
shift *= 256;
|
||||
}
|
||||
|
||||
if (score > thermal->tz_highest_score) {
|
||||
thermal->tz_highest_score = score;
|
||||
thermal->tz_highest_dev = tzdev;
|
||||
}
|
||||
}
|
||||
|
||||
static int mlxsw_thermal_bind(struct thermal_zone_device *tzdev,
|
||||
struct thermal_cooling_device *cdev)
|
||||
{
|
||||
@ -286,9 +255,6 @@ static int mlxsw_thermal_get_temp(struct thermal_zone_device *tzdev,
|
||||
return err;
|
||||
}
|
||||
mlxsw_reg_mtmp_unpack(mtmp_pl, &temp, NULL, NULL, NULL, NULL);
|
||||
if (temp > 0)
|
||||
mlxsw_thermal_tz_score_update(thermal, tzdev, thermal->trips,
|
||||
temp);
|
||||
|
||||
*p_temp = temp;
|
||||
return 0;
|
||||
@ -349,21 +315,6 @@ static int mlxsw_thermal_set_trip_hyst(struct thermal_zone_device *tzdev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int mlxsw_thermal_trend_get(struct thermal_zone_device *tzdev,
|
||||
int trip, enum thermal_trend *trend)
|
||||
{
|
||||
struct mlxsw_thermal *thermal = tzdev->devdata;
|
||||
|
||||
if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS)
|
||||
return -EINVAL;
|
||||
|
||||
if (tzdev == thermal->tz_highest_dev)
|
||||
return 1;
|
||||
|
||||
*trend = THERMAL_TREND_STABLE;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct thermal_zone_params mlxsw_thermal_params = {
|
||||
.no_hwmon = true,
|
||||
};
|
||||
@ -377,7 +328,6 @@ static struct thermal_zone_device_ops mlxsw_thermal_ops = {
|
||||
.set_trip_temp = mlxsw_thermal_set_trip_temp,
|
||||
.get_trip_hyst = mlxsw_thermal_get_trip_hyst,
|
||||
.set_trip_hyst = mlxsw_thermal_set_trip_hyst,
|
||||
.get_trend = mlxsw_thermal_trend_get,
|
||||
};
|
||||
|
||||
static int mlxsw_thermal_module_bind(struct thermal_zone_device *tzdev,
|
||||
@ -463,7 +413,6 @@ static int mlxsw_thermal_module_temp_get(struct thermal_zone_device *tzdev,
|
||||
int temp, crit_temp, emerg_temp;
|
||||
struct device *dev;
|
||||
u16 sensor_index;
|
||||
int err;
|
||||
|
||||
dev = thermal->bus_info->dev;
|
||||
sensor_index = MLXSW_REG_MTMP_MODULE_INDEX_MIN + tz->module;
|
||||
@ -479,10 +428,8 @@ static int mlxsw_thermal_module_temp_get(struct thermal_zone_device *tzdev,
|
||||
return 0;
|
||||
|
||||
/* Update trip points. */
|
||||
err = mlxsw_thermal_module_trips_update(dev, thermal->core, tz,
|
||||
crit_temp, emerg_temp);
|
||||
if (!err && temp > 0)
|
||||
mlxsw_thermal_tz_score_update(thermal, tzdev, tz->trips, temp);
|
||||
mlxsw_thermal_module_trips_update(dev, thermal->core, tz,
|
||||
crit_temp, emerg_temp);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -546,22 +493,6 @@ mlxsw_thermal_module_trip_hyst_set(struct thermal_zone_device *tzdev, int trip,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int mlxsw_thermal_module_trend_get(struct thermal_zone_device *tzdev,
|
||||
int trip, enum thermal_trend *trend)
|
||||
{
|
||||
struct mlxsw_thermal_module *tz = tzdev->devdata;
|
||||
struct mlxsw_thermal *thermal = tz->parent;
|
||||
|
||||
if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS)
|
||||
return -EINVAL;
|
||||
|
||||
if (tzdev == thermal->tz_highest_dev)
|
||||
return 1;
|
||||
|
||||
*trend = THERMAL_TREND_STABLE;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct thermal_zone_device_ops mlxsw_thermal_module_ops = {
|
||||
.bind = mlxsw_thermal_module_bind,
|
||||
.unbind = mlxsw_thermal_module_unbind,
|
||||
@ -571,7 +502,6 @@ static struct thermal_zone_device_ops mlxsw_thermal_module_ops = {
|
||||
.set_trip_temp = mlxsw_thermal_module_trip_temp_set,
|
||||
.get_trip_hyst = mlxsw_thermal_module_trip_hyst_get,
|
||||
.set_trip_hyst = mlxsw_thermal_module_trip_hyst_set,
|
||||
.get_trend = mlxsw_thermal_module_trend_get,
|
||||
};
|
||||
|
||||
static int mlxsw_thermal_gearbox_temp_get(struct thermal_zone_device *tzdev,
|
||||
@ -592,8 +522,6 @@ static int mlxsw_thermal_gearbox_temp_get(struct thermal_zone_device *tzdev,
|
||||
return err;
|
||||
|
||||
mlxsw_reg_mtmp_unpack(mtmp_pl, &temp, NULL, NULL, NULL, NULL);
|
||||
if (temp > 0)
|
||||
mlxsw_thermal_tz_score_update(thermal, tzdev, tz->trips, temp);
|
||||
|
||||
*p_temp = temp;
|
||||
return 0;
|
||||
@ -608,7 +536,6 @@ static struct thermal_zone_device_ops mlxsw_thermal_gearbox_ops = {
|
||||
.set_trip_temp = mlxsw_thermal_module_trip_temp_set,
|
||||
.get_trip_hyst = mlxsw_thermal_module_trip_hyst_get,
|
||||
.set_trip_hyst = mlxsw_thermal_module_trip_hyst_set,
|
||||
.get_trend = mlxsw_thermal_module_trend_get,
|
||||
};
|
||||
|
||||
static int mlxsw_thermal_get_max_state(struct thermal_cooling_device *cdev,
|
||||
|
@ -434,9 +434,9 @@ static int max8973_init_dcdc(struct max8973_chip *max,
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int max8973_thermal_read_temp(void *data, int *temp)
|
||||
static int max8973_thermal_read_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct max8973_chip *mchip = data;
|
||||
struct max8973_chip *mchip = tz->devdata;
|
||||
unsigned int val;
|
||||
int ret;
|
||||
|
||||
@ -465,7 +465,7 @@ static irqreturn_t max8973_thermal_irq(int irq, void *data)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops max77621_tz_ops = {
|
||||
static const struct thermal_zone_device_ops max77621_tz_ops = {
|
||||
.get_temp = max8973_thermal_read_temp,
|
||||
};
|
||||
|
||||
@ -479,8 +479,8 @@ static int max8973_thermal_init(struct max8973_chip *mchip)
|
||||
if (mchip->id != MAX77621)
|
||||
return 0;
|
||||
|
||||
tzd = devm_thermal_zone_of_sensor_register(mchip->dev, 0, mchip,
|
||||
&max77621_tz_ops);
|
||||
tzd = devm_thermal_of_zone_register(mchip->dev, 0, mchip,
|
||||
&max77621_tz_ops);
|
||||
if (IS_ERR(tzd)) {
|
||||
ret = PTR_ERR(tzd);
|
||||
dev_err(mchip->dev, "Failed to register thermal sensor: %d\n",
|
||||
|
@ -179,12 +179,12 @@ static int amlogic_thermal_disable(struct amlogic_thermal *data)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int amlogic_thermal_get_temp(void *data, int *temp)
|
||||
static int amlogic_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
unsigned int tval;
|
||||
struct amlogic_thermal *pdata = data;
|
||||
struct amlogic_thermal *pdata = tz->devdata;
|
||||
|
||||
if (!data)
|
||||
if (!pdata)
|
||||
return -EINVAL;
|
||||
|
||||
regmap_read(pdata->regmap, TSENSOR_STAT0, &tval);
|
||||
@ -195,7 +195,7 @@ static int amlogic_thermal_get_temp(void *data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops amlogic_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops amlogic_thermal_ops = {
|
||||
.get_temp = amlogic_thermal_get_temp,
|
||||
};
|
||||
|
||||
@ -276,10 +276,10 @@ static int amlogic_thermal_probe(struct platform_device *pdev)
|
||||
return PTR_ERR(pdata->sec_ao_map);
|
||||
}
|
||||
|
||||
pdata->tzd = devm_thermal_zone_of_sensor_register(&pdev->dev,
|
||||
0,
|
||||
pdata,
|
||||
&amlogic_thermal_ops);
|
||||
pdata->tzd = devm_thermal_of_zone_register(&pdev->dev,
|
||||
0,
|
||||
pdata,
|
||||
&amlogic_thermal_ops);
|
||||
if (IS_ERR(pdata->tzd)) {
|
||||
ret = PTR_ERR(pdata->tzd);
|
||||
dev_err(dev, "Failed to register tsensor: %d\n", ret);
|
||||
|
@ -420,9 +420,9 @@ static struct thermal_zone_device_ops legacy_ops = {
|
||||
.get_temp = armada_get_temp_legacy,
|
||||
};
|
||||
|
||||
static int armada_get_temp(void *_sensor, int *temp)
|
||||
static int armada_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct armada_thermal_sensor *sensor = _sensor;
|
||||
struct armada_thermal_sensor *sensor = tz->devdata;
|
||||
struct armada_thermal_priv *priv = sensor->priv;
|
||||
int ret;
|
||||
|
||||
@ -450,7 +450,7 @@ unlock_mutex:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops of_ops = {
|
||||
static const struct thermal_zone_device_ops of_ops = {
|
||||
.get_temp = armada_get_temp,
|
||||
};
|
||||
|
||||
@ -928,9 +928,9 @@ static int armada_thermal_probe(struct platform_device *pdev)
|
||||
/* Register the sensor */
|
||||
sensor->priv = priv;
|
||||
sensor->id = sensor_id;
|
||||
tz = devm_thermal_zone_of_sensor_register(&pdev->dev,
|
||||
sensor->id, sensor,
|
||||
&of_ops);
|
||||
tz = devm_thermal_of_zone_register(&pdev->dev,
|
||||
sensor->id, sensor,
|
||||
&of_ops);
|
||||
if (IS_ERR(tz)) {
|
||||
dev_info(&pdev->dev, "Thermal sensor %d unavailable\n",
|
||||
sensor_id);
|
||||
|
@ -31,11 +31,11 @@ struct bcm2711_thermal_priv {
|
||||
struct thermal_zone_device *thermal;
|
||||
};
|
||||
|
||||
static int bcm2711_get_temp(void *data, int *temp)
|
||||
static int bcm2711_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct bcm2711_thermal_priv *priv = data;
|
||||
int slope = thermal_zone_get_slope(priv->thermal);
|
||||
int offset = thermal_zone_get_offset(priv->thermal);
|
||||
struct bcm2711_thermal_priv *priv = tz->devdata;
|
||||
int slope = thermal_zone_get_slope(tz);
|
||||
int offset = thermal_zone_get_offset(tz);
|
||||
u32 val;
|
||||
int ret;
|
||||
|
||||
@ -54,7 +54,7 @@ static int bcm2711_get_temp(void *data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops bcm2711_thermal_of_ops = {
|
||||
static const struct thermal_zone_device_ops bcm2711_thermal_of_ops = {
|
||||
.get_temp = bcm2711_get_temp,
|
||||
};
|
||||
|
||||
@ -88,8 +88,8 @@ static int bcm2711_thermal_probe(struct platform_device *pdev)
|
||||
}
|
||||
priv->regmap = regmap;
|
||||
|
||||
thermal = devm_thermal_zone_of_sensor_register(dev, 0, priv,
|
||||
&bcm2711_thermal_of_ops);
|
||||
thermal = devm_thermal_of_zone_register(dev, 0, priv,
|
||||
&bcm2711_thermal_of_ops);
|
||||
if (IS_ERR(thermal)) {
|
||||
ret = PTR_ERR(thermal);
|
||||
dev_err(dev, "could not register sensor: %d\n", ret);
|
||||
|
@ -88,9 +88,9 @@ static int bcm2835_thermal_temp2adc(int temp, int offset, int slope)
|
||||
return temp;
|
||||
}
|
||||
|
||||
static int bcm2835_thermal_get_temp(void *d, int *temp)
|
||||
static int bcm2835_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct bcm2835_thermal_data *data = d;
|
||||
struct bcm2835_thermal_data *data = tz->devdata;
|
||||
u32 val = readl(data->regs + BCM2835_TS_TSENSSTAT);
|
||||
|
||||
if (!(val & BCM2835_TS_TSENSSTAT_VALID))
|
||||
@ -135,7 +135,7 @@ static void bcm2835_thermal_debugfs(struct platform_device *pdev)
|
||||
debugfs_create_regset32("regset", 0444, data->debugfsdir, regset);
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops bcm2835_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops bcm2835_thermal_ops = {
|
||||
.get_temp = bcm2835_thermal_get_temp,
|
||||
};
|
||||
|
||||
@ -206,8 +206,8 @@ static int bcm2835_thermal_probe(struct platform_device *pdev)
|
||||
data->clk, rate);
|
||||
|
||||
/* register of thermal sensor and get info from DT */
|
||||
tz = thermal_zone_of_sensor_register(&pdev->dev, 0, data,
|
||||
&bcm2835_thermal_ops);
|
||||
tz = devm_thermal_of_zone_register(&pdev->dev, 0, data,
|
||||
&bcm2835_thermal_ops);
|
||||
if (IS_ERR(tz)) {
|
||||
err = PTR_ERR(tz);
|
||||
dev_err(&pdev->dev,
|
||||
@ -277,7 +277,7 @@ static int bcm2835_thermal_probe(struct platform_device *pdev)
|
||||
|
||||
return 0;
|
||||
err_tz:
|
||||
thermal_zone_of_sensor_unregister(&pdev->dev, tz);
|
||||
thermal_of_zone_unregister(tz);
|
||||
err_clk:
|
||||
clk_disable_unprepare(data->clk);
|
||||
|
||||
@ -290,7 +290,7 @@ static int bcm2835_thermal_remove(struct platform_device *pdev)
|
||||
struct thermal_zone_device *tz = data->tz;
|
||||
|
||||
debugfs_remove_recursive(data->debugfsdir);
|
||||
thermal_zone_of_sensor_unregister(&pdev->dev, tz);
|
||||
thermal_of_zone_unregister(tz);
|
||||
clk_disable_unprepare(data->clk);
|
||||
|
||||
return 0;
|
||||
|
@ -105,7 +105,7 @@ static struct avs_tmon_trip avs_tmon_trips[] = {
|
||||
struct brcmstb_thermal_params {
|
||||
unsigned int offset;
|
||||
unsigned int mult;
|
||||
const struct thermal_zone_of_device_ops *of_ops;
|
||||
const struct thermal_zone_device_ops *of_ops;
|
||||
};
|
||||
|
||||
struct brcmstb_thermal_priv {
|
||||
@ -150,9 +150,9 @@ static inline u32 avs_tmon_temp_to_code(struct brcmstb_thermal_priv *priv,
|
||||
return (u32)((offset - temp) / mult);
|
||||
}
|
||||
|
||||
static int brcmstb_get_temp(void *data, int *temp)
|
||||
static int brcmstb_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct brcmstb_thermal_priv *priv = data;
|
||||
struct brcmstb_thermal_priv *priv = tz->devdata;
|
||||
u32 val;
|
||||
long t;
|
||||
|
||||
@ -260,9 +260,9 @@ static irqreturn_t brcmstb_tmon_irq_thread(int irq, void *data)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static int brcmstb_set_trips(void *data, int low, int high)
|
||||
static int brcmstb_set_trips(struct thermal_zone_device *tz, int low, int high)
|
||||
{
|
||||
struct brcmstb_thermal_priv *priv = data;
|
||||
struct brcmstb_thermal_priv *priv = tz->devdata;
|
||||
|
||||
dev_dbg(priv->dev, "set trips %d <--> %d\n", low, high);
|
||||
|
||||
@ -288,7 +288,7 @@ static int brcmstb_set_trips(void *data, int low, int high)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops brcmstb_16nm_of_ops = {
|
||||
static const struct thermal_zone_device_ops brcmstb_16nm_of_ops = {
|
||||
.get_temp = brcmstb_get_temp,
|
||||
};
|
||||
|
||||
@ -298,7 +298,7 @@ static const struct brcmstb_thermal_params brcmstb_16nm_params = {
|
||||
.of_ops = &brcmstb_16nm_of_ops,
|
||||
};
|
||||
|
||||
static const struct thermal_zone_of_device_ops brcmstb_28nm_of_ops = {
|
||||
static const struct thermal_zone_device_ops brcmstb_28nm_of_ops = {
|
||||
.get_temp = brcmstb_get_temp,
|
||||
.set_trips = brcmstb_set_trips,
|
||||
};
|
||||
@ -318,7 +318,7 @@ MODULE_DEVICE_TABLE(of, brcmstb_thermal_id_table);
|
||||
|
||||
static int brcmstb_thermal_probe(struct platform_device *pdev)
|
||||
{
|
||||
const struct thermal_zone_of_device_ops *of_ops;
|
||||
const struct thermal_zone_device_ops *of_ops;
|
||||
struct thermal_zone_device *thermal;
|
||||
struct brcmstb_thermal_priv *priv;
|
||||
struct resource *res;
|
||||
@ -341,8 +341,8 @@ static int brcmstb_thermal_probe(struct platform_device *pdev)
|
||||
platform_set_drvdata(pdev, priv);
|
||||
of_ops = priv->temp_params->of_ops;
|
||||
|
||||
thermal = devm_thermal_zone_of_sensor_register(&pdev->dev, 0, priv,
|
||||
of_ops);
|
||||
thermal = devm_thermal_of_zone_register(&pdev->dev, 0, priv,
|
||||
of_ops);
|
||||
if (IS_ERR(thermal)) {
|
||||
ret = PTR_ERR(thermal);
|
||||
dev_err(&pdev->dev, "could not register sensor: %d\n", ret);
|
||||
|
@ -14,19 +14,14 @@
|
||||
#define PVTMON_CONTROL0_SEL_TEST_MODE 0x0000000e
|
||||
#define PVTMON_STATUS 0x08
|
||||
|
||||
struct ns_thermal {
|
||||
struct thermal_zone_device *tz;
|
||||
void __iomem *pvtmon;
|
||||
};
|
||||
|
||||
static int ns_thermal_get_temp(void *data, int *temp)
|
||||
static int ns_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct ns_thermal *ns_thermal = data;
|
||||
int offset = thermal_zone_get_offset(ns_thermal->tz);
|
||||
int slope = thermal_zone_get_slope(ns_thermal->tz);
|
||||
void __iomem *pvtmon = tz->devdata;
|
||||
int offset = thermal_zone_get_offset(tz);
|
||||
int slope = thermal_zone_get_slope(tz);
|
||||
u32 val;
|
||||
|
||||
val = readl(ns_thermal->pvtmon + PVTMON_CONTROL0);
|
||||
val = readl(pvtmon + PVTMON_CONTROL0);
|
||||
if ((val & PVTMON_CONTROL0_SEL_MASK) != PVTMON_CONTROL0_SEL_TEMP_MONITOR) {
|
||||
/* Clear current mode selection */
|
||||
val &= ~PVTMON_CONTROL0_SEL_MASK;
|
||||
@ -34,50 +29,47 @@ static int ns_thermal_get_temp(void *data, int *temp)
|
||||
/* Set temp monitor mode (it's the default actually) */
|
||||
val |= PVTMON_CONTROL0_SEL_TEMP_MONITOR;
|
||||
|
||||
writel(val, ns_thermal->pvtmon + PVTMON_CONTROL0);
|
||||
writel(val, pvtmon + PVTMON_CONTROL0);
|
||||
}
|
||||
|
||||
val = readl(ns_thermal->pvtmon + PVTMON_STATUS);
|
||||
val = readl(pvtmon + PVTMON_STATUS);
|
||||
*temp = slope * val + offset;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops ns_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops ns_thermal_ops = {
|
||||
.get_temp = ns_thermal_get_temp,
|
||||
};
|
||||
|
||||
static int ns_thermal_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct device *dev = &pdev->dev;
|
||||
struct ns_thermal *ns_thermal;
|
||||
struct thermal_zone_device *tz;
|
||||
void __iomem *pvtmon;
|
||||
|
||||
ns_thermal = devm_kzalloc(dev, sizeof(*ns_thermal), GFP_KERNEL);
|
||||
if (!ns_thermal)
|
||||
return -ENOMEM;
|
||||
|
||||
ns_thermal->pvtmon = of_iomap(dev_of_node(dev), 0);
|
||||
if (WARN_ON(!ns_thermal->pvtmon))
|
||||
pvtmon = of_iomap(dev_of_node(dev), 0);
|
||||
if (WARN_ON(!pvtmon))
|
||||
return -ENOENT;
|
||||
|
||||
ns_thermal->tz = devm_thermal_zone_of_sensor_register(dev, 0,
|
||||
ns_thermal,
|
||||
&ns_thermal_ops);
|
||||
if (IS_ERR(ns_thermal->tz)) {
|
||||
iounmap(ns_thermal->pvtmon);
|
||||
return PTR_ERR(ns_thermal->tz);
|
||||
tz = devm_thermal_of_zone_register(dev, 0,
|
||||
pvtmon,
|
||||
&ns_thermal_ops);
|
||||
if (IS_ERR(tz)) {
|
||||
iounmap(pvtmon);
|
||||
return PTR_ERR(tz);
|
||||
}
|
||||
|
||||
platform_set_drvdata(pdev, ns_thermal);
|
||||
platform_set_drvdata(pdev, pvtmon);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ns_thermal_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct ns_thermal *ns_thermal = platform_get_drvdata(pdev);
|
||||
void __iomem *pvtmon = platform_get_drvdata(pdev);
|
||||
|
||||
iounmap(ns_thermal->pvtmon);
|
||||
iounmap(pvtmon);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -19,7 +19,6 @@
|
||||
#define SR_TMON_MAX_LIST 6
|
||||
|
||||
struct sr_tmon {
|
||||
struct thermal_zone_device *tz;
|
||||
unsigned int crit_temp;
|
||||
unsigned int tmon_id;
|
||||
struct sr_thermal *priv;
|
||||
@ -31,9 +30,9 @@ struct sr_thermal {
|
||||
struct sr_tmon tmon[SR_TMON_MAX_LIST];
|
||||
};
|
||||
|
||||
static int sr_get_temp(void *data, int *temp)
|
||||
static int sr_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct sr_tmon *tmon = data;
|
||||
struct sr_tmon *tmon = tz->devdata;
|
||||
struct sr_thermal *sr_thermal = tmon->priv;
|
||||
|
||||
*temp = readl(sr_thermal->regs + SR_TMON_TEMP_BASE(tmon->tmon_id));
|
||||
@ -41,13 +40,14 @@ static int sr_get_temp(void *data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops sr_tz_ops = {
|
||||
static const struct thermal_zone_device_ops sr_tz_ops = {
|
||||
.get_temp = sr_get_temp,
|
||||
};
|
||||
|
||||
static int sr_thermal_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct device *dev = &pdev->dev;
|
||||
struct thermal_zone_device *tz;
|
||||
struct sr_thermal *sr_thermal;
|
||||
struct sr_tmon *tmon;
|
||||
struct resource *res;
|
||||
@ -84,10 +84,10 @@ static int sr_thermal_probe(struct platform_device *pdev)
|
||||
writel(0, sr_thermal->regs + SR_TMON_TEMP_BASE(i));
|
||||
tmon->tmon_id = i;
|
||||
tmon->priv = sr_thermal;
|
||||
tmon->tz = devm_thermal_zone_of_sensor_register(dev, i, tmon,
|
||||
&sr_tz_ops);
|
||||
if (IS_ERR(tmon->tz))
|
||||
return PTR_ERR(tmon->tz);
|
||||
tz = devm_thermal_of_zone_register(dev, i, tmon,
|
||||
&sr_tz_ops);
|
||||
if (IS_ERR(tz))
|
||||
return PTR_ERR(tz);
|
||||
|
||||
dev_dbg(dev, "thermal sensor %d registered\n", i);
|
||||
}
|
||||
|
@ -58,9 +58,9 @@ struct db8500_thermal_zone {
|
||||
};
|
||||
|
||||
/* Callback to get current temperature */
|
||||
static int db8500_thermal_get_temp(void *data, int *temp)
|
||||
static int db8500_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct db8500_thermal_zone *th = data;
|
||||
struct db8500_thermal_zone *th = tz->devdata;
|
||||
|
||||
/*
|
||||
* TODO: There is no PRCMU interface to get temperature data currently,
|
||||
@ -72,7 +72,7 @@ static int db8500_thermal_get_temp(void *data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct thermal_zone_of_device_ops thdev_ops = {
|
||||
static const struct thermal_zone_device_ops thdev_ops = {
|
||||
.get_temp = db8500_thermal_get_temp,
|
||||
};
|
||||
|
||||
@ -182,7 +182,7 @@ static int db8500_thermal_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
/* register of thermal sensor and get info from DT */
|
||||
th->tz = devm_thermal_zone_of_sensor_register(dev, 0, th, &thdev_ops);
|
||||
th->tz = devm_thermal_of_zone_register(dev, 0, th, &thdev_ops);
|
||||
if (IS_ERR(th->tz)) {
|
||||
dev_err(dev, "register thermal zone sensor failed\n");
|
||||
return PTR_ERR(th->tz);
|
||||
|
@ -31,8 +31,6 @@ static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip)
|
||||
trip, trip_temp, tz->temperature,
|
||||
trip_hyst);
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
|
||||
list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
|
||||
if (instance->trip != trip)
|
||||
continue;
|
||||
@ -65,8 +63,6 @@ static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip)
|
||||
instance->cdev->updated = false; /* cdev needs update */
|
||||
mutex_unlock(&instance->cdev->lock);
|
||||
}
|
||||
|
||||
mutex_unlock(&tz->lock);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -100,15 +96,13 @@ static int bang_bang_control(struct thermal_zone_device *tz, int trip)
|
||||
{
|
||||
struct thermal_instance *instance;
|
||||
|
||||
thermal_zone_trip_update(tz, trip);
|
||||
lockdep_assert_held(&tz->lock);
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
thermal_zone_trip_update(tz, trip);
|
||||
|
||||
list_for_each_entry(instance, &tz->thermal_instances, tz_node)
|
||||
thermal_cdev_update(instance->cdev);
|
||||
|
||||
mutex_unlock(&tz->lock);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -82,7 +82,7 @@ static int fair_share_throttle(struct thermal_zone_device *tz, int trip)
|
||||
int total_instance = 0;
|
||||
int cur_trip_level = get_trip_level(tz);
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
lockdep_assert_held(&tz->lock);
|
||||
|
||||
list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
|
||||
if (instance->trip != trip)
|
||||
@ -112,7 +112,6 @@ static int fair_share_throttle(struct thermal_zone_device *tz, int trip)
|
||||
mutex_unlock(&cdev->lock);
|
||||
}
|
||||
|
||||
mutex_unlock(&tz->lock);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -392,8 +392,6 @@ static int allocate_power(struct thermal_zone_device *tz,
|
||||
int i, num_actors, total_weight, ret = 0;
|
||||
int trip_max_desired_temperature = params->trip_max_desired_temperature;
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
|
||||
num_actors = 0;
|
||||
total_weight = 0;
|
||||
list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
|
||||
@ -404,10 +402,8 @@ static int allocate_power(struct thermal_zone_device *tz,
|
||||
}
|
||||
}
|
||||
|
||||
if (!num_actors) {
|
||||
ret = -ENODEV;
|
||||
goto unlock;
|
||||
}
|
||||
if (!num_actors)
|
||||
return -ENODEV;
|
||||
|
||||
/*
|
||||
* We need to allocate five arrays of the same size:
|
||||
@ -421,10 +417,8 @@ static int allocate_power(struct thermal_zone_device *tz,
|
||||
BUILD_BUG_ON(sizeof(*req_power) != sizeof(*extra_actor_power));
|
||||
BUILD_BUG_ON(sizeof(*req_power) != sizeof(*weighted_req_power));
|
||||
req_power = kcalloc(num_actors * 5, sizeof(*req_power), GFP_KERNEL);
|
||||
if (!req_power) {
|
||||
ret = -ENOMEM;
|
||||
goto unlock;
|
||||
}
|
||||
if (!req_power)
|
||||
return -ENOMEM;
|
||||
|
||||
max_power = &req_power[num_actors];
|
||||
granted_power = &req_power[2 * num_actors];
|
||||
@ -496,8 +490,6 @@ static int allocate_power(struct thermal_zone_device *tz,
|
||||
control_temp - tz->temperature);
|
||||
|
||||
kfree(req_power);
|
||||
unlock:
|
||||
mutex_unlock(&tz->lock);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -576,7 +568,6 @@ static void allow_maximum_power(struct thermal_zone_device *tz, bool update)
|
||||
struct power_allocator_params *params = tz->governor_data;
|
||||
u32 req_power;
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
|
||||
struct thermal_cooling_device *cdev = instance->cdev;
|
||||
|
||||
@ -598,7 +589,6 @@ static void allow_maximum_power(struct thermal_zone_device *tz, bool update)
|
||||
|
||||
mutex_unlock(&instance->cdev->lock);
|
||||
}
|
||||
mutex_unlock(&tz->lock);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -712,6 +702,8 @@ static int power_allocator_throttle(struct thermal_zone_device *tz, int trip)
|
||||
struct power_allocator_params *params = tz->governor_data;
|
||||
bool update;
|
||||
|
||||
lockdep_assert_held(&tz->lock);
|
||||
|
||||
/*
|
||||
* We get called for every trip point but we only need to do
|
||||
* our calculations once
|
||||
|
@ -117,8 +117,6 @@ static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip)
|
||||
dev_dbg(&tz->device, "Trip%d[type=%d,temp=%d]:trend=%d,throttle=%d\n",
|
||||
trip, trip_type, trip_temp, trend, throttle);
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
|
||||
list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
|
||||
if (instance->trip != trip)
|
||||
continue;
|
||||
@ -145,8 +143,6 @@ static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip)
|
||||
instance->cdev->updated = false; /* cdev needs update */
|
||||
mutex_unlock(&instance->cdev->lock);
|
||||
}
|
||||
|
||||
mutex_unlock(&tz->lock);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -164,15 +160,13 @@ static int step_wise_throttle(struct thermal_zone_device *tz, int trip)
|
||||
{
|
||||
struct thermal_instance *instance;
|
||||
|
||||
thermal_zone_trip_update(tz, trip);
|
||||
lockdep_assert_held(&tz->lock);
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
thermal_zone_trip_update(tz, trip);
|
||||
|
||||
list_for_each_entry(instance, &tz->thermal_instances, tz_node)
|
||||
thermal_cdev_update(instance->cdev);
|
||||
|
||||
mutex_unlock(&tz->lock);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -434,9 +434,9 @@ static int hi3660_thermal_probe(struct hisi_thermal_data *data)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int hisi_thermal_get_temp(void *__data, int *temp)
|
||||
static int hisi_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct hisi_thermal_sensor *sensor = __data;
|
||||
struct hisi_thermal_sensor *sensor = tz->devdata;
|
||||
struct hisi_thermal_data *data = sensor->data;
|
||||
|
||||
*temp = data->ops->get_temp(sensor);
|
||||
@ -447,7 +447,7 @@ static int hisi_thermal_get_temp(void *__data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops hisi_of_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops hisi_of_thermal_ops = {
|
||||
.get_temp = hisi_thermal_get_temp,
|
||||
};
|
||||
|
||||
@ -459,7 +459,7 @@ static irqreturn_t hisi_thermal_alarm_irq_thread(int irq, void *dev)
|
||||
|
||||
data->ops->irq_handler(sensor);
|
||||
|
||||
hisi_thermal_get_temp(sensor, &temp);
|
||||
temp = data->ops->get_temp(sensor);
|
||||
|
||||
if (temp >= sensor->thres_temp) {
|
||||
dev_crit(&data->pdev->dev,
|
||||
@ -484,9 +484,9 @@ static int hisi_thermal_register_sensor(struct platform_device *pdev,
|
||||
int ret, i;
|
||||
const struct thermal_trip *trip;
|
||||
|
||||
sensor->tzd = devm_thermal_zone_of_sensor_register(&pdev->dev,
|
||||
sensor->id, sensor,
|
||||
&hisi_of_thermal_ops);
|
||||
sensor->tzd = devm_thermal_of_zone_register(&pdev->dev,
|
||||
sensor->id, sensor,
|
||||
&hisi_of_thermal_ops);
|
||||
if (IS_ERR(sensor->tzd)) {
|
||||
ret = PTR_ERR(sensor->tzd);
|
||||
sensor->tzd = NULL;
|
||||
|
@ -96,15 +96,15 @@ static int imx8mp_tmu_get_temp(void *data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int tmu_get_temp(void *data, int *temp)
|
||||
static int tmu_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct tmu_sensor *sensor = data;
|
||||
struct tmu_sensor *sensor = tz->devdata;
|
||||
struct imx8mm_tmu *tmu = sensor->priv;
|
||||
|
||||
return tmu->socdata->get_temp(data, temp);
|
||||
return tmu->socdata->get_temp(sensor, temp);
|
||||
}
|
||||
|
||||
static struct thermal_zone_of_device_ops tmu_tz_ops = {
|
||||
static const struct thermal_zone_device_ops tmu_tz_ops = {
|
||||
.get_temp = tmu_get_temp,
|
||||
};
|
||||
|
||||
@ -165,9 +165,9 @@ static int imx8mm_tmu_probe(struct platform_device *pdev)
|
||||
for (i = 0; i < data->num_sensors; i++) {
|
||||
tmu->sensors[i].priv = tmu;
|
||||
tmu->sensors[i].tzd =
|
||||
devm_thermal_zone_of_sensor_register(&pdev->dev, i,
|
||||
&tmu->sensors[i],
|
||||
&tmu_tz_ops);
|
||||
devm_thermal_of_zone_register(&pdev->dev, i,
|
||||
&tmu->sensors[i],
|
||||
&tmu_tz_ops);
|
||||
if (IS_ERR(tmu->sensors[i].tzd)) {
|
||||
ret = PTR_ERR(tmu->sensors[i].tzd);
|
||||
dev_err(&pdev->dev,
|
||||
|
@ -43,11 +43,11 @@ struct imx_sc_msg_misc_get_temp {
|
||||
} data;
|
||||
} __packed __aligned(4);
|
||||
|
||||
static int imx_sc_thermal_get_temp(void *data, int *temp)
|
||||
static int imx_sc_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct imx_sc_msg_misc_get_temp msg;
|
||||
struct imx_sc_rpc_msg *hdr = &msg.hdr;
|
||||
struct imx_sc_sensor *sensor = data;
|
||||
struct imx_sc_sensor *sensor = tz->devdata;
|
||||
int ret;
|
||||
|
||||
msg.data.req.resource_id = sensor->resource_id;
|
||||
@ -70,7 +70,7 @@ static int imx_sc_thermal_get_temp(void *data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops imx_sc_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops imx_sc_thermal_ops = {
|
||||
.get_temp = imx_sc_thermal_get_temp,
|
||||
};
|
||||
|
||||
@ -109,10 +109,10 @@ static int imx_sc_thermal_probe(struct platform_device *pdev)
|
||||
break;
|
||||
}
|
||||
|
||||
sensor->tzd = devm_thermal_zone_of_sensor_register(&pdev->dev,
|
||||
sensor->resource_id,
|
||||
sensor,
|
||||
&imx_sc_thermal_ops);
|
||||
sensor->tzd = devm_thermal_of_zone_register(&pdev->dev,
|
||||
sensor->resource_id,
|
||||
sensor,
|
||||
&imx_sc_thermal_ops);
|
||||
if (IS_ERR(sensor->tzd)) {
|
||||
dev_err(&pdev->dev, "failed to register thermal zone\n");
|
||||
ret = PTR_ERR(sensor->tzd);
|
||||
|
@ -139,9 +139,9 @@ static int k3_bgp_read_temp(struct k3_thermal_data *devdata,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int k3_thermal_get_temp(void *devdata, int *temp)
|
||||
static int k3_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct k3_thermal_data *data = devdata;
|
||||
struct k3_thermal_data *data = tz->devdata;
|
||||
int ret = 0;
|
||||
|
||||
ret = k3_bgp_read_temp(data, temp);
|
||||
@ -151,7 +151,7 @@ static int k3_thermal_get_temp(void *devdata, int *temp)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops k3_of_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops k3_of_thermal_ops = {
|
||||
.get_temp = k3_thermal_get_temp,
|
||||
};
|
||||
|
||||
@ -213,9 +213,9 @@ static int k3_bandgap_probe(struct platform_device *pdev)
|
||||
writel(val, data[id].bgp->base + data[id].ctrl_offset);
|
||||
|
||||
data[id].tzd =
|
||||
devm_thermal_zone_of_sensor_register(dev, id,
|
||||
&data[id],
|
||||
&k3_of_thermal_ops);
|
||||
devm_thermal_of_zone_register(dev, id,
|
||||
&data[id],
|
||||
&k3_of_thermal_ops);
|
||||
if (IS_ERR(data[id].tzd)) {
|
||||
dev_err(dev, "thermal zone device is NULL\n");
|
||||
ret = PTR_ERR(data[id].tzd);
|
||||
|
@ -247,9 +247,9 @@ static inline int k3_bgp_read_temp(struct k3_thermal_data *devdata,
|
||||
}
|
||||
|
||||
/* Get temperature callback function for thermal zone */
|
||||
static int k3_thermal_get_temp(void *devdata, int *temp)
|
||||
static int k3_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct k3_thermal_data *data = devdata;
|
||||
struct k3_thermal_data *data = tz->devdata;
|
||||
int ret = 0;
|
||||
|
||||
ret = k3_bgp_read_temp(data, temp);
|
||||
@ -259,7 +259,7 @@ static int k3_thermal_get_temp(void *devdata, int *temp)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops k3_of_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops k3_of_thermal_ops = {
|
||||
.get_temp = k3_thermal_get_temp,
|
||||
};
|
||||
|
||||
@ -474,10 +474,8 @@ static int k3_j72xx_bandgap_probe(struct platform_device *pdev)
|
||||
writel(val, data[id].bgp->cfg2_base + data[id].ctrl_offset);
|
||||
|
||||
bgp->ts_data[id] = &data[id];
|
||||
ti_thermal =
|
||||
devm_thermal_zone_of_sensor_register(bgp->dev, id,
|
||||
&data[id],
|
||||
&k3_of_thermal_ops);
|
||||
ti_thermal = devm_thermal_of_zone_register(bgp->dev, id, &data[id],
|
||||
&k3_of_thermal_ops);
|
||||
if (IS_ERR(ti_thermal)) {
|
||||
dev_err(bgp->dev, "thermal zone device is NULL\n");
|
||||
ret = PTR_ERR(ti_thermal);
|
||||
|
@ -44,9 +44,9 @@ struct max77620_therm_info {
|
||||
* Return 0 on success otherwise error number to show reason of failure.
|
||||
*/
|
||||
|
||||
static int max77620_thermal_read_temp(void *data, int *temp)
|
||||
static int max77620_thermal_read_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct max77620_therm_info *mtherm = data;
|
||||
struct max77620_therm_info *mtherm = tz->devdata;
|
||||
unsigned int val;
|
||||
int ret;
|
||||
|
||||
@ -66,7 +66,7 @@ static int max77620_thermal_read_temp(void *data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops max77620_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops max77620_thermal_ops = {
|
||||
.get_temp = max77620_thermal_read_temp,
|
||||
};
|
||||
|
||||
@ -114,7 +114,7 @@ static int max77620_thermal_probe(struct platform_device *pdev)
|
||||
*/
|
||||
device_set_of_node_from_dev(&pdev->dev, pdev->dev.parent);
|
||||
|
||||
mtherm->tz_device = devm_thermal_zone_of_sensor_register(&pdev->dev, 0,
|
||||
mtherm->tz_device = devm_thermal_of_zone_register(&pdev->dev, 0,
|
||||
mtherm, &max77620_thermal_ops);
|
||||
if (IS_ERR(mtherm->tz_device)) {
|
||||
ret = PTR_ERR(mtherm->tz_device);
|
||||
|
@ -679,9 +679,9 @@ static int mtk_thermal_bank_temperature(struct mtk_thermal_bank *bank)
|
||||
return max;
|
||||
}
|
||||
|
||||
static int mtk_read_temp(void *data, int *temperature)
|
||||
static int mtk_read_temp(struct thermal_zone_device *tz, int *temperature)
|
||||
{
|
||||
struct mtk_thermal *mt = data;
|
||||
struct mtk_thermal *mt = tz->devdata;
|
||||
int i;
|
||||
int tempmax = INT_MIN;
|
||||
|
||||
@ -700,7 +700,7 @@ static int mtk_read_temp(void *data, int *temperature)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops mtk_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops mtk_thermal_ops = {
|
||||
.get_temp = mtk_read_temp,
|
||||
};
|
||||
|
||||
@ -1082,8 +1082,8 @@ static int mtk_thermal_probe(struct platform_device *pdev)
|
||||
|
||||
platform_set_drvdata(pdev, mt);
|
||||
|
||||
tzdev = devm_thermal_zone_of_sensor_register(&pdev->dev, 0, mt,
|
||||
&mtk_thermal_ops);
|
||||
tzdev = devm_thermal_of_zone_register(&pdev->dev, 0, mt,
|
||||
&mtk_thermal_ops);
|
||||
if (IS_ERR(tzdev)) {
|
||||
ret = PTR_ERR(tzdev);
|
||||
goto err_disable_clk_peri_therm;
|
||||
|
@ -357,9 +357,9 @@ static irqreturn_t adc_tm5_gen2_isr(int irq, void *data)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static int adc_tm5_get_temp(void *data, int *temp)
|
||||
static int adc_tm5_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct adc_tm5_channel *channel = data;
|
||||
struct adc_tm5_channel *channel = tz->devdata;
|
||||
int ret;
|
||||
|
||||
if (!channel || !channel->iio)
|
||||
@ -639,9 +639,9 @@ config_fail:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int adc_tm5_set_trips(void *data, int low, int high)
|
||||
static int adc_tm5_set_trips(struct thermal_zone_device *tz, int low, int high)
|
||||
{
|
||||
struct adc_tm5_channel *channel = data;
|
||||
struct adc_tm5_channel *channel = tz->devdata;
|
||||
struct adc_tm5_chip *chip;
|
||||
int ret;
|
||||
|
||||
@ -660,7 +660,7 @@ static int adc_tm5_set_trips(void *data, int low, int high)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static struct thermal_zone_of_device_ops adc_tm5_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops adc_tm5_thermal_ops = {
|
||||
.get_temp = adc_tm5_get_temp,
|
||||
.set_trips = adc_tm5_set_trips,
|
||||
};
|
||||
@ -672,11 +672,10 @@ static int adc_tm5_register_tzd(struct adc_tm5_chip *adc_tm)
|
||||
|
||||
for (i = 0; i < adc_tm->nchannels; i++) {
|
||||
adc_tm->channels[i].chip = adc_tm;
|
||||
|
||||
tzd = devm_thermal_zone_of_sensor_register(adc_tm->dev,
|
||||
adc_tm->channels[i].channel,
|
||||
&adc_tm->channels[i],
|
||||
&adc_tm5_thermal_ops);
|
||||
tzd = devm_thermal_of_zone_register(adc_tm->dev,
|
||||
adc_tm->channels[i].channel,
|
||||
&adc_tm->channels[i],
|
||||
&adc_tm5_thermal_ops);
|
||||
if (IS_ERR(tzd)) {
|
||||
if (PTR_ERR(tzd) == -ENODEV) {
|
||||
dev_warn(adc_tm->dev, "thermal sensor on channel %d is not used\n",
|
||||
@ -1026,10 +1025,8 @@ static int adc_tm5_probe(struct platform_device *pdev)
|
||||
adc_tm->base = reg;
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (irq < 0) {
|
||||
dev_err(dev, "get_irq failed: %d\n", irq);
|
||||
if (irq < 0)
|
||||
return irq;
|
||||
}
|
||||
|
||||
ret = adc_tm5_get_dt_data(adc_tm, node);
|
||||
if (ret) {
|
||||
|
@ -186,9 +186,9 @@ static int qpnp_tm_update_temp_no_adc(struct qpnp_tm_chip *chip)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int qpnp_tm_get_temp(void *data, int *temp)
|
||||
static int qpnp_tm_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct qpnp_tm_chip *chip = data;
|
||||
struct qpnp_tm_chip *chip = tz->devdata;
|
||||
int ret, mili_celsius;
|
||||
|
||||
if (!temp)
|
||||
@ -263,9 +263,9 @@ skip:
|
||||
return qpnp_tm_write(chip, QPNP_TM_REG_SHUTDOWN_CTRL1, reg);
|
||||
}
|
||||
|
||||
static int qpnp_tm_set_trip_temp(void *data, int trip, int temp)
|
||||
static int qpnp_tm_set_trip_temp(struct thermal_zone_device *tz, int trip, int temp)
|
||||
{
|
||||
struct qpnp_tm_chip *chip = data;
|
||||
struct qpnp_tm_chip *chip = tz->devdata;
|
||||
const struct thermal_trip *trip_points;
|
||||
int ret;
|
||||
|
||||
@ -283,7 +283,7 @@ static int qpnp_tm_set_trip_temp(void *data, int trip, int temp)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops qpnp_tm_sensor_ops = {
|
||||
static const struct thermal_zone_device_ops qpnp_tm_sensor_ops = {
|
||||
.get_temp = qpnp_tm_get_temp,
|
||||
.set_trip_temp = qpnp_tm_set_trip_temp,
|
||||
};
|
||||
@ -446,7 +446,7 @@ static int qpnp_tm_probe(struct platform_device *pdev)
|
||||
* read the trip points. get_temp() returns the default temperature
|
||||
* before the hardware initialization is completed.
|
||||
*/
|
||||
chip->tz_dev = devm_thermal_zone_of_sensor_register(
|
||||
chip->tz_dev = devm_thermal_of_zone_register(
|
||||
&pdev->dev, 0, chip, &qpnp_tm_sensor_ops);
|
||||
if (IS_ERR(chip->tz_dev)) {
|
||||
dev_err(&pdev->dev, "failed to register sensor\n");
|
||||
|
@ -532,9 +532,9 @@ static irqreturn_t tsens_irq_thread(int irq, void *data)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static int tsens_set_trips(void *_sensor, int low, int high)
|
||||
static int tsens_set_trips(struct thermal_zone_device *tz, int low, int high)
|
||||
{
|
||||
struct tsens_sensor *s = _sensor;
|
||||
struct tsens_sensor *s = tz->devdata;
|
||||
struct tsens_priv *priv = s->priv;
|
||||
struct device *dev = priv->dev;
|
||||
struct tsens_irq_data d;
|
||||
@ -925,9 +925,9 @@ err_put_device:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int tsens_get_temp(void *data, int *temp)
|
||||
static int tsens_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct tsens_sensor *s = data;
|
||||
struct tsens_sensor *s = tz->devdata;
|
||||
struct tsens_priv *priv = s->priv;
|
||||
|
||||
return priv->ops->get_temp(s, temp);
|
||||
@ -991,7 +991,7 @@ static const struct of_device_id tsens_table[] = {
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, tsens_table);
|
||||
|
||||
static const struct thermal_zone_of_device_ops tsens_of_ops = {
|
||||
static const struct thermal_zone_device_ops tsens_of_ops = {
|
||||
.get_temp = tsens_get_temp,
|
||||
.set_trips = tsens_set_trips,
|
||||
};
|
||||
@ -1044,9 +1044,9 @@ static int tsens_register(struct tsens_priv *priv)
|
||||
|
||||
for (i = 0; i < priv->num_sensors; i++) {
|
||||
priv->sensor[i].priv = priv;
|
||||
tzd = devm_thermal_zone_of_sensor_register(priv->dev, priv->sensor[i].hw_id,
|
||||
&priv->sensor[i],
|
||||
&tsens_of_ops);
|
||||
tzd = devm_thermal_of_zone_register(priv->dev, priv->sensor[i].hw_id,
|
||||
&priv->sensor[i],
|
||||
&tsens_of_ops);
|
||||
if (IS_ERR(tzd))
|
||||
continue;
|
||||
priv->sensor[i].tzd = tzd;
|
||||
|
@ -82,9 +82,9 @@ static struct qoriq_tmu_data *qoriq_sensor_to_data(struct qoriq_sensor *s)
|
||||
return container_of(s, struct qoriq_tmu_data, sensor[s->id]);
|
||||
}
|
||||
|
||||
static int tmu_get_temp(void *p, int *temp)
|
||||
static int tmu_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct qoriq_sensor *qsensor = p;
|
||||
struct qoriq_sensor *qsensor = tz->devdata;
|
||||
struct qoriq_tmu_data *qdata = qoriq_sensor_to_data(qsensor);
|
||||
u32 val;
|
||||
/*
|
||||
@ -122,7 +122,7 @@ static int tmu_get_temp(void *p, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops tmu_tz_ops = {
|
||||
static const struct thermal_zone_device_ops tmu_tz_ops = {
|
||||
.get_temp = tmu_get_temp,
|
||||
};
|
||||
|
||||
@ -146,9 +146,9 @@ static int qoriq_tmu_register_tmu_zone(struct device *dev,
|
||||
|
||||
sensor->id = id;
|
||||
|
||||
tzd = devm_thermal_zone_of_sensor_register(dev, id,
|
||||
sensor,
|
||||
&tmu_tz_ops);
|
||||
tzd = devm_thermal_of_zone_register(dev, id,
|
||||
sensor,
|
||||
&tmu_tz_ops);
|
||||
ret = PTR_ERR_OR_ZERO(tzd);
|
||||
if (ret) {
|
||||
if (ret == -ENODEV)
|
||||
|
@ -164,9 +164,9 @@ static int rcar_gen3_thermal_round(int temp)
|
||||
return result * RCAR3_THERMAL_GRAN;
|
||||
}
|
||||
|
||||
static int rcar_gen3_thermal_get_temp(void *devdata, int *temp)
|
||||
static int rcar_gen3_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct rcar_gen3_thermal_tsc *tsc = devdata;
|
||||
struct rcar_gen3_thermal_tsc *tsc = tz->devdata;
|
||||
int mcelsius, val;
|
||||
int reg;
|
||||
|
||||
@ -203,9 +203,9 @@ static int rcar_gen3_thermal_mcelsius_to_temp(struct rcar_gen3_thermal_tsc *tsc,
|
||||
return INT_FIXPT(val);
|
||||
}
|
||||
|
||||
static int rcar_gen3_thermal_set_trips(void *devdata, int low, int high)
|
||||
static int rcar_gen3_thermal_set_trips(struct thermal_zone_device *tz, int low, int high)
|
||||
{
|
||||
struct rcar_gen3_thermal_tsc *tsc = devdata;
|
||||
struct rcar_gen3_thermal_tsc *tsc = tz->devdata;
|
||||
u32 irqmsk = 0;
|
||||
|
||||
if (low != -INT_MAX) {
|
||||
@ -225,7 +225,7 @@ static int rcar_gen3_thermal_set_trips(void *devdata, int low, int high)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct thermal_zone_of_device_ops rcar_gen3_tz_of_ops = {
|
||||
static struct thermal_zone_device_ops rcar_gen3_tz_of_ops = {
|
||||
.get_temp = rcar_gen3_thermal_get_temp,
|
||||
.set_trips = rcar_gen3_thermal_set_trips,
|
||||
};
|
||||
@ -508,8 +508,8 @@ static int rcar_gen3_thermal_probe(struct platform_device *pdev)
|
||||
for (i = 0; i < priv->num_tscs; i++) {
|
||||
struct rcar_gen3_thermal_tsc *tsc = priv->tscs[i];
|
||||
|
||||
zone = devm_thermal_zone_of_sensor_register(dev, i, tsc,
|
||||
&rcar_gen3_tz_of_ops);
|
||||
zone = devm_thermal_of_zone_register(dev, i, tsc,
|
||||
&rcar_gen3_tz_of_ops);
|
||||
if (IS_ERR(zone)) {
|
||||
dev_err(dev, "Sensor %u: Can't register thermal zone\n", i);
|
||||
ret = PTR_ERR(zone);
|
||||
@ -560,7 +560,7 @@ static int __maybe_unused rcar_gen3_thermal_resume(struct device *dev)
|
||||
|
||||
priv->thermal_init(tsc);
|
||||
if (zone->ops->set_trips)
|
||||
rcar_gen3_thermal_set_trips(tsc, zone->prev_low_trip,
|
||||
rcar_gen3_thermal_set_trips(zone, zone->prev_low_trip,
|
||||
zone->prev_high_trip);
|
||||
}
|
||||
|
||||
|
@ -271,13 +271,6 @@ static int rcar_thermal_get_current_temp(struct rcar_thermal_priv *priv,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int rcar_thermal_of_get_temp(void *data, int *temp)
|
||||
{
|
||||
struct rcar_thermal_priv *priv = data;
|
||||
|
||||
return rcar_thermal_get_current_temp(priv, temp);
|
||||
}
|
||||
|
||||
static int rcar_thermal_get_temp(struct thermal_zone_device *zone, int *temp)
|
||||
{
|
||||
struct rcar_thermal_priv *priv = rcar_zone_to_priv(zone);
|
||||
@ -323,8 +316,8 @@ static int rcar_thermal_get_trip_temp(struct thermal_zone_device *zone,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops rcar_thermal_zone_of_ops = {
|
||||
.get_temp = rcar_thermal_of_get_temp,
|
||||
static struct thermal_zone_device_ops rcar_thermal_zone_of_ops = {
|
||||
.get_temp = rcar_thermal_get_temp,
|
||||
};
|
||||
|
||||
static struct thermal_zone_device_ops rcar_thermal_zone_ops = {
|
||||
@ -534,7 +527,7 @@ static int rcar_thermal_probe(struct platform_device *pdev)
|
||||
goto error_unregister;
|
||||
|
||||
if (chip->use_of_thermal) {
|
||||
priv->zone = devm_thermal_zone_of_sensor_register(
|
||||
priv->zone = devm_thermal_of_zone_register(
|
||||
dev, i, priv,
|
||||
&rcar_thermal_zone_of_ops);
|
||||
} else {
|
||||
|
@ -1211,9 +1211,9 @@ static irqreturn_t rockchip_thermal_alarm_irq_thread(int irq, void *dev)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static int rockchip_thermal_set_trips(void *_sensor, int low, int high)
|
||||
static int rockchip_thermal_set_trips(struct thermal_zone_device *tz, int low, int high)
|
||||
{
|
||||
struct rockchip_thermal_sensor *sensor = _sensor;
|
||||
struct rockchip_thermal_sensor *sensor = tz->devdata;
|
||||
struct rockchip_thermal_data *thermal = sensor->thermal;
|
||||
const struct rockchip_tsadc_chip *tsadc = thermal->chip;
|
||||
|
||||
@ -1224,9 +1224,9 @@ static int rockchip_thermal_set_trips(void *_sensor, int low, int high)
|
||||
sensor->id, thermal->regs, high);
|
||||
}
|
||||
|
||||
static int rockchip_thermal_get_temp(void *_sensor, int *out_temp)
|
||||
static int rockchip_thermal_get_temp(struct thermal_zone_device *tz, int *out_temp)
|
||||
{
|
||||
struct rockchip_thermal_sensor *sensor = _sensor;
|
||||
struct rockchip_thermal_sensor *sensor = tz->devdata;
|
||||
struct rockchip_thermal_data *thermal = sensor->thermal;
|
||||
const struct rockchip_tsadc_chip *tsadc = sensor->thermal->chip;
|
||||
int retval;
|
||||
@ -1239,7 +1239,7 @@ static int rockchip_thermal_get_temp(void *_sensor, int *out_temp)
|
||||
return retval;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops rockchip_of_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops rockchip_of_thermal_ops = {
|
||||
.get_temp = rockchip_thermal_get_temp,
|
||||
.set_trips = rockchip_thermal_set_trips,
|
||||
};
|
||||
@ -1326,8 +1326,8 @@ rockchip_thermal_register_sensor(struct platform_device *pdev,
|
||||
|
||||
sensor->thermal = thermal;
|
||||
sensor->id = id;
|
||||
sensor->tzd = devm_thermal_zone_of_sensor_register(&pdev->dev, id,
|
||||
sensor, &rockchip_of_thermal_ops);
|
||||
sensor->tzd = devm_thermal_of_zone_register(&pdev->dev, id, sensor,
|
||||
&rockchip_of_thermal_ops);
|
||||
if (IS_ERR(sensor->tzd)) {
|
||||
error = PTR_ERR(sensor->tzd);
|
||||
dev_err(&pdev->dev, "failed to register sensor %d: %d\n",
|
||||
|
@ -73,9 +73,9 @@ static inline void rzg2l_thermal_write(struct rzg2l_thermal_priv *priv, u32 reg,
|
||||
iowrite32(data, priv->base + reg);
|
||||
}
|
||||
|
||||
static int rzg2l_thermal_get_temp(void *devdata, int *temp)
|
||||
static int rzg2l_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct rzg2l_thermal_priv *priv = devdata;
|
||||
struct rzg2l_thermal_priv *priv = tz->devdata;
|
||||
u32 result = 0, dsensor, ts_code_ave;
|
||||
int val, i;
|
||||
|
||||
@ -114,7 +114,7 @@ static int rzg2l_thermal_get_temp(void *devdata, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops rzg2l_tz_of_ops = {
|
||||
static const struct thermal_zone_device_ops rzg2l_tz_of_ops = {
|
||||
.get_temp = rzg2l_thermal_get_temp,
|
||||
};
|
||||
|
||||
@ -207,8 +207,8 @@ static int rzg2l_thermal_probe(struct platform_device *pdev)
|
||||
goto err;
|
||||
}
|
||||
|
||||
zone = devm_thermal_zone_of_sensor_register(dev, 0, priv,
|
||||
&rzg2l_tz_of_ops);
|
||||
zone = devm_thermal_of_zone_register(dev, 0, priv,
|
||||
&rzg2l_tz_of_ops);
|
||||
if (IS_ERR(zone)) {
|
||||
dev_err(dev, "Can't register thermal zone");
|
||||
ret = PTR_ERR(zone);
|
||||
|
@ -650,9 +650,9 @@ static void exynos7_tmu_control(struct platform_device *pdev, bool on)
|
||||
writel(con, data->base + EXYNOS_TMU_REG_CONTROL);
|
||||
}
|
||||
|
||||
static int exynos_get_temp(void *p, int *temp)
|
||||
static int exynos_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct exynos_tmu_data *data = p;
|
||||
struct exynos_tmu_data *data = tz->devdata;
|
||||
int value, ret = 0;
|
||||
|
||||
if (!data || !data->tmu_read)
|
||||
@ -728,9 +728,9 @@ static void exynos4412_tmu_set_emulation(struct exynos_tmu_data *data,
|
||||
writel(val, data->base + emul_con);
|
||||
}
|
||||
|
||||
static int exynos_tmu_set_emulation(void *drv_data, int temp)
|
||||
static int exynos_tmu_set_emulation(struct thermal_zone_device *tz, int temp)
|
||||
{
|
||||
struct exynos_tmu_data *data = drv_data;
|
||||
struct exynos_tmu_data *data = tz->devdata;
|
||||
int ret = -EINVAL;
|
||||
|
||||
if (data->soc == SOC_ARCH_EXYNOS4210)
|
||||
@ -750,7 +750,7 @@ out:
|
||||
}
|
||||
#else
|
||||
#define exynos4412_tmu_set_emulation NULL
|
||||
static int exynos_tmu_set_emulation(void *drv_data, int temp)
|
||||
static int exynos_tmu_set_emulation(struct thermal_zone_device *tz, int temp)
|
||||
{ return -EINVAL; }
|
||||
#endif /* CONFIG_THERMAL_EMULATION */
|
||||
|
||||
@ -997,7 +997,7 @@ static int exynos_map_dt_data(struct platform_device *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops exynos_sensor_ops = {
|
||||
static const struct thermal_zone_device_ops exynos_sensor_ops = {
|
||||
.get_temp = exynos_get_temp,
|
||||
.set_emul_temp = exynos_tmu_set_emulation,
|
||||
};
|
||||
@ -1091,8 +1091,8 @@ static int exynos_tmu_probe(struct platform_device *pdev)
|
||||
* data->tzd must be registered before calling exynos_tmu_initialize(),
|
||||
* requesting irq and calling exynos_tmu_control().
|
||||
*/
|
||||
data->tzd = thermal_zone_of_sensor_register(&pdev->dev, 0, data,
|
||||
&exynos_sensor_ops);
|
||||
data->tzd = devm_thermal_of_zone_register(&pdev->dev, 0, data,
|
||||
&exynos_sensor_ops);
|
||||
if (IS_ERR(data->tzd)) {
|
||||
ret = PTR_ERR(data->tzd);
|
||||
if (ret != -EPROBE_DEFER)
|
||||
@ -1104,21 +1104,19 @@ static int exynos_tmu_probe(struct platform_device *pdev)
|
||||
ret = exynos_tmu_initialize(pdev);
|
||||
if (ret) {
|
||||
dev_err(&pdev->dev, "Failed to initialize TMU\n");
|
||||
goto err_thermal;
|
||||
goto err_sclk;
|
||||
}
|
||||
|
||||
ret = devm_request_irq(&pdev->dev, data->irq, exynos_tmu_irq,
|
||||
IRQF_TRIGGER_RISING | IRQF_SHARED, dev_name(&pdev->dev), data);
|
||||
if (ret) {
|
||||
dev_err(&pdev->dev, "Failed to request irq: %d\n", data->irq);
|
||||
goto err_thermal;
|
||||
goto err_sclk;
|
||||
}
|
||||
|
||||
exynos_tmu_control(pdev, true);
|
||||
return 0;
|
||||
|
||||
err_thermal:
|
||||
thermal_zone_of_sensor_unregister(&pdev->dev, data->tzd);
|
||||
err_sclk:
|
||||
clk_disable_unprepare(data->sclk);
|
||||
err_clk:
|
||||
@ -1136,9 +1134,7 @@ err_sensor:
|
||||
static int exynos_tmu_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct exynos_tmu_data *data = platform_get_drvdata(pdev);
|
||||
struct thermal_zone_device *tzd = data->tzd;
|
||||
|
||||
thermal_zone_of_sensor_unregister(&pdev->dev, tzd);
|
||||
exynos_tmu_control(pdev, false);
|
||||
|
||||
clk_disable_unprepare(data->sclk);
|
||||
|
@ -204,9 +204,9 @@ static int sprd_thm_temp_to_rawdata(int temp, struct sprd_thermal_sensor *sen)
|
||||
return clamp(val, val, (u32)(SPRD_THM_RAW_DATA_HIGH - 1));
|
||||
}
|
||||
|
||||
static int sprd_thm_read_temp(void *devdata, int *temp)
|
||||
static int sprd_thm_read_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct sprd_thermal_sensor *sen = devdata;
|
||||
struct sprd_thermal_sensor *sen = tz->devdata;
|
||||
u32 data;
|
||||
|
||||
data = readl(sen->data->base + SPRD_THM_TEMP(sen->id)) &
|
||||
@ -217,7 +217,7 @@ static int sprd_thm_read_temp(void *devdata, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops sprd_thm_ops = {
|
||||
static const struct thermal_zone_device_ops sprd_thm_ops = {
|
||||
.get_temp = sprd_thm_read_temp,
|
||||
};
|
||||
|
||||
@ -408,10 +408,10 @@ static int sprd_thm_probe(struct platform_device *pdev)
|
||||
|
||||
sprd_thm_sensor_init(thm, sen);
|
||||
|
||||
sen->tzd = devm_thermal_zone_of_sensor_register(sen->dev,
|
||||
sen->id,
|
||||
sen,
|
||||
&sprd_thm_ops);
|
||||
sen->tzd = devm_thermal_of_zone_register(sen->dev,
|
||||
sen->id,
|
||||
sen,
|
||||
&sprd_thm_ops);
|
||||
if (IS_ERR(sen->tzd)) {
|
||||
dev_err(&pdev->dev, "register thermal zone failed %d\n",
|
||||
sen->id);
|
||||
@ -523,8 +523,8 @@ static int sprd_thm_remove(struct platform_device *pdev)
|
||||
|
||||
for (i = 0; i < thm->nr_sensors; i++) {
|
||||
sprd_thm_toggle_sensor(thm->sensor[i], false);
|
||||
devm_thermal_zone_of_sensor_unregister(&pdev->dev,
|
||||
thm->sensor[i]->tzd);
|
||||
devm_thermal_of_zone_unregister(&pdev->dev,
|
||||
thm->sensor[i]->tzd);
|
||||
}
|
||||
|
||||
clk_disable_unprepare(thm->clk);
|
||||
|
@ -302,9 +302,9 @@ static int stm_disable_irq(struct stm_thermal_sensor *sensor)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int stm_thermal_set_trips(void *data, int low, int high)
|
||||
static int stm_thermal_set_trips(struct thermal_zone_device *tz, int low, int high)
|
||||
{
|
||||
struct stm_thermal_sensor *sensor = data;
|
||||
struct stm_thermal_sensor *sensor = tz->devdata;
|
||||
u32 itr1, th;
|
||||
int ret;
|
||||
|
||||
@ -350,9 +350,9 @@ static int stm_thermal_set_trips(void *data, int low, int high)
|
||||
}
|
||||
|
||||
/* Callback to get temperature from HW */
|
||||
static int stm_thermal_get_temp(void *data, int *temp)
|
||||
static int stm_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct stm_thermal_sensor *sensor = data;
|
||||
struct stm_thermal_sensor *sensor = tz->devdata;
|
||||
u32 periods;
|
||||
int freqM, ret;
|
||||
|
||||
@ -474,7 +474,7 @@ static int stm_thermal_resume(struct device *dev)
|
||||
static SIMPLE_DEV_PM_OPS(stm_thermal_pm_ops,
|
||||
stm_thermal_suspend, stm_thermal_resume);
|
||||
|
||||
static const struct thermal_zone_of_device_ops stm_tz_ops = {
|
||||
static const struct thermal_zone_device_ops stm_tz_ops = {
|
||||
.get_temp = stm_thermal_get_temp,
|
||||
.set_trips = stm_thermal_set_trips,
|
||||
};
|
||||
@ -539,9 +539,9 @@ static int stm_thermal_probe(struct platform_device *pdev)
|
||||
return ret;
|
||||
}
|
||||
|
||||
sensor->th_dev = devm_thermal_zone_of_sensor_register(&pdev->dev, 0,
|
||||
sensor,
|
||||
&stm_tz_ops);
|
||||
sensor->th_dev = devm_thermal_of_zone_register(&pdev->dev, 0,
|
||||
sensor,
|
||||
&stm_tz_ops);
|
||||
|
||||
if (IS_ERR(sensor->th_dev)) {
|
||||
dev_err(&pdev->dev, "%s: thermal zone sensor registering KO\n",
|
||||
@ -572,7 +572,6 @@ static int stm_thermal_probe(struct platform_device *pdev)
|
||||
return 0;
|
||||
|
||||
err_tz:
|
||||
thermal_zone_of_sensor_unregister(&pdev->dev, sensor->th_dev);
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -582,7 +581,6 @@ static int stm_thermal_remove(struct platform_device *pdev)
|
||||
|
||||
stm_thermal_sensor_off(sensor);
|
||||
thermal_remove_hwmon_sysfs(sensor->th_dev);
|
||||
thermal_zone_of_sensor_unregister(&pdev->dev, sensor->th_dev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -108,9 +108,9 @@ static int sun50i_h5_calc_temp(struct ths_device *tmdev,
|
||||
return -1590 * reg / 10 + 276000;
|
||||
}
|
||||
|
||||
static int sun8i_ths_get_temp(void *data, int *temp)
|
||||
static int sun8i_ths_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct tsensor *s = data;
|
||||
struct tsensor *s = tz->devdata;
|
||||
struct ths_device *tmdev = s->tmdev;
|
||||
int val = 0;
|
||||
|
||||
@ -135,7 +135,7 @@ static int sun8i_ths_get_temp(void *data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops ths_ops = {
|
||||
static const struct thermal_zone_device_ops ths_ops = {
|
||||
.get_temp = sun8i_ths_get_temp,
|
||||
};
|
||||
|
||||
@ -468,10 +468,10 @@ static int sun8i_ths_register(struct ths_device *tmdev)
|
||||
tmdev->sensor[i].tmdev = tmdev;
|
||||
tmdev->sensor[i].id = i;
|
||||
tmdev->sensor[i].tzd =
|
||||
devm_thermal_zone_of_sensor_register(tmdev->dev,
|
||||
i,
|
||||
&tmdev->sensor[i],
|
||||
&ths_ops);
|
||||
devm_thermal_of_zone_register(tmdev->dev,
|
||||
i,
|
||||
&tmdev->sensor[i],
|
||||
&ths_ops);
|
||||
if (IS_ERR(tmdev->sensor[i].tzd))
|
||||
return PTR_ERR(tmdev->sensor[i].tzd);
|
||||
|
||||
|
@ -421,9 +421,9 @@ static int translate_temp(u16 val)
|
||||
return t;
|
||||
}
|
||||
|
||||
static int tegra_thermctl_get_temp(void *data, int *out_temp)
|
||||
static int tegra_thermctl_get_temp(struct thermal_zone_device *tz, int *out_temp)
|
||||
{
|
||||
struct tegra_thermctl_zone *zone = data;
|
||||
struct tegra_thermctl_zone *zone = tz->devdata;
|
||||
u32 val;
|
||||
|
||||
val = readl(zone->reg);
|
||||
@ -582,10 +582,9 @@ static int tsensor_group_thermtrip_get(struct tegra_soctherm *ts, int id)
|
||||
return temp;
|
||||
}
|
||||
|
||||
static int tegra_thermctl_set_trip_temp(void *data, int trip, int temp)
|
||||
static int tegra_thermctl_set_trip_temp(struct thermal_zone_device *tz, int trip, int temp)
|
||||
{
|
||||
struct tegra_thermctl_zone *zone = data;
|
||||
struct thermal_zone_device *tz = zone->tz;
|
||||
struct tegra_thermctl_zone *zone = tz->devdata;
|
||||
struct tegra_soctherm *ts = zone->ts;
|
||||
const struct tegra_tsensor_group *sg = zone->sg;
|
||||
struct device *dev = zone->dev;
|
||||
@ -657,9 +656,9 @@ static void thermal_irq_disable(struct tegra_thermctl_zone *zn)
|
||||
mutex_unlock(&zn->ts->thermctl_lock);
|
||||
}
|
||||
|
||||
static int tegra_thermctl_set_trips(void *data, int lo, int hi)
|
||||
static int tegra_thermctl_set_trips(struct thermal_zone_device *tz, int lo, int hi)
|
||||
{
|
||||
struct tegra_thermctl_zone *zone = data;
|
||||
struct tegra_thermctl_zone *zone = tz->devdata;
|
||||
u32 r;
|
||||
|
||||
thermal_irq_disable(zone);
|
||||
@ -682,7 +681,7 @@ static int tegra_thermctl_set_trips(void *data, int lo, int hi)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops tegra_of_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops tegra_of_thermal_ops = {
|
||||
.get_temp = tegra_thermctl_get_temp,
|
||||
.set_trip_temp = tegra_thermctl_set_trip_temp,
|
||||
.set_trips = tegra_thermctl_set_trips,
|
||||
@ -2194,9 +2193,9 @@ static int tegra_soctherm_probe(struct platform_device *pdev)
|
||||
zone->sg = soc->ttgs[i];
|
||||
zone->ts = tegra;
|
||||
|
||||
z = devm_thermal_zone_of_sensor_register(&pdev->dev,
|
||||
soc->ttgs[i]->id, zone,
|
||||
&tegra_of_thermal_ops);
|
||||
z = devm_thermal_of_zone_register(&pdev->dev,
|
||||
soc->ttgs[i]->id, zone,
|
||||
&tegra_of_thermal_ops);
|
||||
if (IS_ERR(z)) {
|
||||
err = PTR_ERR(z);
|
||||
dev_err(&pdev->dev, "failed to register sensor: %d\n",
|
||||
|
@ -30,9 +30,9 @@ struct tegra_bpmp_thermal {
|
||||
struct tegra_bpmp_thermal_zone **zones;
|
||||
};
|
||||
|
||||
static int tegra_bpmp_thermal_get_temp(void *data, int *out_temp)
|
||||
static int __tegra_bpmp_thermal_get_temp(struct tegra_bpmp_thermal_zone *zone,
|
||||
int *out_temp)
|
||||
{
|
||||
struct tegra_bpmp_thermal_zone *zone = data;
|
||||
struct mrq_thermal_host_to_bpmp_request req;
|
||||
union mrq_thermal_bpmp_to_host_response reply;
|
||||
struct tegra_bpmp_message msg;
|
||||
@ -60,9 +60,14 @@ static int tegra_bpmp_thermal_get_temp(void *data, int *out_temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int tegra_bpmp_thermal_set_trips(void *data, int low, int high)
|
||||
static int tegra_bpmp_thermal_get_temp(struct thermal_zone_device *tz, int *out_temp)
|
||||
{
|
||||
struct tegra_bpmp_thermal_zone *zone = data;
|
||||
return __tegra_bpmp_thermal_get_temp(tz->devdata, out_temp);
|
||||
}
|
||||
|
||||
static int tegra_bpmp_thermal_set_trips(struct thermal_zone_device *tz, int low, int high)
|
||||
{
|
||||
struct tegra_bpmp_thermal_zone *zone = tz->devdata;
|
||||
struct mrq_thermal_host_to_bpmp_request req;
|
||||
struct tegra_bpmp_message msg;
|
||||
int err;
|
||||
@ -157,7 +162,7 @@ static int tegra_bpmp_thermal_get_num_zones(struct tegra_bpmp *bpmp,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops tegra_bpmp_of_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops tegra_bpmp_of_thermal_ops = {
|
||||
.get_temp = tegra_bpmp_thermal_get_temp,
|
||||
.set_trips = tegra_bpmp_thermal_set_trips,
|
||||
};
|
||||
@ -200,13 +205,13 @@ static int tegra_bpmp_thermal_probe(struct platform_device *pdev)
|
||||
zone->idx = i;
|
||||
zone->tegra = tegra;
|
||||
|
||||
err = tegra_bpmp_thermal_get_temp(zone, &temp);
|
||||
err = __tegra_bpmp_thermal_get_temp(zone, &temp);
|
||||
if (err < 0) {
|
||||
devm_kfree(&pdev->dev, zone);
|
||||
continue;
|
||||
}
|
||||
|
||||
tzd = devm_thermal_zone_of_sensor_register(
|
||||
tzd = devm_thermal_of_zone_register(
|
||||
&pdev->dev, i, zone, &tegra_bpmp_of_thermal_ops);
|
||||
if (IS_ERR(tzd)) {
|
||||
if (PTR_ERR(tzd) == -EPROBE_DEFER)
|
||||
|
@ -159,9 +159,9 @@ static void devm_tegra_tsensor_hw_disable(void *data)
|
||||
tegra_tsensor_hw_disable(ts);
|
||||
}
|
||||
|
||||
static int tegra_tsensor_get_temp(void *data, int *temp)
|
||||
static int tegra_tsensor_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
const struct tegra_tsensor_channel *tsc = data;
|
||||
const struct tegra_tsensor_channel *tsc = tz->devdata;
|
||||
const struct tegra_tsensor *ts = tsc->ts;
|
||||
int err, c1, c2, c3, c4, counter;
|
||||
u32 val;
|
||||
@ -217,9 +217,9 @@ static int tegra_tsensor_temp_to_counter(const struct tegra_tsensor *ts, int tem
|
||||
return DIV_ROUND_CLOSEST(c2 * 1000000 - ts->calib.b, ts->calib.a);
|
||||
}
|
||||
|
||||
static int tegra_tsensor_set_trips(void *data, int low, int high)
|
||||
static int tegra_tsensor_set_trips(struct thermal_zone_device *tz, int low, int high)
|
||||
{
|
||||
const struct tegra_tsensor_channel *tsc = data;
|
||||
const struct tegra_tsensor_channel *tsc = tz->devdata;
|
||||
const struct tegra_tsensor *ts = tsc->ts;
|
||||
u32 val;
|
||||
|
||||
@ -240,7 +240,7 @@ static int tegra_tsensor_set_trips(void *data, int low, int high)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops ops = {
|
||||
static const struct thermal_zone_device_ops ops = {
|
||||
.get_temp = tegra_tsensor_get_temp,
|
||||
.set_trips = tegra_tsensor_set_trips,
|
||||
};
|
||||
@ -516,7 +516,7 @@ static int tegra_tsensor_register_channel(struct tegra_tsensor *ts,
|
||||
tsc->id = id;
|
||||
tsc->regs = ts->regs + 0x40 * (hw_id + 1);
|
||||
|
||||
tsc->tzd = devm_thermal_zone_of_sensor_register(ts->dev, id, tsc, &ops);
|
||||
tsc->tzd = devm_thermal_of_zone_register(ts->dev, id, tsc, &ops);
|
||||
if (IS_ERR(tsc->tzd)) {
|
||||
if (PTR_ERR(tsc->tzd) != -ENODEV)
|
||||
return dev_err_probe(ts->dev, PTR_ERR(tsc->tzd),
|
||||
|
@ -52,9 +52,9 @@ static int gadc_thermal_adc_to_temp(struct gadc_thermal_info *gti, int val)
|
||||
return temp;
|
||||
}
|
||||
|
||||
static int gadc_thermal_get_temp(void *data, int *temp)
|
||||
static int gadc_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct gadc_thermal_info *gti = data;
|
||||
struct gadc_thermal_info *gti = tz->devdata;
|
||||
int val;
|
||||
int ret;
|
||||
|
||||
@ -68,7 +68,7 @@ static int gadc_thermal_get_temp(void *data, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops gadc_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops gadc_thermal_ops = {
|
||||
.get_temp = gadc_thermal_get_temp,
|
||||
};
|
||||
|
||||
@ -143,8 +143,8 @@ static int gadc_thermal_probe(struct platform_device *pdev)
|
||||
gti->dev = &pdev->dev;
|
||||
platform_set_drvdata(pdev, gti);
|
||||
|
||||
gti->tz_dev = devm_thermal_zone_of_sensor_register(&pdev->dev, 0, gti,
|
||||
&gadc_thermal_ops);
|
||||
gti->tz_dev = devm_thermal_of_zone_register(&pdev->dev, 0, gti,
|
||||
&gadc_thermal_ops);
|
||||
if (IS_ERR(gti->tz_dev)) {
|
||||
ret = PTR_ERR(gti->tz_dev);
|
||||
if (ret != -EPROBE_DEFER)
|
||||
|
@ -295,27 +295,14 @@ static void thermal_zone_device_set_polling(struct thermal_zone_device *tz,
|
||||
cancel_delayed_work(&tz->poll_queue);
|
||||
}
|
||||
|
||||
static inline bool should_stop_polling(struct thermal_zone_device *tz)
|
||||
{
|
||||
return !thermal_zone_device_is_enabled(tz);
|
||||
}
|
||||
|
||||
static void monitor_thermal_zone(struct thermal_zone_device *tz)
|
||||
{
|
||||
bool stop;
|
||||
|
||||
stop = should_stop_polling(tz);
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
|
||||
if (!stop && tz->passive)
|
||||
thermal_zone_device_set_polling(tz, tz->passive_delay_jiffies);
|
||||
else if (!stop && tz->polling_delay_jiffies)
|
||||
thermal_zone_device_set_polling(tz, tz->polling_delay_jiffies);
|
||||
else
|
||||
if (tz->mode != THERMAL_DEVICE_ENABLED)
|
||||
thermal_zone_device_set_polling(tz, 0);
|
||||
|
||||
mutex_unlock(&tz->lock);
|
||||
else if (tz->passive)
|
||||
thermal_zone_device_set_polling(tz, tz->passive_delay_jiffies);
|
||||
else if (tz->polling_delay_jiffies)
|
||||
thermal_zone_device_set_polling(tz, tz->polling_delay_jiffies);
|
||||
}
|
||||
|
||||
static void handle_non_critical_trips(struct thermal_zone_device *tz, int trip)
|
||||
@ -383,18 +370,13 @@ static void handle_thermal_trip(struct thermal_zone_device *tz, int trip)
|
||||
handle_critical_trips(tz, trip, trip_temp, type);
|
||||
else
|
||||
handle_non_critical_trips(tz, trip);
|
||||
/*
|
||||
* Alright, we handled this trip successfully.
|
||||
* So, start monitoring again.
|
||||
*/
|
||||
monitor_thermal_zone(tz);
|
||||
}
|
||||
|
||||
static void update_temperature(struct thermal_zone_device *tz)
|
||||
{
|
||||
int temp, ret;
|
||||
|
||||
ret = thermal_zone_get_temp(tz, &temp);
|
||||
ret = __thermal_zone_get_temp(tz, &temp);
|
||||
if (ret) {
|
||||
if (ret != -EAGAIN)
|
||||
dev_warn(&tz->device,
|
||||
@ -403,10 +385,8 @@ static void update_temperature(struct thermal_zone_device *tz)
|
||||
return;
|
||||
}
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
tz->last_temperature = tz->temperature;
|
||||
tz->temperature = temp;
|
||||
mutex_unlock(&tz->lock);
|
||||
|
||||
trace_thermal_temperature(tz);
|
||||
|
||||
@ -469,15 +449,9 @@ EXPORT_SYMBOL_GPL(thermal_zone_device_disable);
|
||||
|
||||
int thermal_zone_device_is_enabled(struct thermal_zone_device *tz)
|
||||
{
|
||||
enum thermal_device_mode mode;
|
||||
lockdep_assert_held(&tz->lock);
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
|
||||
mode = tz->mode;
|
||||
|
||||
mutex_unlock(&tz->lock);
|
||||
|
||||
return mode == THERMAL_DEVICE_ENABLED;
|
||||
return tz->mode == THERMAL_DEVICE_ENABLED;
|
||||
}
|
||||
|
||||
void thermal_zone_device_update(struct thermal_zone_device *tz,
|
||||
@ -485,9 +459,6 @@ void thermal_zone_device_update(struct thermal_zone_device *tz,
|
||||
{
|
||||
int count;
|
||||
|
||||
if (should_stop_polling(tz))
|
||||
return;
|
||||
|
||||
if (atomic_read(&in_suspend))
|
||||
return;
|
||||
|
||||
@ -495,14 +466,23 @@ void thermal_zone_device_update(struct thermal_zone_device *tz,
|
||||
"'get_temp' ops set\n", __func__))
|
||||
return;
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
|
||||
if (!thermal_zone_device_is_enabled(tz))
|
||||
goto out;
|
||||
|
||||
update_temperature(tz);
|
||||
|
||||
thermal_zone_set_trips(tz);
|
||||
__thermal_zone_set_trips(tz);
|
||||
|
||||
tz->notify_event = event;
|
||||
|
||||
for (count = 0; count < tz->num_trips; count++)
|
||||
handle_thermal_trip(tz, count);
|
||||
|
||||
monitor_thermal_zone(tz);
|
||||
out:
|
||||
mutex_unlock(&tz->lock);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(thermal_zone_device_update);
|
||||
|
||||
@ -1329,6 +1309,7 @@ free_tz:
|
||||
kfree(tz);
|
||||
return ERR_PTR(result);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(thermal_zone_device_register_with_trips);
|
||||
|
||||
struct thermal_zone_device *thermal_zone_device_register(const char *type, int ntrips, int mask,
|
||||
void *devdata, struct thermal_zone_device_ops *ops,
|
||||
@ -1457,9 +1438,6 @@ static int thermal_pm_notify(struct notifier_block *nb,
|
||||
case PM_POST_SUSPEND:
|
||||
atomic_set(&in_suspend, 0);
|
||||
list_for_each_entry(tz, &thermal_tz_list, node) {
|
||||
if (!thermal_zone_device_is_enabled(tz))
|
||||
continue;
|
||||
|
||||
thermal_zone_device_init(tz);
|
||||
thermal_zone_device_update(tz,
|
||||
THERMAL_EVENT_UNSPECIFIED);
|
||||
@ -1491,10 +1469,6 @@ static int __init thermal_init(void)
|
||||
if (result)
|
||||
goto unregister_governors;
|
||||
|
||||
result = of_parse_thermal_zones();
|
||||
if (result)
|
||||
goto unregister_class;
|
||||
|
||||
result = register_pm_notifier(&thermal_pm_nb);
|
||||
if (result)
|
||||
pr_warn("Thermal: Can not register suspend notifier, return %d\n",
|
||||
@ -1502,8 +1476,6 @@ static int __init thermal_init(void)
|
||||
|
||||
return 0;
|
||||
|
||||
unregister_class:
|
||||
class_unregister(&thermal_class);
|
||||
unregister_governors:
|
||||
thermal_unregister_governors();
|
||||
error:
|
||||
|
@ -112,6 +112,8 @@ int thermal_build_list_of_policies(char *buf);
|
||||
|
||||
/* Helpers */
|
||||
void thermal_zone_set_trips(struct thermal_zone_device *tz);
|
||||
void __thermal_zone_set_trips(struct thermal_zone_device *tz);
|
||||
int __thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp);
|
||||
|
||||
/* sysfs I/F */
|
||||
int thermal_zone_create_device_groups(struct thermal_zone_device *, int);
|
||||
@ -135,13 +137,11 @@ thermal_cooling_device_stats_update(struct thermal_cooling_device *cdev,
|
||||
|
||||
/* device tree support */
|
||||
#ifdef CONFIG_THERMAL_OF
|
||||
int of_parse_thermal_zones(void);
|
||||
int of_thermal_get_ntrips(struct thermal_zone_device *);
|
||||
bool of_thermal_is_trip_valid(struct thermal_zone_device *, int);
|
||||
const struct thermal_trip *
|
||||
of_thermal_get_trip_points(struct thermal_zone_device *);
|
||||
#else
|
||||
static inline int of_parse_thermal_zones(void) { return 0; }
|
||||
static inline int of_thermal_get_ntrips(struct thermal_zone_device *tz)
|
||||
{
|
||||
return 0;
|
||||
|
@ -64,27 +64,17 @@ get_thermal_instance(struct thermal_zone_device *tz,
|
||||
}
|
||||
EXPORT_SYMBOL(get_thermal_instance);
|
||||
|
||||
/**
|
||||
* thermal_zone_get_temp() - returns the temperature of a thermal zone
|
||||
* @tz: a valid pointer to a struct thermal_zone_device
|
||||
* @temp: a valid pointer to where to store the resulting temperature.
|
||||
*
|
||||
* When a valid thermal zone reference is passed, it will fetch its
|
||||
* temperature and fill @temp.
|
||||
*
|
||||
* Return: On success returns 0, an error code otherwise
|
||||
*/
|
||||
int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
int __thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
int ret = -EINVAL;
|
||||
int count;
|
||||
int crit_temp = INT_MAX;
|
||||
enum thermal_trip_type type;
|
||||
|
||||
if (!tz || IS_ERR(tz) || !tz->ops->get_temp)
|
||||
goto exit;
|
||||
lockdep_assert_held(&tz->lock);
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
if (!tz || IS_ERR(tz) || !tz->ops->get_temp)
|
||||
return -EINVAL;
|
||||
|
||||
ret = tz->ops->get_temp(tz, temp);
|
||||
|
||||
@ -107,35 +97,42 @@ int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
*temp = tz->emul_temperature;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* thermal_zone_get_temp() - returns the temperature of a thermal zone
|
||||
* @tz: a valid pointer to a struct thermal_zone_device
|
||||
* @temp: a valid pointer to where to store the resulting temperature.
|
||||
*
|
||||
* When a valid thermal zone reference is passed, it will fetch its
|
||||
* temperature and fill @temp.
|
||||
*
|
||||
* Return: On success returns 0, an error code otherwise
|
||||
*/
|
||||
int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
int ret;
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
ret = __thermal_zone_get_temp(tz, temp);
|
||||
mutex_unlock(&tz->lock);
|
||||
exit:
|
||||
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(thermal_zone_get_temp);
|
||||
|
||||
/**
|
||||
* 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).
|
||||
*
|
||||
* It does not return a value
|
||||
*/
|
||||
void thermal_zone_set_trips(struct thermal_zone_device *tz)
|
||||
void __thermal_zone_set_trips(struct thermal_zone_device *tz)
|
||||
{
|
||||
int low = -INT_MAX;
|
||||
int high = INT_MAX;
|
||||
int trip_temp, hysteresis;
|
||||
int i, ret;
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
lockdep_assert_held(&tz->lock);
|
||||
|
||||
if (!tz->ops->set_trips || !tz->ops->get_trip_hyst)
|
||||
goto exit;
|
||||
return;
|
||||
|
||||
for (i = 0; i < tz->num_trips; i++) {
|
||||
int trip_low;
|
||||
@ -154,7 +151,7 @@ void thermal_zone_set_trips(struct thermal_zone_device *tz)
|
||||
|
||||
/* No need to change trip points */
|
||||
if (tz->prev_low_trip == low && tz->prev_high_trip == high)
|
||||
goto exit;
|
||||
return;
|
||||
|
||||
tz->prev_low_trip = low;
|
||||
tz->prev_high_trip = high;
|
||||
@ -169,8 +166,24 @@ void thermal_zone_set_trips(struct thermal_zone_device *tz)
|
||||
ret = tz->ops->set_trips(tz, low, high);
|
||||
if (ret)
|
||||
dev_err(&tz->device, "Failed to set trips: %d\n", ret);
|
||||
}
|
||||
|
||||
exit:
|
||||
/**
|
||||
* 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).
|
||||
*
|
||||
* It does not return a value
|
||||
*/
|
||||
void thermal_zone_set_trips(struct thermal_zone_device *tz)
|
||||
{
|
||||
mutex_lock(&tz->lock);
|
||||
__thermal_zone_set_trips(tz);
|
||||
mutex_unlock(&tz->lock);
|
||||
}
|
||||
|
||||
|
@ -20,11 +20,10 @@ static u32 thermal_mmio_readb(void __iomem *mmio_base)
|
||||
return readb(mmio_base);
|
||||
}
|
||||
|
||||
static int thermal_mmio_get_temperature(void *private, int *temp)
|
||||
static int thermal_mmio_get_temperature(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
int t;
|
||||
struct thermal_mmio *sensor =
|
||||
(struct thermal_mmio *)private;
|
||||
struct thermal_mmio *sensor = tz->devdata;
|
||||
|
||||
t = sensor->read_mmio(sensor->mmio_base) & sensor->mask;
|
||||
t *= sensor->factor;
|
||||
@ -34,7 +33,7 @@ static int thermal_mmio_get_temperature(void *private, int *temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops thermal_mmio_ops = {
|
||||
static const struct thermal_zone_device_ops thermal_mmio_ops = {
|
||||
.get_temp = thermal_mmio_get_temperature,
|
||||
};
|
||||
|
||||
@ -68,10 +67,10 @@ static int thermal_mmio_probe(struct platform_device *pdev)
|
||||
}
|
||||
}
|
||||
|
||||
thermal_zone = devm_thermal_zone_of_sensor_register(&pdev->dev,
|
||||
0,
|
||||
sensor,
|
||||
&thermal_mmio_ops);
|
||||
thermal_zone = devm_thermal_of_zone_register(&pdev->dev,
|
||||
0,
|
||||
sensor,
|
||||
&thermal_mmio_ops);
|
||||
if (IS_ERR(thermal_zone)) {
|
||||
dev_err(&pdev->dev,
|
||||
"failed to register sensor (%ld)\n",
|
||||
@ -79,7 +78,7 @@ static int thermal_mmio_probe(struct platform_device *pdev)
|
||||
return PTR_ERR(thermal_zone);
|
||||
}
|
||||
|
||||
thermal_mmio_get_temperature(sensor, &temperature);
|
||||
thermal_mmio_get_temperature(thermal_zone, &temperature);
|
||||
dev_info(&pdev->dev,
|
||||
"thermal mmio sensor %s registered, current temperature: %d\n",
|
||||
pdev->name, temperature);
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -49,7 +49,11 @@ static ssize_t
|
||||
mode_show(struct device *dev, struct device_attribute *attr, char *buf)
|
||||
{
|
||||
struct thermal_zone_device *tz = to_thermal_zone(dev);
|
||||
int enabled = thermal_zone_device_is_enabled(tz);
|
||||
int enabled;
|
||||
|
||||
mutex_lock(&tz->lock);
|
||||
enabled = thermal_zone_device_is_enabled(tz);
|
||||
mutex_unlock(&tz->lock);
|
||||
|
||||
return sprintf(buf, "%s\n", enabled ? "enabled" : "disabled");
|
||||
}
|
||||
@ -115,7 +119,7 @@ trip_point_temp_store(struct device *dev, struct device_attribute *attr,
|
||||
int temperature, hyst = 0;
|
||||
enum thermal_trip_type type;
|
||||
|
||||
if (!tz->ops->set_trip_temp)
|
||||
if (!tz->ops->set_trip_temp && !tz->trips)
|
||||
return -EPERM;
|
||||
|
||||
if (sscanf(attr->attr.name, "trip_point_%d_temp", &trip) != 1)
|
||||
@ -128,6 +132,9 @@ trip_point_temp_store(struct device *dev, struct device_attribute *attr,
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
if (tz->trips)
|
||||
tz->trips[trip].temperature = temperature;
|
||||
|
||||
if (tz->ops->get_trip_hyst) {
|
||||
ret = tz->ops->get_trip_hyst(tz, trip, &hyst);
|
||||
if (ret)
|
||||
|
@ -65,10 +65,10 @@ static inline int ti_thermal_hotspot_temperature(int t, int s, int c)
|
||||
|
||||
/* thermal zone ops */
|
||||
/* Get temperature callback function for thermal zone */
|
||||
static inline int __ti_thermal_get_temp(void *devdata, int *temp)
|
||||
static inline int __ti_thermal_get_temp(struct thermal_zone_device *tz, int *temp)
|
||||
{
|
||||
struct thermal_zone_device *pcb_tz = NULL;
|
||||
struct ti_thermal_data *data = devdata;
|
||||
struct ti_thermal_data *data = tz->devdata;
|
||||
struct ti_bandgap *bgp;
|
||||
const struct ti_temp_sensor *s;
|
||||
int ret, tmp, slope, constant;
|
||||
@ -85,8 +85,8 @@ static inline int __ti_thermal_get_temp(void *devdata, int *temp)
|
||||
return ret;
|
||||
|
||||
/* Default constants */
|
||||
slope = thermal_zone_get_slope(data->ti_thermal);
|
||||
constant = thermal_zone_get_offset(data->ti_thermal);
|
||||
slope = thermal_zone_get_slope(tz);
|
||||
constant = thermal_zone_get_offset(tz);
|
||||
|
||||
pcb_tz = data->pcb_tz;
|
||||
/* In case pcb zone is available, use the extrapolation rule with it */
|
||||
@ -107,9 +107,9 @@ static inline int __ti_thermal_get_temp(void *devdata, int *temp)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int __ti_thermal_get_trend(void *p, int trip, enum thermal_trend *trend)
|
||||
static int __ti_thermal_get_trend(struct thermal_zone_device *tz, int trip, enum thermal_trend *trend)
|
||||
{
|
||||
struct ti_thermal_data *data = p;
|
||||
struct ti_thermal_data *data = tz->devdata;
|
||||
struct ti_bandgap *bgp;
|
||||
int id, tr, ret = 0;
|
||||
|
||||
@ -130,7 +130,7 @@ static int __ti_thermal_get_trend(void *p, int trip, enum thermal_trend *trend)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops ti_of_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops ti_of_thermal_ops = {
|
||||
.get_temp = __ti_thermal_get_temp,
|
||||
.get_trend = __ti_thermal_get_trend,
|
||||
};
|
||||
@ -170,7 +170,7 @@ int ti_thermal_expose_sensor(struct ti_bandgap *bgp, int id,
|
||||
return -EINVAL;
|
||||
|
||||
/* in case this is specified by DT */
|
||||
data->ti_thermal = devm_thermal_zone_of_sensor_register(bgp->dev, id,
|
||||
data->ti_thermal = devm_thermal_of_zone_register(bgp->dev, id,
|
||||
data, &ti_of_thermal_ops);
|
||||
if (IS_ERR(data->ti_thermal)) {
|
||||
dev_err(bgp->dev, "thermal zone device is NULL\n");
|
||||
|
@ -187,9 +187,9 @@ static void uniphier_tm_disable_sensor(struct uniphier_tm_dev *tdev)
|
||||
usleep_range(1000, 2000); /* The spec note says at least 1ms */
|
||||
}
|
||||
|
||||
static int uniphier_tm_get_temp(void *data, int *out_temp)
|
||||
static int uniphier_tm_get_temp(struct thermal_zone_device *tz, int *out_temp)
|
||||
{
|
||||
struct uniphier_tm_dev *tdev = data;
|
||||
struct uniphier_tm_dev *tdev = tz->devdata;
|
||||
struct regmap *map = tdev->regmap;
|
||||
int ret;
|
||||
u32 temp;
|
||||
@ -204,7 +204,7 @@ static int uniphier_tm_get_temp(void *data, int *out_temp)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct thermal_zone_of_device_ops uniphier_of_thermal_ops = {
|
||||
static const struct thermal_zone_device_ops uniphier_of_thermal_ops = {
|
||||
.get_temp = uniphier_tm_get_temp,
|
||||
};
|
||||
|
||||
@ -289,8 +289,8 @@ static int uniphier_tm_probe(struct platform_device *pdev)
|
||||
|
||||
platform_set_drvdata(pdev, tdev);
|
||||
|
||||
tdev->tz_dev = devm_thermal_zone_of_sensor_register(dev, 0, tdev,
|
||||
&uniphier_of_thermal_ops);
|
||||
tdev->tz_dev = devm_thermal_of_zone_register(dev, 0, tdev,
|
||||
&uniphier_of_thermal_ops);
|
||||
if (IS_ERR(tdev->tz_dev)) {
|
||||
dev_err(dev, "failed to register sensor device\n");
|
||||
return PTR_ERR(tdev->tz_dev);
|
||||
|
@ -296,82 +296,53 @@ struct thermal_zone_params {
|
||||
int offset;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct thermal_zone_of_device_ops - callbacks for handling DT based zones
|
||||
*
|
||||
* Mandatory:
|
||||
* @get_temp: a pointer to a function that reads the sensor temperature.
|
||||
*
|
||||
* Optional:
|
||||
* @get_trend: a pointer to a function that reads the sensor temperature trend.
|
||||
* @set_trips: a pointer to a function that sets a temperature window. When
|
||||
* this window is left the driver must inform the thermal core via
|
||||
* thermal_zone_device_update.
|
||||
* @set_emul_temp: a pointer to a function that sets sensor emulated
|
||||
* temperature.
|
||||
* @set_trip_temp: a pointer to a function that sets the trip temperature on
|
||||
* hardware.
|
||||
* @change_mode: a pointer to a function that notifies the thermal zone
|
||||
* mode change.
|
||||
*/
|
||||
struct thermal_zone_of_device_ops {
|
||||
int (*get_temp)(void *, int *);
|
||||
int (*get_trend)(void *, int, enum thermal_trend *);
|
||||
int (*set_trips)(void *, int, int);
|
||||
int (*set_emul_temp)(void *, int);
|
||||
int (*set_trip_temp)(void *, int, int);
|
||||
int (*change_mode) (void *, enum thermal_device_mode);
|
||||
};
|
||||
|
||||
/* Function declarations */
|
||||
#ifdef CONFIG_THERMAL_OF
|
||||
struct thermal_zone_device *thermal_of_zone_register(struct device_node *sensor, int id, void *data,
|
||||
const struct thermal_zone_device_ops *ops);
|
||||
|
||||
struct thermal_zone_device *devm_thermal_of_zone_register(struct device *dev, int id, void *data,
|
||||
const struct thermal_zone_device_ops *ops);
|
||||
|
||||
void thermal_of_zone_unregister(struct thermal_zone_device *tz);
|
||||
|
||||
void devm_thermal_of_zone_unregister(struct device *dev, struct thermal_zone_device *tz);
|
||||
|
||||
void thermal_of_zone_unregister(struct thermal_zone_device *tz);
|
||||
|
||||
int thermal_zone_of_get_sensor_id(struct device_node *tz_np,
|
||||
struct device_node *sensor_np,
|
||||
u32 *id);
|
||||
struct thermal_zone_device *
|
||||
thermal_zone_of_sensor_register(struct device *dev, int id, void *data,
|
||||
const struct thermal_zone_of_device_ops *ops);
|
||||
void thermal_zone_of_sensor_unregister(struct device *dev,
|
||||
struct thermal_zone_device *tz);
|
||||
struct thermal_zone_device *devm_thermal_zone_of_sensor_register(
|
||||
struct device *dev, int id, void *data,
|
||||
const struct thermal_zone_of_device_ops *ops);
|
||||
void devm_thermal_zone_of_sensor_unregister(struct device *dev,
|
||||
struct thermal_zone_device *tz);
|
||||
#else
|
||||
static inline
|
||||
struct thermal_zone_device *thermal_of_zone_register(struct device_node *sensor, int id, void *data,
|
||||
const struct thermal_zone_device_ops *ops)
|
||||
{
|
||||
return ERR_PTR(-ENOTSUPP);
|
||||
}
|
||||
|
||||
static inline
|
||||
struct thermal_zone_device *devm_thermal_of_zone_register(struct device *dev, int id, void *data,
|
||||
const struct thermal_zone_device_ops *ops)
|
||||
{
|
||||
return ERR_PTR(-ENOTSUPP);
|
||||
}
|
||||
|
||||
static inline void thermal_of_zone_unregister(struct thermal_zone_device *tz)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void devm_thermal_of_zone_unregister(struct device *dev,
|
||||
struct thermal_zone_device *tz)
|
||||
{
|
||||
}
|
||||
|
||||
static inline int thermal_zone_of_get_sensor_id(struct device_node *tz_np,
|
||||
struct device_node *sensor_np,
|
||||
u32 *id)
|
||||
struct device_node *sensor_np,
|
||||
u32 *id)
|
||||
{
|
||||
return -ENOENT;
|
||||
}
|
||||
static inline struct thermal_zone_device *
|
||||
thermal_zone_of_sensor_register(struct device *dev, int id, void *data,
|
||||
const struct thermal_zone_of_device_ops *ops)
|
||||
{
|
||||
return ERR_PTR(-ENODEV);
|
||||
}
|
||||
|
||||
static inline
|
||||
void thermal_zone_of_sensor_unregister(struct device *dev,
|
||||
struct thermal_zone_device *tz)
|
||||
{
|
||||
}
|
||||
|
||||
static inline struct thermal_zone_device *devm_thermal_zone_of_sensor_register(
|
||||
struct device *dev, int id, void *data,
|
||||
const struct thermal_zone_of_device_ops *ops)
|
||||
{
|
||||
return ERR_PTR(-ENODEV);
|
||||
}
|
||||
|
||||
static inline
|
||||
void devm_thermal_zone_of_sensor_unregister(struct device *dev,
|
||||
struct thermal_zone_device *tz)
|
||||
{
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_THERMAL
|
||||
|
Loading…
Reference in New Issue
Block a user