| 1 | /* |
|---|
| 2 | chips.h - Part of libsensors, a Linux library for reading sensor data. |
|---|
| 3 | Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> |
|---|
| 4 | |
|---|
| 5 | This program is free software; you can redistribute it and/or modify |
|---|
| 6 | it under the terms of the GNU General Public License as published by |
|---|
| 7 | the Free Software Foundation; either version 2 of the License, or |
|---|
| 8 | (at your option) any later version. |
|---|
| 9 | |
|---|
| 10 | This program is distributed in the hope that it will be useful, |
|---|
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 13 | GNU General Public License for more details. |
|---|
| 14 | |
|---|
| 15 | You should have received a copy of the GNU General Public License |
|---|
| 16 | along with this program; if not, write to the Free Software |
|---|
| 17 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
|---|
| 18 | */ |
|---|
| 19 | |
|---|
| 20 | /* This files contains, for each type of chip, the kind of values you can |
|---|
| 21 | read and write. The actual value of each define is completely arbitrary, |
|---|
| 22 | as long as, for one specific chip, each defined value is unique. I tried |
|---|
| 23 | to give similar features similar values, but you can't trust that. |
|---|
| 24 | Some entries are very alike (for example the LM78, LM78-J and LM79 |
|---|
| 25 | defines). Where documented, you can mix the defines. If chip prefixes |
|---|
| 26 | are different, they get their own entry. */ |
|---|
| 27 | |
|---|
| 28 | /* If you add a chip here, do not forget to add the entry in chips.c too. |
|---|
| 29 | Other than that (and a recompile, and a bump up of the library number |
|---|
| 30 | for shared libs) nothing should need to be done to support new chips. */ |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | /* LM78 chips */ |
|---|
| 34 | |
|---|
| 35 | #ifndef LIB_SENSORS_CHIPS_H |
|---|
| 36 | #define LIB_SENSORS_CHIPS_H |
|---|
| 37 | |
|---|
| 38 | #define SENSORS_LM78_PREFIX "lm78" |
|---|
| 39 | |
|---|
| 40 | #define SENSORS_LM78_IN0 1 /* R */ |
|---|
| 41 | #define SENSORS_LM78_IN1 2 /* R */ |
|---|
| 42 | #define SENSORS_LM78_IN2 3 /* R */ |
|---|
| 43 | #define SENSORS_LM78_IN3 4 /* R */ |
|---|
| 44 | #define SENSORS_LM78_IN4 5 /* R */ |
|---|
| 45 | #define SENSORS_LM78_IN5 6 /* R */ |
|---|
| 46 | #define SENSORS_LM78_IN6 7 /* R */ |
|---|
| 47 | #define SENSORS_LM78_IN0_MIN 11 /* RW */ |
|---|
| 48 | #define SENSORS_LM78_IN1_MIN 12 /* RW */ |
|---|
| 49 | #define SENSORS_LM78_IN2_MIN 13 /* RW */ |
|---|
| 50 | #define SENSORS_LM78_IN3_MIN 14 /* RW */ |
|---|
| 51 | #define SENSORS_LM78_IN4_MIN 15 /* RW */ |
|---|
| 52 | #define SENSORS_LM78_IN5_MIN 16 /* RW */ |
|---|
| 53 | #define SENSORS_LM78_IN6_MIN 17 /* RW */ |
|---|
| 54 | #define SENSORS_LM78_IN0_MAX 21 /* RW */ |
|---|
| 55 | #define SENSORS_LM78_IN1_MAX 22 /* RW */ |
|---|
| 56 | #define SENSORS_LM78_IN2_MAX 23 /* RW */ |
|---|
| 57 | #define SENSORS_LM78_IN3_MAX 24 /* RW */ |
|---|
| 58 | #define SENSORS_LM78_IN4_MAX 25 /* RW */ |
|---|
| 59 | #define SENSORS_LM78_IN5_MAX 26 /* RW */ |
|---|
| 60 | #define SENSORS_LM78_IN6_MAX 27 /* RW */ |
|---|
| 61 | #define SENSORS_LM78_FAN1 31 /* R */ |
|---|
| 62 | #define SENSORS_LM78_FAN2 32 /* R */ |
|---|
| 63 | #define SENSORS_LM78_FAN3 33 /* R */ |
|---|
| 64 | #define SENSORS_LM78_FAN1_MIN 41 /* RW */ |
|---|
| 65 | #define SENSORS_LM78_FAN2_MIN 42 /* RW */ |
|---|
| 66 | #define SENSORS_LM78_FAN3_MIN 43 /* RW */ |
|---|
| 67 | #define SENSORS_LM78_TEMP 51 /* R */ |
|---|
| 68 | #define SENSORS_LM78_TEMP_HYST 52 /* RW */ |
|---|
| 69 | #define SENSORS_LM78_TEMP_OVER 53 /* RW */ |
|---|
| 70 | #define SENSORS_LM78_VID 61 /* R */ |
|---|
| 71 | #define SENSORS_LM78_FAN1_DIV 71 /* RW */ |
|---|
| 72 | #define SENSORS_LM78_FAN2_DIV 72 /* RW */ |
|---|
| 73 | #define SENSORS_LM78_FAN3_DIV 73 /* R (yes, really! */ |
|---|
| 74 | #define SENSORS_LM78_ALARMS 81 /* R */ |
|---|
| 75 | |
|---|
| 76 | |
|---|
| 77 | /* LM78-J chips. It is actually safe to use the LM78 defines instead, but it |
|---|
| 78 | is better practice to use these. */ |
|---|
| 79 | |
|---|
| 80 | #define SENSORS_LM78J_PREFIX "lm78-j" |
|---|
| 81 | |
|---|
| 82 | #define SENSORS_LM78J_IN0 1 /* R */ |
|---|
| 83 | #define SENSORS_LM78J_IN1 2 /* R */ |
|---|
| 84 | #define SENSORS_LM78J_IN2 3 /* R */ |
|---|
| 85 | #define SENSORS_LM78J_IN3 4 /* R */ |
|---|
| 86 | #define SENSORS_LM78J_IN4 5 /* R */ |
|---|
| 87 | #define SENSORS_LM78J_IN5 6 /* R */ |
|---|
| 88 | #define SENSORS_LM78J_IN6 7 /* R */ |
|---|
| 89 | #define SENSORS_LM78J_IN0_MIN 11 /* RW */ |
|---|
| 90 | #define SENSORS_LM78J_IN1_MIN 12 /* RW */ |
|---|
| 91 | #define SENSORS_LM78J_IN2_MIN 13 /* RW */ |
|---|
| 92 | #define SENSORS_LM78J_IN3_MIN 14 /* RW */ |
|---|
| 93 | #define SENSORS_LM78J_IN4_MIN 15 /* RW */ |
|---|
| 94 | #define SENSORS_LM78J_IN5_MIN 16 /* RW */ |
|---|
| 95 | #define SENSORS_LM78J_IN6_MIN 17 /* RW */ |
|---|
| 96 | #define SENSORS_LM78J_IN0_MAX 21 /* RW */ |
|---|
| 97 | #define SENSORS_LM78J_IN1_MAX 22 /* RW */ |
|---|
| 98 | #define SENSORS_LM78J_IN2_MAX 23 /* RW */ |
|---|
| 99 | #define SENSORS_LM78J_IN3_MAX 24 /* RW */ |
|---|
| 100 | #define SENSORS_LM78J_IN4_MAX 25 /* RW */ |
|---|
| 101 | #define SENSORS_LM78J_IN5_MAX 26 /* RW */ |
|---|
| 102 | #define SENSORS_LM78J_IN6_MAX 27 /* RW */ |
|---|
| 103 | #define SENSORS_LM78J_FAN1 31 /* R */ |
|---|
| 104 | #define SENSORS_LM78J_FAN2 32 /* R */ |
|---|
| 105 | #define SENSORS_LM78J_FAN3 33 /* R */ |
|---|
| 106 | #define SENSORS_LM78J_FAN1_MIN 41 /* RW */ |
|---|
| 107 | #define SENSORS_LM78J_FAN2_MIN 42 /* RW */ |
|---|
| 108 | #define SENSORS_LM78J_FAN3_MIN 43 /* RW */ |
|---|
| 109 | #define SENSORS_LM78J_TEMP 51 /* R */ |
|---|
| 110 | #define SENSORS_LM78J_TEMP_HYST 52 /* RW */ |
|---|
| 111 | #define SENSORS_LM78J_TEMP_OVER 53 /* RW */ |
|---|
| 112 | #define SENSORS_LM78J_VID 61 /* R */ |
|---|
| 113 | #define SENSORS_LM78J_FAN1_DIV 71 /* RW */ |
|---|
| 114 | #define SENSORS_LM78J_FAN2_DIV 72 /* RW */ |
|---|
| 115 | #define SENSORS_LM78J_FAN3_DIV 73 /* R (yes, really!) */ |
|---|
| 116 | #define SENSORS_LM78J_ALARMS 81 /* R */ |
|---|
| 117 | |
|---|
| 118 | |
|---|
| 119 | /* LM79 chips. It is actually safe to use the LM78 defines instead, but it |
|---|
| 120 | is better practice to use these. */ |
|---|
| 121 | |
|---|
| 122 | #define SENSORS_LM79_PREFIX "lm79" |
|---|
| 123 | |
|---|
| 124 | #define SENSORS_LM79_IN0 1 /* R */ |
|---|
| 125 | #define SENSORS_LM79_IN1 2 /* R */ |
|---|
| 126 | #define SENSORS_LM79_IN2 3 /* R */ |
|---|
| 127 | #define SENSORS_LM79_IN3 4 /* R */ |
|---|
| 128 | #define SENSORS_LM79_IN4 5 /* R */ |
|---|
| 129 | #define SENSORS_LM79_IN5 6 /* R */ |
|---|
| 130 | #define SENSORS_LM79_IN6 7 /* R */ |
|---|
| 131 | #define SENSORS_LM79_IN0_MIN 11 /* RW */ |
|---|
| 132 | #define SENSORS_LM79_IN1_MIN 12 /* RW */ |
|---|
| 133 | #define SENSORS_LM79_IN2_MIN 13 /* RW */ |
|---|
| 134 | #define SENSORS_LM79_IN3_MIN 14 /* RW */ |
|---|
| 135 | #define SENSORS_LM79_IN4_MIN 15 /* RW */ |
|---|
| 136 | #define SENSORS_LM79_IN5_MIN 16 /* RW */ |
|---|
| 137 | #define SENSORS_LM79_IN6_MIN 17 /* RW */ |
|---|
| 138 | #define SENSORS_LM79_IN0_MAX 21 /* RW */ |
|---|
| 139 | #define SENSORS_LM79_IN1_MAX 22 /* RW */ |
|---|
| 140 | #define SENSORS_LM79_IN2_MAX 23 /* RW */ |
|---|
| 141 | #define SENSORS_LM79_IN3_MAX 24 /* RW */ |
|---|
| 142 | #define SENSORS_LM79_IN4_MAX 25 /* R */ |
|---|
| 143 | #define SENSORS_LM79_IN5_MAX 26 /* R */ |
|---|
| 144 | #define SENSORS_LM79_IN6_MAX 27 /* R */ |
|---|
| 145 | #define SENSORS_LM79_FAN1 31 /* R */ |
|---|
| 146 | #define SENSORS_LM79_FAN2 32 /* R */ |
|---|
| 147 | #define SENSORS_LM79_FAN3 33 /* R */ |
|---|
| 148 | #define SENSORS_LM79_FAN1_MIN 41 /* RW */ |
|---|
| 149 | #define SENSORS_LM79_FAN2_MIN 42 /* RW */ |
|---|
| 150 | #define SENSORS_LM79_FAN3_MIN 43 /* RW */ |
|---|
| 151 | #define SENSORS_LM79_TEMP 51 /* R */ |
|---|
| 152 | #define SENSORS_LM79_TEMP_HYST 52 /* RW */ |
|---|
| 153 | #define SENSORS_LM79_TEMP_OVER 53 /* RW */ |
|---|
| 154 | #define SENSORS_LM79_VID 61 /* R */ |
|---|
| 155 | #define SENSORS_LM79_FAN1_DIV 71 /* RW */ |
|---|
| 156 | #define SENSORS_LM79_FAN2_DIV 72 /* RW */ |
|---|
| 157 | #define SENSORS_LM79_FAN3_DIV 73 /* R (yes, really! */ |
|---|
| 158 | #define SENSORS_LM79_ALARMS 81 /* R */ |
|---|
| 159 | |
|---|
| 160 | |
|---|
| 161 | /* LM75 chips. */ |
|---|
| 162 | |
|---|
| 163 | #define SENSORS_LM75_PREFIX "lm75" |
|---|
| 164 | |
|---|
| 165 | #define SENSORS_LM75_TEMP 51 /* R */ |
|---|
| 166 | #define SENSORS_LM75_TEMP_HYST 52 /* RW */ |
|---|
| 167 | #define SENSORS_LM75_TEMP_OVER 53 /* RW */ |
|---|
| 168 | |
|---|
| 169 | /* ADM1021 chips. */ |
|---|
| 170 | |
|---|
| 171 | #define SENSORS_ADM1021_PREFIX "adm1021" |
|---|
| 172 | /* Cheat on LM84,GL523,THMC10,1023 for now - no separate #defines */ |
|---|
| 173 | #define SENSORS_ADM1023_PREFIX "adm1023" |
|---|
| 174 | #define SENSORS_LM84_PREFIX "lm84" |
|---|
| 175 | #define SENSORS_GL523_PREFIX "gl523" |
|---|
| 176 | #define SENSORS_THMC10_PREFIX "thmc10" |
|---|
| 177 | |
|---|
| 178 | #define SENSORS_ADM1021_TEMP 51 /* R */ |
|---|
| 179 | #define SENSORS_ADM1021_TEMP_HYST 52 /* RW */ |
|---|
| 180 | #define SENSORS_ADM1021_TEMP_OVER 53 /* RW */ |
|---|
| 181 | #define SENSORS_ADM1021_REMOTE_TEMP 54 /* R */ |
|---|
| 182 | #define SENSORS_ADM1021_REMOTE_TEMP_HYST 55 /* RW */ |
|---|
| 183 | #define SENSORS_ADM1021_REMOTE_TEMP_OVER 56 /* RW */ |
|---|
| 184 | #define SENSORS_ADM1021_ALARMS 81 /* R */ |
|---|
| 185 | #define SENSORS_ADM1021_DIE_CODE 90 /* R */ |
|---|
| 186 | |
|---|
| 187 | /* MAX1617 chips. */ |
|---|
| 188 | |
|---|
| 189 | #define SENSORS_MAX1617_PREFIX "max1617" |
|---|
| 190 | #define SENSORS_MC1066_PREFIX "mc1066" |
|---|
| 191 | |
|---|
| 192 | #define SENSORS_MAX1617_TEMP 51 /* R */ |
|---|
| 193 | #define SENSORS_MAX1617_TEMP_HYST 52 /* RW */ |
|---|
| 194 | #define SENSORS_MAX1617_TEMP_OVER 53 /* RW */ |
|---|
| 195 | #define SENSORS_MAX1617_REMOTE_TEMP 54 /* R */ |
|---|
| 196 | #define SENSORS_MAX1617_REMOTE_TEMP_HYST 55 /* RW */ |
|---|
| 197 | #define SENSORS_MAX1617_REMOTE_TEMP_OVER 56 /* RW */ |
|---|
| 198 | #define SENSORS_MAX1617_ALARMS 81 /* R */ |
|---|
| 199 | |
|---|
| 200 | /* MAX1617A chips. */ |
|---|
| 201 | |
|---|
| 202 | #define SENSORS_MAX1617A_PREFIX "max1617a" |
|---|
| 203 | |
|---|
| 204 | #define SENSORS_MAX1617A_TEMP 51 /* R */ |
|---|
| 205 | #define SENSORS_MAX1617A_TEMP_HYST 52 /* RW */ |
|---|
| 206 | #define SENSORS_MAX1617A_TEMP_OVER 53 /* RW */ |
|---|
| 207 | #define SENSORS_MAX1617A_REMOTE_TEMP 54 /* R */ |
|---|
| 208 | #define SENSORS_MAX1617A_REMOTE_TEMP_HYST 55 /* RW */ |
|---|
| 209 | #define SENSORS_MAX1617A_REMOTE_TEMP_OVER 56 /* RW */ |
|---|
| 210 | #define SENSORS_MAX1617A_ALARMS 81 /* R */ |
|---|
| 211 | |
|---|
| 212 | /* GL518SM chips */ |
|---|
| 213 | |
|---|
| 214 | #define SENSORS_GL518_PREFIX "gl518sm" |
|---|
| 215 | |
|---|
| 216 | #define SENSORS_GL518_VDD 1 /* R */ |
|---|
| 217 | #define SENSORS_GL518_VIN1 2 /* R */ |
|---|
| 218 | #define SENSORS_GL518_VIN2 3 /* R */ |
|---|
| 219 | #define SENSORS_GL518_VIN3 4 /* R */ |
|---|
| 220 | #define SENSORS_GL518_VDD_MIN 11 /* RW */ |
|---|
| 221 | #define SENSORS_GL518_VIN1_MIN 12 /* RW */ |
|---|
| 222 | #define SENSORS_GL518_VIN2_MIN 13 /* RW */ |
|---|
| 223 | #define SENSORS_GL518_VIN3_MIN 14 /* RW */ |
|---|
| 224 | #define SENSORS_GL518_VDD_MAX 21 /* RW */ |
|---|
| 225 | #define SENSORS_GL518_VIN1_MAX 22 /* RW */ |
|---|
| 226 | #define SENSORS_GL518_VIN2_MAX 23 /* RW */ |
|---|
| 227 | #define SENSORS_GL518_VIN3_MAX 24 /* RW */ |
|---|
| 228 | #define SENSORS_GL518_FAN1 31 /* R */ |
|---|
| 229 | #define SENSORS_GL518_FAN2 32 /* R */ |
|---|
| 230 | #define SENSORS_GL518_FAN1_MIN 41 /* RW */ |
|---|
| 231 | #define SENSORS_GL518_FAN2_MIN 42 /* RW */ |
|---|
| 232 | #define SENSORS_GL518_TEMP 51 /* R */ |
|---|
| 233 | #define SENSORS_GL518_TEMP_HYST 52 /* RW */ |
|---|
| 234 | #define SENSORS_GL518_TEMP_OVER 53 /* RW */ |
|---|
| 235 | #define SENSORS_GL518_FAN1_DIV 71 /* RW */ |
|---|
| 236 | #define SENSORS_GL518_FAN2_DIV 72 /* RW */ |
|---|
| 237 | #define SENSORS_GL518_ALARMS 81 /* R */ |
|---|
| 238 | #define SENSORS_GL518_BEEP_ENABLE 82 /* RW */ |
|---|
| 239 | #define SENSORS_GL518_BEEPS 83 /* RW */ |
|---|
| 240 | #define SENSORS_GL518_ITERATE 84 /* RW */ |
|---|
| 241 | #define SENSORS_GL518_FAN1OFF 85 /* RW */ |
|---|
| 242 | #define SENSORS_GL518_FAN1PIN 86 /* RW */ |
|---|
| 243 | |
|---|
| 244 | /* GL520SM chips */ |
|---|
| 245 | |
|---|
| 246 | #define SENSORS_GL520_PREFIX "gl520sm" |
|---|
| 247 | |
|---|
| 248 | #define SENSORS_GL520_VDD 1 /* R */ |
|---|
| 249 | #define SENSORS_GL520_VIN1 2 /* R */ |
|---|
| 250 | #define SENSORS_GL520_VIN2 3 /* R */ |
|---|
| 251 | #define SENSORS_GL520_VIN3 4 /* R */ |
|---|
| 252 | #define SENSORS_GL520_VIN4 5 /* R */ |
|---|
| 253 | #define SENSORS_GL520_VDD_MIN 11 /* RW */ |
|---|
| 254 | #define SENSORS_GL520_VIN1_MIN 12 /* RW */ |
|---|
| 255 | #define SENSORS_GL520_VIN2_MIN 13 /* RW */ |
|---|
| 256 | #define SENSORS_GL520_VIN3_MIN 14 /* RW */ |
|---|
| 257 | #define SENSORS_GL520_VIN4_MIN 15 /* RW */ |
|---|
| 258 | #define SENSORS_GL520_VDD_MAX 21 /* RW */ |
|---|
| 259 | #define SENSORS_GL520_VIN1_MAX 22 /* RW */ |
|---|
| 260 | #define SENSORS_GL520_VIN2_MAX 23 /* RW */ |
|---|
| 261 | #define SENSORS_GL520_VIN3_MAX 24 /* RW */ |
|---|
| 262 | #define SENSORS_GL520_VIN4_MAX 25 /* RW */ |
|---|
| 263 | #define SENSORS_GL520_FAN1 31 /* R */ |
|---|
| 264 | #define SENSORS_GL520_FAN2 32 /* R */ |
|---|
| 265 | #define SENSORS_GL520_FAN1_MIN 41 /* RW */ |
|---|
| 266 | #define SENSORS_GL520_FAN2_MIN 42 /* RW */ |
|---|
| 267 | #define SENSORS_GL520_TEMP1 51 /* R */ |
|---|
| 268 | #define SENSORS_GL520_TEMP1_HYST 52 /* RW */ |
|---|
| 269 | #define SENSORS_GL520_TEMP1_OVER 53 /* RW */ |
|---|
| 270 | #define SENSORS_GL520_TEMP2 54 /* R */ |
|---|
| 271 | #define SENSORS_GL520_TEMP2_HYST 55 /* RW */ |
|---|
| 272 | #define SENSORS_GL520_TEMP2_OVER 56 /* RW */ |
|---|
| 273 | #define SENSORS_GL520_VID 61 /* R */ |
|---|
| 274 | #define SENSORS_GL520_FAN1_DIV 71 /* RW */ |
|---|
| 275 | #define SENSORS_GL520_FAN2_DIV 72 /* RW */ |
|---|
| 276 | #define SENSORS_GL520_ALARMS 81 /* R */ |
|---|
| 277 | #define SENSORS_GL520_BEEP_ENABLE 82 /* RW */ |
|---|
| 278 | #define SENSORS_GL520_BEEPS 83 /* RW */ |
|---|
| 279 | #define SENSORS_GL520_TWOTEMPS 84 /* RW */ |
|---|
| 280 | #define SENSORS_GL520_FAN1OFF 85 /* RW */ |
|---|
| 281 | |
|---|
| 282 | /* LM80 chips */ |
|---|
| 283 | |
|---|
| 284 | #define SENSORS_LM80_PREFIX "lm80" |
|---|
| 285 | |
|---|
| 286 | #define SENSORS_LM80_IN0 1 /* R */ |
|---|
| 287 | #define SENSORS_LM80_IN1 2 /* R */ |
|---|
| 288 | #define SENSORS_LM80_IN2 3 /* R */ |
|---|
| 289 | #define SENSORS_LM80_IN3 4 /* R */ |
|---|
| 290 | #define SENSORS_LM80_IN4 5 /* R */ |
|---|
| 291 | #define SENSORS_LM80_IN5 6 /* R */ |
|---|
| 292 | #define SENSORS_LM80_IN6 7 /* R */ |
|---|
| 293 | #define SENSORS_LM80_IN0_MIN 11 /* RW */ |
|---|
| 294 | #define SENSORS_LM80_IN1_MIN 12 /* RW */ |
|---|
| 295 | #define SENSORS_LM80_IN2_MIN 13 /* RW */ |
|---|
| 296 | #define SENSORS_LM80_IN3_MIN 14 /* RW */ |
|---|
| 297 | #define SENSORS_LM80_IN4_MIN 15 /* RW */ |
|---|
| 298 | #define SENSORS_LM80_IN5_MIN 16 /* RW */ |
|---|
| 299 | #define SENSORS_LM80_IN6_MIN 17 /* RW */ |
|---|
| 300 | #define SENSORS_LM80_IN0_MAX 21 /* RW */ |
|---|
| 301 | #define SENSORS_LM80_IN1_MAX 22 /* RW */ |
|---|
| 302 | #define SENSORS_LM80_IN2_MAX 23 /* RW */ |
|---|
| 303 | #define SENSORS_LM80_IN3_MAX 24 /* RW */ |
|---|
| 304 | #define SENSORS_LM80_IN4_MAX 25 /* R */ |
|---|
| 305 | #define SENSORS_LM80_IN5_MAX 26 /* R */ |
|---|
| 306 | #define SENSORS_LM80_IN6_MAX 27 /* R */ |
|---|
| 307 | #define SENSORS_LM80_FAN1 31 /* R */ |
|---|
| 308 | #define SENSORS_LM80_FAN2 32 /* R */ |
|---|
| 309 | #define SENSORS_LM80_FAN1_MIN 41 /* RW */ |
|---|
| 310 | #define SENSORS_LM80_FAN2_MIN 42 /* RW */ |
|---|
| 311 | #define SENSORS_LM80_TEMP 51 /* R */ |
|---|
| 312 | #define SENSORS_LM80_TEMP_HOT_HYST 52 /* RW */ |
|---|
| 313 | #define SENSORS_LM80_TEMP_HOT_MAX 53 /* RW */ |
|---|
| 314 | #define SENSORS_LM80_TEMP_OS_HYST 54 /* RW */ |
|---|
| 315 | #define SENSORS_LM80_TEMP_OS_MAX 55 /* RW */ |
|---|
| 316 | #define SENSORS_LM80_FAN1_DIV 71 /* RW */ |
|---|
| 317 | #define SENSORS_LM80_FAN2_DIV 72 /* RW */ |
|---|
| 318 | #define SENSORS_LM80_ALARMS 81 /* R */ |
|---|
| 319 | |
|---|
| 320 | |
|---|
| 321 | /* Winbond W83781D chips */ |
|---|
| 322 | |
|---|
| 323 | #define SENSORS_W83781D_PREFIX "w83781d" |
|---|
| 324 | |
|---|
| 325 | #define SENSORS_W83781D_IN0 1 /* R */ |
|---|
| 326 | #define SENSORS_W83781D_IN1 2 /* R */ |
|---|
| 327 | #define SENSORS_W83781D_IN2 3 /* R */ |
|---|
| 328 | #define SENSORS_W83781D_IN3 4 /* R */ |
|---|
| 329 | #define SENSORS_W83781D_IN4 5 /* R */ |
|---|
| 330 | #define SENSORS_W83781D_IN5 6 /* R */ |
|---|
| 331 | #define SENSORS_W83781D_IN6 7 /* R */ |
|---|
| 332 | #define SENSORS_W83781D_IN0_MIN 11 /* RW */ |
|---|
| 333 | #define SENSORS_W83781D_IN1_MIN 12 /* RW */ |
|---|
| 334 | #define SENSORS_W83781D_IN2_MIN 13 /* RW */ |
|---|
| 335 | #define SENSORS_W83781D_IN3_MIN 14 /* RW */ |
|---|
| 336 | #define SENSORS_W83781D_IN4_MIN 15 /* RW */ |
|---|
| 337 | #define SENSORS_W83781D_IN5_MIN 16 /* RW */ |
|---|
| 338 | #define SENSORS_W83781D_IN6_MIN 17 /* RW */ |
|---|
| 339 | #define SENSORS_W83781D_IN0_MAX 21 /* RW */ |
|---|
| 340 | #define SENSORS_W83781D_IN1_MAX 22 /* RW */ |
|---|
| 341 | #define SENSORS_W83781D_IN2_MAX 23 /* RW */ |
|---|
| 342 | #define SENSORS_W83781D_IN3_MAX 24 /* RW */ |
|---|
| 343 | #define SENSORS_W83781D_IN4_MAX 25 /* RW */ |
|---|
| 344 | #define SENSORS_W83781D_IN5_MAX 26 /* RW */ |
|---|
| 345 | #define SENSORS_W83781D_IN6_MAX 27 /* RW */ |
|---|
| 346 | #define SENSORS_W83781D_FAN1 31 /* R */ |
|---|
| 347 | #define SENSORS_W83781D_FAN2 32 /* R */ |
|---|
| 348 | #define SENSORS_W83781D_FAN3 33 /* R */ |
|---|
| 349 | #define SENSORS_W83781D_FAN1_MIN 41 /* RW */ |
|---|
| 350 | #define SENSORS_W83781D_FAN2_MIN 42 /* RW */ |
|---|
| 351 | #define SENSORS_W83781D_FAN3_MIN 43 /* RW */ |
|---|
| 352 | #define SENSORS_W83781D_TEMP1 51 /* R */ |
|---|
| 353 | #define SENSORS_W83781D_TEMP1_HYST 52 /* RW */ |
|---|
| 354 | #define SENSORS_W83781D_TEMP1_OVER 53 /* RW */ |
|---|
| 355 | #define SENSORS_W83781D_TEMP2 54 /* R */ |
|---|
| 356 | #define SENSORS_W83781D_TEMP2_HYST 55 /* RW */ |
|---|
| 357 | #define SENSORS_W83781D_TEMP2_OVER 56 /* RW */ |
|---|
| 358 | #define SENSORS_W83781D_TEMP3 57 /* R */ |
|---|
| 359 | #define SENSORS_W83781D_TEMP3_HYST 58 /* RW */ |
|---|
| 360 | #define SENSORS_W83781D_TEMP3_OVER 59 /* RW */ |
|---|
| 361 | #define SENSORS_W83781D_VID 61 /* R */ |
|---|
| 362 | #define SENSORS_W83781D_VRM 62 /* RW */ |
|---|
| 363 | #define SENSORS_W83781D_FAN1_DIV 71 /* RW */ |
|---|
| 364 | #define SENSORS_W83781D_FAN2_DIV 72 /* RW */ |
|---|
| 365 | #define SENSORS_W83781D_FAN3_DIV 73 /* R (yes, really! */ |
|---|
| 366 | #define SENSORS_W83781D_ALARMS 81 /* R */ |
|---|
| 367 | #define SENSORS_W83781D_BEEP_ENABLE 82 /* RW */ |
|---|
| 368 | #define SENSORS_W83781D_BEEPS 83 /* RW */ |
|---|
| 369 | #define SENSORS_W83781D_SENS1 91 /* RW */ |
|---|
| 370 | #define SENSORS_W83781D_SENS2 92 /* RW */ |
|---|
| 371 | #define SENSORS_W83781D_SENS3 93 /* RW */ |
|---|
| 372 | |
|---|
| 373 | |
|---|
| 374 | /* Winbond W83782D chips */ |
|---|
| 375 | /* Cheat on 627HF for now - no separate #defines */ |
|---|
| 376 | /* Cheat on 127F for now - no separate #defines */ |
|---|
| 377 | |
|---|
| 378 | #define SENSORS_W83782D_PREFIX "w83782d" |
|---|
| 379 | #define SENSORS_W83627HF_PREFIX "w83627hf" |
|---|
| 380 | #define SENSORS_AS99127F_PREFIX "as99127f" |
|---|
| 381 | |
|---|
| 382 | #define SENSORS_W83782D_IN0 1 /* R */ |
|---|
| 383 | #define SENSORS_W83782D_IN1 2 /* R */ |
|---|
| 384 | #define SENSORS_W83782D_IN2 3 /* R */ |
|---|
| 385 | #define SENSORS_W83782D_IN3 4 /* R */ |
|---|
| 386 | #define SENSORS_W83782D_IN4 5 /* R */ |
|---|
| 387 | #define SENSORS_W83782D_IN5 6 /* R */ |
|---|
| 388 | #define SENSORS_W83782D_IN6 7 /* R */ |
|---|
| 389 | #define SENSORS_W83782D_IN7 8 /* R */ |
|---|
| 390 | #define SENSORS_W83782D_IN8 9 /* R */ |
|---|
| 391 | #define SENSORS_W83782D_IN0_MIN 11 /* RW */ |
|---|
| 392 | #define SENSORS_W83782D_IN1_MIN 12 /* RW */ |
|---|
| 393 | #define SENSORS_W83782D_IN2_MIN 13 /* RW */ |
|---|
| 394 | #define SENSORS_W83782D_IN3_MIN 14 /* RW */ |
|---|
| 395 | #define SENSORS_W83782D_IN4_MIN 15 /* RW */ |
|---|
| 396 | #define SENSORS_W83782D_IN5_MIN 16 /* RW */ |
|---|
| 397 | #define SENSORS_W83782D_IN6_MIN 17 /* RW */ |
|---|
| 398 | #define SENSORS_W83782D_IN7_MIN 18 /* RW */ |
|---|
| 399 | #define SENSORS_W83782D_IN8_MIN 19 /* RW */ |
|---|
| 400 | #define SENSORS_W83782D_IN0_MAX 21 /* RW */ |
|---|
| 401 | #define SENSORS_W83782D_IN1_MAX 22 /* RW */ |
|---|
| 402 | #define SENSORS_W83782D_IN2_MAX 23 /* RW */ |
|---|
| 403 | #define SENSORS_W83782D_IN3_MAX 24 /* RW */ |
|---|
| 404 | #define SENSORS_W83782D_IN4_MAX 25 /* RW */ |
|---|
| 405 | #define SENSORS_W83782D_IN5_MAX 26 /* RW */ |
|---|
| 406 | #define SENSORS_W83782D_IN6_MAX 27 /* RW */ |
|---|
| 407 | #define SENSORS_W83782D_IN7_MAX 28 /* RW */ |
|---|
| 408 | #define SENSORS_W83782D_IN8_MAX 29 /* RW */ |
|---|
| 409 | #define SENSORS_W83782D_FAN1 31 /* R */ |
|---|
| 410 | #define SENSORS_W83782D_FAN2 32 /* R */ |
|---|
| 411 | #define SENSORS_W83782D_FAN3 33 /* R */ |
|---|
| 412 | #define SENSORS_W83782D_FAN1_MIN 41 /* RW */ |
|---|
| 413 | #define SENSORS_W83782D_FAN2_MIN 42 /* RW */ |
|---|
| 414 | #define SENSORS_W83782D_FAN3_MIN 43 /* RW */ |
|---|
| 415 | #define SENSORS_W83782D_TEMP1 51 /* R */ |
|---|
| 416 | #define SENSORS_W83782D_TEMP1_HYST 52 /* RW */ |
|---|
| 417 | #define SENSORS_W83782D_TEMP1_OVER 53 /* RW */ |
|---|
| 418 | #define SENSORS_W83782D_TEMP2 54 /* R */ |
|---|
| 419 | #define SENSORS_W83782D_TEMP2_HYST 55 /* RW */ |
|---|
| 420 | #define SENSORS_W83782D_TEMP2_OVER 56 /* RW */ |
|---|
| 421 | #define SENSORS_W83782D_TEMP3 57 /* R */ |
|---|
| 422 | #define SENSORS_W83782D_TEMP3_HYST 58 /* RW */ |
|---|
| 423 | #define SENSORS_W83782D_TEMP3_OVER 59 /* RW */ |
|---|
| 424 | #define SENSORS_W83782D_VID 61 /* R */ |
|---|
| 425 | #define SENSORS_W83782D_VRM 62 /* RW */ |
|---|
| 426 | #define SENSORS_W83782D_FAN1_DIV 71 /* RW */ |
|---|
| 427 | #define SENSORS_W83782D_FAN2_DIV 72 /* RW */ |
|---|
| 428 | #define SENSORS_W83782D_FAN3_DIV 73 /* R (yes, really! */ |
|---|
| 429 | #define SENSORS_W83782D_ALARMS 81 /* R */ |
|---|
| 430 | #define SENSORS_W83782D_BEEP_ENABLE 82 /* RW */ |
|---|
| 431 | #define SENSORS_W83782D_BEEPS 83 /* RW */ |
|---|
| 432 | #define SENSORS_W83782D_SENS1 91 /* RW */ |
|---|
| 433 | #define SENSORS_W83782D_SENS2 92 /* RW */ |
|---|
| 434 | #define SENSORS_W83782D_SENS3 93 /* RW */ |
|---|
| 435 | |
|---|
| 436 | |
|---|
| 437 | /* Winbond W83783S chips */ |
|---|
| 438 | /* Cheat on 697HF for now - no separate #defines */ |
|---|
| 439 | |
|---|
| 440 | #define SENSORS_W83783S_PREFIX "w83783s" |
|---|
| 441 | #define SENSORS_W83697HF_PREFIX "w83697hf" |
|---|
| 442 | |
|---|
| 443 | #define SENSORS_W83783S_IN0 1 /* R */ |
|---|
| 444 | #define SENSORS_W83783S_IN1 2 /* R */ |
|---|
| 445 | #define SENSORS_W83783S_IN2 3 /* R */ |
|---|
| 446 | #define SENSORS_W83783S_IN3 4 /* R */ |
|---|
| 447 | #define SENSORS_W83783S_IN4 5 /* R */ |
|---|
| 448 | #define SENSORS_W83783S_IN5 6 /* R */ |
|---|
| 449 | #define SENSORS_W83783S_IN6 7 /* R */ |
|---|
| 450 | #define SENSORS_W83783S_IN0_MIN 11 /* RW */ |
|---|
| 451 | #define SENSORS_W83783S_IN1_MIN 12 /* RW */ |
|---|
| 452 | #define SENSORS_W83783S_IN2_MIN 13 /* RW */ |
|---|
| 453 | #define SENSORS_W83783S_IN3_MIN 14 /* RW */ |
|---|
| 454 | #define SENSORS_W83783S_IN4_MIN 15 /* RW */ |
|---|
| 455 | #define SENSORS_W83783S_IN5_MIN 16 /* RW */ |
|---|
| 456 | #define SENSORS_W83783S_IN6_MIN 17 /* RW */ |
|---|
| 457 | #define SENSORS_W83783S_IN0_MAX 21 /* RW */ |
|---|
| 458 | #define SENSORS_W83783S_IN1_MAX 22 /* RW */ |
|---|
| 459 | #define SENSORS_W83783S_IN2_MAX 23 /* RW */ |
|---|
| 460 | #define SENSORS_W83783S_IN3_MAX 24 /* RW */ |
|---|
| 461 | #define SENSORS_W83783S_IN4_MAX 25 /* RW */ |
|---|
| 462 | #define SENSORS_W83783S_IN5_MAX 26 /* RW */ |
|---|
| 463 | #define SENSORS_W83783S_IN6_MAX 27 /* RW */ |
|---|
| 464 | #define SENSORS_W83783S_FAN1 31 /* R */ |
|---|
| 465 | #define SENSORS_W83783S_FAN2 32 /* R */ |
|---|
| 466 | #define SENSORS_W83783S_FAN3 33 /* R */ |
|---|
| 467 | #define SENSORS_W83783S_FAN1_MIN 41 /* RW */ |
|---|
| 468 | #define SENSORS_W83783S_FAN2_MIN 42 /* RW */ |
|---|
| 469 | #define SENSORS_W83783S_FAN3_MIN 43 /* RW */ |
|---|
| 470 | #define SENSORS_W83783S_TEMP1 51 /* R */ |
|---|
| 471 | #define SENSORS_W83783S_TEMP1_HYST 52 /* RW */ |
|---|
| 472 | #define SENSORS_W83783S_TEMP1_OVER 53 /* RW */ |
|---|
| 473 | #define SENSORS_W83783S_TEMP2 54 /* R */ |
|---|
| 474 | #define SENSORS_W83783S_TEMP2_HYST 55 /* RW */ |
|---|
| 475 | #define SENSORS_W83783S_TEMP2_OVER 56 /* RW */ |
|---|
| 476 | #define SENSORS_W83783S_VID 61 /* R */ |
|---|
| 477 | #define SENSORS_W83783S_VRM 62 /* RW */ |
|---|
| 478 | #define SENSORS_W83783S_FAN1_DIV 71 /* RW */ |
|---|
| 479 | #define SENSORS_W83783S_FAN2_DIV 72 /* RW */ |
|---|
| 480 | #define SENSORS_W83783S_FAN3_DIV 73 /* R (yes, really! */ |
|---|
| 481 | #define SENSORS_W83783S_ALARMS 81 /* R */ |
|---|
| 482 | #define SENSORS_W83783S_BEEP_ENABLE 82 /* RW */ |
|---|
| 483 | #define SENSORS_W83783S_BEEPS 83 /* RW */ |
|---|
| 484 | #define SENSORS_W83783S_SENS1 91 /* RW */ |
|---|
| 485 | #define SENSORS_W83783S_SENS2 92 /* RW */ |
|---|
| 486 | |
|---|
| 487 | |
|---|
| 488 | /* Analog Devices ADM9240 chips */ |
|---|
| 489 | |
|---|
| 490 | #define SENSORS_ADM9240_PREFIX "adm9240" |
|---|
| 491 | /* Cheat on LM81 for now - no separate #defines */ |
|---|
| 492 | #define SENSORS_LM81_PREFIX "lm81" |
|---|
| 493 | |
|---|
| 494 | #define SENSORS_ADM9240_IN0 1 /* R */ |
|---|
| 495 | #define SENSORS_ADM9240_IN1 2 /* R */ |
|---|
| 496 | #define SENSORS_ADM9240_IN2 3 /* R */ |
|---|
| 497 | #define SENSORS_ADM9240_IN3 4 /* R */ |
|---|
| 498 | #define SENSORS_ADM9240_IN4 5 /* R */ |
|---|
| 499 | #define SENSORS_ADM9240_IN5 6 /* R */ |
|---|
| 500 | #define SENSORS_ADM9240_IN0_MIN 11 /* RW */ |
|---|
| 501 | #define SENSORS_ADM9240_IN1_MIN 12 /* RW */ |
|---|
| 502 | #define SENSORS_ADM9240_IN2_MIN 13 /* RW */ |
|---|
| 503 | #define SENSORS_ADM9240_IN3_MIN 14 /* RW */ |
|---|
| 504 | #define SENSORS_ADM9240_IN4_MIN 15 /* RW */ |
|---|
| 505 | #define SENSORS_ADM9240_IN5_MIN 16 /* RW */ |
|---|
| 506 | #define SENSORS_ADM9240_IN0_MAX 21 /* RW */ |
|---|
| 507 | #define SENSORS_ADM9240_IN1_MAX 22 /* RW */ |
|---|
| 508 | #define SENSORS_ADM9240_IN2_MAX 23 /* RW */ |
|---|
| 509 | #define SENSORS_ADM9240_IN3_MAX 24 /* RW */ |
|---|
| 510 | #define SENSORS_ADM9240_IN4_MAX 25 /* RW */ |
|---|
| 511 | #define SENSORS_ADM9240_IN5_MAX 26 /* RW */ |
|---|
| 512 | #define SENSORS_ADM9240_FAN1 31 /* R */ |
|---|
| 513 | #define SENSORS_ADM9240_FAN2 32 /* R */ |
|---|
| 514 | #define SENSORS_ADM9240_FAN1_MIN 41 /* RW */ |
|---|
| 515 | #define SENSORS_ADM9240_FAN2_MIN 42 /* RW */ |
|---|
| 516 | #define SENSORS_ADM9240_TEMP 51 /* R */ |
|---|
| 517 | #define SENSORS_ADM9240_TEMP_HYST 52 /* RW */ |
|---|
| 518 | #define SENSORS_ADM9240_TEMP_OVER 53 /* RW */ |
|---|
| 519 | #define SENSORS_ADM9240_VID 61 /* R */ |
|---|
| 520 | #define SENSORS_ADM9240_FAN1_DIV 71 /* RW */ |
|---|
| 521 | #define SENSORS_ADM9240_FAN2_DIV 72 /* RW */ |
|---|
| 522 | #define SENSORS_ADM9240_ALARMS 81 /* R */ |
|---|
| 523 | #define SENSORS_ADM9240_ANALOG_OUT 82 /* RW */ |
|---|
| 524 | |
|---|
| 525 | /* Analog Devices ADM9240 chips */ |
|---|
| 526 | |
|---|
| 527 | #define SENSORS_DS1780_PREFIX "ds1780" |
|---|
| 528 | |
|---|
| 529 | #define SENSORS_DS1780_IN0 1 /* R */ |
|---|
| 530 | #define SENSORS_DS1780_IN1 2 /* R */ |
|---|
| 531 | #define SENSORS_DS1780_IN2 3 /* R */ |
|---|
| 532 | #define SENSORS_DS1780_IN3 4 /* R */ |
|---|
| 533 | #define SENSORS_DS1780_IN4 5 /* R */ |
|---|
| 534 | #define SENSORS_DS1780_IN5 6 /* R */ |
|---|
| 535 | #define SENSORS_DS1780_IN0_MIN 11 /* RW */ |
|---|
| 536 | #define SENSORS_DS1780_IN1_MIN 12 /* RW */ |
|---|
| 537 | #define SENSORS_DS1780_IN2_MIN 13 /* RW */ |
|---|
| 538 | #define SENSORS_DS1780_IN3_MIN 14 /* RW */ |
|---|
| 539 | #define SENSORS_DS1780_IN4_MIN 15 /* RW */ |
|---|
| 540 | #define SENSORS_DS1780_IN5_MIN 16 /* RW */ |
|---|
| 541 | #define SENSORS_DS1780_IN0_MAX 21 /* RW */ |
|---|
| 542 | #define SENSORS_DS1780_IN1_MAX 22 /* RW */ |
|---|
| 543 | #define SENSORS_DS1780_IN2_MAX 23 /* RW */ |
|---|
| 544 | #define SENSORS_DS1780_IN3_MAX 24 /* RW */ |
|---|
| 545 | #define SENSORS_DS1780_IN4_MAX 25 /* RW */ |
|---|
| 546 | #define SENSORS_DS1780_IN5_MAX 26 /* RW */ |
|---|
| 547 | #define SENSORS_DS1780_FAN1 31 /* R */ |
|---|
| 548 | #define SENSORS_DS1780_FAN2 32 /* R */ |
|---|
| 549 | #define SENSORS_DS1780_FAN1_MIN 41 /* RW */ |
|---|
| 550 | #define SENSORS_DS1780_FAN2_MIN 42 /* RW */ |
|---|
| 551 | #define SENSORS_DS1780_TEMP 51 /* R */ |
|---|
| 552 | #define SENSORS_DS1780_TEMP_HYST 52 /* RW */ |
|---|
| 553 | #define SENSORS_DS1780_TEMP_OVER 53 /* RW */ |
|---|
| 554 | #define SENSORS_DS1780_VID 61 /* R */ |
|---|
| 555 | #define SENSORS_DS1780_FAN1_DIV 71 /* RW */ |
|---|
| 556 | #define SENSORS_DS1780_FAN2_DIV 72 /* RW */ |
|---|
| 557 | #define SENSORS_DS1780_ALARMS 81 /* R */ |
|---|
| 558 | #define SENSORS_DS1780_ANALOG_OUT 82 /* RW */ |
|---|
| 559 | |
|---|
| 560 | /* SiS southbridge with integrated lm78 */ |
|---|
| 561 | |
|---|
| 562 | #define SENSORS_SIS5595_PREFIX "sis5595" |
|---|
| 563 | |
|---|
| 564 | #define SENSORS_SIS5595_IN0 1 /* R */ |
|---|
| 565 | #define SENSORS_SIS5595_IN1 2 /* R */ |
|---|
| 566 | #define SENSORS_SIS5595_IN2 3 /* R */ |
|---|
| 567 | #define SENSORS_SIS5595_IN3 4 /* R */ |
|---|
| 568 | #define SENSORS_SIS5595_IN4 4 /* R */ |
|---|
| 569 | #define SENSORS_SIS5595_IN0_MIN 11 /* RW */ |
|---|
| 570 | #define SENSORS_SIS5595_IN1_MIN 12 /* RW */ |
|---|
| 571 | #define SENSORS_SIS5595_IN2_MIN 13 /* RW */ |
|---|
| 572 | #define SENSORS_SIS5595_IN3_MIN 14 /* RW */ |
|---|
| 573 | #define SENSORS_SIS5595_IN4_MIN 14 /* RW */ |
|---|
| 574 | #define SENSORS_SIS5595_IN0_MAX 21 /* RW */ |
|---|
| 575 | #define SENSORS_SIS5595_IN1_MAX 22 /* RW */ |
|---|
| 576 | #define SENSORS_SIS5595_IN2_MAX 23 /* RW */ |
|---|
| 577 | #define SENSORS_SIS5595_IN3_MAX 24 /* RW */ |
|---|
| 578 | #define SENSORS_SIS5595_IN4_MAX 24 /* RW */ |
|---|
| 579 | #define SENSORS_SIS5595_FAN1 31 /* R */ |
|---|
| 580 | #define SENSORS_SIS5595_FAN2 32 /* R */ |
|---|
| 581 | #define SENSORS_SIS5595_FAN1_MIN 41 /* RW */ |
|---|
| 582 | #define SENSORS_SIS5595_FAN2_MIN 42 /* RW */ |
|---|
| 583 | #define SENSORS_SIS5595_TEMP 51 /* R */ |
|---|
| 584 | #define SENSORS_SIS5595_TEMP_HYST 52 /* RW */ |
|---|
| 585 | #define SENSORS_SIS5595_TEMP_OVER 53 /* RW */ |
|---|
| 586 | #define SENSORS_SIS5595_FAN1_DIV 71 /* RW */ |
|---|
| 587 | #define SENSORS_SIS5595_FAN2_DIV 72 /* RW */ |
|---|
| 588 | #define SENSORS_SIS5595_ALARMS 81 /* R */ |
|---|
| 589 | |
|---|
| 590 | |
|---|
| 591 | /* HP MaxiLife chips */ |
|---|
| 592 | |
|---|
| 593 | #define SENSORS_MAXI_CG_PREFIX "maxilife-cg" |
|---|
| 594 | #define SENSORS_MAXI_CO_PREFIX "maxilife-co" |
|---|
| 595 | #define SENSORS_MAXI_AS_PREFIX "maxilife-as" |
|---|
| 596 | #define SENSORS_MAXI_NBA_PREFIX "maxilife-nba" |
|---|
| 597 | |
|---|
| 598 | #define SENSORS_MAXI_CG_FAN1 1 /* R */ |
|---|
| 599 | #define SENSORS_MAXI_CG_FAN2 2 /* R */ |
|---|
| 600 | #define SENSORS_MAXI_CG_FAN3 3 /* R */ |
|---|
| 601 | #define SENSORS_MAXI_CG_FAN1_MIN 11 /* RW */ |
|---|
| 602 | #define SENSORS_MAXI_CG_FAN2_MIN 12 /* RW */ |
|---|
| 603 | #define SENSORS_MAXI_CG_FAN3_MIN 13 /* RW */ |
|---|
| 604 | #define SENSORS_MAXI_CG_FAN1_DIV 14 /* R */ |
|---|
| 605 | #define SENSORS_MAXI_CG_FAN2_DIV 15 /* R */ |
|---|
| 606 | #define SENSORS_MAXI_CG_FAN3_DIV 16 /* R */ |
|---|
| 607 | #define SENSORS_MAXI_CG_TEMP1 21 /* R */ |
|---|
| 608 | #define SENSORS_MAXI_CG_TEMP2 22 /* R */ |
|---|
| 609 | #define SENSORS_MAXI_CG_TEMP3 23 /* R */ |
|---|
| 610 | #define SENSORS_MAXI_CG_TEMP4 24 /* R */ |
|---|
| 611 | #define SENSORS_MAXI_CG_TEMP5 25 /* R */ |
|---|
| 612 | #define SENSORS_MAXI_CG_TEMP1_MAX 31 /* R */ |
|---|
| 613 | #define SENSORS_MAXI_CG_TEMP2_MAX 32 /* R */ |
|---|
| 614 | #define SENSORS_MAXI_CG_TEMP3_MAX 33 /* R */ |
|---|
| 615 | #define SENSORS_MAXI_CG_TEMP4_MAX 34 /* R */ |
|---|
| 616 | #define SENSORS_MAXI_CG_TEMP5_MAX 35 /* R */ |
|---|
| 617 | #define SENSORS_MAXI_CG_TEMP1_HYST 41 /* R */ |
|---|
| 618 | #define SENSORS_MAXI_CG_TEMP2_HYST 42 /* R */ |
|---|
| 619 | #define SENSORS_MAXI_CG_TEMP3_HYST 43 /* R */ |
|---|
| 620 | #define SENSORS_MAXI_CG_TEMP4_HYST 44 /* R */ |
|---|
| 621 | #define SENSORS_MAXI_CG_TEMP5_HYST 45 /* R */ |
|---|
| 622 | #define SENSORS_MAXI_CG_PLL 51 /* R */ |
|---|
| 623 | #define SENSORS_MAXI_CG_PLL_MIN 52 /* RW */ |
|---|
| 624 | #define SENSORS_MAXI_CG_PLL_MAX 53 /* RW */ |
|---|
| 625 | #define SENSORS_MAXI_CG_VID1 61 /* R */ |
|---|
| 626 | #define SENSORS_MAXI_CG_VID2 62 /* R */ |
|---|
| 627 | #define SENSORS_MAXI_CG_VID3 63 /* R */ |
|---|
| 628 | #define SENSORS_MAXI_CG_VID4 64 /* R */ |
|---|
| 629 | #define SENSORS_MAXI_CG_VID1_MIN 71 /* RW */ |
|---|
| 630 | #define SENSORS_MAXI_CG_VID2_MIN 72 /* RW */ |
|---|
| 631 | #define SENSORS_MAXI_CG_VID3_MIN 73 /* RW */ |
|---|
| 632 | #define SENSORS_MAXI_CG_VID4_MIN 74 /* RW */ |
|---|
| 633 | #define SENSORS_MAXI_CG_VID1_MAX 81 /* RW */ |
|---|
| 634 | #define SENSORS_MAXI_CG_VID2_MAX 82 /* RW */ |
|---|
| 635 | #define SENSORS_MAXI_CG_VID3_MAX 83 /* RW */ |
|---|
| 636 | #define SENSORS_MAXI_CG_VID4_MAX 84 /* RW */ |
|---|
| 637 | #define SENSORS_MAXI_CG_ALARMS 91 /* R */ |
|---|
| 638 | |
|---|
| 639 | #define SENSORS_MAXI_CO_FAN1 1 /* R */ |
|---|
| 640 | #define SENSORS_MAXI_CO_FAN2 2 /* R */ |
|---|
| 641 | #define SENSORS_MAXI_CO_FAN3 3 /* R */ |
|---|
| 642 | #define SENSORS_MAXI_CO_FAN1_MIN 11 /* RW */ |
|---|
| 643 | #define SENSORS_MAXI_CO_FAN2_MIN 12 /* RW */ |
|---|
| 644 | #define SENSORS_MAXI_CO_FAN3_MIN 13 /* RW */ |
|---|
| 645 | #define SENSORS_MAXI_CO_FAN1_DIV 14 /* R */ |
|---|
| 646 | #define SENSORS_MAXI_CO_FAN2_DIV 15 /* R */ |
|---|
| 647 | #define SENSORS_MAXI_CO_FAN3_DIV 16 /* R */ |
|---|
| 648 | #define SENSORS_MAXI_CO_TEMP1 21 /* R */ |
|---|
| 649 | #define SENSORS_MAXI_CO_TEMP2 22 /* R */ |
|---|
| 650 | #define SENSORS_MAXI_CO_TEMP3 23 /* R */ |
|---|
| 651 | #define SENSORS_MAXI_CO_TEMP4 24 /* R */ |
|---|
| 652 | #define SENSORS_MAXI_CO_TEMP5 25 /* R */ |
|---|
| 653 | #define SENSORS_MAXI_CO_TEMP1_MAX 31 /* R */ |
|---|
| 654 | #define SENSORS_MAXI_CO_TEMP2_MAX 32 /* R */ |
|---|
| 655 | #define SENSORS_MAXI_CO_TEMP3_MAX 33 /* R */ |
|---|
| 656 | #define SENSORS_MAXI_CO_TEMP4_MAX 34 /* R */ |
|---|
| 657 | #define SENSORS_MAXI_CO_TEMP5_MAX 35 /* R */ |
|---|
| 658 | #define SENSORS_MAXI_CO_TEMP1_HYST 41 /* R */ |
|---|
| 659 | #define SENSORS_MAXI_CO_TEMP2_HYST 42 /* R */ |
|---|
| 660 | #define SENSORS_MAXI_CO_TEMP3_HYST 43 /* R */ |
|---|
| 661 | #define SENSORS_MAXI_CO_TEMP4_HYST 44 /* R */ |
|---|
| 662 | #define SENSORS_MAXI_CO_TEMP5_HYST 45 /* R */ |
|---|
| 663 | #define SENSORS_MAXI_CO_PLL 51 /* R */ |
|---|
| 664 | #define SENSORS_MAXI_CO_PLL_MIN 52 /* RW */ |
|---|
| 665 | #define SENSORS_MAXI_CO_PLL_MAX 53 /* RW */ |
|---|
| 666 | #define SENSORS_MAXI_CO_VID1 61 /* R */ |
|---|
| 667 | #define SENSORS_MAXI_CO_VID2 62 /* R */ |
|---|
| 668 | #define SENSORS_MAXI_CO_VID3 63 /* R */ |
|---|
| 669 | #define SENSORS_MAXI_CO_VID4 64 /* R */ |
|---|
| 670 | #define SENSORS_MAXI_CO_VID1_MIN 71 /* RW */ |
|---|
| 671 | #define SENSORS_MAXI_CO_VID2_MIN 72 /* RW */ |
|---|
| 672 | #define SENSORS_MAXI_CO_VID3_MIN 73 /* RW */ |
|---|
| 673 | #define SENSORS_MAXI_CO_VID4_MIN 74 /* RW */ |
|---|
| 674 | #define SENSORS_MAXI_CO_VID1_MAX 81 /* RW */ |
|---|
| 675 | #define SENSORS_MAXI_CO_VID2_MAX 82 /* RW */ |
|---|
| 676 | #define SENSORS_MAXI_CO_VID3_MAX 83 /* RW */ |
|---|
| 677 | #define SENSORS_MAXI_CO_VID4_MAX 84 /* RW */ |
|---|
| 678 | #define SENSORS_MAXI_CO_ALARMS 91 /* R */ |
|---|
| 679 | |
|---|
| 680 | #define SENSORS_MAXI_AS_FAN1 1 /* R */ |
|---|
| 681 | #define SENSORS_MAXI_AS_FAN2 2 /* R */ |
|---|
| 682 | #define SENSORS_MAXI_AS_FAN3 3 /* R */ |
|---|
| 683 | #define SENSORS_MAXI_AS_FAN1_MIN 11 /* RW */ |
|---|
| 684 | #define SENSORS_MAXI_AS_FAN2_MIN 12 /* RW */ |
|---|
| 685 | #define SENSORS_MAXI_AS_FAN3_MIN 13 /* RW */ |
|---|
| 686 | #define SENSORS_MAXI_AS_FAN1_DIV 14 /* R */ |
|---|
| 687 | #define SENSORS_MAXI_AS_FAN2_DIV 15 /* R */ |
|---|
| 688 | #define SENSORS_MAXI_AS_FAN3_DIV 16 /* R */ |
|---|
| 689 | #define SENSORS_MAXI_AS_TEMP1 21 /* R */ |
|---|
| 690 | #define SENSORS_MAXI_AS_TEMP2 22 /* R */ |
|---|
| 691 | #define SENSORS_MAXI_AS_TEMP3 23 /* R */ |
|---|
| 692 | #define SENSORS_MAXI_AS_TEMP4 24 /* R */ |
|---|
| 693 | #define SENSORS_MAXI_AS_TEMP5 25 /* R */ |
|---|
| 694 | #define SENSORS_MAXI_AS_TEMP1_MAX 31 /* R */ |
|---|
| 695 | #define SENSORS_MAXI_AS_TEMP2_MAX 32 /* R */ |
|---|
| 696 | #define SENSORS_MAXI_AS_TEMP3_MAX 33 /* R */ |
|---|
| 697 | #define SENSORS_MAXI_AS_TEMP4_MAX 34 /* R */ |
|---|
| 698 | #define SENSORS_MAXI_AS_TEMP5_MAX 35 /* R */ |
|---|
| 699 | #define SENSORS_MAXI_AS_TEMP1_HYST 41 /* R */ |
|---|
| 700 | #define SENSORS_MAXI_AS_TEMP2_HYST 42 /* R */ |
|---|
| 701 | #define SENSORS_MAXI_AS_TEMP3_HYST 43 /* R */ |
|---|
| 702 | #define SENSORS_MAXI_AS_TEMP4_HYST 44 /* R */ |
|---|
| 703 | #define SENSORS_MAXI_AS_TEMP5_HYST 45 /* R */ |
|---|
| 704 | #define SENSORS_MAXI_AS_PLL 51 /* R */ |
|---|
| 705 | #define SENSORS_MAXI_AS_PLL_MIN 52 /* RW */ |
|---|
| 706 | #define SENSORS_MAXI_AS_PLL_MAX 53 /* RW */ |
|---|
| 707 | #define SENSORS_MAXI_AS_VID1 61 /* R */ |
|---|
| 708 | #define SENSORS_MAXI_AS_VID2 62 /* R */ |
|---|
| 709 | #define SENSORS_MAXI_AS_VID3 63 /* R */ |
|---|
| 710 | #define SENSORS_MAXI_AS_VID4 64 /* R */ |
|---|
| 711 | #define SENSORS_MAXI_AS_VID1_MIN 71 /* RW */ |
|---|
| 712 | #define SENSORS_MAXI_AS_VID2_MIN 72 /* RW */ |
|---|
| 713 | #define SENSORS_MAXI_AS_VID3_MIN 73 /* RW */ |
|---|
| 714 | #define SENSORS_MAXI_AS_VID4_MIN 74 /* RW */ |
|---|
| 715 | #define SENSORS_MAXI_AS_VID1_MAX 81 /* RW */ |
|---|
| 716 | #define SENSORS_MAXI_AS_VID2_MAX 82 /* RW */ |
|---|
| 717 | #define SENSORS_MAXI_AS_VID3_MAX 83 /* RW */ |
|---|
| 718 | #define SENSORS_MAXI_AS_VID4_MAX 84 /* RW */ |
|---|
| 719 | #define SENSORS_MAXI_AS_ALARMS 91 /* R */ |
|---|
| 720 | |
|---|
| 721 | /* THMC50/ADM1022 chips */ |
|---|
| 722 | |
|---|
| 723 | #define SENSORS_THMC50_PREFIX "thmc50" |
|---|
| 724 | /* Cheat on LM84,GL523,THMC10 for now - no separate #defines */ |
|---|
| 725 | #define SENSORS_ADM1022_PREFIX "adm1022" |
|---|
| 726 | |
|---|
| 727 | #define SENSORS_THMC50_TEMP 51 /* R */ |
|---|
| 728 | #define SENSORS_THMC50_TEMP_HYST 52 /* RW */ |
|---|
| 729 | #define SENSORS_THMC50_TEMP_OVER 53 /* RW */ |
|---|
| 730 | #define SENSORS_THMC50_REMOTE_TEMP 54 /* R */ |
|---|
| 731 | #define SENSORS_THMC50_REMOTE_TEMP_HYST 55 /* RW */ |
|---|
| 732 | #define SENSORS_THMC50_REMOTE_TEMP_OVER 56 /* RW */ |
|---|
| 733 | #define SENSORS_THMC50_ANALOG_OUT 71 /* RW */ |
|---|
| 734 | #define SENSORS_THMC50_INTER 81 /* R */ |
|---|
| 735 | #define SENSORS_THMC50_INTER_MASK 82 /* RW */ |
|---|
| 736 | #define SENSORS_THMC50_DIE_CODE 90 /* R */ |
|---|
| 737 | |
|---|
| 738 | /* ADM1025 chip */ |
|---|
| 739 | |
|---|
| 740 | #define SENSORS_ADM1025_PREFIX "adm1025" |
|---|
| 741 | |
|---|
| 742 | #define SENSORS_ADM1025_IN0 1 /* R */ |
|---|
| 743 | #define SENSORS_ADM1025_IN1 2 /* R */ |
|---|
| 744 | #define SENSORS_ADM1025_IN2 3 /* R */ |
|---|
| 745 | #define SENSORS_ADM1025_IN3 4 /* R */ |
|---|
| 746 | #define SENSORS_ADM1025_IN4 5 /* R */ |
|---|
| 747 | #define SENSORS_ADM1025_IN5 6 /* R */ |
|---|
| 748 | #define SENSORS_ADM1025_IN0_MIN 11 /* RW */ |
|---|
| 749 | #define SENSORS_ADM1025_IN1_MIN 12 /* RW */ |
|---|
| 750 | #define SENSORS_ADM1025_IN2_MIN 13 /* RW */ |
|---|
| 751 | #define SENSORS_ADM1025_IN3_MIN 14 /* RW */ |
|---|
| 752 | #define SENSORS_ADM1025_IN4_MIN 15 /* RW */ |
|---|
| 753 | #define SENSORS_ADM1025_IN5_MIN 16 /* RW */ |
|---|
| 754 | #define SENSORS_ADM1025_IN0_MAX 21 /* RW */ |
|---|
| 755 | #define SENSORS_ADM1025_IN1_MAX 22 /* RW */ |
|---|
| 756 | #define SENSORS_ADM1025_IN2_MAX 23 /* RW */ |
|---|
| 757 | #define SENSORS_ADM1025_IN3_MAX 24 /* RW */ |
|---|
| 758 | #define SENSORS_ADM1025_IN4_MAX 25 /* RW */ |
|---|
| 759 | #define SENSORS_ADM1025_IN5_MAX 26 /* RW */ |
|---|
| 760 | #define SENSORS_ADM1025_TEMP1 51 /* R */ |
|---|
| 761 | #define SENSORS_ADM1025_TEMP1_HYST 52 /* RW */ |
|---|
| 762 | #define SENSORS_ADM1025_TEMP1_OVER 53 /* RW */ |
|---|
| 763 | #define SENSORS_ADM1025_TEMP2 54 /* R */ |
|---|
| 764 | #define SENSORS_ADM1025_TEMP2_HYST 55 /* RW */ |
|---|
| 765 | #define SENSORS_ADM1025_TEMP2_OVER 56 /* RW */ |
|---|
| 766 | #define SENSORS_ADM1025_VID 61 /* R */ |
|---|
| 767 | #define SENSORS_ADM1025_VRM 62 /* R */ |
|---|
| 768 | #define SENSORS_ADM1025_ALARMS 81 /* R */ |
|---|
| 769 | |
|---|
| 770 | |
|---|
| 771 | |
|---|
| 772 | #define SENSORS_VIA686A_PREFIX "via686a" |
|---|
| 773 | |
|---|
| 774 | #define SENSORS_VIA686A_IN0 1 /* R */ |
|---|
| 775 | #define SENSORS_VIA686A_IN1 2 /* R */ |
|---|
| 776 | #define SENSORS_VIA686A_IN2 3 /* R */ |
|---|
| 777 | #define SENSORS_VIA686A_IN3 4 /* R */ |
|---|
| 778 | #define SENSORS_VIA686A_IN4 5 /* R */ |
|---|
| 779 | #define SENSORS_VIA686A_IN0_MIN 11 /* RW */ |
|---|
| 780 | #define SENSORS_VIA686A_IN1_MIN 12 /* RW */ |
|---|
| 781 | #define SENSORS_VIA686A_IN2_MIN 13 /* RW */ |
|---|
| 782 | #define SENSORS_VIA686A_IN3_MIN 14 /* RW */ |
|---|
| 783 | #define SENSORS_VIA686A_IN4_MIN 15 /* RW */ |
|---|
| 784 | #define SENSORS_VIA686A_IN0_MAX 21 /* RW */ |
|---|
| 785 | #define SENSORS_VIA686A_IN1_MAX 22 /* RW */ |
|---|
| 786 | #define SENSORS_VIA686A_IN2_MAX 23 /* RW */ |
|---|
| 787 | #define SENSORS_VIA686A_IN3_MAX 24 /* RW */ |
|---|
| 788 | #define SENSORS_VIA686A_IN4_MAX 25 /* RW */ |
|---|
| 789 | #define SENSORS_VIA686A_FAN1 31 /* R */ |
|---|
| 790 | #define SENSORS_VIA686A_FAN2 32 /* R */ |
|---|
| 791 | #define SENSORS_VIA686A_FAN1_MIN 41 /* RW */ |
|---|
| 792 | #define SENSORS_VIA686A_FAN2_MIN 42 /* RW */ |
|---|
| 793 | #define SENSORS_VIA686A_TEMP 51 /* R */ |
|---|
| 794 | #define SENSORS_VIA686A_TEMP_HYST 52 /* RW */ |
|---|
| 795 | #define SENSORS_VIA686A_TEMP_OVER 53 /* RW */ |
|---|
| 796 | #define SENSORS_VIA686A_TEMP2 54 /* R */ |
|---|
| 797 | #define SENSORS_VIA686A_TEMP2_HYST 55 /* RW */ |
|---|
| 798 | #define SENSORS_VIA686A_TEMP2_OVER 56 /* RW */ |
|---|
| 799 | #define SENSORS_VIA686A_TEMP3 57 /* R */ |
|---|
| 800 | #define SENSORS_VIA686A_TEMP3_HYST 58 /* RW */ |
|---|
| 801 | #define SENSORS_VIA686A_TEMP3_OVER 59 /* RW */ |
|---|
| 802 | #define SENSORS_VIA686A_FAN1_DIV 71 /* RW */ |
|---|
| 803 | #define SENSORS_VIA686A_FAN2_DIV 72 /* RW */ |
|---|
| 804 | #define SENSORS_VIA686A_ALARMS 81 /* R */ |
|---|
| 805 | |
|---|
| 806 | |
|---|
| 807 | /* DDC Monitor */ |
|---|
| 808 | |
|---|
| 809 | #define SENSORS_DDCMON_PREFIX "ddcmon" |
|---|
| 810 | |
|---|
| 811 | #define SENSORS_DDCMON_ID 10 |
|---|
| 812 | #define SENSORS_DDCMON_HORSIZE 21 |
|---|
| 813 | #define SENSORS_DDCMON_VERSIZE 22 |
|---|
| 814 | #define SENSORS_DDCMON_HORSYNCMIN 31 |
|---|
| 815 | #define SENSORS_DDCMON_HORSYNCMAX 32 |
|---|
| 816 | #define SENSORS_DDCMON_VERSYNCMIN 33 |
|---|
| 817 | #define SENSORS_DDCMON_VERSYNCMAX 34 |
|---|
| 818 | #define SENSORS_DDCMON_SERIAL 40 |
|---|
| 819 | #define SENSORS_DDCMON_TIMINGS 50 |
|---|
| 820 | |
|---|
| 821 | /* EEPROM (SDRAM DIMM) */ |
|---|
| 822 | |
|---|
| 823 | #define SENSORS_EEPROM_PREFIX "eeprom" |
|---|
| 824 | |
|---|
| 825 | #define SENSORS_EEPROM_TYPE 10 |
|---|
| 826 | #define SENSORS_EEPROM_ROWADDR 12 |
|---|
| 827 | #define SENSORS_EEPROM_COLADDR 13 |
|---|
| 828 | #define SENSORS_EEPROM_NUMROWS 14 |
|---|
| 829 | #define SENSORS_EEPROM_BANKS 15 |
|---|
| 830 | |
|---|
| 831 | #define SENSORS_EEPROM_VAIO_NAME 128 |
|---|
| 832 | /* 129 to 159: reserved, do not use! */ |
|---|
| 833 | #define SENSORS_EEPROM_VAIO_SERIAL 160 |
|---|
| 834 | /* 161 to 191: reserved, do not use! */ |
|---|
| 835 | |
|---|
| 836 | /* Analog Devices LM87 chips */ |
|---|
| 837 | |
|---|
| 838 | #define SENSORS_LM87_PREFIX "lm87" |
|---|
| 839 | |
|---|
| 840 | #define SENSORS_LM87_IN0 1 /* R */ |
|---|
| 841 | #define SENSORS_LM87_IN1 2 /* R */ |
|---|
| 842 | #define SENSORS_LM87_IN2 3 /* R */ |
|---|
| 843 | #define SENSORS_LM87_IN3 4 /* R */ |
|---|
| 844 | #define SENSORS_LM87_IN4 5 /* R */ |
|---|
| 845 | #define SENSORS_LM87_IN5 6 /* R */ |
|---|
| 846 | #define SENSORS_LM87_AIN1 7 /* R */ |
|---|
| 847 | #define SENSORS_LM87_AIN2 8 /* R */ |
|---|
| 848 | #define SENSORS_LM87_IN0_MIN 11 /* RW */ |
|---|
| 849 | #define SENSORS_LM87_IN1_MIN 12 /* RW */ |
|---|
| 850 | #define SENSORS_LM87_IN2_MIN 13 /* RW */ |
|---|
| 851 | #define SENSORS_LM87_IN3_MIN 14 /* RW */ |
|---|
| 852 | #define SENSORS_LM87_IN4_MIN 15 /* RW */ |
|---|
| 853 | #define SENSORS_LM87_IN5_MIN 16 /* RW */ |
|---|
| 854 | #define SENSORS_LM87_AIN1_MIN 17 /* RW */ |
|---|
| 855 | #define SENSORS_LM87_AIN2_MIN 18 /* RW */ |
|---|
| 856 | #define SENSORS_LM87_IN0_MAX 21 /* RW */ |
|---|
| 857 | #define SENSORS_LM87_IN1_MAX 22 /* RW */ |
|---|
| 858 | #define SENSORS_LM87_IN2_MAX 23 /* RW */ |
|---|
| 859 | #define SENSORS_LM87_IN3_MAX 24 /* RW */ |
|---|
| 860 | #define SENSORS_LM87_IN4_MAX 25 /* RW */ |
|---|
| 861 | #define SENSORS_LM87_IN5_MAX 26 /* RW */ |
|---|
| 862 | #define SENSORS_LM87_AIN1_MAX 27 /* RW */ |
|---|
| 863 | #define SENSORS_LM87_AIN2_MAX 28 /* RW */ |
|---|
| 864 | #define SENSORS_LM87_FAN1 31 /* R */ |
|---|
| 865 | #define SENSORS_LM87_FAN2 32 /* R */ |
|---|
| 866 | #define SENSORS_LM87_FAN1_MIN 41 /* RW */ |
|---|
| 867 | #define SENSORS_LM87_FAN2_MIN 42 /* RW */ |
|---|
| 868 | #define SENSORS_LM87_TEMP1 51 /* R */ |
|---|
| 869 | #define SENSORS_LM87_TEMP2 52 /* R */ |
|---|
| 870 | #define SENSORS_LM87_TEMP3 53 /* R */ |
|---|
| 871 | #define SENSORS_LM87_TEMP1_HYST 54 /* RW */ |
|---|
| 872 | #define SENSORS_LM87_TEMP1_OVER 55 /* RW */ |
|---|
| 873 | #define SENSORS_LM87_TEMP2_HYST 56 /* RW */ |
|---|
| 874 | #define SENSORS_LM87_TEMP2_OVER 57 /* RW */ |
|---|
| 875 | #define SENSORS_LM87_TEMP3_HYST 58 /* RW */ |
|---|
| 876 | #define SENSORS_LM87_TEMP3_OVER 59 /* RW */ |
|---|
| 877 | #define SENSORS_LM87_VID 61 /* R */ |
|---|
| 878 | #define SENSORS_LM87_VRM 62 /* RW */ |
|---|
| 879 | #define SENSORS_LM87_FAN1_DIV 71 /* RW */ |
|---|
| 880 | #define SENSORS_LM87_FAN2_DIV 72 /* RW */ |
|---|
| 881 | #define SENSORS_LM87_ALARMS 81 /* R */ |
|---|
| 882 | #define SENSORS_LM87_ANALOG_OUT 82 /* RW */ |
|---|
| 883 | |
|---|
| 884 | /* Myson MTP008 chips */ |
|---|
| 885 | |
|---|
| 886 | #define SENSORS_MTP008_PREFIX "mtp008" |
|---|
| 887 | |
|---|
| 888 | #define SENSORS_MTP008_IN0 1 /* R */ |
|---|
| 889 | #define SENSORS_MTP008_IN1 2 /* R */ |
|---|
| 890 | #define SENSORS_MTP008_IN2 3 /* R */ |
|---|
| 891 | #define SENSORS_MTP008_IN3 4 /* R */ |
|---|
| 892 | #define SENSORS_MTP008_IN4 5 /* R */ |
|---|
| 893 | #define SENSORS_MTP008_IN5 6 /* R */ |
|---|
| 894 | #define SENSORS_MTP008_IN6 7 /* R */ |
|---|
| 895 | #define SENSORS_MTP008_IN0_MIN 11 /* RW */ |
|---|
| 896 | #define SENSORS_MTP008_IN1_MIN 12 /* RW */ |
|---|
| 897 | #define SENSORS_MTP008_IN2_MIN 13 /* RW */ |
|---|
| 898 | #define SENSORS_MTP008_IN3_MIN 14 /* RW */ |
|---|
| 899 | #define SENSORS_MTP008_IN4_MIN 15 /* RW */ |
|---|
| 900 | #define SENSORS_MTP008_IN5_MIN 16 /* RW */ |
|---|
| 901 | #define SENSORS_MTP008_IN6_MIN 17 /* RW */ |
|---|
| 902 | #define SENSORS_MTP008_IN0_MAX 21 /* RW */ |
|---|
| 903 | #define SENSORS_MTP008_IN1_MAX 22 /* RW */ |
|---|
| 904 | #define SENSORS_MTP008_IN2_MAX 23 /* RW */ |
|---|
| 905 | #define SENSORS_MTP008_IN3_MAX 24 /* RW */ |
|---|
| 906 | #define SENSORS_MTP008_IN4_MAX 25 /* RW */ |
|---|
| 907 | #define SENSORS_MTP008_IN5_MAX 26 /* RW */ |
|---|
| 908 | #define SENSORS_MTP008_IN6_MAX 27 /* RW */ |
|---|
| 909 | #define SENSORS_MTP008_FAN1 31 /* R */ |
|---|
| 910 | #define SENSORS_MTP008_FAN2 32 /* R */ |
|---|
| 911 | #define SENSORS_MTP008_FAN3 33 /* R */ |
|---|
| 912 | #define SENSORS_MTP008_FAN1_MIN 41 /* RW */ |
|---|
| 913 | #define SENSORS_MTP008_FAN2_MIN 42 /* RW */ |
|---|
| 914 | #define SENSORS_MTP008_FAN3_MIN 43 /* RW */ |
|---|
| 915 | #define SENSORS_MTP008_TEMP1 51 /* R */ |
|---|
| 916 | #define SENSORS_MTP008_TEMP2 52 /* R */ |
|---|
| 917 | #define SENSORS_MTP008_TEMP3 53 /* R */ |
|---|
| 918 | #define SENSORS_MTP008_TEMP1_OVER 54 /* RW */ |
|---|
| 919 | #define SENSORS_MTP008_TEMP1_HYST 55 /* RW */ |
|---|
| 920 | #define SENSORS_MTP008_TEMP2_OVER 56 /* RW */ |
|---|
| 921 | #define SENSORS_MTP008_TEMP2_HYST 57 /* RW */ |
|---|
| 922 | #define SENSORS_MTP008_TEMP3_OVER 58 /* RW */ |
|---|
| 923 | #define SENSORS_MTP008_TEMP3_HYST 59 /* RW */ |
|---|
| 924 | #define SENSORS_MTP008_VID 61 /* R */ |
|---|
| 925 | #define SENSORS_MTP008_FAN1_DIV 71 /* RW */ |
|---|
| 926 | #define SENSORS_MTP008_FAN2_DIV 72 /* RW */ |
|---|
| 927 | #define SENSORS_MTP008_FAN3_DIV 73 /* RW */ |
|---|
| 928 | #define SENSORS_MTP008_ALARMS 81 /* R */ |
|---|
| 929 | #define SENSORS_MTP008_BEEP 82 /* RW */ |
|---|
| 930 | |
|---|
| 931 | /* DS1621 chips. */ |
|---|
| 932 | |
|---|
| 933 | #define SENSORS_DS1621_PREFIX "ds1621" |
|---|
| 934 | |
|---|
| 935 | #define SENSORS_DS1621_TEMP 51 /* R */ |
|---|
| 936 | #define SENSORS_DS1621_TEMP_HYST 52 /* RW */ |
|---|
| 937 | #define SENSORS_DS1621_TEMP_OVER 53 /* RW */ |
|---|
| 938 | #define SENSORS_DS1621_ALARMS 81 /* R */ |
|---|
| 939 | #define SENSORS_DS1621_ENABLE 82 /* RW */ |
|---|
| 940 | #define SENSORS_DS1621_CONTINUOUS 83 /* RW */ |
|---|
| 941 | #define SENSORS_DS1621_POLARITY 84 /* RW */ |
|---|
| 942 | |
|---|
| 943 | /* ADM1024 chip */ |
|---|
| 944 | |
|---|
| 945 | #define SENSORS_ADM1024_PREFIX "adm1024" |
|---|
| 946 | |
|---|
| 947 | #define SENSORS_ADM1024_IN0 1 /* R */ |
|---|
| 948 | #define SENSORS_ADM1024_IN1 2 /* R */ |
|---|
| 949 | #define SENSORS_ADM1024_IN2 3 /* R */ |
|---|
| 950 | #define SENSORS_ADM1024_IN3 4 /* R */ |
|---|
| 951 | #define SENSORS_ADM1024_IN4 5 /* R */ |
|---|
| 952 | #define SENSORS_ADM1024_IN5 6 /* R */ |
|---|
| 953 | #define SENSORS_ADM1024_IN0_MIN 11 /* RW */ |
|---|
| 954 | #define SENSORS_ADM1024_IN1_MIN 12 /* RW */ |
|---|
| 955 | #define SENSORS_ADM1024_IN2_MIN 13 /* RW */ |
|---|
| 956 | #define SENSORS_ADM1024_IN3_MIN 14 /* RW */ |
|---|
| 957 | #define SENSORS_ADM1024_IN4_MIN 15 /* RW */ |
|---|
| 958 | #define SENSORS_ADM1024_IN5_MIN 16 /* RW */ |
|---|
| 959 | #define SENSORS_ADM1024_IN0_MAX 21 /* RW */ |
|---|
| 960 | #define SENSORS_ADM1024_IN1_MAX 22 /* RW */ |
|---|
| 961 | #define SENSORS_ADM1024_IN2_MAX 23 /* RW */ |
|---|
| 962 | #define SENSORS_ADM1024_IN3_MAX 24 /* RW */ |
|---|
| 963 | #define SENSORS_ADM1024_IN4_MAX 25 /* RW */ |
|---|
| 964 | #define SENSORS_ADM1024_IN5_MAX 26 /* RW */ |
|---|
| 965 | #define SENSORS_ADM1024_FAN1 31 /* R */ |
|---|
| 966 | #define SENSORS_ADM1024_FAN2 32 /* R */ |
|---|
| 967 | #define SENSORS_ADM1024_FAN1_MIN 41 /* RW */ |
|---|
| 968 | #define SENSORS_ADM1024_FAN2_MIN 42 /* RW */ |
|---|
| 969 | #define SENSORS_ADM1024_TEMP 51 /* R */ |
|---|
| 970 | #define SENSORS_ADM1024_TEMP1 52 /* R */ |
|---|
| 971 | #define SENSORS_ADM1024_TEMP2 53 /* R */ |
|---|
| 972 | #define SENSORS_ADM1024_TEMP_HYST 61 /* RW */ |
|---|
| 973 | #define SENSORS_ADM1024_TEMP_OVER 62 /* RW */ |
|---|
| 974 | #define SENSORS_ADM1024_TEMP1_HYST 63 /* RW */ |
|---|
| 975 | #define SENSORS_ADM1024_TEMP1_OVER 64 /* RW */ |
|---|
| 976 | #define SENSORS_ADM1024_TEMP2_HYST 65 /* RW */ |
|---|
| 977 | #define SENSORS_ADM1024_TEMP2_OVER 66 /* RW */ |
|---|
| 978 | #define SENSORS_ADM1024_VID 71 /* R */ |
|---|
| 979 | #define SENSORS_ADM1024_FAN1_DIV 81 /* RW */ |
|---|
| 980 | #define SENSORS_ADM1024_FAN2_DIV 82 /* RW */ |
|---|
| 981 | #define SENSORS_ADM1024_ALARMS 91 /* R */ |
|---|
| 982 | #define SENSORS_ADM1024_ANALOG_OUT 92 /* RW */ |
|---|
| 983 | |
|---|
| 984 | /* IT87xx chips */ |
|---|
| 985 | |
|---|
| 986 | #define SENSORS_IT87_PREFIX "it87" |
|---|
| 987 | |
|---|
| 988 | #define SENSORS_IT87_IN0 1 /* R */ |
|---|
| 989 | #define SENSORS_IT87_IN1 2 /* R */ |
|---|
| 990 | #define SENSORS_IT87_IN2 3 /* R */ |
|---|
| 991 | #define SENSORS_IT87_IN3 4 /* R */ |
|---|
| 992 | #define SENSORS_IT87_IN4 5 /* R */ |
|---|
| 993 | #define SENSORS_IT87_IN5 6 /* R */ |
|---|
| 994 | #define SENSORS_IT87_IN6 7 /* R */ |
|---|
| 995 | #define SENSORS_IT87_IN7 8 /* R */ |
|---|
| 996 | #define SENSORS_IT87_IN8 9 /* R */ |
|---|
| 997 | #define SENSORS_IT87_IN0_MIN 11 /* RW */ |
|---|
| 998 | #define SENSORS_IT87_IN1_MIN 12 /* RW */ |
|---|
| 999 | #define SENSORS_IT87_IN2_MIN 13 /* RW */ |
|---|
| 1000 | #define SENSORS_IT87_IN3_MIN 14 /* RW */ |
|---|
| 1001 | #define SENSORS_IT87_IN4_MIN 15 /* RW */ |
|---|
| 1002 | #define SENSORS_IT87_IN5_MIN 16 /* RW */ |
|---|
| 1003 | #define SENSORS_IT87_IN6_MIN 17 /* RW */ |
|---|
| 1004 | #define SENSORS_IT87_IN7_MIN 18 /* RW */ |
|---|
| 1005 | #define SENSORS_IT87_IN0_MAX 21 /* RW */ |
|---|
| 1006 | #define SENSORS_IT87_IN1_MAX 22 /* RW */ |
|---|
| 1007 | #define SENSORS_IT87_IN2_MAX 23 /* RW */ |
|---|
| 1008 | #define SENSORS_IT87_IN3_MAX 24 /* RW */ |
|---|
| 1009 | #define SENSORS_IT87_IN4_MAX 25 /* RW */ |
|---|
| 1010 | #define SENSORS_IT87_IN5_MAX 26 /* RW */ |
|---|
| 1011 | #define SENSORS_IT87_IN6_MAX 27 /* RW */ |
|---|
| 1012 | #define SENSORS_IT87_IN7_MAX 28 /* RW */ |
|---|
| 1013 | #define SENSORS_IT87_FAN1 31 /* R */ |
|---|
| 1014 | #define SENSORS_IT87_FAN2 32 /* R */ |
|---|
| 1015 | #define SENSORS_IT87_FAN3 33 /* R */ |
|---|
| 1016 | #define SENSORS_IT87_FAN1_MIN 41 /* RW */ |
|---|
| 1017 | #define SENSORS_IT87_FAN2_MIN 42 /* RW */ |
|---|
| 1018 | #define SENSORS_IT87_FAN3_MIN 43 /* RW */ |
|---|
| 1019 | #define SENSORS_IT87_TEMP1 51 /* R */ |
|---|
| 1020 | #define SENSORS_IT87_TEMP2 52 /* R */ |
|---|
| 1021 | #define SENSORS_IT87_TEMP3 53 /* R */ |
|---|
| 1022 | #define SENSORS_IT87_TEMP1_LOW 54 /* RW */ |
|---|
| 1023 | #define SENSORS_IT87_TEMP2_LOW 55 /* RW */ |
|---|
| 1024 | #define SENSORS_IT87_TEMP3_LOW 56 /* RW */ |
|---|
| 1025 | #define SENSORS_IT87_TEMP1_HIGH 57 /* RW */ |
|---|
| 1026 | #define SENSORS_IT87_TEMP2_HIGH 58 /* RW */ |
|---|
| 1027 | #define SENSORS_IT87_TEMP3_HIGH 59 /* RW */ |
|---|
| 1028 | #define SENSORS_IT87_VID 61 /* R */ |
|---|
| 1029 | #define SENSORS_IT87_FAN1_DIV 71 /* RW */ |
|---|
| 1030 | #define SENSORS_IT87_FAN2_DIV 72 /* RW */ |
|---|
| 1031 | #define SENSORS_IT87_FAN3_DIV 73 /* R (fan3 different) */ |
|---|
| 1032 | #define SENSORS_IT87_ALARMS_FAN 81 /* R */ |
|---|
| 1033 | #define SENSORS_IT87_ALARMS_VIN 82 /* R */ |
|---|
| 1034 | #define SENSORS_IT87_ALARMS_TEMP 83 /* R */ |
|---|
| 1035 | #define SENSORS_IT87_ALARMS 84 /* R */ |
|---|
| 1036 | |
|---|
| 1037 | |
|---|
| 1038 | /* fsc poseidon chip */ |
|---|
| 1039 | |
|---|
| 1040 | #define SENSORS_FSCPOS_PREFIX "fscpos" |
|---|
| 1041 | |
|---|
| 1042 | #define SENSORS_FSCPOS_REV 1 /* R */ |
|---|
| 1043 | #define SENSORS_FSCPOS_EVENT 2 /* R */ |
|---|
| 1044 | #define SENSORS_FSCPOS_CONTROL 3 /* RW */ |
|---|
| 1045 | #define SENSORS_FSCPOS_FAN1 4 /* R */ |
|---|
| 1046 | #define SENSORS_FSCPOS_FAN2 5 /* R */ |
|---|
| 1047 | #define SENSORS_FSCPOS_FAN3 6 /* R */ |
|---|
| 1048 | #define SENSORS_FSCPOS_FAN1_MIN 7 /* RW */ |
|---|
| 1049 | #define SENSORS_FSCPOS_FAN2_MIN 8 /* RW */ |
|---|
| 1050 | #define SENSORS_FSCPOS_FAN3_MIN 9 /* RW */ |
|---|
| 1051 | #define SENSORS_FSCPOS_FAN1_STATE 10 /* RW */ |
|---|
| 1052 | #define SENSORS_FSCPOS_FAN2_STATE 11 /* RW */ |
|---|
| 1053 | #define SENSORS_FSCPOS_FAN3_STATE 12 /* RW */ |
|---|
| 1054 | #define SENSORS_FSCPOS_FAN1_RIPPLE 13 /* RW */ |
|---|
| 1055 | #define SENSORS_FSCPOS_FAN2_RIPPLE 14 /* RW */ |
|---|
| 1056 | #define SENSORS_FSCPOS_FAN3_RIPPLE 15 /* RW */ |
|---|
| 1057 | #define SENSORS_FSCPOS_TEMP1 16 /* R */ |
|---|
| 1058 | #define SENSORS_FSCPOS_TEMP2 17 /* R */ |
|---|
| 1059 | #define SENSORS_FSCPOS_TEMP3 18 /* R */ |
|---|
| 1060 | #define SENSORS_FSCPOS_TEMP1_STATE 19 /* RW */ |
|---|
| 1061 | #define SENSORS_FSCPOS_TEMP2_STATE 20 /* RW */ |
|---|
| 1062 | #define SENSORS_FSCPOS_TEMP3_STATE 21 /* RW */ |
|---|
| 1063 | #define SENSORS_FSCPOS_VOLTAGE1 22 /* R */ |
|---|
| 1064 | #define SENSORS_FSCPOS_VOLTAGE2 23 /* R */ |
|---|
| 1065 | #define SENSORS_FSCPOS_VOLTAGE3 24 /* R */ |
|---|
| 1066 | #define SENSORS_FSCPOS_WDOG_PRESET 25/* RW */ |
|---|
| 1067 | #define SENSORS_FSCPOS_WDOG_STATE 26/* RW */ |
|---|
| 1068 | #define SENSORS_FSCPOS_WDOG_CONTROL 27/* RW */ |
|---|
| 1069 | |
|---|
| 1070 | /* fsc scylla chip */ |
|---|
| 1071 | |
|---|
| 1072 | #define SENSORS_FSCSCY_PREFIX "fscscy" |
|---|
| 1073 | |
|---|
| 1074 | #define SENSORS_FSCSCY_REV 1 /* R */ |
|---|
| 1075 | #define SENSORS_FSCSCY_EVENT 2 /* R */ |
|---|
| 1076 | #define SENSORS_FSCSCY_CONTROL 3 /* RW */ |
|---|
| 1077 | #define SENSORS_FSCSCY_FAN1 4 /* R */ |
|---|
| 1078 | #define SENSORS_FSCSCY_FAN2 5 /* R */ |
|---|
| 1079 | #define SENSORS_FSCSCY_FAN3 6 /* R */ |
|---|
| 1080 | #define SENSORS_FSCSCY_FAN4 7 /* R */ |
|---|
| 1081 | #define SENSORS_FSCSCY_FAN5 8 /* R */ |
|---|
| 1082 | #define SENSORS_FSCSCY_FAN6 9 /* R */ |
|---|
| 1083 | #define SENSORS_FSCSCY_FAN1_MIN 10 /* RW */ |
|---|
| 1084 | #define SENSORS_FSCSCY_FAN2_MIN 11 /* RW */ |
|---|
| 1085 | #define SENSORS_FSCSCY_FAN3_MIN 12 /* RW */ |
|---|
| 1086 | #define SENSORS_FSCSCY_FAN4_MIN 13 /* RW */ |
|---|
| 1087 | #define SENSORS_FSCSCY_FAN5_MIN 14 /* RW */ |
|---|
| 1088 | #define SENSORS_FSCSCY_FAN6_MIN 15 /* RW */ |
|---|
| 1089 | #define SENSORS_FSCSCY_FAN1_STATE 16 /* RW */ |
|---|
| 1090 | #define SENSORS_FSCSCY_FAN2_STATE 17 /* RW */ |
|---|
| 1091 | #define SENSORS_FSCSCY_FAN3_STATE 18 /* RW */ |
|---|
| 1092 | #define SENSORS_FSCSCY_FAN4_STATE 19 /* RW */ |
|---|
| 1093 | #define SENSORS_FSCSCY_FAN5_STATE 20 /* RW */ |
|---|
| 1094 | #define SENSORS_FSCSCY_FAN6_STATE 21 /* RW */ |
|---|
| 1095 | #define SENSORS_FSCSCY_FAN1_RIPPLE 22 /* RW */ |
|---|
| 1096 | #define SENSORS_FSCSCY_FAN2_RIPPLE 23 /* RW */ |
|---|
| 1097 | #define SENSORS_FSCSCY_FAN3_RIPPLE 24 /* RW */ |
|---|
| 1098 | #define SENSORS_FSCSCY_FAN4_RIPPLE 25 /* RW */ |
|---|
| 1099 | #define SENSORS_FSCSCY_FAN5_RIPPLE 26 /* RW */ |
|---|
| 1100 | #define SENSORS_FSCSCY_FAN6_RIPPLE 27 /* RW */ |
|---|
| 1101 | #define SENSORS_FSCSCY_TEMP1 28 /* R */ |
|---|
| 1102 | #define SENSORS_FSCSCY_TEMP2 29 /* R */ |
|---|
| 1103 | #define SENSORS_FSCSCY_TEMP3 30 /* R */ |
|---|
| 1104 | #define SENSORS_FSCSCY_TEMP4 31 /* R */ |
|---|
| 1105 | #define SENSORS_FSCSCY_TEMP1_STATE 32 /* RW */ |
|---|
| 1106 | #define SENSORS_FSCSCY_TEMP2_STATE 33 /* RW */ |
|---|
| 1107 | #define SENSORS_FSCSCY_TEMP3_STATE 34 /* RW */ |
|---|
| 1108 | #define SENSORS_FSCSCY_TEMP4_STATE 35 /* RW */ |
|---|
| 1109 | #define SENSORS_FSCSCY_TEMP1_LIM 36 /* R */ |
|---|
| 1110 | #define SENSORS_FSCSCY_TEMP2_LIM 37 /* R */ |
|---|
| 1111 | #define SENSORS_FSCSCY_TEMP3_LIM 38 /* R */ |
|---|
| 1112 | #define SENSORS_FSCSCY_TEMP4_LIM 39 /* R */ |
|---|
| 1113 | #define SENSORS_FSCSCY_TEMP1_MIN 40 /* R */ |
|---|
| 1114 | #define SENSORS_FSCSCY_TEMP2_MIN 41 /* R */ |
|---|
| 1115 | #define SENSORS_FSCSCY_TEMP3_MIN 42 /* R */ |
|---|
| 1116 | #define SENSORS_FSCSCY_TEMP4_MIN 43 /* R */ |
|---|
| 1117 | #define SENSORS_FSCSCY_TEMP1_MAX 44 /* R */ |
|---|
| 1118 | #define SENSORS_FSCSCY_TEMP2_MAX 45 /* R */ |
|---|
| 1119 | #define SENSORS_FSCSCY_TEMP3_MAX 46 /* R */ |
|---|
| 1120 | #define SENSORS_FSCSCY_TEMP4_MAX 47 /* R */ |
|---|
| 1121 | #define SENSORS_FSCSCY_VOLTAGE1 48/* R */ |
|---|
| 1122 | #define SENSORS_FSCSCY_VOLTAGE2 49/* R */ |
|---|
| 1123 | #define SENSORS_FSCSCY_VOLTAGE3 50/* R */ |
|---|
| 1124 | #define SENSORS_FSCSCY_WDOG_PRESET 51 /* RW */ |
|---|
| 1125 | #define SENSORS_FSCSCY_WDOG_STATE 52 /* RW */ |
|---|
| 1126 | #define SENSORS_FSCSCY_WDOG_CONTROL 52 /* RW */ |
|---|
| 1127 | |
|---|
| 1128 | /* PCF8591 chip. */ |
|---|
| 1129 | |
|---|
| 1130 | #define SENSORS_PCF8591_PREFIX "pcf8591" |
|---|
| 1131 | |
|---|
| 1132 | #define SENSORS_PCF8591_AIN_CONF 1 /* RW */ |
|---|
| 1133 | #define SENSORS_PCF8591_CH0 2 /* R */ |
|---|
| 1134 | #define SENSORS_PCF8591_CH1 3 /* R */ |
|---|
| 1135 | #define SENSORS_PCF8591_CH2 4 /* R */ |
|---|
| 1136 | #define SENSORS_PCF8591_CH3 5 /* R */ |
|---|
| 1137 | #define SENSORS_PCF8591_AOUT_ENABLE 6 /* RW */ |
|---|
| 1138 | #define SENSORS_PCF8591_AOUT 7 /* RW */ |
|---|
| 1139 | |
|---|
| 1140 | |
|---|
| 1141 | #define SENSORS_VT1211_PREFIX "vt1211" |
|---|
| 1142 | |
|---|
| 1143 | #define SENSORS_VT1211_IN0 1 /* R */ |
|---|
| 1144 | #define SENSORS_VT1211_IN1 2 /* R */ |
|---|
| 1145 | #define SENSORS_VT1211_IN2 3 /* R */ |
|---|
| 1146 | #define SENSORS_VT1211_IN3 4 /* R */ |
|---|
| 1147 | #define SENSORS_VT1211_IN4 5 /* R */ |
|---|
| 1148 | #define SENSORS_VT1211_IN5 6 /* R */ |
|---|
| 1149 | #define SENSORS_VT1211_IN6 7 /* R */ |
|---|
| 1150 | #define SENSORS_VT1211_IN0_MIN 11 /* RW */ |
|---|
| 1151 | #define SENSORS_VT1211_IN1_MIN 12 /* RW */ |
|---|
| 1152 | #define SENSORS_VT1211_IN2_MIN 13 /* RW */ |
|---|
| 1153 | #define SENSORS_VT1211_IN3_MIN 14 /* RW */ |
|---|
| 1154 | #define SENSORS_VT1211_IN4_MIN 15 /* RW */ |
|---|
| 1155 | #define SENSORS_VT1211_IN5_MIN 16 /* RW */ |
|---|
| 1156 | #define SENSORS_VT1211_IN6_MIN 17 /* RW */ |
|---|
| 1157 | #define SENSORS_VT1211_IN0_MAX 21 /* RW */ |
|---|
| 1158 | #define SENSORS_VT1211_IN1_MAX 22 /* RW */ |
|---|
| 1159 | #define SENSORS_VT1211_IN2_MAX 23 /* RW */ |
|---|
| 1160 | #define SENSORS_VT1211_IN3_MAX 24 /* RW */ |
|---|
| 1161 | #define SENSORS_VT1211_IN4_MAX 25 /* RW */ |
|---|
| 1162 | #define SENSORS_VT1211_IN5_MAX 26 /* RW */ |
|---|
| 1163 | #define SENSORS_VT1211_IN6_MAX 27 /* RW */ |
|---|
| 1164 | #define SENSORS_VT1211_FAN1 31 /* R */ |
|---|
| 1165 | #define SENSORS_VT1211_FAN2 32 /* R */ |
|---|
| 1166 | #define SENSORS_VT1211_FAN1_MIN 41 /* RW */ |
|---|
| 1167 | #define SENSORS_VT1211_FAN2_MIN 42 /* RW */ |
|---|
| 1168 | #define SENSORS_VT1211_TEMP 51 /* R */ |
|---|
| 1169 | #define SENSORS_VT1211_TEMP_HYST 52 /* RW */ |
|---|
| 1170 | #define SENSORS_VT1211_TEMP_OVER 53 /* RW */ |
|---|
| 1171 | #define SENSORS_VT1211_TEMP2 54 /* R */ |
|---|
| 1172 | #define SENSORS_VT1211_TEMP2_HYST 55 /* RW */ |
|---|
| 1173 | #define SENSORS_VT1211_TEMP2_OVER 56 /* RW */ |
|---|
| 1174 | #define SENSORS_VT1211_TEMP3 57 /* R */ |
|---|
| 1175 | #define SENSORS_VT1211_TEMP3_HYST 58 /* RW */ |
|---|
| 1176 | #define SENSORS_VT1211_TEMP3_OVER 59 /* RW */ |
|---|
| 1177 | #define SENSORS_VT1211_TEMP4 60 /* R */ |
|---|
| 1178 | #define SENSORS_VT1211_TEMP4_HYST 61 /* RW */ |
|---|
| 1179 | #define SENSORS_VT1211_TEMP4_OVER 62 /* RW */ |
|---|
| 1180 | #define SENSORS_VT1211_TEMP5 63 /* R */ |
|---|
| 1181 | #define SENSORS_VT1211_TEMP5_HYST 64 /* RW */ |
|---|
| 1182 | #define SENSORS_VT1211_TEMP5_OVER 65 /* RW */ |
|---|
| 1183 | #define SENSORS_VT1211_TEMP6 66 /* R */ |
|---|
| 1184 | #define SENSORS_VT1211_TEMP6_HYST 67 /* RW */ |
|---|
| 1185 | #define SENSORS_VT1211_TEMP6_OVER 68 /* RW */ |
|---|
| 1186 | #define SENSORS_VT1211_TEMP7 69 /* R */ |
|---|
| 1187 | #define SENSORS_VT1211_TEMP7_HYST 70 /* RW */ |
|---|
| 1188 | #define SENSORS_VT1211_TEMP7_OVER 71 /* RW */ |
|---|
| 1189 | #define SENSORS_VT1211_FAN1_DIV 75 /* RW */ |
|---|
| 1190 | #define SENSORS_VT1211_FAN2_DIV 76 /* RW */ |
|---|
| 1191 | #define SENSORS_VT1211_ALARMS 81 /* R */ |
|---|
| 1192 | #define SENSORS_VT1211_VID 82 /* R */ |
|---|
| 1193 | #define SENSORS_VT1211_VRM 83 /* RW */ |
|---|
| 1194 | #define SENSORS_VT1211_UCH 84 /* RW */ |
|---|
| 1195 | |
|---|
| 1196 | #define SENSORS_SMSC47M1_PREFIX "smsc47m1" |
|---|
| 1197 | |
|---|
| 1198 | #define SENSORS_SMSC47M1_FAN1 31 /* R */ |
|---|
| 1199 | #define SENSORS_SMSC47M1_FAN2 32 /* R */ |
|---|
| 1200 | #define SENSORS_SMSC47M1_FAN1_MIN 41 /* RW */ |
|---|
| 1201 | #define SENSORS_SMSC47M1_FAN2_MIN 42 /* RW */ |
|---|
| 1202 | #define SENSORS_SMSC47M1_FAN1_DIV 75 /* RW */ |
|---|
| 1203 | #define SENSORS_SMSC47M1_FAN2_DIV 76 /* RW */ |
|---|
| 1204 | #define SENSORS_SMSC47M1_ALARMS 81 /* R */ |
|---|
| 1205 | |
|---|
| 1206 | #define SENSORS_LM92_PREFIX "lm92" |
|---|
| 1207 | |
|---|
| 1208 | #define SENSORS_LM92_TEMP_HIGH 1 /* RW */ |
|---|
| 1209 | #define SENSORS_LM92_TEMP_LOW 2 /* RW */ |
|---|
| 1210 | #define SENSORS_LM92_TEMP_CRIT 3 /* RW */ |
|---|
| 1211 | #define SENSORS_LM92_TEMP_HYST 4 /* RW */ |
|---|
| 1212 | #define SENSORS_LM92_TEMP 5 /* R */ |
|---|
| 1213 | #define SENSORS_LM92_ALARMS 6 /* R */ |
|---|
| 1214 | |
|---|
| 1215 | #define SENSORS_VT8231_PREFIX "vt8231" |
|---|
| 1216 | |
|---|
| 1217 | #define SENSORS_VT8231_IN0 1 /* R */ |
|---|
| 1218 | #define SENSORS_VT8231_IN1 2 /* R */ |
|---|
| 1219 | #define SENSORS_VT8231_IN2 3 /* R */ |
|---|
| 1220 | #define SENSORS_VT8231_IN3 4 /* R */ |
|---|
| 1221 | #define SENSORS_VT8231_IN4 5 /* R */ |
|---|
| 1222 | #define SENSORS_VT8231_IN5 6 /* R */ |
|---|
| 1223 | #define SENSORS_VT8231_IN6 7 /* R */ |
|---|
| 1224 | #define SENSORS_VT8231_IN0_MIN 11 /* RW */ |
|---|
| 1225 | #define SENSORS_VT8231_IN1_MIN 12 /* RW */ |
|---|
| 1226 | #define SENSORS_VT8231_IN2_MIN 13 /* RW */ |
|---|
| 1227 | #define SENSORS_VT8231_IN3_MIN 14 /* RW */ |
|---|
| 1228 | #define SENSORS_VT8231_IN4_MIN 15 /* RW */ |
|---|
| 1229 | #define SENSORS_VT8231_IN5_MIN 16 /* RW */ |
|---|
| 1230 | #define SENSORS_VT8231_IN6_MIN 17 /* RW */ |
|---|
| 1231 | #define SENSORS_VT8231_IN0_MAX 21 /* RW */ |
|---|
| 1232 | #define SENSORS_VT8231_IN1_MAX 22 /* RW */ |
|---|
| 1233 | #define SENSORS_VT8231_IN2_MAX 23 /* RW */ |
|---|
| 1234 | #define SENSORS_VT8231_IN3_MAX 24 /* RW */ |
|---|
| 1235 | #define SENSORS_VT8231_IN4_MAX 25 /* RW */ |
|---|
| 1236 | #define SENSORS_VT8231_IN5_MAX 26 /* RW */ |
|---|
| 1237 | #define SENSORS_VT8231_IN6_MAX 27 /* RW */ |
|---|
| 1238 | #define SENSORS_VT8231_FAN1 31 /* R */ |
|---|
| 1239 | #define SENSORS_VT8231_FAN2 32 /* R */ |
|---|
| 1240 | #define SENSORS_VT8231_FAN1_MIN 41 /* RW */ |
|---|
| 1241 | #define SENSORS_VT8231_FAN2_MIN 42 /* RW */ |
|---|
| 1242 | #define SENSORS_VT8231_TEMP 51 /* R */ |
|---|
| 1243 | #define SENSORS_VT8231_TEMP_HYST 52 /* RW */ |
|---|
| 1244 | #define SENSORS_VT8231_TEMP_OVER 53 /* RW */ |
|---|
| 1245 | #define SENSORS_VT8231_TEMP2 54 /* R */ |
|---|
| 1246 | #define SENSORS_VT8231_TEMP2_HYST 55 /* RW */ |
|---|
| 1247 | #define SENSORS_VT8231_TEMP2_OVER 56 /* RW */ |
|---|
| 1248 | #define SENSORS_VT8231_TEMP3 57 /* R */ |
|---|
| 1249 | #define SENSORS_VT8231_TEMP3_HYST 58 /* RW */ |
|---|
| 1250 | #define SENSORS_VT8231_TEMP3_OVER 59 /* RW */ |
|---|
| 1251 | #define SENSORS_VT8231_TEMP4 60 /* R */ |
|---|
| 1252 | #define SENSORS_VT8231_TEMP4_HYST 61 /* RW */ |
|---|
| 1253 | #define SENSORS_VT8231_TEMP4_OVER 62 /* RW */ |
|---|
| 1254 | #define SENSORS_VT8231_TEMP5 63 /* R */ |
|---|
| 1255 | #define SENSORS_VT8231_TEMP5_HYST 64 /* RW */ |
|---|
| 1256 | #define SENSORS_VT8231_TEMP5_OVER 65 /* RW */ |
|---|
| 1257 | #define SENSORS_VT8231_TEMP6 66 /* R */ |
|---|
| 1258 | #define SENSORS_VT8231_TEMP6_HYST 67 /* RW */ |
|---|
| 1259 | #define SENSORS_VT8231_TEMP6_OVER 68 /* RW */ |
|---|
| 1260 | #define SENSORS_VT8231_TEMP7 69 /* R */ |
|---|
| 1261 | #define SENSORS_VT8231_TEMP7_HYST 70 /* RW */ |
|---|
| 1262 | #define SENSORS_VT8231_TEMP7_OVER 71 /* RW */ |
|---|
| 1263 | #define SENSORS_VT8231_FAN1_DIV 75 /* RW */ |
|---|
| 1264 | #define SENSORS_VT8231_FAN2_DIV 76 /* RW */ |
|---|
| 1265 | #define SENSORS_VT8231_ALARMS 81 /* R */ |
|---|
| 1266 | #define SENSORS_VT8231_VID 82 /* R */ |
|---|
| 1267 | #define SENSORS_VT8231_VRM 83 /* RW */ |
|---|
| 1268 | #define SENSORS_VT8231_UCH 84 /* RW */ |
|---|
| 1269 | |
|---|
| 1270 | #define SENSORS_BMC_PREFIX "bmc" |
|---|
| 1271 | |
|---|
| 1272 | /* quantity of each sensor is unknown, so just define the |
|---|
| 1273 | first one of each and keep them 100 apart. */ |
|---|
| 1274 | #define SENSORS_BMC_ALARMS 1 /* R */ |
|---|
| 1275 | #define SENSORS_BMC_IN1 101 /* R */ |
|---|
| 1276 | #define SENSORS_BMC_IN1_MIN 201 /* RW */ |
|---|
| 1277 | #define SENSORS_BMC_IN1_MAX 301 /* RW */ |
|---|
| 1278 | #define SENSORS_BMC_FAN1 1001 /* R */ |
|---|
| 1279 | #define SENSORS_BMC_FAN1_MIN 1101 /* RW */ |
|---|
| 1280 | #define SENSORS_BMC_TEMP1 2001 /* R */ |
|---|
| 1281 | #define SENSORS_BMC_TEMP1_MIN 2101 /* RW */ |
|---|
| 1282 | #define SENSORS_BMC_TEMP1_MAX 2201 /* RW */ |
|---|
| 1283 | #define SENSORS_BMC_CURR1 3001 /* R */ |
|---|
| 1284 | #define SENSORS_BMC_CURR1_MIN 3101 /* RW */ |
|---|
| 1285 | #define SENSORS_BMC_CURR1_MAX 3201 /* RW */ |
|---|
| 1286 | |
|---|
| 1287 | #endif /* def LIB_SENSORS_CHIPS_H */ |
|---|