blob: 18a3a5ea9a3ca765d1576c8786e3730830708136 [file] [log] [blame]
Zhang Rui203d3d42008-01-17 15:51:08 +08001Generic Thermal Sysfs driver How To
Frans Pop38bb0842009-10-26 08:38:59 +01002===================================
Zhang Rui203d3d42008-01-17 15:51:08 +08003
4Written by Sujith Thomas <sujith.thomas@intel.com>, Zhang Rui <rui.zhang@intel.com>
5
6Updated: 2 January 2008
7
8Copyright (c) 2008 Intel Corporation
9
10
110. Introduction
12
Frans Pop38bb0842009-10-26 08:38:59 +010013The generic thermal sysfs provides a set of interfaces for thermal zone
14devices (sensors) and thermal cooling devices (fan, processor...) to register
15with the thermal management solution and to be a part of it.
Zhang Rui203d3d42008-01-17 15:51:08 +080016
Frans Pop38bb0842009-10-26 08:38:59 +010017This how-to focuses on enabling new thermal zone and cooling devices to
18participate in thermal management.
19This solution is platform independent and any type of thermal zone devices
20and cooling devices should be able to make use of the infrastructure.
Zhang Rui203d3d42008-01-17 15:51:08 +080021
Frans Pop38bb0842009-10-26 08:38:59 +010022The main task of the thermal sysfs driver is to expose thermal zone attributes
23as well as cooling device attributes to the user space.
24An intelligent thermal management application can make decisions based on
25inputs from thermal zone attributes (the current temperature and trip point
26temperature) and throttle appropriate devices.
Zhang Rui203d3d42008-01-17 15:51:08 +080027
28[0-*] denotes any positive number starting from 0
29[1-*] denotes any positive number starting from 1
30
311. thermal sysfs driver interface functions
32
331.1 thermal zone device interface
Zhang Rui514e6d22013-04-24 16:59:22 +0000341.1.1 struct thermal_zone_device *thermal_zone_device_register(char *type,
Durgadoss Rc56f5c02012-07-25 10:10:58 +080035 int trips, int mask, void *devdata,
Zhang Rui514e6d22013-04-24 16:59:22 +000036 struct thermal_zone_device_ops *ops,
37 const struct thermal_zone_params *tzp,
38 int passive_delay, int polling_delay))
Zhang Rui203d3d42008-01-17 15:51:08 +080039
Frans Pop38bb0842009-10-26 08:38:59 +010040 This interface function adds a new thermal zone device (sensor) to
41 /sys/class/thermal folder as thermal_zone[0-*]. It tries to bind all the
42 thermal cooling devices registered at the same time.
Zhang Rui203d3d42008-01-17 15:51:08 +080043
Zhang Rui514e6d22013-04-24 16:59:22 +000044 type: the thermal zone type.
Frans Pop38bb0842009-10-26 08:38:59 +010045 trips: the total number of trip points this thermal zone supports.
Durgadoss Rc56f5c02012-07-25 10:10:58 +080046 mask: Bit string: If 'n'th bit is set, then trip point 'n' is writeable.
Frans Pop38bb0842009-10-26 08:38:59 +010047 devdata: device private data
48 ops: thermal zone device call-backs.
49 .bind: bind the thermal zone device with a thermal cooling device.
50 .unbind: unbind the thermal zone device with a thermal cooling device.
51 .get_temp: get the current temperature of the thermal zone.
Zhang Rui8eaa8d62012-07-25 10:11:00 +080052 .get_mode: get the current mode (enabled/disabled) of the thermal zone.
53 - "enabled" means the kernel thermal management is enabled.
54 - "disabled" will prevent kernel thermal driver action upon trip points
Frans Pop38bb0842009-10-26 08:38:59 +010055 so that user applications can take charge of thermal management.
Zhang Rui8eaa8d62012-07-25 10:11:00 +080056 .set_mode: set the mode (enabled/disabled) of the thermal zone.
Frans Pop38bb0842009-10-26 08:38:59 +010057 .get_trip_type: get the type of certain trip point.
58 .get_trip_temp: get the temperature above which the certain trip point
59 will be fired.
Amit Daniel Kachhape6e238c2013-02-04 00:30:15 +000060 .set_emul_temp: set the emulation temperature which helps in debugging
61 different threshold temperature points.
Zhang Rui514e6d22013-04-24 16:59:22 +000062 tzp: thermal zone platform parameters.
63 passive_delay: number of milliseconds to wait between polls when
64 performing passive cooling.
65 polling_delay: number of milliseconds to wait between polls when checking
66 whether trip points have been crossed (0 for interrupt driven systems).
67
Zhang Rui203d3d42008-01-17 15:51:08 +080068
691.1.2 void thermal_zone_device_unregister(struct thermal_zone_device *tz)
70
Frans Pop38bb0842009-10-26 08:38:59 +010071 This interface function removes the thermal zone device.
72 It deletes the corresponding entry form /sys/class/thermal folder and
73 unbind all the thermal cooling devices it uses.
Zhang Rui203d3d42008-01-17 15:51:08 +080074
Laxman Dewangan3a7fd9c2016-03-09 18:40:05 +0530751.1.3 struct thermal_zone_device *thermal_zone_of_sensor_register(
76 struct device *dev, int sensor_id, void *data,
77 const struct thermal_zone_of_device_ops *ops)
78
79 This interface adds a new sensor to a DT thermal zone.
80 This function will search the list of thermal zones described in
81 device tree and look for the zone that refer to the sensor device
82 pointed by dev->of_node as temperature providers. For the zone
83 pointing to the sensor node, the sensor will be added to the DT
84 thermal zone device.
85
86 The parameters for this interface are:
87 dev: Device node of sensor containing valid node pointer in
88 dev->of_node.
89 sensor_id: a sensor identifier, in case the sensor IP has more
90 than one sensors
91 data: a private pointer (owned by the caller) that will be
92 passed back, when a temperature reading is needed.
93 ops: struct thermal_zone_of_device_ops *.
94
95 get_temp: a pointer to a function that reads the
96 sensor temperature. This is mandatory
97 callback provided by sensor driver.
98 get_trend: a pointer to a function that reads the
99 sensor temperature trend.
100 set_emul_temp: a pointer to a function that sets
101 sensor emulated temperature.
102 The thermal zone temperature is provided by the get_temp() function
103 pointer of thermal_zone_of_device_ops. When called, it will
104 have the private pointer @data back.
105
106 It returns error pointer if fails otherwise valid thermal zone device
107 handle. Caller should check the return handle with IS_ERR() for finding
108 whether success or not.
109
1101.1.4 void thermal_zone_of_sensor_unregister(struct device *dev,
111 struct thermal_zone_device *tzd)
112
113 This interface unregisters a sensor from a DT thermal zone which was
114 successfully added by interface thermal_zone_of_sensor_register().
115 This function removes the sensor callbacks and private data from the
116 thermal zone device registered with thermal_zone_of_sensor_register()
117 interface. It will also silent the zone by remove the .get_temp() and
118 get_trend() thermal zone device callbacks.
119
Zhang Rui203d3d42008-01-17 15:51:08 +08001201.2 thermal cooling device interface
1211.2.1 struct thermal_cooling_device *thermal_cooling_device_register(char *name,
Frans Pop38bb0842009-10-26 08:38:59 +0100122 void *devdata, struct thermal_cooling_device_ops *)
Zhang Rui203d3d42008-01-17 15:51:08 +0800123
Frans Pop38bb0842009-10-26 08:38:59 +0100124 This interface function adds a new thermal cooling device (fan/processor/...)
125 to /sys/class/thermal/ folder as cooling_device[0-*]. It tries to bind itself
126 to all the thermal zone devices register at the same time.
127 name: the cooling device name.
128 devdata: device private data.
129 ops: thermal cooling devices call-backs.
130 .get_max_state: get the Maximum throttle state of the cooling device.
131 .get_cur_state: get the Current throttle state of the cooling device.
132 .set_cur_state: set the Current throttle state of the cooling device.
Zhang Rui203d3d42008-01-17 15:51:08 +0800133
1341.2.2 void thermal_cooling_device_unregister(struct thermal_cooling_device *cdev)
135
Frans Pop38bb0842009-10-26 08:38:59 +0100136 This interface function remove the thermal cooling device.
137 It deletes the corresponding entry form /sys/class/thermal folder and
138 unbind itself from all the thermal zone devices using it.
Zhang Rui203d3d42008-01-17 15:51:08 +0800139
1401.3 interface for binding a thermal zone device with a thermal cooling device
1411.3.1 int thermal_zone_bind_cooling_device(struct thermal_zone_device *tz,
Zhang Rui9d998422012-06-26 16:35:57 +0800142 int trip, struct thermal_cooling_device *cdev,
Kapileshwar Singh6cd9e9f2015-02-18 16:04:21 +0000143 unsigned long upper, unsigned long lower, unsigned int weight);
Zhang Rui203d3d42008-01-17 15:51:08 +0800144
Frans Pop38bb0842009-10-26 08:38:59 +0100145 This interface function bind a thermal cooling device to the certain trip
146 point of a thermal zone device.
147 This function is usually called in the thermal zone device .bind callback.
148 tz: the thermal zone device
149 cdev: thermal cooling device
150 trip: indicates which trip point the cooling devices is associated with
151 in this thermal zone.
Zhang Rui9d998422012-06-26 16:35:57 +0800152 upper:the Maximum cooling state for this trip point.
153 THERMAL_NO_LIMIT means no upper limit,
154 and the cooling device can be in max_state.
155 lower:the Minimum cooling state can be used for this trip point.
156 THERMAL_NO_LIMIT means no lower limit,
157 and the cooling device can be in cooling state 0.
Kapileshwar Singh6cd9e9f2015-02-18 16:04:21 +0000158 weight: the influence of this cooling device in this thermal
159 zone. See 1.4.1 below for more information.
Zhang Rui203d3d42008-01-17 15:51:08 +0800160
1611.3.2 int thermal_zone_unbind_cooling_device(struct thermal_zone_device *tz,
Frans Pop38bb0842009-10-26 08:38:59 +0100162 int trip, struct thermal_cooling_device *cdev);
Zhang Rui203d3d42008-01-17 15:51:08 +0800163
Frans Pop38bb0842009-10-26 08:38:59 +0100164 This interface function unbind a thermal cooling device from the certain
165 trip point of a thermal zone device. This function is usually called in
166 the thermal zone device .unbind callback.
167 tz: the thermal zone device
168 cdev: thermal cooling device
169 trip: indicates which trip point the cooling devices is associated with
170 in this thermal zone.
Zhang Rui203d3d42008-01-17 15:51:08 +0800171
Durgadoss R6ea083b2012-09-18 11:05:06 +05301721.4 Thermal Zone Parameters
1731.4.1 struct thermal_bind_params
174 This structure defines the following parameters that are used to bind
175 a zone with a cooling device for a particular trip point.
176 .cdev: The cooling device pointer
Javi Merinobcdcbbc2015-02-18 16:04:25 +0000177 .weight: The 'influence' of a particular cooling device on this
178 zone. This is relative to the rest of the cooling
179 devices. For example, if all cooling devices have a
180 weight of 1, then they all contribute the same. You can
181 use percentages if you want, but it's not mandatory. A
182 weight of 0 means that this cooling device doesn't
183 contribute to the cooling of this zone unless all cooling
184 devices have a weight of 0. If all weights are 0, then
185 they all contribute the same.
Durgadoss R6ea083b2012-09-18 11:05:06 +0530186 .trip_mask:This is a bit mask that gives the binding relation between
187 this thermal zone and cdev, for a particular trip point.
188 If nth bit is set, then the cdev and thermal zone are bound
189 for trip point n.
Eduardo Valentina8892d832013-07-16 15:26:28 -0400190 .limits: This is an array of cooling state limits. Must have exactly
191 2 * thermal_zone.number_of_trip_points. It is an array consisting
192 of tuples <lower-state upper-state> of state limits. Each trip
193 will be associated with one state limit tuple when binding.
194 A NULL pointer means <THERMAL_NO_LIMITS THERMAL_NO_LIMITS>
195 on all trips. These limits are used when binding a cdev to a
196 trip point.
Durgadoss R6ea083b2012-09-18 11:05:06 +0530197 .match: This call back returns success(0) if the 'tz and cdev' need to
198 be bound, as per platform data.
1991.4.2 struct thermal_zone_params
200 This structure defines the platform level parameters for a thermal zone.
201 This data, for each thermal zone should come from the platform layer.
202 This is an optional feature where some platforms can choose not to
203 provide this data.
204 .governor_name: Name of the thermal governor used for this zone
Eduardo Valentinccba4ff2013-08-15 11:34:17 -0400205 .no_hwmon: a boolean to indicate if the thermal to hwmon sysfs interface
206 is required. when no_hwmon == false, a hwmon sysfs interface
207 will be created. when no_hwmon == true, nothing will be done.
208 In case the thermal_zone_params is NULL, the hwmon interface
209 will be created (for backward compatibility).
Durgadoss R6ea083b2012-09-18 11:05:06 +0530210 .num_tbps: Number of thermal_bind_params entries for this zone
211 .tbp: thermal_bind_params entries
212
Zhang Rui203d3d42008-01-17 15:51:08 +08002132. sysfs attributes structure
214
215RO read only value
216RW read/write value
217
Zhang Ruie9ae7102008-04-22 08:50:09 +0800218Thermal sysfs attributes will be represented under /sys/class/thermal.
219Hwmon sysfs I/F extension is also available under /sys/class/hwmon
220if hwmon is compiled in or built as a module.
Zhang Rui203d3d42008-01-17 15:51:08 +0800221
222Thermal zone device sys I/F, created once it's registered:
Zhang Ruie9ae7102008-04-22 08:50:09 +0800223/sys/class/thermal/thermal_zone[0-*]:
Frans Pop38bb0842009-10-26 08:38:59 +0100224 |---type: Type of the thermal zone
225 |---temp: Current temperature
226 |---mode: Working mode of the thermal zone
Durgadoss R6ea083b2012-09-18 11:05:06 +0530227 |---policy: Thermal governor used for this zone
Ni Wade25a0a5c2015-07-14 15:40:56 +0800228 |---available_policies: Available thermal governors for this zone
Frans Pop38bb0842009-10-26 08:38:59 +0100229 |---trip_point_[0-*]_temp: Trip point temperature
230 |---trip_point_[0-*]_type: Trip point type
Durgadoss R27365a62012-07-25 10:10:59 +0800231 |---trip_point_[0-*]_hyst: Hysteresis value for this trip point
Amit Daniel Kachhape6e238c2013-02-04 00:30:15 +0000232 |---emul_temp: Emulated temperature set node
Javi Merino9f382712015-03-26 15:53:02 +0000233 |---sustainable_power: Sustainable dissipatable power
234 |---k_po: Proportional term during temperature overshoot
235 |---k_pu: Proportional term during temperature undershoot
236 |---k_i: PID's integral term in the power allocator gov
237 |---k_d: PID's derivative term in the power allocator
238 |---integral_cutoff: Offset above which errors are accumulated
Eduardo Valentin9d0be7f2015-05-11 19:34:23 -0700239 |---slope: Slope constant applied as linear extrapolation
240 |---offset: Offset constant applied as linear extrapolation
Zhang Rui203d3d42008-01-17 15:51:08 +0800241
242Thermal cooling device sys I/F, created once it's registered:
Zhang Ruie9ae7102008-04-22 08:50:09 +0800243/sys/class/thermal/cooling_device[0-*]:
Frans Pop38bb0842009-10-26 08:38:59 +0100244 |---type: Type of the cooling device(processor/fan/...)
245 |---max_state: Maximum cooling state of the cooling device
246 |---cur_state: Current cooling state of the cooling device
Zhang Rui203d3d42008-01-17 15:51:08 +0800247
248
Frans Pop38bb0842009-10-26 08:38:59 +0100249Then next two dynamic attributes are created/removed in pairs. They represent
250the relationship between a thermal zone and its associated cooling device.
251They are created/removed for each successful execution of
252thermal_zone_bind_cooling_device/thermal_zone_unbind_cooling_device.
Zhang Rui203d3d42008-01-17 15:51:08 +0800253
Frans Pop38bb0842009-10-26 08:38:59 +0100254/sys/class/thermal/thermal_zone[0-*]:
255 |---cdev[0-*]: [0-*]th cooling device in current thermal zone
256 |---cdev[0-*]_trip_point: Trip point that cdev[0-*] is associated with
Javi Merinodb916512015-02-18 16:04:24 +0000257 |---cdev[0-*]_weight: Influence of the cooling device in
258 this thermal zone
Zhang Rui203d3d42008-01-17 15:51:08 +0800259
Zhang Ruie9ae7102008-04-22 08:50:09 +0800260Besides the thermal zone device sysfs I/F and cooling device sysfs I/F,
Frans Pop38bb0842009-10-26 08:38:59 +0100261the generic thermal driver also creates a hwmon sysfs I/F for each _type_
262of thermal zone device. E.g. the generic thermal driver registers one hwmon
263class device and build the associated hwmon sysfs I/F for all the registered
264ACPI thermal zones.
265
Zhang Ruie9ae7102008-04-22 08:50:09 +0800266/sys/class/hwmon/hwmon[0-*]:
Frans Pop38bb0842009-10-26 08:38:59 +0100267 |---name: The type of the thermal zone devices
268 |---temp[1-*]_input: The current temperature of thermal zone [1-*]
269 |---temp[1-*]_critical: The critical trip point of thermal zone [1-*]
270
Zhang Ruie9ae7102008-04-22 08:50:09 +0800271Please read Documentation/hwmon/sysfs-interface for additional information.
Zhang Rui203d3d42008-01-17 15:51:08 +0800272
273***************************
274* Thermal zone attributes *
275***************************
276
Frans Pop38bb0842009-10-26 08:38:59 +0100277type
278 Strings which represent the thermal zone type.
279 This is given by thermal zone driver as part of registration.
280 E.g: "acpitz" indicates it's an ACPI thermal device.
281 In order to keep it consistent with hwmon sys attribute; this should
282 be a short, lowercase string, not containing spaces nor dashes.
283 RO, Required
Zhang Rui203d3d42008-01-17 15:51:08 +0800284
Frans Pop38bb0842009-10-26 08:38:59 +0100285temp
286 Current temperature as reported by thermal zone (sensor).
287 Unit: millidegree Celsius
288 RO, Required
Zhang Rui203d3d42008-01-17 15:51:08 +0800289
Frans Pop38bb0842009-10-26 08:38:59 +0100290mode
Zhang Rui8eaa8d62012-07-25 10:11:00 +0800291 One of the predefined values in [enabled, disabled].
Frans Pop38bb0842009-10-26 08:38:59 +0100292 This file gives information about the algorithm that is currently
293 managing the thermal zone. It can be either default kernel based
294 algorithm or user space application.
Zhang Rui8eaa8d62012-07-25 10:11:00 +0800295 enabled = enable Kernel Thermal management.
296 disabled = Preventing kernel thermal zone driver actions upon
297 trip points so that user application can take full
298 charge of the thermal management.
Frans Pop38bb0842009-10-26 08:38:59 +0100299 RW, Optional
Zhang Rui203d3d42008-01-17 15:51:08 +0800300
Durgadoss R6ea083b2012-09-18 11:05:06 +0530301policy
302 One of the various thermal governors used for a particular zone.
303 RW, Required
304
Ni Wade25a0a5c2015-07-14 15:40:56 +0800305available_policies
306 Available thermal governors which can be used for a particular zone.
307 RO, Required
308
Frans Pop38bb0842009-10-26 08:38:59 +0100309trip_point_[0-*]_temp
310 The temperature above which trip point will be fired.
311 Unit: millidegree Celsius
312 RO, Optional
Zhang Rui203d3d42008-01-17 15:51:08 +0800313
Frans Pop38bb0842009-10-26 08:38:59 +0100314trip_point_[0-*]_type
315 Strings which indicate the type of the trip point.
316 E.g. it can be one of critical, hot, passive, active[0-*] for ACPI
317 thermal zone.
318 RO, Optional
Zhang Rui203d3d42008-01-17 15:51:08 +0800319
Durgadoss R27365a62012-07-25 10:10:59 +0800320trip_point_[0-*]_hyst
321 The hysteresis value for a trip point, represented as an integer
322 Unit: Celsius
323 RW, Optional
324
Frans Pop38bb0842009-10-26 08:38:59 +0100325cdev[0-*]
326 Sysfs link to the thermal cooling device node where the sys I/F
327 for cooling device throttling control represents.
328 RO, Optional
Zhang Rui203d3d42008-01-17 15:51:08 +0800329
Frans Pop38bb0842009-10-26 08:38:59 +0100330cdev[0-*]_trip_point
331 The trip point with which cdev[0-*] is associated in this thermal
332 zone; -1 means the cooling device is not associated with any trip
333 point.
334 RO, Optional
Zhang Rui203d3d42008-01-17 15:51:08 +0800335
Javi Merinodb916512015-02-18 16:04:24 +0000336cdev[0-*]_weight
337 The influence of cdev[0-*] in this thermal zone. This value
338 is relative to the rest of cooling devices in the thermal
339 zone. For example, if a cooling device has a weight double
340 than that of other, it's twice as effective in cooling the
341 thermal zone.
342 RW, Optional
343
Frans Pop29226ed2009-10-26 08:39:00 +0100344passive
345 Attribute is only present for zones in which the passive cooling
346 policy is not supported by native thermal driver. Default is zero
347 and can be set to a temperature (in millidegrees) to enable a
348 passive trip point for the zone. Activation is done by polling with
349 an interval of 1 second.
350 Unit: millidegrees Celsius
Frans Pop3d8e3ad2009-10-26 08:39:02 +0100351 Valid values: 0 (disabled) or greater than 1000
Frans Pop29226ed2009-10-26 08:39:00 +0100352 RW, Optional
353
Amit Daniel Kachhape6e238c2013-02-04 00:30:15 +0000354emul_temp
355 Interface to set the emulated temperature method in thermal zone
356 (sensor). After setting this temperature, the thermal zone may pass
357 this temperature to platform emulation function if registered or
358 cache it locally. This is useful in debugging different temperature
359 threshold and its associated cooling action. This is write only node
360 and writing 0 on this node should disable emulation.
361 Unit: millidegree Celsius
362 WO, Optional
363
Eduardo Valentin88372952013-03-26 21:38:34 +0000364 WARNING: Be careful while enabling this option on production systems,
365 because userland can easily disable the thermal policy by simply
366 flooding this sysfs node with low temperature values.
367
Javi Merino9f382712015-03-26 15:53:02 +0000368sustainable_power
369 An estimate of the sustained power that can be dissipated by
370 the thermal zone. Used by the power allocator governor. For
371 more information see Documentation/thermal/power_allocator.txt
372 Unit: milliwatts
373 RW, Optional
374
375k_po
376 The proportional term of the power allocator governor's PID
377 controller during temperature overshoot. Temperature overshoot
378 is when the current temperature is above the "desired
379 temperature" trip point. For more information see
380 Documentation/thermal/power_allocator.txt
381 RW, Optional
382
383k_pu
384 The proportional term of the power allocator governor's PID
385 controller during temperature undershoot. Temperature undershoot
386 is when the current temperature is below the "desired
387 temperature" trip point. For more information see
388 Documentation/thermal/power_allocator.txt
389 RW, Optional
390
391k_i
392 The integral term of the power allocator governor's PID
393 controller. This term allows the PID controller to compensate
394 for long term drift. For more information see
395 Documentation/thermal/power_allocator.txt
396 RW, Optional
397
398k_d
399 The derivative term of the power allocator governor's PID
400 controller. For more information see
401 Documentation/thermal/power_allocator.txt
402 RW, Optional
403
404integral_cutoff
405 Temperature offset from the desired temperature trip point
406 above which the integral term of the power allocator
407 governor's PID controller starts accumulating errors. For
408 example, if integral_cutoff is 0, then the integral term only
409 accumulates error when temperature is above the desired
410 temperature trip point. For more information see
411 Documentation/thermal/power_allocator.txt
Leo Yanec3fc582016-01-13 15:21:05 +0800412 Unit: millidegree Celsius
Javi Merino9f382712015-03-26 15:53:02 +0000413 RW, Optional
414
Eduardo Valentin9d0be7f2015-05-11 19:34:23 -0700415slope
416 The slope constant used in a linear extrapolation model
417 to determine a hotspot temperature based off the sensor's
418 raw readings. It is up to the device driver to determine
419 the usage of these values.
420 RW, Optional
421
422offset
423 The offset constant used in a linear extrapolation model
424 to determine a hotspot temperature based off the sensor's
425 raw readings. It is up to the device driver to determine
426 the usage of these values.
427 RW, Optional
428
Frans Pop38bb0842009-10-26 08:38:59 +0100429*****************************
430* Cooling device attributes *
431*****************************
Zhang Rui203d3d42008-01-17 15:51:08 +0800432
Frans Pop38bb0842009-10-26 08:38:59 +0100433type
434 String which represents the type of device, e.g:
435 - for generic ACPI: should be "Fan", "Processor" or "LCD"
436 - for memory controller device on intel_menlow platform:
437 should be "Memory controller".
438 RO, Required
Zhang Rui203d3d42008-01-17 15:51:08 +0800439
Frans Pop38bb0842009-10-26 08:38:59 +0100440max_state
441 The maximum permissible cooling state of this cooling device.
442 RO, Required
Zhang Rui203d3d42008-01-17 15:51:08 +0800443
Frans Pop38bb0842009-10-26 08:38:59 +0100444cur_state
445 The current cooling state of this cooling device.
446 The value can any integer numbers between 0 and max_state:
447 - cur_state == 0 means no cooling
448 - cur_state == max_state means the maximum cooling.
449 RW, Required
Zhang Rui203d3d42008-01-17 15:51:08 +0800450
4513. A simple implementation
452
Frans Pop38bb0842009-10-26 08:38:59 +0100453ACPI thermal zone may support multiple trip points like critical, hot,
454passive, active. If an ACPI thermal zone supports critical, passive,
455active[0] and active[1] at the same time, it may register itself as a
456thermal_zone_device (thermal_zone1) with 4 trip points in all.
457It has one processor and one fan, which are both registered as
Javi Merinodb916512015-02-18 16:04:24 +0000458thermal_cooling_device. Both are considered to have the same
459effectiveness in cooling the thermal zone.
Frans Pop38bb0842009-10-26 08:38:59 +0100460
461If the processor is listed in _PSL method, and the fan is listed in _AL0
462method, the sys I/F structure will be built like this:
Zhang Rui203d3d42008-01-17 15:51:08 +0800463
464/sys/class/thermal:
465
466|thermal_zone1:
Frans Pop38bb0842009-10-26 08:38:59 +0100467 |---type: acpitz
468 |---temp: 37000
Zhang Rui8eaa8d62012-07-25 10:11:00 +0800469 |---mode: enabled
Durgadoss R6ea083b2012-09-18 11:05:06 +0530470 |---policy: step_wise
Ni Wade25a0a5c2015-07-14 15:40:56 +0800471 |---available_policies: step_wise fair_share
Frans Pop38bb0842009-10-26 08:38:59 +0100472 |---trip_point_0_temp: 100000
473 |---trip_point_0_type: critical
474 |---trip_point_1_temp: 80000
475 |---trip_point_1_type: passive
476 |---trip_point_2_temp: 70000
477 |---trip_point_2_type: active0
478 |---trip_point_3_temp: 60000
479 |---trip_point_3_type: active1
480 |---cdev0: --->/sys/class/thermal/cooling_device0
481 |---cdev0_trip_point: 1 /* cdev0 can be used for passive */
Javi Merinodb916512015-02-18 16:04:24 +0000482 |---cdev0_weight: 1024
Frans Pop38bb0842009-10-26 08:38:59 +0100483 |---cdev1: --->/sys/class/thermal/cooling_device3
484 |---cdev1_trip_point: 2 /* cdev1 can be used for active[0]*/
Javi Merinodb916512015-02-18 16:04:24 +0000485 |---cdev1_weight: 1024
Zhang Rui203d3d42008-01-17 15:51:08 +0800486
487|cooling_device0:
Frans Pop38bb0842009-10-26 08:38:59 +0100488 |---type: Processor
489 |---max_state: 8
490 |---cur_state: 0
Zhang Rui203d3d42008-01-17 15:51:08 +0800491
492|cooling_device3:
Frans Pop38bb0842009-10-26 08:38:59 +0100493 |---type: Fan
494 |---max_state: 2
495 |---cur_state: 0
Zhang Ruie9ae7102008-04-22 08:50:09 +0800496
497/sys/class/hwmon:
498
499|hwmon0:
Frans Pop38bb0842009-10-26 08:38:59 +0100500 |---name: acpitz
501 |---temp1_input: 37000
502 |---temp1_crit: 100000
R.Durgadoss4cb18722010-10-27 03:33:29 +0530503
5044. Event Notification
505
506The framework includes a simple notification mechanism, in the form of a
507netlink event. Netlink socket initialization is done during the _init_
508of the framework. Drivers which intend to use the notification mechanism
Jean Delvare2d58d7e2011-11-04 10:31:04 +0100509just need to call thermal_generate_netlink_event() with two arguments viz
Eduardo Valentin8ab3e6a2013-01-02 15:29:39 +0000510(originator, event). The originator is a pointer to struct thermal_zone_device
511from where the event has been originated. An integer which represents the
512thermal zone device will be used in the message to identify the zone. The
R.Durgadoss4cb18722010-10-27 03:33:29 +0530513event will be one of:{THERMAL_AUX0, THERMAL_AUX1, THERMAL_CRITICAL,
514THERMAL_DEV_FAULT}. Notification can be sent when the current temperature
515crosses any of the configured thresholds.
Durgadoss R6ea083b2012-09-18 11:05:06 +0530516
5175. Export Symbol APIs:
518
5195.1: get_tz_trend:
520This function returns the trend of a thermal zone, i.e the rate of change
521of temperature of the thermal zone. Ideally, the thermal sensor drivers
522are supposed to implement the callback. If they don't, the thermal
523framework calculated the trend by comparing the previous and the current
524temperature values.
525
5265.2:get_thermal_instance:
527This function returns the thermal_instance corresponding to a given
528{thermal_zone, cooling_device, trip_point} combination. Returns NULL
529if such an instance does not exist.
530
Eduardo Valentin7b73c992013-04-23 21:48:14 +00005315.3:thermal_notify_framework:
Durgadoss R6ea083b2012-09-18 11:05:06 +0530532This function handles the trip events from sensor drivers. It starts
533throttling the cooling devices according to the policy configured.
534For CRITICAL and HOT trip points, this notifies the respective drivers,
535and does actual throttling for other trip points i.e ACTIVE and PASSIVE.
536The throttling policy is based on the configured platform data; if no
537platform data is provided, this uses the step_wise throttling policy.
538
5395.4:thermal_cdev_update:
540This function serves as an arbitrator to set the state of a cooling
541device. It sets the cooling device to the deepest cooling state if
542possible.