2 * nct7802 - Driver for Nuvoton NCT7802Y
4 * Copyright (C) 2014 Guenter Roeck <linux@roeck-us.net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19 #include <linux/err.h>
20 #include <linux/i2c.h>
21 #include <linux/init.h>
22 #include <linux/hwmon.h>
23 #include <linux/hwmon-sysfs.h>
24 #include <linux/jiffies.h>
25 #include <linux/module.h>
26 #include <linux/mutex.h>
27 #include <linux/regmap.h>
28 #include <linux/slab.h>
30 #define DRVNAME "nct7802"
32 static const u8 REG_VOLTAGE
[5] = { 0x09, 0x0a, 0x0c, 0x0d, 0x0e };
34 static const u8 REG_VOLTAGE_LIMIT_LSB
[2][5] = {
35 { 0x40, 0x00, 0x42, 0x44, 0x46 },
36 { 0x3f, 0x00, 0x41, 0x43, 0x45 },
39 static const u8 REG_VOLTAGE_LIMIT_MSB
[5] = { 0x48, 0x00, 0x47, 0x47, 0x48 };
41 static const u8 REG_VOLTAGE_LIMIT_MSB_SHIFT
[2][5] = {
47 #define REG_TEMP_LSB 0x05
48 #define REG_TEMP_PECI_LSB 0x08
49 #define REG_VOLTAGE_LOW 0x0f
50 #define REG_FANCOUNT_LOW 0x13
51 #define REG_START 0x21
52 #define REG_MODE 0x22 /* 7.2.32 Mode Selection Register */
53 #define REG_PECI_ENABLE 0x23
54 #define REG_FAN_ENABLE 0x24
55 #define REG_VMON_ENABLE 0x25
56 #define REG_PWM(x) (0x60 + (x))
57 #define REG_SMARTFAN_EN(x) (0x64 + (x) / 2)
58 #define SMARTFAN_EN_SHIFT(x) ((x) % 2 * 4)
59 #define REG_VENDOR_ID 0xfd
60 #define REG_CHIP_ID 0xfe
61 #define REG_VERSION_ID 0xff
64 * Data structures and manipulation thereof
68 struct regmap
*regmap
;
69 struct mutex access_lock
; /* for multi-byte read and write operations */
72 static ssize_t
show_temp_type(struct device
*dev
, struct device_attribute
*attr
,
75 struct nct7802_data
*data
= dev_get_drvdata(dev
);
76 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
80 ret
= regmap_read(data
->regmap
, REG_MODE
, &mode
);
84 return sprintf(buf
, "%u\n", (mode
>> (2 * sattr
->index
) & 3) + 2);
87 static ssize_t
store_temp_type(struct device
*dev
,
88 struct device_attribute
*attr
,
89 const char *buf
, size_t count
)
91 struct nct7802_data
*data
= dev_get_drvdata(dev
);
92 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
96 err
= kstrtouint(buf
, 0, &type
);
99 if (sattr
->index
== 2 && type
!= 4) /* RD3 */
101 if (type
< 3 || type
> 4)
103 err
= regmap_update_bits(data
->regmap
, REG_MODE
,
104 3 << 2 * sattr
->index
, (type
- 2) << 2 * sattr
->index
);
105 return err
? : count
;
108 static ssize_t
show_pwm_mode(struct device
*dev
, struct device_attribute
*attr
,
111 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
112 struct nct7802_data
*data
= dev_get_drvdata(dev
);
116 if (sattr
->index
> 1)
117 return sprintf(buf
, "1\n");
119 ret
= regmap_read(data
->regmap
, 0x5E, ®val
);
123 return sprintf(buf
, "%u\n", !(regval
& (1 << sattr
->index
)));
126 static ssize_t
show_pwm(struct device
*dev
, struct device_attribute
*devattr
,
129 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
130 struct nct7802_data
*data
= dev_get_drvdata(dev
);
135 return sprintf(buf
, "255\n");
137 ret
= regmap_read(data
->regmap
, attr
->index
, &val
);
141 return sprintf(buf
, "%d\n", val
);
144 static ssize_t
store_pwm(struct device
*dev
, struct device_attribute
*devattr
,
145 const char *buf
, size_t count
)
147 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
148 struct nct7802_data
*data
= dev_get_drvdata(dev
);
152 err
= kstrtou8(buf
, 0, &val
);
156 err
= regmap_write(data
->regmap
, attr
->index
, val
);
157 return err
? : count
;
160 static ssize_t
show_pwm_enable(struct device
*dev
,
161 struct device_attribute
*attr
, char *buf
)
163 struct nct7802_data
*data
= dev_get_drvdata(dev
);
164 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
165 unsigned int reg
, enabled
;
168 ret
= regmap_read(data
->regmap
, REG_SMARTFAN_EN(sattr
->index
), ®
);
171 enabled
= reg
>> SMARTFAN_EN_SHIFT(sattr
->index
) & 1;
172 return sprintf(buf
, "%u\n", enabled
+ 1);
175 static ssize_t
store_pwm_enable(struct device
*dev
,
176 struct device_attribute
*attr
,
177 const char *buf
, size_t count
)
179 struct nct7802_data
*data
= dev_get_drvdata(dev
);
180 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
184 ret
= kstrtou8(buf
, 0, &val
);
187 if (val
< 1 || val
> 2)
189 ret
= regmap_update_bits(data
->regmap
, REG_SMARTFAN_EN(sattr
->index
),
190 1 << SMARTFAN_EN_SHIFT(sattr
->index
),
191 (val
- 1) << SMARTFAN_EN_SHIFT(sattr
->index
));
192 return ret
? : count
;
195 static int nct7802_read_temp(struct nct7802_data
*data
,
196 u8 reg_temp
, u8 reg_temp_low
, int *temp
)
198 unsigned int t1
, t2
= 0;
203 mutex_lock(&data
->access_lock
);
204 err
= regmap_read(data
->regmap
, reg_temp
, &t1
);
208 if (reg_temp_low
) { /* 11 bit data */
209 err
= regmap_read(data
->regmap
, reg_temp_low
, &t2
);
214 *temp
= (s16
)t1
/ 32 * 125;
216 mutex_unlock(&data
->access_lock
);
220 static int nct7802_read_fan(struct nct7802_data
*data
, u8 reg_fan
)
225 mutex_lock(&data
->access_lock
);
226 ret
= regmap_read(data
->regmap
, reg_fan
, &f1
);
229 ret
= regmap_read(data
->regmap
, REG_FANCOUNT_LOW
, &f2
);
232 ret
= (f1
<< 5) | (f2
>> 3);
233 /* convert fan count to rpm */
234 if (ret
== 0x1fff) /* maximum value, assume fan is stopped */
237 ret
= DIV_ROUND_CLOSEST(1350000U, ret
);
239 mutex_unlock(&data
->access_lock
);
243 static int nct7802_read_fan_min(struct nct7802_data
*data
, u8 reg_fan_low
,
249 mutex_lock(&data
->access_lock
);
250 ret
= regmap_read(data
->regmap
, reg_fan_low
, &f1
);
253 ret
= regmap_read(data
->regmap
, reg_fan_high
, &f2
);
256 ret
= f1
| ((f2
& 0xf8) << 5);
257 /* convert fan count to rpm */
258 if (ret
== 0x1fff) /* maximum value, assume no limit */
261 ret
= DIV_ROUND_CLOSEST(1350000U, ret
);
263 mutex_unlock(&data
->access_lock
);
267 static int nct7802_write_fan_min(struct nct7802_data
*data
, u8 reg_fan_low
,
268 u8 reg_fan_high
, unsigned int limit
)
273 limit
= DIV_ROUND_CLOSEST(1350000U, limit
);
276 limit
= clamp_val(limit
, 0, 0x1fff);
278 mutex_lock(&data
->access_lock
);
279 err
= regmap_write(data
->regmap
, reg_fan_low
, limit
& 0xff);
283 err
= regmap_write(data
->regmap
, reg_fan_high
, (limit
& 0x1f00) >> 5);
285 mutex_unlock(&data
->access_lock
);
289 static u8 nct7802_vmul
[] = { 4, 2, 2, 2, 2 };
291 static int nct7802_read_voltage(struct nct7802_data
*data
, int nr
, int index
)
296 mutex_lock(&data
->access_lock
);
297 if (index
== 0) { /* voltage */
298 ret
= regmap_read(data
->regmap
, REG_VOLTAGE
[nr
], &v1
);
301 ret
= regmap_read(data
->regmap
, REG_VOLTAGE_LOW
, &v2
);
304 ret
= ((v1
<< 2) | (v2
>> 6)) * nct7802_vmul
[nr
];
306 int shift
= 8 - REG_VOLTAGE_LIMIT_MSB_SHIFT
[index
- 1][nr
];
308 ret
= regmap_read(data
->regmap
,
309 REG_VOLTAGE_LIMIT_LSB
[index
- 1][nr
], &v1
);
312 ret
= regmap_read(data
->regmap
, REG_VOLTAGE_LIMIT_MSB
[nr
],
316 ret
= (v1
| ((v2
<< shift
) & 0x300)) * nct7802_vmul
[nr
];
319 mutex_unlock(&data
->access_lock
);
323 static int nct7802_write_voltage(struct nct7802_data
*data
, int nr
, int index
,
324 unsigned long voltage
)
326 int shift
= 8 - REG_VOLTAGE_LIMIT_MSB_SHIFT
[index
- 1][nr
];
329 voltage
= DIV_ROUND_CLOSEST(voltage
, nct7802_vmul
[nr
]);
330 voltage
= clamp_val(voltage
, 0, 0x3ff);
332 mutex_lock(&data
->access_lock
);
333 err
= regmap_write(data
->regmap
,
334 REG_VOLTAGE_LIMIT_LSB
[index
- 1][nr
],
339 err
= regmap_update_bits(data
->regmap
, REG_VOLTAGE_LIMIT_MSB
[nr
],
340 0x0300 >> shift
, (voltage
& 0x0300) >> shift
);
342 mutex_unlock(&data
->access_lock
);
346 static ssize_t
show_in(struct device
*dev
, struct device_attribute
*attr
,
349 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
350 struct nct7802_data
*data
= dev_get_drvdata(dev
);
353 voltage
= nct7802_read_voltage(data
, sattr
->nr
, sattr
->index
);
357 return sprintf(buf
, "%d\n", voltage
);
360 static ssize_t
store_in(struct device
*dev
, struct device_attribute
*attr
,
361 const char *buf
, size_t count
)
363 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
364 struct nct7802_data
*data
= dev_get_drvdata(dev
);
365 int index
= sattr
->index
;
370 err
= kstrtoul(buf
, 10, &val
);
374 err
= nct7802_write_voltage(data
, nr
, index
, val
);
375 return err
? : count
;
378 static ssize_t
show_temp(struct device
*dev
, struct device_attribute
*attr
,
381 struct nct7802_data
*data
= dev_get_drvdata(dev
);
382 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
385 err
= nct7802_read_temp(data
, sattr
->nr
, sattr
->index
, &temp
);
389 return sprintf(buf
, "%d\n", temp
);
392 static ssize_t
store_temp(struct device
*dev
, struct device_attribute
*attr
,
393 const char *buf
, size_t count
)
395 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
396 struct nct7802_data
*data
= dev_get_drvdata(dev
);
401 err
= kstrtol(buf
, 10, &val
);
405 val
= clamp_val(DIV_ROUND_CLOSEST(val
, 1000), -128, 127);
407 err
= regmap_write(data
->regmap
, nr
, val
& 0xff);
408 return err
? : count
;
411 static ssize_t
show_fan(struct device
*dev
, struct device_attribute
*attr
,
414 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
415 struct nct7802_data
*data
= dev_get_drvdata(dev
);
418 speed
= nct7802_read_fan(data
, sattr
->index
);
422 return sprintf(buf
, "%d\n", speed
);
425 static ssize_t
show_fan_min(struct device
*dev
, struct device_attribute
*attr
,
428 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
429 struct nct7802_data
*data
= dev_get_drvdata(dev
);
432 speed
= nct7802_read_fan_min(data
, sattr
->nr
, sattr
->index
);
436 return sprintf(buf
, "%d\n", speed
);
439 static ssize_t
store_fan_min(struct device
*dev
, struct device_attribute
*attr
,
440 const char *buf
, size_t count
)
442 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
443 struct nct7802_data
*data
= dev_get_drvdata(dev
);
447 err
= kstrtoul(buf
, 10, &val
);
451 err
= nct7802_write_fan_min(data
, sattr
->nr
, sattr
->index
, val
);
452 return err
? : count
;
455 static ssize_t
show_alarm(struct device
*dev
, struct device_attribute
*attr
,
458 struct nct7802_data
*data
= dev_get_drvdata(dev
);
459 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
460 int bit
= sattr
->index
;
464 ret
= regmap_read(data
->regmap
, sattr
->nr
, &val
);
468 return sprintf(buf
, "%u\n", !!(val
& (1 << bit
)));
472 show_beep(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
474 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
475 struct nct7802_data
*data
= dev_get_drvdata(dev
);
479 err
= regmap_read(data
->regmap
, sattr
->nr
, ®val
);
483 return sprintf(buf
, "%u\n", !!(regval
& (1 << sattr
->index
)));
487 store_beep(struct device
*dev
, struct device_attribute
*attr
, const char *buf
,
490 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
491 struct nct7802_data
*data
= dev_get_drvdata(dev
);
495 err
= kstrtoul(buf
, 10, &val
);
501 err
= regmap_update_bits(data
->regmap
, sattr
->nr
, 1 << sattr
->index
,
502 val
? 1 << sattr
->index
: 0);
503 return err
? : count
;
506 static SENSOR_DEVICE_ATTR(temp1_type
, S_IRUGO
| S_IWUSR
,
507 show_temp_type
, store_temp_type
, 0);
508 static SENSOR_DEVICE_ATTR_2(temp1_input
, S_IRUGO
, show_temp
, NULL
, 0x01,
510 static SENSOR_DEVICE_ATTR_2(temp1_min
, S_IRUGO
| S_IWUSR
, show_temp
,
511 store_temp
, 0x31, 0);
512 static SENSOR_DEVICE_ATTR_2(temp1_max
, S_IRUGO
| S_IWUSR
, show_temp
,
513 store_temp
, 0x30, 0);
514 static SENSOR_DEVICE_ATTR_2(temp1_crit
, S_IRUGO
| S_IWUSR
, show_temp
,
515 store_temp
, 0x3a, 0);
517 static SENSOR_DEVICE_ATTR(temp2_type
, S_IRUGO
| S_IWUSR
,
518 show_temp_type
, store_temp_type
, 1);
519 static SENSOR_DEVICE_ATTR_2(temp2_input
, S_IRUGO
, show_temp
, NULL
, 0x02,
521 static SENSOR_DEVICE_ATTR_2(temp2_min
, S_IRUGO
| S_IWUSR
, show_temp
,
522 store_temp
, 0x33, 0);
523 static SENSOR_DEVICE_ATTR_2(temp2_max
, S_IRUGO
| S_IWUSR
, show_temp
,
524 store_temp
, 0x32, 0);
525 static SENSOR_DEVICE_ATTR_2(temp2_crit
, S_IRUGO
| S_IWUSR
, show_temp
,
526 store_temp
, 0x3b, 0);
528 static SENSOR_DEVICE_ATTR(temp3_type
, S_IRUGO
| S_IWUSR
,
529 show_temp_type
, store_temp_type
, 2);
530 static SENSOR_DEVICE_ATTR_2(temp3_input
, S_IRUGO
, show_temp
, NULL
, 0x03,
532 static SENSOR_DEVICE_ATTR_2(temp3_min
, S_IRUGO
| S_IWUSR
, show_temp
,
533 store_temp
, 0x35, 0);
534 static SENSOR_DEVICE_ATTR_2(temp3_max
, S_IRUGO
| S_IWUSR
, show_temp
,
535 store_temp
, 0x34, 0);
536 static SENSOR_DEVICE_ATTR_2(temp3_crit
, S_IRUGO
| S_IWUSR
, show_temp
,
537 store_temp
, 0x3c, 0);
539 static SENSOR_DEVICE_ATTR_2(temp4_input
, S_IRUGO
, show_temp
, NULL
, 0x04, 0);
540 static SENSOR_DEVICE_ATTR_2(temp4_min
, S_IRUGO
| S_IWUSR
, show_temp
,
541 store_temp
, 0x37, 0);
542 static SENSOR_DEVICE_ATTR_2(temp4_max
, S_IRUGO
| S_IWUSR
, show_temp
,
543 store_temp
, 0x36, 0);
544 static SENSOR_DEVICE_ATTR_2(temp4_crit
, S_IRUGO
| S_IWUSR
, show_temp
,
545 store_temp
, 0x3d, 0);
547 static SENSOR_DEVICE_ATTR_2(temp5_input
, S_IRUGO
, show_temp
, NULL
, 0x06,
549 static SENSOR_DEVICE_ATTR_2(temp5_min
, S_IRUGO
| S_IWUSR
, show_temp
,
550 store_temp
, 0x39, 0);
551 static SENSOR_DEVICE_ATTR_2(temp5_max
, S_IRUGO
| S_IWUSR
, show_temp
,
552 store_temp
, 0x38, 0);
553 static SENSOR_DEVICE_ATTR_2(temp5_crit
, S_IRUGO
| S_IWUSR
, show_temp
,
554 store_temp
, 0x3e, 0);
556 static SENSOR_DEVICE_ATTR_2(temp6_input
, S_IRUGO
, show_temp
, NULL
, 0x07,
559 static SENSOR_DEVICE_ATTR_2(temp1_min_alarm
, S_IRUGO
, show_alarm
, NULL
,
561 static SENSOR_DEVICE_ATTR_2(temp2_min_alarm
, S_IRUGO
, show_alarm
, NULL
,
563 static SENSOR_DEVICE_ATTR_2(temp3_min_alarm
, S_IRUGO
, show_alarm
, NULL
,
565 static SENSOR_DEVICE_ATTR_2(temp4_min_alarm
, S_IRUGO
, show_alarm
, NULL
,
567 static SENSOR_DEVICE_ATTR_2(temp5_min_alarm
, S_IRUGO
, show_alarm
, NULL
,
570 static SENSOR_DEVICE_ATTR_2(temp1_max_alarm
, S_IRUGO
, show_alarm
, NULL
,
572 static SENSOR_DEVICE_ATTR_2(temp2_max_alarm
, S_IRUGO
, show_alarm
, NULL
,
574 static SENSOR_DEVICE_ATTR_2(temp3_max_alarm
, S_IRUGO
, show_alarm
, NULL
,
576 static SENSOR_DEVICE_ATTR_2(temp4_max_alarm
, S_IRUGO
, show_alarm
, NULL
,
578 static SENSOR_DEVICE_ATTR_2(temp5_max_alarm
, S_IRUGO
, show_alarm
, NULL
,
581 static SENSOR_DEVICE_ATTR_2(temp1_crit_alarm
, S_IRUGO
, show_alarm
, NULL
,
583 static SENSOR_DEVICE_ATTR_2(temp2_crit_alarm
, S_IRUGO
, show_alarm
, NULL
,
585 static SENSOR_DEVICE_ATTR_2(temp3_crit_alarm
, S_IRUGO
, show_alarm
, NULL
,
587 static SENSOR_DEVICE_ATTR_2(temp4_crit_alarm
, S_IRUGO
, show_alarm
, NULL
,
589 static SENSOR_DEVICE_ATTR_2(temp5_crit_alarm
, S_IRUGO
, show_alarm
, NULL
,
592 static SENSOR_DEVICE_ATTR_2(temp1_fault
, S_IRUGO
, show_alarm
, NULL
, 0x17, 0);
593 static SENSOR_DEVICE_ATTR_2(temp2_fault
, S_IRUGO
, show_alarm
, NULL
, 0x17, 1);
594 static SENSOR_DEVICE_ATTR_2(temp3_fault
, S_IRUGO
, show_alarm
, NULL
, 0x17, 2);
596 static SENSOR_DEVICE_ATTR_2(temp1_beep
, S_IRUGO
| S_IWUSR
, show_beep
,
597 store_beep
, 0x5c, 0);
598 static SENSOR_DEVICE_ATTR_2(temp2_beep
, S_IRUGO
| S_IWUSR
, show_beep
,
599 store_beep
, 0x5c, 1);
600 static SENSOR_DEVICE_ATTR_2(temp3_beep
, S_IRUGO
| S_IWUSR
, show_beep
,
601 store_beep
, 0x5c, 2);
602 static SENSOR_DEVICE_ATTR_2(temp4_beep
, S_IRUGO
| S_IWUSR
, show_beep
,
603 store_beep
, 0x5c, 3);
604 static SENSOR_DEVICE_ATTR_2(temp5_beep
, S_IRUGO
| S_IWUSR
, show_beep
,
605 store_beep
, 0x5c, 4);
606 static SENSOR_DEVICE_ATTR_2(temp6_beep
, S_IRUGO
| S_IWUSR
, show_beep
,
607 store_beep
, 0x5c, 5);
609 static struct attribute
*nct7802_temp_attrs
[] = {
610 &sensor_dev_attr_temp1_type
.dev_attr
.attr
,
611 &sensor_dev_attr_temp1_input
.dev_attr
.attr
,
612 &sensor_dev_attr_temp1_min
.dev_attr
.attr
,
613 &sensor_dev_attr_temp1_max
.dev_attr
.attr
,
614 &sensor_dev_attr_temp1_crit
.dev_attr
.attr
,
615 &sensor_dev_attr_temp1_min_alarm
.dev_attr
.attr
,
616 &sensor_dev_attr_temp1_max_alarm
.dev_attr
.attr
,
617 &sensor_dev_attr_temp1_crit_alarm
.dev_attr
.attr
,
618 &sensor_dev_attr_temp1_fault
.dev_attr
.attr
,
619 &sensor_dev_attr_temp1_beep
.dev_attr
.attr
,
621 &sensor_dev_attr_temp2_type
.dev_attr
.attr
, /* 10 */
622 &sensor_dev_attr_temp2_input
.dev_attr
.attr
,
623 &sensor_dev_attr_temp2_min
.dev_attr
.attr
,
624 &sensor_dev_attr_temp2_max
.dev_attr
.attr
,
625 &sensor_dev_attr_temp2_crit
.dev_attr
.attr
,
626 &sensor_dev_attr_temp2_min_alarm
.dev_attr
.attr
,
627 &sensor_dev_attr_temp2_max_alarm
.dev_attr
.attr
,
628 &sensor_dev_attr_temp2_crit_alarm
.dev_attr
.attr
,
629 &sensor_dev_attr_temp2_fault
.dev_attr
.attr
,
630 &sensor_dev_attr_temp2_beep
.dev_attr
.attr
,
632 &sensor_dev_attr_temp3_type
.dev_attr
.attr
, /* 20 */
633 &sensor_dev_attr_temp3_input
.dev_attr
.attr
,
634 &sensor_dev_attr_temp3_min
.dev_attr
.attr
,
635 &sensor_dev_attr_temp3_max
.dev_attr
.attr
,
636 &sensor_dev_attr_temp3_crit
.dev_attr
.attr
,
637 &sensor_dev_attr_temp3_min_alarm
.dev_attr
.attr
,
638 &sensor_dev_attr_temp3_max_alarm
.dev_attr
.attr
,
639 &sensor_dev_attr_temp3_crit_alarm
.dev_attr
.attr
,
640 &sensor_dev_attr_temp3_fault
.dev_attr
.attr
,
641 &sensor_dev_attr_temp3_beep
.dev_attr
.attr
,
643 &sensor_dev_attr_temp4_input
.dev_attr
.attr
, /* 30 */
644 &sensor_dev_attr_temp4_min
.dev_attr
.attr
,
645 &sensor_dev_attr_temp4_max
.dev_attr
.attr
,
646 &sensor_dev_attr_temp4_crit
.dev_attr
.attr
,
647 &sensor_dev_attr_temp4_min_alarm
.dev_attr
.attr
,
648 &sensor_dev_attr_temp4_max_alarm
.dev_attr
.attr
,
649 &sensor_dev_attr_temp4_crit_alarm
.dev_attr
.attr
,
650 &sensor_dev_attr_temp4_beep
.dev_attr
.attr
,
652 &sensor_dev_attr_temp5_input
.dev_attr
.attr
, /* 38 */
653 &sensor_dev_attr_temp5_min
.dev_attr
.attr
,
654 &sensor_dev_attr_temp5_max
.dev_attr
.attr
,
655 &sensor_dev_attr_temp5_crit
.dev_attr
.attr
,
656 &sensor_dev_attr_temp5_min_alarm
.dev_attr
.attr
,
657 &sensor_dev_attr_temp5_max_alarm
.dev_attr
.attr
,
658 &sensor_dev_attr_temp5_crit_alarm
.dev_attr
.attr
,
659 &sensor_dev_attr_temp5_beep
.dev_attr
.attr
,
661 &sensor_dev_attr_temp6_input
.dev_attr
.attr
, /* 46 */
662 &sensor_dev_attr_temp6_beep
.dev_attr
.attr
,
667 static umode_t
nct7802_temp_is_visible(struct kobject
*kobj
,
668 struct attribute
*attr
, int index
)
670 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
671 struct nct7802_data
*data
= dev_get_drvdata(dev
);
675 err
= regmap_read(data
->regmap
, REG_MODE
, ®
);
680 (reg
& 03) != 0x01 && (reg
& 0x03) != 0x02) /* RD1 */
683 if (index
>= 10 && index
< 20 &&
684 (reg
& 0x0c) != 0x04 && (reg
& 0x0c) != 0x08) /* RD2 */
686 if (index
>= 20 && index
< 30 && (reg
& 0x30) != 0x20) /* RD3 */
689 if (index
>= 30 && index
< 38) /* local */
692 err
= regmap_read(data
->regmap
, REG_PECI_ENABLE
, ®
);
696 if (index
>= 38 && index
< 46 && !(reg
& 0x01)) /* PECI 0 */
699 if (index
>= 0x46 && (!(reg
& 0x02))) /* PECI 1 */
705 static struct attribute_group nct7802_temp_group
= {
706 .attrs
= nct7802_temp_attrs
,
707 .is_visible
= nct7802_temp_is_visible
,
710 static SENSOR_DEVICE_ATTR_2(in0_input
, S_IRUGO
, show_in
, NULL
, 0, 0);
711 static SENSOR_DEVICE_ATTR_2(in0_min
, S_IRUGO
| S_IWUSR
, show_in
, store_in
,
713 static SENSOR_DEVICE_ATTR_2(in0_max
, S_IRUGO
| S_IWUSR
, show_in
, store_in
,
715 static SENSOR_DEVICE_ATTR_2(in0_alarm
, S_IRUGO
, show_alarm
, NULL
, 0x1e, 3);
716 static SENSOR_DEVICE_ATTR_2(in0_beep
, S_IRUGO
| S_IWUSR
, show_beep
, store_beep
,
719 static SENSOR_DEVICE_ATTR_2(in1_input
, S_IRUGO
, show_in
, NULL
, 1, 0);
721 static SENSOR_DEVICE_ATTR_2(in2_input
, S_IRUGO
, show_in
, NULL
, 2, 0);
722 static SENSOR_DEVICE_ATTR_2(in2_min
, S_IRUGO
| S_IWUSR
, show_in
, store_in
,
724 static SENSOR_DEVICE_ATTR_2(in2_max
, S_IRUGO
| S_IWUSR
, show_in
, store_in
,
726 static SENSOR_DEVICE_ATTR_2(in2_alarm
, S_IRUGO
, show_alarm
, NULL
, 0x1e, 0);
727 static SENSOR_DEVICE_ATTR_2(in2_beep
, S_IRUGO
| S_IWUSR
, show_beep
, store_beep
,
730 static SENSOR_DEVICE_ATTR_2(in3_input
, S_IRUGO
, show_in
, NULL
, 3, 0);
731 static SENSOR_DEVICE_ATTR_2(in3_min
, S_IRUGO
| S_IWUSR
, show_in
, store_in
,
733 static SENSOR_DEVICE_ATTR_2(in3_max
, S_IRUGO
| S_IWUSR
, show_in
, store_in
,
735 static SENSOR_DEVICE_ATTR_2(in3_alarm
, S_IRUGO
, show_alarm
, NULL
, 0x1e, 1);
736 static SENSOR_DEVICE_ATTR_2(in3_beep
, S_IRUGO
| S_IWUSR
, show_beep
, store_beep
,
739 static SENSOR_DEVICE_ATTR_2(in4_input
, S_IRUGO
, show_in
, NULL
, 4, 0);
740 static SENSOR_DEVICE_ATTR_2(in4_min
, S_IRUGO
| S_IWUSR
, show_in
, store_in
,
742 static SENSOR_DEVICE_ATTR_2(in4_max
, S_IRUGO
| S_IWUSR
, show_in
, store_in
,
744 static SENSOR_DEVICE_ATTR_2(in4_alarm
, S_IRUGO
, show_alarm
, NULL
, 0x1e, 2);
745 static SENSOR_DEVICE_ATTR_2(in4_beep
, S_IRUGO
| S_IWUSR
, show_beep
, store_beep
,
748 static struct attribute
*nct7802_in_attrs
[] = {
749 &sensor_dev_attr_in0_input
.dev_attr
.attr
,
750 &sensor_dev_attr_in0_min
.dev_attr
.attr
,
751 &sensor_dev_attr_in0_max
.dev_attr
.attr
,
752 &sensor_dev_attr_in0_alarm
.dev_attr
.attr
,
753 &sensor_dev_attr_in0_beep
.dev_attr
.attr
,
755 &sensor_dev_attr_in1_input
.dev_attr
.attr
, /* 5 */
757 &sensor_dev_attr_in2_input
.dev_attr
.attr
, /* 6 */
758 &sensor_dev_attr_in2_min
.dev_attr
.attr
,
759 &sensor_dev_attr_in2_max
.dev_attr
.attr
,
760 &sensor_dev_attr_in2_alarm
.dev_attr
.attr
,
761 &sensor_dev_attr_in2_beep
.dev_attr
.attr
,
763 &sensor_dev_attr_in3_input
.dev_attr
.attr
, /* 11 */
764 &sensor_dev_attr_in3_min
.dev_attr
.attr
,
765 &sensor_dev_attr_in3_max
.dev_attr
.attr
,
766 &sensor_dev_attr_in3_alarm
.dev_attr
.attr
,
767 &sensor_dev_attr_in3_beep
.dev_attr
.attr
,
769 &sensor_dev_attr_in4_input
.dev_attr
.attr
, /* 17 */
770 &sensor_dev_attr_in4_min
.dev_attr
.attr
,
771 &sensor_dev_attr_in4_max
.dev_attr
.attr
,
772 &sensor_dev_attr_in4_alarm
.dev_attr
.attr
,
773 &sensor_dev_attr_in4_beep
.dev_attr
.attr
,
778 static umode_t
nct7802_in_is_visible(struct kobject
*kobj
,
779 struct attribute
*attr
, int index
)
781 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
782 struct nct7802_data
*data
= dev_get_drvdata(dev
);
786 if (index
< 6) /* VCC, VCORE */
789 err
= regmap_read(data
->regmap
, REG_MODE
, ®
);
793 if (index
>= 6 && index
< 11 && (reg
& 0x03) != 0x03) /* VSEN1 */
795 if (index
>= 11 && index
< 17 && (reg
& 0x0c) != 0x0c) /* VSEN2 */
797 if (index
>= 17 && (reg
& 0x30) != 0x30) /* VSEN3 */
803 static struct attribute_group nct7802_in_group
= {
804 .attrs
= nct7802_in_attrs
,
805 .is_visible
= nct7802_in_is_visible
,
808 static SENSOR_DEVICE_ATTR(fan1_input
, S_IRUGO
, show_fan
, NULL
, 0x10);
809 static SENSOR_DEVICE_ATTR_2(fan1_min
, S_IRUGO
| S_IWUSR
, show_fan_min
,
810 store_fan_min
, 0x49, 0x4c);
811 static SENSOR_DEVICE_ATTR_2(fan1_alarm
, S_IRUGO
, show_alarm
, NULL
, 0x1a, 0);
812 static SENSOR_DEVICE_ATTR_2(fan1_beep
, S_IRUGO
| S_IWUSR
, show_beep
, store_beep
,
814 static SENSOR_DEVICE_ATTR(fan2_input
, S_IRUGO
, show_fan
, NULL
, 0x11);
815 static SENSOR_DEVICE_ATTR_2(fan2_min
, S_IRUGO
| S_IWUSR
, show_fan_min
,
816 store_fan_min
, 0x4a, 0x4d);
817 static SENSOR_DEVICE_ATTR_2(fan2_alarm
, S_IRUGO
, show_alarm
, NULL
, 0x1a, 1);
818 static SENSOR_DEVICE_ATTR_2(fan2_beep
, S_IRUGO
| S_IWUSR
, show_beep
, store_beep
,
820 static SENSOR_DEVICE_ATTR(fan3_input
, S_IRUGO
, show_fan
, NULL
, 0x12);
821 static SENSOR_DEVICE_ATTR_2(fan3_min
, S_IRUGO
| S_IWUSR
, show_fan_min
,
822 store_fan_min
, 0x4b, 0x4e);
823 static SENSOR_DEVICE_ATTR_2(fan3_alarm
, S_IRUGO
, show_alarm
, NULL
, 0x1a, 2);
824 static SENSOR_DEVICE_ATTR_2(fan3_beep
, S_IRUGO
| S_IWUSR
, show_beep
, store_beep
,
827 /* 7.2.89 Fan Control Output Type */
828 static SENSOR_DEVICE_ATTR(pwm1_mode
, S_IRUGO
, show_pwm_mode
, NULL
, 0);
829 static SENSOR_DEVICE_ATTR(pwm2_mode
, S_IRUGO
, show_pwm_mode
, NULL
, 1);
830 static SENSOR_DEVICE_ATTR(pwm3_mode
, S_IRUGO
, show_pwm_mode
, NULL
, 2);
832 /* 7.2.91... Fan Control Output Value */
833 static SENSOR_DEVICE_ATTR(pwm1
, S_IRUGO
| S_IWUSR
, show_pwm
, store_pwm
,
835 static SENSOR_DEVICE_ATTR(pwm2
, S_IRUGO
| S_IWUSR
, show_pwm
, store_pwm
,
837 static SENSOR_DEVICE_ATTR(pwm3
, S_IRUGO
| S_IWUSR
, show_pwm
, store_pwm
,
840 /* 7.2.95... Temperature to Fan mapping Relationships Register */
841 static SENSOR_DEVICE_ATTR(pwm1_enable
, S_IRUGO
| S_IWUSR
, show_pwm_enable
,
842 store_pwm_enable
, 0);
843 static SENSOR_DEVICE_ATTR(pwm2_enable
, S_IRUGO
| S_IWUSR
, show_pwm_enable
,
844 store_pwm_enable
, 1);
845 static SENSOR_DEVICE_ATTR(pwm3_enable
, S_IRUGO
| S_IWUSR
, show_pwm_enable
,
846 store_pwm_enable
, 2);
848 static struct attribute
*nct7802_fan_attrs
[] = {
849 &sensor_dev_attr_fan1_input
.dev_attr
.attr
,
850 &sensor_dev_attr_fan1_min
.dev_attr
.attr
,
851 &sensor_dev_attr_fan1_alarm
.dev_attr
.attr
,
852 &sensor_dev_attr_fan1_beep
.dev_attr
.attr
,
853 &sensor_dev_attr_fan2_input
.dev_attr
.attr
,
854 &sensor_dev_attr_fan2_min
.dev_attr
.attr
,
855 &sensor_dev_attr_fan2_alarm
.dev_attr
.attr
,
856 &sensor_dev_attr_fan2_beep
.dev_attr
.attr
,
857 &sensor_dev_attr_fan3_input
.dev_attr
.attr
,
858 &sensor_dev_attr_fan3_min
.dev_attr
.attr
,
859 &sensor_dev_attr_fan3_alarm
.dev_attr
.attr
,
860 &sensor_dev_attr_fan3_beep
.dev_attr
.attr
,
865 static umode_t
nct7802_fan_is_visible(struct kobject
*kobj
,
866 struct attribute
*attr
, int index
)
868 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
869 struct nct7802_data
*data
= dev_get_drvdata(dev
);
870 int fan
= index
/ 4; /* 4 attributes per fan */
874 err
= regmap_read(data
->regmap
, REG_FAN_ENABLE
, ®
);
875 if (err
< 0 || !(reg
& (1 << fan
)))
881 static struct attribute_group nct7802_fan_group
= {
882 .attrs
= nct7802_fan_attrs
,
883 .is_visible
= nct7802_fan_is_visible
,
886 static struct attribute
*nct7802_pwm_attrs
[] = {
887 &sensor_dev_attr_pwm1_enable
.dev_attr
.attr
,
888 &sensor_dev_attr_pwm1_mode
.dev_attr
.attr
,
889 &sensor_dev_attr_pwm1
.dev_attr
.attr
,
890 &sensor_dev_attr_pwm2_enable
.dev_attr
.attr
,
891 &sensor_dev_attr_pwm2_mode
.dev_attr
.attr
,
892 &sensor_dev_attr_pwm2
.dev_attr
.attr
,
893 &sensor_dev_attr_pwm3_enable
.dev_attr
.attr
,
894 &sensor_dev_attr_pwm3_mode
.dev_attr
.attr
,
895 &sensor_dev_attr_pwm3
.dev_attr
.attr
,
899 static struct attribute_group nct7802_pwm_group
= {
900 .attrs
= nct7802_pwm_attrs
,
903 /* 7.2.115... 0x80-0x83, 0x84 Temperature (X-axis) transition */
904 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp
, S_IRUGO
| S_IWUSR
,
905 show_temp
, store_temp
, 0x80, 0);
906 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp
, S_IRUGO
| S_IWUSR
,
907 show_temp
, store_temp
, 0x81, 0);
908 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp
, S_IRUGO
| S_IWUSR
,
909 show_temp
, store_temp
, 0x82, 0);
910 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp
, S_IRUGO
| S_IWUSR
,
911 show_temp
, store_temp
, 0x83, 0);
912 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point5_temp
, S_IRUGO
| S_IWUSR
,
913 show_temp
, store_temp
, 0x84, 0);
915 /* 7.2.120... 0x85-0x88 PWM (Y-axis) transition */
916 static SENSOR_DEVICE_ATTR(pwm1_auto_point1_pwm
, S_IRUGO
| S_IWUSR
,
917 show_pwm
, store_pwm
, 0x85);
918 static SENSOR_DEVICE_ATTR(pwm1_auto_point2_pwm
, S_IRUGO
| S_IWUSR
,
919 show_pwm
, store_pwm
, 0x86);
920 static SENSOR_DEVICE_ATTR(pwm1_auto_point3_pwm
, S_IRUGO
| S_IWUSR
,
921 show_pwm
, store_pwm
, 0x87);
922 static SENSOR_DEVICE_ATTR(pwm1_auto_point4_pwm
, S_IRUGO
| S_IWUSR
,
923 show_pwm
, store_pwm
, 0x88);
924 static SENSOR_DEVICE_ATTR(pwm1_auto_point5_pwm
, S_IRUGO
, show_pwm
, NULL
, 0);
926 /* 7.2.124 Table 2 X-axis Transition Point 1 Register */
927 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp
, S_IRUGO
| S_IWUSR
,
928 show_temp
, store_temp
, 0x90, 0);
929 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp
, S_IRUGO
| S_IWUSR
,
930 show_temp
, store_temp
, 0x91, 0);
931 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp
, S_IRUGO
| S_IWUSR
,
932 show_temp
, store_temp
, 0x92, 0);
933 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp
, S_IRUGO
| S_IWUSR
,
934 show_temp
, store_temp
, 0x93, 0);
935 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point5_temp
, S_IRUGO
| S_IWUSR
,
936 show_temp
, store_temp
, 0x94, 0);
938 /* 7.2.129 Table 2 Y-axis Transition Point 1 Register */
939 static SENSOR_DEVICE_ATTR(pwm2_auto_point1_pwm
, S_IRUGO
| S_IWUSR
,
940 show_pwm
, store_pwm
, 0x95);
941 static SENSOR_DEVICE_ATTR(pwm2_auto_point2_pwm
, S_IRUGO
| S_IWUSR
,
942 show_pwm
, store_pwm
, 0x96);
943 static SENSOR_DEVICE_ATTR(pwm2_auto_point3_pwm
, S_IRUGO
| S_IWUSR
,
944 show_pwm
, store_pwm
, 0x97);
945 static SENSOR_DEVICE_ATTR(pwm2_auto_point4_pwm
, S_IRUGO
| S_IWUSR
,
946 show_pwm
, store_pwm
, 0x98);
947 static SENSOR_DEVICE_ATTR(pwm2_auto_point5_pwm
, S_IRUGO
, show_pwm
, NULL
, 0);
949 /* 7.2.133 Table 3 X-axis Transition Point 1 Register */
950 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp
, S_IRUGO
| S_IWUSR
,
951 show_temp
, store_temp
, 0xA0, 0);
952 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp
, S_IRUGO
| S_IWUSR
,
953 show_temp
, store_temp
, 0xA1, 0);
954 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp
, S_IRUGO
| S_IWUSR
,
955 show_temp
, store_temp
, 0xA2, 0);
956 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp
, S_IRUGO
| S_IWUSR
,
957 show_temp
, store_temp
, 0xA3, 0);
958 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point5_temp
, S_IRUGO
| S_IWUSR
,
959 show_temp
, store_temp
, 0xA4, 0);
961 /* 7.2.138 Table 3 Y-axis Transition Point 1 Register */
962 static SENSOR_DEVICE_ATTR(pwm3_auto_point1_pwm
, S_IRUGO
| S_IWUSR
,
963 show_pwm
, store_pwm
, 0xA5);
964 static SENSOR_DEVICE_ATTR(pwm3_auto_point2_pwm
, S_IRUGO
| S_IWUSR
,
965 show_pwm
, store_pwm
, 0xA6);
966 static SENSOR_DEVICE_ATTR(pwm3_auto_point3_pwm
, S_IRUGO
| S_IWUSR
,
967 show_pwm
, store_pwm
, 0xA7);
968 static SENSOR_DEVICE_ATTR(pwm3_auto_point4_pwm
, S_IRUGO
| S_IWUSR
,
969 show_pwm
, store_pwm
, 0xA8);
970 static SENSOR_DEVICE_ATTR(pwm3_auto_point5_pwm
, S_IRUGO
, show_pwm
, NULL
, 0);
972 static struct attribute
*nct7802_auto_point_attrs
[] = {
973 &sensor_dev_attr_pwm1_auto_point1_temp
.dev_attr
.attr
,
974 &sensor_dev_attr_pwm1_auto_point2_temp
.dev_attr
.attr
,
975 &sensor_dev_attr_pwm1_auto_point3_temp
.dev_attr
.attr
,
976 &sensor_dev_attr_pwm1_auto_point4_temp
.dev_attr
.attr
,
977 &sensor_dev_attr_pwm1_auto_point5_temp
.dev_attr
.attr
,
979 &sensor_dev_attr_pwm1_auto_point1_pwm
.dev_attr
.attr
,
980 &sensor_dev_attr_pwm1_auto_point2_pwm
.dev_attr
.attr
,
981 &sensor_dev_attr_pwm1_auto_point3_pwm
.dev_attr
.attr
,
982 &sensor_dev_attr_pwm1_auto_point4_pwm
.dev_attr
.attr
,
983 &sensor_dev_attr_pwm1_auto_point5_pwm
.dev_attr
.attr
,
985 &sensor_dev_attr_pwm2_auto_point1_temp
.dev_attr
.attr
,
986 &sensor_dev_attr_pwm2_auto_point2_temp
.dev_attr
.attr
,
987 &sensor_dev_attr_pwm2_auto_point3_temp
.dev_attr
.attr
,
988 &sensor_dev_attr_pwm2_auto_point4_temp
.dev_attr
.attr
,
989 &sensor_dev_attr_pwm2_auto_point5_temp
.dev_attr
.attr
,
991 &sensor_dev_attr_pwm2_auto_point1_pwm
.dev_attr
.attr
,
992 &sensor_dev_attr_pwm2_auto_point2_pwm
.dev_attr
.attr
,
993 &sensor_dev_attr_pwm2_auto_point3_pwm
.dev_attr
.attr
,
994 &sensor_dev_attr_pwm2_auto_point4_pwm
.dev_attr
.attr
,
995 &sensor_dev_attr_pwm2_auto_point5_pwm
.dev_attr
.attr
,
997 &sensor_dev_attr_pwm3_auto_point1_temp
.dev_attr
.attr
,
998 &sensor_dev_attr_pwm3_auto_point2_temp
.dev_attr
.attr
,
999 &sensor_dev_attr_pwm3_auto_point3_temp
.dev_attr
.attr
,
1000 &sensor_dev_attr_pwm3_auto_point4_temp
.dev_attr
.attr
,
1001 &sensor_dev_attr_pwm3_auto_point5_temp
.dev_attr
.attr
,
1003 &sensor_dev_attr_pwm3_auto_point1_pwm
.dev_attr
.attr
,
1004 &sensor_dev_attr_pwm3_auto_point2_pwm
.dev_attr
.attr
,
1005 &sensor_dev_attr_pwm3_auto_point3_pwm
.dev_attr
.attr
,
1006 &sensor_dev_attr_pwm3_auto_point4_pwm
.dev_attr
.attr
,
1007 &sensor_dev_attr_pwm3_auto_point5_pwm
.dev_attr
.attr
,
1012 static struct attribute_group nct7802_auto_point_group
= {
1013 .attrs
= nct7802_auto_point_attrs
,
1016 static const struct attribute_group
*nct7802_groups
[] = {
1017 &nct7802_temp_group
,
1021 &nct7802_auto_point_group
,
1025 static int nct7802_detect(struct i2c_client
*client
,
1026 struct i2c_board_info
*info
)
1031 * Chip identification registers are only available in bank 0,
1032 * so only attempt chip detection if bank 0 is selected
1034 reg
= i2c_smbus_read_byte_data(client
, REG_BANK
);
1038 reg
= i2c_smbus_read_byte_data(client
, REG_VENDOR_ID
);
1042 reg
= i2c_smbus_read_byte_data(client
, REG_CHIP_ID
);
1046 reg
= i2c_smbus_read_byte_data(client
, REG_VERSION_ID
);
1047 if (reg
< 0 || (reg
& 0xf0) != 0x20)
1050 /* Also validate lower bits of voltage and temperature registers */
1051 reg
= i2c_smbus_read_byte_data(client
, REG_TEMP_LSB
);
1052 if (reg
< 0 || (reg
& 0x1f))
1055 reg
= i2c_smbus_read_byte_data(client
, REG_TEMP_PECI_LSB
);
1056 if (reg
< 0 || (reg
& 0x3f))
1059 reg
= i2c_smbus_read_byte_data(client
, REG_VOLTAGE_LOW
);
1060 if (reg
< 0 || (reg
& 0x3f))
1063 strlcpy(info
->type
, "nct7802", I2C_NAME_SIZE
);
1067 static bool nct7802_regmap_is_volatile(struct device
*dev
, unsigned int reg
)
1069 return (reg
!= REG_BANK
&& reg
<= 0x20) ||
1070 (reg
>= REG_PWM(0) && reg
<= REG_PWM(2));
1073 static const struct regmap_config nct7802_regmap_config
= {
1076 .cache_type
= REGCACHE_RBTREE
,
1077 .volatile_reg
= nct7802_regmap_is_volatile
,
1080 static int nct7802_init_chip(struct nct7802_data
*data
)
1085 err
= regmap_update_bits(data
->regmap
, REG_START
, 0x01, 0x01);
1089 /* Enable local temperature sensor */
1090 err
= regmap_update_bits(data
->regmap
, REG_MODE
, 0x40, 0x40);
1094 /* Enable Vcore and VCC voltage monitoring */
1095 return regmap_update_bits(data
->regmap
, REG_VMON_ENABLE
, 0x03, 0x03);
1098 static int nct7802_probe(struct i2c_client
*client
,
1099 const struct i2c_device_id
*id
)
1101 struct device
*dev
= &client
->dev
;
1102 struct nct7802_data
*data
;
1103 struct device
*hwmon_dev
;
1106 data
= devm_kzalloc(dev
, sizeof(*data
), GFP_KERNEL
);
1110 data
->regmap
= devm_regmap_init_i2c(client
, &nct7802_regmap_config
);
1111 if (IS_ERR(data
->regmap
))
1112 return PTR_ERR(data
->regmap
);
1114 mutex_init(&data
->access_lock
);
1116 ret
= nct7802_init_chip(data
);
1120 hwmon_dev
= devm_hwmon_device_register_with_groups(dev
, client
->name
,
1123 return PTR_ERR_OR_ZERO(hwmon_dev
);
1126 static const unsigned short nct7802_address_list
[] = {
1127 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, I2C_CLIENT_END
1130 static const struct i2c_device_id nct7802_idtable
[] = {
1134 MODULE_DEVICE_TABLE(i2c
, nct7802_idtable
);
1136 static struct i2c_driver nct7802_driver
= {
1137 .class = I2C_CLASS_HWMON
,
1141 .detect
= nct7802_detect
,
1142 .probe
= nct7802_probe
,
1143 .id_table
= nct7802_idtable
,
1144 .address_list
= nct7802_address_list
,
1147 module_i2c_driver(nct7802_driver
);
1149 MODULE_AUTHOR("Guenter Roeck <linux@roeck-us.net>");
1150 MODULE_DESCRIPTION("NCT7802Y Hardware Monitoring Driver");
1151 MODULE_LICENSE("GPL v2");