]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/thermal.h
ACPI: fix acpi_find_child_device() invocation in acpi_preset_companion()
[mirror_ubuntu-bionic-kernel.git] / include / linux / thermal.h
CommitLineData
203d3d4a
ZR
1/*
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
a116b5d4 28#include <linux/of.h>
203d3d4a
ZR
29#include <linux/idr.h>
30#include <linux/device.h>
4d0fe749 31#include <linux/sysfs.h>
b1569e99 32#include <linux/workqueue.h>
af6c9f16 33#include <uapi/linux/thermal.h>
203d3d4a 34
23064088
D
35#define THERMAL_TRIPS_NONE -1
36#define THERMAL_MAX_TRIPS 12
23064088 37
57df8106
ZR
38/* invalid cooling state */
39#define THERMAL_CSTATE_INVALID -1UL
40
23064088 41/* No upper/lower limit requirement */
a940cb34 42#define THERMAL_NO_LIMIT ((u32)~0)
23064088 43
6cd9e9f6
KS
44/* Default weight of a bound cooling device */
45#define THERMAL_WEIGHT_DEFAULT 0
46
bb431ba2
ZR
47/* use value, which < 0K, to indicate an invalid/uninitialized temperature */
48#define THERMAL_TEMP_INVALID -274000
49
23064088 50/* Unit conversion macros */
e866a2e3
RV
51#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)
7b83fd9d
AL
56#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)
77e337c6
AL
58#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)
23064088 60
1f53ef17
ZR
61/* 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"
6b775e87
JM
68#elif defined(CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR)
69#define DEFAULT_THERMAL_GOVERNOR "power_allocator"
1f53ef17 70#endif
a4a15485 71
203d3d4a
ZR
72struct thermal_zone_device;
73struct thermal_cooling_device;
35b11d2e 74struct thermal_instance;
203d3d4a 75
6503e5df
MG
76enum 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
601f3d42
ZR
88enum thermal_trend {
89 THERMAL_TREND_STABLE, /* temperature is stable */
90 THERMAL_TREND_RAISING, /* temperature is raising */
91 THERMAL_TREND_DROPPING, /* temperature is dropping */
d069015e
ZR
92 THERMAL_TREND_RAISE_FULL, /* apply highest cooling action */
93 THERMAL_TREND_DROP_FULL, /* apply lowest cooling action */
601f3d42
ZR
94};
95
0e70f466
SP
96/* 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 */
38e44da5 105 THERMAL_TABLE_CHANGED, /* Thermal table(s) changed */
0e70f466
SP
106};
107
203d3d4a
ZR
108struct 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 *);
17e8351a 113 int (*get_temp) (struct thermal_zone_device *, int *);
060c034a 114 int (*set_trips) (struct thermal_zone_device *, int, int);
6503e5df
MG
115 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 *);
17e8351a
SH
121 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);
601f3d42
ZR
127 int (*get_trend) (struct thermal_zone_device *, int,
128 enum thermal_trend *);
b1569e99
MG
129 int (*notify) (struct thermal_zone_device *, int,
130 enum thermal_trip_type);
203d3d4a
ZR
131};
132
133struct thermal_cooling_device_ops {
6503e5df
MG
134 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);
35b11d2e
JM
137 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 *);
203d3d4a
ZR
143};
144
203d3d4a
ZR
145struct thermal_cooling_device {
146 int id;
147 char type[THERMAL_NAME_LENGTH];
148 struct device device;
4e5e4705 149 struct device_node *np;
203d3d4a 150 void *devdata;
5b275ce2 151 const struct thermal_cooling_device_ops *ops;
ce119f83 152 bool updated; /* true if the cooling device does not need update */
f4a821ce 153 struct mutex lock; /* protect thermal_instances list */
b5e4ae62 154 struct list_head thermal_instances;
203d3d4a
ZR
155 struct list_head node;
156};
157
c56f5c03
D
158struct thermal_attr {
159 struct device_attribute attr;
160 char name[THERMAL_NAME_LENGTH];
161};
162
c708a98f
JM
163/**
164 * struct thermal_zone_device - structure for a thermal zone
165 * @id: unique id number for each thermal zone
166 * @type: the thermal zone device type
167 * @device: &struct device for this thermal zone
168 * @trip_temp_attrs: attributes for trip points for sysfs: trip temperature
169 * @trip_type_attrs: attributes for trip points for sysfs: trip type
170 * @trip_hyst_attrs: attributes for trip points for sysfs: trip hysteresis
171 * @devdata: private pointer for device private data
172 * @trips: number of trip points the thermal zone supports
81ad4276 173 * @trips_disabled; bitmap for disabled trips
c708a98f 174 * @passive_delay: number of milliseconds to wait between polls when
6b775e87 175 * performing passive cooling.
c708a98f
JM
176 * @polling_delay: number of milliseconds to wait between polls when
177 * checking whether trip points have been crossed (0 for
178 * interrupt driven systems)
179 * @temperature: current temperature. This is only for core code,
180 * drivers should use thermal_zone_get_temp() to get the
181 * current temperature
182 * @last_temperature: previous temperature read
183 * @emul_temperature: emulated temperature when using CONFIG_THERMAL_EMULATION
184 * @passive: 1 if you've crossed a passive trip point, 0 otherwise.
060c034a
SH
185 * @prev_low_trip: the low current temperature if you've crossed a passive
186 trip point.
187 * @prev_high_trip: the above current temperature if you've crossed a
188 passive trip point.
c708a98f
JM
189 * @forced_passive: If > 0, temperature at which to switch on all ACPI
190 * processor cooling devices. Currently only used by the
191 * step-wise governor.
4511f716 192 * @need_update: if equals 1, thermal_zone_device_update needs to be invoked.
c708a98f
JM
193 * @ops: operations this &thermal_zone_device supports
194 * @tzp: thermal zone parameters
195 * @governor: pointer to the governor for this thermal zone
e33df1d2 196 * @governor_data: private pointer for governor data
c708a98f 197 * @thermal_instances: list of &struct thermal_instance of this thermal zone
b31ef828 198 * @ida: &struct ida to generate unique id for this zone's cooling
c708a98f
JM
199 * devices
200 * @lock: lock to protect thermal_instances list
201 * @node: node in thermal_tz_list (in thermal_core.c)
202 * @poll_queue: delayed work for polling
0e70f466 203 * @notify_event: Last notification event
c708a98f 204 */
203d3d4a
ZR
205struct thermal_zone_device {
206 int id;
207 char type[THERMAL_NAME_LENGTH];
208 struct device device;
4d0fe749 209 struct attribute_group trips_attribute_group;
c56f5c03
D
210 struct thermal_attr *trip_temp_attrs;
211 struct thermal_attr *trip_type_attrs;
27365a6c 212 struct thermal_attr *trip_hyst_attrs;
203d3d4a
ZR
213 void *devdata;
214 int trips;
81ad4276 215 unsigned long trips_disabled; /* bitmap for disabled trips */
b1569e99
MG
216 int passive_delay;
217 int polling_delay;
601f3d42 218 int temperature;
b1569e99 219 int last_temperature;
e6e238c3 220 int emul_temperature;
908b9fb7 221 int passive;
060c034a
SH
222 int prev_low_trip;
223 int prev_high_trip;
03a971a2 224 unsigned int forced_passive;
4511f716 225 atomic_t need_update;
4e5e4705 226 struct thermal_zone_device_ops *ops;
6b775e87 227 struct thermal_zone_params *tzp;
a4a15485 228 struct thermal_governor *governor;
e33df1d2 229 void *governor_data;
2d374139 230 struct list_head thermal_instances;
b31ef828 231 struct ida ida;
c708a98f 232 struct mutex lock;
203d3d4a 233 struct list_head node;
b1569e99 234 struct delayed_work poll_queue;
0e70f466 235 enum thermal_notify_event notify_event;
203d3d4a 236};
4cb18728 237
c708a98f
JM
238/**
239 * struct thermal_governor - structure that holds thermal governor information
240 * @name: name of the governor
e33df1d2
JM
241 * @bind_to_tz: callback called when binding to a thermal zone. If it
242 * returns 0, the governor is bound to the thermal zone,
243 * otherwise it fails.
244 * @unbind_from_tz: callback called when a governor is unbound from a
245 * thermal zone.
c708a98f
JM
246 * @throttle: callback called for every trip point even if temperature is
247 * below the trip point temperature
248 * @governor_list: node in thermal_governor_list (in thermal_core.c)
249 */
a4a15485
D
250struct thermal_governor {
251 char name[THERMAL_NAME_LENGTH];
e33df1d2
JM
252 int (*bind_to_tz)(struct thermal_zone_device *tz);
253 void (*unbind_from_tz)(struct thermal_zone_device *tz);
a4a15485
D
254 int (*throttle)(struct thermal_zone_device *tz, int trip);
255 struct list_head governor_list;
a4a15485
D
256};
257
ef873947
D
258/* Structure that holds binding parameters for a zone */
259struct thermal_bind_params {
260 struct thermal_cooling_device *cdev;
261
262 /*
263 * This is a measure of 'how effectively these devices can
bcdcbbc7
JM
264 * cool 'this' thermal zone. It shall be determined by
265 * platform characterization. This value is relative to the
266 * rest of the weights so a cooling device whose weight is
267 * double that of another cooling device is twice as
268 * effective. See Documentation/thermal/sysfs-api.txt for more
269 * information.
ef873947
D
270 */
271 int weight;
272
273 /*
274 * This is a bit mask that gives the binding relation between this
275 * thermal zone and cdev, for a particular trip point.
276 * See Documentation/thermal/sysfs-api.txt for more information.
277 */
278 int trip_mask;
a8892d83
EV
279
280 /*
281 * This is an array of cooling state limits. Must have exactly
282 * 2 * thermal_zone.number_of_trip_points. It is an array consisting
283 * of tuples <lower-state upper-state> of state limits. Each trip
284 * will be associated with one state limit tuple when binding.
285 * A NULL pointer means <THERMAL_NO_LIMITS THERMAL_NO_LIMITS>
286 * on all trips.
287 */
288 unsigned long *binding_limits;
ef873947
D
289 int (*match) (struct thermal_zone_device *tz,
290 struct thermal_cooling_device *cdev);
291};
292
293/* Structure to define Thermal Zone parameters */
294struct thermal_zone_params {
a4a15485 295 char governor_name[THERMAL_NAME_LENGTH];
ccba4ffd
EV
296
297 /*
298 * a boolean to indicate if the thermal to hwmon sysfs interface
299 * is required. when no_hwmon == false, a hwmon sysfs interface
300 * will be created. when no_hwmon == true, nothing will be done
301 */
302 bool no_hwmon;
303
ef873947
D
304 int num_tbps; /* Number of tbp entries */
305 struct thermal_bind_params *tbp;
6b775e87
JM
306
307 /*
308 * Sustainable power (heat) that this thermal zone can dissipate in
309 * mW
310 */
311 u32 sustainable_power;
312
313 /*
314 * Proportional parameter of the PID controller when
315 * overshooting (i.e., when temperature is below the target)
316 */
317 s32 k_po;
318
319 /*
320 * Proportional parameter of the PID controller when
321 * undershooting
322 */
323 s32 k_pu;
324
325 /* Integral parameter of the PID controller */
326 s32 k_i;
327
328 /* Derivative parameter of the PID controller */
329 s32 k_d;
330
331 /* threshold below which the error is no longer accumulated */
332 s32 integral_cutoff;
9d0be7f4
EV
333
334 /*
335 * @slope: slope of a linear temperature adjustment curve.
336 * Used by thermal zone drivers.
337 */
338 int slope;
339 /*
340 * @offset: offset of a linear temperature adjustment curve.
341 * Used by thermal zone drivers (default 0).
342 */
343 int offset;
ef873947
D
344};
345
4cb18728
D
346struct thermal_genl_event {
347 u32 orig;
348 enum events event;
349};
203d3d4a 350
2251aef6
EV
351/**
352 * struct thermal_zone_of_device_ops - scallbacks for handling DT based zones
353 *
354 * Mandatory:
355 * @get_temp: a pointer to a function that reads the sensor temperature.
356 *
357 * Optional:
358 * @get_trend: a pointer to a function that reads the sensor temperature trend.
826386e7
SH
359 * @set_trips: a pointer to a function that sets a temperature window. When
360 * this window is left the driver must inform the thermal core via
361 * thermal_zone_device_update.
184a4bf6
LM
362 * @set_emul_temp: a pointer to a function that sets sensor emulated
363 * temperature.
5a5e78cd
CW
364 * @set_trip_temp: a pointer to a function that sets the trip temperature on
365 * hardware.
2251aef6
EV
366 */
367struct thermal_zone_of_device_ops {
17e8351a 368 int (*get_temp)(void *, int *);
e78eaf45 369 int (*get_trend)(void *, int, enum thermal_trend *);
826386e7 370 int (*set_trips)(void *, int, int);
17e8351a 371 int (*set_emul_temp)(void *, int);
c3509521 372 int (*set_trip_temp)(void *, int, int);
2251aef6
EV
373};
374
ad9914ac
LM
375/**
376 * struct thermal_trip - representation of a point in temperature domain
377 * @np: pointer to struct device_node that this trip point was created from
378 * @temperature: temperature value in miliCelsius
379 * @hysteresis: relative hysteresis in miliCelsius
380 * @type: trip point type
381 */
382
383struct thermal_trip {
384 struct device_node *np;
1d0fd42f
WN
385 int temperature;
386 int hysteresis;
ad9914ac
LM
387 enum thermal_trip_type type;
388};
389
23064088 390/* Function declarations */
4e5e4705
EV
391#ifdef CONFIG_THERMAL_OF
392struct thermal_zone_device *
2251aef6
EV
393thermal_zone_of_sensor_register(struct device *dev, int id, void *data,
394 const struct thermal_zone_of_device_ops *ops);
4e5e4705
EV
395void thermal_zone_of_sensor_unregister(struct device *dev,
396 struct thermal_zone_device *tz);
e498b498
LD
397struct thermal_zone_device *devm_thermal_zone_of_sensor_register(
398 struct device *dev, int id, void *data,
399 const struct thermal_zone_of_device_ops *ops);
400void devm_thermal_zone_of_sensor_unregister(struct device *dev,
401 struct thermal_zone_device *tz);
4e5e4705
EV
402#else
403static inline struct thermal_zone_device *
2251aef6
EV
404thermal_zone_of_sensor_register(struct device *dev, int id, void *data,
405 const struct thermal_zone_of_device_ops *ops)
4e5e4705 406{
cd33dc9a 407 return ERR_PTR(-ENODEV);
4e5e4705
EV
408}
409
410static inline
411void thermal_zone_of_sensor_unregister(struct device *dev,
412 struct thermal_zone_device *tz)
413{
414}
415
e498b498
LD
416static inline struct thermal_zone_device *devm_thermal_zone_of_sensor_register(
417 struct device *dev, int id, void *data,
418 const struct thermal_zone_of_device_ops *ops)
419{
420 return ERR_PTR(-ENODEV);
421}
422
423static inline
424void devm_thermal_zone_of_sensor_unregister(struct device *dev,
425 struct thermal_zone_device *tz)
426{
427}
428
4e5e4705 429#endif
12ca7188
NM
430
431#if IS_ENABLED(CONFIG_THERMAL)
35b11d2e
JM
432static inline bool cdev_is_power_actor(struct thermal_cooling_device *cdev)
433{
434 return cdev->ops->get_requested_power && cdev->ops->state2power &&
435 cdev->ops->power2state;
436}
437
438int power_actor_get_max_power(struct thermal_cooling_device *,
439 struct thermal_zone_device *tz, u32 *max_power);
c973c3bc
JM
440int power_actor_get_min_power(struct thermal_cooling_device *,
441 struct thermal_zone_device *tz, u32 *min_power);
35b11d2e
JM
442int power_actor_set_power(struct thermal_cooling_device *,
443 struct thermal_instance *, u32);
4b1bf587 444struct thermal_zone_device *thermal_zone_device_register(const char *, int, int,
4e5e4705 445 void *, struct thermal_zone_device_ops *,
6b775e87 446 struct thermal_zone_params *, int, int);
203d3d4a
ZR
447void thermal_zone_device_unregister(struct thermal_zone_device *);
448
449int thermal_zone_bind_cooling_device(struct thermal_zone_device *, int,
9d99842f 450 struct thermal_cooling_device *,
6cd9e9f6
KS
451 unsigned long, unsigned long,
452 unsigned int);
203d3d4a
ZR
453int thermal_zone_unbind_cooling_device(struct thermal_zone_device *, int,
454 struct thermal_cooling_device *);
0e70f466
SP
455void thermal_zone_device_update(struct thermal_zone_device *,
456 enum thermal_notify_event);
060c034a 457void thermal_zone_set_trips(struct thermal_zone_device *);
23064088 458
203d3d4a 459struct thermal_cooling_device *thermal_cooling_device_register(char *, void *,
5b275ce2 460 const struct thermal_cooling_device_ops *);
a116b5d4
EV
461struct thermal_cooling_device *
462thermal_of_cooling_device_register(struct device_node *np, char *, void *,
463 const struct thermal_cooling_device_ops *);
203d3d4a 464void thermal_cooling_device_unregister(struct thermal_cooling_device *);
63c4d919 465struct thermal_zone_device *thermal_zone_get_zone_by_name(const char *name);
17e8351a 466int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp);
4a7069a3
RN
467int thermal_zone_get_slope(struct thermal_zone_device *tz);
468int thermal_zone_get_offset(struct thermal_zone_device *tz);
af06216a 469
9b4298a0
D
470int get_tz_trend(struct thermal_zone_device *, int);
471struct thermal_instance *get_thermal_instance(struct thermal_zone_device *,
472 struct thermal_cooling_device *, int);
dc765482 473void thermal_cdev_update(struct thermal_cooling_device *);
7b73c993 474void thermal_notify_framework(struct thermal_zone_device *, int);
12ca7188 475#else
35b11d2e
JM
476static inline bool cdev_is_power_actor(struct thermal_cooling_device *cdev)
477{ return false; }
478static inline int power_actor_get_max_power(struct thermal_cooling_device *cdev,
479 struct thermal_zone_device *tz, u32 *max_power)
480{ return 0; }
c973c3bc
JM
481static inline int power_actor_get_min_power(struct thermal_cooling_device *cdev,
482 struct thermal_zone_device *tz,
483 u32 *min_power)
484{ return -ENODEV; }
35b11d2e
JM
485static inline int power_actor_set_power(struct thermal_cooling_device *cdev,
486 struct thermal_instance *tz, u32 power)
487{ return 0; }
12ca7188
NM
488static inline struct thermal_zone_device *thermal_zone_device_register(
489 const char *type, int trips, int mask, void *devdata,
490 struct thermal_zone_device_ops *ops,
023b7b07 491 struct thermal_zone_params *tzp,
12ca7188
NM
492 int passive_delay, int polling_delay)
493{ return ERR_PTR(-ENODEV); }
494static inline void thermal_zone_device_unregister(
495 struct thermal_zone_device *tz)
496{ }
497static inline int thermal_zone_bind_cooling_device(
498 struct thermal_zone_device *tz, int trip,
499 struct thermal_cooling_device *cdev,
c86b3de8
AB
500 unsigned long upper, unsigned long lower,
501 unsigned int weight)
12ca7188
NM
502{ return -ENODEV; }
503static inline int thermal_zone_unbind_cooling_device(
504 struct thermal_zone_device *tz, int trip,
505 struct thermal_cooling_device *cdev)
506{ return -ENODEV; }
0e70f466
SP
507static inline void thermal_zone_device_update(struct thermal_zone_device *tz,
508 enum thermal_notify_event event)
12ca7188 509{ }
060c034a
SH
510static inline void thermal_zone_set_trips(struct thermal_zone_device *tz)
511{ }
12ca7188
NM
512static inline struct thermal_cooling_device *
513thermal_cooling_device_register(char *type, void *devdata,
514 const struct thermal_cooling_device_ops *ops)
515{ return ERR_PTR(-ENODEV); }
516static inline struct thermal_cooling_device *
517thermal_of_cooling_device_register(struct device_node *np,
518 char *type, void *devdata, const struct thermal_cooling_device_ops *ops)
519{ return ERR_PTR(-ENODEV); }
520static inline void thermal_cooling_device_unregister(
521 struct thermal_cooling_device *cdev)
522{ }
523static inline struct thermal_zone_device *thermal_zone_get_zone_by_name(
524 const char *name)
525{ return ERR_PTR(-ENODEV); }
526static inline int thermal_zone_get_temp(
17e8351a 527 struct thermal_zone_device *tz, int *temp)
12ca7188 528{ return -ENODEV; }
4a7069a3
RN
529static inline int thermal_zone_get_slope(
530 struct thermal_zone_device *tz)
531{ return -ENODEV; }
532static inline int thermal_zone_get_offset(
533 struct thermal_zone_device *tz)
534{ return -ENODEV; }
12ca7188
NM
535static inline int get_tz_trend(struct thermal_zone_device *tz, int trip)
536{ return -ENODEV; }
537static inline struct thermal_instance *
538get_thermal_instance(struct thermal_zone_device *tz,
539 struct thermal_cooling_device *cdev, int trip)
540{ return ERR_PTR(-ENODEV); }
541static inline void thermal_cdev_update(struct thermal_cooling_device *cdev)
542{ }
543static inline void thermal_notify_framework(struct thermal_zone_device *tz,
544 int trip)
545{ }
546#endif /* CONFIG_THERMAL */
547
548#if defined(CONFIG_NET) && IS_ENABLED(CONFIG_THERMAL)
8ab3e6a0
EV
549extern int thermal_generate_netlink_event(struct thermal_zone_device *tz,
550 enum events event);
af06216a 551#else
f8b58705 552static inline int thermal_generate_netlink_event(struct thermal_zone_device *tz,
8ab3e6a0 553 enum events event)
af06216a
RW
554{
555 return 0;
556}
557#endif
203d3d4a 558
a0dd25b2 559#endif /* __THERMAL_H__ */