2018-05-07 17:52:29 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2008-01-17 07:51:08 +00:00
|
|
|
/*
|
|
|
|
* thermal.h ($Revision: 0 $)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Intel Corp
|
|
|
|
* Copyright (C) 2008 Zhang Rui <rui.zhang@intel.com>
|
|
|
|
* Copyright (C) 2008 Sujith Thomas <sujith.thomas@intel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __THERMAL_H__
|
|
|
|
#define __THERMAL_H__
|
|
|
|
|
2013-09-26 19:55:01 +00:00
|
|
|
#include <linux/of.h>
|
2008-01-17 07:51:08 +00:00
|
|
|
#include <linux/idr.h>
|
|
|
|
#include <linux/device.h>
|
2016-11-08 05:08:52 +00:00
|
|
|
#include <linux/sysfs.h>
|
2008-12-03 17:55:32 +00:00
|
|
|
#include <linux/workqueue.h>
|
2014-11-20 02:11:00 +00:00
|
|
|
#include <uapi/linux/thermal.h>
|
2008-01-17 07:51:08 +00:00
|
|
|
|
2012-09-18 05:34:52 +00:00
|
|
|
#define THERMAL_TRIPS_NONE -1
|
|
|
|
#define THERMAL_MAX_TRIPS 12
|
|
|
|
|
2013-02-08 06:52:06 +00:00
|
|
|
/* invalid cooling state */
|
|
|
|
#define THERMAL_CSTATE_INVALID -1UL
|
|
|
|
|
2012-09-18 05:34:52 +00:00
|
|
|
/* No upper/lower limit requirement */
|
2014-12-09 12:22:01 +00:00
|
|
|
#define THERMAL_NO_LIMIT ((u32)~0)
|
2012-09-18 05:34:52 +00:00
|
|
|
|
2015-02-18 16:04:21 +00:00
|
|
|
/* Default weight of a bound cooling device */
|
|
|
|
#define THERMAL_WEIGHT_DEFAULT 0
|
|
|
|
|
2015-10-30 08:31:47 +00:00
|
|
|
/* use value, which < 0K, to indicate an invalid/uninitialized temperature */
|
|
|
|
#define THERMAL_TEMP_INVALID -274000
|
|
|
|
|
2012-09-18 05:34:52 +00:00
|
|
|
/* Unit conversion macros */
|
2015-10-01 21:45:31 +00:00
|
|
|
#define DECI_KELVIN_TO_CELSIUS(t) ({ \
|
|
|
|
long _t = (t); \
|
|
|
|
((_t-2732 >= 0) ? (_t-2732+5)/10 : (_t-2732-5)/10); \
|
|
|
|
})
|
|
|
|
#define CELSIUS_TO_DECI_KELVIN(t) ((t)*10+2732)
|
2014-03-25 02:40:09 +00:00
|
|
|
#define DECI_KELVIN_TO_MILLICELSIUS_WITH_OFFSET(t, off) (((t) - (off)) * 100)
|
|
|
|
#define DECI_KELVIN_TO_MILLICELSIUS(t) DECI_KELVIN_TO_MILLICELSIUS_WITH_OFFSET(t, 2732)
|
2014-09-03 07:13:02 +00:00
|
|
|
#define MILLICELSIUS_TO_DECI_KELVIN_WITH_OFFSET(t, off) (((t) / 100) + (off))
|
|
|
|
#define MILLICELSIUS_TO_DECI_KELVIN(t) MILLICELSIUS_TO_DECI_KELVIN_WITH_OFFSET(t, 2732)
|
2012-09-18 05:34:52 +00:00
|
|
|
|
2012-12-12 07:31:37 +00:00
|
|
|
/* Default Thermal Governor */
|
|
|
|
#if defined(CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE)
|
|
|
|
#define DEFAULT_THERMAL_GOVERNOR "step_wise"
|
|
|
|
#elif defined(CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE)
|
|
|
|
#define DEFAULT_THERMAL_GOVERNOR "fair_share"
|
|
|
|
#elif defined(CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE)
|
|
|
|
#define DEFAULT_THERMAL_GOVERNOR "user_space"
|
2015-03-02 17:17:19 +00:00
|
|
|
#elif defined(CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR)
|
|
|
|
#define DEFAULT_THERMAL_GOVERNOR "power_allocator"
|
2012-12-12 07:31:37 +00:00
|
|
|
#endif
|
2012-09-18 05:34:57 +00:00
|
|
|
|
2008-01-17 07:51:08 +00:00
|
|
|
struct thermal_zone_device;
|
|
|
|
struct thermal_cooling_device;
|
2015-02-26 19:00:28 +00:00
|
|
|
struct thermal_instance;
|
2008-01-17 07:51:08 +00:00
|
|
|
|
2008-11-27 17:48:13 +00:00
|
|
|
enum thermal_device_mode {
|
|
|
|
THERMAL_DEVICE_DISABLED = 0,
|
|
|
|
THERMAL_DEVICE_ENABLED,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum thermal_trip_type {
|
|
|
|
THERMAL_TRIP_ACTIVE = 0,
|
|
|
|
THERMAL_TRIP_PASSIVE,
|
|
|
|
THERMAL_TRIP_HOT,
|
|
|
|
THERMAL_TRIP_CRITICAL,
|
|
|
|
};
|
|
|
|
|
2012-06-27 01:54:33 +00:00
|
|
|
enum thermal_trend {
|
|
|
|
THERMAL_TREND_STABLE, /* temperature is stable */
|
|
|
|
THERMAL_TREND_RAISING, /* temperature is raising */
|
|
|
|
THERMAL_TREND_DROPPING, /* temperature is dropping */
|
2012-11-19 07:33:51 +00:00
|
|
|
THERMAL_TREND_RAISE_FULL, /* apply highest cooling action */
|
|
|
|
THERMAL_TREND_DROP_FULL, /* apply lowest cooling action */
|
2012-06-27 01:54:33 +00:00
|
|
|
};
|
|
|
|
|
2016-08-26 23:21:16 +00:00
|
|
|
/* Thermal notification reason */
|
|
|
|
enum thermal_notify_event {
|
|
|
|
THERMAL_EVENT_UNSPECIFIED, /* Unspecified event */
|
|
|
|
THERMAL_EVENT_TEMP_SAMPLE, /* New Temperature sample */
|
|
|
|
THERMAL_TRIP_VIOLATED, /* TRIP Point violation */
|
|
|
|
THERMAL_TRIP_CHANGED, /* TRIP Point temperature changed */
|
|
|
|
THERMAL_DEVICE_DOWN, /* Thermal device is down */
|
|
|
|
THERMAL_DEVICE_UP, /* Thermal device is up after a down event */
|
|
|
|
THERMAL_DEVICE_POWER_CAPABILITY_CHANGED, /* power capability changed */
|
2017-08-09 18:45:40 +00:00
|
|
|
THERMAL_TABLE_CHANGED, /* Thermal table(s) changed */
|
2016-08-26 23:21:16 +00:00
|
|
|
};
|
|
|
|
|
2008-01-17 07:51:08 +00:00
|
|
|
struct thermal_zone_device_ops {
|
|
|
|
int (*bind) (struct thermal_zone_device *,
|
|
|
|
struct thermal_cooling_device *);
|
|
|
|
int (*unbind) (struct thermal_zone_device *,
|
|
|
|
struct thermal_cooling_device *);
|
2015-07-24 06:12:54 +00:00
|
|
|
int (*get_temp) (struct thermal_zone_device *, int *);
|
2016-06-22 08:42:01 +00:00
|
|
|
int (*set_trips) (struct thermal_zone_device *, int, int);
|
2008-11-27 17:48:13 +00:00
|
|
|
int (*get_mode) (struct thermal_zone_device *,
|
|
|
|
enum thermal_device_mode *);
|
|
|
|
int (*set_mode) (struct thermal_zone_device *,
|
|
|
|
enum thermal_device_mode);
|
|
|
|
int (*get_trip_type) (struct thermal_zone_device *, int,
|
|
|
|
enum thermal_trip_type *);
|
2015-07-24 06:12:54 +00:00
|
|
|
int (*get_trip_temp) (struct thermal_zone_device *, int, int *);
|
|
|
|
int (*set_trip_temp) (struct thermal_zone_device *, int, int);
|
|
|
|
int (*get_trip_hyst) (struct thermal_zone_device *, int, int *);
|
|
|
|
int (*set_trip_hyst) (struct thermal_zone_device *, int, int);
|
|
|
|
int (*get_crit_temp) (struct thermal_zone_device *, int *);
|
|
|
|
int (*set_emul_temp) (struct thermal_zone_device *, int);
|
2012-06-27 01:54:33 +00:00
|
|
|
int (*get_trend) (struct thermal_zone_device *, int,
|
|
|
|
enum thermal_trend *);
|
2008-12-03 17:55:32 +00:00
|
|
|
int (*notify) (struct thermal_zone_device *, int,
|
|
|
|
enum thermal_trip_type);
|
2008-01-17 07:51:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct thermal_cooling_device_ops {
|
2008-11-27 17:48:13 +00:00
|
|
|
int (*get_max_state) (struct thermal_cooling_device *, unsigned long *);
|
|
|
|
int (*get_cur_state) (struct thermal_cooling_device *, unsigned long *);
|
|
|
|
int (*set_cur_state) (struct thermal_cooling_device *, unsigned long);
|
2015-02-26 19:00:28 +00:00
|
|
|
int (*get_requested_power)(struct thermal_cooling_device *,
|
|
|
|
struct thermal_zone_device *, u32 *);
|
|
|
|
int (*state2power)(struct thermal_cooling_device *,
|
|
|
|
struct thermal_zone_device *, unsigned long, u32 *);
|
|
|
|
int (*power2state)(struct thermal_cooling_device *,
|
|
|
|
struct thermal_zone_device *, u32, unsigned long *);
|
2008-01-17 07:51:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct thermal_cooling_device {
|
|
|
|
int id;
|
|
|
|
char type[THERMAL_NAME_LENGTH];
|
|
|
|
struct device device;
|
2013-07-03 19:35:39 +00:00
|
|
|
struct device_node *np;
|
2008-01-17 07:51:08 +00:00
|
|
|
void *devdata;
|
2018-04-02 10:56:25 +00:00
|
|
|
void *stats;
|
2010-11-11 15:27:29 +00:00
|
|
|
const struct thermal_cooling_device_ops *ops;
|
2012-06-27 06:13:04 +00:00
|
|
|
bool updated; /* true if the cooling device does not need update */
|
2012-07-24 08:56:21 +00:00
|
|
|
struct mutex lock; /* protect thermal_instances list */
|
2012-06-27 06:11:52 +00:00
|
|
|
struct list_head thermal_instances;
|
2008-01-17 07:51:08 +00:00
|
|
|
struct list_head node;
|
|
|
|
};
|
|
|
|
|
2012-07-25 02:10:58 +00:00
|
|
|
struct thermal_attr {
|
|
|
|
struct device_attribute attr;
|
|
|
|
char name[THERMAL_NAME_LENGTH];
|
|
|
|
};
|
|
|
|
|
2014-06-25 10:00:12 +00:00
|
|
|
/**
|
|
|
|
* struct thermal_zone_device - structure for a thermal zone
|
|
|
|
* @id: unique id number for each thermal zone
|
|
|
|
* @type: the thermal zone device type
|
|
|
|
* @device: &struct device for this thermal zone
|
|
|
|
* @trip_temp_attrs: attributes for trip points for sysfs: trip temperature
|
|
|
|
* @trip_type_attrs: attributes for trip points for sysfs: trip type
|
|
|
|
* @trip_hyst_attrs: attributes for trip points for sysfs: trip hysteresis
|
|
|
|
* @devdata: private pointer for device private data
|
|
|
|
* @trips: number of trip points the thermal zone supports
|
2016-03-18 02:03:24 +00:00
|
|
|
* @trips_disabled; bitmap for disabled trips
|
2014-06-25 10:00:12 +00:00
|
|
|
* @passive_delay: number of milliseconds to wait between polls when
|
2015-03-02 17:17:19 +00:00
|
|
|
* performing passive cooling.
|
2014-06-25 10:00:12 +00:00
|
|
|
* @polling_delay: number of milliseconds to wait between polls when
|
|
|
|
* checking whether trip points have been crossed (0 for
|
|
|
|
* interrupt driven systems)
|
|
|
|
* @temperature: current temperature. This is only for core code,
|
|
|
|
* drivers should use thermal_zone_get_temp() to get the
|
|
|
|
* current temperature
|
|
|
|
* @last_temperature: previous temperature read
|
|
|
|
* @emul_temperature: emulated temperature when using CONFIG_THERMAL_EMULATION
|
|
|
|
* @passive: 1 if you've crossed a passive trip point, 0 otherwise.
|
2016-06-22 08:42:01 +00:00
|
|
|
* @prev_low_trip: the low current temperature if you've crossed a passive
|
|
|
|
trip point.
|
|
|
|
* @prev_high_trip: the above current temperature if you've crossed a
|
|
|
|
passive trip point.
|
2014-06-25 10:00:12 +00:00
|
|
|
* @forced_passive: If > 0, temperature at which to switch on all ACPI
|
|
|
|
* processor cooling devices. Currently only used by the
|
|
|
|
* step-wise governor.
|
2015-10-30 08:32:10 +00:00
|
|
|
* @need_update: if equals 1, thermal_zone_device_update needs to be invoked.
|
2014-06-25 10:00:12 +00:00
|
|
|
* @ops: operations this &thermal_zone_device supports
|
|
|
|
* @tzp: thermal zone parameters
|
|
|
|
* @governor: pointer to the governor for this thermal zone
|
2015-02-26 19:00:27 +00:00
|
|
|
* @governor_data: private pointer for governor data
|
2014-06-25 10:00:12 +00:00
|
|
|
* @thermal_instances: list of &struct thermal_instance of this thermal zone
|
2016-12-21 17:47:03 +00:00
|
|
|
* @ida: &struct ida to generate unique id for this zone's cooling
|
2014-06-25 10:00:12 +00:00
|
|
|
* devices
|
|
|
|
* @lock: lock to protect thermal_instances list
|
|
|
|
* @node: node in thermal_tz_list (in thermal_core.c)
|
|
|
|
* @poll_queue: delayed work for polling
|
2016-08-26 23:21:16 +00:00
|
|
|
* @notify_event: Last notification event
|
2014-06-25 10:00:12 +00:00
|
|
|
*/
|
2008-01-17 07:51:08 +00:00
|
|
|
struct thermal_zone_device {
|
|
|
|
int id;
|
|
|
|
char type[THERMAL_NAME_LENGTH];
|
|
|
|
struct device device;
|
2016-11-08 05:08:52 +00:00
|
|
|
struct attribute_group trips_attribute_group;
|
2012-07-25 02:10:58 +00:00
|
|
|
struct thermal_attr *trip_temp_attrs;
|
|
|
|
struct thermal_attr *trip_type_attrs;
|
2012-07-25 02:10:59 +00:00
|
|
|
struct thermal_attr *trip_hyst_attrs;
|
2008-01-17 07:51:08 +00:00
|
|
|
void *devdata;
|
|
|
|
int trips;
|
2016-03-18 02:03:24 +00:00
|
|
|
unsigned long trips_disabled; /* bitmap for disabled trips */
|
2008-12-03 17:55:32 +00:00
|
|
|
int passive_delay;
|
|
|
|
int polling_delay;
|
2012-06-27 01:54:33 +00:00
|
|
|
int temperature;
|
2008-12-03 17:55:32 +00:00
|
|
|
int last_temperature;
|
2013-02-04 00:30:15 +00:00
|
|
|
int emul_temperature;
|
2012-06-27 06:14:05 +00:00
|
|
|
int passive;
|
2016-06-22 08:42:01 +00:00
|
|
|
int prev_low_trip;
|
|
|
|
int prev_high_trip;
|
2008-12-03 18:00:38 +00:00
|
|
|
unsigned int forced_passive;
|
2015-10-30 08:32:10 +00:00
|
|
|
atomic_t need_update;
|
2013-07-03 19:35:39 +00:00
|
|
|
struct thermal_zone_device_ops *ops;
|
2015-03-02 17:17:19 +00:00
|
|
|
struct thermal_zone_params *tzp;
|
2012-09-18 05:34:57 +00:00
|
|
|
struct thermal_governor *governor;
|
2015-02-26 19:00:27 +00:00
|
|
|
void *governor_data;
|
2012-06-27 02:09:00 +00:00
|
|
|
struct list_head thermal_instances;
|
2016-12-21 17:47:03 +00:00
|
|
|
struct ida ida;
|
2014-06-25 10:00:12 +00:00
|
|
|
struct mutex lock;
|
2008-01-17 07:51:08 +00:00
|
|
|
struct list_head node;
|
2008-12-03 17:55:32 +00:00
|
|
|
struct delayed_work poll_queue;
|
2016-08-26 23:21:16 +00:00
|
|
|
enum thermal_notify_event notify_event;
|
2008-01-17 07:51:08 +00:00
|
|
|
};
|
2010-10-26 22:03:29 +00:00
|
|
|
|
2014-06-25 10:00:12 +00:00
|
|
|
/**
|
|
|
|
* struct thermal_governor - structure that holds thermal governor information
|
|
|
|
* @name: name of the governor
|
2015-02-26 19:00:27 +00:00
|
|
|
* @bind_to_tz: callback called when binding to a thermal zone. If it
|
|
|
|
* returns 0, the governor is bound to the thermal zone,
|
|
|
|
* otherwise it fails.
|
|
|
|
* @unbind_from_tz: callback called when a governor is unbound from a
|
|
|
|
* thermal zone.
|
2014-06-25 10:00:12 +00:00
|
|
|
* @throttle: callback called for every trip point even if temperature is
|
|
|
|
* below the trip point temperature
|
|
|
|
* @governor_list: node in thermal_governor_list (in thermal_core.c)
|
|
|
|
*/
|
2012-09-18 05:34:57 +00:00
|
|
|
struct thermal_governor {
|
|
|
|
char name[THERMAL_NAME_LENGTH];
|
2015-02-26 19:00:27 +00:00
|
|
|
int (*bind_to_tz)(struct thermal_zone_device *tz);
|
|
|
|
void (*unbind_from_tz)(struct thermal_zone_device *tz);
|
2012-09-18 05:34:57 +00:00
|
|
|
int (*throttle)(struct thermal_zone_device *tz, int trip);
|
|
|
|
struct list_head governor_list;
|
|
|
|
};
|
|
|
|
|
2012-09-18 05:34:55 +00:00
|
|
|
/* Structure that holds binding parameters for a zone */
|
|
|
|
struct thermal_bind_params {
|
|
|
|
struct thermal_cooling_device *cdev;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a measure of 'how effectively these devices can
|
2015-02-18 16:04:25 +00:00
|
|
|
* cool 'this' thermal zone. It shall be determined by
|
|
|
|
* platform characterization. This value is relative to the
|
|
|
|
* rest of the weights so a cooling device whose weight is
|
|
|
|
* double that of another cooling device is twice as
|
|
|
|
* effective. See Documentation/thermal/sysfs-api.txt for more
|
|
|
|
* information.
|
2012-09-18 05:34:55 +00:00
|
|
|
*/
|
|
|
|
int weight;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a bit mask that gives the binding relation between this
|
|
|
|
* thermal zone and cdev, for a particular trip point.
|
|
|
|
* See Documentation/thermal/sysfs-api.txt for more information.
|
|
|
|
*/
|
|
|
|
int trip_mask;
|
2013-07-16 19:26:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is an array of cooling state limits. Must have exactly
|
|
|
|
* 2 * thermal_zone.number_of_trip_points. It is an array consisting
|
|
|
|
* of tuples <lower-state upper-state> of state limits. Each trip
|
|
|
|
* will be associated with one state limit tuple when binding.
|
|
|
|
* A NULL pointer means <THERMAL_NO_LIMITS THERMAL_NO_LIMITS>
|
|
|
|
* on all trips.
|
|
|
|
*/
|
|
|
|
unsigned long *binding_limits;
|
2012-09-18 05:34:55 +00:00
|
|
|
int (*match) (struct thermal_zone_device *tz,
|
|
|
|
struct thermal_cooling_device *cdev);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Structure to define Thermal Zone parameters */
|
|
|
|
struct thermal_zone_params {
|
2012-09-18 05:34:57 +00:00
|
|
|
char governor_name[THERMAL_NAME_LENGTH];
|
2013-08-15 15:34:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* a boolean to indicate if the thermal to hwmon sysfs interface
|
|
|
|
* is required. when no_hwmon == false, a hwmon sysfs interface
|
|
|
|
* will be created. when no_hwmon == true, nothing will be done
|
|
|
|
*/
|
|
|
|
bool no_hwmon;
|
|
|
|
|
2012-09-18 05:34:55 +00:00
|
|
|
int num_tbps; /* Number of tbp entries */
|
|
|
|
struct thermal_bind_params *tbp;
|
2015-03-02 17:17:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Sustainable power (heat) that this thermal zone can dissipate in
|
|
|
|
* mW
|
|
|
|
*/
|
|
|
|
u32 sustainable_power;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Proportional parameter of the PID controller when
|
|
|
|
* overshooting (i.e., when temperature is below the target)
|
|
|
|
*/
|
|
|
|
s32 k_po;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Proportional parameter of the PID controller when
|
|
|
|
* undershooting
|
|
|
|
*/
|
|
|
|
s32 k_pu;
|
|
|
|
|
|
|
|
/* Integral parameter of the PID controller */
|
|
|
|
s32 k_i;
|
|
|
|
|
|
|
|
/* Derivative parameter of the PID controller */
|
|
|
|
s32 k_d;
|
|
|
|
|
|
|
|
/* threshold below which the error is no longer accumulated */
|
|
|
|
s32 integral_cutoff;
|
2015-05-12 02:34:23 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* @slope: slope of a linear temperature adjustment curve.
|
|
|
|
* Used by thermal zone drivers.
|
|
|
|
*/
|
|
|
|
int slope;
|
|
|
|
/*
|
|
|
|
* @offset: offset of a linear temperature adjustment curve.
|
|
|
|
* Used by thermal zone drivers (default 0).
|
|
|
|
*/
|
|
|
|
int offset;
|
2012-09-18 05:34:55 +00:00
|
|
|
};
|
|
|
|
|
2010-10-26 22:03:29 +00:00
|
|
|
struct thermal_genl_event {
|
|
|
|
u32 orig;
|
|
|
|
enum events event;
|
|
|
|
};
|
2008-01-17 07:51:08 +00:00
|
|
|
|
2014-11-08 01:24:39 +00:00
|
|
|
/**
|
|
|
|
* struct thermal_zone_of_device_ops - scallbacks 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.
|
2016-06-22 08:42:02 +00:00
|
|
|
* @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.
|
2014-12-08 17:04:21 +00:00
|
|
|
* @set_emul_temp: a pointer to a function that sets sensor emulated
|
|
|
|
* temperature.
|
2016-05-18 15:01:39 +00:00
|
|
|
* @set_trip_temp: a pointer to a function that sets the trip temperature on
|
|
|
|
* hardware.
|
2014-11-08 01:24:39 +00:00
|
|
|
*/
|
|
|
|
struct thermal_zone_of_device_ops {
|
2015-07-24 06:12:54 +00:00
|
|
|
int (*get_temp)(void *, int *);
|
2016-06-22 08:42:03 +00:00
|
|
|
int (*get_trend)(void *, int, enum thermal_trend *);
|
2016-06-22 08:42:02 +00:00
|
|
|
int (*set_trips)(void *, int, int);
|
2015-07-24 06:12:54 +00:00
|
|
|
int (*set_emul_temp)(void *, int);
|
2016-03-29 10:29:17 +00:00
|
|
|
int (*set_trip_temp)(void *, int, int);
|
2014-11-08 01:24:39 +00:00
|
|
|
};
|
|
|
|
|
2014-12-08 17:04:19 +00:00
|
|
|
/**
|
|
|
|
* struct thermal_trip - representation of a point in temperature domain
|
|
|
|
* @np: pointer to struct device_node that this trip point was created from
|
|
|
|
* @temperature: temperature value in miliCelsius
|
|
|
|
* @hysteresis: relative hysteresis in miliCelsius
|
|
|
|
* @type: trip point type
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct thermal_trip {
|
|
|
|
struct device_node *np;
|
2016-03-03 09:33:46 +00:00
|
|
|
int temperature;
|
|
|
|
int hysteresis;
|
2014-12-08 17:04:19 +00:00
|
|
|
enum thermal_trip_type type;
|
|
|
|
};
|
|
|
|
|
2012-09-18 05:34:52 +00:00
|
|
|
/* Function declarations */
|
2013-07-03 19:35:39 +00:00
|
|
|
#ifdef CONFIG_THERMAL_OF
|
|
|
|
struct thermal_zone_device *
|
2014-11-08 01:24:39 +00:00
|
|
|
thermal_zone_of_sensor_register(struct device *dev, int id, void *data,
|
|
|
|
const struct thermal_zone_of_device_ops *ops);
|
2013-07-03 19:35:39 +00:00
|
|
|
void thermal_zone_of_sensor_unregister(struct device *dev,
|
|
|
|
struct thermal_zone_device *tz);
|
2016-03-09 13:10:06 +00:00
|
|
|
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);
|
2013-07-03 19:35:39 +00:00
|
|
|
#else
|
|
|
|
static inline struct thermal_zone_device *
|
2014-11-08 01:24:39 +00:00
|
|
|
thermal_zone_of_sensor_register(struct device *dev, int id, void *data,
|
|
|
|
const struct thermal_zone_of_device_ops *ops)
|
2013-07-03 19:35:39 +00:00
|
|
|
{
|
2015-09-08 13:51:12 +00:00
|
|
|
return ERR_PTR(-ENODEV);
|
2013-07-03 19:35:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
void thermal_zone_of_sensor_unregister(struct device *dev,
|
|
|
|
struct thermal_zone_device *tz)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-03-09 13:10:06 +00:00
|
|
|
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)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-07-03 19:35:39 +00:00
|
|
|
#endif
|
2015-02-14 01:28:02 +00:00
|
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_THERMAL)
|
2015-02-26 19:00:28 +00:00
|
|
|
static inline bool cdev_is_power_actor(struct thermal_cooling_device *cdev)
|
|
|
|
{
|
|
|
|
return cdev->ops->get_requested_power && cdev->ops->state2power &&
|
|
|
|
cdev->ops->power2state;
|
|
|
|
}
|
|
|
|
|
|
|
|
int power_actor_get_max_power(struct thermal_cooling_device *,
|
|
|
|
struct thermal_zone_device *tz, u32 *max_power);
|
2015-09-14 13:23:50 +00:00
|
|
|
int power_actor_get_min_power(struct thermal_cooling_device *,
|
|
|
|
struct thermal_zone_device *tz, u32 *min_power);
|
2015-02-26 19:00:28 +00:00
|
|
|
int power_actor_set_power(struct thermal_cooling_device *,
|
|
|
|
struct thermal_instance *, u32);
|
2012-07-31 11:39:30 +00:00
|
|
|
struct thermal_zone_device *thermal_zone_device_register(const char *, int, int,
|
2013-07-03 19:35:39 +00:00
|
|
|
void *, struct thermal_zone_device_ops *,
|
2015-03-02 17:17:19 +00:00
|
|
|
struct thermal_zone_params *, int, int);
|
2008-01-17 07:51:08 +00:00
|
|
|
void thermal_zone_device_unregister(struct thermal_zone_device *);
|
|
|
|
|
|
|
|
int thermal_zone_bind_cooling_device(struct thermal_zone_device *, int,
|
2012-06-26 08:35:57 +00:00
|
|
|
struct thermal_cooling_device *,
|
2015-02-18 16:04:21 +00:00
|
|
|
unsigned long, unsigned long,
|
|
|
|
unsigned int);
|
2008-01-17 07:51:08 +00:00
|
|
|
int thermal_zone_unbind_cooling_device(struct thermal_zone_device *, int,
|
|
|
|
struct thermal_cooling_device *);
|
2016-08-26 23:21:16 +00:00
|
|
|
void thermal_zone_device_update(struct thermal_zone_device *,
|
|
|
|
enum thermal_notify_event);
|
2016-06-22 08:42:01 +00:00
|
|
|
void thermal_zone_set_trips(struct thermal_zone_device *);
|
2012-09-18 05:34:52 +00:00
|
|
|
|
2019-04-18 16:36:39 +00:00
|
|
|
struct thermal_cooling_device *thermal_cooling_device_register(const char *,
|
|
|
|
void *, const struct thermal_cooling_device_ops *);
|
2013-09-26 19:55:01 +00:00
|
|
|
struct thermal_cooling_device *
|
2019-04-18 16:36:39 +00:00
|
|
|
thermal_of_cooling_device_register(struct device_node *np, const char *, void *,
|
2013-09-26 19:55:01 +00:00
|
|
|
const struct thermal_cooling_device_ops *);
|
2019-04-18 19:58:15 +00:00
|
|
|
struct thermal_cooling_device *
|
|
|
|
devm_thermal_of_cooling_device_register(struct device *dev,
|
|
|
|
struct device_node *np,
|
|
|
|
char *type, void *devdata,
|
|
|
|
const struct thermal_cooling_device_ops *ops);
|
2008-01-17 07:51:08 +00:00
|
|
|
void thermal_cooling_device_unregister(struct thermal_cooling_device *);
|
2013-04-05 12:32:28 +00:00
|
|
|
struct thermal_zone_device *thermal_zone_get_zone_by_name(const char *name);
|
2015-07-24 06:12:54 +00:00
|
|
|
int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp);
|
2016-05-05 08:51:42 +00:00
|
|
|
int thermal_zone_get_slope(struct thermal_zone_device *tz);
|
|
|
|
int thermal_zone_get_offset(struct thermal_zone_device *tz);
|
2011-03-01 00:12:19 +00:00
|
|
|
|
2012-09-18 05:34:54 +00:00
|
|
|
int get_tz_trend(struct thermal_zone_device *, int);
|
|
|
|
struct thermal_instance *get_thermal_instance(struct thermal_zone_device *,
|
|
|
|
struct thermal_cooling_device *, int);
|
2012-09-18 05:35:00 +00:00
|
|
|
void thermal_cdev_update(struct thermal_cooling_device *);
|
2013-04-23 21:48:14 +00:00
|
|
|
void thermal_notify_framework(struct thermal_zone_device *, int);
|
2015-02-14 01:28:02 +00:00
|
|
|
#else
|
2015-02-26 19:00:28 +00:00
|
|
|
static inline bool cdev_is_power_actor(struct thermal_cooling_device *cdev)
|
|
|
|
{ return false; }
|
|
|
|
static inline int power_actor_get_max_power(struct thermal_cooling_device *cdev,
|
|
|
|
struct thermal_zone_device *tz, u32 *max_power)
|
|
|
|
{ return 0; }
|
2015-09-14 13:23:50 +00:00
|
|
|
static inline int power_actor_get_min_power(struct thermal_cooling_device *cdev,
|
|
|
|
struct thermal_zone_device *tz,
|
|
|
|
u32 *min_power)
|
|
|
|
{ return -ENODEV; }
|
2015-02-26 19:00:28 +00:00
|
|
|
static inline int power_actor_set_power(struct thermal_cooling_device *cdev,
|
|
|
|
struct thermal_instance *tz, u32 power)
|
|
|
|
{ return 0; }
|
2015-02-14 01:28:02 +00:00
|
|
|
static inline struct thermal_zone_device *thermal_zone_device_register(
|
|
|
|
const char *type, int trips, int mask, void *devdata,
|
|
|
|
struct thermal_zone_device_ops *ops,
|
2017-08-31 06:00:45 +00:00
|
|
|
struct thermal_zone_params *tzp,
|
2015-02-14 01:28:02 +00:00
|
|
|
int passive_delay, int polling_delay)
|
|
|
|
{ return ERR_PTR(-ENODEV); }
|
|
|
|
static inline void thermal_zone_device_unregister(
|
|
|
|
struct thermal_zone_device *tz)
|
|
|
|
{ }
|
|
|
|
static inline int thermal_zone_bind_cooling_device(
|
|
|
|
struct thermal_zone_device *tz, int trip,
|
|
|
|
struct thermal_cooling_device *cdev,
|
2015-11-17 16:48:52 +00:00
|
|
|
unsigned long upper, unsigned long lower,
|
|
|
|
unsigned int weight)
|
2015-02-14 01:28:02 +00:00
|
|
|
{ return -ENODEV; }
|
|
|
|
static inline int thermal_zone_unbind_cooling_device(
|
|
|
|
struct thermal_zone_device *tz, int trip,
|
|
|
|
struct thermal_cooling_device *cdev)
|
|
|
|
{ return -ENODEV; }
|
2016-08-26 23:21:16 +00:00
|
|
|
static inline void thermal_zone_device_update(struct thermal_zone_device *tz,
|
|
|
|
enum thermal_notify_event event)
|
2015-02-14 01:28:02 +00:00
|
|
|
{ }
|
2016-06-22 08:42:01 +00:00
|
|
|
static inline void thermal_zone_set_trips(struct thermal_zone_device *tz)
|
|
|
|
{ }
|
2015-02-14 01:28:02 +00:00
|
|
|
static inline struct thermal_cooling_device *
|
|
|
|
thermal_cooling_device_register(char *type, void *devdata,
|
|
|
|
const struct thermal_cooling_device_ops *ops)
|
|
|
|
{ return ERR_PTR(-ENODEV); }
|
|
|
|
static inline struct thermal_cooling_device *
|
|
|
|
thermal_of_cooling_device_register(struct device_node *np,
|
|
|
|
char *type, void *devdata, const struct thermal_cooling_device_ops *ops)
|
|
|
|
{ return ERR_PTR(-ENODEV); }
|
2019-04-18 19:58:15 +00:00
|
|
|
static inline struct thermal_cooling_device *
|
|
|
|
devm_thermal_of_cooling_device_register(struct device *dev,
|
|
|
|
struct device_node *np,
|
|
|
|
char *type, void *devdata,
|
|
|
|
const struct thermal_cooling_device_ops *ops)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-ENODEV);
|
|
|
|
}
|
2015-02-14 01:28:02 +00:00
|
|
|
static inline void thermal_cooling_device_unregister(
|
|
|
|
struct thermal_cooling_device *cdev)
|
|
|
|
{ }
|
|
|
|
static inline struct thermal_zone_device *thermal_zone_get_zone_by_name(
|
|
|
|
const char *name)
|
|
|
|
{ return ERR_PTR(-ENODEV); }
|
|
|
|
static inline int thermal_zone_get_temp(
|
2015-07-24 06:12:54 +00:00
|
|
|
struct thermal_zone_device *tz, int *temp)
|
2015-02-14 01:28:02 +00:00
|
|
|
{ return -ENODEV; }
|
2016-05-05 08:51:42 +00:00
|
|
|
static inline int thermal_zone_get_slope(
|
|
|
|
struct thermal_zone_device *tz)
|
|
|
|
{ return -ENODEV; }
|
|
|
|
static inline int thermal_zone_get_offset(
|
|
|
|
struct thermal_zone_device *tz)
|
|
|
|
{ return -ENODEV; }
|
2015-02-14 01:28:02 +00:00
|
|
|
static inline int get_tz_trend(struct thermal_zone_device *tz, int trip)
|
|
|
|
{ return -ENODEV; }
|
|
|
|
static inline struct thermal_instance *
|
|
|
|
get_thermal_instance(struct thermal_zone_device *tz,
|
|
|
|
struct thermal_cooling_device *cdev, int trip)
|
|
|
|
{ return ERR_PTR(-ENODEV); }
|
|
|
|
static inline void thermal_cdev_update(struct thermal_cooling_device *cdev)
|
|
|
|
{ }
|
|
|
|
static inline void thermal_notify_framework(struct thermal_zone_device *tz,
|
|
|
|
int trip)
|
|
|
|
{ }
|
|
|
|
#endif /* CONFIG_THERMAL */
|
|
|
|
|
|
|
|
#if defined(CONFIG_NET) && IS_ENABLED(CONFIG_THERMAL)
|
2013-01-02 15:29:39 +00:00
|
|
|
extern int thermal_generate_netlink_event(struct thermal_zone_device *tz,
|
|
|
|
enum events event);
|
2011-03-01 00:12:19 +00:00
|
|
|
#else
|
2013-03-20 21:38:07 +00:00
|
|
|
static inline int thermal_generate_netlink_event(struct thermal_zone_device *tz,
|
2013-01-02 15:29:39 +00:00
|
|
|
enum events event)
|
2011-03-01 00:12:19 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2008-01-17 07:51:08 +00:00
|
|
|
|
2008-02-09 09:01:48 +00:00
|
|
|
#endif /* __THERMAL_H__ */
|