]> bbs.cooldavid.org Git - net-next-2.6.git/blame - Documentation/hwmon/sysfs-interface
Linux 2.6.24-rc2
[net-next-2.6.git] / Documentation / hwmon / sysfs-interface
CommitLineData
1da177e4
LT
1Naming 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
740e06a8
JD
6further information. As of writing this document, libsensors
7(from lm_sensors 2.8.3) is heavily chip-dependent. Adding or updating
1da177e4
LT
8support 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
740e06a8 14The new sysfs interface was designed to be as chip-independent as
1da177e4
LT
15possible.
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
740e06a8 27For this reason, even if we aim at a chip-independent libsensors, it will
1da177e4
LT
28still 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
740e06a8
JD
42to 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.
1da177e4
LT
46
47Each chip gets its own directory in the sysfs /sys/devices tree. To
740e06a8
JD
48find all sensor chips, it is easier to follow the device symlinks from
49/sys/class/hwmon/hwmon*.
1da177e4 50
740e06a8 51All sysfs values are fixed point numbers.
1da177e4
LT
52
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
2ed42633
HG
70When setting values of hwmon sysfs attributes, the string representation of
71the desired value must be written, note that strings which are not a number
72are interpreted as 0! For more on how written strings are interpreted see the
73"sysfs attribute writes interpretation" section at the end of this file.
1da177e4
LT
74
75-------------------------------------------------------------------------
76
057bc350
RM
77[0-*] denotes any positive number starting from 0
78[1-*] denotes any positive number starting from 1
79RO read only value
80RW read/write value
81
82Read/write values may be read-only for some chips, depending on the
83hardware implementation.
84
176544dc
JD
85All entries (except name) are optional, and should only be created in a
86given driver if the chip has the feature.
87
88
89********
90* Name *
91********
92
93name The chip name.
94 This should be a short, lowercase string, not containing
95 spaces nor dashes, representing the chip name. This is
96 the only mandatory attribute.
97 I2C devices get this attribute created automatically.
98 RO
99
740e06a8 100
1da177e4
LT
101************
102* Voltages *
103************
104
057bc350 105in[0-*]_min Voltage min value.
1da177e4 106 Unit: millivolt
057bc350 107 RW
1da177e4 108
057bc350 109in[0-*]_max Voltage max value.
1da177e4 110 Unit: millivolt
057bc350 111 RW
1da177e4 112
057bc350 113in[0-*]_input Voltage input value.
1da177e4 114 Unit: millivolt
057bc350
RM
115 RO
116 Voltage measured on the chip pin.
1da177e4
LT
117 Actual voltage depends on the scaling resistors on the
118 motherboard, as recommended in the chip datasheet.
119 This varies by chip and by motherboard.
120 Because of this variation, values are generally NOT scaled
121 by the chip driver, and must be done by the application.
122 However, some drivers (notably lm87 and via686a)
057bc350 123 do scale, because of internal resistors built into a chip.
176544dc
JD
124 These drivers will output the actual voltage. Rule of
125 thumb: drivers should report the voltage values at the
126 "pins" of the chip.
127
128in[0-*]_label Suggested voltage channel label.
129 Text string
130 Should only be created if the driver has hints about what
131 this voltage channel is being used for, and user-space
132 doesn't. In all other cases, the label is provided by
133 user-space.
134 RO
1da177e4 135
057bc350 136cpu[0-*]_vid CPU core reference voltage.
1da177e4 137 Unit: millivolt
057bc350 138 RO
1da177e4
LT
139 Not always correct.
140
141vrm Voltage Regulator Module version number.
057bc350
RM
142 RW (but changing it should no more be necessary)
143 Originally the VRM standard version multiplied by 10, but now
144 an arbitrary number, as not all standards have a version
145 number.
1da177e4
LT
146 Affects the way the driver calculates the CPU core reference
147 voltage from the vid pins.
148
057bc350
RM
149Also see the Alarms section for status flags associated with voltages.
150
1da177e4
LT
151
152********
153* Fans *
154********
155
057bc350 156fan[1-*]_min Fan minimum value
1da177e4 157 Unit: revolution/min (RPM)
057bc350 158 RW
1da177e4 159
057bc350 160fan[1-*]_input Fan input value.
1da177e4 161 Unit: revolution/min (RPM)
057bc350 162 RO
1da177e4 163
057bc350 164fan[1-*]_div Fan divisor.
1da177e4 165 Integer value in powers of two (1, 2, 4, 8, 16, 32, 64, 128).
057bc350 166 RW
1da177e4
LT
167 Some chips only support values 1, 2, 4 and 8.
168 Note that this is actually an internal clock divisor, which
169 affects the measurable speed range, not the read value.
170
2dbc514a
JD
171fan[1-*]_target
172 Desired fan speed
173 Unit: revolution/min (RPM)
174 RW
175 Only makes sense if the chip supports closed-loop fan speed
176 control based on the measured fan speed.
177
176544dc
JD
178fan[1-*]_label Suggested fan channel label.
179 Text string
180 Should only be created if the driver has hints about what
181 this fan channel is being used for, and user-space doesn't.
182 In all other cases, the label is provided by user-space.
183 RO
184
057bc350
RM
185Also see the Alarms section for status flags associated with fans.
186
187
1da177e4
LT
188*******
189* PWM *
190*******
191
057bc350 192pwm[1-*] Pulse width modulation fan control.
1da177e4 193 Integer value in the range 0 to 255
057bc350 194 RW
1da177e4
LT
195 255 is max or 100%.
196
057bc350 197pwm[1-*]_enable
875f25d5
JD
198 Fan speed control method:
199 0: no fan speed control (i.e. fan at full speed)
200 1: manual fan speed control enabled (using pwm[1-*])
201 2+: automatic fan speed control enabled
f8d0c19a
JD
202 Check individual chip documentation files for automatic mode
203 details.
057bc350
RM
204 RW
205
f8d0c19a
JD
206pwm[1-*]_mode 0: DC mode (direct current)
207 1: PWM mode (pulse-width modulation)
208 RW
209
210pwm[1-*]_freq Base PWM frequency in Hz.
211 Only possibly available when pwmN_mode is PWM, but not always
212 present even then.
057bc350 213 RW
1da177e4
LT
214
215pwm[1-*]_auto_channels_temp
216 Select which temperature channels affect this PWM output in
217 auto mode. Bitfield, 1 is temp1, 2 is temp2, 4 is temp3 etc...
218 Which values are possible depend on the chip used.
057bc350 219 RW
1da177e4
LT
220
221pwm[1-*]_auto_point[1-*]_pwm
222pwm[1-*]_auto_point[1-*]_temp
223pwm[1-*]_auto_point[1-*]_temp_hyst
224 Define the PWM vs temperature curve. Number of trip points is
225 chip-dependent. Use this for chips which associate trip points
226 to PWM output channels.
057bc350 227 RW
1da177e4
LT
228
229OR
230
231temp[1-*]_auto_point[1-*]_pwm
232temp[1-*]_auto_point[1-*]_temp
233temp[1-*]_auto_point[1-*]_temp_hyst
234 Define the PWM vs temperature curve. Number of trip points is
235 chip-dependent. Use this for chips which associate trip points
236 to temperature channels.
057bc350 237 RW
1da177e4
LT
238
239
240****************
241* Temperatures *
242****************
243
057bc350 244temp[1-*]_type Sensor type selection.
b26f9330 245 Integers 1 to 6
057bc350 246 RW
1da177e4
LT
247 1: PII/Celeron Diode
248 2: 3904 transistor
249 3: thermal diode
b26f9330 250 4: thermistor
61db011d
RM
251 5: AMD AMDSI
252 6: Intel PECI
1da177e4
LT
253 Not all types are supported by all chips
254
057bc350 255temp[1-*]_max Temperature max value.
740e06a8 256 Unit: millidegree Celsius (or millivolt, see below)
057bc350 257 RW
1da177e4 258
057bc350 259temp[1-*]_min Temperature min value.
740e06a8 260 Unit: millidegree Celsius
057bc350 261 RW
1da177e4 262
057bc350 263temp[1-*]_max_hyst
1da177e4 264 Temperature hysteresis value for max limit.
740e06a8 265 Unit: millidegree Celsius
1da177e4
LT
266 Must be reported as an absolute temperature, NOT a delta
267 from the max value.
057bc350 268 RW
1da177e4 269
057bc350 270temp[1-*]_input Temperature input value.
740e06a8 271 Unit: millidegree Celsius
057bc350 272 RO
1da177e4 273
057bc350 274temp[1-*]_crit Temperature critical value, typically greater than
1da177e4 275 corresponding temp_max values.
740e06a8 276 Unit: millidegree Celsius
057bc350 277 RW
1da177e4 278
057bc350 279temp[1-*]_crit_hyst
1da177e4 280 Temperature hysteresis value for critical limit.
740e06a8 281 Unit: millidegree Celsius
1da177e4
LT
282 Must be reported as an absolute temperature, NOT a delta
283 from the critical value.
057bc350 284 RW
1da177e4 285
176544dc 286temp[1-*]_offset
59ac8367
HR
287 Temperature offset which is added to the temperature reading
288 by the chip.
289 Unit: millidegree Celsius
290 Read/Write value.
291
176544dc
JD
292temp[1-*]_label Suggested temperature channel label.
293 Text string
294 Should only be created if the driver has hints about what
295 this temperature channel is being used for, and user-space
296 doesn't. In all other cases, the label is provided by
297 user-space.
298 RO
1da177e4 299
740e06a8
JD
300Some chips measure temperature using external thermistors and an ADC, and
301report the temperature measurement as a voltage. Converting this voltage
302back to a temperature (or the other way around for limits) requires
303mathematical functions not available in the kernel, so the conversion
304must occur in user space. For these chips, all temp* files described
305above should contain values expressed in millivolt instead of millidegree
306Celsius. In other words, such temperature channels are handled as voltage
307channels by the driver.
308
057bc350
RM
309Also see the Alarms section for status flags associated with temperatures.
310
1da177e4
LT
311
312************
313* Currents *
314************
315
316Note that no known chip provides current measurements as of writing,
317so this part is theoretical, so to say.
318
057bc350 319curr[1-*]_max Current max value
1da177e4 320 Unit: milliampere
057bc350 321 RW
1da177e4 322
057bc350 323curr[1-*]_min Current min value.
1da177e4 324 Unit: milliampere
057bc350 325 RW
1da177e4 326
057bc350 327curr[1-*]_input Current input value
1da177e4 328 Unit: milliampere
057bc350 329 RO
1da177e4
LT
330
331
400b48ec
JD
332**********
333* Alarms *
334**********
335
336Each channel or limit may have an associated alarm file, containing a
337boolean value. 1 means than an alarm condition exists, 0 means no alarm.
338
339Usually a given chip will either use channel-related alarms, or
340limit-related alarms, not both. The driver should just reflect the hardware
341implementation.
342
057bc350
RM
343in[0-*]_alarm
344fan[1-*]_alarm
345temp[1-*]_alarm
400b48ec 346 Channel alarm
057bc350
RM
347 0: no alarm
348 1: alarm
349 RO
400b48ec
JD
350
351OR
352
057bc350
RM
353in[0-*]_min_alarm
354in[0-*]_max_alarm
355fan[1-*]_min_alarm
356temp[1-*]_min_alarm
357temp[1-*]_max_alarm
358temp[1-*]_crit_alarm
400b48ec 359 Limit alarm
057bc350
RM
360 0: no alarm
361 1: alarm
362 RO
400b48ec
JD
363
364Each input channel may have an associated fault file. This can be used
365to notify open diodes, unconnected fans etc. where the hardware
366supports it. When this boolean has value 1, the measurement for that
367channel should not be trusted.
368
7817a39e
JD
369in[0-*]_fault
370fan[1-*]_fault
371temp[1-*]_fault
400b48ec 372 Input fault condition
057bc350
RM
373 0: no fault occured
374 1: fault condition
375 RO
400b48ec
JD
376
377Some chips also offer the possibility to get beeped when an alarm occurs:
378
379beep_enable Master beep enable
057bc350
RM
380 0: no beeps
381 1: beeps
382 RW
400b48ec 383
057bc350
RM
384in[0-*]_beep
385fan[1-*]_beep
386temp[1-*]_beep
400b48ec 387 Channel beep
057bc350
RM
388 0: disable
389 1: enable
390 RW
400b48ec
JD
391
392In theory, a chip could provide per-limit beep masking, but no such chip
393was seen so far.
394
395Old drivers provided a different, non-standard interface to alarms and
396beeps. These interface files are deprecated, but will be kept around
397for compatibility reasons:
1da177e4
LT
398
399alarms Alarm bitmask.
057bc350 400 RO
1da177e4
LT
401 Integer representation of one to four bytes.
402 A '1' bit means an alarm.
403 Chips should be programmed for 'comparator' mode so that
404 the alarm will 'come back' after you read the register
405 if it is still valid.
406 Generally a direct representation of a chip's internal
407 alarm registers; there is no standard for the position
400b48ec
JD
408 of individual bits. For this reason, the use of this
409 interface file for new drivers is discouraged. Use
410 individual *_alarm and *_fault files instead.
1da177e4
LT
411 Bits are defined in kernel/include/sensors.h.
412
1da177e4 413beep_mask Bitmask for beep.
400b48ec
JD
414 Same format as 'alarms' with the same bit locations,
415 use discouraged for the same reason. Use individual
416 *_beep files instead.
057bc350 417 RW
2ed42633
HG
418
419
420sysfs attribute writes interpretation
421-------------------------------------
422
423hwmon sysfs attributes always contain numbers, so the first thing to do is to
424convert the input to a number, there are 2 ways todo this depending whether
425the number can be negative or not:
426unsigned long u = simple_strtoul(buf, NULL, 10);
427long s = simple_strtol(buf, NULL, 10);
428
429With buf being the buffer with the user input being passed by the kernel.
430Notice that we do not use the second argument of strto[u]l, and thus cannot
431tell when 0 is returned, if this was really 0 or is caused by invalid input.
432This is done deliberately as checking this everywhere would add a lot of
433code to the kernel.
434
435Notice that it is important to always store the converted value in an
436unsigned long or long, so that no wrap around can happen before any further
437checking.
438
439After the input string is converted to an (unsigned) long, the value should be
440checked if its acceptable. Be careful with further conversions on the value
441before checking it for validity, as these conversions could still cause a wrap
442around before the check. For example do not multiply the result, and only
443add/subtract if it has been divided before the add/subtract.
444
445What to do if a value is found to be invalid, depends on the type of the
446sysfs attribute that is being set. If it is a continuous setting like a
447tempX_max or inX_max attribute, then the value should be clamped to its
448limits using SENSORS_LIMIT(value, min_limit, max_limit). If it is not
449continuous like for example a tempX_type, then when an invalid value is
450written, -EINVAL should be returned.
451
452Example1, temp1_max, register is a signed 8 bit value (-128 - 127 degrees):
5fbea518
JD
453
454 long v = simple_strtol(buf, NULL, 10) / 1000;
455 v = SENSORS_LIMIT(v, -128, 127);
456 /* write v to register */
2ed42633
HG
457
458Example2, fan divider setting, valid values 2, 4 and 8:
5fbea518
JD
459
460 unsigned long v = simple_strtoul(buf, NULL, 10);
461
462 switch (v) {
463 case 2: v = 1; break;
464 case 4: v = 2; break;
465 case 8: v = 3; break;
466 default:
467 return -EINVAL;
468 }
469 /* write v to register */