2 * it87.c - Part of lm_sensors, Linux kernel modules for hardware
5 * The IT8705F is an LPC-based Super I/O part that contains UARTs, a
6 * parallel port, an IR port, a MIDI port, a floppy controller, etc., in
7 * addition to an Environment Controller (Enhanced Hardware Monitor and
10 * This driver supports only the Environment Controller in the IT8705F and
11 * similar parts. The other devices are supported by different drivers.
13 * Supports: IT8603E Super I/O chip w/LPC interface
14 * IT8623E Super I/O chip w/LPC interface
15 * IT8705F Super I/O chip w/LPC interface
16 * IT8712F Super I/O chip w/LPC interface
17 * IT8716F Super I/O chip w/LPC interface
18 * IT8718F Super I/O chip w/LPC interface
19 * IT8720F Super I/O chip w/LPC interface
20 * IT8721F Super I/O chip w/LPC interface
21 * IT8726F Super I/O chip w/LPC interface
22 * IT8728F Super I/O chip w/LPC interface
23 * IT8758E Super I/O chip w/LPC interface
24 * IT8771E Super I/O chip w/LPC interface
25 * IT8772E Super I/O chip w/LPC interface
26 * IT8782F Super I/O chip w/LPC interface
27 * IT8783E/F Super I/O chip w/LPC interface
28 * Sis950 A clone of the IT8705F
30 * Copyright (C) 2001 Chris Gauthron
31 * Copyright (C) 2005-2010 Jean Delvare <jdelvare@suse.de>
33 * This program is free software; you can redistribute it and/or modify
34 * it under the terms of the GNU General Public License as published by
35 * the Free Software Foundation; either version 2 of the License, or
36 * (at your option) any later version.
38 * This program is distributed in the hope that it will be useful,
39 * but WITHOUT ANY WARRANTY; without even the implied warranty of
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 * GNU General Public License for more details.
43 * You should have received a copy of the GNU General Public License
44 * along with this program; if not, write to the Free Software
45 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
48 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
50 #include <linux/module.h>
51 #include <linux/init.h>
52 #include <linux/slab.h>
53 #include <linux/jiffies.h>
54 #include <linux/platform_device.h>
55 #include <linux/hwmon.h>
56 #include <linux/hwmon-sysfs.h>
57 #include <linux/hwmon-vid.h>
58 #include <linux/err.h>
59 #include <linux/mutex.h>
60 #include <linux/sysfs.h>
61 #include <linux/string.h>
62 #include <linux/dmi.h>
63 #include <linux/acpi.h>
66 #define DRVNAME "it87"
68 enum chips
{ it87
, it8712
, it8716
, it8718
, it8720
, it8721
, it8728
, it8771
,
69 it8772
, it8782
, it8783
, it8603
};
71 static unsigned short force_id
;
72 module_param(force_id
, ushort
, 0);
73 MODULE_PARM_DESC(force_id
, "Override the detected device ID");
75 static struct platform_device
*pdev
;
77 #define REG 0x2e /* The register to read/write */
78 #define DEV 0x07 /* Register: Logical device select */
79 #define VAL 0x2f /* The value to read/write */
80 #define PME 0x04 /* The device with the fan registers in it */
82 /* The device with the IT8718F/IT8720F VID value in it */
85 #define DEVID 0x20 /* Register: Device ID */
86 #define DEVREV 0x22 /* Register: Device Revision */
88 static inline int superio_inb(int reg
)
94 static inline void superio_outb(int reg
, int val
)
100 static int superio_inw(int reg
)
110 static inline void superio_select(int ldn
)
116 static inline int superio_enter(void)
119 * Try to reserve REG and REG + 1 for exclusive access.
121 if (!request_muxed_region(REG
, 2, DRVNAME
))
131 static inline void superio_exit(void)
135 release_region(REG
, 2);
138 /* Logical device 4 registers */
139 #define IT8712F_DEVID 0x8712
140 #define IT8705F_DEVID 0x8705
141 #define IT8716F_DEVID 0x8716
142 #define IT8718F_DEVID 0x8718
143 #define IT8720F_DEVID 0x8720
144 #define IT8721F_DEVID 0x8721
145 #define IT8726F_DEVID 0x8726
146 #define IT8728F_DEVID 0x8728
147 #define IT8771E_DEVID 0x8771
148 #define IT8772E_DEVID 0x8772
149 #define IT8782F_DEVID 0x8782
150 #define IT8783E_DEVID 0x8783
151 #define IT8603E_DEVID 0x8603
152 #define IT8623E_DEVID 0x8623
153 #define IT87_ACT_REG 0x30
154 #define IT87_BASE_REG 0x60
156 /* Logical device 7 registers (IT8712F and later) */
157 #define IT87_SIO_GPIO1_REG 0x25
158 #define IT87_SIO_GPIO3_REG 0x27
159 #define IT87_SIO_GPIO5_REG 0x29
160 #define IT87_SIO_PINX1_REG 0x2a /* Pin selection */
161 #define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
162 #define IT87_SIO_SPI_REG 0xef /* SPI function pin select */
163 #define IT87_SIO_VID_REG 0xfc /* VID value */
164 #define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */
166 /* Update battery voltage after every reading if true */
167 static bool update_vbat
;
169 /* Not all BIOSes properly configure the PWM registers */
170 static bool fix_pwm_polarity
;
172 /* Many IT87 constants specified below */
174 /* Length of ISA address segment */
175 #define IT87_EXTENT 8
177 /* Length of ISA address segment for Environmental Controller */
178 #define IT87_EC_EXTENT 2
180 /* Offset of EC registers from ISA base address */
181 #define IT87_EC_OFFSET 5
183 /* Where are the ISA address/data registers relative to the EC base address */
184 #define IT87_ADDR_REG_OFFSET 0
185 #define IT87_DATA_REG_OFFSET 1
187 /*----- The IT87 registers -----*/
189 #define IT87_REG_CONFIG 0x00
191 #define IT87_REG_ALARM1 0x01
192 #define IT87_REG_ALARM2 0x02
193 #define IT87_REG_ALARM3 0x03
196 * The IT8718F and IT8720F have the VID value in a different register, in
197 * Super-I/O configuration space.
199 #define IT87_REG_VID 0x0a
201 * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
202 * for fan divisors. Later IT8712F revisions must use 16-bit tachometer
205 #define IT87_REG_FAN_DIV 0x0b
206 #define IT87_REG_FAN_16BIT 0x0c
208 /* Monitors: 9 voltage (0 to 7, battery), 3 temp (1 to 3), 3 fan (1 to 3) */
210 static const u8 IT87_REG_FAN
[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82 };
211 static const u8 IT87_REG_FAN_MIN
[] = { 0x10, 0x11, 0x12, 0x84, 0x86 };
212 static const u8 IT87_REG_FANX
[] = { 0x18, 0x19, 0x1a, 0x81, 0x83 };
213 static const u8 IT87_REG_FANX_MIN
[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87 };
214 static const u8 IT87_REG_TEMP_OFFSET
[] = { 0x56, 0x57, 0x59 };
216 #define IT87_REG_FAN_MAIN_CTRL 0x13
217 #define IT87_REG_FAN_CTL 0x14
218 #define IT87_REG_PWM(nr) (0x15 + (nr))
219 #define IT87_REG_PWM_DUTY(nr) (0x63 + (nr) * 8)
221 #define IT87_REG_VIN(nr) (0x20 + (nr))
222 #define IT87_REG_TEMP(nr) (0x29 + (nr))
224 #define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
225 #define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
226 #define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
227 #define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
229 #define IT87_REG_VIN_ENABLE 0x50
230 #define IT87_REG_TEMP_ENABLE 0x51
231 #define IT87_REG_TEMP_EXTRA 0x55
232 #define IT87_REG_BEEP_ENABLE 0x5c
234 #define IT87_REG_CHIPID 0x58
236 #define IT87_REG_AUTO_TEMP(nr, i) (0x60 + (nr) * 8 + (i))
237 #define IT87_REG_AUTO_PWM(nr, i) (0x65 + (nr) * 8 + (i))
239 struct it87_devices
{
246 #define FEAT_12MV_ADC (1 << 0)
247 #define FEAT_NEWER_AUTOPWM (1 << 1)
248 #define FEAT_OLD_AUTOPWM (1 << 2)
249 #define FEAT_16BIT_FANS (1 << 3)
250 #define FEAT_TEMP_OFFSET (1 << 4)
251 #define FEAT_TEMP_PECI (1 << 5)
252 #define FEAT_TEMP_OLD_PECI (1 << 6)
254 static const struct it87_devices it87_devices
[] = {
257 .features
= FEAT_OLD_AUTOPWM
, /* may need to overwrite */
261 .features
= FEAT_OLD_AUTOPWM
, /* may need to overwrite */
265 .features
= FEAT_16BIT_FANS
| FEAT_TEMP_OFFSET
,
269 .features
= FEAT_16BIT_FANS
| FEAT_TEMP_OFFSET
270 | FEAT_TEMP_OLD_PECI
,
271 .old_peci_mask
= 0x4,
275 .features
= FEAT_16BIT_FANS
| FEAT_TEMP_OFFSET
276 | FEAT_TEMP_OLD_PECI
,
277 .old_peci_mask
= 0x4,
281 .features
= FEAT_NEWER_AUTOPWM
| FEAT_12MV_ADC
| FEAT_16BIT_FANS
282 | FEAT_TEMP_OFFSET
| FEAT_TEMP_OLD_PECI
| FEAT_TEMP_PECI
,
284 .old_peci_mask
= 0x02, /* Actually reports PCH */
288 .features
= FEAT_NEWER_AUTOPWM
| FEAT_12MV_ADC
| FEAT_16BIT_FANS
289 | FEAT_TEMP_OFFSET
| FEAT_TEMP_PECI
,
294 .features
= FEAT_NEWER_AUTOPWM
| FEAT_12MV_ADC
| FEAT_16BIT_FANS
295 | FEAT_TEMP_OFFSET
| FEAT_TEMP_PECI
,
296 /* PECI: guesswork */
298 /* 16 bit fans (OHM) */
303 .features
= FEAT_NEWER_AUTOPWM
| FEAT_12MV_ADC
| FEAT_16BIT_FANS
304 | FEAT_TEMP_OFFSET
| FEAT_TEMP_PECI
,
305 /* PECI (coreboot) */
306 /* 12mV ADC (HWSensors4, OHM) */
307 /* 16 bit fans (HWSensors4, OHM) */
312 .features
= FEAT_16BIT_FANS
| FEAT_TEMP_OFFSET
313 | FEAT_TEMP_OLD_PECI
,
314 .old_peci_mask
= 0x4,
318 .features
= FEAT_16BIT_FANS
| FEAT_TEMP_OFFSET
319 | FEAT_TEMP_OLD_PECI
,
320 .old_peci_mask
= 0x4,
324 .features
= FEAT_NEWER_AUTOPWM
| FEAT_12MV_ADC
| FEAT_16BIT_FANS
325 | FEAT_TEMP_OFFSET
| FEAT_TEMP_PECI
,
330 #define has_16bit_fans(data) ((data)->features & FEAT_16BIT_FANS)
331 #define has_12mv_adc(data) ((data)->features & FEAT_12MV_ADC)
332 #define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM)
333 #define has_old_autopwm(data) ((data)->features & FEAT_OLD_AUTOPWM)
334 #define has_temp_offset(data) ((data)->features & FEAT_TEMP_OFFSET)
335 #define has_temp_peci(data, nr) (((data)->features & FEAT_TEMP_PECI) && \
336 ((data)->peci_mask & (1 << nr)))
337 #define has_temp_old_peci(data, nr) \
338 (((data)->features & FEAT_TEMP_OLD_PECI) && \
339 ((data)->old_peci_mask & (1 << nr)))
341 struct it87_sio_data
{
343 /* Values read from Super-I/O config space */
347 u8 internal
; /* Internal sensors can be labeled */
348 /* Features skipped based on config or DMI */
357 * For each registered chip, we need to keep some data in memory.
358 * The structure is dynamically allocated.
361 struct device
*hwmon_dev
;
369 struct mutex update_lock
;
370 char valid
; /* !=0 if following fields are valid */
371 unsigned long last_updated
; /* In jiffies */
373 u16 in_scaled
; /* Internal voltage sensors are scaled */
374 u8 in
[10][3]; /* [nr][0]=in, [1]=min, [2]=max */
375 u8 has_fan
; /* Bitfield, fans enabled */
376 u16 fan
[5][2]; /* Register values, [nr][0]=fan, [1]=min */
377 u8 has_temp
; /* Bitfield, temp sensors enabled */
378 s8 temp
[3][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */
379 u8 sensor
; /* Register value (IT87_REG_TEMP_ENABLE) */
380 u8 extra
; /* Register value (IT87_REG_TEMP_EXTRA) */
381 u8 fan_div
[3]; /* Register encoding, shifted right */
382 u8 vid
; /* Register encoding, combined */
384 u32 alarms
; /* Register encoding, combined */
385 u8 beeps
; /* Register encoding */
386 u8 fan_main_ctrl
; /* Register value */
387 u8 fan_ctl
; /* Register value */
390 * The following 3 arrays correspond to the same registers up to
391 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
392 * 7, and we want to preserve settings on mode changes, so we have
393 * to track all values separately.
394 * Starting with the IT8721F, the manual PWM duty cycles are stored
395 * in separate registers (8-bit values), so the separate tracking
396 * is no longer needed, but it is still done to keep the driver
399 u8 pwm_ctrl
[3]; /* Register value */
400 u8 pwm_duty
[3]; /* Manual PWM value set by user */
401 u8 pwm_temp_map
[3]; /* PWM to temp. chan. mapping (bits 1-0) */
403 /* Automatic fan speed control registers */
404 u8 auto_pwm
[3][4]; /* [nr][3] is hard-coded */
405 s8 auto_temp
[3][5]; /* [nr][0] is point1_temp_hyst */
408 static int adc_lsb(const struct it87_data
*data
, int nr
)
410 int lsb
= has_12mv_adc(data
) ? 12 : 16;
411 if (data
->in_scaled
& (1 << nr
))
416 static u8
in_to_reg(const struct it87_data
*data
, int nr
, long val
)
418 val
= DIV_ROUND_CLOSEST(val
, adc_lsb(data
, nr
));
419 return clamp_val(val
, 0, 255);
422 static int in_from_reg(const struct it87_data
*data
, int nr
, int val
)
424 return val
* adc_lsb(data
, nr
);
427 static inline u8
FAN_TO_REG(long rpm
, int div
)
431 rpm
= clamp_val(rpm
, 1, 1000000);
432 return clamp_val((1350000 + rpm
* div
/ 2) / (rpm
* div
), 1, 254);
435 static inline u16
FAN16_TO_REG(long rpm
)
439 return clamp_val((1350000 + rpm
) / (rpm
* 2), 1, 0xfffe);
442 #define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
443 1350000 / ((val) * (div)))
444 /* The divider is fixed to 2 in 16-bit mode */
445 #define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
446 1350000 / ((val) * 2))
448 #define TEMP_TO_REG(val) (clamp_val(((val) < 0 ? (((val) - 500) / 1000) : \
449 ((val) + 500) / 1000), -128, 127))
450 #define TEMP_FROM_REG(val) ((val) * 1000)
452 static u8
pwm_to_reg(const struct it87_data
*data
, long val
)
454 if (has_newer_autopwm(data
))
460 static int pwm_from_reg(const struct it87_data
*data
, u8 reg
)
462 if (has_newer_autopwm(data
))
465 return (reg
& 0x7f) << 1;
469 static int DIV_TO_REG(int val
)
472 while (answer
< 7 && (val
>>= 1))
476 #define DIV_FROM_REG(val) (1 << (val))
478 static const unsigned int pwm_freq
[8] = {
489 static int it87_probe(struct platform_device
*pdev
);
490 static int it87_remove(struct platform_device
*pdev
);
492 static int it87_read_value(struct it87_data
*data
, u8 reg
);
493 static void it87_write_value(struct it87_data
*data
, u8 reg
, u8 value
);
494 static struct it87_data
*it87_update_device(struct device
*dev
);
495 static int it87_check_pwm(struct device
*dev
);
496 static void it87_init_device(struct platform_device
*pdev
);
499 static struct platform_driver it87_driver
= {
504 .remove
= it87_remove
,
507 static ssize_t
show_in(struct device
*dev
, struct device_attribute
*attr
,
510 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
512 int index
= sattr
->index
;
514 struct it87_data
*data
= it87_update_device(dev
);
515 return sprintf(buf
, "%d\n", in_from_reg(data
, nr
, data
->in
[nr
][index
]));
518 static ssize_t
set_in(struct device
*dev
, struct device_attribute
*attr
,
519 const char *buf
, size_t count
)
521 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
523 int index
= sattr
->index
;
525 struct it87_data
*data
= dev_get_drvdata(dev
);
528 if (kstrtoul(buf
, 10, &val
) < 0)
531 mutex_lock(&data
->update_lock
);
532 data
->in
[nr
][index
] = in_to_reg(data
, nr
, val
);
533 it87_write_value(data
,
534 index
== 1 ? IT87_REG_VIN_MIN(nr
)
535 : IT87_REG_VIN_MAX(nr
),
536 data
->in
[nr
][index
]);
537 mutex_unlock(&data
->update_lock
);
541 static SENSOR_DEVICE_ATTR_2(in0_input
, S_IRUGO
, show_in
, NULL
, 0, 0);
542 static SENSOR_DEVICE_ATTR_2(in0_min
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
544 static SENSOR_DEVICE_ATTR_2(in0_max
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
547 static SENSOR_DEVICE_ATTR_2(in1_input
, S_IRUGO
, show_in
, NULL
, 1, 0);
548 static SENSOR_DEVICE_ATTR_2(in1_min
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
550 static SENSOR_DEVICE_ATTR_2(in1_max
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
553 static SENSOR_DEVICE_ATTR_2(in2_input
, S_IRUGO
, show_in
, NULL
, 2, 0);
554 static SENSOR_DEVICE_ATTR_2(in2_min
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
556 static SENSOR_DEVICE_ATTR_2(in2_max
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
559 static SENSOR_DEVICE_ATTR_2(in3_input
, S_IRUGO
, show_in
, NULL
, 3, 0);
560 static SENSOR_DEVICE_ATTR_2(in3_min
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
562 static SENSOR_DEVICE_ATTR_2(in3_max
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
565 static SENSOR_DEVICE_ATTR_2(in4_input
, S_IRUGO
, show_in
, NULL
, 4, 0);
566 static SENSOR_DEVICE_ATTR_2(in4_min
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
568 static SENSOR_DEVICE_ATTR_2(in4_max
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
571 static SENSOR_DEVICE_ATTR_2(in5_input
, S_IRUGO
, show_in
, NULL
, 5, 0);
572 static SENSOR_DEVICE_ATTR_2(in5_min
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
574 static SENSOR_DEVICE_ATTR_2(in5_max
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
577 static SENSOR_DEVICE_ATTR_2(in6_input
, S_IRUGO
, show_in
, NULL
, 6, 0);
578 static SENSOR_DEVICE_ATTR_2(in6_min
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
580 static SENSOR_DEVICE_ATTR_2(in6_max
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
583 static SENSOR_DEVICE_ATTR_2(in7_input
, S_IRUGO
, show_in
, NULL
, 7, 0);
584 static SENSOR_DEVICE_ATTR_2(in7_min
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
586 static SENSOR_DEVICE_ATTR_2(in7_max
, S_IRUGO
| S_IWUSR
, show_in
, set_in
,
589 static SENSOR_DEVICE_ATTR_2(in8_input
, S_IRUGO
, show_in
, NULL
, 8, 0);
590 static SENSOR_DEVICE_ATTR_2(in9_input
, S_IRUGO
, show_in
, NULL
, 9, 0);
593 static ssize_t
show_temp(struct device
*dev
, struct device_attribute
*attr
,
596 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
598 int index
= sattr
->index
;
599 struct it87_data
*data
= it87_update_device(dev
);
601 return sprintf(buf
, "%d\n", TEMP_FROM_REG(data
->temp
[nr
][index
]));
604 static ssize_t
set_temp(struct device
*dev
, struct device_attribute
*attr
,
605 const char *buf
, size_t count
)
607 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
609 int index
= sattr
->index
;
610 struct it87_data
*data
= dev_get_drvdata(dev
);
614 if (kstrtol(buf
, 10, &val
) < 0)
617 mutex_lock(&data
->update_lock
);
622 reg
= IT87_REG_TEMP_LOW(nr
);
625 reg
= IT87_REG_TEMP_HIGH(nr
);
628 regval
= it87_read_value(data
, IT87_REG_BEEP_ENABLE
);
629 if (!(regval
& 0x80)) {
631 it87_write_value(data
, IT87_REG_BEEP_ENABLE
, regval
);
634 reg
= IT87_REG_TEMP_OFFSET
[nr
];
638 data
->temp
[nr
][index
] = TEMP_TO_REG(val
);
639 it87_write_value(data
, reg
, data
->temp
[nr
][index
]);
640 mutex_unlock(&data
->update_lock
);
644 static SENSOR_DEVICE_ATTR_2(temp1_input
, S_IRUGO
, show_temp
, NULL
, 0, 0);
645 static SENSOR_DEVICE_ATTR_2(temp1_min
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
647 static SENSOR_DEVICE_ATTR_2(temp1_max
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
649 static SENSOR_DEVICE_ATTR_2(temp1_offset
, S_IRUGO
| S_IWUSR
, show_temp
,
651 static SENSOR_DEVICE_ATTR_2(temp2_input
, S_IRUGO
, show_temp
, NULL
, 1, 0);
652 static SENSOR_DEVICE_ATTR_2(temp2_min
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
654 static SENSOR_DEVICE_ATTR_2(temp2_max
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
656 static SENSOR_DEVICE_ATTR_2(temp2_offset
, S_IRUGO
| S_IWUSR
, show_temp
,
658 static SENSOR_DEVICE_ATTR_2(temp3_input
, S_IRUGO
, show_temp
, NULL
, 2, 0);
659 static SENSOR_DEVICE_ATTR_2(temp3_min
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
661 static SENSOR_DEVICE_ATTR_2(temp3_max
, S_IRUGO
| S_IWUSR
, show_temp
, set_temp
,
663 static SENSOR_DEVICE_ATTR_2(temp3_offset
, S_IRUGO
| S_IWUSR
, show_temp
,
666 static ssize_t
show_temp_type(struct device
*dev
, struct device_attribute
*attr
,
669 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
670 int nr
= sensor_attr
->index
;
671 struct it87_data
*data
= it87_update_device(dev
);
672 u8 reg
= data
->sensor
; /* In case value is updated while used */
673 u8 extra
= data
->extra
;
675 if ((has_temp_peci(data
, nr
) && (reg
>> 6 == nr
+ 1))
676 || (has_temp_old_peci(data
, nr
) && (extra
& 0x80)))
677 return sprintf(buf
, "6\n"); /* Intel PECI */
679 return sprintf(buf
, "3\n"); /* thermal diode */
681 return sprintf(buf
, "4\n"); /* thermistor */
682 return sprintf(buf
, "0\n"); /* disabled */
685 static ssize_t
set_temp_type(struct device
*dev
, struct device_attribute
*attr
,
686 const char *buf
, size_t count
)
688 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
689 int nr
= sensor_attr
->index
;
691 struct it87_data
*data
= dev_get_drvdata(dev
);
695 if (kstrtol(buf
, 10, &val
) < 0)
698 reg
= it87_read_value(data
, IT87_REG_TEMP_ENABLE
);
701 if (has_temp_peci(data
, nr
) && (reg
>> 6 == nr
+ 1 || val
== 6))
703 extra
= it87_read_value(data
, IT87_REG_TEMP_EXTRA
);
704 if (has_temp_old_peci(data
, nr
) && ((extra
& 0x80) || val
== 6))
706 if (val
== 2) { /* backwards compatibility */
708 "Sensor type 2 is deprecated, please use 4 instead\n");
711 /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */
716 else if (has_temp_peci(data
, nr
) && val
== 6)
717 reg
|= (nr
+ 1) << 6;
718 else if (has_temp_old_peci(data
, nr
) && val
== 6)
723 mutex_lock(&data
->update_lock
);
726 it87_write_value(data
, IT87_REG_TEMP_ENABLE
, data
->sensor
);
727 if (has_temp_old_peci(data
, nr
))
728 it87_write_value(data
, IT87_REG_TEMP_EXTRA
, data
->extra
);
729 data
->valid
= 0; /* Force cache refresh */
730 mutex_unlock(&data
->update_lock
);
734 static SENSOR_DEVICE_ATTR(temp1_type
, S_IRUGO
| S_IWUSR
, show_temp_type
,
736 static SENSOR_DEVICE_ATTR(temp2_type
, S_IRUGO
| S_IWUSR
, show_temp_type
,
738 static SENSOR_DEVICE_ATTR(temp3_type
, S_IRUGO
| S_IWUSR
, show_temp_type
,
743 static int pwm_mode(const struct it87_data
*data
, int nr
)
745 int ctrl
= data
->fan_main_ctrl
& (1 << nr
);
747 if (ctrl
== 0 && data
->type
!= it8603
) /* Full speed */
749 if (data
->pwm_ctrl
[nr
] & 0x80) /* Automatic mode */
751 else /* Manual mode */
755 static ssize_t
show_fan(struct device
*dev
, struct device_attribute
*attr
,
758 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
760 int index
= sattr
->index
;
762 struct it87_data
*data
= it87_update_device(dev
);
764 speed
= has_16bit_fans(data
) ?
765 FAN16_FROM_REG(data
->fan
[nr
][index
]) :
766 FAN_FROM_REG(data
->fan
[nr
][index
],
767 DIV_FROM_REG(data
->fan_div
[nr
]));
768 return sprintf(buf
, "%d\n", speed
);
771 static ssize_t
show_fan_div(struct device
*dev
, struct device_attribute
*attr
,
774 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
775 int nr
= sensor_attr
->index
;
777 struct it87_data
*data
= it87_update_device(dev
);
778 return sprintf(buf
, "%d\n", DIV_FROM_REG(data
->fan_div
[nr
]));
780 static ssize_t
show_pwm_enable(struct device
*dev
,
781 struct device_attribute
*attr
, char *buf
)
783 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
784 int nr
= sensor_attr
->index
;
786 struct it87_data
*data
= it87_update_device(dev
);
787 return sprintf(buf
, "%d\n", pwm_mode(data
, nr
));
789 static ssize_t
show_pwm(struct device
*dev
, struct device_attribute
*attr
,
792 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
793 int nr
= sensor_attr
->index
;
795 struct it87_data
*data
= it87_update_device(dev
);
796 return sprintf(buf
, "%d\n",
797 pwm_from_reg(data
, data
->pwm_duty
[nr
]));
799 static ssize_t
show_pwm_freq(struct device
*dev
, struct device_attribute
*attr
,
802 struct it87_data
*data
= it87_update_device(dev
);
803 int index
= (data
->fan_ctl
>> 4) & 0x07;
805 return sprintf(buf
, "%u\n", pwm_freq
[index
]);
808 static ssize_t
set_fan(struct device
*dev
, struct device_attribute
*attr
,
809 const char *buf
, size_t count
)
811 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
813 int index
= sattr
->index
;
815 struct it87_data
*data
= dev_get_drvdata(dev
);
819 if (kstrtol(buf
, 10, &val
) < 0)
822 mutex_lock(&data
->update_lock
);
824 if (has_16bit_fans(data
)) {
825 data
->fan
[nr
][index
] = FAN16_TO_REG(val
);
826 it87_write_value(data
, IT87_REG_FAN_MIN
[nr
],
827 data
->fan
[nr
][index
] & 0xff);
828 it87_write_value(data
, IT87_REG_FANX_MIN
[nr
],
829 data
->fan
[nr
][index
] >> 8);
831 reg
= it87_read_value(data
, IT87_REG_FAN_DIV
);
834 data
->fan_div
[nr
] = reg
& 0x07;
837 data
->fan_div
[nr
] = (reg
>> 3) & 0x07;
840 data
->fan_div
[nr
] = (reg
& 0x40) ? 3 : 1;
843 data
->fan
[nr
][index
] =
844 FAN_TO_REG(val
, DIV_FROM_REG(data
->fan_div
[nr
]));
845 it87_write_value(data
, IT87_REG_FAN_MIN
[nr
],
846 data
->fan
[nr
][index
]);
849 mutex_unlock(&data
->update_lock
);
853 static ssize_t
set_fan_div(struct device
*dev
, struct device_attribute
*attr
,
854 const char *buf
, size_t count
)
856 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
857 int nr
= sensor_attr
->index
;
859 struct it87_data
*data
= dev_get_drvdata(dev
);
864 if (kstrtoul(buf
, 10, &val
) < 0)
867 mutex_lock(&data
->update_lock
);
868 old
= it87_read_value(data
, IT87_REG_FAN_DIV
);
870 /* Save fan min limit */
871 min
= FAN_FROM_REG(data
->fan
[nr
][1], DIV_FROM_REG(data
->fan_div
[nr
]));
876 data
->fan_div
[nr
] = DIV_TO_REG(val
);
880 data
->fan_div
[nr
] = 1;
882 data
->fan_div
[nr
] = 3;
885 val
|= (data
->fan_div
[0] & 0x07);
886 val
|= (data
->fan_div
[1] & 0x07) << 3;
887 if (data
->fan_div
[2] == 3)
889 it87_write_value(data
, IT87_REG_FAN_DIV
, val
);
891 /* Restore fan min limit */
892 data
->fan
[nr
][1] = FAN_TO_REG(min
, DIV_FROM_REG(data
->fan_div
[nr
]));
893 it87_write_value(data
, IT87_REG_FAN_MIN
[nr
], data
->fan
[nr
][1]);
895 mutex_unlock(&data
->update_lock
);
899 /* Returns 0 if OK, -EINVAL otherwise */
900 static int check_trip_points(struct device
*dev
, int nr
)
902 const struct it87_data
*data
= dev_get_drvdata(dev
);
905 if (has_old_autopwm(data
)) {
906 for (i
= 0; i
< 3; i
++) {
907 if (data
->auto_temp
[nr
][i
] > data
->auto_temp
[nr
][i
+ 1])
910 for (i
= 0; i
< 2; i
++) {
911 if (data
->auto_pwm
[nr
][i
] > data
->auto_pwm
[nr
][i
+ 1])
918 "Inconsistent trip points, not switching to automatic mode\n");
919 dev_err(dev
, "Adjust the trip points and try again\n");
924 static ssize_t
set_pwm_enable(struct device
*dev
,
925 struct device_attribute
*attr
, const char *buf
, size_t count
)
927 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
928 int nr
= sensor_attr
->index
;
930 struct it87_data
*data
= dev_get_drvdata(dev
);
933 if (kstrtol(buf
, 10, &val
) < 0 || val
< 0 || val
> 2)
936 /* Check trip points before switching to automatic mode */
938 if (check_trip_points(dev
, nr
) < 0)
942 /* IT8603E does not have on/off mode */
943 if (val
== 0 && data
->type
== it8603
)
946 mutex_lock(&data
->update_lock
);
950 /* make sure the fan is on when in on/off mode */
951 tmp
= it87_read_value(data
, IT87_REG_FAN_CTL
);
952 it87_write_value(data
, IT87_REG_FAN_CTL
, tmp
| (1 << nr
));
953 /* set on/off mode */
954 data
->fan_main_ctrl
&= ~(1 << nr
);
955 it87_write_value(data
, IT87_REG_FAN_MAIN_CTRL
,
956 data
->fan_main_ctrl
);
958 if (val
== 1) /* Manual mode */
959 data
->pwm_ctrl
[nr
] = has_newer_autopwm(data
) ?
960 data
->pwm_temp_map
[nr
] :
962 else /* Automatic mode */
963 data
->pwm_ctrl
[nr
] = 0x80 | data
->pwm_temp_map
[nr
];
964 it87_write_value(data
, IT87_REG_PWM(nr
), data
->pwm_ctrl
[nr
]);
966 if (data
->type
!= it8603
) {
967 /* set SmartGuardian mode */
968 data
->fan_main_ctrl
|= (1 << nr
);
969 it87_write_value(data
, IT87_REG_FAN_MAIN_CTRL
,
970 data
->fan_main_ctrl
);
974 mutex_unlock(&data
->update_lock
);
977 static ssize_t
set_pwm(struct device
*dev
, struct device_attribute
*attr
,
978 const char *buf
, size_t count
)
980 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
981 int nr
= sensor_attr
->index
;
983 struct it87_data
*data
= dev_get_drvdata(dev
);
986 if (kstrtol(buf
, 10, &val
) < 0 || val
< 0 || val
> 255)
989 mutex_lock(&data
->update_lock
);
990 if (has_newer_autopwm(data
)) {
992 * If we are in automatic mode, the PWM duty cycle register
993 * is read-only so we can't write the value.
995 if (data
->pwm_ctrl
[nr
] & 0x80) {
996 mutex_unlock(&data
->update_lock
);
999 data
->pwm_duty
[nr
] = pwm_to_reg(data
, val
);
1000 it87_write_value(data
, IT87_REG_PWM_DUTY(nr
),
1001 data
->pwm_duty
[nr
]);
1003 data
->pwm_duty
[nr
] = pwm_to_reg(data
, val
);
1005 * If we are in manual mode, write the duty cycle immediately;
1006 * otherwise, just store it for later use.
1008 if (!(data
->pwm_ctrl
[nr
] & 0x80)) {
1009 data
->pwm_ctrl
[nr
] = data
->pwm_duty
[nr
];
1010 it87_write_value(data
, IT87_REG_PWM(nr
),
1011 data
->pwm_ctrl
[nr
]);
1014 mutex_unlock(&data
->update_lock
);
1017 static ssize_t
set_pwm_freq(struct device
*dev
,
1018 struct device_attribute
*attr
, const char *buf
, size_t count
)
1020 struct it87_data
*data
= dev_get_drvdata(dev
);
1024 if (kstrtoul(buf
, 10, &val
) < 0)
1027 /* Search for the nearest available frequency */
1028 for (i
= 0; i
< 7; i
++) {
1029 if (val
> (pwm_freq
[i
] + pwm_freq
[i
+1]) / 2)
1033 mutex_lock(&data
->update_lock
);
1034 data
->fan_ctl
= it87_read_value(data
, IT87_REG_FAN_CTL
) & 0x8f;
1035 data
->fan_ctl
|= i
<< 4;
1036 it87_write_value(data
, IT87_REG_FAN_CTL
, data
->fan_ctl
);
1037 mutex_unlock(&data
->update_lock
);
1041 static ssize_t
show_pwm_temp_map(struct device
*dev
,
1042 struct device_attribute
*attr
, char *buf
)
1044 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
1045 int nr
= sensor_attr
->index
;
1047 struct it87_data
*data
= it87_update_device(dev
);
1050 if (data
->pwm_temp_map
[nr
] < 3)
1051 map
= 1 << data
->pwm_temp_map
[nr
];
1053 map
= 0; /* Should never happen */
1054 return sprintf(buf
, "%d\n", map
);
1056 static ssize_t
set_pwm_temp_map(struct device
*dev
,
1057 struct device_attribute
*attr
, const char *buf
, size_t count
)
1059 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
1060 int nr
= sensor_attr
->index
;
1062 struct it87_data
*data
= dev_get_drvdata(dev
);
1067 * This check can go away if we ever support automatic fan speed
1068 * control on newer chips.
1070 if (!has_old_autopwm(data
)) {
1071 dev_notice(dev
, "Mapping change disabled for safety reasons\n");
1075 if (kstrtol(buf
, 10, &val
) < 0)
1092 mutex_lock(&data
->update_lock
);
1093 data
->pwm_temp_map
[nr
] = reg
;
1095 * If we are in automatic mode, write the temp mapping immediately;
1096 * otherwise, just store it for later use.
1098 if (data
->pwm_ctrl
[nr
] & 0x80) {
1099 data
->pwm_ctrl
[nr
] = 0x80 | data
->pwm_temp_map
[nr
];
1100 it87_write_value(data
, IT87_REG_PWM(nr
), data
->pwm_ctrl
[nr
]);
1102 mutex_unlock(&data
->update_lock
);
1106 static ssize_t
show_auto_pwm(struct device
*dev
,
1107 struct device_attribute
*attr
, char *buf
)
1109 struct it87_data
*data
= it87_update_device(dev
);
1110 struct sensor_device_attribute_2
*sensor_attr
=
1111 to_sensor_dev_attr_2(attr
);
1112 int nr
= sensor_attr
->nr
;
1113 int point
= sensor_attr
->index
;
1115 return sprintf(buf
, "%d\n",
1116 pwm_from_reg(data
, data
->auto_pwm
[nr
][point
]));
1119 static ssize_t
set_auto_pwm(struct device
*dev
,
1120 struct device_attribute
*attr
, const char *buf
, size_t count
)
1122 struct it87_data
*data
= dev_get_drvdata(dev
);
1123 struct sensor_device_attribute_2
*sensor_attr
=
1124 to_sensor_dev_attr_2(attr
);
1125 int nr
= sensor_attr
->nr
;
1126 int point
= sensor_attr
->index
;
1129 if (kstrtol(buf
, 10, &val
) < 0 || val
< 0 || val
> 255)
1132 mutex_lock(&data
->update_lock
);
1133 data
->auto_pwm
[nr
][point
] = pwm_to_reg(data
, val
);
1134 it87_write_value(data
, IT87_REG_AUTO_PWM(nr
, point
),
1135 data
->auto_pwm
[nr
][point
]);
1136 mutex_unlock(&data
->update_lock
);
1140 static ssize_t
show_auto_temp(struct device
*dev
,
1141 struct device_attribute
*attr
, char *buf
)
1143 struct it87_data
*data
= it87_update_device(dev
);
1144 struct sensor_device_attribute_2
*sensor_attr
=
1145 to_sensor_dev_attr_2(attr
);
1146 int nr
= sensor_attr
->nr
;
1147 int point
= sensor_attr
->index
;
1149 return sprintf(buf
, "%d\n", TEMP_FROM_REG(data
->auto_temp
[nr
][point
]));
1152 static ssize_t
set_auto_temp(struct device
*dev
,
1153 struct device_attribute
*attr
, const char *buf
, size_t count
)
1155 struct it87_data
*data
= dev_get_drvdata(dev
);
1156 struct sensor_device_attribute_2
*sensor_attr
=
1157 to_sensor_dev_attr_2(attr
);
1158 int nr
= sensor_attr
->nr
;
1159 int point
= sensor_attr
->index
;
1162 if (kstrtol(buf
, 10, &val
) < 0 || val
< -128000 || val
> 127000)
1165 mutex_lock(&data
->update_lock
);
1166 data
->auto_temp
[nr
][point
] = TEMP_TO_REG(val
);
1167 it87_write_value(data
, IT87_REG_AUTO_TEMP(nr
, point
),
1168 data
->auto_temp
[nr
][point
]);
1169 mutex_unlock(&data
->update_lock
);
1173 static SENSOR_DEVICE_ATTR_2(fan1_input
, S_IRUGO
, show_fan
, NULL
, 0, 0);
1174 static SENSOR_DEVICE_ATTR_2(fan1_min
, S_IRUGO
| S_IWUSR
, show_fan
, set_fan
,
1176 static SENSOR_DEVICE_ATTR(fan1_div
, S_IRUGO
| S_IWUSR
, show_fan_div
,
1179 static SENSOR_DEVICE_ATTR_2(fan2_input
, S_IRUGO
, show_fan
, NULL
, 1, 0);
1180 static SENSOR_DEVICE_ATTR_2(fan2_min
, S_IRUGO
| S_IWUSR
, show_fan
, set_fan
,
1182 static SENSOR_DEVICE_ATTR(fan2_div
, S_IRUGO
| S_IWUSR
, show_fan_div
,
1185 static SENSOR_DEVICE_ATTR_2(fan3_input
, S_IRUGO
, show_fan
, NULL
, 2, 0);
1186 static SENSOR_DEVICE_ATTR_2(fan3_min
, S_IRUGO
| S_IWUSR
, show_fan
, set_fan
,
1188 static SENSOR_DEVICE_ATTR(fan3_div
, S_IRUGO
| S_IWUSR
, show_fan_div
,
1191 static SENSOR_DEVICE_ATTR_2(fan4_input
, S_IRUGO
, show_fan
, NULL
, 3, 0);
1192 static SENSOR_DEVICE_ATTR_2(fan4_min
, S_IRUGO
| S_IWUSR
, show_fan
, set_fan
,
1195 static SENSOR_DEVICE_ATTR_2(fan5_input
, S_IRUGO
, show_fan
, NULL
, 4, 0);
1196 static SENSOR_DEVICE_ATTR_2(fan5_min
, S_IRUGO
| S_IWUSR
, show_fan
, set_fan
,
1199 static SENSOR_DEVICE_ATTR(pwm1_enable
, S_IRUGO
| S_IWUSR
,
1200 show_pwm_enable
, set_pwm_enable
, 0);
1201 static SENSOR_DEVICE_ATTR(pwm1
, S_IRUGO
| S_IWUSR
, show_pwm
, set_pwm
, 0);
1202 static DEVICE_ATTR(pwm1_freq
, S_IRUGO
| S_IWUSR
, show_pwm_freq
, set_pwm_freq
);
1203 static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp
, S_IRUGO
| S_IWUSR
,
1204 show_pwm_temp_map
, set_pwm_temp_map
, 0);
1205 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm
, S_IRUGO
| S_IWUSR
,
1206 show_auto_pwm
, set_auto_pwm
, 0, 0);
1207 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm
, S_IRUGO
| S_IWUSR
,
1208 show_auto_pwm
, set_auto_pwm
, 0, 1);
1209 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm
, S_IRUGO
| S_IWUSR
,
1210 show_auto_pwm
, set_auto_pwm
, 0, 2);
1211 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm
, S_IRUGO
,
1212 show_auto_pwm
, NULL
, 0, 3);
1213 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp
, S_IRUGO
| S_IWUSR
,
1214 show_auto_temp
, set_auto_temp
, 0, 1);
1215 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst
, S_IRUGO
| S_IWUSR
,
1216 show_auto_temp
, set_auto_temp
, 0, 0);
1217 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp
, S_IRUGO
| S_IWUSR
,
1218 show_auto_temp
, set_auto_temp
, 0, 2);
1219 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp
, S_IRUGO
| S_IWUSR
,
1220 show_auto_temp
, set_auto_temp
, 0, 3);
1221 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp
, S_IRUGO
| S_IWUSR
,
1222 show_auto_temp
, set_auto_temp
, 0, 4);
1224 static SENSOR_DEVICE_ATTR(pwm2_enable
, S_IRUGO
| S_IWUSR
,
1225 show_pwm_enable
, set_pwm_enable
, 1);
1226 static SENSOR_DEVICE_ATTR(pwm2
, S_IRUGO
| S_IWUSR
, show_pwm
, set_pwm
, 1);
1227 static DEVICE_ATTR(pwm2_freq
, S_IRUGO
, show_pwm_freq
, NULL
);
1228 static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp
, S_IRUGO
| S_IWUSR
,
1229 show_pwm_temp_map
, set_pwm_temp_map
, 1);
1230 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm
, S_IRUGO
| S_IWUSR
,
1231 show_auto_pwm
, set_auto_pwm
, 1, 0);
1232 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm
, S_IRUGO
| S_IWUSR
,
1233 show_auto_pwm
, set_auto_pwm
, 1, 1);
1234 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm
, S_IRUGO
| S_IWUSR
,
1235 show_auto_pwm
, set_auto_pwm
, 1, 2);
1236 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm
, S_IRUGO
,
1237 show_auto_pwm
, NULL
, 1, 3);
1238 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp
, S_IRUGO
| S_IWUSR
,
1239 show_auto_temp
, set_auto_temp
, 1, 1);
1240 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst
, S_IRUGO
| S_IWUSR
,
1241 show_auto_temp
, set_auto_temp
, 1, 0);
1242 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp
, S_IRUGO
| S_IWUSR
,
1243 show_auto_temp
, set_auto_temp
, 1, 2);
1244 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp
, S_IRUGO
| S_IWUSR
,
1245 show_auto_temp
, set_auto_temp
, 1, 3);
1246 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp
, S_IRUGO
| S_IWUSR
,
1247 show_auto_temp
, set_auto_temp
, 1, 4);
1249 static SENSOR_DEVICE_ATTR(pwm3_enable
, S_IRUGO
| S_IWUSR
,
1250 show_pwm_enable
, set_pwm_enable
, 2);
1251 static SENSOR_DEVICE_ATTR(pwm3
, S_IRUGO
| S_IWUSR
, show_pwm
, set_pwm
, 2);
1252 static DEVICE_ATTR(pwm3_freq
, S_IRUGO
, show_pwm_freq
, NULL
);
1253 static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp
, S_IRUGO
| S_IWUSR
,
1254 show_pwm_temp_map
, set_pwm_temp_map
, 2);
1255 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm
, S_IRUGO
| S_IWUSR
,
1256 show_auto_pwm
, set_auto_pwm
, 2, 0);
1257 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm
, S_IRUGO
| S_IWUSR
,
1258 show_auto_pwm
, set_auto_pwm
, 2, 1);
1259 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm
, S_IRUGO
| S_IWUSR
,
1260 show_auto_pwm
, set_auto_pwm
, 2, 2);
1261 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm
, S_IRUGO
,
1262 show_auto_pwm
, NULL
, 2, 3);
1263 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp
, S_IRUGO
| S_IWUSR
,
1264 show_auto_temp
, set_auto_temp
, 2, 1);
1265 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst
, S_IRUGO
| S_IWUSR
,
1266 show_auto_temp
, set_auto_temp
, 2, 0);
1267 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp
, S_IRUGO
| S_IWUSR
,
1268 show_auto_temp
, set_auto_temp
, 2, 2);
1269 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp
, S_IRUGO
| S_IWUSR
,
1270 show_auto_temp
, set_auto_temp
, 2, 3);
1271 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp
, S_IRUGO
| S_IWUSR
,
1272 show_auto_temp
, set_auto_temp
, 2, 4);
1275 static ssize_t
show_alarms(struct device
*dev
, struct device_attribute
*attr
,
1278 struct it87_data
*data
= it87_update_device(dev
);
1279 return sprintf(buf
, "%u\n", data
->alarms
);
1281 static DEVICE_ATTR(alarms
, S_IRUGO
, show_alarms
, NULL
);
1283 static ssize_t
show_alarm(struct device
*dev
, struct device_attribute
*attr
,
1286 int bitnr
= to_sensor_dev_attr(attr
)->index
;
1287 struct it87_data
*data
= it87_update_device(dev
);
1288 return sprintf(buf
, "%u\n", (data
->alarms
>> bitnr
) & 1);
1291 static ssize_t
clear_intrusion(struct device
*dev
, struct device_attribute
1292 *attr
, const char *buf
, size_t count
)
1294 struct it87_data
*data
= dev_get_drvdata(dev
);
1298 if (kstrtol(buf
, 10, &val
) < 0 || val
!= 0)
1301 mutex_lock(&data
->update_lock
);
1302 config
= it87_read_value(data
, IT87_REG_CONFIG
);
1307 it87_write_value(data
, IT87_REG_CONFIG
, config
);
1308 /* Invalidate cache to force re-read */
1311 mutex_unlock(&data
->update_lock
);
1316 static SENSOR_DEVICE_ATTR(in0_alarm
, S_IRUGO
, show_alarm
, NULL
, 8);
1317 static SENSOR_DEVICE_ATTR(in1_alarm
, S_IRUGO
, show_alarm
, NULL
, 9);
1318 static SENSOR_DEVICE_ATTR(in2_alarm
, S_IRUGO
, show_alarm
, NULL
, 10);
1319 static SENSOR_DEVICE_ATTR(in3_alarm
, S_IRUGO
, show_alarm
, NULL
, 11);
1320 static SENSOR_DEVICE_ATTR(in4_alarm
, S_IRUGO
, show_alarm
, NULL
, 12);
1321 static SENSOR_DEVICE_ATTR(in5_alarm
, S_IRUGO
, show_alarm
, NULL
, 13);
1322 static SENSOR_DEVICE_ATTR(in6_alarm
, S_IRUGO
, show_alarm
, NULL
, 14);
1323 static SENSOR_DEVICE_ATTR(in7_alarm
, S_IRUGO
, show_alarm
, NULL
, 15);
1324 static SENSOR_DEVICE_ATTR(fan1_alarm
, S_IRUGO
, show_alarm
, NULL
, 0);
1325 static SENSOR_DEVICE_ATTR(fan2_alarm
, S_IRUGO
, show_alarm
, NULL
, 1);
1326 static SENSOR_DEVICE_ATTR(fan3_alarm
, S_IRUGO
, show_alarm
, NULL
, 2);
1327 static SENSOR_DEVICE_ATTR(fan4_alarm
, S_IRUGO
, show_alarm
, NULL
, 3);
1328 static SENSOR_DEVICE_ATTR(fan5_alarm
, S_IRUGO
, show_alarm
, NULL
, 6);
1329 static SENSOR_DEVICE_ATTR(temp1_alarm
, S_IRUGO
, show_alarm
, NULL
, 16);
1330 static SENSOR_DEVICE_ATTR(temp2_alarm
, S_IRUGO
, show_alarm
, NULL
, 17);
1331 static SENSOR_DEVICE_ATTR(temp3_alarm
, S_IRUGO
, show_alarm
, NULL
, 18);
1332 static SENSOR_DEVICE_ATTR(intrusion0_alarm
, S_IRUGO
| S_IWUSR
,
1333 show_alarm
, clear_intrusion
, 4);
1335 static ssize_t
show_beep(struct device
*dev
, struct device_attribute
*attr
,
1338 int bitnr
= to_sensor_dev_attr(attr
)->index
;
1339 struct it87_data
*data
= it87_update_device(dev
);
1340 return sprintf(buf
, "%u\n", (data
->beeps
>> bitnr
) & 1);
1342 static ssize_t
set_beep(struct device
*dev
, struct device_attribute
*attr
,
1343 const char *buf
, size_t count
)
1345 int bitnr
= to_sensor_dev_attr(attr
)->index
;
1346 struct it87_data
*data
= dev_get_drvdata(dev
);
1349 if (kstrtol(buf
, 10, &val
) < 0
1350 || (val
!= 0 && val
!= 1))
1353 mutex_lock(&data
->update_lock
);
1354 data
->beeps
= it87_read_value(data
, IT87_REG_BEEP_ENABLE
);
1356 data
->beeps
|= (1 << bitnr
);
1358 data
->beeps
&= ~(1 << bitnr
);
1359 it87_write_value(data
, IT87_REG_BEEP_ENABLE
, data
->beeps
);
1360 mutex_unlock(&data
->update_lock
);
1364 static SENSOR_DEVICE_ATTR(in0_beep
, S_IRUGO
| S_IWUSR
,
1365 show_beep
, set_beep
, 1);
1366 static SENSOR_DEVICE_ATTR(in1_beep
, S_IRUGO
, show_beep
, NULL
, 1);
1367 static SENSOR_DEVICE_ATTR(in2_beep
, S_IRUGO
, show_beep
, NULL
, 1);
1368 static SENSOR_DEVICE_ATTR(in3_beep
, S_IRUGO
, show_beep
, NULL
, 1);
1369 static SENSOR_DEVICE_ATTR(in4_beep
, S_IRUGO
, show_beep
, NULL
, 1);
1370 static SENSOR_DEVICE_ATTR(in5_beep
, S_IRUGO
, show_beep
, NULL
, 1);
1371 static SENSOR_DEVICE_ATTR(in6_beep
, S_IRUGO
, show_beep
, NULL
, 1);
1372 static SENSOR_DEVICE_ATTR(in7_beep
, S_IRUGO
, show_beep
, NULL
, 1);
1373 /* fanX_beep writability is set later */
1374 static SENSOR_DEVICE_ATTR(fan1_beep
, S_IRUGO
, show_beep
, set_beep
, 0);
1375 static SENSOR_DEVICE_ATTR(fan2_beep
, S_IRUGO
, show_beep
, set_beep
, 0);
1376 static SENSOR_DEVICE_ATTR(fan3_beep
, S_IRUGO
, show_beep
, set_beep
, 0);
1377 static SENSOR_DEVICE_ATTR(fan4_beep
, S_IRUGO
, show_beep
, set_beep
, 0);
1378 static SENSOR_DEVICE_ATTR(fan5_beep
, S_IRUGO
, show_beep
, set_beep
, 0);
1379 static SENSOR_DEVICE_ATTR(temp1_beep
, S_IRUGO
| S_IWUSR
,
1380 show_beep
, set_beep
, 2);
1381 static SENSOR_DEVICE_ATTR(temp2_beep
, S_IRUGO
, show_beep
, NULL
, 2);
1382 static SENSOR_DEVICE_ATTR(temp3_beep
, S_IRUGO
, show_beep
, NULL
, 2);
1384 static ssize_t
show_vrm_reg(struct device
*dev
, struct device_attribute
*attr
,
1387 struct it87_data
*data
= dev_get_drvdata(dev
);
1388 return sprintf(buf
, "%u\n", data
->vrm
);
1390 static ssize_t
store_vrm_reg(struct device
*dev
, struct device_attribute
*attr
,
1391 const char *buf
, size_t count
)
1393 struct it87_data
*data
= dev_get_drvdata(dev
);
1396 if (kstrtoul(buf
, 10, &val
) < 0)
1403 static DEVICE_ATTR(vrm
, S_IRUGO
| S_IWUSR
, show_vrm_reg
, store_vrm_reg
);
1405 static ssize_t
show_vid_reg(struct device
*dev
, struct device_attribute
*attr
,
1408 struct it87_data
*data
= it87_update_device(dev
);
1409 return sprintf(buf
, "%ld\n", (long) vid_from_reg(data
->vid
, data
->vrm
));
1411 static DEVICE_ATTR(cpu0_vid
, S_IRUGO
, show_vid_reg
, NULL
);
1413 static ssize_t
show_label(struct device
*dev
, struct device_attribute
*attr
,
1416 static const char * const labels
[] = {
1421 static const char * const labels_it8721
[] = {
1426 struct it87_data
*data
= dev_get_drvdata(dev
);
1427 int nr
= to_sensor_dev_attr(attr
)->index
;
1429 return sprintf(buf
, "%s\n", has_12mv_adc(data
) ? labels_it8721
[nr
]
1432 static SENSOR_DEVICE_ATTR(in3_label
, S_IRUGO
, show_label
, NULL
, 0);
1433 static SENSOR_DEVICE_ATTR(in7_label
, S_IRUGO
, show_label
, NULL
, 1);
1434 static SENSOR_DEVICE_ATTR(in8_label
, S_IRUGO
, show_label
, NULL
, 2);
1435 /* special AVCC3 IT8603E in9 */
1436 static SENSOR_DEVICE_ATTR(in9_label
, S_IRUGO
, show_label
, NULL
, 0);
1438 static ssize_t
show_name(struct device
*dev
, struct device_attribute
1439 *devattr
, char *buf
)
1441 struct it87_data
*data
= dev_get_drvdata(dev
);
1442 return sprintf(buf
, "%s\n", data
->name
);
1444 static DEVICE_ATTR(name
, S_IRUGO
, show_name
, NULL
);
1446 static struct attribute
*it87_attributes_in
[10][5] = {
1448 &sensor_dev_attr_in0_input
.dev_attr
.attr
,
1449 &sensor_dev_attr_in0_min
.dev_attr
.attr
,
1450 &sensor_dev_attr_in0_max
.dev_attr
.attr
,
1451 &sensor_dev_attr_in0_alarm
.dev_attr
.attr
,
1454 &sensor_dev_attr_in1_input
.dev_attr
.attr
,
1455 &sensor_dev_attr_in1_min
.dev_attr
.attr
,
1456 &sensor_dev_attr_in1_max
.dev_attr
.attr
,
1457 &sensor_dev_attr_in1_alarm
.dev_attr
.attr
,
1460 &sensor_dev_attr_in2_input
.dev_attr
.attr
,
1461 &sensor_dev_attr_in2_min
.dev_attr
.attr
,
1462 &sensor_dev_attr_in2_max
.dev_attr
.attr
,
1463 &sensor_dev_attr_in2_alarm
.dev_attr
.attr
,
1466 &sensor_dev_attr_in3_input
.dev_attr
.attr
,
1467 &sensor_dev_attr_in3_min
.dev_attr
.attr
,
1468 &sensor_dev_attr_in3_max
.dev_attr
.attr
,
1469 &sensor_dev_attr_in3_alarm
.dev_attr
.attr
,
1472 &sensor_dev_attr_in4_input
.dev_attr
.attr
,
1473 &sensor_dev_attr_in4_min
.dev_attr
.attr
,
1474 &sensor_dev_attr_in4_max
.dev_attr
.attr
,
1475 &sensor_dev_attr_in4_alarm
.dev_attr
.attr
,
1478 &sensor_dev_attr_in5_input
.dev_attr
.attr
,
1479 &sensor_dev_attr_in5_min
.dev_attr
.attr
,
1480 &sensor_dev_attr_in5_max
.dev_attr
.attr
,
1481 &sensor_dev_attr_in5_alarm
.dev_attr
.attr
,
1484 &sensor_dev_attr_in6_input
.dev_attr
.attr
,
1485 &sensor_dev_attr_in6_min
.dev_attr
.attr
,
1486 &sensor_dev_attr_in6_max
.dev_attr
.attr
,
1487 &sensor_dev_attr_in6_alarm
.dev_attr
.attr
,
1490 &sensor_dev_attr_in7_input
.dev_attr
.attr
,
1491 &sensor_dev_attr_in7_min
.dev_attr
.attr
,
1492 &sensor_dev_attr_in7_max
.dev_attr
.attr
,
1493 &sensor_dev_attr_in7_alarm
.dev_attr
.attr
,
1496 &sensor_dev_attr_in8_input
.dev_attr
.attr
,
1499 &sensor_dev_attr_in9_input
.dev_attr
.attr
,
1503 static const struct attribute_group it87_group_in
[10] = {
1504 { .attrs
= it87_attributes_in
[0] },
1505 { .attrs
= it87_attributes_in
[1] },
1506 { .attrs
= it87_attributes_in
[2] },
1507 { .attrs
= it87_attributes_in
[3] },
1508 { .attrs
= it87_attributes_in
[4] },
1509 { .attrs
= it87_attributes_in
[5] },
1510 { .attrs
= it87_attributes_in
[6] },
1511 { .attrs
= it87_attributes_in
[7] },
1512 { .attrs
= it87_attributes_in
[8] },
1513 { .attrs
= it87_attributes_in
[9] },
1516 static struct attribute
*it87_attributes_temp
[3][6] = {
1518 &sensor_dev_attr_temp1_input
.dev_attr
.attr
,
1519 &sensor_dev_attr_temp1_max
.dev_attr
.attr
,
1520 &sensor_dev_attr_temp1_min
.dev_attr
.attr
,
1521 &sensor_dev_attr_temp1_type
.dev_attr
.attr
,
1522 &sensor_dev_attr_temp1_alarm
.dev_attr
.attr
,
1525 &sensor_dev_attr_temp2_input
.dev_attr
.attr
,
1526 &sensor_dev_attr_temp2_max
.dev_attr
.attr
,
1527 &sensor_dev_attr_temp2_min
.dev_attr
.attr
,
1528 &sensor_dev_attr_temp2_type
.dev_attr
.attr
,
1529 &sensor_dev_attr_temp2_alarm
.dev_attr
.attr
,
1532 &sensor_dev_attr_temp3_input
.dev_attr
.attr
,
1533 &sensor_dev_attr_temp3_max
.dev_attr
.attr
,
1534 &sensor_dev_attr_temp3_min
.dev_attr
.attr
,
1535 &sensor_dev_attr_temp3_type
.dev_attr
.attr
,
1536 &sensor_dev_attr_temp3_alarm
.dev_attr
.attr
,
1540 static const struct attribute_group it87_group_temp
[3] = {
1541 { .attrs
= it87_attributes_temp
[0] },
1542 { .attrs
= it87_attributes_temp
[1] },
1543 { .attrs
= it87_attributes_temp
[2] },
1546 static struct attribute
*it87_attributes_temp_offset
[] = {
1547 &sensor_dev_attr_temp1_offset
.dev_attr
.attr
,
1548 &sensor_dev_attr_temp2_offset
.dev_attr
.attr
,
1549 &sensor_dev_attr_temp3_offset
.dev_attr
.attr
,
1552 static struct attribute
*it87_attributes
[] = {
1553 &dev_attr_alarms
.attr
,
1554 &sensor_dev_attr_intrusion0_alarm
.dev_attr
.attr
,
1555 &dev_attr_name
.attr
,
1559 static const struct attribute_group it87_group
= {
1560 .attrs
= it87_attributes
,
1563 static struct attribute
*it87_attributes_in_beep
[] = {
1564 &sensor_dev_attr_in0_beep
.dev_attr
.attr
,
1565 &sensor_dev_attr_in1_beep
.dev_attr
.attr
,
1566 &sensor_dev_attr_in2_beep
.dev_attr
.attr
,
1567 &sensor_dev_attr_in3_beep
.dev_attr
.attr
,
1568 &sensor_dev_attr_in4_beep
.dev_attr
.attr
,
1569 &sensor_dev_attr_in5_beep
.dev_attr
.attr
,
1570 &sensor_dev_attr_in6_beep
.dev_attr
.attr
,
1571 &sensor_dev_attr_in7_beep
.dev_attr
.attr
,
1576 static struct attribute
*it87_attributes_temp_beep
[] = {
1577 &sensor_dev_attr_temp1_beep
.dev_attr
.attr
,
1578 &sensor_dev_attr_temp2_beep
.dev_attr
.attr
,
1579 &sensor_dev_attr_temp3_beep
.dev_attr
.attr
,
1582 static struct attribute
*it87_attributes_fan
[5][3+1] = { {
1583 &sensor_dev_attr_fan1_input
.dev_attr
.attr
,
1584 &sensor_dev_attr_fan1_min
.dev_attr
.attr
,
1585 &sensor_dev_attr_fan1_alarm
.dev_attr
.attr
,
1588 &sensor_dev_attr_fan2_input
.dev_attr
.attr
,
1589 &sensor_dev_attr_fan2_min
.dev_attr
.attr
,
1590 &sensor_dev_attr_fan2_alarm
.dev_attr
.attr
,
1593 &sensor_dev_attr_fan3_input
.dev_attr
.attr
,
1594 &sensor_dev_attr_fan3_min
.dev_attr
.attr
,
1595 &sensor_dev_attr_fan3_alarm
.dev_attr
.attr
,
1598 &sensor_dev_attr_fan4_input
.dev_attr
.attr
,
1599 &sensor_dev_attr_fan4_min
.dev_attr
.attr
,
1600 &sensor_dev_attr_fan4_alarm
.dev_attr
.attr
,
1603 &sensor_dev_attr_fan5_input
.dev_attr
.attr
,
1604 &sensor_dev_attr_fan5_min
.dev_attr
.attr
,
1605 &sensor_dev_attr_fan5_alarm
.dev_attr
.attr
,
1609 static const struct attribute_group it87_group_fan
[5] = {
1610 { .attrs
= it87_attributes_fan
[0] },
1611 { .attrs
= it87_attributes_fan
[1] },
1612 { .attrs
= it87_attributes_fan
[2] },
1613 { .attrs
= it87_attributes_fan
[3] },
1614 { .attrs
= it87_attributes_fan
[4] },
1617 static const struct attribute
*it87_attributes_fan_div
[] = {
1618 &sensor_dev_attr_fan1_div
.dev_attr
.attr
,
1619 &sensor_dev_attr_fan2_div
.dev_attr
.attr
,
1620 &sensor_dev_attr_fan3_div
.dev_attr
.attr
,
1623 static struct attribute
*it87_attributes_pwm
[3][4+1] = { {
1624 &sensor_dev_attr_pwm1_enable
.dev_attr
.attr
,
1625 &sensor_dev_attr_pwm1
.dev_attr
.attr
,
1626 &dev_attr_pwm1_freq
.attr
,
1627 &sensor_dev_attr_pwm1_auto_channels_temp
.dev_attr
.attr
,
1630 &sensor_dev_attr_pwm2_enable
.dev_attr
.attr
,
1631 &sensor_dev_attr_pwm2
.dev_attr
.attr
,
1632 &dev_attr_pwm2_freq
.attr
,
1633 &sensor_dev_attr_pwm2_auto_channels_temp
.dev_attr
.attr
,
1636 &sensor_dev_attr_pwm3_enable
.dev_attr
.attr
,
1637 &sensor_dev_attr_pwm3
.dev_attr
.attr
,
1638 &dev_attr_pwm3_freq
.attr
,
1639 &sensor_dev_attr_pwm3_auto_channels_temp
.dev_attr
.attr
,
1643 static const struct attribute_group it87_group_pwm
[3] = {
1644 { .attrs
= it87_attributes_pwm
[0] },
1645 { .attrs
= it87_attributes_pwm
[1] },
1646 { .attrs
= it87_attributes_pwm
[2] },
1649 static struct attribute
*it87_attributes_autopwm
[3][9+1] = { {
1650 &sensor_dev_attr_pwm1_auto_point1_pwm
.dev_attr
.attr
,
1651 &sensor_dev_attr_pwm1_auto_point2_pwm
.dev_attr
.attr
,
1652 &sensor_dev_attr_pwm1_auto_point3_pwm
.dev_attr
.attr
,
1653 &sensor_dev_attr_pwm1_auto_point4_pwm
.dev_attr
.attr
,
1654 &sensor_dev_attr_pwm1_auto_point1_temp
.dev_attr
.attr
,
1655 &sensor_dev_attr_pwm1_auto_point1_temp_hyst
.dev_attr
.attr
,
1656 &sensor_dev_attr_pwm1_auto_point2_temp
.dev_attr
.attr
,
1657 &sensor_dev_attr_pwm1_auto_point3_temp
.dev_attr
.attr
,
1658 &sensor_dev_attr_pwm1_auto_point4_temp
.dev_attr
.attr
,
1661 &sensor_dev_attr_pwm2_auto_point1_pwm
.dev_attr
.attr
,
1662 &sensor_dev_attr_pwm2_auto_point2_pwm
.dev_attr
.attr
,
1663 &sensor_dev_attr_pwm2_auto_point3_pwm
.dev_attr
.attr
,
1664 &sensor_dev_attr_pwm2_auto_point4_pwm
.dev_attr
.attr
,
1665 &sensor_dev_attr_pwm2_auto_point1_temp
.dev_attr
.attr
,
1666 &sensor_dev_attr_pwm2_auto_point1_temp_hyst
.dev_attr
.attr
,
1667 &sensor_dev_attr_pwm2_auto_point2_temp
.dev_attr
.attr
,
1668 &sensor_dev_attr_pwm2_auto_point3_temp
.dev_attr
.attr
,
1669 &sensor_dev_attr_pwm2_auto_point4_temp
.dev_attr
.attr
,
1672 &sensor_dev_attr_pwm3_auto_point1_pwm
.dev_attr
.attr
,
1673 &sensor_dev_attr_pwm3_auto_point2_pwm
.dev_attr
.attr
,
1674 &sensor_dev_attr_pwm3_auto_point3_pwm
.dev_attr
.attr
,
1675 &sensor_dev_attr_pwm3_auto_point4_pwm
.dev_attr
.attr
,
1676 &sensor_dev_attr_pwm3_auto_point1_temp
.dev_attr
.attr
,
1677 &sensor_dev_attr_pwm3_auto_point1_temp_hyst
.dev_attr
.attr
,
1678 &sensor_dev_attr_pwm3_auto_point2_temp
.dev_attr
.attr
,
1679 &sensor_dev_attr_pwm3_auto_point3_temp
.dev_attr
.attr
,
1680 &sensor_dev_attr_pwm3_auto_point4_temp
.dev_attr
.attr
,
1684 static const struct attribute_group it87_group_autopwm
[3] = {
1685 { .attrs
= it87_attributes_autopwm
[0] },
1686 { .attrs
= it87_attributes_autopwm
[1] },
1687 { .attrs
= it87_attributes_autopwm
[2] },
1690 static struct attribute
*it87_attributes_fan_beep
[] = {
1691 &sensor_dev_attr_fan1_beep
.dev_attr
.attr
,
1692 &sensor_dev_attr_fan2_beep
.dev_attr
.attr
,
1693 &sensor_dev_attr_fan3_beep
.dev_attr
.attr
,
1694 &sensor_dev_attr_fan4_beep
.dev_attr
.attr
,
1695 &sensor_dev_attr_fan5_beep
.dev_attr
.attr
,
1698 static struct attribute
*it87_attributes_vid
[] = {
1700 &dev_attr_cpu0_vid
.attr
,
1704 static const struct attribute_group it87_group_vid
= {
1705 .attrs
= it87_attributes_vid
,
1708 static struct attribute
*it87_attributes_label
[] = {
1709 &sensor_dev_attr_in3_label
.dev_attr
.attr
,
1710 &sensor_dev_attr_in7_label
.dev_attr
.attr
,
1711 &sensor_dev_attr_in8_label
.dev_attr
.attr
,
1712 &sensor_dev_attr_in9_label
.dev_attr
.attr
,
1716 static const struct attribute_group it87_group_label
= {
1717 .attrs
= it87_attributes_label
,
1720 /* SuperIO detection - will change isa_address if a chip is found */
1721 static int __init
it87_find(unsigned short *address
,
1722 struct it87_sio_data
*sio_data
)
1726 const char *board_vendor
, *board_name
;
1728 err
= superio_enter();
1733 chip_type
= force_id
? force_id
: superio_inw(DEVID
);
1735 switch (chip_type
) {
1737 sio_data
->type
= it87
;
1740 sio_data
->type
= it8712
;
1744 sio_data
->type
= it8716
;
1747 sio_data
->type
= it8718
;
1750 sio_data
->type
= it8720
;
1753 sio_data
->type
= it8721
;
1756 sio_data
->type
= it8728
;
1759 sio_data
->type
= it8771
;
1762 sio_data
->type
= it8772
;
1765 sio_data
->type
= it8782
;
1768 sio_data
->type
= it8783
;
1772 sio_data
->type
= it8603
;
1774 case 0xffff: /* No device at all */
1777 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type
);
1781 superio_select(PME
);
1782 if (!(superio_inb(IT87_ACT_REG
) & 0x01)) {
1783 pr_info("Device not activated, skipping\n");
1787 *address
= superio_inw(IT87_BASE_REG
) & ~(IT87_EXTENT
- 1);
1788 if (*address
== 0) {
1789 pr_info("Base address not set, skipping\n");
1794 sio_data
->revision
= superio_inb(DEVREV
) & 0x0f;
1795 pr_info("Found IT%04x%c chip at 0x%x, revision %d\n", chip_type
,
1796 chip_type
== 0x8771 || chip_type
== 0x8772 ||
1797 chip_type
== 0x8603 ? 'E' : 'F', *address
,
1798 sio_data
->revision
);
1800 /* in8 (Vbat) is always internal */
1801 sio_data
->internal
= (1 << 2);
1802 /* Only the IT8603E has in9 */
1803 if (sio_data
->type
!= it8603
)
1804 sio_data
->skip_in
|= (1 << 9);
1806 /* Read GPIO config and VID value from LDN 7 (GPIO) */
1807 if (sio_data
->type
== it87
) {
1808 /* The IT8705F doesn't have VID pins at all */
1809 sio_data
->skip_vid
= 1;
1811 /* The IT8705F has a different LD number for GPIO */
1813 sio_data
->beep_pin
= superio_inb(IT87_SIO_BEEP_PIN_REG
) & 0x3f;
1814 } else if (sio_data
->type
== it8783
) {
1815 int reg25
, reg27
, reg2a
, reg2c
, regef
;
1817 sio_data
->skip_vid
= 1; /* No VID */
1819 superio_select(GPIO
);
1821 reg25
= superio_inb(IT87_SIO_GPIO1_REG
);
1822 reg27
= superio_inb(IT87_SIO_GPIO3_REG
);
1823 reg2a
= superio_inb(IT87_SIO_PINX1_REG
);
1824 reg2c
= superio_inb(IT87_SIO_PINX2_REG
);
1825 regef
= superio_inb(IT87_SIO_SPI_REG
);
1827 /* Check if fan3 is there or not */
1828 if ((reg27
& (1 << 0)) || !(reg2c
& (1 << 2)))
1829 sio_data
->skip_fan
|= (1 << 2);
1830 if ((reg25
& (1 << 4))
1831 || (!(reg2a
& (1 << 1)) && (regef
& (1 << 0))))
1832 sio_data
->skip_pwm
|= (1 << 2);
1834 /* Check if fan2 is there or not */
1835 if (reg27
& (1 << 7))
1836 sio_data
->skip_fan
|= (1 << 1);
1837 if (reg27
& (1 << 3))
1838 sio_data
->skip_pwm
|= (1 << 1);
1841 if ((reg27
& (1 << 0)) || (reg2c
& (1 << 2)))
1842 sio_data
->skip_in
|= (1 << 5); /* No VIN5 */
1845 if (reg27
& (1 << 1))
1846 sio_data
->skip_in
|= (1 << 6); /* No VIN6 */
1850 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
1852 if (reg27
& (1 << 2)) {
1854 * The data sheet is a bit unclear regarding the
1855 * internal voltage divider for VCCH5V. It says
1856 * "This bit enables and switches VIN7 (pin 91) to the
1857 * internal voltage divider for VCCH5V".
1858 * This is different to other chips, where the internal
1859 * voltage divider would connect VIN7 to an internal
1860 * voltage source. Maybe that is the case here as well.
1862 * Since we don't know for sure, re-route it if that is
1863 * not the case, and ask the user to report if the
1864 * resulting voltage is sane.
1866 if (!(reg2c
& (1 << 1))) {
1868 superio_outb(IT87_SIO_PINX2_REG
, reg2c
);
1869 pr_notice("Routing internal VCCH5V to in7.\n");
1871 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
1872 pr_notice("Please report if it displays a reasonable voltage.\n");
1875 if (reg2c
& (1 << 0))
1876 sio_data
->internal
|= (1 << 0);
1877 if (reg2c
& (1 << 1))
1878 sio_data
->internal
|= (1 << 1);
1880 sio_data
->beep_pin
= superio_inb(IT87_SIO_BEEP_PIN_REG
) & 0x3f;
1881 } else if (sio_data
->type
== it8603
) {
1884 sio_data
->skip_vid
= 1; /* No VID */
1885 superio_select(GPIO
);
1887 reg27
= superio_inb(IT87_SIO_GPIO3_REG
);
1889 /* Check if fan3 is there or not */
1890 if (reg27
& (1 << 6))
1891 sio_data
->skip_pwm
|= (1 << 2);
1892 if (reg27
& (1 << 7))
1893 sio_data
->skip_fan
|= (1 << 2);
1895 /* Check if fan2 is there or not */
1896 reg29
= superio_inb(IT87_SIO_GPIO5_REG
);
1897 if (reg29
& (1 << 1))
1898 sio_data
->skip_pwm
|= (1 << 1);
1899 if (reg29
& (1 << 2))
1900 sio_data
->skip_fan
|= (1 << 1);
1902 sio_data
->skip_in
|= (1 << 5); /* No VIN5 */
1903 sio_data
->skip_in
|= (1 << 6); /* No VIN6 */
1906 sio_data
->skip_pwm
|= (1 << 3);
1907 sio_data
->skip_fan
|= (1 << 3);
1909 sio_data
->internal
|= (1 << 1); /* in7 is VSB */
1910 sio_data
->internal
|= (1 << 3); /* in9 is AVCC */
1912 sio_data
->beep_pin
= superio_inb(IT87_SIO_BEEP_PIN_REG
) & 0x3f;
1917 superio_select(GPIO
);
1919 reg
= superio_inb(IT87_SIO_GPIO3_REG
);
1920 if (sio_data
->type
== it8721
|| sio_data
->type
== it8728
||
1921 sio_data
->type
== it8771
|| sio_data
->type
== it8772
||
1922 sio_data
->type
== it8782
) {
1924 * IT8721F/IT8758E, and IT8782F don't have VID pins
1925 * at all, not sure about the IT8728F and compatibles.
1927 sio_data
->skip_vid
= 1;
1929 /* We need at least 4 VID pins */
1931 pr_info("VID is disabled (pins used for GPIO)\n");
1932 sio_data
->skip_vid
= 1;
1936 /* Check if fan3 is there or not */
1938 sio_data
->skip_pwm
|= (1 << 2);
1940 sio_data
->skip_fan
|= (1 << 2);
1942 /* Check if fan2 is there or not */
1943 reg
= superio_inb(IT87_SIO_GPIO5_REG
);
1945 sio_data
->skip_pwm
|= (1 << 1);
1947 sio_data
->skip_fan
|= (1 << 1);
1949 if ((sio_data
->type
== it8718
|| sio_data
->type
== it8720
)
1950 && !(sio_data
->skip_vid
))
1951 sio_data
->vid_value
= superio_inb(IT87_SIO_VID_REG
);
1953 reg
= superio_inb(IT87_SIO_PINX2_REG
);
1955 uart6
= sio_data
->type
== it8782
&& (reg
& (1 << 2));
1958 * The IT8720F has no VIN7 pin, so VCCH should always be
1959 * routed internally to VIN7 with an internal divider.
1960 * Curiously, there still is a configuration bit to control
1961 * this, which means it can be set incorrectly. And even
1962 * more curiously, many boards out there are improperly
1963 * configured, even though the IT8720F datasheet claims
1964 * that the internal routing of VCCH to VIN7 is the default
1965 * setting. So we force the internal routing in this case.
1967 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
1968 * If UART6 is enabled, re-route VIN7 to the internal divider
1969 * if that is not already the case.
1971 if ((sio_data
->type
== it8720
|| uart6
) && !(reg
& (1 << 1))) {
1973 superio_outb(IT87_SIO_PINX2_REG
, reg
);
1974 pr_notice("Routing internal VCCH to in7\n");
1977 sio_data
->internal
|= (1 << 0);
1978 if ((reg
& (1 << 1)) || sio_data
->type
== it8721
||
1979 sio_data
->type
== it8728
||
1980 sio_data
->type
== it8771
||
1981 sio_data
->type
== it8772
)
1982 sio_data
->internal
|= (1 << 1);
1985 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
1986 * While VIN7 can be routed to the internal voltage divider,
1987 * VIN5 and VIN6 are not available if UART6 is enabled.
1989 * Also, temp3 is not available if UART6 is enabled and TEMPIN3
1990 * is the temperature source. Since we can not read the
1991 * temperature source here, skip_temp is preliminary.
1994 sio_data
->skip_in
|= (1 << 5) | (1 << 6);
1995 sio_data
->skip_temp
|= (1 << 2);
1998 sio_data
->beep_pin
= superio_inb(IT87_SIO_BEEP_PIN_REG
) & 0x3f;
2000 if (sio_data
->beep_pin
)
2001 pr_info("Beeping is supported\n");
2003 /* Disable specific features based on DMI strings */
2004 board_vendor
= dmi_get_system_info(DMI_BOARD_VENDOR
);
2005 board_name
= dmi_get_system_info(DMI_BOARD_NAME
);
2006 if (board_vendor
&& board_name
) {
2007 if (strcmp(board_vendor
, "nVIDIA") == 0
2008 && strcmp(board_name
, "FN68PT") == 0) {
2010 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
2011 * connected to a fan, but to something else. One user
2012 * has reported instant system power-off when changing
2013 * the PWM2 duty cycle, so we disable it.
2014 * I use the board name string as the trigger in case
2015 * the same board is ever used in other systems.
2017 pr_info("Disabling pwm2 due to hardware constraints\n");
2018 sio_data
->skip_pwm
= (1 << 1);
2027 static void it87_remove_files(struct device
*dev
)
2029 struct it87_data
*data
= platform_get_drvdata(pdev
);
2030 struct it87_sio_data
*sio_data
= dev_get_platdata(dev
);
2033 sysfs_remove_group(&dev
->kobj
, &it87_group
);
2034 for (i
= 0; i
< 10; i
++) {
2035 if (sio_data
->skip_in
& (1 << i
))
2037 sysfs_remove_group(&dev
->kobj
, &it87_group_in
[i
]);
2038 if (it87_attributes_in_beep
[i
])
2039 sysfs_remove_file(&dev
->kobj
,
2040 it87_attributes_in_beep
[i
]);
2042 for (i
= 0; i
< 3; i
++) {
2043 if (!(data
->has_temp
& (1 << i
)))
2045 sysfs_remove_group(&dev
->kobj
, &it87_group_temp
[i
]);
2046 if (has_temp_offset(data
))
2047 sysfs_remove_file(&dev
->kobj
,
2048 it87_attributes_temp_offset
[i
]);
2049 if (sio_data
->beep_pin
)
2050 sysfs_remove_file(&dev
->kobj
,
2051 it87_attributes_temp_beep
[i
]);
2053 for (i
= 0; i
< 5; i
++) {
2054 if (!(data
->has_fan
& (1 << i
)))
2056 sysfs_remove_group(&dev
->kobj
, &it87_group_fan
[i
]);
2057 if (sio_data
->beep_pin
)
2058 sysfs_remove_file(&dev
->kobj
,
2059 it87_attributes_fan_beep
[i
]);
2060 if (i
< 3 && !has_16bit_fans(data
))
2061 sysfs_remove_file(&dev
->kobj
,
2062 it87_attributes_fan_div
[i
]);
2064 for (i
= 0; i
< 3; i
++) {
2065 if (sio_data
->skip_pwm
& (1 << 0))
2067 sysfs_remove_group(&dev
->kobj
, &it87_group_pwm
[i
]);
2068 if (has_old_autopwm(data
))
2069 sysfs_remove_group(&dev
->kobj
,
2070 &it87_group_autopwm
[i
]);
2072 if (!sio_data
->skip_vid
)
2073 sysfs_remove_group(&dev
->kobj
, &it87_group_vid
);
2074 sysfs_remove_group(&dev
->kobj
, &it87_group_label
);
2077 static int it87_probe(struct platform_device
*pdev
)
2079 struct it87_data
*data
;
2080 struct resource
*res
;
2081 struct device
*dev
= &pdev
->dev
;
2082 struct it87_sio_data
*sio_data
= dev_get_platdata(dev
);
2084 int enable_pwm_interface
;
2085 int fan_beep_need_rw
;
2087 res
= platform_get_resource(pdev
, IORESOURCE_IO
, 0);
2088 if (!devm_request_region(&pdev
->dev
, res
->start
, IT87_EC_EXTENT
,
2090 dev_err(dev
, "Failed to request region 0x%lx-0x%lx\n",
2091 (unsigned long)res
->start
,
2092 (unsigned long)(res
->start
+ IT87_EC_EXTENT
- 1));
2096 data
= devm_kzalloc(&pdev
->dev
, sizeof(struct it87_data
), GFP_KERNEL
);
2100 data
->addr
= res
->start
;
2101 data
->type
= sio_data
->type
;
2102 data
->features
= it87_devices
[sio_data
->type
].features
;
2103 data
->peci_mask
= it87_devices
[sio_data
->type
].peci_mask
;
2104 data
->old_peci_mask
= it87_devices
[sio_data
->type
].old_peci_mask
;
2105 data
->name
= it87_devices
[sio_data
->type
].name
;
2107 * IT8705F Datasheet 0.4.1, 3h == Version G.
2108 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
2109 * These are the first revisions with 16-bit tachometer support.
2111 switch (data
->type
) {
2113 if (sio_data
->revision
>= 0x03) {
2114 data
->features
&= ~FEAT_OLD_AUTOPWM
;
2115 data
->features
|= FEAT_16BIT_FANS
;
2119 if (sio_data
->revision
>= 0x08) {
2120 data
->features
&= ~FEAT_OLD_AUTOPWM
;
2121 data
->features
|= FEAT_16BIT_FANS
;
2128 /* Now, we do the remaining detection. */
2129 if ((it87_read_value(data
, IT87_REG_CONFIG
) & 0x80)
2130 || it87_read_value(data
, IT87_REG_CHIPID
) != 0x90)
2133 platform_set_drvdata(pdev
, data
);
2135 mutex_init(&data
->update_lock
);
2137 /* Check PWM configuration */
2138 enable_pwm_interface
= it87_check_pwm(dev
);
2140 /* Starting with IT8721F, we handle scaling of internal voltages */
2141 if (has_12mv_adc(data
)) {
2142 if (sio_data
->internal
& (1 << 0))
2143 data
->in_scaled
|= (1 << 3); /* in3 is AVCC */
2144 if (sio_data
->internal
& (1 << 1))
2145 data
->in_scaled
|= (1 << 7); /* in7 is VSB */
2146 if (sio_data
->internal
& (1 << 2))
2147 data
->in_scaled
|= (1 << 8); /* in8 is Vbat */
2148 if (sio_data
->internal
& (1 << 3))
2149 data
->in_scaled
|= (1 << 9); /* in9 is AVCC */
2150 } else if (sio_data
->type
== it8782
|| sio_data
->type
== it8783
) {
2151 if (sio_data
->internal
& (1 << 0))
2152 data
->in_scaled
|= (1 << 3); /* in3 is VCC5V */
2153 if (sio_data
->internal
& (1 << 1))
2154 data
->in_scaled
|= (1 << 7); /* in7 is VCCH5V */
2157 data
->has_temp
= 0x07;
2158 if (sio_data
->skip_temp
& (1 << 2)) {
2159 if (sio_data
->type
== it8782
2160 && !(it87_read_value(data
, IT87_REG_TEMP_EXTRA
) & 0x80))
2161 data
->has_temp
&= ~(1 << 2);
2164 /* Initialize the IT87 chip */
2165 it87_init_device(pdev
);
2167 /* Register sysfs hooks */
2168 err
= sysfs_create_group(&dev
->kobj
, &it87_group
);
2172 for (i
= 0; i
< 10; i
++) {
2173 if (sio_data
->skip_in
& (1 << i
))
2175 err
= sysfs_create_group(&dev
->kobj
, &it87_group_in
[i
]);
2178 if (sio_data
->beep_pin
&& it87_attributes_in_beep
[i
]) {
2179 err
= sysfs_create_file(&dev
->kobj
,
2180 it87_attributes_in_beep
[i
]);
2186 for (i
= 0; i
< 3; i
++) {
2187 if (!(data
->has_temp
& (1 << i
)))
2189 err
= sysfs_create_group(&dev
->kobj
, &it87_group_temp
[i
]);
2192 if (has_temp_offset(data
)) {
2193 err
= sysfs_create_file(&dev
->kobj
,
2194 it87_attributes_temp_offset
[i
]);
2198 if (sio_data
->beep_pin
) {
2199 err
= sysfs_create_file(&dev
->kobj
,
2200 it87_attributes_temp_beep
[i
]);
2206 /* Do not create fan files for disabled fans */
2207 fan_beep_need_rw
= 1;
2208 for (i
= 0; i
< 5; i
++) {
2209 if (!(data
->has_fan
& (1 << i
)))
2211 err
= sysfs_create_group(&dev
->kobj
, &it87_group_fan
[i
]);
2215 if (i
< 3 && !has_16bit_fans(data
)) {
2216 err
= sysfs_create_file(&dev
->kobj
,
2217 it87_attributes_fan_div
[i
]);
2222 if (sio_data
->beep_pin
) {
2223 err
= sysfs_create_file(&dev
->kobj
,
2224 it87_attributes_fan_beep
[i
]);
2227 if (!fan_beep_need_rw
)
2231 * As we have a single beep enable bit for all fans,
2232 * only the first enabled fan has a writable attribute
2235 if (sysfs_chmod_file(&dev
->kobj
,
2236 it87_attributes_fan_beep
[i
],
2238 dev_dbg(dev
, "chmod +w fan%d_beep failed\n",
2240 fan_beep_need_rw
= 0;
2244 if (enable_pwm_interface
) {
2245 for (i
= 0; i
< 3; i
++) {
2246 if (sio_data
->skip_pwm
& (1 << i
))
2248 err
= sysfs_create_group(&dev
->kobj
,
2249 &it87_group_pwm
[i
]);
2253 if (!has_old_autopwm(data
))
2255 err
= sysfs_create_group(&dev
->kobj
,
2256 &it87_group_autopwm
[i
]);
2262 if (!sio_data
->skip_vid
) {
2263 data
->vrm
= vid_which_vrm();
2264 /* VID reading from Super-I/O config space if available */
2265 data
->vid
= sio_data
->vid_value
;
2266 err
= sysfs_create_group(&dev
->kobj
, &it87_group_vid
);
2271 /* Export labels for internal sensors */
2272 for (i
= 0; i
< 4; i
++) {
2273 if (!(sio_data
->internal
& (1 << i
)))
2275 err
= sysfs_create_file(&dev
->kobj
,
2276 it87_attributes_label
[i
]);
2281 data
->hwmon_dev
= hwmon_device_register(dev
);
2282 if (IS_ERR(data
->hwmon_dev
)) {
2283 err
= PTR_ERR(data
->hwmon_dev
);
2290 it87_remove_files(dev
);
2294 static int it87_remove(struct platform_device
*pdev
)
2296 struct it87_data
*data
= platform_get_drvdata(pdev
);
2298 hwmon_device_unregister(data
->hwmon_dev
);
2299 it87_remove_files(&pdev
->dev
);
2305 * Must be called with data->update_lock held, except during initialization.
2306 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2307 * would slow down the IT87 access and should not be necessary.
2309 static int it87_read_value(struct it87_data
*data
, u8 reg
)
2311 outb_p(reg
, data
->addr
+ IT87_ADDR_REG_OFFSET
);
2312 return inb_p(data
->addr
+ IT87_DATA_REG_OFFSET
);
2316 * Must be called with data->update_lock held, except during initialization.
2317 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2318 * would slow down the IT87 access and should not be necessary.
2320 static void it87_write_value(struct it87_data
*data
, u8 reg
, u8 value
)
2322 outb_p(reg
, data
->addr
+ IT87_ADDR_REG_OFFSET
);
2323 outb_p(value
, data
->addr
+ IT87_DATA_REG_OFFSET
);
2326 /* Return 1 if and only if the PWM interface is safe to use */
2327 static int it87_check_pwm(struct device
*dev
)
2329 struct it87_data
*data
= dev_get_drvdata(dev
);
2331 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
2332 * and polarity set to active low is sign that this is the case so we
2333 * disable pwm control to protect the user.
2335 int tmp
= it87_read_value(data
, IT87_REG_FAN_CTL
);
2336 if ((tmp
& 0x87) == 0) {
2337 if (fix_pwm_polarity
) {
2339 * The user asks us to attempt a chip reconfiguration.
2340 * This means switching to active high polarity and
2341 * inverting all fan speed values.
2346 for (i
= 0; i
< 3; i
++)
2347 pwm
[i
] = it87_read_value(data
,
2351 * If any fan is in automatic pwm mode, the polarity
2352 * might be correct, as suspicious as it seems, so we
2353 * better don't change anything (but still disable the
2356 if (!((pwm
[0] | pwm
[1] | pwm
[2]) & 0x80)) {
2358 "Reconfiguring PWM to active high polarity\n");
2359 it87_write_value(data
, IT87_REG_FAN_CTL
,
2361 for (i
= 0; i
< 3; i
++)
2362 it87_write_value(data
,
2369 "PWM configuration is too broken to be fixed\n");
2373 "Detected broken BIOS defaults, disabling PWM interface\n");
2375 } else if (fix_pwm_polarity
) {
2377 "PWM configuration looks sane, won't touch\n");
2383 /* Called when we have found a new IT87. */
2384 static void it87_init_device(struct platform_device
*pdev
)
2386 struct it87_sio_data
*sio_data
= dev_get_platdata(&pdev
->dev
);
2387 struct it87_data
*data
= platform_get_drvdata(pdev
);
2392 * For each PWM channel:
2393 * - If it is in automatic mode, setting to manual mode should set
2394 * the fan to full speed by default.
2395 * - If it is in manual mode, we need a mapping to temperature
2396 * channels to use when later setting to automatic mode later.
2397 * Use a 1:1 mapping by default (we are clueless.)
2398 * In both cases, the value can (and should) be changed by the user
2399 * prior to switching to a different mode.
2400 * Note that this is no longer needed for the IT8721F and later, as
2401 * these have separate registers for the temperature mapping and the
2402 * manual duty cycle.
2404 for (i
= 0; i
< 3; i
++) {
2405 data
->pwm_temp_map
[i
] = i
;
2406 data
->pwm_duty
[i
] = 0x7f; /* Full speed */
2407 data
->auto_pwm
[i
][3] = 0x7f; /* Full speed, hard-coded */
2411 * Some chips seem to have default value 0xff for all limit
2412 * registers. For low voltage limits it makes no sense and triggers
2413 * alarms, so change to 0 instead. For high temperature limits, it
2414 * means -1 degree C, which surprisingly doesn't trigger an alarm,
2415 * but is still confusing, so change to 127 degrees C.
2417 for (i
= 0; i
< 8; i
++) {
2418 tmp
= it87_read_value(data
, IT87_REG_VIN_MIN(i
));
2420 it87_write_value(data
, IT87_REG_VIN_MIN(i
), 0);
2422 for (i
= 0; i
< 3; i
++) {
2423 tmp
= it87_read_value(data
, IT87_REG_TEMP_HIGH(i
));
2425 it87_write_value(data
, IT87_REG_TEMP_HIGH(i
), 127);
2429 * Temperature channels are not forcibly enabled, as they can be
2430 * set to two different sensor types and we can't guess which one
2431 * is correct for a given system. These channels can be enabled at
2432 * run-time through the temp{1-3}_type sysfs accessors if needed.
2435 /* Check if voltage monitors are reset manually or by some reason */
2436 tmp
= it87_read_value(data
, IT87_REG_VIN_ENABLE
);
2437 if ((tmp
& 0xff) == 0) {
2438 /* Enable all voltage monitors */
2439 it87_write_value(data
, IT87_REG_VIN_ENABLE
, 0xff);
2442 /* Check if tachometers are reset manually or by some reason */
2443 mask
= 0x70 & ~(sio_data
->skip_fan
<< 4);
2444 data
->fan_main_ctrl
= it87_read_value(data
, IT87_REG_FAN_MAIN_CTRL
);
2445 if ((data
->fan_main_ctrl
& mask
) == 0) {
2446 /* Enable all fan tachometers */
2447 data
->fan_main_ctrl
|= mask
;
2448 it87_write_value(data
, IT87_REG_FAN_MAIN_CTRL
,
2449 data
->fan_main_ctrl
);
2451 data
->has_fan
= (data
->fan_main_ctrl
>> 4) & 0x07;
2453 /* Set tachometers to 16-bit mode if needed, IT8603E (and IT8728F?)
2454 * has it by default */
2455 if (has_16bit_fans(data
) && data
->type
!= it8603
) {
2456 tmp
= it87_read_value(data
, IT87_REG_FAN_16BIT
);
2457 if (~tmp
& 0x07 & data
->has_fan
) {
2459 "Setting fan1-3 to 16-bit mode\n");
2460 it87_write_value(data
, IT87_REG_FAN_16BIT
,
2463 /* IT8705F, IT8782F, and IT8783E/F only support three fans. */
2464 if (data
->type
!= it87
&& data
->type
!= it8782
&&
2465 data
->type
!= it8783
) {
2467 data
->has_fan
|= (1 << 3); /* fan4 enabled */
2469 data
->has_fan
|= (1 << 4); /* fan5 enabled */
2473 /* Fan input pins may be used for alternative functions */
2474 data
->has_fan
&= ~sio_data
->skip_fan
;
2476 /* Start monitoring */
2477 it87_write_value(data
, IT87_REG_CONFIG
,
2478 (it87_read_value(data
, IT87_REG_CONFIG
) & 0x3e)
2479 | (update_vbat
? 0x41 : 0x01));
2482 static void it87_update_pwm_ctrl(struct it87_data
*data
, int nr
)
2484 data
->pwm_ctrl
[nr
] = it87_read_value(data
, IT87_REG_PWM(nr
));
2485 if (has_newer_autopwm(data
)) {
2486 data
->pwm_temp_map
[nr
] = data
->pwm_ctrl
[nr
] & 0x03;
2487 data
->pwm_duty
[nr
] = it87_read_value(data
,
2488 IT87_REG_PWM_DUTY(nr
));
2490 if (data
->pwm_ctrl
[nr
] & 0x80) /* Automatic mode */
2491 data
->pwm_temp_map
[nr
] = data
->pwm_ctrl
[nr
] & 0x03;
2492 else /* Manual mode */
2493 data
->pwm_duty
[nr
] = data
->pwm_ctrl
[nr
] & 0x7f;
2496 if (has_old_autopwm(data
)) {
2499 for (i
= 0; i
< 5 ; i
++)
2500 data
->auto_temp
[nr
][i
] = it87_read_value(data
,
2501 IT87_REG_AUTO_TEMP(nr
, i
));
2502 for (i
= 0; i
< 3 ; i
++)
2503 data
->auto_pwm
[nr
][i
] = it87_read_value(data
,
2504 IT87_REG_AUTO_PWM(nr
, i
));
2508 static struct it87_data
*it87_update_device(struct device
*dev
)
2510 struct it87_data
*data
= dev_get_drvdata(dev
);
2513 mutex_lock(&data
->update_lock
);
2515 if (time_after(jiffies
, data
->last_updated
+ HZ
+ HZ
/ 2)
2519 * Cleared after each update, so reenable. Value
2520 * returned by this read will be previous value
2522 it87_write_value(data
, IT87_REG_CONFIG
,
2523 it87_read_value(data
, IT87_REG_CONFIG
) | 0x40);
2525 for (i
= 0; i
<= 7; i
++) {
2527 it87_read_value(data
, IT87_REG_VIN(i
));
2529 it87_read_value(data
, IT87_REG_VIN_MIN(i
));
2531 it87_read_value(data
, IT87_REG_VIN_MAX(i
));
2533 /* in8 (battery) has no limit registers */
2534 data
->in
[8][0] = it87_read_value(data
, IT87_REG_VIN(8));
2535 if (data
->type
== it8603
)
2536 data
->in
[9][0] = it87_read_value(data
, 0x2f);
2538 for (i
= 0; i
< 5; i
++) {
2539 /* Skip disabled fans */
2540 if (!(data
->has_fan
& (1 << i
)))
2544 it87_read_value(data
, IT87_REG_FAN_MIN
[i
]);
2545 data
->fan
[i
][0] = it87_read_value(data
,
2547 /* Add high byte if in 16-bit mode */
2548 if (has_16bit_fans(data
)) {
2549 data
->fan
[i
][0] |= it87_read_value(data
,
2550 IT87_REG_FANX
[i
]) << 8;
2551 data
->fan
[i
][1] |= it87_read_value(data
,
2552 IT87_REG_FANX_MIN
[i
]) << 8;
2555 for (i
= 0; i
< 3; i
++) {
2556 if (!(data
->has_temp
& (1 << i
)))
2559 it87_read_value(data
, IT87_REG_TEMP(i
));
2561 it87_read_value(data
, IT87_REG_TEMP_LOW(i
));
2563 it87_read_value(data
, IT87_REG_TEMP_HIGH(i
));
2564 if (has_temp_offset(data
))
2566 it87_read_value(data
,
2567 IT87_REG_TEMP_OFFSET
[i
]);
2570 /* Newer chips don't have clock dividers */
2571 if ((data
->has_fan
& 0x07) && !has_16bit_fans(data
)) {
2572 i
= it87_read_value(data
, IT87_REG_FAN_DIV
);
2573 data
->fan_div
[0] = i
& 0x07;
2574 data
->fan_div
[1] = (i
>> 3) & 0x07;
2575 data
->fan_div
[2] = (i
& 0x40) ? 3 : 1;
2579 it87_read_value(data
, IT87_REG_ALARM1
) |
2580 (it87_read_value(data
, IT87_REG_ALARM2
) << 8) |
2581 (it87_read_value(data
, IT87_REG_ALARM3
) << 16);
2582 data
->beeps
= it87_read_value(data
, IT87_REG_BEEP_ENABLE
);
2584 data
->fan_main_ctrl
= it87_read_value(data
,
2585 IT87_REG_FAN_MAIN_CTRL
);
2586 data
->fan_ctl
= it87_read_value(data
, IT87_REG_FAN_CTL
);
2587 for (i
= 0; i
< 3; i
++)
2588 it87_update_pwm_ctrl(data
, i
);
2590 data
->sensor
= it87_read_value(data
, IT87_REG_TEMP_ENABLE
);
2591 data
->extra
= it87_read_value(data
, IT87_REG_TEMP_EXTRA
);
2593 * The IT8705F does not have VID capability.
2594 * The IT8718F and later don't use IT87_REG_VID for the
2597 if (data
->type
== it8712
|| data
->type
== it8716
) {
2598 data
->vid
= it87_read_value(data
, IT87_REG_VID
);
2600 * The older IT8712F revisions had only 5 VID pins,
2601 * but we assume it is always safe to read 6 bits.
2605 data
->last_updated
= jiffies
;
2609 mutex_unlock(&data
->update_lock
);
2614 static int __init
it87_device_add(unsigned short address
,
2615 const struct it87_sio_data
*sio_data
)
2617 struct resource res
= {
2618 .start
= address
+ IT87_EC_OFFSET
,
2619 .end
= address
+ IT87_EC_OFFSET
+ IT87_EC_EXTENT
- 1,
2621 .flags
= IORESOURCE_IO
,
2625 err
= acpi_check_resource_conflict(&res
);
2629 pdev
= platform_device_alloc(DRVNAME
, address
);
2632 pr_err("Device allocation failed\n");
2636 err
= platform_device_add_resources(pdev
, &res
, 1);
2638 pr_err("Device resource addition failed (%d)\n", err
);
2639 goto exit_device_put
;
2642 err
= platform_device_add_data(pdev
, sio_data
,
2643 sizeof(struct it87_sio_data
));
2645 pr_err("Platform data allocation failed\n");
2646 goto exit_device_put
;
2649 err
= platform_device_add(pdev
);
2651 pr_err("Device addition failed (%d)\n", err
);
2652 goto exit_device_put
;
2658 platform_device_put(pdev
);
2663 static int __init
sm_it87_init(void)
2666 unsigned short isa_address
= 0;
2667 struct it87_sio_data sio_data
;
2669 memset(&sio_data
, 0, sizeof(struct it87_sio_data
));
2670 err
= it87_find(&isa_address
, &sio_data
);
2673 err
= platform_driver_register(&it87_driver
);
2677 err
= it87_device_add(isa_address
, &sio_data
);
2679 platform_driver_unregister(&it87_driver
);
2686 static void __exit
sm_it87_exit(void)
2688 platform_device_unregister(pdev
);
2689 platform_driver_unregister(&it87_driver
);
2693 MODULE_AUTHOR("Chris Gauthron, Jean Delvare <jdelvare@suse.de>");
2694 MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
2695 module_param(update_vbat
, bool, 0);
2696 MODULE_PARM_DESC(update_vbat
, "Update vbat if set else return powerup value");
2697 module_param(fix_pwm_polarity
, bool, 0);
2698 MODULE_PARM_DESC(fix_pwm_polarity
,
2699 "Force PWM polarity to active high (DANGEROUS)");
2700 MODULE_LICENSE("GPL");
2702 module_init(sm_it87_init
);
2703 module_exit(sm_it87_exit
);