1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * it87.c - Part of lm_sensors, Linux kernel modules for hardware
6 * The IT8705F is an LPC-based Super I/O part that contains UARTs, a
7 * parallel port, an IR port, a MIDI port, a floppy controller, etc., in
8 * addition to an Environment Controller (Enhanced Hardware Monitor and
11 * This driver supports only the Environment Controller in the IT8705F and
12 * similar parts. The other devices are supported by different drivers.
14 * Supports: IT8603E Super I/O chip w/LPC interface
15 * IT8620E Super I/O chip w/LPC interface
16 * IT8622E Super I/O chip w/LPC interface
17 * IT8623E Super I/O chip w/LPC interface
18 * IT8628E Super I/O chip w/LPC interface
19 * IT8705F Super I/O chip w/LPC interface
20 * IT8712F Super I/O chip w/LPC interface
21 * IT8716F Super I/O chip w/LPC interface
22 * IT8718F Super I/O chip w/LPC interface
23 * IT8720F Super I/O chip w/LPC interface
24 * IT8721F Super I/O chip w/LPC interface
25 * IT8726F Super I/O chip w/LPC interface
26 * IT8728F Super I/O chip w/LPC interface
27 * IT8732F Super I/O chip w/LPC interface
28 * IT8758E Super I/O chip w/LPC interface
29 * IT8771E Super I/O chip w/LPC interface
30 * IT8772E Super I/O chip w/LPC interface
31 * IT8781F Super I/O chip w/LPC interface
32 * IT8782F Super I/O chip w/LPC interface
33 * IT8783E/F Super I/O chip w/LPC interface
34 * IT8786E Super I/O chip w/LPC interface
35 * IT8790E Super I/O chip w/LPC interface
36 * IT8792E Super I/O chip w/LPC interface
37 * Sis950 A clone of the IT8705F
39 * Copyright (C) 2001 Chris Gauthron
43 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
45 #include <linux/bitops.h>
46 #include <linux/module.h>
47 #include <linux/init.h>
48 #include <linux/slab.h>
49 #include <linux/jiffies.h>
50 #include <linux/platform_device.h>
51 #include <linux/hwmon.h>
52 #include <linux/hwmon-sysfs.h>
53 #include <linux/hwmon-vid.h>
54 #include <linux/err.h>
55 #include <linux/mutex.h>
56 #include <linux/sysfs.h>
57 #include <linux/string.h>
58 #include <linux/dmi.h>
59 #include <linux/acpi.h>
62 #define DRVNAME "it87"
64 enum chips { it87, it8712, it8716, it8718, it8720, it8721, it8728, it8732,
65 it8771, it8772, it8781, it8782, it8783, it8786, it8790,
66 it8792, it8603, it8620, it8622, it8628 };
68 static unsigned short force_id;
69 module_param(force_id, ushort, 0);
70 MODULE_PARM_DESC(force_id, "Override the detected device ID");
72 static bool ignore_resource_conflict;
73 module_param(ignore_resource_conflict, bool, 0);
74 MODULE_PARM_DESC(ignore_resource_conflict, "Ignore ACPI resource conflict");
76 static struct platform_device *it87_pdev[2];
78 #define REG_2E 0x2e /* The register to read/write */
79 #define REG_4E 0x4e /* Secondary register to read/write */
81 #define DEV 0x07 /* Register: Logical device select */
82 #define PME 0x04 /* The device with the fan registers in it */
84 /* The device with the IT8718F/IT8720F VID value in it */
87 #define DEVID 0x20 /* Register: Device ID */
88 #define DEVREV 0x22 /* Register: Device Revision */
90 static inline int superio_inb(int ioreg, int reg)
93 return inb(ioreg + 1);
96 static inline void superio_outb(int ioreg, int reg, int val)
102 static int superio_inw(int ioreg, int reg)
107 val = inb(ioreg + 1) << 8;
109 val |= inb(ioreg + 1);
113 static inline void superio_select(int ioreg, int ldn)
116 outb(ldn, ioreg + 1);
119 static inline int superio_enter(int ioreg)
122 * Try to reserve ioreg and ioreg + 1 for exclusive access.
124 if (!request_muxed_region(ioreg, 2, DRVNAME))
130 outb(ioreg == REG_4E ? 0xaa : 0x55, ioreg);
134 static inline void superio_exit(int ioreg)
137 outb(0x02, ioreg + 1);
138 release_region(ioreg, 2);
141 /* Logical device 4 registers */
142 #define IT8712F_DEVID 0x8712
143 #define IT8705F_DEVID 0x8705
144 #define IT8716F_DEVID 0x8716
145 #define IT8718F_DEVID 0x8718
146 #define IT8720F_DEVID 0x8720
147 #define IT8721F_DEVID 0x8721
148 #define IT8726F_DEVID 0x8726
149 #define IT8728F_DEVID 0x8728
150 #define IT8732F_DEVID 0x8732
151 #define IT8792E_DEVID 0x8733
152 #define IT8771E_DEVID 0x8771
153 #define IT8772E_DEVID 0x8772
154 #define IT8781F_DEVID 0x8781
155 #define IT8782F_DEVID 0x8782
156 #define IT8783E_DEVID 0x8783
157 #define IT8786E_DEVID 0x8786
158 #define IT8790E_DEVID 0x8790
159 #define IT8603E_DEVID 0x8603
160 #define IT8620E_DEVID 0x8620
161 #define IT8622E_DEVID 0x8622
162 #define IT8623E_DEVID 0x8623
163 #define IT8628E_DEVID 0x8628
164 #define IT87_ACT_REG 0x30
165 #define IT87_BASE_REG 0x60
167 /* Logical device 7 registers (IT8712F and later) */
168 #define IT87_SIO_GPIO1_REG 0x25
169 #define IT87_SIO_GPIO2_REG 0x26
170 #define IT87_SIO_GPIO3_REG 0x27
171 #define IT87_SIO_GPIO4_REG 0x28
172 #define IT87_SIO_GPIO5_REG 0x29
173 #define IT87_SIO_PINX1_REG 0x2a /* Pin selection */
174 #define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
175 #define IT87_SIO_SPI_REG 0xef /* SPI function pin select */
176 #define IT87_SIO_VID_REG 0xfc /* VID value */
177 #define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */
179 /* Update battery voltage after every reading if true */
180 static bool update_vbat;
182 /* Not all BIOSes properly configure the PWM registers */
183 static bool fix_pwm_polarity;
185 /* Many IT87 constants specified below */
187 /* Length of ISA address segment */
188 #define IT87_EXTENT 8
190 /* Length of ISA address segment for Environmental Controller */
191 #define IT87_EC_EXTENT 2
193 /* Offset of EC registers from ISA base address */
194 #define IT87_EC_OFFSET 5
196 /* Where are the ISA address/data registers relative to the EC base address */
197 #define IT87_ADDR_REG_OFFSET 0
198 #define IT87_DATA_REG_OFFSET 1
200 /*----- The IT87 registers -----*/
202 #define IT87_REG_CONFIG 0x00
204 #define IT87_REG_ALARM1 0x01
205 #define IT87_REG_ALARM2 0x02
206 #define IT87_REG_ALARM3 0x03
209 * The IT8718F and IT8720F have the VID value in a different register, in
210 * Super-I/O configuration space.
212 #define IT87_REG_VID 0x0a
214 * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
215 * for fan divisors. Later IT8712F revisions must use 16-bit tachometer
218 #define IT87_REG_FAN_DIV 0x0b
219 #define IT87_REG_FAN_16BIT 0x0c
223 * - up to 13 voltage (0 to 7, battery, avcc, 10 to 12)
224 * - up to 6 temp (1 to 6)
225 * - up to 6 fan (1 to 6)
228 static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82, 0x4c };
229 static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86, 0x4e };
230 static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83, 0x4d };
231 static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87, 0x4f };
232 static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59 };
234 #define IT87_REG_FAN_MAIN_CTRL 0x13
235 #define IT87_REG_FAN_CTL 0x14
236 static const u8 IT87_REG_PWM[] = { 0x15, 0x16, 0x17, 0x7f, 0xa7, 0xaf };
237 static const u8 IT87_REG_PWM_DUTY[] = { 0x63, 0x6b, 0x73, 0x7b, 0xa3, 0xab };
239 static const u8 IT87_REG_VIN[] = { 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,
240 0x27, 0x28, 0x2f, 0x2c, 0x2d, 0x2e };
242 #define IT87_REG_TEMP(nr) (0x29 + (nr))
244 #define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
245 #define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
246 #define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
247 #define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
249 #define IT87_REG_VIN_ENABLE 0x50
250 #define IT87_REG_TEMP_ENABLE 0x51
251 #define IT87_REG_TEMP_EXTRA 0x55
252 #define IT87_REG_BEEP_ENABLE 0x5c
254 #define IT87_REG_CHIPID 0x58
256 static const u8 IT87_REG_AUTO_BASE[] = { 0x60, 0x68, 0x70, 0x78, 0xa0, 0xa8 };
258 #define IT87_REG_AUTO_TEMP(nr, i) (IT87_REG_AUTO_BASE[nr] + (i))
259 #define IT87_REG_AUTO_PWM(nr, i) (IT87_REG_AUTO_BASE[nr] + 5 + (i))
261 #define IT87_REG_TEMP456_ENABLE 0x77
263 #define NUM_VIN ARRAY_SIZE(IT87_REG_VIN)
264 #define NUM_VIN_LIMIT 8
266 #define NUM_TEMP_OFFSET ARRAY_SIZE(IT87_REG_TEMP_OFFSET)
267 #define NUM_TEMP_LIMIT 3
268 #define NUM_FAN ARRAY_SIZE(IT87_REG_FAN)
269 #define NUM_FAN_DIV 3
270 #define NUM_PWM ARRAY_SIZE(IT87_REG_PWM)
271 #define NUM_AUTO_PWM ARRAY_SIZE(IT87_REG_PWM)
273 struct it87_devices {
275 const char * const suffix;
281 #define FEAT_12MV_ADC BIT(0)
282 #define FEAT_NEWER_AUTOPWM BIT(1)
283 #define FEAT_OLD_AUTOPWM BIT(2)
284 #define FEAT_16BIT_FANS BIT(3)
285 #define FEAT_TEMP_OFFSET BIT(4)
286 #define FEAT_TEMP_PECI BIT(5)
287 #define FEAT_TEMP_OLD_PECI BIT(6)
288 #define FEAT_FAN16_CONFIG BIT(7) /* Need to enable 16-bit fans */
289 #define FEAT_FIVE_FANS BIT(8) /* Supports five fans */
290 #define FEAT_VID BIT(9) /* Set if chip supports VID */
291 #define FEAT_IN7_INTERNAL BIT(10) /* Set if in7 is internal */
292 #define FEAT_SIX_FANS BIT(11) /* Supports six fans */
293 #define FEAT_10_9MV_ADC BIT(12)
294 #define FEAT_AVCC3 BIT(13) /* Chip supports in9/AVCC3 */
295 #define FEAT_FIVE_PWM BIT(14) /* Chip supports 5 pwm chn */
296 #define FEAT_SIX_PWM BIT(15) /* Chip supports 6 pwm chn */
297 #define FEAT_PWM_FREQ2 BIT(16) /* Separate pwm freq 2 */
298 #define FEAT_SIX_TEMP BIT(17) /* Up to 6 temp sensors */
299 #define FEAT_VIN3_5V BIT(18) /* VIN3 connected to +5V */
301 static const struct it87_devices it87_devices[] = {
305 .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */
310 .features = FEAT_OLD_AUTOPWM | FEAT_VID,
311 /* may need to overwrite */
316 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
317 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_PWM_FREQ2,
322 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
323 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS
325 .old_peci_mask = 0x4,
330 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
331 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS
333 .old_peci_mask = 0x4,
338 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
339 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
340 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_IN7_INTERNAL
343 .old_peci_mask = 0x02, /* Actually reports PCH */
348 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
349 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS
350 | FEAT_IN7_INTERNAL | FEAT_PWM_FREQ2,
356 .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS
357 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
358 | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL,
360 .old_peci_mask = 0x02, /* Actually reports PCH */
365 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
366 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
368 /* PECI: guesswork */
370 /* 16 bit fans (OHM) */
371 /* three fans, always 16 bit (guesswork) */
377 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
378 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
380 /* PECI (coreboot) */
381 /* 12mV ADC (HWSensors4, OHM) */
382 /* 16 bit fans (HWSensors4, OHM) */
383 /* three fans, always 16 bit (datasheet) */
389 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
390 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
391 .old_peci_mask = 0x4,
396 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
397 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
398 .old_peci_mask = 0x4,
403 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
404 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
405 .old_peci_mask = 0x4,
410 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
411 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
418 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
419 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
426 .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS
427 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
428 | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL,
430 .old_peci_mask = 0x02, /* Actually reports PCH */
435 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
436 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
437 | FEAT_AVCC3 | FEAT_PWM_FREQ2,
443 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
444 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS
445 | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2
446 | FEAT_SIX_TEMP | FEAT_VIN3_5V,
452 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
453 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS
454 | FEAT_FIVE_PWM | FEAT_IN7_INTERNAL | FEAT_PWM_FREQ2
455 | FEAT_AVCC3 | FEAT_VIN3_5V,
461 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
462 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS
463 | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2
464 | FEAT_SIX_TEMP | FEAT_VIN3_5V,
469 #define has_16bit_fans(data) ((data)->features & FEAT_16BIT_FANS)
470 #define has_12mv_adc(data) ((data)->features & FEAT_12MV_ADC)
471 #define has_10_9mv_adc(data) ((data)->features & FEAT_10_9MV_ADC)
472 #define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM)
473 #define has_old_autopwm(data) ((data)->features & FEAT_OLD_AUTOPWM)
474 #define has_temp_offset(data) ((data)->features & FEAT_TEMP_OFFSET)
475 #define has_temp_peci(data, nr) (((data)->features & FEAT_TEMP_PECI) && \
476 ((data)->peci_mask & BIT(nr)))
477 #define has_temp_old_peci(data, nr) \
478 (((data)->features & FEAT_TEMP_OLD_PECI) && \
479 ((data)->old_peci_mask & BIT(nr)))
480 #define has_fan16_config(data) ((data)->features & FEAT_FAN16_CONFIG)
481 #define has_five_fans(data) ((data)->features & (FEAT_FIVE_FANS | \
483 #define has_vid(data) ((data)->features & FEAT_VID)
484 #define has_in7_internal(data) ((data)->features & FEAT_IN7_INTERNAL)
485 #define has_six_fans(data) ((data)->features & FEAT_SIX_FANS)
486 #define has_avcc3(data) ((data)->features & FEAT_AVCC3)
487 #define has_five_pwm(data) ((data)->features & (FEAT_FIVE_PWM \
489 #define has_six_pwm(data) ((data)->features & FEAT_SIX_PWM)
490 #define has_pwm_freq2(data) ((data)->features & FEAT_PWM_FREQ2)
491 #define has_six_temp(data) ((data)->features & FEAT_SIX_TEMP)
492 #define has_vin3_5v(data) ((data)->features & FEAT_VIN3_5V)
494 struct it87_sio_data {
497 /* Values read from Super-I/O config space */
501 u8 internal; /* Internal sensors can be labeled */
502 bool need_in7_reroute;
503 /* Features skipped based on config or DMI */
512 * For each registered chip, we need to keep some data in memory.
513 * The structure is dynamically allocated.
516 const struct attribute_group *groups[7];
525 struct mutex update_lock;
526 bool valid; /* true if following fields are valid */
527 unsigned long last_updated; /* In jiffies */
529 u16 in_scaled; /* Internal voltage sensors are scaled */
530 u16 in_internal; /* Bitfield, internal sensors (for labels) */
531 u16 has_in; /* Bitfield, voltage sensors enabled */
532 u8 in[NUM_VIN][3]; /* [nr][0]=in, [1]=min, [2]=max */
533 bool need_in7_reroute;
534 u8 has_fan; /* Bitfield, fans enabled */
535 u16 fan[NUM_FAN][2]; /* Register values, [nr][0]=fan, [1]=min */
536 u8 has_temp; /* Bitfield, temp sensors enabled */
537 s8 temp[NUM_TEMP][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */
538 u8 sensor; /* Register value (IT87_REG_TEMP_ENABLE) */
539 u8 extra; /* Register value (IT87_REG_TEMP_EXTRA) */
540 u8 fan_div[NUM_FAN_DIV];/* Register encoding, shifted right */
541 bool has_vid; /* True if VID supported */
542 u8 vid; /* Register encoding, combined */
544 u32 alarms; /* Register encoding, combined */
545 bool has_beep; /* true if beep supported */
546 u8 beeps; /* Register encoding */
547 u8 fan_main_ctrl; /* Register value */
548 u8 fan_ctl; /* Register value */
551 * The following 3 arrays correspond to the same registers up to
552 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
553 * 7, and we want to preserve settings on mode changes, so we have
554 * to track all values separately.
555 * Starting with the IT8721F, the manual PWM duty cycles are stored
556 * in separate registers (8-bit values), so the separate tracking
557 * is no longer needed, but it is still done to keep the driver
560 u8 has_pwm; /* Bitfield, pwm control enabled */
561 u8 pwm_ctrl[NUM_PWM]; /* Register value */
562 u8 pwm_duty[NUM_PWM]; /* Manual PWM value set by user */
563 u8 pwm_temp_map[NUM_PWM];/* PWM to temp. chan. mapping (bits 1-0) */
565 /* Automatic fan speed control registers */
566 u8 auto_pwm[NUM_AUTO_PWM][4]; /* [nr][3] is hard-coded */
567 s8 auto_temp[NUM_AUTO_PWM][5]; /* [nr][0] is point1_temp_hyst */
570 /* Board specific settings from DMI matching */
571 struct it87_dmi_data {
572 u8 skip_pwm; /* pwm channels to skip for this board */
575 /* Global for results from DMI matching, if needed */
576 static struct it87_dmi_data *dmi_data;
578 static int adc_lsb(const struct it87_data *data, int nr)
582 if (has_12mv_adc(data))
584 else if (has_10_9mv_adc(data))
588 if (data->in_scaled & BIT(nr))
593 static u8 in_to_reg(const struct it87_data *data, int nr, long val)
595 val = DIV_ROUND_CLOSEST(val * 10, adc_lsb(data, nr));
596 return clamp_val(val, 0, 255);
599 static int in_from_reg(const struct it87_data *data, int nr, int val)
601 return DIV_ROUND_CLOSEST(val * adc_lsb(data, nr), 10);
604 static inline u8 FAN_TO_REG(long rpm, int div)
608 rpm = clamp_val(rpm, 1, 1000000);
609 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
612 static inline u16 FAN16_TO_REG(long rpm)
616 return clamp_val((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
619 #define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
620 1350000 / ((val) * (div)))
621 /* The divider is fixed to 2 in 16-bit mode */
622 #define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
623 1350000 / ((val) * 2))
625 #define TEMP_TO_REG(val) (clamp_val(((val) < 0 ? (((val) - 500) / 1000) : \
626 ((val) + 500) / 1000), -128, 127))
627 #define TEMP_FROM_REG(val) ((val) * 1000)
629 static u8 pwm_to_reg(const struct it87_data *data, long val)
631 if (has_newer_autopwm(data))
637 static int pwm_from_reg(const struct it87_data *data, u8 reg)
639 if (has_newer_autopwm(data))
642 return (reg & 0x7f) << 1;
645 static int DIV_TO_REG(int val)
649 while (answer < 7 && (val >>= 1))
654 #define DIV_FROM_REG(val) BIT(val)
657 * PWM base frequencies. The frequency has to be divided by either 128 or 256,
658 * depending on the chip type, to calculate the actual PWM frequency.
660 * Some of the chip datasheets suggest a base frequency of 51 kHz instead
661 * of 750 kHz for the slowest base frequency, resulting in a PWM frequency
662 * of 200 Hz. Sometimes both PWM frequency select registers are affected,
663 * sometimes just one. It is unknown if this is a datasheet error or real,
664 * so this is ignored for now.
666 static const unsigned int pwm_freq[8] = {
678 * Must be called with data->update_lock held, except during initialization.
679 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
680 * would slow down the IT87 access and should not be necessary.
682 static int it87_read_value(struct it87_data *data, u8 reg)
684 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
685 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
689 * Must be called with data->update_lock held, except during initialization.
690 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
691 * would slow down the IT87 access and should not be necessary.
693 static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
695 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
696 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
699 static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
701 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM[nr]);
702 if (has_newer_autopwm(data)) {
703 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
704 data->pwm_duty[nr] = it87_read_value(data,
705 IT87_REG_PWM_DUTY[nr]);
707 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
708 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
709 else /* Manual mode */
710 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
713 if (has_old_autopwm(data)) {
716 for (i = 0; i < 5 ; i++)
717 data->auto_temp[nr][i] = it87_read_value(data,
718 IT87_REG_AUTO_TEMP(nr, i));
719 for (i = 0; i < 3 ; i++)
720 data->auto_pwm[nr][i] = it87_read_value(data,
721 IT87_REG_AUTO_PWM(nr, i));
722 } else if (has_newer_autopwm(data)) {
726 * 0: temperature hysteresis (base + 5)
727 * 1: fan off temperature (base + 0)
728 * 2: fan start temperature (base + 1)
729 * 3: fan max temperature (base + 2)
731 data->auto_temp[nr][0] =
732 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 5));
734 for (i = 0; i < 3 ; i++)
735 data->auto_temp[nr][i + 1] =
736 it87_read_value(data,
737 IT87_REG_AUTO_TEMP(nr, i));
739 * 0: start pwm value (base + 3)
740 * 1: pwm slope (base + 4, 1/8th pwm)
742 data->auto_pwm[nr][0] =
743 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 3));
744 data->auto_pwm[nr][1] =
745 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 4));
749 static struct it87_data *it87_update_device(struct device *dev)
751 struct it87_data *data = dev_get_drvdata(dev);
754 mutex_lock(&data->update_lock);
756 if (time_after(jiffies, data->last_updated + HZ + HZ / 2) ||
760 * Cleared after each update, so reenable. Value
761 * returned by this read will be previous value
763 it87_write_value(data, IT87_REG_CONFIG,
764 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
766 for (i = 0; i < NUM_VIN; i++) {
767 if (!(data->has_in & BIT(i)))
771 it87_read_value(data, IT87_REG_VIN[i]);
773 /* VBAT and AVCC don't have limit registers */
774 if (i >= NUM_VIN_LIMIT)
778 it87_read_value(data, IT87_REG_VIN_MIN(i));
780 it87_read_value(data, IT87_REG_VIN_MAX(i));
783 for (i = 0; i < NUM_FAN; i++) {
784 /* Skip disabled fans */
785 if (!(data->has_fan & BIT(i)))
789 it87_read_value(data, IT87_REG_FAN_MIN[i]);
790 data->fan[i][0] = it87_read_value(data,
792 /* Add high byte if in 16-bit mode */
793 if (has_16bit_fans(data)) {
794 data->fan[i][0] |= it87_read_value(data,
795 IT87_REG_FANX[i]) << 8;
796 data->fan[i][1] |= it87_read_value(data,
797 IT87_REG_FANX_MIN[i]) << 8;
800 for (i = 0; i < NUM_TEMP; i++) {
801 if (!(data->has_temp & BIT(i)))
804 it87_read_value(data, IT87_REG_TEMP(i));
806 if (has_temp_offset(data) && i < NUM_TEMP_OFFSET)
808 it87_read_value(data,
809 IT87_REG_TEMP_OFFSET[i]);
811 if (i >= NUM_TEMP_LIMIT)
815 it87_read_value(data, IT87_REG_TEMP_LOW(i));
817 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
820 /* Newer chips don't have clock dividers */
821 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
822 i = it87_read_value(data, IT87_REG_FAN_DIV);
823 data->fan_div[0] = i & 0x07;
824 data->fan_div[1] = (i >> 3) & 0x07;
825 data->fan_div[2] = (i & 0x40) ? 3 : 1;
829 it87_read_value(data, IT87_REG_ALARM1) |
830 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
831 (it87_read_value(data, IT87_REG_ALARM3) << 16);
832 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
834 data->fan_main_ctrl = it87_read_value(data,
835 IT87_REG_FAN_MAIN_CTRL);
836 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
837 for (i = 0; i < NUM_PWM; i++) {
838 if (!(data->has_pwm & BIT(i)))
840 it87_update_pwm_ctrl(data, i);
843 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
844 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
846 * The IT8705F does not have VID capability.
847 * The IT8718F and later don't use IT87_REG_VID for the
850 if (data->type == it8712 || data->type == it8716) {
851 data->vid = it87_read_value(data, IT87_REG_VID);
853 * The older IT8712F revisions had only 5 VID pins,
854 * but we assume it is always safe to read 6 bits.
858 data->last_updated = jiffies;
862 mutex_unlock(&data->update_lock);
867 static ssize_t show_in(struct device *dev, struct device_attribute *attr,
870 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
871 struct it87_data *data = it87_update_device(dev);
872 int index = sattr->index;
875 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr][index]));
878 static ssize_t set_in(struct device *dev, struct device_attribute *attr,
879 const char *buf, size_t count)
881 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
882 struct it87_data *data = dev_get_drvdata(dev);
883 int index = sattr->index;
887 if (kstrtoul(buf, 10, &val) < 0)
890 mutex_lock(&data->update_lock);
891 data->in[nr][index] = in_to_reg(data, nr, val);
892 it87_write_value(data,
893 index == 1 ? IT87_REG_VIN_MIN(nr)
894 : IT87_REG_VIN_MAX(nr),
895 data->in[nr][index]);
896 mutex_unlock(&data->update_lock);
900 static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0);
901 static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in,
903 static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in,
906 static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0);
907 static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in,
909 static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in,
912 static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0);
913 static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in,
915 static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in,
918 static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0);
919 static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in,
921 static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in,
924 static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0);
925 static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in,
927 static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in,
930 static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0);
931 static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in,
933 static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in,
936 static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0);
937 static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in,
939 static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in,
942 static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0);
943 static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in,
945 static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in,
948 static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0);
949 static SENSOR_DEVICE_ATTR_2(in9_input, S_IRUGO, show_in, NULL, 9, 0);
950 static SENSOR_DEVICE_ATTR_2(in10_input, S_IRUGO, show_in, NULL, 10, 0);
951 static SENSOR_DEVICE_ATTR_2(in11_input, S_IRUGO, show_in, NULL, 11, 0);
952 static SENSOR_DEVICE_ATTR_2(in12_input, S_IRUGO, show_in, NULL, 12, 0);
954 /* Up to 6 temperatures */
955 static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
958 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
960 int index = sattr->index;
961 struct it87_data *data = it87_update_device(dev);
963 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index]));
966 static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
967 const char *buf, size_t count)
969 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
971 int index = sattr->index;
972 struct it87_data *data = dev_get_drvdata(dev);
976 if (kstrtol(buf, 10, &val) < 0)
979 mutex_lock(&data->update_lock);
984 reg = IT87_REG_TEMP_LOW(nr);
987 reg = IT87_REG_TEMP_HIGH(nr);
990 regval = it87_read_value(data, IT87_REG_BEEP_ENABLE);
991 if (!(regval & 0x80)) {
993 it87_write_value(data, IT87_REG_BEEP_ENABLE, regval);
996 reg = IT87_REG_TEMP_OFFSET[nr];
1000 data->temp[nr][index] = TEMP_TO_REG(val);
1001 it87_write_value(data, reg, data->temp[nr][index]);
1002 mutex_unlock(&data->update_lock);
1006 static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0);
1007 static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1009 static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1011 static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp,
1013 static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0);
1014 static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1016 static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1018 static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp,
1020 static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0);
1021 static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1023 static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1025 static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp,
1027 static SENSOR_DEVICE_ATTR_2(temp4_input, S_IRUGO, show_temp, NULL, 3, 0);
1028 static SENSOR_DEVICE_ATTR_2(temp5_input, S_IRUGO, show_temp, NULL, 4, 0);
1029 static SENSOR_DEVICE_ATTR_2(temp6_input, S_IRUGO, show_temp, NULL, 5, 0);
1031 static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr,
1034 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1035 int nr = sensor_attr->index;
1036 struct it87_data *data = it87_update_device(dev);
1037 u8 reg = data->sensor; /* In case value is updated while used */
1038 u8 extra = data->extra;
1040 if ((has_temp_peci(data, nr) && (reg >> 6 == nr + 1)) ||
1041 (has_temp_old_peci(data, nr) && (extra & 0x80)))
1042 return sprintf(buf, "6\n"); /* Intel PECI */
1043 if (reg & (1 << nr))
1044 return sprintf(buf, "3\n"); /* thermal diode */
1045 if (reg & (8 << nr))
1046 return sprintf(buf, "4\n"); /* thermistor */
1047 return sprintf(buf, "0\n"); /* disabled */
1050 static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr,
1051 const char *buf, size_t count)
1053 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1054 int nr = sensor_attr->index;
1056 struct it87_data *data = dev_get_drvdata(dev);
1060 if (kstrtol(buf, 10, &val) < 0)
1063 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
1066 if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1 || val == 6))
1068 extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
1069 if (has_temp_old_peci(data, nr) && ((extra & 0x80) || val == 6))
1071 if (val == 2) { /* backwards compatibility */
1073 "Sensor type 2 is deprecated, please use 4 instead\n");
1076 /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */
1081 else if (has_temp_peci(data, nr) && val == 6)
1082 reg |= (nr + 1) << 6;
1083 else if (has_temp_old_peci(data, nr) && val == 6)
1088 mutex_lock(&data->update_lock);
1090 data->extra = extra;
1091 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
1092 if (has_temp_old_peci(data, nr))
1093 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
1094 data->valid = false; /* Force cache refresh */
1095 mutex_unlock(&data->update_lock);
1099 static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type,
1101 static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type,
1103 static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type,
1108 static int pwm_mode(const struct it87_data *data, int nr)
1110 if (data->type != it8603 && nr < 3 && !(data->fan_main_ctrl & BIT(nr)))
1111 return 0; /* Full speed */
1112 if (data->pwm_ctrl[nr] & 0x80)
1113 return 2; /* Automatic mode */
1114 if ((data->type == it8603 || nr >= 3) &&
1115 data->pwm_duty[nr] == pwm_to_reg(data, 0xff))
1116 return 0; /* Full speed */
1118 return 1; /* Manual mode */
1121 static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
1124 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1126 int index = sattr->index;
1128 struct it87_data *data = it87_update_device(dev);
1130 speed = has_16bit_fans(data) ?
1131 FAN16_FROM_REG(data->fan[nr][index]) :
1132 FAN_FROM_REG(data->fan[nr][index],
1133 DIV_FROM_REG(data->fan_div[nr]));
1134 return sprintf(buf, "%d\n", speed);
1137 static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
1140 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1141 struct it87_data *data = it87_update_device(dev);
1142 int nr = sensor_attr->index;
1144 return sprintf(buf, "%lu\n", DIV_FROM_REG(data->fan_div[nr]));
1147 static ssize_t show_pwm_enable(struct device *dev,
1148 struct device_attribute *attr, char *buf)
1150 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1151 struct it87_data *data = it87_update_device(dev);
1152 int nr = sensor_attr->index;
1154 return sprintf(buf, "%d\n", pwm_mode(data, nr));
1157 static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
1160 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1161 struct it87_data *data = it87_update_device(dev);
1162 int nr = sensor_attr->index;
1164 return sprintf(buf, "%d\n",
1165 pwm_from_reg(data, data->pwm_duty[nr]));
1168 static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
1171 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1172 struct it87_data *data = it87_update_device(dev);
1173 int nr = sensor_attr->index;
1177 if (has_pwm_freq2(data) && nr == 1)
1178 index = (data->extra >> 4) & 0x07;
1180 index = (data->fan_ctl >> 4) & 0x07;
1182 freq = pwm_freq[index] / (has_newer_autopwm(data) ? 256 : 128);
1184 return sprintf(buf, "%u\n", freq);
1187 static ssize_t set_fan(struct device *dev, struct device_attribute *attr,
1188 const char *buf, size_t count)
1190 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1192 int index = sattr->index;
1194 struct it87_data *data = dev_get_drvdata(dev);
1198 if (kstrtol(buf, 10, &val) < 0)
1201 mutex_lock(&data->update_lock);
1203 if (has_16bit_fans(data)) {
1204 data->fan[nr][index] = FAN16_TO_REG(val);
1205 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1206 data->fan[nr][index] & 0xff);
1207 it87_write_value(data, IT87_REG_FANX_MIN[nr],
1208 data->fan[nr][index] >> 8);
1210 reg = it87_read_value(data, IT87_REG_FAN_DIV);
1213 data->fan_div[nr] = reg & 0x07;
1216 data->fan_div[nr] = (reg >> 3) & 0x07;
1219 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
1222 data->fan[nr][index] =
1223 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
1224 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1225 data->fan[nr][index]);
1228 mutex_unlock(&data->update_lock);
1232 static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
1233 const char *buf, size_t count)
1235 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1236 struct it87_data *data = dev_get_drvdata(dev);
1237 int nr = sensor_attr->index;
1242 if (kstrtoul(buf, 10, &val) < 0)
1245 mutex_lock(&data->update_lock);
1246 old = it87_read_value(data, IT87_REG_FAN_DIV);
1248 /* Save fan min limit */
1249 min = FAN_FROM_REG(data->fan[nr][1], DIV_FROM_REG(data->fan_div[nr]));
1254 data->fan_div[nr] = DIV_TO_REG(val);
1258 data->fan_div[nr] = 1;
1260 data->fan_div[nr] = 3;
1263 val |= (data->fan_div[0] & 0x07);
1264 val |= (data->fan_div[1] & 0x07) << 3;
1265 if (data->fan_div[2] == 3)
1267 it87_write_value(data, IT87_REG_FAN_DIV, val);
1269 /* Restore fan min limit */
1270 data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
1271 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan[nr][1]);
1273 mutex_unlock(&data->update_lock);
1277 /* Returns 0 if OK, -EINVAL otherwise */
1278 static int check_trip_points(struct device *dev, int nr)
1280 const struct it87_data *data = dev_get_drvdata(dev);
1283 if (has_old_autopwm(data)) {
1284 for (i = 0; i < 3; i++) {
1285 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1288 for (i = 0; i < 2; i++) {
1289 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
1292 } else if (has_newer_autopwm(data)) {
1293 for (i = 1; i < 3; i++) {
1294 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1301 "Inconsistent trip points, not switching to automatic mode\n");
1302 dev_err(dev, "Adjust the trip points and try again\n");
1307 static ssize_t set_pwm_enable(struct device *dev, struct device_attribute *attr,
1308 const char *buf, size_t count)
1310 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1311 struct it87_data *data = dev_get_drvdata(dev);
1312 int nr = sensor_attr->index;
1315 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
1318 /* Check trip points before switching to automatic mode */
1320 if (check_trip_points(dev, nr) < 0)
1324 mutex_lock(&data->update_lock);
1327 if (nr < 3 && data->type != it8603) {
1329 /* make sure the fan is on when in on/off mode */
1330 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
1331 it87_write_value(data, IT87_REG_FAN_CTL, tmp | BIT(nr));
1332 /* set on/off mode */
1333 data->fan_main_ctrl &= ~BIT(nr);
1334 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1335 data->fan_main_ctrl);
1339 /* No on/off mode, set maximum pwm value */
1340 data->pwm_duty[nr] = pwm_to_reg(data, 0xff);
1341 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
1342 data->pwm_duty[nr]);
1343 /* and set manual mode */
1344 if (has_newer_autopwm(data)) {
1345 ctrl = (data->pwm_ctrl[nr] & 0x7c) |
1346 data->pwm_temp_map[nr];
1348 ctrl = data->pwm_duty[nr];
1350 data->pwm_ctrl[nr] = ctrl;
1351 it87_write_value(data, IT87_REG_PWM[nr], ctrl);
1356 if (has_newer_autopwm(data)) {
1357 ctrl = (data->pwm_ctrl[nr] & 0x7c) |
1358 data->pwm_temp_map[nr];
1362 ctrl = (val == 1 ? data->pwm_duty[nr] : 0x80);
1364 data->pwm_ctrl[nr] = ctrl;
1365 it87_write_value(data, IT87_REG_PWM[nr], ctrl);
1367 if (data->type != it8603 && nr < 3) {
1368 /* set SmartGuardian mode */
1369 data->fan_main_ctrl |= BIT(nr);
1370 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1371 data->fan_main_ctrl);
1375 mutex_unlock(&data->update_lock);
1379 static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
1380 const char *buf, size_t count)
1382 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1383 struct it87_data *data = dev_get_drvdata(dev);
1384 int nr = sensor_attr->index;
1387 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
1390 mutex_lock(&data->update_lock);
1391 it87_update_pwm_ctrl(data, nr);
1392 if (has_newer_autopwm(data)) {
1394 * If we are in automatic mode, the PWM duty cycle register
1395 * is read-only so we can't write the value.
1397 if (data->pwm_ctrl[nr] & 0x80) {
1398 mutex_unlock(&data->update_lock);
1401 data->pwm_duty[nr] = pwm_to_reg(data, val);
1402 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
1403 data->pwm_duty[nr]);
1405 data->pwm_duty[nr] = pwm_to_reg(data, val);
1407 * If we are in manual mode, write the duty cycle immediately;
1408 * otherwise, just store it for later use.
1410 if (!(data->pwm_ctrl[nr] & 0x80)) {
1411 data->pwm_ctrl[nr] = data->pwm_duty[nr];
1412 it87_write_value(data, IT87_REG_PWM[nr],
1413 data->pwm_ctrl[nr]);
1416 mutex_unlock(&data->update_lock);
1420 static ssize_t set_pwm_freq(struct device *dev, struct device_attribute *attr,
1421 const char *buf, size_t count)
1423 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1424 struct it87_data *data = dev_get_drvdata(dev);
1425 int nr = sensor_attr->index;
1429 if (kstrtoul(buf, 10, &val) < 0)
1432 val = clamp_val(val, 0, 1000000);
1433 val *= has_newer_autopwm(data) ? 256 : 128;
1435 /* Search for the nearest available frequency */
1436 for (i = 0; i < 7; i++) {
1437 if (val > (pwm_freq[i] + pwm_freq[i + 1]) / 2)
1441 mutex_lock(&data->update_lock);
1443 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
1444 data->fan_ctl |= i << 4;
1445 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
1447 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x8f;
1448 data->extra |= i << 4;
1449 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
1451 mutex_unlock(&data->update_lock);
1456 static ssize_t show_pwm_temp_map(struct device *dev,
1457 struct device_attribute *attr, char *buf)
1459 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1460 struct it87_data *data = it87_update_device(dev);
1461 int nr = sensor_attr->index;
1464 map = data->pwm_temp_map[nr];
1466 map = 0; /* Should never happen */
1467 if (nr >= 3) /* pwm channels 3..6 map to temp4..6 */
1470 return sprintf(buf, "%d\n", (int)BIT(map));
1473 static ssize_t set_pwm_temp_map(struct device *dev,
1474 struct device_attribute *attr, const char *buf,
1477 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1478 struct it87_data *data = dev_get_drvdata(dev);
1479 int nr = sensor_attr->index;
1483 if (kstrtol(buf, 10, &val) < 0)
1503 mutex_lock(&data->update_lock);
1504 it87_update_pwm_ctrl(data, nr);
1505 data->pwm_temp_map[nr] = reg;
1507 * If we are in automatic mode, write the temp mapping immediately;
1508 * otherwise, just store it for later use.
1510 if (data->pwm_ctrl[nr] & 0x80) {
1511 data->pwm_ctrl[nr] = (data->pwm_ctrl[nr] & 0xfc) |
1512 data->pwm_temp_map[nr];
1513 it87_write_value(data, IT87_REG_PWM[nr], data->pwm_ctrl[nr]);
1515 mutex_unlock(&data->update_lock);
1519 static ssize_t show_auto_pwm(struct device *dev, struct device_attribute *attr,
1522 struct it87_data *data = it87_update_device(dev);
1523 struct sensor_device_attribute_2 *sensor_attr =
1524 to_sensor_dev_attr_2(attr);
1525 int nr = sensor_attr->nr;
1526 int point = sensor_attr->index;
1528 return sprintf(buf, "%d\n",
1529 pwm_from_reg(data, data->auto_pwm[nr][point]));
1532 static ssize_t set_auto_pwm(struct device *dev, struct device_attribute *attr,
1533 const char *buf, size_t count)
1535 struct it87_data *data = dev_get_drvdata(dev);
1536 struct sensor_device_attribute_2 *sensor_attr =
1537 to_sensor_dev_attr_2(attr);
1538 int nr = sensor_attr->nr;
1539 int point = sensor_attr->index;
1543 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
1546 mutex_lock(&data->update_lock);
1547 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
1548 if (has_newer_autopwm(data))
1549 regaddr = IT87_REG_AUTO_TEMP(nr, 3);
1551 regaddr = IT87_REG_AUTO_PWM(nr, point);
1552 it87_write_value(data, regaddr, data->auto_pwm[nr][point]);
1553 mutex_unlock(&data->update_lock);
1557 static ssize_t show_auto_pwm_slope(struct device *dev,
1558 struct device_attribute *attr, char *buf)
1560 struct it87_data *data = it87_update_device(dev);
1561 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1562 int nr = sensor_attr->index;
1564 return sprintf(buf, "%d\n", data->auto_pwm[nr][1] & 0x7f);
1567 static ssize_t set_auto_pwm_slope(struct device *dev,
1568 struct device_attribute *attr,
1569 const char *buf, size_t count)
1571 struct it87_data *data = dev_get_drvdata(dev);
1572 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1573 int nr = sensor_attr->index;
1576 if (kstrtoul(buf, 10, &val) < 0 || val > 127)
1579 mutex_lock(&data->update_lock);
1580 data->auto_pwm[nr][1] = (data->auto_pwm[nr][1] & 0x80) | val;
1581 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 4),
1582 data->auto_pwm[nr][1]);
1583 mutex_unlock(&data->update_lock);
1587 static ssize_t show_auto_temp(struct device *dev, struct device_attribute *attr,
1590 struct it87_data *data = it87_update_device(dev);
1591 struct sensor_device_attribute_2 *sensor_attr =
1592 to_sensor_dev_attr_2(attr);
1593 int nr = sensor_attr->nr;
1594 int point = sensor_attr->index;
1597 if (has_old_autopwm(data) || point)
1598 reg = data->auto_temp[nr][point];
1600 reg = data->auto_temp[nr][1] - (data->auto_temp[nr][0] & 0x1f);
1602 return sprintf(buf, "%d\n", TEMP_FROM_REG(reg));
1605 static ssize_t set_auto_temp(struct device *dev, struct device_attribute *attr,
1606 const char *buf, size_t count)
1608 struct it87_data *data = dev_get_drvdata(dev);
1609 struct sensor_device_attribute_2 *sensor_attr =
1610 to_sensor_dev_attr_2(attr);
1611 int nr = sensor_attr->nr;
1612 int point = sensor_attr->index;
1616 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
1619 mutex_lock(&data->update_lock);
1620 if (has_newer_autopwm(data) && !point) {
1621 reg = data->auto_temp[nr][1] - TEMP_TO_REG(val);
1622 reg = clamp_val(reg, 0, 0x1f) | (data->auto_temp[nr][0] & 0xe0);
1623 data->auto_temp[nr][0] = reg;
1624 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 5), reg);
1626 reg = TEMP_TO_REG(val);
1627 data->auto_temp[nr][point] = reg;
1628 if (has_newer_autopwm(data))
1630 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point), reg);
1632 mutex_unlock(&data->update_lock);
1636 static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0);
1637 static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1639 static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div,
1642 static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0);
1643 static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1645 static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div,
1648 static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0);
1649 static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1651 static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div,
1654 static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0);
1655 static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1658 static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0);
1659 static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1662 static SENSOR_DEVICE_ATTR_2(fan6_input, S_IRUGO, show_fan, NULL, 5, 0);
1663 static SENSOR_DEVICE_ATTR_2(fan6_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1666 static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
1667 show_pwm_enable, set_pwm_enable, 0);
1668 static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
1669 static SENSOR_DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq,
1671 static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO,
1672 show_pwm_temp_map, set_pwm_temp_map, 0);
1673 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR,
1674 show_auto_pwm, set_auto_pwm, 0, 0);
1675 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR,
1676 show_auto_pwm, set_auto_pwm, 0, 1);
1677 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR,
1678 show_auto_pwm, set_auto_pwm, 0, 2);
1679 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO,
1680 show_auto_pwm, NULL, 0, 3);
1681 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
1682 show_auto_temp, set_auto_temp, 0, 1);
1683 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1684 show_auto_temp, set_auto_temp, 0, 0);
1685 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
1686 show_auto_temp, set_auto_temp, 0, 2);
1687 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
1688 show_auto_temp, set_auto_temp, 0, 3);
1689 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR,
1690 show_auto_temp, set_auto_temp, 0, 4);
1691 static SENSOR_DEVICE_ATTR_2(pwm1_auto_start, S_IRUGO | S_IWUSR,
1692 show_auto_pwm, set_auto_pwm, 0, 0);
1693 static SENSOR_DEVICE_ATTR(pwm1_auto_slope, S_IRUGO | S_IWUSR,
1694 show_auto_pwm_slope, set_auto_pwm_slope, 0);
1696 static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
1697 show_pwm_enable, set_pwm_enable, 1);
1698 static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
1699 static SENSOR_DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, set_pwm_freq, 1);
1700 static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO,
1701 show_pwm_temp_map, set_pwm_temp_map, 1);
1702 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR,
1703 show_auto_pwm, set_auto_pwm, 1, 0);
1704 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR,
1705 show_auto_pwm, set_auto_pwm, 1, 1);
1706 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR,
1707 show_auto_pwm, set_auto_pwm, 1, 2);
1708 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO,
1709 show_auto_pwm, NULL, 1, 3);
1710 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
1711 show_auto_temp, set_auto_temp, 1, 1);
1712 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1713 show_auto_temp, set_auto_temp, 1, 0);
1714 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
1715 show_auto_temp, set_auto_temp, 1, 2);
1716 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
1717 show_auto_temp, set_auto_temp, 1, 3);
1718 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR,
1719 show_auto_temp, set_auto_temp, 1, 4);
1720 static SENSOR_DEVICE_ATTR_2(pwm2_auto_start, S_IRUGO | S_IWUSR,
1721 show_auto_pwm, set_auto_pwm, 1, 0);
1722 static SENSOR_DEVICE_ATTR(pwm2_auto_slope, S_IRUGO | S_IWUSR,
1723 show_auto_pwm_slope, set_auto_pwm_slope, 1);
1725 static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
1726 show_pwm_enable, set_pwm_enable, 2);
1727 static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2);
1728 static SENSOR_DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL, 2);
1729 static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO,
1730 show_pwm_temp_map, set_pwm_temp_map, 2);
1731 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR,
1732 show_auto_pwm, set_auto_pwm, 2, 0);
1733 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR,
1734 show_auto_pwm, set_auto_pwm, 2, 1);
1735 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR,
1736 show_auto_pwm, set_auto_pwm, 2, 2);
1737 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO,
1738 show_auto_pwm, NULL, 2, 3);
1739 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
1740 show_auto_temp, set_auto_temp, 2, 1);
1741 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1742 show_auto_temp, set_auto_temp, 2, 0);
1743 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
1744 show_auto_temp, set_auto_temp, 2, 2);
1745 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
1746 show_auto_temp, set_auto_temp, 2, 3);
1747 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR,
1748 show_auto_temp, set_auto_temp, 2, 4);
1749 static SENSOR_DEVICE_ATTR_2(pwm3_auto_start, S_IRUGO | S_IWUSR,
1750 show_auto_pwm, set_auto_pwm, 2, 0);
1751 static SENSOR_DEVICE_ATTR(pwm3_auto_slope, S_IRUGO | S_IWUSR,
1752 show_auto_pwm_slope, set_auto_pwm_slope, 2);
1754 static SENSOR_DEVICE_ATTR(pwm4_enable, S_IRUGO | S_IWUSR,
1755 show_pwm_enable, set_pwm_enable, 3);
1756 static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 3);
1757 static SENSOR_DEVICE_ATTR(pwm4_freq, S_IRUGO, show_pwm_freq, NULL, 3);
1758 static SENSOR_DEVICE_ATTR(pwm4_auto_channels_temp, S_IRUGO,
1759 show_pwm_temp_map, set_pwm_temp_map, 3);
1760 static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp, S_IRUGO | S_IWUSR,
1761 show_auto_temp, set_auto_temp, 2, 1);
1762 static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1763 show_auto_temp, set_auto_temp, 2, 0);
1764 static SENSOR_DEVICE_ATTR_2(pwm4_auto_point2_temp, S_IRUGO | S_IWUSR,
1765 show_auto_temp, set_auto_temp, 2, 2);
1766 static SENSOR_DEVICE_ATTR_2(pwm4_auto_point3_temp, S_IRUGO | S_IWUSR,
1767 show_auto_temp, set_auto_temp, 2, 3);
1768 static SENSOR_DEVICE_ATTR_2(pwm4_auto_start, S_IRUGO | S_IWUSR,
1769 show_auto_pwm, set_auto_pwm, 3, 0);
1770 static SENSOR_DEVICE_ATTR(pwm4_auto_slope, S_IRUGO | S_IWUSR,
1771 show_auto_pwm_slope, set_auto_pwm_slope, 3);
1773 static SENSOR_DEVICE_ATTR(pwm5_enable, S_IRUGO | S_IWUSR,
1774 show_pwm_enable, set_pwm_enable, 4);
1775 static SENSOR_DEVICE_ATTR(pwm5, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 4);
1776 static SENSOR_DEVICE_ATTR(pwm5_freq, S_IRUGO, show_pwm_freq, NULL, 4);
1777 static SENSOR_DEVICE_ATTR(pwm5_auto_channels_temp, S_IRUGO,
1778 show_pwm_temp_map, set_pwm_temp_map, 4);
1779 static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp, S_IRUGO | S_IWUSR,
1780 show_auto_temp, set_auto_temp, 2, 1);
1781 static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1782 show_auto_temp, set_auto_temp, 2, 0);
1783 static SENSOR_DEVICE_ATTR_2(pwm5_auto_point2_temp, S_IRUGO | S_IWUSR,
1784 show_auto_temp, set_auto_temp, 2, 2);
1785 static SENSOR_DEVICE_ATTR_2(pwm5_auto_point3_temp, S_IRUGO | S_IWUSR,
1786 show_auto_temp, set_auto_temp, 2, 3);
1787 static SENSOR_DEVICE_ATTR_2(pwm5_auto_start, S_IRUGO | S_IWUSR,
1788 show_auto_pwm, set_auto_pwm, 4, 0);
1789 static SENSOR_DEVICE_ATTR(pwm5_auto_slope, S_IRUGO | S_IWUSR,
1790 show_auto_pwm_slope, set_auto_pwm_slope, 4);
1792 static SENSOR_DEVICE_ATTR(pwm6_enable, S_IRUGO | S_IWUSR,
1793 show_pwm_enable, set_pwm_enable, 5);
1794 static SENSOR_DEVICE_ATTR(pwm6, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 5);
1795 static SENSOR_DEVICE_ATTR(pwm6_freq, S_IRUGO, show_pwm_freq, NULL, 5);
1796 static SENSOR_DEVICE_ATTR(pwm6_auto_channels_temp, S_IRUGO,
1797 show_pwm_temp_map, set_pwm_temp_map, 5);
1798 static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp, S_IRUGO | S_IWUSR,
1799 show_auto_temp, set_auto_temp, 2, 1);
1800 static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1801 show_auto_temp, set_auto_temp, 2, 0);
1802 static SENSOR_DEVICE_ATTR_2(pwm6_auto_point2_temp, S_IRUGO | S_IWUSR,
1803 show_auto_temp, set_auto_temp, 2, 2);
1804 static SENSOR_DEVICE_ATTR_2(pwm6_auto_point3_temp, S_IRUGO | S_IWUSR,
1805 show_auto_temp, set_auto_temp, 2, 3);
1806 static SENSOR_DEVICE_ATTR_2(pwm6_auto_start, S_IRUGO | S_IWUSR,
1807 show_auto_pwm, set_auto_pwm, 5, 0);
1808 static SENSOR_DEVICE_ATTR(pwm6_auto_slope, S_IRUGO | S_IWUSR,
1809 show_auto_pwm_slope, set_auto_pwm_slope, 5);
1812 static ssize_t alarms_show(struct device *dev, struct device_attribute *attr,
1815 struct it87_data *data = it87_update_device(dev);
1817 return sprintf(buf, "%u\n", data->alarms);
1819 static DEVICE_ATTR_RO(alarms);
1821 static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
1824 struct it87_data *data = it87_update_device(dev);
1825 int bitnr = to_sensor_dev_attr(attr)->index;
1827 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1830 static ssize_t clear_intrusion(struct device *dev,
1831 struct device_attribute *attr, const char *buf,
1834 struct it87_data *data = dev_get_drvdata(dev);
1838 if (kstrtol(buf, 10, &val) < 0 || val != 0)
1841 mutex_lock(&data->update_lock);
1842 config = it87_read_value(data, IT87_REG_CONFIG);
1847 it87_write_value(data, IT87_REG_CONFIG, config);
1848 /* Invalidate cache to force re-read */
1849 data->valid = false;
1851 mutex_unlock(&data->update_lock);
1856 static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1857 static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1858 static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1859 static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1860 static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1861 static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1862 static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1863 static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1864 static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1865 static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1866 static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1867 static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1868 static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
1869 static SENSOR_DEVICE_ATTR(fan6_alarm, S_IRUGO, show_alarm, NULL, 7);
1870 static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1871 static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1872 static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
1873 static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1874 show_alarm, clear_intrusion, 4);
1876 static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
1879 struct it87_data *data = it87_update_device(dev);
1880 int bitnr = to_sensor_dev_attr(attr)->index;
1882 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1885 static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
1886 const char *buf, size_t count)
1888 int bitnr = to_sensor_dev_attr(attr)->index;
1889 struct it87_data *data = dev_get_drvdata(dev);
1892 if (kstrtol(buf, 10, &val) < 0 || (val != 0 && val != 1))
1895 mutex_lock(&data->update_lock);
1896 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1898 data->beeps |= BIT(bitnr);
1900 data->beeps &= ~BIT(bitnr);
1901 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1902 mutex_unlock(&data->update_lock);
1906 static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1907 show_beep, set_beep, 1);
1908 static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1909 static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1910 static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1911 static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1912 static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1913 static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1914 static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1915 /* fanX_beep writability is set later */
1916 static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1917 static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1918 static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1919 static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1920 static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
1921 static SENSOR_DEVICE_ATTR(fan6_beep, S_IRUGO, show_beep, set_beep, 0);
1922 static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1923 show_beep, set_beep, 2);
1924 static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1925 static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1927 static ssize_t vrm_show(struct device *dev, struct device_attribute *attr,
1930 struct it87_data *data = dev_get_drvdata(dev);
1932 return sprintf(buf, "%u\n", data->vrm);
1935 static ssize_t vrm_store(struct device *dev, struct device_attribute *attr,
1936 const char *buf, size_t count)
1938 struct it87_data *data = dev_get_drvdata(dev);
1941 if (kstrtoul(buf, 10, &val) < 0)
1948 static DEVICE_ATTR_RW(vrm);
1950 static ssize_t cpu0_vid_show(struct device *dev,
1951 struct device_attribute *attr, char *buf)
1953 struct it87_data *data = it87_update_device(dev);
1955 return sprintf(buf, "%ld\n", (long)vid_from_reg(data->vid, data->vrm));
1957 static DEVICE_ATTR_RO(cpu0_vid);
1959 static ssize_t show_label(struct device *dev, struct device_attribute *attr,
1962 static const char * const labels[] = {
1968 static const char * const labels_it8721[] = {
1974 struct it87_data *data = dev_get_drvdata(dev);
1975 int nr = to_sensor_dev_attr(attr)->index;
1978 if (has_vin3_5v(data) && nr == 0)
1980 else if (has_12mv_adc(data) || has_10_9mv_adc(data))
1981 label = labels_it8721[nr];
1985 return sprintf(buf, "%s\n", label);
1987 static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1988 static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1989 static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
1991 static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 3);
1993 static umode_t it87_in_is_visible(struct kobject *kobj,
1994 struct attribute *attr, int index)
1996 struct device *dev = kobj_to_dev(kobj);
1997 struct it87_data *data = dev_get_drvdata(dev);
1998 int i = index / 5; /* voltage index */
1999 int a = index % 5; /* attribute index */
2001 if (index >= 40) { /* in8 and higher only have input attributes */
2006 if (!(data->has_in & BIT(i)))
2009 if (a == 4 && !data->has_beep)
2015 static struct attribute *it87_attributes_in[] = {
2016 &sensor_dev_attr_in0_input.dev_attr.attr,
2017 &sensor_dev_attr_in0_min.dev_attr.attr,
2018 &sensor_dev_attr_in0_max.dev_attr.attr,
2019 &sensor_dev_attr_in0_alarm.dev_attr.attr,
2020 &sensor_dev_attr_in0_beep.dev_attr.attr, /* 4 */
2022 &sensor_dev_attr_in1_input.dev_attr.attr,
2023 &sensor_dev_attr_in1_min.dev_attr.attr,
2024 &sensor_dev_attr_in1_max.dev_attr.attr,
2025 &sensor_dev_attr_in1_alarm.dev_attr.attr,
2026 &sensor_dev_attr_in1_beep.dev_attr.attr, /* 9 */
2028 &sensor_dev_attr_in2_input.dev_attr.attr,
2029 &sensor_dev_attr_in2_min.dev_attr.attr,
2030 &sensor_dev_attr_in2_max.dev_attr.attr,
2031 &sensor_dev_attr_in2_alarm.dev_attr.attr,
2032 &sensor_dev_attr_in2_beep.dev_attr.attr, /* 14 */
2034 &sensor_dev_attr_in3_input.dev_attr.attr,
2035 &sensor_dev_attr_in3_min.dev_attr.attr,
2036 &sensor_dev_attr_in3_max.dev_attr.attr,
2037 &sensor_dev_attr_in3_alarm.dev_attr.attr,
2038 &sensor_dev_attr_in3_beep.dev_attr.attr, /* 19 */
2040 &sensor_dev_attr_in4_input.dev_attr.attr,
2041 &sensor_dev_attr_in4_min.dev_attr.attr,
2042 &sensor_dev_attr_in4_max.dev_attr.attr,
2043 &sensor_dev_attr_in4_alarm.dev_attr.attr,
2044 &sensor_dev_attr_in4_beep.dev_attr.attr, /* 24 */
2046 &sensor_dev_attr_in5_input.dev_attr.attr,
2047 &sensor_dev_attr_in5_min.dev_attr.attr,
2048 &sensor_dev_attr_in5_max.dev_attr.attr,
2049 &sensor_dev_attr_in5_alarm.dev_attr.attr,
2050 &sensor_dev_attr_in5_beep.dev_attr.attr, /* 29 */
2052 &sensor_dev_attr_in6_input.dev_attr.attr,
2053 &sensor_dev_attr_in6_min.dev_attr.attr,
2054 &sensor_dev_attr_in6_max.dev_attr.attr,
2055 &sensor_dev_attr_in6_alarm.dev_attr.attr,
2056 &sensor_dev_attr_in6_beep.dev_attr.attr, /* 34 */
2058 &sensor_dev_attr_in7_input.dev_attr.attr,
2059 &sensor_dev_attr_in7_min.dev_attr.attr,
2060 &sensor_dev_attr_in7_max.dev_attr.attr,
2061 &sensor_dev_attr_in7_alarm.dev_attr.attr,
2062 &sensor_dev_attr_in7_beep.dev_attr.attr, /* 39 */
2064 &sensor_dev_attr_in8_input.dev_attr.attr, /* 40 */
2065 &sensor_dev_attr_in9_input.dev_attr.attr,
2066 &sensor_dev_attr_in10_input.dev_attr.attr,
2067 &sensor_dev_attr_in11_input.dev_attr.attr,
2068 &sensor_dev_attr_in12_input.dev_attr.attr,
2072 static const struct attribute_group it87_group_in = {
2073 .attrs = it87_attributes_in,
2074 .is_visible = it87_in_is_visible,
2077 static umode_t it87_temp_is_visible(struct kobject *kobj,
2078 struct attribute *attr, int index)
2080 struct device *dev = kobj_to_dev(kobj);
2081 struct it87_data *data = dev_get_drvdata(dev);
2082 int i = index / 7; /* temperature index */
2083 int a = index % 7; /* attribute index */
2090 if (!(data->has_temp & BIT(i)))
2093 if (a == 5 && !has_temp_offset(data))
2096 if (a == 6 && !data->has_beep)
2102 static struct attribute *it87_attributes_temp[] = {
2103 &sensor_dev_attr_temp1_input.dev_attr.attr,
2104 &sensor_dev_attr_temp1_max.dev_attr.attr,
2105 &sensor_dev_attr_temp1_min.dev_attr.attr,
2106 &sensor_dev_attr_temp1_type.dev_attr.attr,
2107 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
2108 &sensor_dev_attr_temp1_offset.dev_attr.attr, /* 5 */
2109 &sensor_dev_attr_temp1_beep.dev_attr.attr, /* 6 */
2111 &sensor_dev_attr_temp2_input.dev_attr.attr, /* 7 */
2112 &sensor_dev_attr_temp2_max.dev_attr.attr,
2113 &sensor_dev_attr_temp2_min.dev_attr.attr,
2114 &sensor_dev_attr_temp2_type.dev_attr.attr,
2115 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
2116 &sensor_dev_attr_temp2_offset.dev_attr.attr,
2117 &sensor_dev_attr_temp2_beep.dev_attr.attr,
2119 &sensor_dev_attr_temp3_input.dev_attr.attr, /* 14 */
2120 &sensor_dev_attr_temp3_max.dev_attr.attr,
2121 &sensor_dev_attr_temp3_min.dev_attr.attr,
2122 &sensor_dev_attr_temp3_type.dev_attr.attr,
2123 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
2124 &sensor_dev_attr_temp3_offset.dev_attr.attr,
2125 &sensor_dev_attr_temp3_beep.dev_attr.attr,
2127 &sensor_dev_attr_temp4_input.dev_attr.attr, /* 21 */
2128 &sensor_dev_attr_temp5_input.dev_attr.attr,
2129 &sensor_dev_attr_temp6_input.dev_attr.attr,
2133 static const struct attribute_group it87_group_temp = {
2134 .attrs = it87_attributes_temp,
2135 .is_visible = it87_temp_is_visible,
2138 static umode_t it87_is_visible(struct kobject *kobj,
2139 struct attribute *attr, int index)
2141 struct device *dev = kobj_to_dev(kobj);
2142 struct it87_data *data = dev_get_drvdata(dev);
2144 if ((index == 2 || index == 3) && !data->has_vid)
2147 if (index > 3 && !(data->in_internal & BIT(index - 4)))
2153 static struct attribute *it87_attributes[] = {
2154 &dev_attr_alarms.attr,
2155 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
2156 &dev_attr_vrm.attr, /* 2 */
2157 &dev_attr_cpu0_vid.attr, /* 3 */
2158 &sensor_dev_attr_in3_label.dev_attr.attr, /* 4 .. 7 */
2159 &sensor_dev_attr_in7_label.dev_attr.attr,
2160 &sensor_dev_attr_in8_label.dev_attr.attr,
2161 &sensor_dev_attr_in9_label.dev_attr.attr,
2165 static const struct attribute_group it87_group = {
2166 .attrs = it87_attributes,
2167 .is_visible = it87_is_visible,
2170 static umode_t it87_fan_is_visible(struct kobject *kobj,
2171 struct attribute *attr, int index)
2173 struct device *dev = kobj_to_dev(kobj);
2174 struct it87_data *data = dev_get_drvdata(dev);
2175 int i = index / 5; /* fan index */
2176 int a = index % 5; /* attribute index */
2178 if (index >= 15) { /* fan 4..6 don't have divisor attributes */
2179 i = (index - 15) / 4 + 3;
2180 a = (index - 15) % 4;
2183 if (!(data->has_fan & BIT(i)))
2186 if (a == 3) { /* beep */
2187 if (!data->has_beep)
2189 /* first fan beep attribute is writable */
2190 if (i == __ffs(data->has_fan))
2191 return attr->mode | S_IWUSR;
2194 if (a == 4 && has_16bit_fans(data)) /* divisor */
2200 static struct attribute *it87_attributes_fan[] = {
2201 &sensor_dev_attr_fan1_input.dev_attr.attr,
2202 &sensor_dev_attr_fan1_min.dev_attr.attr,
2203 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
2204 &sensor_dev_attr_fan1_beep.dev_attr.attr, /* 3 */
2205 &sensor_dev_attr_fan1_div.dev_attr.attr, /* 4 */
2207 &sensor_dev_attr_fan2_input.dev_attr.attr,
2208 &sensor_dev_attr_fan2_min.dev_attr.attr,
2209 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
2210 &sensor_dev_attr_fan2_beep.dev_attr.attr,
2211 &sensor_dev_attr_fan2_div.dev_attr.attr, /* 9 */
2213 &sensor_dev_attr_fan3_input.dev_attr.attr,
2214 &sensor_dev_attr_fan3_min.dev_attr.attr,
2215 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
2216 &sensor_dev_attr_fan3_beep.dev_attr.attr,
2217 &sensor_dev_attr_fan3_div.dev_attr.attr, /* 14 */
2219 &sensor_dev_attr_fan4_input.dev_attr.attr, /* 15 */
2220 &sensor_dev_attr_fan4_min.dev_attr.attr,
2221 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
2222 &sensor_dev_attr_fan4_beep.dev_attr.attr,
2224 &sensor_dev_attr_fan5_input.dev_attr.attr, /* 19 */
2225 &sensor_dev_attr_fan5_min.dev_attr.attr,
2226 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
2227 &sensor_dev_attr_fan5_beep.dev_attr.attr,
2229 &sensor_dev_attr_fan6_input.dev_attr.attr, /* 23 */
2230 &sensor_dev_attr_fan6_min.dev_attr.attr,
2231 &sensor_dev_attr_fan6_alarm.dev_attr.attr,
2232 &sensor_dev_attr_fan6_beep.dev_attr.attr,
2236 static const struct attribute_group it87_group_fan = {
2237 .attrs = it87_attributes_fan,
2238 .is_visible = it87_fan_is_visible,
2241 static umode_t it87_pwm_is_visible(struct kobject *kobj,
2242 struct attribute *attr, int index)
2244 struct device *dev = kobj_to_dev(kobj);
2245 struct it87_data *data = dev_get_drvdata(dev);
2246 int i = index / 4; /* pwm index */
2247 int a = index % 4; /* attribute index */
2249 if (!(data->has_pwm & BIT(i)))
2252 /* pwmX_auto_channels_temp is only writable if auto pwm is supported */
2253 if (a == 3 && (has_old_autopwm(data) || has_newer_autopwm(data)))
2254 return attr->mode | S_IWUSR;
2256 /* pwm2_freq is writable if there are two pwm frequency selects */
2257 if (has_pwm_freq2(data) && i == 1 && a == 2)
2258 return attr->mode | S_IWUSR;
2263 static struct attribute *it87_attributes_pwm[] = {
2264 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
2265 &sensor_dev_attr_pwm1.dev_attr.attr,
2266 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
2267 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
2269 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
2270 &sensor_dev_attr_pwm2.dev_attr.attr,
2271 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
2272 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
2274 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
2275 &sensor_dev_attr_pwm3.dev_attr.attr,
2276 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
2277 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
2279 &sensor_dev_attr_pwm4_enable.dev_attr.attr,
2280 &sensor_dev_attr_pwm4.dev_attr.attr,
2281 &sensor_dev_attr_pwm4_freq.dev_attr.attr,
2282 &sensor_dev_attr_pwm4_auto_channels_temp.dev_attr.attr,
2284 &sensor_dev_attr_pwm5_enable.dev_attr.attr,
2285 &sensor_dev_attr_pwm5.dev_attr.attr,
2286 &sensor_dev_attr_pwm5_freq.dev_attr.attr,
2287 &sensor_dev_attr_pwm5_auto_channels_temp.dev_attr.attr,
2289 &sensor_dev_attr_pwm6_enable.dev_attr.attr,
2290 &sensor_dev_attr_pwm6.dev_attr.attr,
2291 &sensor_dev_attr_pwm6_freq.dev_attr.attr,
2292 &sensor_dev_attr_pwm6_auto_channels_temp.dev_attr.attr,
2297 static const struct attribute_group it87_group_pwm = {
2298 .attrs = it87_attributes_pwm,
2299 .is_visible = it87_pwm_is_visible,
2302 static umode_t it87_auto_pwm_is_visible(struct kobject *kobj,
2303 struct attribute *attr, int index)
2305 struct device *dev = kobj_to_dev(kobj);
2306 struct it87_data *data = dev_get_drvdata(dev);
2307 int i = index / 11; /* pwm index */
2308 int a = index % 11; /* attribute index */
2310 if (index >= 33) { /* pwm 4..6 */
2311 i = (index - 33) / 6 + 3;
2312 a = (index - 33) % 6 + 4;
2315 if (!(data->has_pwm & BIT(i)))
2318 if (has_newer_autopwm(data)) {
2319 if (a < 4) /* no auto point pwm */
2321 if (a == 8) /* no auto_point4 */
2324 if (has_old_autopwm(data)) {
2325 if (a >= 9) /* no pwm_auto_start, pwm_auto_slope */
2332 static struct attribute *it87_attributes_auto_pwm[] = {
2333 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
2334 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
2335 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
2336 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
2337 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
2338 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
2339 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
2340 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
2341 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
2342 &sensor_dev_attr_pwm1_auto_start.dev_attr.attr,
2343 &sensor_dev_attr_pwm1_auto_slope.dev_attr.attr,
2345 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr, /* 11 */
2346 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
2347 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
2348 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
2349 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
2350 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
2351 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
2352 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
2353 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
2354 &sensor_dev_attr_pwm2_auto_start.dev_attr.attr,
2355 &sensor_dev_attr_pwm2_auto_slope.dev_attr.attr,
2357 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr, /* 22 */
2358 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
2359 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
2360 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
2361 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
2362 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
2363 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
2364 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
2365 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
2366 &sensor_dev_attr_pwm3_auto_start.dev_attr.attr,
2367 &sensor_dev_attr_pwm3_auto_slope.dev_attr.attr,
2369 &sensor_dev_attr_pwm4_auto_point1_temp.dev_attr.attr, /* 33 */
2370 &sensor_dev_attr_pwm4_auto_point1_temp_hyst.dev_attr.attr,
2371 &sensor_dev_attr_pwm4_auto_point2_temp.dev_attr.attr,
2372 &sensor_dev_attr_pwm4_auto_point3_temp.dev_attr.attr,
2373 &sensor_dev_attr_pwm4_auto_start.dev_attr.attr,
2374 &sensor_dev_attr_pwm4_auto_slope.dev_attr.attr,
2376 &sensor_dev_attr_pwm5_auto_point1_temp.dev_attr.attr,
2377 &sensor_dev_attr_pwm5_auto_point1_temp_hyst.dev_attr.attr,
2378 &sensor_dev_attr_pwm5_auto_point2_temp.dev_attr.attr,
2379 &sensor_dev_attr_pwm5_auto_point3_temp.dev_attr.attr,
2380 &sensor_dev_attr_pwm5_auto_start.dev_attr.attr,
2381 &sensor_dev_attr_pwm5_auto_slope.dev_attr.attr,
2383 &sensor_dev_attr_pwm6_auto_point1_temp.dev_attr.attr,
2384 &sensor_dev_attr_pwm6_auto_point1_temp_hyst.dev_attr.attr,
2385 &sensor_dev_attr_pwm6_auto_point2_temp.dev_attr.attr,
2386 &sensor_dev_attr_pwm6_auto_point3_temp.dev_attr.attr,
2387 &sensor_dev_attr_pwm6_auto_start.dev_attr.attr,
2388 &sensor_dev_attr_pwm6_auto_slope.dev_attr.attr,
2393 static const struct attribute_group it87_group_auto_pwm = {
2394 .attrs = it87_attributes_auto_pwm,
2395 .is_visible = it87_auto_pwm_is_visible,
2398 /* SuperIO detection - will change isa_address if a chip is found */
2399 static int __init it87_find(int sioaddr, unsigned short *address,
2400 struct it87_sio_data *sio_data)
2404 const struct it87_devices *config;
2406 err = superio_enter(sioaddr);
2411 chip_type = superio_inw(sioaddr, DEVID);
2412 /* check first for a valid chip before forcing chip id */
2413 if (chip_type == 0xffff)
2417 chip_type = force_id;
2419 switch (chip_type) {
2421 sio_data->type = it87;
2424 sio_data->type = it8712;
2428 sio_data->type = it8716;
2431 sio_data->type = it8718;
2434 sio_data->type = it8720;
2437 sio_data->type = it8721;
2440 sio_data->type = it8728;
2443 sio_data->type = it8732;
2446 sio_data->type = it8792;
2449 sio_data->type = it8771;
2452 sio_data->type = it8772;
2455 sio_data->type = it8781;
2458 sio_data->type = it8782;
2461 sio_data->type = it8783;
2464 sio_data->type = it8786;
2467 sio_data->type = it8790;
2471 sio_data->type = it8603;
2474 sio_data->type = it8620;
2477 sio_data->type = it8622;
2480 sio_data->type = it8628;
2482 case 0xffff: /* No device at all */
2485 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
2489 superio_select(sioaddr, PME);
2490 if (!(superio_inb(sioaddr, IT87_ACT_REG) & 0x01)) {
2491 pr_info("Device not activated, skipping\n");
2495 *address = superio_inw(sioaddr, IT87_BASE_REG) & ~(IT87_EXTENT - 1);
2496 if (*address == 0) {
2497 pr_info("Base address not set, skipping\n");
2502 sio_data->sioaddr = sioaddr;
2503 sio_data->revision = superio_inb(sioaddr, DEVREV) & 0x0f;
2504 pr_info("Found IT%04x%s chip at 0x%x, revision %d\n", chip_type,
2505 it87_devices[sio_data->type].suffix,
2506 *address, sio_data->revision);
2508 config = &it87_devices[sio_data->type];
2510 /* in7 (VSB or VCCH5V) is always internal on some chips */
2511 if (has_in7_internal(config))
2512 sio_data->internal |= BIT(1);
2514 /* in8 (Vbat) is always internal */
2515 sio_data->internal |= BIT(2);
2517 /* in9 (AVCC3), always internal if supported */
2518 if (has_avcc3(config))
2519 sio_data->internal |= BIT(3); /* in9 is AVCC */
2521 sio_data->skip_in |= BIT(9);
2523 if (!has_five_pwm(config))
2524 sio_data->skip_pwm |= BIT(3) | BIT(4) | BIT(5);
2525 else if (!has_six_pwm(config))
2526 sio_data->skip_pwm |= BIT(5);
2528 if (!has_vid(config))
2529 sio_data->skip_vid = 1;
2531 /* Read GPIO config and VID value from LDN 7 (GPIO) */
2532 if (sio_data->type == it87) {
2533 /* The IT8705F has a different LD number for GPIO */
2534 superio_select(sioaddr, 5);
2535 sio_data->beep_pin = superio_inb(sioaddr,
2536 IT87_SIO_BEEP_PIN_REG) & 0x3f;
2537 } else if (sio_data->type == it8783) {
2538 int reg25, reg27, reg2a, reg2c, regef;
2540 superio_select(sioaddr, GPIO);
2542 reg25 = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2543 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2544 reg2a = superio_inb(sioaddr, IT87_SIO_PINX1_REG);
2545 reg2c = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2546 regef = superio_inb(sioaddr, IT87_SIO_SPI_REG);
2548 /* Check if fan3 is there or not */
2549 if ((reg27 & BIT(0)) || !(reg2c & BIT(2)))
2550 sio_data->skip_fan |= BIT(2);
2551 if ((reg25 & BIT(4)) ||
2552 (!(reg2a & BIT(1)) && (regef & BIT(0))))
2553 sio_data->skip_pwm |= BIT(2);
2555 /* Check if fan2 is there or not */
2557 sio_data->skip_fan |= BIT(1);
2559 sio_data->skip_pwm |= BIT(1);
2562 if ((reg27 & BIT(0)) || (reg2c & BIT(2)))
2563 sio_data->skip_in |= BIT(5); /* No VIN5 */
2567 sio_data->skip_in |= BIT(6); /* No VIN6 */
2571 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
2573 if (reg27 & BIT(2)) {
2575 * The data sheet is a bit unclear regarding the
2576 * internal voltage divider for VCCH5V. It says
2577 * "This bit enables and switches VIN7 (pin 91) to the
2578 * internal voltage divider for VCCH5V".
2579 * This is different to other chips, where the internal
2580 * voltage divider would connect VIN7 to an internal
2581 * voltage source. Maybe that is the case here as well.
2583 * Since we don't know for sure, re-route it if that is
2584 * not the case, and ask the user to report if the
2585 * resulting voltage is sane.
2587 if (!(reg2c & BIT(1))) {
2589 superio_outb(sioaddr, IT87_SIO_PINX2_REG,
2591 sio_data->need_in7_reroute = true;
2592 pr_notice("Routing internal VCCH5V to in7.\n");
2594 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
2595 pr_notice("Please report if it displays a reasonable voltage.\n");
2599 sio_data->internal |= BIT(0);
2601 sio_data->internal |= BIT(1);
2603 sio_data->beep_pin = superio_inb(sioaddr,
2604 IT87_SIO_BEEP_PIN_REG) & 0x3f;
2605 } else if (sio_data->type == it8603) {
2608 superio_select(sioaddr, GPIO);
2610 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2612 /* Check if fan3 is there or not */
2614 sio_data->skip_pwm |= BIT(2);
2616 sio_data->skip_fan |= BIT(2);
2618 /* Check if fan2 is there or not */
2619 reg29 = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
2621 sio_data->skip_pwm |= BIT(1);
2623 sio_data->skip_fan |= BIT(1);
2625 sio_data->skip_in |= BIT(5); /* No VIN5 */
2626 sio_data->skip_in |= BIT(6); /* No VIN6 */
2628 sio_data->beep_pin = superio_inb(sioaddr,
2629 IT87_SIO_BEEP_PIN_REG) & 0x3f;
2630 } else if (sio_data->type == it8620 || sio_data->type == it8628) {
2633 superio_select(sioaddr, GPIO);
2635 /* Check for pwm5 */
2636 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2638 sio_data->skip_pwm |= BIT(4);
2640 /* Check for fan4, fan5 */
2641 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
2642 if (!(reg & BIT(5)))
2643 sio_data->skip_fan |= BIT(3);
2644 if (!(reg & BIT(4)))
2645 sio_data->skip_fan |= BIT(4);
2647 /* Check for pwm3, fan3 */
2648 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2650 sio_data->skip_pwm |= BIT(2);
2652 sio_data->skip_fan |= BIT(2);
2654 /* Check for pwm4 */
2655 reg = superio_inb(sioaddr, IT87_SIO_GPIO4_REG);
2657 sio_data->skip_pwm |= BIT(3);
2659 /* Check for pwm2, fan2 */
2660 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
2662 sio_data->skip_pwm |= BIT(1);
2664 sio_data->skip_fan |= BIT(1);
2665 /* Check for pwm6, fan6 */
2666 if (!(reg & BIT(7))) {
2667 sio_data->skip_pwm |= BIT(5);
2668 sio_data->skip_fan |= BIT(5);
2671 /* Check if AVCC is on VIN3 */
2672 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2674 sio_data->internal |= BIT(0);
2676 sio_data->skip_in |= BIT(9);
2678 sio_data->beep_pin = superio_inb(sioaddr,
2679 IT87_SIO_BEEP_PIN_REG) & 0x3f;
2680 } else if (sio_data->type == it8622) {
2683 superio_select(sioaddr, GPIO);
2685 /* Check for pwm4, fan4 */
2686 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2688 sio_data->skip_fan |= BIT(3);
2690 sio_data->skip_pwm |= BIT(3);
2692 /* Check for pwm3, fan3, pwm5, fan5 */
2693 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2695 sio_data->skip_pwm |= BIT(2);
2697 sio_data->skip_fan |= BIT(2);
2699 sio_data->skip_pwm |= BIT(4);
2701 sio_data->skip_fan |= BIT(4);
2703 /* Check for pwm2, fan2 */
2704 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
2706 sio_data->skip_pwm |= BIT(1);
2708 sio_data->skip_fan |= BIT(1);
2710 /* Check for AVCC */
2711 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2712 if (!(reg & BIT(0)))
2713 sio_data->skip_in |= BIT(9);
2715 sio_data->beep_pin = superio_inb(sioaddr,
2716 IT87_SIO_BEEP_PIN_REG) & 0x3f;
2721 superio_select(sioaddr, GPIO);
2723 /* Check for fan4, fan5 */
2724 if (has_five_fans(config)) {
2725 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
2726 switch (sio_data->type) {
2729 sio_data->skip_fan |= BIT(3);
2731 sio_data->skip_fan |= BIT(4);
2736 if (!(reg & BIT(5)))
2737 sio_data->skip_fan |= BIT(3);
2738 if (!(reg & BIT(4)))
2739 sio_data->skip_fan |= BIT(4);
2746 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2747 if (!sio_data->skip_vid) {
2748 /* We need at least 4 VID pins */
2750 pr_info("VID is disabled (pins used for GPIO)\n");
2751 sio_data->skip_vid = 1;
2755 /* Check if fan3 is there or not */
2757 sio_data->skip_pwm |= BIT(2);
2759 sio_data->skip_fan |= BIT(2);
2761 /* Check if fan2 is there or not */
2762 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
2764 sio_data->skip_pwm |= BIT(1);
2766 sio_data->skip_fan |= BIT(1);
2768 if ((sio_data->type == it8718 || sio_data->type == it8720) &&
2769 !(sio_data->skip_vid))
2770 sio_data->vid_value = superio_inb(sioaddr,
2773 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2775 uart6 = sio_data->type == it8782 && (reg & BIT(2));
2778 * The IT8720F has no VIN7 pin, so VCCH5V should always be
2779 * routed internally to VIN7 with an internal divider.
2780 * Curiously, there still is a configuration bit to control
2781 * this, which means it can be set incorrectly. And even
2782 * more curiously, many boards out there are improperly
2783 * configured, even though the IT8720F datasheet claims
2784 * that the internal routing of VCCH5V to VIN7 is the default
2785 * setting. So we force the internal routing in this case.
2787 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
2788 * If UART6 is enabled, re-route VIN7 to the internal divider
2789 * if that is not already the case.
2791 if ((sio_data->type == it8720 || uart6) && !(reg & BIT(1))) {
2793 superio_outb(sioaddr, IT87_SIO_PINX2_REG, reg);
2794 sio_data->need_in7_reroute = true;
2795 pr_notice("Routing internal VCCH5V to in7\n");
2798 sio_data->internal |= BIT(0);
2800 sio_data->internal |= BIT(1);
2803 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
2804 * While VIN7 can be routed to the internal voltage divider,
2805 * VIN5 and VIN6 are not available if UART6 is enabled.
2807 * Also, temp3 is not available if UART6 is enabled and TEMPIN3
2808 * is the temperature source. Since we can not read the
2809 * temperature source here, skip_temp is preliminary.
2812 sio_data->skip_in |= BIT(5) | BIT(6);
2813 sio_data->skip_temp |= BIT(2);
2816 sio_data->beep_pin = superio_inb(sioaddr,
2817 IT87_SIO_BEEP_PIN_REG) & 0x3f;
2819 if (sio_data->beep_pin)
2820 pr_info("Beeping is supported\n");
2822 /* Set values based on DMI matches */
2824 sio_data->skip_pwm |= dmi_data->skip_pwm;
2827 superio_exit(sioaddr);
2832 * Some chips seem to have default value 0xff for all limit
2833 * registers. For low voltage limits it makes no sense and triggers
2834 * alarms, so change to 0 instead. For high temperature limits, it
2835 * means -1 degree C, which surprisingly doesn't trigger an alarm,
2836 * but is still confusing, so change to 127 degrees C.
2838 static void it87_check_limit_regs(struct it87_data *data)
2842 for (i = 0; i < NUM_VIN_LIMIT; i++) {
2843 reg = it87_read_value(data, IT87_REG_VIN_MIN(i));
2845 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
2847 for (i = 0; i < NUM_TEMP_LIMIT; i++) {
2848 reg = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
2850 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
2854 /* Check if voltage monitors are reset manually or by some reason */
2855 static void it87_check_voltage_monitors_reset(struct it87_data *data)
2859 reg = it87_read_value(data, IT87_REG_VIN_ENABLE);
2860 if ((reg & 0xff) == 0) {
2861 /* Enable all voltage monitors */
2862 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
2866 /* Check if tachometers are reset manually or by some reason */
2867 static void it87_check_tachometers_reset(struct platform_device *pdev)
2869 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
2870 struct it87_data *data = platform_get_drvdata(pdev);
2871 u8 mask, fan_main_ctrl;
2873 mask = 0x70 & ~(sio_data->skip_fan << 4);
2874 fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
2875 if ((fan_main_ctrl & mask) == 0) {
2876 /* Enable all fan tachometers */
2877 fan_main_ctrl |= mask;
2878 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2883 /* Set tachometers to 16-bit mode if needed */
2884 static void it87_check_tachometers_16bit_mode(struct platform_device *pdev)
2886 struct it87_data *data = platform_get_drvdata(pdev);
2889 if (!has_fan16_config(data))
2892 reg = it87_read_value(data, IT87_REG_FAN_16BIT);
2893 if (~reg & 0x07 & data->has_fan) {
2895 "Setting fan1-3 to 16-bit mode\n");
2896 it87_write_value(data, IT87_REG_FAN_16BIT,
2901 static void it87_start_monitoring(struct it87_data *data)
2903 it87_write_value(data, IT87_REG_CONFIG,
2904 (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
2905 | (update_vbat ? 0x41 : 0x01));
2908 /* Called when we have found a new IT87. */
2909 static void it87_init_device(struct platform_device *pdev)
2911 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
2912 struct it87_data *data = platform_get_drvdata(pdev);
2916 * For each PWM channel:
2917 * - If it is in automatic mode, setting to manual mode should set
2918 * the fan to full speed by default.
2919 * - If it is in manual mode, we need a mapping to temperature
2920 * channels to use when later setting to automatic mode later.
2921 * Use a 1:1 mapping by default (we are clueless.)
2922 * In both cases, the value can (and should) be changed by the user
2923 * prior to switching to a different mode.
2924 * Note that this is no longer needed for the IT8721F and later, as
2925 * these have separate registers for the temperature mapping and the
2926 * manual duty cycle.
2928 for (i = 0; i < NUM_AUTO_PWM; i++) {
2929 data->pwm_temp_map[i] = i;
2930 data->pwm_duty[i] = 0x7f; /* Full speed */
2931 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
2934 it87_check_limit_regs(data);
2937 * Temperature channels are not forcibly enabled, as they can be
2938 * set to two different sensor types and we can't guess which one
2939 * is correct for a given system. These channels can be enabled at
2940 * run-time through the temp{1-3}_type sysfs accessors if needed.
2943 it87_check_voltage_monitors_reset(data);
2945 it87_check_tachometers_reset(pdev);
2947 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
2948 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
2950 it87_check_tachometers_16bit_mode(pdev);
2952 /* Check for additional fans */
2953 if (has_five_fans(data)) {
2954 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
2957 data->has_fan |= BIT(3); /* fan4 enabled */
2959 data->has_fan |= BIT(4); /* fan5 enabled */
2960 if (has_six_fans(data) && (tmp & BIT(2)))
2961 data->has_fan |= BIT(5); /* fan6 enabled */
2964 /* Fan input pins may be used for alternative functions */
2965 data->has_fan &= ~sio_data->skip_fan;
2967 /* Check if pwm5, pwm6 are enabled */
2968 if (has_six_pwm(data)) {
2969 /* The following code may be IT8620E specific */
2970 tmp = it87_read_value(data, IT87_REG_FAN_DIV);
2971 if ((tmp & 0xc0) == 0xc0)
2972 sio_data->skip_pwm |= BIT(4);
2973 if (!(tmp & BIT(3)))
2974 sio_data->skip_pwm |= BIT(5);
2977 it87_start_monitoring(data);
2980 /* Return 1 if and only if the PWM interface is safe to use */
2981 static int it87_check_pwm(struct device *dev)
2983 struct it87_data *data = dev_get_drvdata(dev);
2985 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
2986 * and polarity set to active low is sign that this is the case so we
2987 * disable pwm control to protect the user.
2989 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
2991 if ((tmp & 0x87) == 0) {
2992 if (fix_pwm_polarity) {
2994 * The user asks us to attempt a chip reconfiguration.
2995 * This means switching to active high polarity and
2996 * inverting all fan speed values.
3001 for (i = 0; i < ARRAY_SIZE(pwm); i++)
3002 pwm[i] = it87_read_value(data,
3006 * If any fan is in automatic pwm mode, the polarity
3007 * might be correct, as suspicious as it seems, so we
3008 * better don't change anything (but still disable the
3011 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
3013 "Reconfiguring PWM to active high polarity\n");
3014 it87_write_value(data, IT87_REG_FAN_CTL,
3016 for (i = 0; i < 3; i++)
3017 it87_write_value(data,
3024 "PWM configuration is too broken to be fixed\n");
3028 } else if (fix_pwm_polarity) {
3030 "PWM configuration looks sane, won't touch\n");
3036 static int it87_probe(struct platform_device *pdev)
3038 struct it87_data *data;
3039 struct resource *res;
3040 struct device *dev = &pdev->dev;
3041 struct it87_sio_data *sio_data = dev_get_platdata(dev);
3042 int enable_pwm_interface;
3043 struct device *hwmon_dev;
3045 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
3046 if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT,
3048 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
3049 (unsigned long)res->start,
3050 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
3054 data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL);
3058 data->addr = res->start;
3059 data->sioaddr = sio_data->sioaddr;
3060 data->type = sio_data->type;
3061 data->features = it87_devices[sio_data->type].features;
3062 data->peci_mask = it87_devices[sio_data->type].peci_mask;
3063 data->old_peci_mask = it87_devices[sio_data->type].old_peci_mask;
3065 * IT8705F Datasheet 0.4.1, 3h == Version G.
3066 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
3067 * These are the first revisions with 16-bit tachometer support.
3069 switch (data->type) {
3071 if (sio_data->revision >= 0x03) {
3072 data->features &= ~FEAT_OLD_AUTOPWM;
3073 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS;
3077 if (sio_data->revision >= 0x08) {
3078 data->features &= ~FEAT_OLD_AUTOPWM;
3079 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS |
3087 /* Now, we do the remaining detection. */
3088 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80) ||
3089 it87_read_value(data, IT87_REG_CHIPID) != 0x90)
3092 platform_set_drvdata(pdev, data);
3094 mutex_init(&data->update_lock);
3096 /* Check PWM configuration */
3097 enable_pwm_interface = it87_check_pwm(dev);
3098 if (!enable_pwm_interface)
3100 "Detected broken BIOS defaults, disabling PWM interface\n");
3102 /* Starting with IT8721F, we handle scaling of internal voltages */
3103 if (has_12mv_adc(data)) {
3104 if (sio_data->internal & BIT(0))
3105 data->in_scaled |= BIT(3); /* in3 is AVCC */
3106 if (sio_data->internal & BIT(1))
3107 data->in_scaled |= BIT(7); /* in7 is VSB */
3108 if (sio_data->internal & BIT(2))
3109 data->in_scaled |= BIT(8); /* in8 is Vbat */
3110 if (sio_data->internal & BIT(3))
3111 data->in_scaled |= BIT(9); /* in9 is AVCC */
3112 } else if (sio_data->type == it8781 || sio_data->type == it8782 ||
3113 sio_data->type == it8783) {
3114 if (sio_data->internal & BIT(0))
3115 data->in_scaled |= BIT(3); /* in3 is VCC5V */
3116 if (sio_data->internal & BIT(1))
3117 data->in_scaled |= BIT(7); /* in7 is VCCH5V */
3120 data->has_temp = 0x07;
3121 if (sio_data->skip_temp & BIT(2)) {
3122 if (sio_data->type == it8782 &&
3123 !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80))
3124 data->has_temp &= ~BIT(2);
3127 data->in_internal = sio_data->internal;
3128 data->need_in7_reroute = sio_data->need_in7_reroute;
3129 data->has_in = 0x3ff & ~sio_data->skip_in;
3131 if (has_six_temp(data)) {
3132 u8 reg = it87_read_value(data, IT87_REG_TEMP456_ENABLE);
3134 /* Check for additional temperature sensors */
3135 if ((reg & 0x03) >= 0x02)
3136 data->has_temp |= BIT(3);
3137 if (((reg >> 2) & 0x03) >= 0x02)
3138 data->has_temp |= BIT(4);
3139 if (((reg >> 4) & 0x03) >= 0x02)
3140 data->has_temp |= BIT(5);
3142 /* Check for additional voltage sensors */
3143 if ((reg & 0x03) == 0x01)
3144 data->has_in |= BIT(10);
3145 if (((reg >> 2) & 0x03) == 0x01)
3146 data->has_in |= BIT(11);
3147 if (((reg >> 4) & 0x03) == 0x01)
3148 data->has_in |= BIT(12);
3151 data->has_beep = !!sio_data->beep_pin;
3153 /* Initialize the IT87 chip */
3154 it87_init_device(pdev);
3156 if (!sio_data->skip_vid) {
3157 data->has_vid = true;
3158 data->vrm = vid_which_vrm();
3159 /* VID reading from Super-I/O config space if available */
3160 data->vid = sio_data->vid_value;
3163 /* Prepare for sysfs hooks */
3164 data->groups[0] = &it87_group;
3165 data->groups[1] = &it87_group_in;
3166 data->groups[2] = &it87_group_temp;
3167 data->groups[3] = &it87_group_fan;
3169 if (enable_pwm_interface) {
3170 data->has_pwm = BIT(ARRAY_SIZE(IT87_REG_PWM)) - 1;
3171 data->has_pwm &= ~sio_data->skip_pwm;
3173 data->groups[4] = &it87_group_pwm;
3174 if (has_old_autopwm(data) || has_newer_autopwm(data))
3175 data->groups[5] = &it87_group_auto_pwm;
3178 hwmon_dev = devm_hwmon_device_register_with_groups(dev,
3179 it87_devices[sio_data->type].name,
3180 data, data->groups);
3181 return PTR_ERR_OR_ZERO(hwmon_dev);
3184 static void it87_resume_sio(struct platform_device *pdev)
3186 struct it87_data *data = dev_get_drvdata(&pdev->dev);
3190 if (!data->need_in7_reroute)
3193 err = superio_enter(data->sioaddr);
3195 dev_warn(&pdev->dev,
3196 "Unable to enter Super I/O to reroute in7 (%d)",
3201 superio_select(data->sioaddr, GPIO);
3203 reg2c = superio_inb(data->sioaddr, IT87_SIO_PINX2_REG);
3204 if (!(reg2c & BIT(1))) {
3206 "Routing internal VCCH5V to in7 again");
3209 superio_outb(data->sioaddr, IT87_SIO_PINX2_REG,
3213 superio_exit(data->sioaddr);
3216 static int it87_resume(struct device *dev)
3218 struct platform_device *pdev = to_platform_device(dev);
3219 struct it87_data *data = dev_get_drvdata(dev);
3221 it87_resume_sio(pdev);
3223 mutex_lock(&data->update_lock);
3225 it87_check_pwm(dev);
3226 it87_check_limit_regs(data);
3227 it87_check_voltage_monitors_reset(data);
3228 it87_check_tachometers_reset(pdev);
3229 it87_check_tachometers_16bit_mode(pdev);
3231 it87_start_monitoring(data);
3234 data->valid = false;
3236 mutex_unlock(&data->update_lock);
3238 it87_update_device(dev);
3243 static DEFINE_SIMPLE_DEV_PM_OPS(it87_dev_pm_ops, NULL, it87_resume);
3245 static struct platform_driver it87_driver = {
3248 .pm = pm_sleep_ptr(&it87_dev_pm_ops),
3250 .probe = it87_probe,
3253 static int __init it87_device_add(int index, unsigned short address,
3254 const struct it87_sio_data *sio_data)
3256 struct platform_device *pdev;
3257 struct resource res = {
3258 .start = address + IT87_EC_OFFSET,
3259 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
3261 .flags = IORESOURCE_IO,
3265 err = acpi_check_resource_conflict(&res);
3267 if (!ignore_resource_conflict)
3271 pdev = platform_device_alloc(DRVNAME, address);
3275 err = platform_device_add_resources(pdev, &res, 1);
3277 pr_err("Device resource addition failed (%d)\n", err);
3278 goto exit_device_put;
3281 err = platform_device_add_data(pdev, sio_data,
3282 sizeof(struct it87_sio_data));
3284 pr_err("Platform data allocation failed\n");
3285 goto exit_device_put;
3288 err = platform_device_add(pdev);
3290 pr_err("Device addition failed (%d)\n", err);
3291 goto exit_device_put;
3294 it87_pdev[index] = pdev;
3298 platform_device_put(pdev);
3302 /* callback function for DMI */
3303 static int it87_dmi_cb(const struct dmi_system_id *dmi_entry)
3305 dmi_data = dmi_entry->driver_data;
3307 if (dmi_data && dmi_data->skip_pwm)
3308 pr_info("Disabling pwm2 due to hardware constraints\n");
3314 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
3315 * connected to a fan, but to something else. One user
3316 * has reported instant system power-off when changing
3317 * the PWM2 duty cycle, so we disable it.
3318 * I use the board name string as the trigger in case
3319 * the same board is ever used in other systems.
3321 static struct it87_dmi_data nvidia_fn68pt = {
3325 #define IT87_DMI_MATCH_VND(vendor, name, cb, data) \
3329 DMI_EXACT_MATCH(DMI_BOARD_VENDOR, vendor), \
3330 DMI_EXACT_MATCH(DMI_BOARD_NAME, name), \
3332 .driver_data = data, \
3335 static const struct dmi_system_id it87_dmi_table[] __initconst = {
3336 IT87_DMI_MATCH_VND("nVIDIA", "FN68PT", it87_dmi_cb, &nvidia_fn68pt),
3340 MODULE_DEVICE_TABLE(dmi, it87_dmi_table);
3342 static int __init sm_it87_init(void)
3344 int sioaddr[2] = { REG_2E, REG_4E };
3345 struct it87_sio_data sio_data;
3346 unsigned short isa_address[2];
3350 err = platform_driver_register(&it87_driver);
3354 dmi_check_system(it87_dmi_table);
3356 for (i = 0; i < ARRAY_SIZE(sioaddr); i++) {
3357 memset(&sio_data, 0, sizeof(struct it87_sio_data));
3359 err = it87_find(sioaddr[i], &isa_address[i], &sio_data);
3360 if (err || isa_address[i] == 0)
3363 * Don't register second chip if its ISA address matches
3364 * the first chip's ISA address.
3366 if (i && isa_address[i] == isa_address[0])
3369 err = it87_device_add(i, isa_address[i], &sio_data);
3371 goto exit_dev_unregister;
3376 * IT8705F may respond on both SIO addresses.
3377 * Stop probing after finding one.
3379 if (sio_data.type == it87)
3385 goto exit_unregister;
3389 exit_dev_unregister:
3390 /* NULL check handled by platform_device_unregister */
3391 platform_device_unregister(it87_pdev[0]);
3393 platform_driver_unregister(&it87_driver);
3397 static void __exit sm_it87_exit(void)
3399 /* NULL check handled by platform_device_unregister */
3400 platform_device_unregister(it87_pdev[1]);
3401 platform_device_unregister(it87_pdev[0]);
3402 platform_driver_unregister(&it87_driver);
3406 MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
3407 module_param(update_vbat, bool, 0);
3408 MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
3409 module_param(fix_pwm_polarity, bool, 0);
3410 MODULE_PARM_DESC(fix_pwm_polarity,
3411 "Force PWM polarity to active high (DANGEROUS)");
3412 MODULE_LICENSE("GPL");
3414 module_init(sm_it87_init);
3415 module_exit(sm_it87_exit);