sysfs-api.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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 *name,
  24. int trips, int mask, void *devdata,
  25. struct thermal_zone_device_ops *ops)
  26. This interface function adds a new thermal zone device (sensor) to
  27. /sys/class/thermal folder as thermal_zone[0-*]. It tries to bind all the
  28. thermal cooling devices registered at the same time.
  29. name: the thermal zone name.
  30. trips: the total number of trip points this thermal zone supports.
  31. mask: Bit string: If 'n'th bit is set, then trip point 'n' is writeable.
  32. devdata: device private data
  33. ops: thermal zone device call-backs.
  34. .bind: bind the thermal zone device with a thermal cooling device.
  35. .unbind: unbind the thermal zone device with a thermal cooling device.
  36. .get_temp: get the current temperature of the thermal zone.
  37. .get_mode: get the current mode (enabled/disabled) of the thermal zone.
  38. - "enabled" means the kernel thermal management is enabled.
  39. - "disabled" will prevent kernel thermal driver action upon trip points
  40. so that user applications can take charge of thermal management.
  41. .set_mode: set the mode (enabled/disabled) of the thermal zone.
  42. .get_trip_type: get the type of certain trip point.
  43. .get_trip_temp: get the temperature above which the certain trip point
  44. will be fired.
  45. 1.1.2 void thermal_zone_device_unregister(struct thermal_zone_device *tz)
  46. This interface function removes the thermal zone device.
  47. It deletes the corresponding entry form /sys/class/thermal folder and
  48. unbind all the thermal cooling devices it uses.
  49. 1.2 thermal cooling device interface
  50. 1.2.1 struct thermal_cooling_device *thermal_cooling_device_register(char *name,
  51. void *devdata, struct thermal_cooling_device_ops *)
  52. This interface function adds a new thermal cooling device (fan/processor/...)
  53. to /sys/class/thermal/ folder as cooling_device[0-*]. It tries to bind itself
  54. to all the thermal zone devices register at the same time.
  55. name: the cooling device name.
  56. devdata: device private data.
  57. ops: thermal cooling devices call-backs.
  58. .get_max_state: get the Maximum throttle state of the cooling device.
  59. .get_cur_state: get the Current throttle state of the cooling device.
  60. .set_cur_state: set the Current throttle state of the cooling device.
  61. 1.2.2 void thermal_cooling_device_unregister(struct thermal_cooling_device *cdev)
  62. This interface function remove the thermal cooling device.
  63. It deletes the corresponding entry form /sys/class/thermal folder and
  64. unbind itself from all the thermal zone devices using it.
  65. 1.3 interface for binding a thermal zone device with a thermal cooling device
  66. 1.3.1 int thermal_zone_bind_cooling_device(struct thermal_zone_device *tz,
  67. int trip, struct thermal_cooling_device *cdev,
  68. unsigned long upper, unsigned long lower);
  69. This interface function bind a thermal cooling device to the certain trip
  70. point of a thermal zone device.
  71. This function is usually called in the thermal zone device .bind callback.
  72. tz: the thermal zone device
  73. cdev: thermal cooling device
  74. trip: indicates which trip point the cooling devices is associated with
  75. in this thermal zone.
  76. upper:the Maximum cooling state for this trip point.
  77. THERMAL_NO_LIMIT means no upper limit,
  78. and the cooling device can be in max_state.
  79. lower:the Minimum cooling state can be used for this trip point.
  80. THERMAL_NO_LIMIT means no lower limit,
  81. and the cooling device can be in cooling state 0.
  82. 1.3.2 int thermal_zone_unbind_cooling_device(struct thermal_zone_device *tz,
  83. int trip, struct thermal_cooling_device *cdev);
  84. This interface function unbind a thermal cooling device from the certain
  85. trip point of a thermal zone device. This function is usually called in
  86. the thermal zone device .unbind callback.
  87. tz: the thermal zone device
  88. cdev: thermal cooling device
  89. trip: indicates which trip point the cooling devices is associated with
  90. in this thermal zone.
  91. 1.4 Thermal Zone Parameters
  92. 1.4.1 struct thermal_bind_params
  93. This structure defines the following parameters that are used to bind
  94. a zone with a cooling device for a particular trip point.
  95. .cdev: The cooling device pointer
  96. .weight: The 'influence' of a particular cooling device on this zone.
  97. This is on a percentage scale. The sum of all these weights
  98. (for a particular zone) cannot exceed 100.
  99. .trip_mask:This is a bit mask that gives the binding relation between
  100. this thermal zone and cdev, for a particular trip point.
  101. If nth bit is set, then the cdev and thermal zone are bound
  102. for trip point n.
  103. .match: This call back returns success(0) if the 'tz and cdev' need to
  104. be bound, as per platform data.
  105. 1.4.2 struct thermal_zone_params
  106. This structure defines the platform level parameters for a thermal zone.
  107. This data, for each thermal zone should come from the platform layer.
  108. This is an optional feature where some platforms can choose not to
  109. provide this data.
  110. .governor_name: Name of the thermal governor used for this zone
  111. .num_tbps: Number of thermal_bind_params entries for this zone
  112. .tbp: thermal_bind_params entries
  113. 2. sysfs attributes structure
  114. RO read only value
  115. RW read/write value
  116. Thermal sysfs attributes will be represented under /sys/class/thermal.
  117. Hwmon sysfs I/F extension is also available under /sys/class/hwmon
  118. if hwmon is compiled in or built as a module.
  119. Thermal zone device sys I/F, created once it's registered:
  120. /sys/class/thermal/thermal_zone[0-*]:
  121. |---type: Type of the thermal zone
  122. |---temp: Current temperature
  123. |---mode: Working mode of the thermal zone
  124. |---policy: Thermal governor used for this zone
  125. |---trip_point_[0-*]_temp: Trip point temperature
  126. |---trip_point_[0-*]_type: Trip point type
  127. |---trip_point_[0-*]_hyst: Hysteresis value for this trip point
  128. Thermal cooling device sys I/F, created once it's registered:
  129. /sys/class/thermal/cooling_device[0-*]:
  130. |---type: Type of the cooling device(processor/fan/...)
  131. |---max_state: Maximum cooling state of the cooling device
  132. |---cur_state: Current cooling state of the cooling device
  133. Then next two dynamic attributes are created/removed in pairs. They represent
  134. the relationship between a thermal zone and its associated cooling device.
  135. They are created/removed for each successful execution of
  136. thermal_zone_bind_cooling_device/thermal_zone_unbind_cooling_device.
  137. /sys/class/thermal/thermal_zone[0-*]:
  138. |---cdev[0-*]: [0-*]th cooling device in current thermal zone
  139. |---cdev[0-*]_trip_point: Trip point that cdev[0-*] is associated with
  140. Besides the thermal zone device sysfs I/F and cooling device sysfs I/F,
  141. the generic thermal driver also creates a hwmon sysfs I/F for each _type_
  142. of thermal zone device. E.g. the generic thermal driver registers one hwmon
  143. class device and build the associated hwmon sysfs I/F for all the registered
  144. ACPI thermal zones.
  145. /sys/class/hwmon/hwmon[0-*]:
  146. |---name: The type of the thermal zone devices
  147. |---temp[1-*]_input: The current temperature of thermal zone [1-*]
  148. |---temp[1-*]_critical: The critical trip point of thermal zone [1-*]
  149. Please read Documentation/hwmon/sysfs-interface for additional information.
  150. ***************************
  151. * Thermal zone attributes *
  152. ***************************
  153. type
  154. Strings which represent the thermal zone type.
  155. This is given by thermal zone driver as part of registration.
  156. E.g: "acpitz" indicates it's an ACPI thermal device.
  157. In order to keep it consistent with hwmon sys attribute; this should
  158. be a short, lowercase string, not containing spaces nor dashes.
  159. RO, Required
  160. temp
  161. Current temperature as reported by thermal zone (sensor).
  162. Unit: millidegree Celsius
  163. RO, Required
  164. mode
  165. One of the predefined values in [enabled, disabled].
  166. This file gives information about the algorithm that is currently
  167. managing the thermal zone. It can be either default kernel based
  168. algorithm or user space application.
  169. enabled = enable Kernel Thermal management.
  170. disabled = Preventing kernel thermal zone driver actions upon
  171. trip points so that user application can take full
  172. charge of the thermal management.
  173. RW, Optional
  174. policy
  175. One of the various thermal governors used for a particular zone.
  176. RW, Required
  177. trip_point_[0-*]_temp
  178. The temperature above which trip point will be fired.
  179. Unit: millidegree Celsius
  180. RO, Optional
  181. trip_point_[0-*]_type
  182. Strings which indicate the type of the trip point.
  183. E.g. it can be one of critical, hot, passive, active[0-*] for ACPI
  184. thermal zone.
  185. RO, Optional
  186. trip_point_[0-*]_hyst
  187. The hysteresis value for a trip point, represented as an integer
  188. Unit: Celsius
  189. RW, Optional
  190. cdev[0-*]
  191. Sysfs link to the thermal cooling device node where the sys I/F
  192. for cooling device throttling control represents.
  193. RO, Optional
  194. cdev[0-*]_trip_point
  195. The trip point with which cdev[0-*] is associated in this thermal
  196. zone; -1 means the cooling device is not associated with any trip
  197. point.
  198. RO, Optional
  199. passive
  200. Attribute is only present for zones in which the passive cooling
  201. policy is not supported by native thermal driver. Default is zero
  202. and can be set to a temperature (in millidegrees) to enable a
  203. passive trip point for the zone. Activation is done by polling with
  204. an interval of 1 second.
  205. Unit: millidegrees Celsius
  206. Valid values: 0 (disabled) or greater than 1000
  207. RW, Optional
  208. *****************************
  209. * Cooling device attributes *
  210. *****************************
  211. type
  212. String which represents the type of device, e.g:
  213. - for generic ACPI: should be "Fan", "Processor" or "LCD"
  214. - for memory controller device on intel_menlow platform:
  215. should be "Memory controller".
  216. RO, Required
  217. max_state
  218. The maximum permissible cooling state of this cooling device.
  219. RO, Required
  220. cur_state
  221. The current cooling state of this cooling device.
  222. The value can any integer numbers between 0 and max_state:
  223. - cur_state == 0 means no cooling
  224. - cur_state == max_state means the maximum cooling.
  225. RW, Required
  226. 3. A simple implementation
  227. ACPI thermal zone may support multiple trip points like critical, hot,
  228. passive, active. If an ACPI thermal zone supports critical, passive,
  229. active[0] and active[1] at the same time, it may register itself as a
  230. thermal_zone_device (thermal_zone1) with 4 trip points in all.
  231. It has one processor and one fan, which are both registered as
  232. thermal_cooling_device.
  233. If the processor is listed in _PSL method, and the fan is listed in _AL0
  234. method, the sys I/F structure will be built like this:
  235. /sys/class/thermal:
  236. |thermal_zone1:
  237. |---type: acpitz
  238. |---temp: 37000
  239. |---mode: enabled
  240. |---policy: step_wise
  241. |---trip_point_0_temp: 100000
  242. |---trip_point_0_type: critical
  243. |---trip_point_1_temp: 80000
  244. |---trip_point_1_type: passive
  245. |---trip_point_2_temp: 70000
  246. |---trip_point_2_type: active0
  247. |---trip_point_3_temp: 60000
  248. |---trip_point_3_type: active1
  249. |---cdev0: --->/sys/class/thermal/cooling_device0
  250. |---cdev0_trip_point: 1 /* cdev0 can be used for passive */
  251. |---cdev1: --->/sys/class/thermal/cooling_device3
  252. |---cdev1_trip_point: 2 /* cdev1 can be used for active[0]*/
  253. |cooling_device0:
  254. |---type: Processor
  255. |---max_state: 8
  256. |---cur_state: 0
  257. |cooling_device3:
  258. |---type: Fan
  259. |---max_state: 2
  260. |---cur_state: 0
  261. /sys/class/hwmon:
  262. |hwmon0:
  263. |---name: acpitz
  264. |---temp1_input: 37000
  265. |---temp1_crit: 100000
  266. 4. Event Notification
  267. The framework includes a simple notification mechanism, in the form of a
  268. netlink event. Netlink socket initialization is done during the _init_
  269. of the framework. Drivers which intend to use the notification mechanism
  270. just need to call thermal_generate_netlink_event() with two arguments viz
  271. (originator, event). Typically the originator will be an integer assigned
  272. to a thermal_zone_device when it registers itself with the framework. The
  273. event will be one of:{THERMAL_AUX0, THERMAL_AUX1, THERMAL_CRITICAL,
  274. THERMAL_DEV_FAULT}. Notification can be sent when the current temperature
  275. crosses any of the configured thresholds.
  276. 5. Export Symbol APIs:
  277. 5.1: get_tz_trend:
  278. This function returns the trend of a thermal zone, i.e the rate of change
  279. of temperature of the thermal zone. Ideally, the thermal sensor drivers
  280. are supposed to implement the callback. If they don't, the thermal
  281. framework calculated the trend by comparing the previous and the current
  282. temperature values.
  283. 5.2:get_thermal_instance:
  284. This function returns the thermal_instance corresponding to a given
  285. {thermal_zone, cooling_device, trip_point} combination. Returns NULL
  286. if such an instance does not exist.
  287. 5.3:notify_thermal_framework:
  288. This function handles the trip events from sensor drivers. It starts
  289. throttling the cooling devices according to the policy configured.
  290. For CRITICAL and HOT trip points, this notifies the respective drivers,
  291. and does actual throttling for other trip points i.e ACTIVE and PASSIVE.
  292. The throttling policy is based on the configured platform data; if no
  293. platform data is provided, this uses the step_wise throttling policy.
  294. 5.4:thermal_cdev_update:
  295. This function serves as an arbitrator to set the state of a cooling
  296. device. It sets the cooling device to the deepest cooling state if
  297. possible.
  298. 5.5:thermal_register_governor:
  299. This function lets the various thermal governors to register themselves
  300. with the Thermal framework. At run time, depending on a zone's platform
  301. data, a particular governor is used for throttling.
  302. 5.6:thermal_unregister_governor:
  303. This function unregisters a governor from the thermal framework.