Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | Naming and data format standards for sysfs files |
| 2 | ------------------------------------------------ |
| 3 | |
| 4 | The libsensors library offers an interface to the raw sensors data |
| 5 | through the sysfs interface. See libsensors documentation and source for |
| 6 | more further information. As of writing this document, libsensors |
| 7 | (from lm_sensors 2.8.3) is heavily chip-dependant. Adding or updating |
| 8 | support for any given chip requires modifying the library's code. |
| 9 | This is because libsensors was written for the procfs interface |
| 10 | older kernel modules were using, which wasn't standardized enough. |
| 11 | Recent versions of libsensors (from lm_sensors 2.8.2 and later) have |
| 12 | support for the sysfs interface, though. |
| 13 | |
| 14 | The new sysfs interface was designed to be as chip-independant as |
| 15 | possible. |
| 16 | |
| 17 | Note that motherboards vary widely in the connections to sensor chips. |
| 18 | There is no standard that ensures, for example, that the second |
| 19 | temperature sensor is connected to the CPU, or that the second fan is on |
| 20 | the CPU. Also, some values reported by the chips need some computation |
| 21 | before they make full sense. For example, most chips can only measure |
| 22 | voltages between 0 and +4V. Other voltages are scaled back into that |
| 23 | range using external resistors. Since the values of these resistors |
| 24 | can change from motherboard to motherboard, the conversions cannot be |
| 25 | hard coded into the driver and have to be done in user space. |
| 26 | |
| 27 | For this reason, even if we aim at a chip-independant libsensors, it will |
| 28 | still require a configuration file (e.g. /etc/sensors.conf) for proper |
| 29 | values conversion, labeling of inputs and hiding of unused inputs. |
| 30 | |
| 31 | An alternative method that some programs use is to access the sysfs |
| 32 | files directly. This document briefly describes the standards that the |
| 33 | drivers follow, so that an application program can scan for entries and |
| 34 | access this data in a simple and consistent way. That said, such programs |
| 35 | will have to implement conversion, labeling and hiding of inputs. For |
| 36 | this reason, it is still not recommended to bypass the library. |
| 37 | |
| 38 | If you are developing a userspace application please send us feedback on |
| 39 | this standard. |
| 40 | |
| 41 | Note that this standard isn't completely established yet, so it is subject |
| 42 | to changes, even important ones. One more reason to use the library instead |
| 43 | of accessing sysfs files directly. |
| 44 | |
| 45 | Each chip gets its own directory in the sysfs /sys/devices tree. To |
| 46 | find all sensor chips, it is easier to follow the symlinks from |
| 47 | /sys/i2c/devices/ |
| 48 | |
| 49 | All sysfs values are fixed point numbers. To get the true value of some |
| 50 | of the values, you should divide by the specified value. |
| 51 | |
| 52 | There is only one value per file, unlike the older /proc specification. |
| 53 | The common scheme for files naming is: <type><number>_<item>. Usual |
| 54 | types for sensor chips are "in" (voltage), "temp" (temperature) and |
| 55 | "fan" (fan). Usual items are "input" (measured value), "max" (high |
| 56 | threshold, "min" (low threshold). Numbering usually starts from 1, |
| 57 | except for voltages which start from 0 (because most data sheets use |
| 58 | this). A number is always used for elements that can be present more |
| 59 | than once, even if there is a single element of the given type on the |
| 60 | specific chip. Other files do not refer to a specific element, so |
| 61 | they have a simple name, and no number. |
| 62 | |
| 63 | Alarms are direct indications read from the chips. The drivers do NOT |
| 64 | make comparisons of readings to thresholds. This allows violations |
| 65 | between readings to be caught and alarmed. The exact definition of an |
| 66 | alarm (for example, whether a threshold must be met or must be exceeded |
| 67 | to cause an alarm) is chip-dependent. |
| 68 | |
| 69 | |
| 70 | ------------------------------------------------------------------------- |
| 71 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 72 | [0-*] denotes any positive number starting from 0 |
| 73 | [1-*] denotes any positive number starting from 1 |
| 74 | RO read only value |
| 75 | RW read/write value |
| 76 | |
| 77 | Read/write values may be read-only for some chips, depending on the |
| 78 | hardware implementation. |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | ************ |
| 81 | * Voltages * |
| 82 | ************ |
| 83 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 84 | in[0-*]_min Voltage min value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | Unit: millivolt |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 86 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 88 | in[0-*]_max Voltage max value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | Unit: millivolt |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 90 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 92 | in[0-*]_input Voltage input value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | Unit: millivolt |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 94 | RO |
| 95 | Voltage measured on the chip pin. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | Actual voltage depends on the scaling resistors on the |
| 97 | motherboard, as recommended in the chip datasheet. |
| 98 | This varies by chip and by motherboard. |
| 99 | Because of this variation, values are generally NOT scaled |
| 100 | by the chip driver, and must be done by the application. |
| 101 | However, some drivers (notably lm87 and via686a) |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 102 | do scale, because of internal resistors built into a chip. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | These drivers will output the actual voltage. |
| 104 | |
| 105 | Typical usage: |
| 106 | in0_* CPU #1 voltage (not scaled) |
| 107 | in1_* CPU #2 voltage (not scaled) |
| 108 | in2_* 3.3V nominal (not scaled) |
| 109 | in3_* 5.0V nominal (scaled) |
| 110 | in4_* 12.0V nominal (scaled) |
| 111 | in5_* -12.0V nominal (scaled) |
| 112 | in6_* -5.0V nominal (scaled) |
| 113 | in7_* varies |
| 114 | in8_* varies |
| 115 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 116 | cpu[0-*]_vid CPU core reference voltage. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | Unit: millivolt |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 118 | RO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | Not always correct. |
| 120 | |
| 121 | vrm Voltage Regulator Module version number. |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 122 | RW (but changing it should no more be necessary) |
| 123 | Originally the VRM standard version multiplied by 10, but now |
| 124 | an arbitrary number, as not all standards have a version |
| 125 | number. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | Affects the way the driver calculates the CPU core reference |
| 127 | voltage from the vid pins. |
| 128 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 129 | Also see the Alarms section for status flags associated with voltages. |
| 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
| 132 | ******** |
| 133 | * Fans * |
| 134 | ******** |
| 135 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 136 | fan[1-*]_min Fan minimum value |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | Unit: revolution/min (RPM) |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 138 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 140 | fan[1-*]_input Fan input value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | Unit: revolution/min (RPM) |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 142 | RO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 144 | fan[1-*]_div Fan divisor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | Integer value in powers of two (1, 2, 4, 8, 16, 32, 64, 128). |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 146 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | Some chips only support values 1, 2, 4 and 8. |
| 148 | Note that this is actually an internal clock divisor, which |
| 149 | affects the measurable speed range, not the read value. |
| 150 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 151 | Also see the Alarms section for status flags associated with fans. |
| 152 | |
| 153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | ******* |
| 155 | * PWM * |
| 156 | ******* |
| 157 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 158 | pwm[1-*] Pulse width modulation fan control. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | Integer value in the range 0 to 255 |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 160 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | 255 is max or 100%. |
| 162 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 163 | pwm[1-*]_enable |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | Switch PWM on and off. |
| 165 | Not always present even if fan*_pwm is. |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 166 | 0: turn off |
| 167 | 1: turn on in manual mode |
| 168 | 2+: turn on in automatic mode |
| 169 | Check individual chip documentation files for automatic mode details. |
| 170 | RW |
| 171 | |
| 172 | pwm[1-*]_mode |
| 173 | 0: DC mode |
| 174 | 1: PWM mode |
| 175 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
| 177 | pwm[1-*]_auto_channels_temp |
| 178 | Select which temperature channels affect this PWM output in |
| 179 | auto mode. Bitfield, 1 is temp1, 2 is temp2, 4 is temp3 etc... |
| 180 | Which values are possible depend on the chip used. |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 181 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
| 183 | pwm[1-*]_auto_point[1-*]_pwm |
| 184 | pwm[1-*]_auto_point[1-*]_temp |
| 185 | pwm[1-*]_auto_point[1-*]_temp_hyst |
| 186 | Define the PWM vs temperature curve. Number of trip points is |
| 187 | chip-dependent. Use this for chips which associate trip points |
| 188 | to PWM output channels. |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 189 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
| 191 | OR |
| 192 | |
| 193 | temp[1-*]_auto_point[1-*]_pwm |
| 194 | temp[1-*]_auto_point[1-*]_temp |
| 195 | temp[1-*]_auto_point[1-*]_temp_hyst |
| 196 | Define the PWM vs temperature curve. Number of trip points is |
| 197 | chip-dependent. Use this for chips which associate trip points |
| 198 | to temperature channels. |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 199 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
| 201 | |
| 202 | **************** |
| 203 | * Temperatures * |
| 204 | **************** |
| 205 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 206 | temp[1-*]_type Sensor type selection. |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 207 | Integers 1 to 4 or thermistor Beta value (typically 3435) |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 208 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | 1: PII/Celeron Diode |
| 210 | 2: 3904 transistor |
| 211 | 3: thermal diode |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 212 | 4: thermistor (default/unknown Beta) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | Not all types are supported by all chips |
| 214 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 215 | temp[1-*]_max Temperature max value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | Unit: millidegree Celcius |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 217 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 219 | temp[1-*]_min Temperature min value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | Unit: millidegree Celcius |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 221 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 223 | temp[1-*]_max_hyst |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | Temperature hysteresis value for max limit. |
| 225 | Unit: millidegree Celcius |
| 226 | Must be reported as an absolute temperature, NOT a delta |
| 227 | from the max value. |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 228 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 230 | temp[1-*]_input Temperature input value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | Unit: millidegree Celcius |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 232 | RO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 234 | temp[1-*]_crit Temperature critical value, typically greater than |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | corresponding temp_max values. |
| 236 | Unit: millidegree Celcius |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 237 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 239 | temp[1-*]_crit_hyst |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | Temperature hysteresis value for critical limit. |
| 241 | Unit: millidegree Celcius |
| 242 | Must be reported as an absolute temperature, NOT a delta |
| 243 | from the critical value. |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 244 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
Hartmut Rick | 59ac836 | 2006-03-23 16:37:23 +0100 | [diff] [blame] | 246 | temp[1-4]_offset |
| 247 | Temperature offset which is added to the temperature reading |
| 248 | by the chip. |
| 249 | Unit: millidegree Celsius |
| 250 | Read/Write value. |
| 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | If there are multiple temperature sensors, temp1_* is |
| 253 | generally the sensor inside the chip itself, |
| 254 | reported as "motherboard temperature". temp2_* to |
| 255 | temp4_* are generally sensors external to the chip |
| 256 | itself, for example the thermal diode inside the CPU or |
| 257 | a thermistor nearby. |
| 258 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 259 | Also see the Alarms section for status flags associated with temperatures. |
| 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
| 262 | ************ |
| 263 | * Currents * |
| 264 | ************ |
| 265 | |
| 266 | Note that no known chip provides current measurements as of writing, |
| 267 | so this part is theoretical, so to say. |
| 268 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 269 | curr[1-*]_max Current max value |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | Unit: milliampere |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 271 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 273 | curr[1-*]_min Current min value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | Unit: milliampere |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 275 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 277 | curr[1-*]_input Current input value |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | Unit: milliampere |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 279 | RO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
| 281 | |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 282 | ********** |
| 283 | * Alarms * |
| 284 | ********** |
| 285 | |
| 286 | Each channel or limit may have an associated alarm file, containing a |
| 287 | boolean value. 1 means than an alarm condition exists, 0 means no alarm. |
| 288 | |
| 289 | Usually a given chip will either use channel-related alarms, or |
| 290 | limit-related alarms, not both. The driver should just reflect the hardware |
| 291 | implementation. |
| 292 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 293 | in[0-*]_alarm |
| 294 | fan[1-*]_alarm |
| 295 | temp[1-*]_alarm |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 296 | Channel alarm |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 297 | 0: no alarm |
| 298 | 1: alarm |
| 299 | RO |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 300 | |
| 301 | OR |
| 302 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 303 | in[0-*]_min_alarm |
| 304 | in[0-*]_max_alarm |
| 305 | fan[1-*]_min_alarm |
| 306 | temp[1-*]_min_alarm |
| 307 | temp[1-*]_max_alarm |
| 308 | temp[1-*]_crit_alarm |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 309 | Limit alarm |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 310 | 0: no alarm |
| 311 | 1: alarm |
| 312 | RO |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 313 | |
| 314 | Each input channel may have an associated fault file. This can be used |
| 315 | to notify open diodes, unconnected fans etc. where the hardware |
| 316 | supports it. When this boolean has value 1, the measurement for that |
| 317 | channel should not be trusted. |
| 318 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 319 | in[0-*]_input_fault |
| 320 | fan[1-*]_input_fault |
| 321 | temp[1-*]_input_fault |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 322 | Input fault condition |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 323 | 0: no fault occured |
| 324 | 1: fault condition |
| 325 | RO |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 326 | |
| 327 | Some chips also offer the possibility to get beeped when an alarm occurs: |
| 328 | |
| 329 | beep_enable Master beep enable |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 330 | 0: no beeps |
| 331 | 1: beeps |
| 332 | RW |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 333 | |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 334 | in[0-*]_beep |
| 335 | fan[1-*]_beep |
| 336 | temp[1-*]_beep |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 337 | Channel beep |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 338 | 0: disable |
| 339 | 1: enable |
| 340 | RW |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 341 | |
| 342 | In theory, a chip could provide per-limit beep masking, but no such chip |
| 343 | was seen so far. |
| 344 | |
| 345 | Old drivers provided a different, non-standard interface to alarms and |
| 346 | beeps. These interface files are deprecated, but will be kept around |
| 347 | for compatibility reasons: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
| 349 | alarms Alarm bitmask. |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 350 | RO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | Integer representation of one to four bytes. |
| 352 | A '1' bit means an alarm. |
| 353 | Chips should be programmed for 'comparator' mode so that |
| 354 | the alarm will 'come back' after you read the register |
| 355 | if it is still valid. |
| 356 | Generally a direct representation of a chip's internal |
| 357 | alarm registers; there is no standard for the position |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 358 | of individual bits. For this reason, the use of this |
| 359 | interface file for new drivers is discouraged. Use |
| 360 | individual *_alarm and *_fault files instead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | Bits are defined in kernel/include/sensors.h. |
| 362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | beep_mask Bitmask for beep. |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 364 | Same format as 'alarms' with the same bit locations, |
| 365 | use discouraged for the same reason. Use individual |
| 366 | *_beep files instead. |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 367 | RW |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Jean Delvare | 400b48e | 2006-03-23 16:46:47 +0100 | [diff] [blame] | 369 | |
| 370 | ********* |
| 371 | * Other * |
| 372 | ********* |
| 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | eeprom Raw EEPROM data in binary form. |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 375 | RO |
Jean Delvare | c3df580 | 2005-10-26 21:39:40 +0200 | [diff] [blame] | 376 | |
| 377 | pec Enable or disable PEC (SMBus only) |
Rudolf Marek | 057bc35 | 2006-06-04 20:03:39 +0200 | [diff] [blame^] | 378 | 0: disable |
| 379 | 1: enable |
| 380 | RW |