]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - Documentation/hwmon/sysfs-interface
hwmon/w83627hf: Convert to a platform driver
[mirror_ubuntu-hirsute-kernel.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
70
71-------------------------------------------------------------------------
72
057bc350
RM
73[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
740e06a8
JD
81All entries are optional, and should only be created in a given driver
82if the chip has the feature.
83
1da177e4
LT
84************
85* Voltages *
86************
87
057bc350 88in[0-*]_min Voltage min value.
1da177e4 89 Unit: millivolt
057bc350 90 RW
1da177e4 91
057bc350 92in[0-*]_max Voltage max value.
1da177e4 93 Unit: millivolt
057bc350 94 RW
1da177e4 95
057bc350 96in[0-*]_input Voltage input value.
1da177e4 97 Unit: millivolt
057bc350
RM
98 RO
99 Voltage measured on the chip pin.
1da177e4
LT
100 Actual voltage depends on the scaling resistors on the
101 motherboard, as recommended in the chip datasheet.
102 This varies by chip and by motherboard.
103 Because of this variation, values are generally NOT scaled
104 by the chip driver, and must be done by the application.
105 However, some drivers (notably lm87 and via686a)
057bc350 106 do scale, because of internal resistors built into a chip.
1da177e4
LT
107 These drivers will output the actual voltage.
108
109 Typical usage:
110 in0_* CPU #1 voltage (not scaled)
111 in1_* CPU #2 voltage (not scaled)
112 in2_* 3.3V nominal (not scaled)
113 in3_* 5.0V nominal (scaled)
114 in4_* 12.0V nominal (scaled)
115 in5_* -12.0V nominal (scaled)
116 in6_* -5.0V nominal (scaled)
117 in7_* varies
118 in8_* varies
119
057bc350 120cpu[0-*]_vid CPU core reference voltage.
1da177e4 121 Unit: millivolt
057bc350 122 RO
1da177e4
LT
123 Not always correct.
124
125vrm Voltage Regulator Module version number.
057bc350
RM
126 RW (but changing it should no more be necessary)
127 Originally the VRM standard version multiplied by 10, but now
128 an arbitrary number, as not all standards have a version
129 number.
1da177e4
LT
130 Affects the way the driver calculates the CPU core reference
131 voltage from the vid pins.
132
057bc350
RM
133Also see the Alarms section for status flags associated with voltages.
134
1da177e4
LT
135
136********
137* Fans *
138********
139
057bc350 140fan[1-*]_min Fan minimum value
1da177e4 141 Unit: revolution/min (RPM)
057bc350 142 RW
1da177e4 143
057bc350 144fan[1-*]_input Fan input value.
1da177e4 145 Unit: revolution/min (RPM)
057bc350 146 RO
1da177e4 147
057bc350 148fan[1-*]_div Fan divisor.
1da177e4 149 Integer value in powers of two (1, 2, 4, 8, 16, 32, 64, 128).
057bc350 150 RW
1da177e4
LT
151 Some chips only support values 1, 2, 4 and 8.
152 Note that this is actually an internal clock divisor, which
153 affects the measurable speed range, not the read value.
154
057bc350
RM
155Also see the Alarms section for status flags associated with fans.
156
157
1da177e4
LT
158*******
159* PWM *
160*******
161
057bc350 162pwm[1-*] Pulse width modulation fan control.
1da177e4 163 Integer value in the range 0 to 255
057bc350 164 RW
1da177e4
LT
165 255 is max or 100%.
166
057bc350 167pwm[1-*]_enable
1da177e4 168 Switch PWM on and off.
f8d0c19a 169 Not always present even if pwmN is.
057bc350
RM
170 0: turn off
171 1: turn on in manual mode
172 2+: turn on in automatic mode
f8d0c19a
JD
173 Check individual chip documentation files for automatic mode
174 details.
057bc350
RM
175 RW
176
f8d0c19a
JD
177pwm[1-*]_mode 0: DC mode (direct current)
178 1: PWM mode (pulse-width modulation)
179 RW
180
181pwm[1-*]_freq Base PWM frequency in Hz.
182 Only possibly available when pwmN_mode is PWM, but not always
183 present even then.
057bc350 184 RW
1da177e4
LT
185
186pwm[1-*]_auto_channels_temp
187 Select which temperature channels affect this PWM output in
188 auto mode. Bitfield, 1 is temp1, 2 is temp2, 4 is temp3 etc...
189 Which values are possible depend on the chip used.
057bc350 190 RW
1da177e4
LT
191
192pwm[1-*]_auto_point[1-*]_pwm
193pwm[1-*]_auto_point[1-*]_temp
194pwm[1-*]_auto_point[1-*]_temp_hyst
195 Define the PWM vs temperature curve. Number of trip points is
196 chip-dependent. Use this for chips which associate trip points
197 to PWM output channels.
057bc350 198 RW
1da177e4
LT
199
200OR
201
202temp[1-*]_auto_point[1-*]_pwm
203temp[1-*]_auto_point[1-*]_temp
204temp[1-*]_auto_point[1-*]_temp_hyst
205 Define the PWM vs temperature curve. Number of trip points is
206 chip-dependent. Use this for chips which associate trip points
207 to temperature channels.
057bc350 208 RW
1da177e4
LT
209
210
211****************
212* Temperatures *
213****************
214
057bc350 215temp[1-*]_type Sensor type selection.
61db011d 216 Integers 1 to 6 or thermistor Beta value (typically 3435)
057bc350 217 RW
1da177e4
LT
218 1: PII/Celeron Diode
219 2: 3904 transistor
220 3: thermal diode
e53004e2 221 4: thermistor (default/unknown Beta)
61db011d
RM
222 5: AMD AMDSI
223 6: Intel PECI
1da177e4
LT
224 Not all types are supported by all chips
225
057bc350 226temp[1-*]_max Temperature max value.
740e06a8 227 Unit: millidegree Celsius (or millivolt, see below)
057bc350 228 RW
1da177e4 229
057bc350 230temp[1-*]_min Temperature min value.
740e06a8 231 Unit: millidegree Celsius
057bc350 232 RW
1da177e4 233
057bc350 234temp[1-*]_max_hyst
1da177e4 235 Temperature hysteresis value for max limit.
740e06a8 236 Unit: millidegree Celsius
1da177e4
LT
237 Must be reported as an absolute temperature, NOT a delta
238 from the max value.
057bc350 239 RW
1da177e4 240
057bc350 241temp[1-*]_input Temperature input value.
740e06a8 242 Unit: millidegree Celsius
057bc350 243 RO
1da177e4 244
057bc350 245temp[1-*]_crit Temperature critical value, typically greater than
1da177e4 246 corresponding temp_max values.
740e06a8 247 Unit: millidegree Celsius
057bc350 248 RW
1da177e4 249
057bc350 250temp[1-*]_crit_hyst
1da177e4 251 Temperature hysteresis value for critical limit.
740e06a8 252 Unit: millidegree Celsius
1da177e4
LT
253 Must be reported as an absolute temperature, NOT a delta
254 from the critical value.
057bc350 255 RW
1da177e4 256
59ac8367
HR
257temp[1-4]_offset
258 Temperature offset which is added to the temperature reading
259 by the chip.
260 Unit: millidegree Celsius
261 Read/Write value.
262
1da177e4
LT
263 If there are multiple temperature sensors, temp1_* is
264 generally the sensor inside the chip itself,
265 reported as "motherboard temperature". temp2_* to
266 temp4_* are generally sensors external to the chip
267 itself, for example the thermal diode inside the CPU or
268 a thermistor nearby.
269
740e06a8
JD
270Some chips measure temperature using external thermistors and an ADC, and
271report the temperature measurement as a voltage. Converting this voltage
272back to a temperature (or the other way around for limits) requires
273mathematical functions not available in the kernel, so the conversion
274must occur in user space. For these chips, all temp* files described
275above should contain values expressed in millivolt instead of millidegree
276Celsius. In other words, such temperature channels are handled as voltage
277channels by the driver.
278
057bc350
RM
279Also see the Alarms section for status flags associated with temperatures.
280
1da177e4
LT
281
282************
283* Currents *
284************
285
286Note that no known chip provides current measurements as of writing,
287so this part is theoretical, so to say.
288
057bc350 289curr[1-*]_max Current max value
1da177e4 290 Unit: milliampere
057bc350 291 RW
1da177e4 292
057bc350 293curr[1-*]_min Current min value.
1da177e4 294 Unit: milliampere
057bc350 295 RW
1da177e4 296
057bc350 297curr[1-*]_input Current input value
1da177e4 298 Unit: milliampere
057bc350 299 RO
1da177e4
LT
300
301
400b48ec
JD
302**********
303* Alarms *
304**********
305
306Each channel or limit may have an associated alarm file, containing a
307boolean value. 1 means than an alarm condition exists, 0 means no alarm.
308
309Usually a given chip will either use channel-related alarms, or
310limit-related alarms, not both. The driver should just reflect the hardware
311implementation.
312
057bc350
RM
313in[0-*]_alarm
314fan[1-*]_alarm
315temp[1-*]_alarm
400b48ec 316 Channel alarm
057bc350
RM
317 0: no alarm
318 1: alarm
319 RO
400b48ec
JD
320
321OR
322
057bc350
RM
323in[0-*]_min_alarm
324in[0-*]_max_alarm
325fan[1-*]_min_alarm
326temp[1-*]_min_alarm
327temp[1-*]_max_alarm
328temp[1-*]_crit_alarm
400b48ec 329 Limit alarm
057bc350
RM
330 0: no alarm
331 1: alarm
332 RO
400b48ec
JD
333
334Each input channel may have an associated fault file. This can be used
335to notify open diodes, unconnected fans etc. where the hardware
336supports it. When this boolean has value 1, the measurement for that
337channel should not be trusted.
338
057bc350
RM
339in[0-*]_input_fault
340fan[1-*]_input_fault
341temp[1-*]_input_fault
400b48ec 342 Input fault condition
057bc350
RM
343 0: no fault occured
344 1: fault condition
345 RO
400b48ec
JD
346
347Some chips also offer the possibility to get beeped when an alarm occurs:
348
349beep_enable Master beep enable
057bc350
RM
350 0: no beeps
351 1: beeps
352 RW
400b48ec 353
057bc350
RM
354in[0-*]_beep
355fan[1-*]_beep
356temp[1-*]_beep
400b48ec 357 Channel beep
057bc350
RM
358 0: disable
359 1: enable
360 RW
400b48ec
JD
361
362In theory, a chip could provide per-limit beep masking, but no such chip
363was seen so far.
364
365Old drivers provided a different, non-standard interface to alarms and
366beeps. These interface files are deprecated, but will be kept around
367for compatibility reasons:
1da177e4
LT
368
369alarms Alarm bitmask.
057bc350 370 RO
1da177e4
LT
371 Integer representation of one to four bytes.
372 A '1' bit means an alarm.
373 Chips should be programmed for 'comparator' mode so that
374 the alarm will 'come back' after you read the register
375 if it is still valid.
376 Generally a direct representation of a chip's internal
377 alarm registers; there is no standard for the position
400b48ec
JD
378 of individual bits. For this reason, the use of this
379 interface file for new drivers is discouraged. Use
380 individual *_alarm and *_fault files instead.
1da177e4
LT
381 Bits are defined in kernel/include/sensors.h.
382
1da177e4 383beep_mask Bitmask for beep.
400b48ec
JD
384 Same format as 'alarms' with the same bit locations,
385 use discouraged for the same reason. Use individual
386 *_beep files instead.
057bc350 387 RW
1da177e4 388
400b48ec
JD
389
390*********
391* Other *
392*********
393
1da177e4 394eeprom Raw EEPROM data in binary form.
057bc350 395 RO
c3df5806
JD
396
397pec Enable or disable PEC (SMBus only)
057bc350
RM
398 0: disable
399 1: enable
400 RW