blob: 7834be668d80b6bd064c36b8ad364d21adc315ea [file] [log] [blame]
Zhang Rui203d3d42008-01-17 15:51:08 +08001/*
2 * thermal.h ($Revision: 0 $)
3 *
4 * Copyright (C) 2008 Intel Corp
5 * Copyright (C) 2008 Zhang Rui <rui.zhang@intel.com>
6 * Copyright (C) 2008 Sujith Thomas <sujith.thomas@intel.com>
7 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 *
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 */
24
25#ifndef __THERMAL_H__
26#define __THERMAL_H__
27
Eduardo Valentina116b5d2013-09-26 15:55:01 -040028#include <linux/of.h>
Zhang Rui203d3d42008-01-17 15:51:08 +080029#include <linux/idr.h>
30#include <linux/device.h>
Eduardo Valentin4d0fe742016-11-07 21:08:52 -080031#include <linux/sysfs.h>
Matthew Garrettb1569e92008-12-03 17:55:32 +000032#include <linux/workqueue.h>
Florian Fainelliaf6c9f12014-11-19 18:11:00 -080033#include <uapi/linux/thermal.h>
Zhang Rui203d3d42008-01-17 15:51:08 +080034
Durgadoss R23064082012-09-18 11:04:52 +053035#define THERMAL_TRIPS_NONE -1
36#define THERMAL_MAX_TRIPS 12
Durgadoss R23064082012-09-18 11:04:52 +053037
Zhang Rui57df8102013-02-08 14:52:06 +080038/* invalid cooling state */
39#define THERMAL_CSTATE_INVALID -1UL
40
Durgadoss R23064082012-09-18 11:04:52 +053041/* No upper/lower limit requirement */
Punit Agrawala940cb32014-12-09 12:22:01 +000042#define THERMAL_NO_LIMIT ((u32)~0)
Durgadoss R23064082012-09-18 11:04:52 +053043
Kapileshwar Singh6cd9e9f2015-02-18 16:04:21 +000044/* Default weight of a bound cooling device */
45#define THERMAL_WEIGHT_DEFAULT 0
46
Zhang Ruibb431ba2015-10-30 16:31:47 +080047/* use value, which < 0K, to indicate an invalid/uninitialized temperature */
48#define THERMAL_TEMP_INVALID -274000
49
Durgadoss R23064082012-09-18 11:04:52 +053050/* Unit conversion macros */
Rasmus Villemoese866a2e2015-10-01 23:45:31 +020051#define DECI_KELVIN_TO_CELSIUS(t) ({ \
52 long _t = (t); \
53 ((_t-2732 >= 0) ? (_t-2732+5)/10 : (_t-2732-5)/10); \
54})
55#define CELSIUS_TO_DECI_KELVIN(t) ((t)*10+2732)
Aaron Lu7b83fd92014-03-25 10:40:09 +080056#define DECI_KELVIN_TO_MILLICELSIUS_WITH_OFFSET(t, off) (((t) - (off)) * 100)
57#define DECI_KELVIN_TO_MILLICELSIUS(t) DECI_KELVIN_TO_MILLICELSIUS_WITH_OFFSET(t, 2732)
Aaron Lu77e337c2014-09-03 15:13:02 +080058#define MILLICELSIUS_TO_DECI_KELVIN_WITH_OFFSET(t, off) (((t) / 100) + (off))
59#define MILLICELSIUS_TO_DECI_KELVIN(t) MILLICELSIUS_TO_DECI_KELVIN_WITH_OFFSET(t, 2732)
Durgadoss R23064082012-09-18 11:04:52 +053060
Zhang Rui1f53ef12012-12-12 15:31:37 +080061/* Default Thermal Governor */
62#if defined(CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE)
63#define DEFAULT_THERMAL_GOVERNOR "step_wise"
64#elif defined(CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE)
65#define DEFAULT_THERMAL_GOVERNOR "fair_share"
66#elif defined(CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE)
67#define DEFAULT_THERMAL_GOVERNOR "user_space"
Javi Merino6b775e82015-03-02 17:17:19 +000068#elif defined(CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR)
69#define DEFAULT_THERMAL_GOVERNOR "power_allocator"
Zhang Rui1f53ef12012-12-12 15:31:37 +080070#endif
Durgadoss Ra4a15482012-09-18 11:04:57 +053071
Zhang Rui203d3d42008-01-17 15:51:08 +080072struct thermal_zone_device;
73struct thermal_cooling_device;
Javi Merino35b11d22015-02-26 19:00:28 +000074struct thermal_instance;
Zhang Rui203d3d42008-01-17 15:51:08 +080075
Matthew Garrett6503e5d2008-11-27 17:48:13 +000076enum thermal_device_mode {
77 THERMAL_DEVICE_DISABLED = 0,
78 THERMAL_DEVICE_ENABLED,
79};
80
81enum thermal_trip_type {
82 THERMAL_TRIP_ACTIVE = 0,
83 THERMAL_TRIP_PASSIVE,
84 THERMAL_TRIP_HOT,
85 THERMAL_TRIP_CRITICAL,
86};
87
Zhang Rui601f3d42012-06-27 09:54:33 +080088enum thermal_trend {
89 THERMAL_TREND_STABLE, /* temperature is stable */
90 THERMAL_TREND_RAISING, /* temperature is raising */
91 THERMAL_TREND_DROPPING, /* temperature is dropping */
Zhang Ruid069015e2012-11-19 15:33:51 +080092 THERMAL_TREND_RAISE_FULL, /* apply highest cooling action */
93 THERMAL_TREND_DROP_FULL, /* apply lowest cooling action */
Zhang Rui601f3d42012-06-27 09:54:33 +080094};
95
Srinivas Pandruvada0e70f462016-08-26 16:21:16 -070096/* Thermal notification reason */
97enum thermal_notify_event {
98 THERMAL_EVENT_UNSPECIFIED, /* Unspecified event */
99 THERMAL_EVENT_TEMP_SAMPLE, /* New Temperature sample */
100 THERMAL_TRIP_VIOLATED, /* TRIP Point violation */
101 THERMAL_TRIP_CHANGED, /* TRIP Point temperature changed */
102 THERMAL_DEVICE_DOWN, /* Thermal device is down */
103 THERMAL_DEVICE_UP, /* Thermal device is up after a down event */
104 THERMAL_DEVICE_POWER_CAPABILITY_CHANGED, /* power capability changed */
Brian Bian38e44da2017-08-09 11:45:40 -0700105 THERMAL_TABLE_CHANGED, /* Thermal table(s) changed */
Srinivas Pandruvada0e70f462016-08-26 16:21:16 -0700106};
107
Zhang Rui203d3d42008-01-17 15:51:08 +0800108struct thermal_zone_device_ops {
109 int (*bind) (struct thermal_zone_device *,
110 struct thermal_cooling_device *);
111 int (*unbind) (struct thermal_zone_device *,
112 struct thermal_cooling_device *);
Sascha Hauer17e83512015-07-24 08:12:54 +0200113 int (*get_temp) (struct thermal_zone_device *, int *);
Sascha Hauer060c0342016-06-22 16:42:01 +0800114 int (*set_trips) (struct thermal_zone_device *, int, int);
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000115 int (*get_mode) (struct thermal_zone_device *,
116 enum thermal_device_mode *);
117 int (*set_mode) (struct thermal_zone_device *,
118 enum thermal_device_mode);
119 int (*get_trip_type) (struct thermal_zone_device *, int,
120 enum thermal_trip_type *);
Sascha Hauer17e83512015-07-24 08:12:54 +0200121 int (*get_trip_temp) (struct thermal_zone_device *, int, int *);
122 int (*set_trip_temp) (struct thermal_zone_device *, int, int);
123 int (*get_trip_hyst) (struct thermal_zone_device *, int, int *);
124 int (*set_trip_hyst) (struct thermal_zone_device *, int, int);
125 int (*get_crit_temp) (struct thermal_zone_device *, int *);
126 int (*set_emul_temp) (struct thermal_zone_device *, int);
Zhang Rui601f3d42012-06-27 09:54:33 +0800127 int (*get_trend) (struct thermal_zone_device *, int,
128 enum thermal_trend *);
Matthew Garrettb1569e92008-12-03 17:55:32 +0000129 int (*notify) (struct thermal_zone_device *, int,
130 enum thermal_trip_type);
Zhang Rui203d3d42008-01-17 15:51:08 +0800131};
132
133struct thermal_cooling_device_ops {
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000134 int (*get_max_state) (struct thermal_cooling_device *, unsigned long *);
135 int (*get_cur_state) (struct thermal_cooling_device *, unsigned long *);
136 int (*set_cur_state) (struct thermal_cooling_device *, unsigned long);
Javi Merino35b11d22015-02-26 19:00:28 +0000137 int (*get_requested_power)(struct thermal_cooling_device *,
138 struct thermal_zone_device *, u32 *);
139 int (*state2power)(struct thermal_cooling_device *,
140 struct thermal_zone_device *, unsigned long, u32 *);
141 int (*power2state)(struct thermal_cooling_device *,
142 struct thermal_zone_device *, u32, unsigned long *);
Zhang Rui203d3d42008-01-17 15:51:08 +0800143};
144
Zhang Rui203d3d42008-01-17 15:51:08 +0800145struct thermal_cooling_device {
146 int id;
147 char type[THERMAL_NAME_LENGTH];
148 struct device device;
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400149 struct device_node *np;
Zhang Rui203d3d42008-01-17 15:51:08 +0800150 void *devdata;
Viresh Kumar8ea22952018-04-02 16:26:25 +0530151 void *stats;
Alan Cox5b275ce2010-11-11 15:27:29 +0000152 const struct thermal_cooling_device_ops *ops;
Zhang Ruice119f82012-06-27 14:13:04 +0800153 bool updated; /* true if the cooling device does not need update */
Zhang Ruif4a821c2012-07-24 16:56:21 +0800154 struct mutex lock; /* protect thermal_instances list */
Zhang Ruib5e4ae62012-06-27 14:11:52 +0800155 struct list_head thermal_instances;
Zhang Rui203d3d42008-01-17 15:51:08 +0800156 struct list_head node;
157};
158
Durgadoss Rc56f5c02012-07-25 10:10:58 +0800159struct thermal_attr {
160 struct device_attribute attr;
161 char name[THERMAL_NAME_LENGTH];
162};
163
Javi Merinoc708a982014-06-25 11:00:12 +0100164/**
165 * struct thermal_zone_device - structure for a thermal zone
166 * @id: unique id number for each thermal zone
167 * @type: the thermal zone device type
168 * @device: &struct device for this thermal zone
169 * @trip_temp_attrs: attributes for trip points for sysfs: trip temperature
170 * @trip_type_attrs: attributes for trip points for sysfs: trip type
171 * @trip_hyst_attrs: attributes for trip points for sysfs: trip hysteresis
172 * @devdata: private pointer for device private data
173 * @trips: number of trip points the thermal zone supports
Zhang Rui81ad4272016-03-18 10:03:24 +0800174 * @trips_disabled; bitmap for disabled trips
Javi Merinoc708a982014-06-25 11:00:12 +0100175 * @passive_delay: number of milliseconds to wait between polls when
Javi Merino6b775e82015-03-02 17:17:19 +0000176 * performing passive cooling.
Javi Merinoc708a982014-06-25 11:00:12 +0100177 * @polling_delay: number of milliseconds to wait between polls when
178 * checking whether trip points have been crossed (0 for
179 * interrupt driven systems)
180 * @temperature: current temperature. This is only for core code,
181 * drivers should use thermal_zone_get_temp() to get the
182 * current temperature
183 * @last_temperature: previous temperature read
184 * @emul_temperature: emulated temperature when using CONFIG_THERMAL_EMULATION
185 * @passive: 1 if you've crossed a passive trip point, 0 otherwise.
Sascha Hauer060c0342016-06-22 16:42:01 +0800186 * @prev_low_trip: the low current temperature if you've crossed a passive
187 trip point.
188 * @prev_high_trip: the above current temperature if you've crossed a
189 passive trip point.
Javi Merinoc708a982014-06-25 11:00:12 +0100190 * @forced_passive: If > 0, temperature at which to switch on all ACPI
191 * processor cooling devices. Currently only used by the
192 * step-wise governor.
Chen Yu4511f712015-10-30 16:32:10 +0800193 * @need_update: if equals 1, thermal_zone_device_update needs to be invoked.
Javi Merinoc708a982014-06-25 11:00:12 +0100194 * @ops: operations this &thermal_zone_device supports
195 * @tzp: thermal zone parameters
196 * @governor: pointer to the governor for this thermal zone
Javi Merinoe33df1d2015-02-26 19:00:27 +0000197 * @governor_data: private pointer for governor data
Javi Merinoc708a982014-06-25 11:00:12 +0100198 * @thermal_instances: list of &struct thermal_instance of this thermal zone
Matthew Wilcoxb31ef822016-12-21 09:47:03 -0800199 * @ida: &struct ida to generate unique id for this zone's cooling
Javi Merinoc708a982014-06-25 11:00:12 +0100200 * devices
201 * @lock: lock to protect thermal_instances list
202 * @node: node in thermal_tz_list (in thermal_core.c)
203 * @poll_queue: delayed work for polling
Srinivas Pandruvada0e70f462016-08-26 16:21:16 -0700204 * @notify_event: Last notification event
Javi Merinoc708a982014-06-25 11:00:12 +0100205 */
Zhang Rui203d3d42008-01-17 15:51:08 +0800206struct thermal_zone_device {
207 int id;
208 char type[THERMAL_NAME_LENGTH];
209 struct device device;
Eduardo Valentin4d0fe742016-11-07 21:08:52 -0800210 struct attribute_group trips_attribute_group;
Durgadoss Rc56f5c02012-07-25 10:10:58 +0800211 struct thermal_attr *trip_temp_attrs;
212 struct thermal_attr *trip_type_attrs;
Durgadoss R27365a62012-07-25 10:10:59 +0800213 struct thermal_attr *trip_hyst_attrs;
Zhang Rui203d3d42008-01-17 15:51:08 +0800214 void *devdata;
215 int trips;
Zhang Rui81ad4272016-03-18 10:03:24 +0800216 unsigned long trips_disabled; /* bitmap for disabled trips */
Matthew Garrettb1569e92008-12-03 17:55:32 +0000217 int passive_delay;
218 int polling_delay;
Zhang Rui601f3d42012-06-27 09:54:33 +0800219 int temperature;
Matthew Garrettb1569e92008-12-03 17:55:32 +0000220 int last_temperature;
Amit Daniel Kachhape6e238c2013-02-04 00:30:15 +0000221 int emul_temperature;
Zhang Rui908b9fb2012-06-27 14:14:05 +0800222 int passive;
Sascha Hauer060c0342016-06-22 16:42:01 +0800223 int prev_low_trip;
224 int prev_high_trip;
Matthew Garrett03a971a2008-12-03 18:00:38 +0000225 unsigned int forced_passive;
Chen Yu4511f712015-10-30 16:32:10 +0800226 atomic_t need_update;
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400227 struct thermal_zone_device_ops *ops;
Javi Merino6b775e82015-03-02 17:17:19 +0000228 struct thermal_zone_params *tzp;
Durgadoss Ra4a15482012-09-18 11:04:57 +0530229 struct thermal_governor *governor;
Javi Merinoe33df1d2015-02-26 19:00:27 +0000230 void *governor_data;
Zhang Rui2d374132012-06-27 10:09:00 +0800231 struct list_head thermal_instances;
Matthew Wilcoxb31ef822016-12-21 09:47:03 -0800232 struct ida ida;
Javi Merinoc708a982014-06-25 11:00:12 +0100233 struct mutex lock;
Zhang Rui203d3d42008-01-17 15:51:08 +0800234 struct list_head node;
Matthew Garrettb1569e92008-12-03 17:55:32 +0000235 struct delayed_work poll_queue;
Srinivas Pandruvada0e70f462016-08-26 16:21:16 -0700236 enum thermal_notify_event notify_event;
Zhang Rui203d3d42008-01-17 15:51:08 +0800237};
R.Durgadoss4cb18722010-10-27 03:33:29 +0530238
Javi Merinoc708a982014-06-25 11:00:12 +0100239/**
240 * struct thermal_governor - structure that holds thermal governor information
241 * @name: name of the governor
Javi Merinoe33df1d2015-02-26 19:00:27 +0000242 * @bind_to_tz: callback called when binding to a thermal zone. If it
243 * returns 0, the governor is bound to the thermal zone,
244 * otherwise it fails.
245 * @unbind_from_tz: callback called when a governor is unbound from a
246 * thermal zone.
Javi Merinoc708a982014-06-25 11:00:12 +0100247 * @throttle: callback called for every trip point even if temperature is
248 * below the trip point temperature
249 * @governor_list: node in thermal_governor_list (in thermal_core.c)
250 */
Durgadoss Ra4a15482012-09-18 11:04:57 +0530251struct thermal_governor {
252 char name[THERMAL_NAME_LENGTH];
Javi Merinoe33df1d2015-02-26 19:00:27 +0000253 int (*bind_to_tz)(struct thermal_zone_device *tz);
254 void (*unbind_from_tz)(struct thermal_zone_device *tz);
Durgadoss Ra4a15482012-09-18 11:04:57 +0530255 int (*throttle)(struct thermal_zone_device *tz, int trip);
256 struct list_head governor_list;
Durgadoss Ra4a15482012-09-18 11:04:57 +0530257};
258
Durgadoss Ref873942012-09-18 11:04:55 +0530259/* Structure that holds binding parameters for a zone */
260struct thermal_bind_params {
261 struct thermal_cooling_device *cdev;
262
263 /*
264 * This is a measure of 'how effectively these devices can
Javi Merinobcdcbbc2015-02-18 16:04:25 +0000265 * cool 'this' thermal zone. It shall be determined by
266 * platform characterization. This value is relative to the
267 * rest of the weights so a cooling device whose weight is
268 * double that of another cooling device is twice as
269 * effective. See Documentation/thermal/sysfs-api.txt for more
270 * information.
Durgadoss Ref873942012-09-18 11:04:55 +0530271 */
272 int weight;
273
274 /*
275 * This is a bit mask that gives the binding relation between this
276 * thermal zone and cdev, for a particular trip point.
277 * See Documentation/thermal/sysfs-api.txt for more information.
278 */
279 int trip_mask;
Eduardo Valentina8892d832013-07-16 15:26:28 -0400280
281 /*
282 * This is an array of cooling state limits. Must have exactly
283 * 2 * thermal_zone.number_of_trip_points. It is an array consisting
284 * of tuples <lower-state upper-state> of state limits. Each trip
285 * will be associated with one state limit tuple when binding.
286 * A NULL pointer means <THERMAL_NO_LIMITS THERMAL_NO_LIMITS>
287 * on all trips.
288 */
289 unsigned long *binding_limits;
Durgadoss Ref873942012-09-18 11:04:55 +0530290 int (*match) (struct thermal_zone_device *tz,
291 struct thermal_cooling_device *cdev);
292};
293
294/* Structure to define Thermal Zone parameters */
295struct thermal_zone_params {
Durgadoss Ra4a15482012-09-18 11:04:57 +0530296 char governor_name[THERMAL_NAME_LENGTH];
Eduardo Valentinccba4ff2013-08-15 11:34:17 -0400297
298 /*
299 * a boolean to indicate if the thermal to hwmon sysfs interface
300 * is required. when no_hwmon == false, a hwmon sysfs interface
301 * will be created. when no_hwmon == true, nothing will be done
302 */
303 bool no_hwmon;
304
Durgadoss Ref873942012-09-18 11:04:55 +0530305 int num_tbps; /* Number of tbp entries */
306 struct thermal_bind_params *tbp;
Javi Merino6b775e82015-03-02 17:17:19 +0000307
308 /*
309 * Sustainable power (heat) that this thermal zone can dissipate in
310 * mW
311 */
312 u32 sustainable_power;
313
314 /*
315 * Proportional parameter of the PID controller when
316 * overshooting (i.e., when temperature is below the target)
317 */
318 s32 k_po;
319
320 /*
321 * Proportional parameter of the PID controller when
322 * undershooting
323 */
324 s32 k_pu;
325
326 /* Integral parameter of the PID controller */
327 s32 k_i;
328
329 /* Derivative parameter of the PID controller */
330 s32 k_d;
331
332 /* threshold below which the error is no longer accumulated */
333 s32 integral_cutoff;
Eduardo Valentin9d0be7f2015-05-11 19:34:23 -0700334
335 /*
336 * @slope: slope of a linear temperature adjustment curve.
337 * Used by thermal zone drivers.
338 */
339 int slope;
340 /*
341 * @offset: offset of a linear temperature adjustment curve.
342 * Used by thermal zone drivers (default 0).
343 */
344 int offset;
Durgadoss Ref873942012-09-18 11:04:55 +0530345};
346
R.Durgadoss4cb18722010-10-27 03:33:29 +0530347struct thermal_genl_event {
348 u32 orig;
349 enum events event;
350};
R.Durgadoss4cb18722010-10-27 03:33:29 +0530351
Eduardo Valentin2251aef2014-11-07 21:24:39 -0400352/**
353 * struct thermal_zone_of_device_ops - scallbacks for handling DT based zones
354 *
355 * Mandatory:
356 * @get_temp: a pointer to a function that reads the sensor temperature.
357 *
358 * Optional:
359 * @get_trend: a pointer to a function that reads the sensor temperature trend.
Sascha Hauer826386e2016-06-22 16:42:02 +0800360 * @set_trips: a pointer to a function that sets a temperature window. When
361 * this window is left the driver must inform the thermal core via
362 * thermal_zone_device_update.
Lukasz Majewski184a4bf2014-12-08 18:04:21 +0100363 * @set_emul_temp: a pointer to a function that sets sensor emulated
364 * temperature.
Caesar Wang5a5e78c2016-05-18 23:01:39 +0800365 * @set_trip_temp: a pointer to a function that sets the trip temperature on
366 * hardware.
Eduardo Valentin2251aef2014-11-07 21:24:39 -0400367 */
368struct thermal_zone_of_device_ops {
Sascha Hauer17e83512015-07-24 08:12:54 +0200369 int (*get_temp)(void *, int *);
Sascha Hauere78eaf42016-06-22 16:42:03 +0800370 int (*get_trend)(void *, int, enum thermal_trend *);
Sascha Hauer826386e2016-06-22 16:42:02 +0800371 int (*set_trips)(void *, int, int);
Sascha Hauer17e83512015-07-24 08:12:54 +0200372 int (*set_emul_temp)(void *, int);
Wei Nic3509522016-03-29 18:29:17 +0800373 int (*set_trip_temp)(void *, int, int);
Eduardo Valentin2251aef2014-11-07 21:24:39 -0400374};
375
Lukasz Majewskiad9914a2014-12-08 18:04:19 +0100376/**
377 * struct thermal_trip - representation of a point in temperature domain
378 * @np: pointer to struct device_node that this trip point was created from
379 * @temperature: temperature value in miliCelsius
380 * @hysteresis: relative hysteresis in miliCelsius
381 * @type: trip point type
382 */
383
384struct thermal_trip {
385 struct device_node *np;
Wei Ni1d0fd422016-03-03 17:33:46 +0800386 int temperature;
387 int hysteresis;
Lukasz Majewskiad9914a2014-12-08 18:04:19 +0100388 enum thermal_trip_type type;
389};
390
Durgadoss R23064082012-09-18 11:04:52 +0530391/* Function declarations */
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400392#ifdef CONFIG_THERMAL_OF
393struct thermal_zone_device *
Eduardo Valentin2251aef2014-11-07 21:24:39 -0400394thermal_zone_of_sensor_register(struct device *dev, int id, void *data,
395 const struct thermal_zone_of_device_ops *ops);
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400396void thermal_zone_of_sensor_unregister(struct device *dev,
397 struct thermal_zone_device *tz);
Laxman Dewangane498b492016-03-09 18:40:06 +0530398struct thermal_zone_device *devm_thermal_zone_of_sensor_register(
399 struct device *dev, int id, void *data,
400 const struct thermal_zone_of_device_ops *ops);
401void devm_thermal_zone_of_sensor_unregister(struct device *dev,
402 struct thermal_zone_device *tz);
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400403#else
404static inline struct thermal_zone_device *
Eduardo Valentin2251aef2014-11-07 21:24:39 -0400405thermal_zone_of_sensor_register(struct device *dev, int id, void *data,
406 const struct thermal_zone_of_device_ops *ops)
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400407{
Punit Agrawalcd33dc92015-09-08 14:51:12 +0100408 return ERR_PTR(-ENODEV);
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400409}
410
411static inline
412void thermal_zone_of_sensor_unregister(struct device *dev,
413 struct thermal_zone_device *tz)
414{
415}
416
Laxman Dewangane498b492016-03-09 18:40:06 +0530417static inline struct thermal_zone_device *devm_thermal_zone_of_sensor_register(
418 struct device *dev, int id, void *data,
419 const struct thermal_zone_of_device_ops *ops)
420{
421 return ERR_PTR(-ENODEV);
422}
423
424static inline
425void devm_thermal_zone_of_sensor_unregister(struct device *dev,
426 struct thermal_zone_device *tz)
427{
428}
429
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400430#endif
Nishanth Menon12ca7182015-02-13 19:28:02 -0600431
432#if IS_ENABLED(CONFIG_THERMAL)
Javi Merino35b11d22015-02-26 19:00:28 +0000433static inline bool cdev_is_power_actor(struct thermal_cooling_device *cdev)
434{
435 return cdev->ops->get_requested_power && cdev->ops->state2power &&
436 cdev->ops->power2state;
437}
438
439int power_actor_get_max_power(struct thermal_cooling_device *,
440 struct thermal_zone_device *tz, u32 *max_power);
Javi Merinoc973c3b2015-09-14 14:23:50 +0100441int power_actor_get_min_power(struct thermal_cooling_device *,
442 struct thermal_zone_device *tz, u32 *min_power);
Javi Merino35b11d22015-02-26 19:00:28 +0000443int power_actor_set_power(struct thermal_cooling_device *,
444 struct thermal_instance *, u32);
Anton Vorontsov4b1bf582012-07-31 04:39:30 -0700445struct thermal_zone_device *thermal_zone_device_register(const char *, int, int,
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400446 void *, struct thermal_zone_device_ops *,
Javi Merino6b775e82015-03-02 17:17:19 +0000447 struct thermal_zone_params *, int, int);
Zhang Rui203d3d42008-01-17 15:51:08 +0800448void thermal_zone_device_unregister(struct thermal_zone_device *);
449
450int thermal_zone_bind_cooling_device(struct thermal_zone_device *, int,
Zhang Rui9d998422012-06-26 16:35:57 +0800451 struct thermal_cooling_device *,
Kapileshwar Singh6cd9e9f2015-02-18 16:04:21 +0000452 unsigned long, unsigned long,
453 unsigned int);
Zhang Rui203d3d42008-01-17 15:51:08 +0800454int thermal_zone_unbind_cooling_device(struct thermal_zone_device *, int,
455 struct thermal_cooling_device *);
Srinivas Pandruvada0e70f462016-08-26 16:21:16 -0700456void thermal_zone_device_update(struct thermal_zone_device *,
457 enum thermal_notify_event);
Sascha Hauer060c0342016-06-22 16:42:01 +0800458void thermal_zone_set_trips(struct thermal_zone_device *);
Durgadoss R23064082012-09-18 11:04:52 +0530459
Zhang Rui203d3d42008-01-17 15:51:08 +0800460struct thermal_cooling_device *thermal_cooling_device_register(char *, void *,
Alan Cox5b275ce2010-11-11 15:27:29 +0000461 const struct thermal_cooling_device_ops *);
Eduardo Valentina116b5d2013-09-26 15:55:01 -0400462struct thermal_cooling_device *
463thermal_of_cooling_device_register(struct device_node *np, char *, void *,
464 const struct thermal_cooling_device_ops *);
Zhang Rui203d3d42008-01-17 15:51:08 +0800465void thermal_cooling_device_unregister(struct thermal_cooling_device *);
Eduardo Valentin63c4d912013-04-05 12:32:28 +0000466struct thermal_zone_device *thermal_zone_get_zone_by_name(const char *name);
Sascha Hauer17e83512015-07-24 08:12:54 +0200467int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp);
Rajendra Nayak4a7069a2016-05-05 14:21:42 +0530468int thermal_zone_get_slope(struct thermal_zone_device *tz);
469int thermal_zone_get_offset(struct thermal_zone_device *tz);
Rafael J. Wysockiaf062162011-03-01 01:12:19 +0100470
Durgadoss R9b4298a2012-09-18 11:04:54 +0530471int get_tz_trend(struct thermal_zone_device *, int);
472struct thermal_instance *get_thermal_instance(struct thermal_zone_device *,
473 struct thermal_cooling_device *, int);
Durgadoss Rdc765482012-09-18 11:05:00 +0530474void thermal_cdev_update(struct thermal_cooling_device *);
Eduardo Valentin7b73c992013-04-23 21:48:14 +0000475void thermal_notify_framework(struct thermal_zone_device *, int);
Nishanth Menon12ca7182015-02-13 19:28:02 -0600476#else
Javi Merino35b11d22015-02-26 19:00:28 +0000477static inline bool cdev_is_power_actor(struct thermal_cooling_device *cdev)
478{ return false; }
479static inline int power_actor_get_max_power(struct thermal_cooling_device *cdev,
480 struct thermal_zone_device *tz, u32 *max_power)
481{ return 0; }
Javi Merinoc973c3b2015-09-14 14:23:50 +0100482static inline int power_actor_get_min_power(struct thermal_cooling_device *cdev,
483 struct thermal_zone_device *tz,
484 u32 *min_power)
485{ return -ENODEV; }
Javi Merino35b11d22015-02-26 19:00:28 +0000486static inline int power_actor_set_power(struct thermal_cooling_device *cdev,
487 struct thermal_instance *tz, u32 power)
488{ return 0; }
Nishanth Menon12ca7182015-02-13 19:28:02 -0600489static inline struct thermal_zone_device *thermal_zone_device_register(
490 const char *type, int trips, int mask, void *devdata,
491 struct thermal_zone_device_ops *ops,
Arvind Yadav023b7b02017-08-31 11:30:45 +0530492 struct thermal_zone_params *tzp,
Nishanth Menon12ca7182015-02-13 19:28:02 -0600493 int passive_delay, int polling_delay)
494{ return ERR_PTR(-ENODEV); }
495static inline void thermal_zone_device_unregister(
496 struct thermal_zone_device *tz)
497{ }
498static inline int thermal_zone_bind_cooling_device(
499 struct thermal_zone_device *tz, int trip,
500 struct thermal_cooling_device *cdev,
Arnd Bergmannc86b3de2015-11-17 17:48:52 +0100501 unsigned long upper, unsigned long lower,
502 unsigned int weight)
Nishanth Menon12ca7182015-02-13 19:28:02 -0600503{ return -ENODEV; }
504static inline int thermal_zone_unbind_cooling_device(
505 struct thermal_zone_device *tz, int trip,
506 struct thermal_cooling_device *cdev)
507{ return -ENODEV; }
Srinivas Pandruvada0e70f462016-08-26 16:21:16 -0700508static inline void thermal_zone_device_update(struct thermal_zone_device *tz,
509 enum thermal_notify_event event)
Nishanth Menon12ca7182015-02-13 19:28:02 -0600510{ }
Sascha Hauer060c0342016-06-22 16:42:01 +0800511static inline void thermal_zone_set_trips(struct thermal_zone_device *tz)
512{ }
Nishanth Menon12ca7182015-02-13 19:28:02 -0600513static inline struct thermal_cooling_device *
514thermal_cooling_device_register(char *type, void *devdata,
515 const struct thermal_cooling_device_ops *ops)
516{ return ERR_PTR(-ENODEV); }
517static inline struct thermal_cooling_device *
518thermal_of_cooling_device_register(struct device_node *np,
519 char *type, void *devdata, const struct thermal_cooling_device_ops *ops)
520{ return ERR_PTR(-ENODEV); }
521static inline void thermal_cooling_device_unregister(
522 struct thermal_cooling_device *cdev)
523{ }
524static inline struct thermal_zone_device *thermal_zone_get_zone_by_name(
525 const char *name)
526{ return ERR_PTR(-ENODEV); }
527static inline int thermal_zone_get_temp(
Sascha Hauer17e83512015-07-24 08:12:54 +0200528 struct thermal_zone_device *tz, int *temp)
Nishanth Menon12ca7182015-02-13 19:28:02 -0600529{ return -ENODEV; }
Rajendra Nayak4a7069a2016-05-05 14:21:42 +0530530static inline int thermal_zone_get_slope(
531 struct thermal_zone_device *tz)
532{ return -ENODEV; }
533static inline int thermal_zone_get_offset(
534 struct thermal_zone_device *tz)
535{ return -ENODEV; }
Nishanth Menon12ca7182015-02-13 19:28:02 -0600536static inline int get_tz_trend(struct thermal_zone_device *tz, int trip)
537{ return -ENODEV; }
538static inline struct thermal_instance *
539get_thermal_instance(struct thermal_zone_device *tz,
540 struct thermal_cooling_device *cdev, int trip)
541{ return ERR_PTR(-ENODEV); }
542static inline void thermal_cdev_update(struct thermal_cooling_device *cdev)
543{ }
544static inline void thermal_notify_framework(struct thermal_zone_device *tz,
545 int trip)
546{ }
547#endif /* CONFIG_THERMAL */
Durgadoss Ra4a15482012-09-18 11:04:57 +0530548
Nishanth Menon12ca7182015-02-13 19:28:02 -0600549#if defined(CONFIG_NET) && IS_ENABLED(CONFIG_THERMAL)
Eduardo Valentin8ab3e6a2013-01-02 15:29:39 +0000550extern int thermal_generate_netlink_event(struct thermal_zone_device *tz,
551 enum events event);
Rafael J. Wysockiaf062162011-03-01 01:12:19 +0100552#else
Ezequiel Garciaf8b58702013-03-20 21:38:07 +0000553static inline int thermal_generate_netlink_event(struct thermal_zone_device *tz,
Eduardo Valentin8ab3e6a2013-01-02 15:29:39 +0000554 enum events event)
Rafael J. Wysockiaf062162011-03-01 01:12:19 +0100555{
556 return 0;
557}
558#endif
Zhang Rui203d3d42008-01-17 15:51:08 +0800559
Len Browna0dd25b2008-02-09 04:01:48 -0500560#endif /* __THERMAL_H__ */