| | 2265 | /* DME1737 */ |
| | 2266 | |
| | 2267 | #define SENSORS_DME1737_PREFIX "dme1737" |
| | 2268 | |
| | 2269 | /* in n from 0 to 6 */ |
| | 2270 | #define SENSORS_DME1737_IN(n) (0x01 + (n)) /* R */ |
| | 2271 | #define SENSORS_DME1737_IN_MIN(n) (0x11 + (n)) /* RW */ |
| | 2272 | #define SENSORS_DME1737_IN_MAX(n) (0x21 + (n)) /* RW */ |
| | 2273 | #define SENSORS_DME1737_IN_ALARM(n) (0x31 + (n)) /* R */ |
| | 2274 | |
| | 2275 | /* temp n from 1 to 3*/ |
| | 2276 | #define SENSORS_DME1737_TEMP(n) (0x41 + (n)) /* R */ |
| | 2277 | #define SENSORS_DME1737_TEMP_MIN(n) (0x51 + (n)) /* RW */ |
| | 2278 | #define SENSORS_DME1737_TEMP_MAX(n) (0x61 + (n)) /* RW */ |
| | 2279 | #define SENSORS_DME1737_TEMP_ALARM(n) (0x71 + (n)) /* R */ |
| | 2280 | #define SENSORS_DME1737_TEMP_FAULT(n) (0x81 + (n)) /* R */ |
| | 2281 | |
| | 2282 | /* fan n from 1 to 6 */ |
| | 2283 | #define SENSORS_DME1737_FAN(n) (0x91 + (n)) /* R */ |
| | 2284 | #define SENSORS_DME1737_FAN_MIN(n) (0xa1 + (n)) /* RW */ |
| | 2285 | #define SENSORS_DME1737_FAN_ALARM(n) (0xb1 + (n)) /* R */ |
| | 2286 | |
| | 2287 | /* pwm n from 1 to 3 and 5 to 6 */ |
| | 2288 | #define SENSORS_DME1737_PWM(n) (0xc1 + (n)) /* RW */ |
| | 2289 | #define SENSORS_DME1737_PWM_ENABLE(n) (0xd1 + (n)) /* RW */ |
| | 2290 | #define SENSORS_DME1737_PWM_FREQ(n) (0xe1 + (n)) /* RW */ |
| | 2291 | |
| | 2292 | #define SENSORS_DME1737_VID (0xf0) /* R */ |
| | 2293 | #define SENSORS_DME1737_VRM (0xf1) /* RW */ |
| | 2294 | |