2 * adt7475 - Thermal sensor driver for the ADT7475 chip and derivatives
3 * Copyright (C) 2007-2008, Advanced Micro Devices, Inc.
4 * Copyright (C) 2008 Jordan Crouse <jordan@cosmicpenguin.net>
5 * Copyright (C) 2008 Hans de Goede <hdegoede@redhat.com>
6 * Copyright (C) 2009 Jean Delvare <khali@linux-fr.org>
8 * Derived from the lm83 driver by Jean Delvare
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/slab.h>
18 #include <linux/i2c.h>
19 #include <linux/hwmon.h>
20 #include <linux/hwmon-sysfs.h>
21 #include <linux/hwmon-vid.h>
22 #include <linux/err.h>
23 #include <linux/jiffies.h>
25 /* Indexes for the sysfs hooks */
37 * These are unique identifiers for the sysfs functions - unlike the
38 * numbers above, these are not also indexes into an array
44 /* 7475 Common Registers */
46 #define REG_DEVREV2 0x12 /* ADT7490 only */
48 #define REG_VTT 0x1E /* ADT7490 only */
49 #define REG_EXTEND3 0x1F /* ADT7490 only */
51 #define REG_VOLTAGE_BASE 0x20
52 #define REG_TEMP_BASE 0x25
53 #define REG_TACH_BASE 0x28
54 #define REG_PWM_BASE 0x30
55 #define REG_PWM_MAX_BASE 0x38
57 #define REG_DEVID 0x3D
58 #define REG_VENDID 0x3E
59 #define REG_DEVID2 0x3F
61 #define REG_STATUS1 0x41
62 #define REG_STATUS2 0x42
64 #define REG_VID 0x43 /* ADT7476 only */
66 #define REG_VOLTAGE_MIN_BASE 0x44
67 #define REG_VOLTAGE_MAX_BASE 0x45
69 #define REG_TEMP_MIN_BASE 0x4E
70 #define REG_TEMP_MAX_BASE 0x4F
72 #define REG_TACH_MIN_BASE 0x54
74 #define REG_PWM_CONFIG_BASE 0x5C
76 #define REG_TEMP_TRANGE_BASE 0x5F
78 #define REG_PWM_MIN_BASE 0x64
80 #define REG_TEMP_TMIN_BASE 0x67
81 #define REG_TEMP_THERM_BASE 0x6A
83 #define REG_REMOTE1_HYSTERSIS 0x6D
84 #define REG_REMOTE2_HYSTERSIS 0x6E
86 #define REG_TEMP_OFFSET_BASE 0x70
88 #define REG_CONFIG2 0x73
90 #define REG_EXTEND1 0x76
91 #define REG_EXTEND2 0x77
93 #define REG_CONFIG3 0x78
94 #define REG_CONFIG5 0x7C
95 #define REG_CONFIG4 0x7D
97 #define REG_STATUS4 0x81 /* ADT7490 only */
99 #define REG_VTT_MIN 0x84 /* ADT7490 only */
100 #define REG_VTT_MAX 0x86 /* ADT7490 only */
102 #define VID_VIDSEL 0x80 /* ADT7476 only */
104 #define CONFIG2_ATTN 0x20
106 #define CONFIG3_SMBALERT 0x01
107 #define CONFIG3_THERM 0x02
109 #define CONFIG4_PINFUNC 0x03
110 #define CONFIG4_MAXDUTY 0x08
111 #define CONFIG4_ATTN_IN10 0x30
112 #define CONFIG4_ATTN_IN43 0xC0
114 #define CONFIG5_TWOSCOMP 0x01
115 #define CONFIG5_TEMPOFFSET 0x02
116 #define CONFIG5_VIDGPIO 0x10 /* ADT7476 only */
118 /* ADT7475 Settings */
120 #define ADT7475_VOLTAGE_COUNT 5 /* Not counting Vtt */
121 #define ADT7475_TEMP_COUNT 3
122 #define ADT7475_TACH_COUNT 4
123 #define ADT7475_PWM_COUNT 3
125 /* Macro to read the registers */
127 #define adt7475_read(reg) i2c_smbus_read_byte_data(client, (reg))
129 /* Macros to easily index the registers */
131 #define TACH_REG(idx) (REG_TACH_BASE + ((idx) * 2))
132 #define TACH_MIN_REG(idx) (REG_TACH_MIN_BASE + ((idx) * 2))
134 #define PWM_REG(idx) (REG_PWM_BASE + (idx))
135 #define PWM_MAX_REG(idx) (REG_PWM_MAX_BASE + (idx))
136 #define PWM_MIN_REG(idx) (REG_PWM_MIN_BASE + (idx))
137 #define PWM_CONFIG_REG(idx) (REG_PWM_CONFIG_BASE + (idx))
139 #define VOLTAGE_REG(idx) (REG_VOLTAGE_BASE + (idx))
140 #define VOLTAGE_MIN_REG(idx) (REG_VOLTAGE_MIN_BASE + ((idx) * 2))
141 #define VOLTAGE_MAX_REG(idx) (REG_VOLTAGE_MAX_BASE + ((idx) * 2))
143 #define TEMP_REG(idx) (REG_TEMP_BASE + (idx))
144 #define TEMP_MIN_REG(idx) (REG_TEMP_MIN_BASE + ((idx) * 2))
145 #define TEMP_MAX_REG(idx) (REG_TEMP_MAX_BASE + ((idx) * 2))
146 #define TEMP_TMIN_REG(idx) (REG_TEMP_TMIN_BASE + (idx))
147 #define TEMP_THERM_REG(idx) (REG_TEMP_THERM_BASE + (idx))
148 #define TEMP_OFFSET_REG(idx) (REG_TEMP_OFFSET_BASE + (idx))
149 #define TEMP_TRANGE_REG(idx) (REG_TEMP_TRANGE_BASE + (idx))
151 static const unsigned short normal_i2c
[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END
};
153 enum chips
{ adt7473
, adt7475
, adt7476
, adt7490
};
155 static const struct i2c_device_id adt7475_id
[] = {
156 { "adt7473", adt7473
},
157 { "adt7475", adt7475
},
158 { "adt7476", adt7476
},
159 { "adt7490", adt7490
},
162 MODULE_DEVICE_TABLE(i2c
, adt7475_id
);
164 struct adt7475_data
{
165 struct device
*hwmon_dev
;
168 unsigned long measure_updated
;
169 unsigned long limits_updated
;
175 u8 bypass_attn
; /* Bypass voltage attenuator */
192 static struct i2c_driver adt7475_driver
;
193 static struct adt7475_data
*adt7475_update_device(struct device
*dev
);
194 static void adt7475_read_hystersis(struct i2c_client
*client
);
195 static void adt7475_read_pwm(struct i2c_client
*client
, int index
);
197 /* Given a temp value, convert it to register value */
199 static inline u16
temp2reg(struct adt7475_data
*data
, long val
)
203 if (!(data
->config5
& CONFIG5_TWOSCOMP
)) {
204 val
= clamp_val(val
, -64000, 191000);
205 ret
= (val
+ 64500) / 1000;
207 val
= clamp_val(val
, -128000, 127000);
209 ret
= (256500 + val
) / 1000;
211 ret
= (val
+ 500) / 1000;
217 /* Given a register value, convert it to a real temp value */
219 static inline int reg2temp(struct adt7475_data
*data
, u16 reg
)
221 if (data
->config5
& CONFIG5_TWOSCOMP
) {
223 return (reg
- 1024) * 250;
227 return (reg
- 256) * 250;
230 static inline int tach2rpm(u16 tach
)
232 if (tach
== 0 || tach
== 0xFFFF)
235 return (90000 * 60) / tach
;
238 static inline u16
rpm2tach(unsigned long rpm
)
243 return clamp_val((90000 * 60) / rpm
, 1, 0xFFFF);
246 /* Scaling factors for voltage inputs, taken from the ADT7490 datasheet */
247 static const int adt7473_in_scaling
[ADT7475_VOLTAGE_COUNT
+ 1][2] = {
248 { 45, 94 }, /* +2.5V */
249 { 175, 525 }, /* Vccp */
250 { 68, 71 }, /* Vcc */
251 { 93, 47 }, /* +5V */
252 { 120, 20 }, /* +12V */
253 { 45, 45 }, /* Vtt */
256 static inline int reg2volt(int channel
, u16 reg
, u8 bypass_attn
)
258 const int *r
= adt7473_in_scaling
[channel
];
260 if (bypass_attn
& (1 << channel
))
261 return DIV_ROUND_CLOSEST(reg
* 2250, 1024);
262 return DIV_ROUND_CLOSEST(reg
* (r
[0] + r
[1]) * 2250, r
[1] * 1024);
265 static inline u16
volt2reg(int channel
, long volt
, u8 bypass_attn
)
267 const int *r
= adt7473_in_scaling
[channel
];
270 if (bypass_attn
& (1 << channel
))
271 reg
= (volt
* 1024) / 2250;
273 reg
= (volt
* r
[1] * 1024) / ((r
[0] + r
[1]) * 2250);
274 return clamp_val(reg
, 0, 1023) & (0xff << 2);
277 static u16
adt7475_read_word(struct i2c_client
*client
, int reg
)
281 val
= i2c_smbus_read_byte_data(client
, reg
);
282 val
|= (i2c_smbus_read_byte_data(client
, reg
+ 1) << 8);
287 static void adt7475_write_word(struct i2c_client
*client
, int reg
, u16 val
)
289 i2c_smbus_write_byte_data(client
, reg
+ 1, val
>> 8);
290 i2c_smbus_write_byte_data(client
, reg
, val
& 0xFF);
294 * Find the nearest value in a table - used for pwm frequency and
297 static int find_nearest(long val
, const int *array
, int size
)
304 if (val
> array
[size
- 1])
307 for (i
= 0; i
< size
- 1; i
++) {
310 if (val
> array
[i
+ 1])
314 b
= array
[i
+ 1] - val
;
316 return (a
<= b
) ? i
: i
+ 1;
322 static ssize_t
show_voltage(struct device
*dev
, struct device_attribute
*attr
,
325 struct adt7475_data
*data
= adt7475_update_device(dev
);
326 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
331 return sprintf(buf
, "%d\n",
332 (data
->alarms
>> sattr
->index
) & 1);
334 val
= data
->voltage
[sattr
->nr
][sattr
->index
];
335 return sprintf(buf
, "%d\n",
336 reg2volt(sattr
->index
, val
, data
->bypass_attn
));
340 static ssize_t
set_voltage(struct device
*dev
, struct device_attribute
*attr
,
341 const char *buf
, size_t count
)
344 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
345 struct i2c_client
*client
= to_i2c_client(dev
);
346 struct adt7475_data
*data
= i2c_get_clientdata(client
);
350 if (kstrtol(buf
, 10, &val
))
353 mutex_lock(&data
->lock
);
355 data
->voltage
[sattr
->nr
][sattr
->index
] =
356 volt2reg(sattr
->index
, val
, data
->bypass_attn
);
358 if (sattr
->index
< ADT7475_VOLTAGE_COUNT
) {
359 if (sattr
->nr
== MIN
)
360 reg
= VOLTAGE_MIN_REG(sattr
->index
);
362 reg
= VOLTAGE_MAX_REG(sattr
->index
);
364 if (sattr
->nr
== MIN
)
370 i2c_smbus_write_byte_data(client
, reg
,
371 data
->voltage
[sattr
->nr
][sattr
->index
] >> 2);
372 mutex_unlock(&data
->lock
);
377 static ssize_t
show_temp(struct device
*dev
, struct device_attribute
*attr
,
380 struct adt7475_data
*data
= adt7475_update_device(dev
);
381 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
386 mutex_lock(&data
->lock
);
387 out
= data
->temp
[sattr
->nr
][sattr
->index
];
388 if (sattr
->index
!= 1)
389 out
= (out
>> 4) & 0xF;
393 * Show the value as an absolute number tied to
396 out
= reg2temp(data
, data
->temp
[THERM
][sattr
->index
]) -
398 mutex_unlock(&data
->lock
);
403 * Offset is always 2's complement, regardless of the
406 mutex_lock(&data
->lock
);
407 out
= (s8
)data
->temp
[sattr
->nr
][sattr
->index
];
408 if (data
->config5
& CONFIG5_TEMPOFFSET
)
412 mutex_unlock(&data
->lock
);
416 out
= (data
->alarms
>> (sattr
->index
+ 4)) & 1;
420 /* Note - only for remote1 and remote2 */
421 out
= !!(data
->alarms
& (sattr
->index
? 0x8000 : 0x4000));
425 /* All other temp values are in the configured format */
426 out
= reg2temp(data
, data
->temp
[sattr
->nr
][sattr
->index
]);
429 return sprintf(buf
, "%d\n", out
);
432 static ssize_t
set_temp(struct device
*dev
, struct device_attribute
*attr
,
433 const char *buf
, size_t count
)
435 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
436 struct i2c_client
*client
= to_i2c_client(dev
);
437 struct adt7475_data
*data
= i2c_get_clientdata(client
);
438 unsigned char reg
= 0;
443 if (kstrtol(buf
, 10, &val
))
446 mutex_lock(&data
->lock
);
448 /* We need the config register in all cases for temp <-> reg conv. */
449 data
->config5
= adt7475_read(REG_CONFIG5
);
453 if (data
->config5
& CONFIG5_TEMPOFFSET
) {
454 val
= clamp_val(val
, -63000, 127000);
455 out
= data
->temp
[OFFSET
][sattr
->index
] = val
/ 1000;
457 val
= clamp_val(val
, -63000, 64000);
458 out
= data
->temp
[OFFSET
][sattr
->index
] = val
/ 500;
464 * The value will be given as an absolute value, turn it
465 * into an offset based on THERM
468 /* Read fresh THERM and HYSTERSIS values from the chip */
469 data
->temp
[THERM
][sattr
->index
] =
470 adt7475_read(TEMP_THERM_REG(sattr
->index
)) << 2;
471 adt7475_read_hystersis(client
);
473 temp
= reg2temp(data
, data
->temp
[THERM
][sattr
->index
]);
474 val
= clamp_val(val
, temp
- 15000, temp
);
475 val
= (temp
- val
) / 1000;
477 if (sattr
->index
!= 1) {
478 data
->temp
[HYSTERSIS
][sattr
->index
] &= 0xF0;
479 data
->temp
[HYSTERSIS
][sattr
->index
] |= (val
& 0xF) << 4;
481 data
->temp
[HYSTERSIS
][sattr
->index
] &= 0x0F;
482 data
->temp
[HYSTERSIS
][sattr
->index
] |= (val
& 0xF);
485 out
= data
->temp
[HYSTERSIS
][sattr
->index
];
489 data
->temp
[sattr
->nr
][sattr
->index
] = temp2reg(data
, val
);
492 * We maintain an extra 2 digits of precision for simplicity
493 * - shift those back off before writing the value
495 out
= (u8
) (data
->temp
[sattr
->nr
][sattr
->index
] >> 2);
500 reg
= TEMP_MIN_REG(sattr
->index
);
503 reg
= TEMP_MAX_REG(sattr
->index
);
506 reg
= TEMP_OFFSET_REG(sattr
->index
);
509 reg
= TEMP_TMIN_REG(sattr
->index
);
512 reg
= TEMP_THERM_REG(sattr
->index
);
515 if (sattr
->index
!= 2)
516 reg
= REG_REMOTE1_HYSTERSIS
;
518 reg
= REG_REMOTE2_HYSTERSIS
;
523 i2c_smbus_write_byte_data(client
, reg
, out
);
525 mutex_unlock(&data
->lock
);
530 * Table of autorange values - the user will write the value in millidegrees,
531 * and we'll convert it
533 static const int autorange_table
[] = {
534 2000, 2500, 3330, 4000, 5000, 6670, 8000,
535 10000, 13330, 16000, 20000, 26670, 32000, 40000,
539 static ssize_t
show_point2(struct device
*dev
, struct device_attribute
*attr
,
542 struct adt7475_data
*data
= adt7475_update_device(dev
);
543 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
546 mutex_lock(&data
->lock
);
547 out
= (data
->range
[sattr
->index
] >> 4) & 0x0F;
548 val
= reg2temp(data
, data
->temp
[AUTOMIN
][sattr
->index
]);
549 mutex_unlock(&data
->lock
);
551 return sprintf(buf
, "%d\n", val
+ autorange_table
[out
]);
554 static ssize_t
set_point2(struct device
*dev
, struct device_attribute
*attr
,
555 const char *buf
, size_t count
)
557 struct i2c_client
*client
= to_i2c_client(dev
);
558 struct adt7475_data
*data
= i2c_get_clientdata(client
);
559 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
563 if (kstrtol(buf
, 10, &val
))
566 mutex_lock(&data
->lock
);
568 /* Get a fresh copy of the needed registers */
569 data
->config5
= adt7475_read(REG_CONFIG5
);
570 data
->temp
[AUTOMIN
][sattr
->index
] =
571 adt7475_read(TEMP_TMIN_REG(sattr
->index
)) << 2;
572 data
->range
[sattr
->index
] =
573 adt7475_read(TEMP_TRANGE_REG(sattr
->index
));
576 * The user will write an absolute value, so subtract the start point
577 * to figure the range
579 temp
= reg2temp(data
, data
->temp
[AUTOMIN
][sattr
->index
]);
580 val
= clamp_val(val
, temp
+ autorange_table
[0],
581 temp
+ autorange_table
[ARRAY_SIZE(autorange_table
) - 1]);
584 /* Find the nearest table entry to what the user wrote */
585 val
= find_nearest(val
, autorange_table
, ARRAY_SIZE(autorange_table
));
587 data
->range
[sattr
->index
] &= ~0xF0;
588 data
->range
[sattr
->index
] |= val
<< 4;
590 i2c_smbus_write_byte_data(client
, TEMP_TRANGE_REG(sattr
->index
),
591 data
->range
[sattr
->index
]);
593 mutex_unlock(&data
->lock
);
597 static ssize_t
show_tach(struct device
*dev
, struct device_attribute
*attr
,
600 struct adt7475_data
*data
= adt7475_update_device(dev
);
601 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
604 if (sattr
->nr
== ALARM
)
605 out
= (data
->alarms
>> (sattr
->index
+ 10)) & 1;
607 out
= tach2rpm(data
->tach
[sattr
->nr
][sattr
->index
]);
609 return sprintf(buf
, "%d\n", out
);
612 static ssize_t
set_tach(struct device
*dev
, struct device_attribute
*attr
,
613 const char *buf
, size_t count
)
616 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
617 struct i2c_client
*client
= to_i2c_client(dev
);
618 struct adt7475_data
*data
= i2c_get_clientdata(client
);
621 if (kstrtoul(buf
, 10, &val
))
624 mutex_lock(&data
->lock
);
626 data
->tach
[MIN
][sattr
->index
] = rpm2tach(val
);
628 adt7475_write_word(client
, TACH_MIN_REG(sattr
->index
),
629 data
->tach
[MIN
][sattr
->index
]);
631 mutex_unlock(&data
->lock
);
635 static ssize_t
show_pwm(struct device
*dev
, struct device_attribute
*attr
,
638 struct adt7475_data
*data
= adt7475_update_device(dev
);
639 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
641 return sprintf(buf
, "%d\n", data
->pwm
[sattr
->nr
][sattr
->index
]);
644 static ssize_t
show_pwmchan(struct device
*dev
, struct device_attribute
*attr
,
647 struct adt7475_data
*data
= adt7475_update_device(dev
);
648 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
650 return sprintf(buf
, "%d\n", data
->pwmchan
[sattr
->index
]);
653 static ssize_t
show_pwmctrl(struct device
*dev
, struct device_attribute
*attr
,
656 struct adt7475_data
*data
= adt7475_update_device(dev
);
657 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
659 return sprintf(buf
, "%d\n", data
->pwmctl
[sattr
->index
]);
662 static ssize_t
set_pwm(struct device
*dev
, struct device_attribute
*attr
,
663 const char *buf
, size_t count
)
666 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
667 struct i2c_client
*client
= to_i2c_client(dev
);
668 struct adt7475_data
*data
= i2c_get_clientdata(client
);
669 unsigned char reg
= 0;
672 if (kstrtol(buf
, 10, &val
))
675 mutex_lock(&data
->lock
);
679 /* Get a fresh value for CONTROL */
680 data
->pwm
[CONTROL
][sattr
->index
] =
681 adt7475_read(PWM_CONFIG_REG(sattr
->index
));
684 * If we are not in manual mode, then we shouldn't allow
685 * the user to set the pwm speed
687 if (((data
->pwm
[CONTROL
][sattr
->index
] >> 5) & 7) != 7) {
688 mutex_unlock(&data
->lock
);
692 reg
= PWM_REG(sattr
->index
);
696 reg
= PWM_MIN_REG(sattr
->index
);
700 reg
= PWM_MAX_REG(sattr
->index
);
704 data
->pwm
[sattr
->nr
][sattr
->index
] = clamp_val(val
, 0, 0xFF);
705 i2c_smbus_write_byte_data(client
, reg
,
706 data
->pwm
[sattr
->nr
][sattr
->index
]);
708 mutex_unlock(&data
->lock
);
713 /* Called by set_pwmctrl and set_pwmchan */
715 static int hw_set_pwm(struct i2c_client
*client
, int index
,
716 unsigned int pwmctl
, unsigned int pwmchan
)
718 struct adt7475_data
*data
= i2c_get_clientdata(client
);
723 val
= 0x03; /* Run at full speed */
726 val
= 0x07; /* Manual mode */
731 /* Remote1 controls PWM */
735 /* local controls PWM */
739 /* remote2 controls PWM */
743 /* local/remote2 control PWM */
747 /* All three control PWM */
758 data
->pwmctl
[index
] = pwmctl
;
759 data
->pwmchan
[index
] = pwmchan
;
761 data
->pwm
[CONTROL
][index
] &= ~0xE0;
762 data
->pwm
[CONTROL
][index
] |= (val
& 7) << 5;
764 i2c_smbus_write_byte_data(client
, PWM_CONFIG_REG(index
),
765 data
->pwm
[CONTROL
][index
]);
770 static ssize_t
set_pwmchan(struct device
*dev
, struct device_attribute
*attr
,
771 const char *buf
, size_t count
)
773 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
774 struct i2c_client
*client
= to_i2c_client(dev
);
775 struct adt7475_data
*data
= i2c_get_clientdata(client
);
779 if (kstrtol(buf
, 10, &val
))
782 mutex_lock(&data
->lock
);
783 /* Read Modify Write PWM values */
784 adt7475_read_pwm(client
, sattr
->index
);
785 r
= hw_set_pwm(client
, sattr
->index
, data
->pwmctl
[sattr
->index
], val
);
788 mutex_unlock(&data
->lock
);
793 static ssize_t
set_pwmctrl(struct device
*dev
, struct device_attribute
*attr
,
794 const char *buf
, size_t count
)
796 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
797 struct i2c_client
*client
= to_i2c_client(dev
);
798 struct adt7475_data
*data
= i2c_get_clientdata(client
);
802 if (kstrtol(buf
, 10, &val
))
805 mutex_lock(&data
->lock
);
806 /* Read Modify Write PWM values */
807 adt7475_read_pwm(client
, sattr
->index
);
808 r
= hw_set_pwm(client
, sattr
->index
, val
, data
->pwmchan
[sattr
->index
]);
811 mutex_unlock(&data
->lock
);
816 /* List of frequencies for the PWM */
817 static const int pwmfreq_table
[] = {
818 11, 14, 22, 29, 35, 44, 58, 88
821 static ssize_t
show_pwmfreq(struct device
*dev
, struct device_attribute
*attr
,
824 struct adt7475_data
*data
= adt7475_update_device(dev
);
825 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
827 return sprintf(buf
, "%d\n",
828 pwmfreq_table
[data
->range
[sattr
->index
] & 7]);
831 static ssize_t
set_pwmfreq(struct device
*dev
, struct device_attribute
*attr
,
832 const char *buf
, size_t count
)
834 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
835 struct i2c_client
*client
= to_i2c_client(dev
);
836 struct adt7475_data
*data
= i2c_get_clientdata(client
);
840 if (kstrtol(buf
, 10, &val
))
843 out
= find_nearest(val
, pwmfreq_table
, ARRAY_SIZE(pwmfreq_table
));
845 mutex_lock(&data
->lock
);
847 data
->range
[sattr
->index
] =
848 adt7475_read(TEMP_TRANGE_REG(sattr
->index
));
849 data
->range
[sattr
->index
] &= ~7;
850 data
->range
[sattr
->index
] |= out
;
852 i2c_smbus_write_byte_data(client
, TEMP_TRANGE_REG(sattr
->index
),
853 data
->range
[sattr
->index
]);
855 mutex_unlock(&data
->lock
);
859 static ssize_t
show_pwm_at_crit(struct device
*dev
,
860 struct device_attribute
*devattr
, char *buf
)
862 struct adt7475_data
*data
= adt7475_update_device(dev
);
863 return sprintf(buf
, "%d\n", !!(data
->config4
& CONFIG4_MAXDUTY
));
866 static ssize_t
set_pwm_at_crit(struct device
*dev
,
867 struct device_attribute
*devattr
,
868 const char *buf
, size_t count
)
870 struct i2c_client
*client
= to_i2c_client(dev
);
871 struct adt7475_data
*data
= i2c_get_clientdata(client
);
874 if (kstrtol(buf
, 10, &val
))
876 if (val
!= 0 && val
!= 1)
879 mutex_lock(&data
->lock
);
880 data
->config4
= i2c_smbus_read_byte_data(client
, REG_CONFIG4
);
882 data
->config4
|= CONFIG4_MAXDUTY
;
884 data
->config4
&= ~CONFIG4_MAXDUTY
;
885 i2c_smbus_write_byte_data(client
, REG_CONFIG4
, data
->config4
);
886 mutex_unlock(&data
->lock
);
891 static ssize_t
show_vrm(struct device
*dev
, struct device_attribute
*devattr
,
894 struct adt7475_data
*data
= dev_get_drvdata(dev
);
895 return sprintf(buf
, "%d\n", (int)data
->vrm
);
898 static ssize_t
set_vrm(struct device
*dev
, struct device_attribute
*devattr
,
899 const char *buf
, size_t count
)
901 struct adt7475_data
*data
= dev_get_drvdata(dev
);
904 if (kstrtol(buf
, 10, &val
))
906 if (val
< 0 || val
> 255)
913 static ssize_t
show_vid(struct device
*dev
, struct device_attribute
*devattr
,
916 struct adt7475_data
*data
= adt7475_update_device(dev
);
917 return sprintf(buf
, "%d\n", vid_from_reg(data
->vid
, data
->vrm
));
920 static SENSOR_DEVICE_ATTR_2(in0_input
, S_IRUGO
, show_voltage
, NULL
, INPUT
, 0);
921 static SENSOR_DEVICE_ATTR_2(in0_max
, S_IRUGO
| S_IWUSR
, show_voltage
,
922 set_voltage
, MAX
, 0);
923 static SENSOR_DEVICE_ATTR_2(in0_min
, S_IRUGO
| S_IWUSR
, show_voltage
,
924 set_voltage
, MIN
, 0);
925 static SENSOR_DEVICE_ATTR_2(in0_alarm
, S_IRUGO
, show_voltage
, NULL
, ALARM
, 0);
926 static SENSOR_DEVICE_ATTR_2(in1_input
, S_IRUGO
, show_voltage
, NULL
, INPUT
, 1);
927 static SENSOR_DEVICE_ATTR_2(in1_max
, S_IRUGO
| S_IWUSR
, show_voltage
,
928 set_voltage
, MAX
, 1);
929 static SENSOR_DEVICE_ATTR_2(in1_min
, S_IRUGO
| S_IWUSR
, show_voltage
,
930 set_voltage
, MIN
, 1);
931 static SENSOR_DEVICE_ATTR_2(in1_alarm
, S_IRUGO
, show_voltage
, NULL
, ALARM
, 1);
932 static SENSOR_DEVICE_ATTR_2(in2_input
, S_IRUGO
, show_voltage
, NULL
, INPUT
, 2);
933 static SENSOR_DEVICE_ATTR_2(in2_max
, S_IRUGO
| S_IWUSR
, show_voltage
,
934 set_voltage
, MAX
, 2);
935 static SENSOR_DEVICE_ATTR_2(in2_min
, S_IRUGO
| S_IWUSR
, show_voltage
,
936 set_voltage
, MIN
, 2);
937 static SENSOR_DEVICE_ATTR_2(in2_alarm
, S_IRUGO
, show_voltage
, NULL
, ALARM
, 2);
938 static SENSOR_DEVICE_ATTR_2(in3_input
, S_IRUGO
, show_voltage
, NULL
, INPUT
, 3);
939 static SENSOR_DEVICE_ATTR_2(in3_max
, S_IRUGO
| S_IWUSR
, show_voltage
,
940 set_voltage
, MAX
, 3);
941 static SENSOR_DEVICE_ATTR_2(in3_min
, S_IRUGO
| S_IWUSR
, show_voltage
,
942 set_voltage
, MIN
, 3);
943 static SENSOR_DEVICE_ATTR_2(in3_alarm
, S_IRUGO
, show_voltage
, NULL
, ALARM
, 3);
944 static SENSOR_DEVICE_ATTR_2(in4_input
, S_IRUGO
, show_voltage
, NULL
, INPUT
, 4);
945 static SENSOR_DEVICE_ATTR_2(in4_max
, S_IRUGO
| S_IWUSR
, show_voltage
,
946 set_voltage
, MAX
, 4);
947 static SENSOR_DEVICE_ATTR_2(in4_min
, S_IRUGO
| S_IWUSR
, show_voltage
,
948 set_voltage
, MIN
, 4);
949 static SENSOR_DEVICE_ATTR_2(in4_alarm
, S_IRUGO
, show_voltage
, NULL
, ALARM
, 8);
950 static SENSOR_DEVICE_ATTR_2(in5_input
, S_IRUGO
, show_voltage
, NULL
, INPUT
, 5);
951 static SENSOR_DEVICE_ATTR_2(in5_max
, S_IRUGO
| S_IWUSR
, show_voltage
,
952 set_voltage
, MAX
, 5);
953 static SENSOR_DEVICE_ATTR_2(in5_min
, S_IRUGO
| S_IWUSR
, show_voltage
,
954 set_voltage
, MIN
, 5);
955 static SENSOR_DEVICE_ATTR_2(in5_alarm
, S_IRUGO
, show_voltage
, NULL
, ALARM
, 31);
956 static SENSOR_DEVICE_ATTR_2(temp1_input
, S_IRUGO
, show_temp
, NULL
, INPUT
, 0);
957 static SENSOR_DEVICE_ATTR_2(temp1_alarm
, S_IRUGO
, show_temp
, NULL
, ALARM
, 0);
958 static SENSOR_DEVICE_ATTR_2(temp1_fault
, S_IRUGO
, show_temp
, NULL
, FAULT
, 0);
959 static SENSOR_DEVICE_ATTR_2(temp1_max
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
961 static SENSOR_DEVICE_ATTR_2(temp1_min
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
963 static SENSOR_DEVICE_ATTR_2(temp1_offset
, S_IRUGO
| S_IWUSR
, show_temp
,
964 set_temp
, OFFSET
, 0);
965 static SENSOR_DEVICE_ATTR_2(temp1_auto_point1_temp
, S_IRUGO
| S_IWUSR
,
966 show_temp
, set_temp
, AUTOMIN
, 0);
967 static SENSOR_DEVICE_ATTR_2(temp1_auto_point2_temp
, S_IRUGO
| S_IWUSR
,
968 show_point2
, set_point2
, 0, 0);
969 static SENSOR_DEVICE_ATTR_2(temp1_crit
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
971 static SENSOR_DEVICE_ATTR_2(temp1_crit_hyst
, S_IRUGO
| S_IWUSR
, show_temp
,
972 set_temp
, HYSTERSIS
, 0);
973 static SENSOR_DEVICE_ATTR_2(temp2_input
, S_IRUGO
, show_temp
, NULL
, INPUT
, 1);
974 static SENSOR_DEVICE_ATTR_2(temp2_alarm
, S_IRUGO
, show_temp
, NULL
, ALARM
, 1);
975 static SENSOR_DEVICE_ATTR_2(temp2_max
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
977 static SENSOR_DEVICE_ATTR_2(temp2_min
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
979 static SENSOR_DEVICE_ATTR_2(temp2_offset
, S_IRUGO
| S_IWUSR
, show_temp
,
980 set_temp
, OFFSET
, 1);
981 static SENSOR_DEVICE_ATTR_2(temp2_auto_point1_temp
, S_IRUGO
| S_IWUSR
,
982 show_temp
, set_temp
, AUTOMIN
, 1);
983 static SENSOR_DEVICE_ATTR_2(temp2_auto_point2_temp
, S_IRUGO
| S_IWUSR
,
984 show_point2
, set_point2
, 0, 1);
985 static SENSOR_DEVICE_ATTR_2(temp2_crit
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
987 static SENSOR_DEVICE_ATTR_2(temp2_crit_hyst
, S_IRUGO
| S_IWUSR
, show_temp
,
988 set_temp
, HYSTERSIS
, 1);
989 static SENSOR_DEVICE_ATTR_2(temp3_input
, S_IRUGO
, show_temp
, NULL
, INPUT
, 2);
990 static SENSOR_DEVICE_ATTR_2(temp3_alarm
, S_IRUGO
, show_temp
, NULL
, ALARM
, 2);
991 static SENSOR_DEVICE_ATTR_2(temp3_fault
, S_IRUGO
, show_temp
, NULL
, FAULT
, 2);
992 static SENSOR_DEVICE_ATTR_2(temp3_max
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
994 static SENSOR_DEVICE_ATTR_2(temp3_min
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
996 static SENSOR_DEVICE_ATTR_2(temp3_offset
, S_IRUGO
| S_IWUSR
, show_temp
,
997 set_temp
, OFFSET
, 2);
998 static SENSOR_DEVICE_ATTR_2(temp3_auto_point1_temp
, S_IRUGO
| S_IWUSR
,
999 show_temp
, set_temp
, AUTOMIN
, 2);
1000 static SENSOR_DEVICE_ATTR_2(temp3_auto_point2_temp
, S_IRUGO
| S_IWUSR
,
1001 show_point2
, set_point2
, 0, 2);
1002 static SENSOR_DEVICE_ATTR_2(temp3_crit
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
1004 static SENSOR_DEVICE_ATTR_2(temp3_crit_hyst
, S_IRUGO
| S_IWUSR
, show_temp
,
1005 set_temp
, HYSTERSIS
, 2);
1006 static SENSOR_DEVICE_ATTR_2(fan1_input
, S_IRUGO
, show_tach
, NULL
, INPUT
, 0);
1007 static SENSOR_DEVICE_ATTR_2(fan1_min
, S_IRUGO
| S_IWUSR
, show_tach
, set_tach
,
1009 static SENSOR_DEVICE_ATTR_2(fan1_alarm
, S_IRUGO
, show_tach
, NULL
, ALARM
, 0);
1010 static SENSOR_DEVICE_ATTR_2(fan2_input
, S_IRUGO
, show_tach
, NULL
, INPUT
, 1);
1011 static SENSOR_DEVICE_ATTR_2(fan2_min
, S_IRUGO
| S_IWUSR
, show_tach
, set_tach
,
1013 static SENSOR_DEVICE_ATTR_2(fan2_alarm
, S_IRUGO
, show_tach
, NULL
, ALARM
, 1);
1014 static SENSOR_DEVICE_ATTR_2(fan3_input
, S_IRUGO
, show_tach
, NULL
, INPUT
, 2);
1015 static SENSOR_DEVICE_ATTR_2(fan3_min
, S_IRUGO
| S_IWUSR
, show_tach
, set_tach
,
1017 static SENSOR_DEVICE_ATTR_2(fan3_alarm
, S_IRUGO
, show_tach
, NULL
, ALARM
, 2);
1018 static SENSOR_DEVICE_ATTR_2(fan4_input
, S_IRUGO
, show_tach
, NULL
, INPUT
, 3);
1019 static SENSOR_DEVICE_ATTR_2(fan4_min
, S_IRUGO
| S_IWUSR
, show_tach
, set_tach
,
1021 static SENSOR_DEVICE_ATTR_2(fan4_alarm
, S_IRUGO
, show_tach
, NULL
, ALARM
, 3);
1022 static SENSOR_DEVICE_ATTR_2(pwm1
, S_IRUGO
| S_IWUSR
, show_pwm
, set_pwm
, INPUT
,
1024 static SENSOR_DEVICE_ATTR_2(pwm1_freq
, S_IRUGO
| S_IWUSR
, show_pwmfreq
,
1025 set_pwmfreq
, INPUT
, 0);
1026 static SENSOR_DEVICE_ATTR_2(pwm1_enable
, S_IRUGO
| S_IWUSR
, show_pwmctrl
,
1027 set_pwmctrl
, INPUT
, 0);
1028 static SENSOR_DEVICE_ATTR_2(pwm1_auto_channels_temp
, S_IRUGO
| S_IWUSR
,
1029 show_pwmchan
, set_pwmchan
, INPUT
, 0);
1030 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm
, S_IRUGO
| S_IWUSR
, show_pwm
,
1032 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm
, S_IRUGO
| S_IWUSR
, show_pwm
,
1034 static SENSOR_DEVICE_ATTR_2(pwm2
, S_IRUGO
| S_IWUSR
, show_pwm
, set_pwm
, INPUT
,
1036 static SENSOR_DEVICE_ATTR_2(pwm2_freq
, S_IRUGO
| S_IWUSR
, show_pwmfreq
,
1037 set_pwmfreq
, INPUT
, 1);
1038 static SENSOR_DEVICE_ATTR_2(pwm2_enable
, S_IRUGO
| S_IWUSR
, show_pwmctrl
,
1039 set_pwmctrl
, INPUT
, 1);
1040 static SENSOR_DEVICE_ATTR_2(pwm2_auto_channels_temp
, S_IRUGO
| S_IWUSR
,
1041 show_pwmchan
, set_pwmchan
, INPUT
, 1);
1042 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm
, S_IRUGO
| S_IWUSR
, show_pwm
,
1044 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm
, S_IRUGO
| S_IWUSR
, show_pwm
,
1046 static SENSOR_DEVICE_ATTR_2(pwm3
, S_IRUGO
| S_IWUSR
, show_pwm
, set_pwm
, INPUT
,
1048 static SENSOR_DEVICE_ATTR_2(pwm3_freq
, S_IRUGO
| S_IWUSR
, show_pwmfreq
,
1049 set_pwmfreq
, INPUT
, 2);
1050 static SENSOR_DEVICE_ATTR_2(pwm3_enable
, S_IRUGO
| S_IWUSR
, show_pwmctrl
,
1051 set_pwmctrl
, INPUT
, 2);
1052 static SENSOR_DEVICE_ATTR_2(pwm3_auto_channels_temp
, S_IRUGO
| S_IWUSR
,
1053 show_pwmchan
, set_pwmchan
, INPUT
, 2);
1054 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm
, S_IRUGO
| S_IWUSR
, show_pwm
,
1056 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm
, S_IRUGO
| S_IWUSR
, show_pwm
,
1059 /* Non-standard name, might need revisiting */
1060 static DEVICE_ATTR(pwm_use_point2_pwm_at_crit
, S_IWUSR
| S_IRUGO
,
1061 show_pwm_at_crit
, set_pwm_at_crit
);
1063 static DEVICE_ATTR(vrm
, S_IWUSR
| S_IRUGO
, show_vrm
, set_vrm
);
1064 static DEVICE_ATTR(cpu0_vid
, S_IRUGO
, show_vid
, NULL
);
1066 static struct attribute
*adt7475_attrs
[] = {
1067 &sensor_dev_attr_in1_input
.dev_attr
.attr
,
1068 &sensor_dev_attr_in1_max
.dev_attr
.attr
,
1069 &sensor_dev_attr_in1_min
.dev_attr
.attr
,
1070 &sensor_dev_attr_in1_alarm
.dev_attr
.attr
,
1071 &sensor_dev_attr_in2_input
.dev_attr
.attr
,
1072 &sensor_dev_attr_in2_max
.dev_attr
.attr
,
1073 &sensor_dev_attr_in2_min
.dev_attr
.attr
,
1074 &sensor_dev_attr_in2_alarm
.dev_attr
.attr
,
1075 &sensor_dev_attr_temp1_input
.dev_attr
.attr
,
1076 &sensor_dev_attr_temp1_alarm
.dev_attr
.attr
,
1077 &sensor_dev_attr_temp1_fault
.dev_attr
.attr
,
1078 &sensor_dev_attr_temp1_max
.dev_attr
.attr
,
1079 &sensor_dev_attr_temp1_min
.dev_attr
.attr
,
1080 &sensor_dev_attr_temp1_offset
.dev_attr
.attr
,
1081 &sensor_dev_attr_temp1_auto_point1_temp
.dev_attr
.attr
,
1082 &sensor_dev_attr_temp1_auto_point2_temp
.dev_attr
.attr
,
1083 &sensor_dev_attr_temp1_crit
.dev_attr
.attr
,
1084 &sensor_dev_attr_temp1_crit_hyst
.dev_attr
.attr
,
1085 &sensor_dev_attr_temp2_input
.dev_attr
.attr
,
1086 &sensor_dev_attr_temp2_alarm
.dev_attr
.attr
,
1087 &sensor_dev_attr_temp2_max
.dev_attr
.attr
,
1088 &sensor_dev_attr_temp2_min
.dev_attr
.attr
,
1089 &sensor_dev_attr_temp2_offset
.dev_attr
.attr
,
1090 &sensor_dev_attr_temp2_auto_point1_temp
.dev_attr
.attr
,
1091 &sensor_dev_attr_temp2_auto_point2_temp
.dev_attr
.attr
,
1092 &sensor_dev_attr_temp2_crit
.dev_attr
.attr
,
1093 &sensor_dev_attr_temp2_crit_hyst
.dev_attr
.attr
,
1094 &sensor_dev_attr_temp3_input
.dev_attr
.attr
,
1095 &sensor_dev_attr_temp3_fault
.dev_attr
.attr
,
1096 &sensor_dev_attr_temp3_alarm
.dev_attr
.attr
,
1097 &sensor_dev_attr_temp3_max
.dev_attr
.attr
,
1098 &sensor_dev_attr_temp3_min
.dev_attr
.attr
,
1099 &sensor_dev_attr_temp3_offset
.dev_attr
.attr
,
1100 &sensor_dev_attr_temp3_auto_point1_temp
.dev_attr
.attr
,
1101 &sensor_dev_attr_temp3_auto_point2_temp
.dev_attr
.attr
,
1102 &sensor_dev_attr_temp3_crit
.dev_attr
.attr
,
1103 &sensor_dev_attr_temp3_crit_hyst
.dev_attr
.attr
,
1104 &sensor_dev_attr_fan1_input
.dev_attr
.attr
,
1105 &sensor_dev_attr_fan1_min
.dev_attr
.attr
,
1106 &sensor_dev_attr_fan1_alarm
.dev_attr
.attr
,
1107 &sensor_dev_attr_fan2_input
.dev_attr
.attr
,
1108 &sensor_dev_attr_fan2_min
.dev_attr
.attr
,
1109 &sensor_dev_attr_fan2_alarm
.dev_attr
.attr
,
1110 &sensor_dev_attr_fan3_input
.dev_attr
.attr
,
1111 &sensor_dev_attr_fan3_min
.dev_attr
.attr
,
1112 &sensor_dev_attr_fan3_alarm
.dev_attr
.attr
,
1113 &sensor_dev_attr_pwm1
.dev_attr
.attr
,
1114 &sensor_dev_attr_pwm1_freq
.dev_attr
.attr
,
1115 &sensor_dev_attr_pwm1_enable
.dev_attr
.attr
,
1116 &sensor_dev_attr_pwm1_auto_channels_temp
.dev_attr
.attr
,
1117 &sensor_dev_attr_pwm1_auto_point1_pwm
.dev_attr
.attr
,
1118 &sensor_dev_attr_pwm1_auto_point2_pwm
.dev_attr
.attr
,
1119 &sensor_dev_attr_pwm3
.dev_attr
.attr
,
1120 &sensor_dev_attr_pwm3_freq
.dev_attr
.attr
,
1121 &sensor_dev_attr_pwm3_enable
.dev_attr
.attr
,
1122 &sensor_dev_attr_pwm3_auto_channels_temp
.dev_attr
.attr
,
1123 &sensor_dev_attr_pwm3_auto_point1_pwm
.dev_attr
.attr
,
1124 &sensor_dev_attr_pwm3_auto_point2_pwm
.dev_attr
.attr
,
1125 &dev_attr_pwm_use_point2_pwm_at_crit
.attr
,
1129 static struct attribute
*fan4_attrs
[] = {
1130 &sensor_dev_attr_fan4_input
.dev_attr
.attr
,
1131 &sensor_dev_attr_fan4_min
.dev_attr
.attr
,
1132 &sensor_dev_attr_fan4_alarm
.dev_attr
.attr
,
1136 static struct attribute
*pwm2_attrs
[] = {
1137 &sensor_dev_attr_pwm2
.dev_attr
.attr
,
1138 &sensor_dev_attr_pwm2_freq
.dev_attr
.attr
,
1139 &sensor_dev_attr_pwm2_enable
.dev_attr
.attr
,
1140 &sensor_dev_attr_pwm2_auto_channels_temp
.dev_attr
.attr
,
1141 &sensor_dev_attr_pwm2_auto_point1_pwm
.dev_attr
.attr
,
1142 &sensor_dev_attr_pwm2_auto_point2_pwm
.dev_attr
.attr
,
1146 static struct attribute
*in0_attrs
[] = {
1147 &sensor_dev_attr_in0_input
.dev_attr
.attr
,
1148 &sensor_dev_attr_in0_max
.dev_attr
.attr
,
1149 &sensor_dev_attr_in0_min
.dev_attr
.attr
,
1150 &sensor_dev_attr_in0_alarm
.dev_attr
.attr
,
1154 static struct attribute
*in3_attrs
[] = {
1155 &sensor_dev_attr_in3_input
.dev_attr
.attr
,
1156 &sensor_dev_attr_in3_max
.dev_attr
.attr
,
1157 &sensor_dev_attr_in3_min
.dev_attr
.attr
,
1158 &sensor_dev_attr_in3_alarm
.dev_attr
.attr
,
1162 static struct attribute
*in4_attrs
[] = {
1163 &sensor_dev_attr_in4_input
.dev_attr
.attr
,
1164 &sensor_dev_attr_in4_max
.dev_attr
.attr
,
1165 &sensor_dev_attr_in4_min
.dev_attr
.attr
,
1166 &sensor_dev_attr_in4_alarm
.dev_attr
.attr
,
1170 static struct attribute
*in5_attrs
[] = {
1171 &sensor_dev_attr_in5_input
.dev_attr
.attr
,
1172 &sensor_dev_attr_in5_max
.dev_attr
.attr
,
1173 &sensor_dev_attr_in5_min
.dev_attr
.attr
,
1174 &sensor_dev_attr_in5_alarm
.dev_attr
.attr
,
1178 static struct attribute
*vid_attrs
[] = {
1179 &dev_attr_cpu0_vid
.attr
,
1184 static struct attribute_group adt7475_attr_group
= { .attrs
= adt7475_attrs
};
1185 static struct attribute_group fan4_attr_group
= { .attrs
= fan4_attrs
};
1186 static struct attribute_group pwm2_attr_group
= { .attrs
= pwm2_attrs
};
1187 static struct attribute_group in0_attr_group
= { .attrs
= in0_attrs
};
1188 static struct attribute_group in3_attr_group
= { .attrs
= in3_attrs
};
1189 static struct attribute_group in4_attr_group
= { .attrs
= in4_attrs
};
1190 static struct attribute_group in5_attr_group
= { .attrs
= in5_attrs
};
1191 static struct attribute_group vid_attr_group
= { .attrs
= vid_attrs
};
1193 static int adt7475_detect(struct i2c_client
*client
,
1194 struct i2c_board_info
*info
)
1196 struct i2c_adapter
*adapter
= client
->adapter
;
1197 int vendid
, devid
, devid2
;
1200 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_BYTE_DATA
))
1203 vendid
= adt7475_read(REG_VENDID
);
1204 devid2
= adt7475_read(REG_DEVID2
);
1205 if (vendid
!= 0x41 || /* Analog Devices */
1206 (devid2
& 0xf8) != 0x68)
1209 devid
= adt7475_read(REG_DEVID
);
1212 else if (devid
== 0x75 && client
->addr
== 0x2e)
1214 else if (devid
== 0x76)
1216 else if ((devid2
& 0xfc) == 0x6c)
1219 dev_dbg(&adapter
->dev
,
1220 "Couldn't detect an ADT7473/75/76/90 part at "
1221 "0x%02x\n", (unsigned int)client
->addr
);
1225 strlcpy(info
->type
, name
, I2C_NAME_SIZE
);
1230 static void adt7475_remove_files(struct i2c_client
*client
,
1231 struct adt7475_data
*data
)
1233 sysfs_remove_group(&client
->dev
.kobj
, &adt7475_attr_group
);
1235 sysfs_remove_group(&client
->dev
.kobj
, &fan4_attr_group
);
1237 sysfs_remove_group(&client
->dev
.kobj
, &pwm2_attr_group
);
1238 if (data
->has_voltage
& (1 << 0))
1239 sysfs_remove_group(&client
->dev
.kobj
, &in0_attr_group
);
1240 if (data
->has_voltage
& (1 << 3))
1241 sysfs_remove_group(&client
->dev
.kobj
, &in3_attr_group
);
1242 if (data
->has_voltage
& (1 << 4))
1243 sysfs_remove_group(&client
->dev
.kobj
, &in4_attr_group
);
1244 if (data
->has_voltage
& (1 << 5))
1245 sysfs_remove_group(&client
->dev
.kobj
, &in5_attr_group
);
1247 sysfs_remove_group(&client
->dev
.kobj
, &vid_attr_group
);
1250 static int adt7475_probe(struct i2c_client
*client
,
1251 const struct i2c_device_id
*id
)
1253 static const char * const names
[] = {
1254 [adt7473
] = "ADT7473",
1255 [adt7475
] = "ADT7475",
1256 [adt7476
] = "ADT7476",
1257 [adt7490
] = "ADT7490",
1260 struct adt7475_data
*data
;
1261 int i
, ret
= 0, revision
;
1262 u8 config2
, config3
;
1264 data
= devm_kzalloc(&client
->dev
, sizeof(*data
), GFP_KERNEL
);
1268 mutex_init(&data
->lock
);
1269 i2c_set_clientdata(client
, data
);
1271 /* Initialize device-specific values */
1272 switch (id
->driver_data
) {
1274 data
->has_voltage
= 0x0e; /* in1 to in3 */
1275 revision
= adt7475_read(REG_DEVID2
) & 0x07;
1278 data
->has_voltage
= 0x3e; /* in1 to in5 */
1279 revision
= adt7475_read(REG_DEVID2
) & 0x03;
1280 if (revision
== 0x03)
1281 revision
+= adt7475_read(REG_DEVREV2
);
1284 data
->has_voltage
= 0x06; /* in1, in2 */
1285 revision
= adt7475_read(REG_DEVID2
) & 0x07;
1288 config3
= adt7475_read(REG_CONFIG3
);
1289 /* Pin PWM2 may alternatively be used for ALERT output */
1290 if (!(config3
& CONFIG3_SMBALERT
))
1292 /* Meaning of this bit is inverted for the ADT7473-1 */
1293 if (id
->driver_data
== adt7473
&& revision
>= 1)
1294 data
->has_pwm2
= !data
->has_pwm2
;
1296 data
->config4
= adt7475_read(REG_CONFIG4
);
1297 /* Pin TACH4 may alternatively be used for THERM */
1298 if ((data
->config4
& CONFIG4_PINFUNC
) == 0x0)
1302 * THERM configuration is more complex on the ADT7476 and ADT7490,
1303 * because 2 different pins (TACH4 and +2.5 Vin) can be used for
1306 if (id
->driver_data
== adt7490
) {
1307 if ((data
->config4
& CONFIG4_PINFUNC
) == 0x1 &&
1308 !(config3
& CONFIG3_THERM
))
1311 if (id
->driver_data
== adt7476
|| id
->driver_data
== adt7490
) {
1312 if (!(config3
& CONFIG3_THERM
) ||
1313 (data
->config4
& CONFIG4_PINFUNC
) == 0x1)
1314 data
->has_voltage
|= (1 << 0); /* in0 */
1318 * On the ADT7476, the +12V input pin may instead be used as VID5,
1319 * and VID pins may alternatively be used as GPIO
1321 if (id
->driver_data
== adt7476
) {
1322 u8 vid
= adt7475_read(REG_VID
);
1323 if (!(vid
& VID_VIDSEL
))
1324 data
->has_voltage
|= (1 << 4); /* in4 */
1326 data
->has_vid
= !(adt7475_read(REG_CONFIG5
) & CONFIG5_VIDGPIO
);
1329 /* Voltage attenuators can be bypassed, globally or individually */
1330 config2
= adt7475_read(REG_CONFIG2
);
1331 if (config2
& CONFIG2_ATTN
) {
1332 data
->bypass_attn
= (0x3 << 3) | 0x3;
1334 data
->bypass_attn
= ((data
->config4
& CONFIG4_ATTN_IN10
) >> 4) |
1335 ((data
->config4
& CONFIG4_ATTN_IN43
) >> 3);
1337 data
->bypass_attn
&= data
->has_voltage
;
1340 * Call adt7475_read_pwm for all pwm's as this will reprogram any
1341 * pwm's which are disabled to manual mode with 0% duty cycle
1343 for (i
= 0; i
< ADT7475_PWM_COUNT
; i
++)
1344 adt7475_read_pwm(client
, i
);
1346 ret
= sysfs_create_group(&client
->dev
.kobj
, &adt7475_attr_group
);
1350 /* Features that can be disabled individually */
1351 if (data
->has_fan4
) {
1352 ret
= sysfs_create_group(&client
->dev
.kobj
, &fan4_attr_group
);
1356 if (data
->has_pwm2
) {
1357 ret
= sysfs_create_group(&client
->dev
.kobj
, &pwm2_attr_group
);
1361 if (data
->has_voltage
& (1 << 0)) {
1362 ret
= sysfs_create_group(&client
->dev
.kobj
, &in0_attr_group
);
1366 if (data
->has_voltage
& (1 << 3)) {
1367 ret
= sysfs_create_group(&client
->dev
.kobj
, &in3_attr_group
);
1371 if (data
->has_voltage
& (1 << 4)) {
1372 ret
= sysfs_create_group(&client
->dev
.kobj
, &in4_attr_group
);
1376 if (data
->has_voltage
& (1 << 5)) {
1377 ret
= sysfs_create_group(&client
->dev
.kobj
, &in5_attr_group
);
1381 if (data
->has_vid
) {
1382 data
->vrm
= vid_which_vrm();
1383 ret
= sysfs_create_group(&client
->dev
.kobj
, &vid_attr_group
);
1388 data
->hwmon_dev
= hwmon_device_register(&client
->dev
);
1389 if (IS_ERR(data
->hwmon_dev
)) {
1390 ret
= PTR_ERR(data
->hwmon_dev
);
1394 dev_info(&client
->dev
, "%s device, revision %d\n",
1395 names
[id
->driver_data
], revision
);
1396 if ((data
->has_voltage
& 0x11) || data
->has_fan4
|| data
->has_pwm2
)
1397 dev_info(&client
->dev
, "Optional features:%s%s%s%s%s\n",
1398 (data
->has_voltage
& (1 << 0)) ? " in0" : "",
1399 (data
->has_voltage
& (1 << 4)) ? " in4" : "",
1400 data
->has_fan4
? " fan4" : "",
1401 data
->has_pwm2
? " pwm2" : "",
1402 data
->has_vid
? " vid" : "");
1403 if (data
->bypass_attn
)
1404 dev_info(&client
->dev
, "Bypassing attenuators on:%s%s%s%s\n",
1405 (data
->bypass_attn
& (1 << 0)) ? " in0" : "",
1406 (data
->bypass_attn
& (1 << 1)) ? " in1" : "",
1407 (data
->bypass_attn
& (1 << 3)) ? " in3" : "",
1408 (data
->bypass_attn
& (1 << 4)) ? " in4" : "");
1413 adt7475_remove_files(client
, data
);
1417 static int adt7475_remove(struct i2c_client
*client
)
1419 struct adt7475_data
*data
= i2c_get_clientdata(client
);
1421 hwmon_device_unregister(data
->hwmon_dev
);
1422 adt7475_remove_files(client
, data
);
1427 static struct i2c_driver adt7475_driver
= {
1428 .class = I2C_CLASS_HWMON
,
1432 .probe
= adt7475_probe
,
1433 .remove
= adt7475_remove
,
1434 .id_table
= adt7475_id
,
1435 .detect
= adt7475_detect
,
1436 .address_list
= normal_i2c
,
1439 static void adt7475_read_hystersis(struct i2c_client
*client
)
1441 struct adt7475_data
*data
= i2c_get_clientdata(client
);
1443 data
->temp
[HYSTERSIS
][0] = (u16
) adt7475_read(REG_REMOTE1_HYSTERSIS
);
1444 data
->temp
[HYSTERSIS
][1] = data
->temp
[HYSTERSIS
][0];
1445 data
->temp
[HYSTERSIS
][2] = (u16
) adt7475_read(REG_REMOTE2_HYSTERSIS
);
1448 static void adt7475_read_pwm(struct i2c_client
*client
, int index
)
1450 struct adt7475_data
*data
= i2c_get_clientdata(client
);
1453 data
->pwm
[CONTROL
][index
] = adt7475_read(PWM_CONFIG_REG(index
));
1456 * Figure out the internal value for pwmctrl and pwmchan
1457 * based on the current settings
1459 v
= (data
->pwm
[CONTROL
][index
] >> 5) & 7;
1462 data
->pwmctl
[index
] = 0;
1464 data
->pwmctl
[index
] = 1;
1467 * The fan is disabled - we don't want to
1468 * support that, so change to manual mode and
1469 * set the duty cycle to 0 instead
1471 data
->pwm
[INPUT
][index
] = 0;
1472 data
->pwm
[CONTROL
][index
] &= ~0xE0;
1473 data
->pwm
[CONTROL
][index
] |= (7 << 5);
1475 i2c_smbus_write_byte_data(client
, PWM_CONFIG_REG(index
),
1476 data
->pwm
[INPUT
][index
]);
1478 i2c_smbus_write_byte_data(client
, PWM_CONFIG_REG(index
),
1479 data
->pwm
[CONTROL
][index
]);
1481 data
->pwmctl
[index
] = 1;
1483 data
->pwmctl
[index
] = 2;
1487 data
->pwmchan
[index
] = 1;
1490 data
->pwmchan
[index
] = 2;
1493 data
->pwmchan
[index
] = 4;
1496 data
->pwmchan
[index
] = 6;
1499 data
->pwmchan
[index
] = 7;
1505 static struct adt7475_data
*adt7475_update_device(struct device
*dev
)
1507 struct i2c_client
*client
= to_i2c_client(dev
);
1508 struct adt7475_data
*data
= i2c_get_clientdata(client
);
1512 mutex_lock(&data
->lock
);
1514 /* Measurement values update every 2 seconds */
1515 if (time_after(jiffies
, data
->measure_updated
+ HZ
* 2) ||
1517 data
->alarms
= adt7475_read(REG_STATUS2
) << 8;
1518 data
->alarms
|= adt7475_read(REG_STATUS1
);
1520 ext
= (adt7475_read(REG_EXTEND2
) << 8) |
1521 adt7475_read(REG_EXTEND1
);
1522 for (i
= 0; i
< ADT7475_VOLTAGE_COUNT
; i
++) {
1523 if (!(data
->has_voltage
& (1 << i
)))
1525 data
->voltage
[INPUT
][i
] =
1526 (adt7475_read(VOLTAGE_REG(i
)) << 2) |
1527 ((ext
>> (i
* 2)) & 3);
1530 for (i
= 0; i
< ADT7475_TEMP_COUNT
; i
++)
1531 data
->temp
[INPUT
][i
] =
1532 (adt7475_read(TEMP_REG(i
)) << 2) |
1533 ((ext
>> ((i
+ 5) * 2)) & 3);
1535 if (data
->has_voltage
& (1 << 5)) {
1536 data
->alarms
|= adt7475_read(REG_STATUS4
) << 24;
1537 ext
= adt7475_read(REG_EXTEND3
);
1538 data
->voltage
[INPUT
][5] = adt7475_read(REG_VTT
) << 2 |
1542 for (i
= 0; i
< ADT7475_TACH_COUNT
; i
++) {
1543 if (i
== 3 && !data
->has_fan4
)
1545 data
->tach
[INPUT
][i
] =
1546 adt7475_read_word(client
, TACH_REG(i
));
1549 /* Updated by hw when in auto mode */
1550 for (i
= 0; i
< ADT7475_PWM_COUNT
; i
++) {
1551 if (i
== 1 && !data
->has_pwm2
)
1553 data
->pwm
[INPUT
][i
] = adt7475_read(PWM_REG(i
));
1557 data
->vid
= adt7475_read(REG_VID
) & 0x3f;
1559 data
->measure_updated
= jiffies
;
1562 /* Limits and settings, should never change update every 60 seconds */
1563 if (time_after(jiffies
, data
->limits_updated
+ HZ
* 60) ||
1565 data
->config4
= adt7475_read(REG_CONFIG4
);
1566 data
->config5
= adt7475_read(REG_CONFIG5
);
1568 for (i
= 0; i
< ADT7475_VOLTAGE_COUNT
; i
++) {
1569 if (!(data
->has_voltage
& (1 << i
)))
1571 /* Adjust values so they match the input precision */
1572 data
->voltage
[MIN
][i
] =
1573 adt7475_read(VOLTAGE_MIN_REG(i
)) << 2;
1574 data
->voltage
[MAX
][i
] =
1575 adt7475_read(VOLTAGE_MAX_REG(i
)) << 2;
1578 if (data
->has_voltage
& (1 << 5)) {
1579 data
->voltage
[MIN
][5] = adt7475_read(REG_VTT_MIN
) << 2;
1580 data
->voltage
[MAX
][5] = adt7475_read(REG_VTT_MAX
) << 2;
1583 for (i
= 0; i
< ADT7475_TEMP_COUNT
; i
++) {
1584 /* Adjust values so they match the input precision */
1585 data
->temp
[MIN
][i
] =
1586 adt7475_read(TEMP_MIN_REG(i
)) << 2;
1587 data
->temp
[MAX
][i
] =
1588 adt7475_read(TEMP_MAX_REG(i
)) << 2;
1589 data
->temp
[AUTOMIN
][i
] =
1590 adt7475_read(TEMP_TMIN_REG(i
)) << 2;
1591 data
->temp
[THERM
][i
] =
1592 adt7475_read(TEMP_THERM_REG(i
)) << 2;
1593 data
->temp
[OFFSET
][i
] =
1594 adt7475_read(TEMP_OFFSET_REG(i
));
1596 adt7475_read_hystersis(client
);
1598 for (i
= 0; i
< ADT7475_TACH_COUNT
; i
++) {
1599 if (i
== 3 && !data
->has_fan4
)
1601 data
->tach
[MIN
][i
] =
1602 adt7475_read_word(client
, TACH_MIN_REG(i
));
1605 for (i
= 0; i
< ADT7475_PWM_COUNT
; i
++) {
1606 if (i
== 1 && !data
->has_pwm2
)
1608 data
->pwm
[MAX
][i
] = adt7475_read(PWM_MAX_REG(i
));
1609 data
->pwm
[MIN
][i
] = adt7475_read(PWM_MIN_REG(i
));
1610 /* Set the channel and control information */
1611 adt7475_read_pwm(client
, i
);
1614 data
->range
[0] = adt7475_read(TEMP_TRANGE_REG(0));
1615 data
->range
[1] = adt7475_read(TEMP_TRANGE_REG(1));
1616 data
->range
[2] = adt7475_read(TEMP_TRANGE_REG(2));
1618 data
->limits_updated
= jiffies
;
1622 mutex_unlock(&data
->lock
);
1627 module_i2c_driver(adt7475_driver
);
1629 MODULE_AUTHOR("Advanced Micro Devices, Inc");
1630 MODULE_DESCRIPTION("adt7475 driver");
1631 MODULE_LICENSE("GPL");