sysfs-api.txt 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. Generic Thermal Sysfs driver How To
  2. ===================================
  3. Written by Sujith Thomas <sujith.thomas@intel.com>, Zhang Rui <rui.zhang@intel.com>
  4. Updated: 2 January 2008
  5. Copyright (c) 2008 Intel Corporation
  6. 0. Introduction
  7. The generic thermal sysfs provides a set of interfaces for thermal zone
  8. devices (sensors) and thermal cooling devices (fan, processor...) to register
  9. with the thermal management solution and to be a part of it.
  10. This how-to focuses on enabling new thermal zone and cooling devices to
  11. participate in thermal management.
  12. This solution is platform independent and any type of thermal zone devices
  13. and cooling devices should be able to make use of the infrastructure.
  14. The main task of the thermal sysfs driver is to expose thermal zone attributes
  15. as well as cooling device attributes to the user space.
  16. An intelligent thermal management application can make decisions based on
  17. inputs from thermal zone attributes (the current temperature and trip point
  18. temperature) and throttle appropriate devices.
  19. [0-*] denotes any positive number starting from 0
  20. [1-*] denotes any positive number starting from 1
  21. 1. thermal sysfs driver interface functions
  22. 1.1 thermal zone device interface
  23. 1.1.1 struct thermal_zone_device *thermal_zone_device_register(char *type,
  24. int trips, int mask, void *devdata,
  25. struct thermal_zone_device_ops *ops,
  26. const struct thermal_zone_params *tzp,
  27. int passive_delay, int polling_delay))
  28. This interface function adds a new thermal zone device (sensor) to
  29. /sys/class/thermal folder as thermal_zone[0-*]. It tries to bind all the
  30. thermal cooling devices registered at the same time.
  31. type: the thermal zone type.
  32. trips: the total number of trip points this thermal zone supports.
  33. mask: Bit string: If 'n'th bit is set, then trip point 'n' is writeable.
  34. devdata: device private data
  35. ops: thermal zone device call-backs.
  36. .bind: bind the thermal zone device with a thermal cooling device.
  37. .unbind: unbind the thermal zone device with a thermal cooling device.
  38. .get_temp: get the current temperature of the thermal zone.
  39. .get_mode: get the current mode (enabled/disabled) of the thermal zone.
  40. - "enabled" means the kernel thermal management is enabled.
  41. - "disabled" will prevent kernel thermal driver action upon trip points
  42. so that user applications can take charge of thermal management.
  43. .set_mode: set the mode (enabled/disabled) of the thermal zone.
  44. .get_trip_type: get the type of certain trip point.
  45. .get_trip_temp: get the temperature above which the certain trip point
  46. will be fired.
  47. .set_emul_temp: set the emulation temperature which helps in debugging
  48. different threshold temperature points.
  49. tzp: thermal zone platform parameters.
  50. passive_delay: number of milliseconds to wait between polls when
  51. performing passive cooling.
  52. polling_delay: number of milliseconds to wait between polls when checking
  53. whether trip points have been crossed (0 for interrupt driven systems).
  54. 1.1.2 void thermal_zone_device_unregister(struct thermal_zone_device *tz)
  55. This interface function removes the thermal zone device.
  56. It deletes the corresponding entry form /sys/class/thermal folder and
  57. unbind all the thermal cooling devices it uses.
  58. 1.2 thermal cooling device interface
  59. 1.2.1 struct thermal_cooling_device *thermal_cooling_device_register(char *name,
  60. void *devdata, struct thermal_cooling_device_ops *)
  61. This interface function adds a new thermal cooling device (fan/processor/...)
  62. to /sys/class/thermal/ folder as cooling_device[0-*]. It tries to bind itself
  63. to all the thermal zone devices register at the same time.
  64. name: the cooling device name.
  65. devdata: device private data.
  66. ops: thermal cooling devices call-backs.
  67. .get_max_state: get the Maximum throttle state of the cooling device.
  68. .get_cur_state: get the Current throttle state of the cooling device.
  69. .set_cur_state: set the Current throttle state of the cooling device.
  70. 1.2.2 void thermal_cooling_device_unregister(struct thermal_cooling_device *cdev)
  71. This interface function remove the thermal cooling device.
  72. It deletes the corresponding entry form /sys/class/thermal folder and
  73. unbind itself from all the thermal zone devices using it.
  74. 1.3 interface for binding a thermal zone device with a thermal cooling device
  75. 1.3.1 int thermal_zone_bind_cooling_device(struct thermal_zone_device *tz,
  76. int trip, struct thermal_cooling_device *cdev,
  77. unsigned long upper, unsigned long lower, unsigned int weight);
  78. This interface function bind a thermal cooling device to the certain trip
  79. point of a thermal zone device.
  80. This function is usually called in the thermal zone device .bind callback.
  81. tz: the thermal zone device
  82. cdev: thermal cooling device
  83. trip: indicates which trip point the cooling devices is associated with
  84. in this thermal zone.
  85. upper:the Maximum cooling state for this trip point.
  86. THERMAL_NO_LIMIT means no upper limit,
  87. and the cooling device can be in max_state.
  88. lower:the Minimum cooling state can be used for this trip point.
  89. THERMAL_NO_LIMIT means no lower limit,
  90. and the cooling device can be in cooling state 0.
  91. weight: the influence of this cooling device in this thermal
  92. zone. See 1.4.1 below for more information.
  93. 1.3.2 int thermal_zone_unbind_cooling_device(struct thermal_zone_device *tz,
  94. int trip, struct thermal_cooling_device *cdev);
  95. This interface function unbind a thermal cooling device from the certain
  96. trip point of a thermal zone device. This function is usually called in
  97. the thermal zone device .unbind callback.
  98. tz: the thermal zone device
  99. cdev: thermal cooling device
  100. trip: indicates which trip point the cooling devices is associated with
  101. in this thermal zone.
  102. 1.4 Thermal Zone Parameters
  103. 1.4.1 struct thermal_bind_params
  104. This structure defines the following parameters that are used to bind
  105. a zone with a cooling device for a particular trip point.
  106. .cdev: The cooling device pointer
  107. .weight: The 'influence' of a particular cooling device on this
  108. zone. This is relative to the rest of the cooling
  109. devices. For example, if all cooling devices have a
  110. weight of 1, then they all contribute the same. You can
  111. use percentages if you want, but it's not mandatory. A
  112. weight of 0 means that this cooling device doesn't
  113. contribute to the cooling of this zone unless all cooling
  114. devices have a weight of 0. If all weights are 0, then
  115. they all contribute the same.
  116. .trip_mask:This is a bit mask that gives the binding relation between
  117. this thermal zone and cdev, for a particular trip point.
  118. If nth bit is set, then the cdev and thermal zone are bound
  119. for trip point n.
  120. .limits: This is an array of cooling state limits. Must have exactly
  121. 2 * thermal_zone.number_of_trip_points. It is an array consisting
  122. of tuples <lower-state upper-state> of state limits. Each trip
  123. will be associated with one state limit tuple when binding.
  124. A NULL pointer means <THERMAL_NO_LIMITS THERMAL_NO_LIMITS>
  125. on all trips. These limits are used when binding a cdev to a
  126. trip point.
  127. .match: This call back returns success(0) if the 'tz and cdev' need to
  128. be bound, as per platform data.
  129. 1.4.2 struct thermal_zone_params
  130. This structure defines the platform level parameters for a thermal zone.
  131. This data, for each thermal zone should come from the platform layer.
  132. This is an optional feature where some platforms can choose not to
  133. provide this data.
  134. .governor_name: Name of the thermal governor used for this zone
  135. .no_hwmon: a boolean to indicate if the thermal to hwmon sysfs interface
  136. is required. when no_hwmon == false, a hwmon sysfs interface
  137. will be created. when no_hwmon == true, nothing will be done.
  138. In case the thermal_zone_params is NULL, the hwmon interface
  139. will be created (for backward compatibility).
  140. .num_tbps: Number of thermal_bind_params entries for this zone
  141. .tbp: thermal_bind_params entries
  142. 2. sysfs attributes structure
  143. RO read only value
  144. RW read/write value
  145. Thermal sysfs attributes will be represented under /sys/class/thermal.
  146. Hwmon sysfs I/F extension is also available under /sys/class/hwmon
  147. if hwmon is compiled in or built as a module.
  148. Thermal zone device sys I/F, created once it's registered:
  149. /sys/class/thermal/thermal_zone[0-*]:
  150. |---type: Type of the thermal zone
  151. |---temp: Current temperature
  152. |---mode: Working mode of the thermal zone
  153. |---policy: Thermal governor used for this zone
  154. |---available_policies: Available thermal governors for this zone
  155. |---trip_point_[0-*]_temp: Trip point temperature
  156. |---trip_point_[0-*]_type: Trip point type
  157. |---trip_point_[0-*]_hyst: Hysteresis value for this trip point
  158. |---emul_temp: Emulated temperature set node
  159. |---sustainable_power: Sustainable dissipatable power
  160. |---k_po: Proportional term during temperature overshoot
  161. |---k_pu: Proportional term during temperature undershoot
  162. |---k_i: PID's integral term in the power allocator gov
  163. |---k_d: PID's derivative term in the power allocator
  164. |---integral_cutoff: Offset above which errors are accumulated
  165. |---slope: Slope constant applied as linear extrapolation
  166. |---offset: Offset constant applied as linear extrapolation
  167. Thermal cooling device sys I/F, created once it's registered:
  168. /sys/class/thermal/cooling_device[0-*]:
  169. |---type: Type of the cooling device(processor/fan/...)
  170. |---max_state: Maximum cooling state of the cooling device
  171. |---cur_state: Current cooling state of the cooling device
  172. Then next two dynamic attributes are created/removed in pairs. They represent
  173. the relationship between a thermal zone and its associated cooling device.
  174. They are created/removed for each successful execution of
  175. thermal_zone_bind_cooling_device/thermal_zone_unbind_cooling_device.
  176. /sys/class/thermal/thermal_zone[0-*]:
  177. |---cdev[0-*]: [0-*]th cooling device in current thermal zone
  178. |---cdev[0-*]_trip_point: Trip point that cdev[0-*] is associated with
  179. |---cdev[0-*]_weight: Influence of the cooling device in
  180. this thermal zone
  181. Besides the thermal zone device sysfs I/F and cooling device sysfs I/F,
  182. the generic thermal driver also creates a hwmon sysfs I/F for each _type_
  183. of thermal zone device. E.g. the generic thermal driver registers one hwmon
  184. class device and build the associated hwmon sysfs I/F for all the registered
  185. ACPI thermal zones.
  186. /sys/class/hwmon/hwmon[0-*]:
  187. |---name: The type of the thermal zone devices
  188. |---temp[1-*]_input: The current temperature of thermal zone [1-*]
  189. |---temp[1-*]_critical: The critical trip point of thermal zone [1-*]
  190. Please read Documentation/hwmon/sysfs-interface for additional information.
  191. ***************************
  192. * Thermal zone attributes *
  193. ***************************
  194. type
  195. Strings which represent the thermal zone type.
  196. This is given by thermal zone driver as part of registration.
  197. E.g: "acpitz" indicates it's an ACPI thermal device.
  198. In order to keep it consistent with hwmon sys attribute; this should
  199. be a short, lowercase string, not containing spaces nor dashes.
  200. RO, Required
  201. temp
  202. Current temperature as reported by thermal zone (sensor).
  203. Unit: millidegree Celsius
  204. RO, Required
  205. mode
  206. One of the predefined values in [enabled, disabled].
  207. This file gives information about the algorithm that is currently
  208. managing the thermal zone. It can be either default kernel based
  209. algorithm or user space application.
  210. enabled = enable Kernel Thermal management.
  211. disabled = Preventing kernel thermal zone driver actions upon
  212. trip points so that user application can take full
  213. charge of the thermal management.
  214. RW, Optional
  215. policy
  216. One of the various thermal governors used for a particular zone.
  217. RW, Required
  218. available_policies
  219. Available thermal governors which can be used for a particular zone.
  220. RO, Required
  221. trip_point_[0-*]_temp
  222. The temperature above which trip point will be fired.
  223. Unit: millidegree Celsius
  224. RO, Optional
  225. trip_point_[0-*]_type
  226. Strings which indicate the type of the trip point.
  227. E.g. it can be one of critical, hot, passive, active[0-*] for ACPI
  228. thermal zone.
  229. RO, Optional
  230. trip_point_[0-*]_hyst
  231. The hysteresis value for a trip point, represented as an integer
  232. Unit: Celsius
  233. RW, Optional
  234. cdev[0-*]
  235. Sysfs link to the thermal cooling device node where the sys I/F
  236. for cooling device throttling control represents.
  237. RO, Optional
  238. cdev[0-*]_trip_point
  239. The trip point with which cdev[0-*] is associated in this thermal
  240. zone; -1 means the cooling device is not associated with any trip
  241. point.
  242. RO, Optional
  243. cdev[0-*]_weight
  244. The influence of cdev[0-*] in this thermal zone. This value
  245. is relative to the rest of cooling devices in the thermal
  246. zone. For example, if a cooling device has a weight double
  247. than that of other, it's twice as effective in cooling the
  248. thermal zone.
  249. RW, Optional
  250. passive
  251. Attribute is only present for zones in which the passive cooling
  252. policy is not supported by native thermal driver. Default is zero
  253. and can be set to a temperature (in millidegrees) to enable a
  254. passive trip point for the zone. Activation is done by polling with
  255. an interval of 1 second.
  256. Unit: millidegrees Celsius
  257. Valid values: 0 (disabled) or greater than 1000
  258. RW, Optional
  259. emul_temp
  260. Interface to set the emulated temperature method in thermal zone
  261. (sensor). After setting this temperature, the thermal zone may pass
  262. this temperature to platform emulation function if registered or
  263. cache it locally. This is useful in debugging different temperature
  264. threshold and its associated cooling action. This is write only node
  265. and writing 0 on this node should disable emulation.
  266. Unit: millidegree Celsius
  267. WO, Optional
  268. WARNING: Be careful while enabling this option on production systems,
  269. because userland can easily disable the thermal policy by simply
  270. flooding this sysfs node with low temperature values.
  271. sustainable_power
  272. An estimate of the sustained power that can be dissipated by
  273. the thermal zone. Used by the power allocator governor. For
  274. more information see Documentation/thermal/power_allocator.txt
  275. Unit: milliwatts
  276. RW, Optional
  277. k_po
  278. The proportional term of the power allocator governor's PID
  279. controller during temperature overshoot. Temperature overshoot
  280. is when the current temperature is above the "desired
  281. temperature" trip point. For more information see
  282. Documentation/thermal/power_allocator.txt
  283. RW, Optional
  284. k_pu
  285. The proportional term of the power allocator governor's PID
  286. controller during temperature undershoot. Temperature undershoot
  287. is when the current temperature is below the "desired
  288. temperature" trip point. For more information see
  289. Documentation/thermal/power_allocator.txt
  290. RW, Optional
  291. k_i
  292. The integral term of the power allocator governor's PID
  293. controller. This term allows the PID controller to compensate
  294. for long term drift. For more information see
  295. Documentation/thermal/power_allocator.txt
  296. RW, Optional
  297. k_d
  298. The derivative term of the power allocator governor's PID
  299. controller. For more information see
  300. Documentation/thermal/power_allocator.txt
  301. RW, Optional
  302. integral_cutoff
  303. Temperature offset from the desired temperature trip point
  304. above which the integral term of the power allocator
  305. governor's PID controller starts accumulating errors. For
  306. example, if integral_cutoff is 0, then the integral term only
  307. accumulates error when temperature is above the desired
  308. temperature trip point. For more information see
  309. Documentation/thermal/power_allocator.txt
  310. RW, Optional
  311. slope
  312. The slope constant used in a linear extrapolation model
  313. to determine a hotspot temperature based off the sensor's
  314. raw readings. It is up to the device driver to determine
  315. the usage of these values.
  316. RW, Optional
  317. offset
  318. The offset constant used in a linear extrapolation model
  319. to determine a hotspot temperature based off the sensor's
  320. raw readings. It is up to the device driver to determine
  321. the usage of these values.
  322. RW, Optional
  323. *****************************
  324. * Cooling device attributes *
  325. *****************************
  326. type
  327. String which represents the type of device, e.g:
  328. - for generic ACPI: should be "Fan", "Processor" or "LCD"
  329. - for memory controller device on intel_menlow platform:
  330. should be "Memory controller".
  331. RO, Required
  332. max_state
  333. The maximum permissible cooling state of this cooling device.
  334. RO, Required
  335. cur_state
  336. The current cooling state of this cooling device.
  337. The value can any integer numbers between 0 and max_state:
  338. - cur_state == 0 means no cooling
  339. - cur_state == max_state means the maximum cooling.
  340. RW, Required
  341. 3. A simple implementation
  342. ACPI thermal zone may support multiple trip points like critical, hot,
  343. passive, active. If an ACPI thermal zone supports critical, passive,
  344. active[0] and active[1] at the same time, it may register itself as a
  345. thermal_zone_device (thermal_zone1) with 4 trip points in all.
  346. It has one processor and one fan, which are both registered as
  347. thermal_cooling_device. Both are considered to have the same
  348. effectiveness in cooling the thermal zone.
  349. If the processor is listed in _PSL method, and the fan is listed in _AL0
  350. method, the sys I/F structure will be built like this:
  351. /sys/class/thermal:
  352. |thermal_zone1:
  353. |---type: acpitz
  354. |---temp: 37000
  355. |---mode: enabled
  356. |---policy: step_wise
  357. |---available_policies: step_wise fair_share
  358. |---trip_point_0_temp: 100000
  359. |---trip_point_0_type: critical
  360. |---trip_point_1_temp: 80000
  361. |---trip_point_1_type: passive
  362. |---trip_point_2_temp: 70000
  363. |---trip_point_2_type: active0
  364. |---trip_point_3_temp: 60000
  365. |---trip_point_3_type: active1
  366. |---cdev0: --->/sys/class/thermal/cooling_device0
  367. |---cdev0_trip_point: 1 /* cdev0 can be used for passive */
  368. |---cdev0_weight: 1024
  369. |---cdev1: --->/sys/class/thermal/cooling_device3
  370. |---cdev1_trip_point: 2 /* cdev1 can be used for active[0]*/
  371. |---cdev1_weight: 1024
  372. |cooling_device0:
  373. |---type: Processor
  374. |---max_state: 8
  375. |---cur_state: 0
  376. |cooling_device3:
  377. |---type: Fan
  378. |---max_state: 2
  379. |---cur_state: 0
  380. /sys/class/hwmon:
  381. |hwmon0:
  382. |---name: acpitz
  383. |---temp1_input: 37000
  384. |---temp1_crit: 100000
  385. 4. Event Notification
  386. The framework includes a simple notification mechanism, in the form of a
  387. netlink event. Netlink socket initialization is done during the _init_
  388. of the framework. Drivers which intend to use the notification mechanism
  389. just need to call thermal_generate_netlink_event() with two arguments viz
  390. (originator, event). The originator is a pointer to struct thermal_zone_device
  391. from where the event has been originated. An integer which represents the
  392. thermal zone device will be used in the message to identify the zone. The
  393. event will be one of:{THERMAL_AUX0, THERMAL_AUX1, THERMAL_CRITICAL,
  394. THERMAL_DEV_FAULT}. Notification can be sent when the current temperature
  395. crosses any of the configured thresholds.
  396. 5. Export Symbol APIs:
  397. 5.1: get_tz_trend:
  398. This function returns the trend of a thermal zone, i.e the rate of change
  399. of temperature of the thermal zone. Ideally, the thermal sensor drivers
  400. are supposed to implement the callback. If they don't, the thermal
  401. framework calculated the trend by comparing the previous and the current
  402. temperature values.
  403. 5.2:get_thermal_instance:
  404. This function returns the thermal_instance corresponding to a given
  405. {thermal_zone, cooling_device, trip_point} combination. Returns NULL
  406. if such an instance does not exist.
  407. 5.3:thermal_notify_framework:
  408. This function handles the trip events from sensor drivers. It starts
  409. throttling the cooling devices according to the policy configured.
  410. For CRITICAL and HOT trip points, this notifies the respective drivers,
  411. and does actual throttling for other trip points i.e ACTIVE and PASSIVE.
  412. The throttling policy is based on the configured platform data; if no
  413. platform data is provided, this uses the step_wise throttling policy.
  414. 5.4:thermal_cdev_update:
  415. This function serves as an arbitrator to set the state of a cooling
  416. device. It sets the cooling device to the deepest cooling state if
  417. possible.