blob: db7bb4a659c4b7465fcb1ff9f0b6a4c95c7cd151 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001Naming and data format standards for sysfs files
2------------------------------------------------
3
4The libsensors library offers an interface to the raw sensors data
5through the sysfs interface. See libsensors documentation and source for
Jean Delvare740e06a2006-06-05 20:31:20 +02006further information. As of writing this document, libsensors
7(from lm_sensors 2.8.3) is heavily chip-dependent. Adding or updating
Linus Torvalds1da177e2005-04-16 15:20:36 -07008support for any given chip requires modifying the library's code.
9This is because libsensors was written for the procfs interface
10older kernel modules were using, which wasn't standardized enough.
11Recent versions of libsensors (from lm_sensors 2.8.2 and later) have
12support for the sysfs interface, though.
13
Jean Delvare740e06a2006-06-05 20:31:20 +020014The new sysfs interface was designed to be as chip-independent as
Linus Torvalds1da177e2005-04-16 15:20:36 -070015possible.
16
17Note that motherboards vary widely in the connections to sensor chips.
18There is no standard that ensures, for example, that the second
19temperature sensor is connected to the CPU, or that the second fan is on
20the CPU. Also, some values reported by the chips need some computation
21before they make full sense. For example, most chips can only measure
22voltages between 0 and +4V. Other voltages are scaled back into that
23range using external resistors. Since the values of these resistors
24can change from motherboard to motherboard, the conversions cannot be
25hard coded into the driver and have to be done in user space.
26
Jean Delvare740e06a2006-06-05 20:31:20 +020027For this reason, even if we aim at a chip-independent libsensors, it will
Linus Torvalds1da177e2005-04-16 15:20:36 -070028still require a configuration file (e.g. /etc/sensors.conf) for proper
29values conversion, labeling of inputs and hiding of unused inputs.
30
31An alternative method that some programs use is to access the sysfs
32files directly. This document briefly describes the standards that the
33drivers follow, so that an application program can scan for entries and
34access this data in a simple and consistent way. That said, such programs
35will have to implement conversion, labeling and hiding of inputs. For
36this reason, it is still not recommended to bypass the library.
37
38If you are developing a userspace application please send us feedback on
39this standard.
40
41Note that this standard isn't completely established yet, so it is subject
Jean Delvare740e06a2006-06-05 20:31:20 +020042to changes. If you are writing a new hardware monitoring driver those
43features can't seem to fit in this interface, please contact us with your
44extension proposal. Keep in mind that backward compatibility must be
45preserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47Each chip gets its own directory in the sysfs /sys/devices tree. To
Jean Delvare740e06a2006-06-05 20:31:20 +020048find all sensor chips, it is easier to follow the device symlinks from
49/sys/class/hwmon/hwmon*.
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Jean Delvare740e06a2006-06-05 20:31:20 +020051All sysfs values are fixed point numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53There is only one value per file, unlike the older /proc specification.
54The common scheme for files naming is: <type><number>_<item>. Usual
55types for sensor chips are "in" (voltage), "temp" (temperature) and
56"fan" (fan). Usual items are "input" (measured value), "max" (high
57threshold, "min" (low threshold). Numbering usually starts from 1,
58except for voltages which start from 0 (because most data sheets use
59this). A number is always used for elements that can be present more
60than once, even if there is a single element of the given type on the
61specific chip. Other files do not refer to a specific element, so
62they have a simple name, and no number.
63
64Alarms are direct indications read from the chips. The drivers do NOT
65make comparisons of readings to thresholds. This allows violations
66between readings to be caught and alarmed. The exact definition of an
67alarm (for example, whether a threshold must be met or must be exceeded
68to cause an alarm) is chip-dependent.
69
70
71-------------------------------------------------------------------------
72
Rudolf Marek057bc352006-06-04 20:03:39 +020073[0-*] denotes any positive number starting from 0
74[1-*] denotes any positive number starting from 1
75RO read only value
76RW read/write value
77
78Read/write values may be read-only for some chips, depending on the
79hardware implementation.
80
Jean Delvare176544d2007-08-20 16:44:44 +020081All entries (except name) are optional, and should only be created in a
82given driver if the chip has the feature.
83
84
85********
86* Name *
87********
88
89name The chip name.
90 This should be a short, lowercase string, not containing
91 spaces nor dashes, representing the chip name. This is
92 the only mandatory attribute.
93 I2C devices get this attribute created automatically.
94 RO
95
Jean Delvare740e06a2006-06-05 20:31:20 +020096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097************
98* Voltages *
99************
100
Rudolf Marek057bc352006-06-04 20:03:39 +0200101in[0-*]_min Voltage min value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 Unit: millivolt
Rudolf Marek057bc352006-06-04 20:03:39 +0200103 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Rudolf Marek057bc352006-06-04 20:03:39 +0200105in[0-*]_max Voltage max value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 Unit: millivolt
Rudolf Marek057bc352006-06-04 20:03:39 +0200107 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Rudolf Marek057bc352006-06-04 20:03:39 +0200109in[0-*]_input Voltage input value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 Unit: millivolt
Rudolf Marek057bc352006-06-04 20:03:39 +0200111 RO
112 Voltage measured on the chip pin.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 Actual voltage depends on the scaling resistors on the
114 motherboard, as recommended in the chip datasheet.
115 This varies by chip and by motherboard.
116 Because of this variation, values are generally NOT scaled
117 by the chip driver, and must be done by the application.
118 However, some drivers (notably lm87 and via686a)
Rudolf Marek057bc352006-06-04 20:03:39 +0200119 do scale, because of internal resistors built into a chip.
Jean Delvare176544d2007-08-20 16:44:44 +0200120 These drivers will output the actual voltage. Rule of
121 thumb: drivers should report the voltage values at the
122 "pins" of the chip.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Jean Delvare176544d2007-08-20 16:44:44 +0200124in[0-*]_label Suggested voltage channel label.
125 Text string
126 Should only be created if the driver has hints about what
127 this voltage channel is being used for, and user-space
128 doesn't. In all other cases, the label is provided by
129 user-space.
130 RO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Rudolf Marek057bc352006-06-04 20:03:39 +0200132cpu[0-*]_vid CPU core reference voltage.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 Unit: millivolt
Rudolf Marek057bc352006-06-04 20:03:39 +0200134 RO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 Not always correct.
136
137vrm Voltage Regulator Module version number.
Rudolf Marek057bc352006-06-04 20:03:39 +0200138 RW (but changing it should no more be necessary)
139 Originally the VRM standard version multiplied by 10, but now
140 an arbitrary number, as not all standards have a version
141 number.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 Affects the way the driver calculates the CPU core reference
143 voltage from the vid pins.
144
Rudolf Marek057bc352006-06-04 20:03:39 +0200145Also see the Alarms section for status flags associated with voltages.
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148********
149* Fans *
150********
151
Rudolf Marek057bc352006-06-04 20:03:39 +0200152fan[1-*]_min Fan minimum value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 Unit: revolution/min (RPM)
Rudolf Marek057bc352006-06-04 20:03:39 +0200154 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Rudolf Marek057bc352006-06-04 20:03:39 +0200156fan[1-*]_input Fan input value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 Unit: revolution/min (RPM)
Rudolf Marek057bc352006-06-04 20:03:39 +0200158 RO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Rudolf Marek057bc352006-06-04 20:03:39 +0200160fan[1-*]_div Fan divisor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 Integer value in powers of two (1, 2, 4, 8, 16, 32, 64, 128).
Rudolf Marek057bc352006-06-04 20:03:39 +0200162 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 Some chips only support values 1, 2, 4 and 8.
164 Note that this is actually an internal clock divisor, which
165 affects the measurable speed range, not the read value.
166
Jean Delvare2dbc5142007-05-08 17:22:00 +0200167fan[1-*]_target
168 Desired fan speed
169 Unit: revolution/min (RPM)
170 RW
171 Only makes sense if the chip supports closed-loop fan speed
172 control based on the measured fan speed.
173
Jean Delvare176544d2007-08-20 16:44:44 +0200174fan[1-*]_label Suggested fan channel label.
175 Text string
176 Should only be created if the driver has hints about what
177 this fan channel is being used for, and user-space doesn't.
178 In all other cases, the label is provided by user-space.
179 RO
180
Rudolf Marek057bc352006-06-04 20:03:39 +0200181Also see the Alarms section for status flags associated with fans.
182
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184*******
185* PWM *
186*******
187
Rudolf Marek057bc352006-06-04 20:03:39 +0200188pwm[1-*] Pulse width modulation fan control.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 Integer value in the range 0 to 255
Rudolf Marek057bc352006-06-04 20:03:39 +0200190 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 255 is max or 100%.
192
Rudolf Marek057bc352006-06-04 20:03:39 +0200193pwm[1-*]_enable
Jean Delvare875f25d2007-06-27 21:26:08 +0200194 Fan speed control method:
195 0: no fan speed control (i.e. fan at full speed)
196 1: manual fan speed control enabled (using pwm[1-*])
197 2+: automatic fan speed control enabled
Jean Delvaref8d0c192007-02-14 21:15:02 +0100198 Check individual chip documentation files for automatic mode
199 details.
Rudolf Marek057bc352006-06-04 20:03:39 +0200200 RW
201
Jean Delvaref8d0c192007-02-14 21:15:02 +0100202pwm[1-*]_mode 0: DC mode (direct current)
203 1: PWM mode (pulse-width modulation)
204 RW
205
206pwm[1-*]_freq Base PWM frequency in Hz.
207 Only possibly available when pwmN_mode is PWM, but not always
208 present even then.
Rudolf Marek057bc352006-06-04 20:03:39 +0200209 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211pwm[1-*]_auto_channels_temp
212 Select which temperature channels affect this PWM output in
213 auto mode. Bitfield, 1 is temp1, 2 is temp2, 4 is temp3 etc...
214 Which values are possible depend on the chip used.
Rudolf Marek057bc352006-06-04 20:03:39 +0200215 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217pwm[1-*]_auto_point[1-*]_pwm
218pwm[1-*]_auto_point[1-*]_temp
219pwm[1-*]_auto_point[1-*]_temp_hyst
220 Define the PWM vs temperature curve. Number of trip points is
221 chip-dependent. Use this for chips which associate trip points
222 to PWM output channels.
Rudolf Marek057bc352006-06-04 20:03:39 +0200223 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225OR
226
227temp[1-*]_auto_point[1-*]_pwm
228temp[1-*]_auto_point[1-*]_temp
229temp[1-*]_auto_point[1-*]_temp_hyst
230 Define the PWM vs temperature curve. Number of trip points is
231 chip-dependent. Use this for chips which associate trip points
232 to temperature channels.
Rudolf Marek057bc352006-06-04 20:03:39 +0200233 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235
236****************
237* Temperatures *
238****************
239
Rudolf Marek057bc352006-06-04 20:03:39 +0200240temp[1-*]_type Sensor type selection.
Jean Delvareb26f9332007-08-16 14:30:01 +0200241 Integers 1 to 6
Rudolf Marek057bc352006-06-04 20:03:39 +0200242 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 1: PII/Celeron Diode
244 2: 3904 transistor
245 3: thermal diode
Jean Delvareb26f9332007-08-16 14:30:01 +0200246 4: thermistor
Rudolf Marek61db0112006-12-12 18:18:30 +0100247 5: AMD AMDSI
248 6: Intel PECI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 Not all types are supported by all chips
250
Rudolf Marek057bc352006-06-04 20:03:39 +0200251temp[1-*]_max Temperature max value.
Jean Delvare740e06a2006-06-05 20:31:20 +0200252 Unit: millidegree Celsius (or millivolt, see below)
Rudolf Marek057bc352006-06-04 20:03:39 +0200253 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Rudolf Marek057bc352006-06-04 20:03:39 +0200255temp[1-*]_min Temperature min value.
Jean Delvare740e06a2006-06-05 20:31:20 +0200256 Unit: millidegree Celsius
Rudolf Marek057bc352006-06-04 20:03:39 +0200257 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Rudolf Marek057bc352006-06-04 20:03:39 +0200259temp[1-*]_max_hyst
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 Temperature hysteresis value for max limit.
Jean Delvare740e06a2006-06-05 20:31:20 +0200261 Unit: millidegree Celsius
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 Must be reported as an absolute temperature, NOT a delta
263 from the max value.
Rudolf Marek057bc352006-06-04 20:03:39 +0200264 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Rudolf Marek057bc352006-06-04 20:03:39 +0200266temp[1-*]_input Temperature input value.
Jean Delvare740e06a2006-06-05 20:31:20 +0200267 Unit: millidegree Celsius
Rudolf Marek057bc352006-06-04 20:03:39 +0200268 RO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Rudolf Marek057bc352006-06-04 20:03:39 +0200270temp[1-*]_crit Temperature critical value, typically greater than
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 corresponding temp_max values.
Jean Delvare740e06a2006-06-05 20:31:20 +0200272 Unit: millidegree Celsius
Rudolf Marek057bc352006-06-04 20:03:39 +0200273 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Rudolf Marek057bc352006-06-04 20:03:39 +0200275temp[1-*]_crit_hyst
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 Temperature hysteresis value for critical limit.
Jean Delvare740e06a2006-06-05 20:31:20 +0200277 Unit: millidegree Celsius
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 Must be reported as an absolute temperature, NOT a delta
279 from the critical value.
Rudolf Marek057bc352006-06-04 20:03:39 +0200280 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Jean Delvare176544d2007-08-20 16:44:44 +0200282temp[1-*]_offset
Hartmut Rick59ac8362006-03-23 16:37:23 +0100283 Temperature offset which is added to the temperature reading
284 by the chip.
285 Unit: millidegree Celsius
286 Read/Write value.
287
Jean Delvare176544d2007-08-20 16:44:44 +0200288temp[1-*]_label Suggested temperature channel label.
289 Text string
290 Should only be created if the driver has hints about what
291 this temperature channel is being used for, and user-space
292 doesn't. In all other cases, the label is provided by
293 user-space.
294 RO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Jean Delvare740e06a2006-06-05 20:31:20 +0200296Some chips measure temperature using external thermistors and an ADC, and
297report the temperature measurement as a voltage. Converting this voltage
298back to a temperature (or the other way around for limits) requires
299mathematical functions not available in the kernel, so the conversion
300must occur in user space. For these chips, all temp* files described
301above should contain values expressed in millivolt instead of millidegree
302Celsius. In other words, such temperature channels are handled as voltage
303channels by the driver.
304
Rudolf Marek057bc352006-06-04 20:03:39 +0200305Also see the Alarms section for status flags associated with temperatures.
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308************
309* Currents *
310************
311
312Note that no known chip provides current measurements as of writing,
313so this part is theoretical, so to say.
314
Rudolf Marek057bc352006-06-04 20:03:39 +0200315curr[1-*]_max Current max value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 Unit: milliampere
Rudolf Marek057bc352006-06-04 20:03:39 +0200317 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Rudolf Marek057bc352006-06-04 20:03:39 +0200319curr[1-*]_min Current min value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 Unit: milliampere
Rudolf Marek057bc352006-06-04 20:03:39 +0200321 RW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Rudolf Marek057bc352006-06-04 20:03:39 +0200323curr[1-*]_input Current input value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 Unit: milliampere
Rudolf Marek057bc352006-06-04 20:03:39 +0200325 RO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327
Jean Delvare400b48e2006-03-23 16:46:47 +0100328**********
329* Alarms *
330**********
331
332Each channel or limit may have an associated alarm file, containing a
333boolean value. 1 means than an alarm condition exists, 0 means no alarm.
334
335Usually a given chip will either use channel-related alarms, or
336limit-related alarms, not both. The driver should just reflect the hardware
337implementation.
338
Rudolf Marek057bc352006-06-04 20:03:39 +0200339in[0-*]_alarm
340fan[1-*]_alarm
341temp[1-*]_alarm
Jean Delvare400b48e2006-03-23 16:46:47 +0100342 Channel alarm
Rudolf Marek057bc352006-06-04 20:03:39 +0200343 0: no alarm
344 1: alarm
345 RO
Jean Delvare400b48e2006-03-23 16:46:47 +0100346
347OR
348
Rudolf Marek057bc352006-06-04 20:03:39 +0200349in[0-*]_min_alarm
350in[0-*]_max_alarm
351fan[1-*]_min_alarm
352temp[1-*]_min_alarm
353temp[1-*]_max_alarm
354temp[1-*]_crit_alarm
Jean Delvare400b48e2006-03-23 16:46:47 +0100355 Limit alarm
Rudolf Marek057bc352006-06-04 20:03:39 +0200356 0: no alarm
357 1: alarm
358 RO
Jean Delvare400b48e2006-03-23 16:46:47 +0100359
360Each input channel may have an associated fault file. This can be used
361to notify open diodes, unconnected fans etc. where the hardware
362supports it. When this boolean has value 1, the measurement for that
363channel should not be trusted.
364
Jean Delvare7817a392007-06-09 10:11:16 -0400365in[0-*]_fault
366fan[1-*]_fault
367temp[1-*]_fault
Jean Delvare400b48e2006-03-23 16:46:47 +0100368 Input fault condition
Rudolf Marek057bc352006-06-04 20:03:39 +0200369 0: no fault occured
370 1: fault condition
371 RO
Jean Delvare400b48e2006-03-23 16:46:47 +0100372
373Some chips also offer the possibility to get beeped when an alarm occurs:
374
375beep_enable Master beep enable
Rudolf Marek057bc352006-06-04 20:03:39 +0200376 0: no beeps
377 1: beeps
378 RW
Jean Delvare400b48e2006-03-23 16:46:47 +0100379
Rudolf Marek057bc352006-06-04 20:03:39 +0200380in[0-*]_beep
381fan[1-*]_beep
382temp[1-*]_beep
Jean Delvare400b48e2006-03-23 16:46:47 +0100383 Channel beep
Rudolf Marek057bc352006-06-04 20:03:39 +0200384 0: disable
385 1: enable
386 RW
Jean Delvare400b48e2006-03-23 16:46:47 +0100387
388In theory, a chip could provide per-limit beep masking, but no such chip
389was seen so far.
390
391Old drivers provided a different, non-standard interface to alarms and
392beeps. These interface files are deprecated, but will be kept around
393for compatibility reasons:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395alarms Alarm bitmask.
Rudolf Marek057bc352006-06-04 20:03:39 +0200396 RO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 Integer representation of one to four bytes.
398 A '1' bit means an alarm.
399 Chips should be programmed for 'comparator' mode so that
400 the alarm will 'come back' after you read the register
401 if it is still valid.
402 Generally a direct representation of a chip's internal
403 alarm registers; there is no standard for the position
Jean Delvare400b48e2006-03-23 16:46:47 +0100404 of individual bits. For this reason, the use of this
405 interface file for new drivers is discouraged. Use
406 individual *_alarm and *_fault files instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 Bits are defined in kernel/include/sensors.h.
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409beep_mask Bitmask for beep.
Jean Delvare400b48e2006-03-23 16:46:47 +0100410 Same format as 'alarms' with the same bit locations,
411 use discouraged for the same reason. Use individual
412 *_beep files instead.
Rudolf Marek057bc352006-06-04 20:03:39 +0200413 RW