]> git.sur5r.net Git - groeck-it87/blob - it87.c
e6ca420e59b5054b834538ca4f7cdfb0b1b44037
[groeck-it87] / it87.c
1 /*
2  *  it87.c - Part of lm_sensors, Linux kernel modules for hardware
3  *           monitoring.
4  *
5  *  The IT8705F is an LPC-based Super I/O part that contains UARTs, a
6  *  parallel port, an IR port, a MIDI port, a floppy controller, etc., in
7  *  addition to an Environment Controller (Enhanced Hardware Monitor and
8  *  Fan Controller)
9  *
10  *  This driver supports only the Environment Controller in the IT8705F and
11  *  similar parts.  The other devices are supported by different drivers.
12  *
13  *  Supports: IT8603E  Super I/O chip w/LPC interface
14  *            IT8620E  Super I/O chip w/LPC interface
15  *            IT8622E  Super I/O chip w/LPC interface
16  *            IT8623E  Super I/O chip w/LPC interface
17  *            IT8628E  Super I/O chip w/LPC interface
18  *            IT8705F  Super I/O chip w/LPC interface
19  *            IT8712F  Super I/O chip w/LPC interface
20  *            IT8716F  Super I/O chip w/LPC interface
21  *            IT8718F  Super I/O chip w/LPC interface
22  *            IT8720F  Super I/O chip w/LPC interface
23  *            IT8721F  Super I/O chip w/LPC interface
24  *            IT8726F  Super I/O chip w/LPC interface
25  *            IT8728F  Super I/O chip w/LPC interface
26  *            IT8732F  Super I/O chip w/LPC interface
27  *            IT8758E  Super I/O chip w/LPC interface
28  *            IT8771E  Super I/O chip w/LPC interface
29  *            IT8772E  Super I/O chip w/LPC interface
30  *            IT8781F  Super I/O chip w/LPC interface
31  *            IT8782F  Super I/O chip w/LPC interface
32  *            IT8783E/F Super I/O chip w/LPC interface
33  *            IT8786E  Super I/O chip w/LPC interface
34  *            IT8790E  Super I/O chip w/LPC interface
35  *            Sis950   A clone of the IT8705F
36  *
37  *  Copyright (C) 2001 Chris Gauthron
38  *  Copyright (C) 2005-2010 Jean Delvare <jdelvare@suse.de>
39  *
40  *  This program is free software; you can redistribute it and/or modify
41  *  it under the terms of the GNU General Public License as published by
42  *  the Free Software Foundation; either version 2 of the License, or
43  *  (at your option) any later version.
44  *
45  *  This program is distributed in the hope that it will be useful,
46  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
47  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
48  *  GNU General Public License for more details.
49  */
50
51 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
52
53 #include <linux/bitops.h>
54 #include <linux/module.h>
55 #include <linux/init.h>
56 #include <linux/slab.h>
57 #include <linux/jiffies.h>
58 #include <linux/platform_device.h>
59 #include <linux/hwmon.h>
60 #include <linux/hwmon-sysfs.h>
61 #include <linux/hwmon-vid.h>
62 #include <linux/err.h>
63 #include <linux/mutex.h>
64 #include <linux/sysfs.h>
65 #include <linux/string.h>
66 #include <linux/dmi.h>
67 #include <linux/acpi.h>
68 #include <linux/io.h>
69 #include "compat.h"
70
71 #define DRVNAME "it87"
72
73 enum chips { it87, it8712, it8716, it8718, it8720, it8721, it8728, it8732,
74              it8771, it8772, it8781, it8782, it8783, it8786, it8790, it8603,
75              it8620, it8622, it8628 };
76
77 static unsigned short force_id;
78 module_param(force_id, ushort, 0);
79 MODULE_PARM_DESC(force_id, "Override the detected device ID");
80
81 static struct platform_device *it87_pdev[2];
82
83 #define REG_2E  0x2e    /* The register to read/write */
84 #define REG_4E  0x4e    /* Secondary register to read/write */
85
86 #define DEV     0x07    /* Register: Logical device select */
87 #define PME     0x04    /* The device with the fan registers in it */
88
89 /* The device with the IT8718F/IT8720F VID value in it */
90 #define GPIO    0x07
91
92 #define DEVID   0x20    /* Register: Device ID */
93 #define DEVREV  0x22    /* Register: Device Revision */
94
95 static inline int superio_inb(int ioreg, int reg)
96 {
97         outb(reg, ioreg);
98         return inb(ioreg + 1);
99 }
100
101 static inline void superio_outb(int ioreg, int reg, int val)
102 {
103         outb(reg, ioreg);
104         outb(val, ioreg + 1);
105 }
106
107 static int superio_inw(int ioreg, int reg)
108 {
109         int val;
110
111         outb(reg++, ioreg);
112         val = inb(ioreg + 1) << 8;
113         outb(reg, ioreg);
114         val |= inb(ioreg + 1);
115         return val;
116 }
117
118 static inline void superio_select(int ioreg, int ldn)
119 {
120         outb(DEV, ioreg);
121         outb(ldn, ioreg + 1);
122 }
123
124 static inline int superio_enter(int ioreg)
125 {
126         /*
127          * Try to reserve ioreg and ioreg + 1 for exclusive access.
128          */
129         if (!request_muxed_region(ioreg, 2, DRVNAME))
130                 return -EBUSY;
131
132         outb(0x87, ioreg);
133         outb(0x01, ioreg);
134         outb(0x55, ioreg);
135         outb(ioreg == REG_4E ? 0xaa : 0x55, ioreg);
136         return 0;
137 }
138
139 static inline void superio_exit(int ioreg)
140 {
141         outb(0x02, ioreg);
142         outb(0x02, ioreg + 1);
143         release_region(ioreg, 2);
144 }
145
146 /* Logical device 4 registers */
147 #define IT8712F_DEVID 0x8712
148 #define IT8705F_DEVID 0x8705
149 #define IT8716F_DEVID 0x8716
150 #define IT8718F_DEVID 0x8718
151 #define IT8720F_DEVID 0x8720
152 #define IT8721F_DEVID 0x8721
153 #define IT8726F_DEVID 0x8726
154 #define IT8728F_DEVID 0x8728
155 #define IT8732F_DEVID 0x8732
156 #define IT8771E_DEVID 0x8771
157 #define IT8772E_DEVID 0x8772
158 #define IT8781F_DEVID 0x8781
159 #define IT8782F_DEVID 0x8782
160 #define IT8783E_DEVID 0x8783
161 #define IT8786E_DEVID 0x8786
162 #define IT8790E_DEVID 0x8790
163 #define IT8603E_DEVID 0x8603
164 #define IT8620E_DEVID 0x8620
165 #define IT8622E_DEVID 0x8622
166 #define IT8623E_DEVID 0x8623
167 #define IT8628E_DEVID 0x8628
168 #define IT87_ACT_REG  0x30
169 #define IT87_BASE_REG 0x60
170
171 /* Logical device 7 registers (IT8712F and later) */
172 #define IT87_SIO_GPIO1_REG      0x25
173 #define IT87_SIO_GPIO2_REG      0x26
174 #define IT87_SIO_GPIO3_REG      0x27
175 #define IT87_SIO_GPIO4_REG      0x28
176 #define IT87_SIO_GPIO5_REG      0x29
177 #define IT87_SIO_PINX1_REG      0x2a    /* Pin selection */
178 #define IT87_SIO_PINX2_REG      0x2c    /* Pin selection */
179 #define IT87_SIO_SPI_REG        0xef    /* SPI function pin select */
180 #define IT87_SIO_VID_REG        0xfc    /* VID value */
181 #define IT87_SIO_BEEP_PIN_REG   0xf6    /* Beep pin mapping */
182
183 /* Update battery voltage after every reading if true */
184 static bool update_vbat;
185
186 /* Not all BIOSes properly configure the PWM registers */
187 static bool fix_pwm_polarity;
188
189 /* Many IT87 constants specified below */
190
191 /* Length of ISA address segment */
192 #define IT87_EXTENT 8
193
194 /* Length of ISA address segment for Environmental Controller */
195 #define IT87_EC_EXTENT 2
196
197 /* Offset of EC registers from ISA base address */
198 #define IT87_EC_OFFSET 5
199
200 /* Where are the ISA address/data registers relative to the EC base address */
201 #define IT87_ADDR_REG_OFFSET 0
202 #define IT87_DATA_REG_OFFSET 1
203
204 /*----- The IT87 registers -----*/
205
206 #define IT87_REG_CONFIG        0x00
207
208 #define IT87_REG_ALARM1        0x01
209 #define IT87_REG_ALARM2        0x02
210 #define IT87_REG_ALARM3        0x03
211
212 /*
213  * The IT8718F and IT8720F have the VID value in a different register, in
214  * Super-I/O configuration space.
215  */
216 #define IT87_REG_VID           0x0a
217 /*
218  * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
219  * for fan divisors. Later IT8712F revisions must use 16-bit tachometer
220  * mode.
221  */
222 #define IT87_REG_FAN_DIV       0x0b
223 #define IT87_REG_FAN_16BIT     0x0c
224
225 /*
226  * Monitors:
227  * - up to 13 voltage (0 to 7, battery, avcc, 10 to 12)
228  * - up to 6 temp (1 to 6)
229  * - up to 6 fan (1 to 6)
230  */
231
232 static const u8 IT87_REG_FAN[]         = { 0x0d, 0x0e, 0x0f, 0x80, 0x82, 0x4c };
233 static const u8 IT87_REG_FAN_MIN[]     = { 0x10, 0x11, 0x12, 0x84, 0x86, 0x4e };
234 static const u8 IT87_REG_FANX[]        = { 0x18, 0x19, 0x1a, 0x81, 0x83, 0x4d };
235 static const u8 IT87_REG_FANX_MIN[]    = { 0x1b, 0x1c, 0x1d, 0x85, 0x87, 0x4f };
236 static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59 };
237
238 #define IT87_REG_FAN_MAIN_CTRL 0x13
239 #define IT87_REG_FAN_CTL       0x14
240 static const u8 IT87_REG_PWM[]         = { 0x15, 0x16, 0x17, 0x7f, 0xa7, 0xaf };
241 static const u8 IT87_REG_PWM_DUTY[]    = { 0x63, 0x6b, 0x73, 0x7b, 0xa3, 0xab };
242
243 static const u8 IT87_REG_VIN[]  = { 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,
244                                     0x27, 0x28, 0x2f, 0x2c, 0x2d, 0x2e };
245
246 #define IT87_REG_TEMP(nr)      (0x29 + (nr))
247
248 #define IT87_REG_VIN_MAX(nr)   (0x30 + (nr) * 2)
249 #define IT87_REG_VIN_MIN(nr)   (0x31 + (nr) * 2)
250 #define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
251 #define IT87_REG_TEMP_LOW(nr)  (0x41 + (nr) * 2)
252
253 #define IT87_REG_VIN_ENABLE    0x50
254 #define IT87_REG_TEMP_ENABLE   0x51
255 #define IT87_REG_TEMP_EXTRA    0x55
256 #define IT87_REG_BEEP_ENABLE   0x5c
257
258 #define IT87_REG_CHIPID        0x58
259
260 static const u8 IT87_REG_AUTO_BASE[] = { 0x60, 0x68, 0x70, 0x78, 0xa0, 0xa8 };
261
262 #define IT87_REG_AUTO_TEMP(nr, i) (IT87_REG_AUTO_BASE[nr] + (i))
263 #define IT87_REG_AUTO_PWM(nr, i)  (IT87_REG_AUTO_BASE[nr] + 5 + (i))
264
265 #define IT87_REG_TEMP456_ENABLE 0x77
266
267 #define NUM_VIN                 ARRAY_SIZE(IT87_REG_VIN)
268 #define NUM_VIN_LIMIT           8
269 #define NUM_TEMP                6
270 #define NUM_TEMP_OFFSET         ARRAY_SIZE(IT87_REG_TEMP_OFFSET)
271 #define NUM_TEMP_LIMIT          3
272 #define NUM_FAN                 ARRAY_SIZE(IT87_REG_FAN)
273 #define NUM_FAN_DIV             3
274 #define NUM_PWM                 ARRAY_SIZE(IT87_REG_PWM)
275 #define NUM_AUTO_PWM            ARRAY_SIZE(IT87_REG_PWM)
276
277 struct it87_devices {
278         const char *name;
279         const char * const suffix;
280         u32 features;
281         u8 peci_mask;
282         u8 old_peci_mask;
283 };
284
285 #define FEAT_12MV_ADC           BIT(0)
286 #define FEAT_NEWER_AUTOPWM      BIT(1)
287 #define FEAT_OLD_AUTOPWM        BIT(2)
288 #define FEAT_16BIT_FANS         BIT(3)
289 #define FEAT_TEMP_OFFSET        BIT(4)
290 #define FEAT_TEMP_PECI          BIT(5)
291 #define FEAT_TEMP_OLD_PECI      BIT(6)
292 #define FEAT_FAN16_CONFIG       BIT(7)  /* Need to enable 16-bit fans */
293 #define FEAT_FIVE_FANS          BIT(8)  /* Supports five fans */
294 #define FEAT_VID                BIT(9)  /* Set if chip supports VID */
295 #define FEAT_IN7_INTERNAL       BIT(10) /* Set if in7 is internal */
296 #define FEAT_SIX_FANS           BIT(11) /* Supports six fans */
297 #define FEAT_10_9MV_ADC         BIT(12)
298 #define FEAT_AVCC3              BIT(13) /* Chip supports in9/AVCC3 */
299 #define FEAT_FIVE_PWM           BIT(14) /* Chip supports 5 pwm chn */
300 #define FEAT_SIX_PWM            BIT(15) /* Chip supports 6 pwm chn */
301 #define FEAT_PWM_FREQ2          BIT(16) /* Separate pwm freq 2 */
302 #define FEAT_SIX_TEMP           BIT(17) /* Up to 6 temp sensors */
303 #define FEAT_VIN3_5V            BIT(18) /* VIN3 connected to +5V */
304
305 static const struct it87_devices it87_devices[] = {
306         [it87] = {
307                 .name = "it87",
308                 .suffix = "F",
309                 .features = FEAT_OLD_AUTOPWM,   /* may need to overwrite */
310         },
311         [it8712] = {
312                 .name = "it8712",
313                 .suffix = "F",
314                 .features = FEAT_OLD_AUTOPWM | FEAT_VID,
315                                                 /* may need to overwrite */
316         },
317         [it8716] = {
318                 .name = "it8716",
319                 .suffix = "F",
320                 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
321                   | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_PWM_FREQ2,
322         },
323         [it8718] = {
324                 .name = "it8718",
325                 .suffix = "F",
326                 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
327                   | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS
328                   | FEAT_PWM_FREQ2,
329                 .old_peci_mask = 0x4,
330         },
331         [it8720] = {
332                 .name = "it8720",
333                 .suffix = "F",
334                 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
335                   | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS
336                   | FEAT_PWM_FREQ2,
337                 .old_peci_mask = 0x4,
338         },
339         [it8721] = {
340                 .name = "it8721",
341                 .suffix = "F",
342                 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
343                   | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
344                   | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_IN7_INTERNAL
345                   | FEAT_PWM_FREQ2,
346                 .peci_mask = 0x05,
347                 .old_peci_mask = 0x02,  /* Actually reports PCH */
348         },
349         [it8728] = {
350                 .name = "it8728",
351                 .suffix = "F",
352                 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
353                   | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS
354                   | FEAT_IN7_INTERNAL | FEAT_PWM_FREQ2,
355                 .peci_mask = 0x07,
356         },
357         [it8732] = {
358                 .name = "it8732",
359                 .suffix = "F",
360                 .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS
361                   | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
362                   | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL,
363                 .peci_mask = 0x07,
364                 .old_peci_mask = 0x02,  /* Actually reports PCH */
365         },
366         [it8771] = {
367                 .name = "it8771",
368                 .suffix = "E",
369                 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
370                   | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
371                   | FEAT_PWM_FREQ2,
372                                 /* PECI: guesswork */
373                                 /* 12mV ADC (OHM) */
374                                 /* 16 bit fans (OHM) */
375                                 /* three fans, always 16 bit (guesswork) */
376                 .peci_mask = 0x07,
377         },
378         [it8772] = {
379                 .name = "it8772",
380                 .suffix = "E",
381                 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
382                   | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
383                   | FEAT_PWM_FREQ2,
384                                 /* PECI (coreboot) */
385                                 /* 12mV ADC (HWSensors4, OHM) */
386                                 /* 16 bit fans (HWSensors4, OHM) */
387                                 /* three fans, always 16 bit (datasheet) */
388                 .peci_mask = 0x07,
389         },
390         [it8781] = {
391                 .name = "it8781",
392                 .suffix = "F",
393                 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
394                   | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
395                 .old_peci_mask = 0x4,
396         },
397         [it8782] = {
398                 .name = "it8782",
399                 .suffix = "F",
400                 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
401                   | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
402                 .old_peci_mask = 0x4,
403         },
404         [it8783] = {
405                 .name = "it8783",
406                 .suffix = "E/F",
407                 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
408                   | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
409                 .old_peci_mask = 0x4,
410         },
411         [it8786] = {
412                 .name = "it8786",
413                 .suffix = "E",
414                 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
415                   | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
416                   | FEAT_PWM_FREQ2,
417                 .peci_mask = 0x07,
418         },
419         [it8790] = {
420                 .name = "it8790",
421                 .suffix = "E",
422                 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
423                   | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
424                   | FEAT_PWM_FREQ2,
425                 .peci_mask = 0x07,
426         },
427         [it8603] = {
428                 .name = "it8603",
429                 .suffix = "E",
430                 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
431                   | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
432                   | FEAT_AVCC3 | FEAT_PWM_FREQ2,
433                 .peci_mask = 0x07,
434         },
435         [it8620] = {
436                 .name = "it8620",
437                 .suffix = "E",
438                 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
439                   | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS
440                   | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2
441                   | FEAT_SIX_TEMP | FEAT_VIN3_5V,
442                 .peci_mask = 0x07,
443         },
444         [it8622] = {
445                 .name = "it8622",
446                 .suffix = "E",
447                 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
448                   | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS
449                   | FEAT_FIVE_PWM | FEAT_IN7_INTERNAL | FEAT_PWM_FREQ2
450                   | FEAT_AVCC3 | FEAT_VIN3_5V,
451                 .peci_mask = 0x07,
452         },
453         [it8628] = {
454                 .name = "it8628",
455                 .suffix = "E",
456                 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
457                   | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS
458                   | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2
459                   | FEAT_SIX_TEMP | FEAT_VIN3_5V,
460                 .peci_mask = 0x07,
461         },
462 };
463
464 #define has_16bit_fans(data)    ((data)->features & FEAT_16BIT_FANS)
465 #define has_12mv_adc(data)      ((data)->features & FEAT_12MV_ADC)
466 #define has_10_9mv_adc(data)    ((data)->features & FEAT_10_9MV_ADC)
467 #define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM)
468 #define has_old_autopwm(data)   ((data)->features & FEAT_OLD_AUTOPWM)
469 #define has_temp_offset(data)   ((data)->features & FEAT_TEMP_OFFSET)
470 #define has_temp_peci(data, nr) (((data)->features & FEAT_TEMP_PECI) && \
471                                  ((data)->peci_mask & BIT(nr)))
472 #define has_temp_old_peci(data, nr) \
473                                 (((data)->features & FEAT_TEMP_OLD_PECI) && \
474                                  ((data)->old_peci_mask & BIT(nr)))
475 #define has_fan16_config(data)  ((data)->features & FEAT_FAN16_CONFIG)
476 #define has_five_fans(data)     ((data)->features & (FEAT_FIVE_FANS | \
477                                                      FEAT_SIX_FANS))
478 #define has_vid(data)           ((data)->features & FEAT_VID)
479 #define has_in7_internal(data)  ((data)->features & FEAT_IN7_INTERNAL)
480 #define has_six_fans(data)      ((data)->features & FEAT_SIX_FANS)
481 #define has_avcc3(data)         ((data)->features & FEAT_AVCC3)
482 #define has_five_pwm(data)      ((data)->features & (FEAT_FIVE_PWM \
483                                                      | FEAT_SIX_PWM))
484 #define has_six_pwm(data)       ((data)->features & FEAT_SIX_PWM)
485 #define has_pwm_freq2(data)     ((data)->features & FEAT_PWM_FREQ2)
486 #define has_six_temp(data)      ((data)->features & FEAT_SIX_TEMP)
487 #define has_vin3_5v(data)       ((data)->features & FEAT_VIN3_5V)
488
489 struct it87_sio_data {
490         enum chips type;
491         /* Values read from Super-I/O config space */
492         u8 revision;
493         u8 vid_value;
494         u8 beep_pin;
495         u8 internal;    /* Internal sensors can be labeled */
496         /* Features skipped based on config or DMI */
497         u16 skip_in;
498         u8 skip_vid;
499         u8 skip_fan;
500         u8 skip_pwm;
501         u8 skip_temp;
502 };
503
504 /*
505  * For each registered chip, we need to keep some data in memory.
506  * The structure is dynamically allocated.
507  */
508 struct it87_data {
509         const struct attribute_group *groups[7];
510         enum chips type;
511         u32 features;
512         u8 peci_mask;
513         u8 old_peci_mask;
514
515         unsigned short addr;
516         const char *name;
517         struct mutex update_lock;
518         char valid;             /* !=0 if following fields are valid */
519         unsigned long last_updated;     /* In jiffies */
520
521         u16 in_scaled;          /* Internal voltage sensors are scaled */
522         u16 in_internal;        /* Bitfield, internal sensors (for labels) */
523         u16 has_in;             /* Bitfield, voltage sensors enabled */
524         u8 in[NUM_VIN][3];              /* [nr][0]=in, [1]=min, [2]=max */
525         u8 has_fan;             /* Bitfield, fans enabled */
526         u16 fan[NUM_FAN][2];    /* Register values, [nr][0]=fan, [1]=min */
527         u8 has_temp;            /* Bitfield, temp sensors enabled */
528         s8 temp[NUM_TEMP][4];   /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */
529         u8 sensor;              /* Register value (IT87_REG_TEMP_ENABLE) */
530         u8 extra;               /* Register value (IT87_REG_TEMP_EXTRA) */
531         u8 fan_div[NUM_FAN_DIV];/* Register encoding, shifted right */
532         bool has_vid;           /* True if VID supported */
533         u8 vid;                 /* Register encoding, combined */
534         u8 vrm;
535         u32 alarms;             /* Register encoding, combined */
536         bool has_beep;          /* true if beep supported */
537         u8 beeps;               /* Register encoding */
538         u8 fan_main_ctrl;       /* Register value */
539         u8 fan_ctl;             /* Register value */
540
541         /*
542          * The following 3 arrays correspond to the same registers up to
543          * the IT8720F. The meaning of bits 6-0 depends on the value of bit
544          * 7, and we want to preserve settings on mode changes, so we have
545          * to track all values separately.
546          * Starting with the IT8721F, the manual PWM duty cycles are stored
547          * in separate registers (8-bit values), so the separate tracking
548          * is no longer needed, but it is still done to keep the driver
549          * simple.
550          */
551         u8 has_pwm;             /* Bitfield, pwm control enabled */
552         u8 pwm_ctrl[NUM_PWM];   /* Register value */
553         u8 pwm_duty[NUM_PWM];   /* Manual PWM value set by user */
554         u8 pwm_temp_map[NUM_PWM];/* PWM to temp. chan. mapping (bits 1-0) */
555
556         /* Automatic fan speed control registers */
557         u8 auto_pwm[NUM_AUTO_PWM][4];   /* [nr][3] is hard-coded */
558         s8 auto_temp[NUM_AUTO_PWM][5];  /* [nr][0] is point1_temp_hyst */
559 };
560
561 static int adc_lsb(const struct it87_data *data, int nr)
562 {
563         int lsb;
564
565         if (has_12mv_adc(data))
566                 lsb = 120;
567         else if (has_10_9mv_adc(data))
568                 lsb = 109;
569         else
570                 lsb = 160;
571         if (data->in_scaled & BIT(nr))
572                 lsb <<= 1;
573         return lsb;
574 }
575
576 static u8 in_to_reg(const struct it87_data *data, int nr, long val)
577 {
578         val = DIV_ROUND_CLOSEST(val * 10, adc_lsb(data, nr));
579         return clamp_val(val, 0, 255);
580 }
581
582 static int in_from_reg(const struct it87_data *data, int nr, int val)
583 {
584         return DIV_ROUND_CLOSEST(val * adc_lsb(data, nr), 10);
585 }
586
587 static inline u8 FAN_TO_REG(long rpm, int div)
588 {
589         if (rpm == 0)
590                 return 255;
591         rpm = clamp_val(rpm, 1, 1000000);
592         return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
593 }
594
595 static inline u16 FAN16_TO_REG(long rpm)
596 {
597         if (rpm == 0)
598                 return 0xffff;
599         return clamp_val((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
600 }
601
602 #define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
603                                 1350000 / ((val) * (div)))
604 /* The divider is fixed to 2 in 16-bit mode */
605 #define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
606                              1350000 / ((val) * 2))
607
608 #define TEMP_TO_REG(val) (clamp_val(((val) < 0 ? (((val) - 500) / 1000) : \
609                                     ((val) + 500) / 1000), -128, 127))
610 #define TEMP_FROM_REG(val) ((val) * 1000)
611
612 static u8 pwm_to_reg(const struct it87_data *data, long val)
613 {
614         if (has_newer_autopwm(data))
615                 return val;
616         else
617                 return val >> 1;
618 }
619
620 static int pwm_from_reg(const struct it87_data *data, u8 reg)
621 {
622         if (has_newer_autopwm(data))
623                 return reg;
624         else
625                 return (reg & 0x7f) << 1;
626 }
627
628 static int DIV_TO_REG(int val)
629 {
630         int answer = 0;
631
632         while (answer < 7 && (val >>= 1))
633                 answer++;
634         return answer;
635 }
636
637 #define DIV_FROM_REG(val) BIT(val)
638
639 /*
640  * PWM base frequencies. The frequency has to be divided by either 128 or 256,
641  * depending on the chip type, to calculate the actual PWM frequency.
642  *
643  * Some of the chip datasheets suggest a base frequency of 51 kHz instead
644  * of 750 kHz for the slowest base frequency, resulting in a PWM frequency
645  * of 200 Hz. Sometimes both PWM frequency select registers are affected,
646  * sometimes just one. It is unknown if this is a datasheet error or real,
647  * so this is ignored for now.
648  */
649 static const unsigned int pwm_freq[8] = {
650         48000000,
651         24000000,
652         12000000,
653         8000000,
654         6000000,
655         3000000,
656         1500000,
657         750000,
658 };
659
660 /*
661  * Must be called with data->update_lock held, except during initialization.
662  * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
663  * would slow down the IT87 access and should not be necessary.
664  */
665 static int it87_read_value(struct it87_data *data, u8 reg)
666 {
667         outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
668         return inb_p(data->addr + IT87_DATA_REG_OFFSET);
669 }
670
671 /*
672  * Must be called with data->update_lock held, except during initialization.
673  * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
674  * would slow down the IT87 access and should not be necessary.
675  */
676 static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
677 {
678         outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
679         outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
680 }
681
682 static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
683 {
684         data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM[nr]);
685         if (has_newer_autopwm(data)) {
686                 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
687                 data->pwm_duty[nr] = it87_read_value(data,
688                                                      IT87_REG_PWM_DUTY[nr]);
689         } else {
690                 if (data->pwm_ctrl[nr] & 0x80)  /* Automatic mode */
691                         data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
692                 else                            /* Manual mode */
693                         data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
694         }
695
696         if (has_old_autopwm(data)) {
697                 int i;
698
699                 for (i = 0; i < 5 ; i++)
700                         data->auto_temp[nr][i] = it87_read_value(data,
701                                                 IT87_REG_AUTO_TEMP(nr, i));
702                 for (i = 0; i < 3 ; i++)
703                         data->auto_pwm[nr][i] = it87_read_value(data,
704                                                 IT87_REG_AUTO_PWM(nr, i));
705         } else if (has_newer_autopwm(data)) {
706                 int i;
707
708                 /*
709                  * 0: temperature hysteresis (base + 5)
710                  * 1: fan off temperature (base + 0)
711                  * 2: fan start temperature (base + 1)
712                  * 3: fan max temperature (base + 2)
713                  */
714                 data->auto_temp[nr][0] =
715                         it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 5));
716
717                 for (i = 0; i < 3 ; i++)
718                         data->auto_temp[nr][i + 1] =
719                                 it87_read_value(data,
720                                                 IT87_REG_AUTO_TEMP(nr, i));
721                 /*
722                  * 0: start pwm value (base + 3)
723                  * 1: pwm slope (base + 4, 1/8th pwm)
724                  */
725                 data->auto_pwm[nr][0] =
726                         it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 3));
727                 data->auto_pwm[nr][1] =
728                         it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 4));
729         }
730 }
731
732 static struct it87_data *it87_update_device(struct device *dev)
733 {
734         struct it87_data *data = dev_get_drvdata(dev);
735         int i;
736
737         mutex_lock(&data->update_lock);
738
739         if (time_after(jiffies, data->last_updated + HZ + HZ / 2) ||
740             !data->valid) {
741                 if (update_vbat) {
742                         /*
743                          * Cleared after each update, so reenable.  Value
744                          * returned by this read will be previous value
745                          */
746                         it87_write_value(data, IT87_REG_CONFIG,
747                                 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
748                 }
749                 for (i = 0; i < NUM_VIN; i++) {
750                         if (!(data->has_in & BIT(i)))
751                                 continue;
752
753                         data->in[i][0] =
754                                 it87_read_value(data, IT87_REG_VIN[i]);
755
756                         /* VBAT and AVCC don't have limit registers */
757                         if (i >= NUM_VIN_LIMIT)
758                                 continue;
759
760                         data->in[i][1] =
761                                 it87_read_value(data, IT87_REG_VIN_MIN(i));
762                         data->in[i][2] =
763                                 it87_read_value(data, IT87_REG_VIN_MAX(i));
764                 }
765
766                 for (i = 0; i < NUM_FAN; i++) {
767                         /* Skip disabled fans */
768                         if (!(data->has_fan & BIT(i)))
769                                 continue;
770
771                         data->fan[i][1] =
772                                 it87_read_value(data, IT87_REG_FAN_MIN[i]);
773                         data->fan[i][0] = it87_read_value(data,
774                                        IT87_REG_FAN[i]);
775                         /* Add high byte if in 16-bit mode */
776                         if (has_16bit_fans(data)) {
777                                 data->fan[i][0] |= it87_read_value(data,
778                                                 IT87_REG_FANX[i]) << 8;
779                                 data->fan[i][1] |= it87_read_value(data,
780                                                 IT87_REG_FANX_MIN[i]) << 8;
781                         }
782                 }
783                 for (i = 0; i < NUM_TEMP; i++) {
784                         if (!(data->has_temp & BIT(i)))
785                                 continue;
786                         data->temp[i][0] =
787                                 it87_read_value(data, IT87_REG_TEMP(i));
788
789                         if (has_temp_offset(data) && i < NUM_TEMP_OFFSET)
790                                 data->temp[i][3] =
791                                   it87_read_value(data,
792                                                   IT87_REG_TEMP_OFFSET[i]);
793
794                         if (i >= NUM_TEMP_LIMIT)
795                                 continue;
796
797                         data->temp[i][1] =
798                                 it87_read_value(data, IT87_REG_TEMP_LOW(i));
799                         data->temp[i][2] =
800                                 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
801                 }
802
803                 /* Newer chips don't have clock dividers */
804                 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
805                         i = it87_read_value(data, IT87_REG_FAN_DIV);
806                         data->fan_div[0] = i & 0x07;
807                         data->fan_div[1] = (i >> 3) & 0x07;
808                         data->fan_div[2] = (i & 0x40) ? 3 : 1;
809                 }
810
811                 data->alarms =
812                         it87_read_value(data, IT87_REG_ALARM1) |
813                         (it87_read_value(data, IT87_REG_ALARM2) << 8) |
814                         (it87_read_value(data, IT87_REG_ALARM3) << 16);
815                 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
816
817                 data->fan_main_ctrl = it87_read_value(data,
818                                 IT87_REG_FAN_MAIN_CTRL);
819                 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
820                 for (i = 0; i < NUM_PWM; i++) {
821                         if (!(data->has_pwm & BIT(i)))
822                                 continue;
823                         it87_update_pwm_ctrl(data, i);
824                 }
825
826                 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
827                 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
828                 /*
829                  * The IT8705F does not have VID capability.
830                  * The IT8718F and later don't use IT87_REG_VID for the
831                  * same purpose.
832                  */
833                 if (data->type == it8712 || data->type == it8716) {
834                         data->vid = it87_read_value(data, IT87_REG_VID);
835                         /*
836                          * The older IT8712F revisions had only 5 VID pins,
837                          * but we assume it is always safe to read 6 bits.
838                          */
839                         data->vid &= 0x3f;
840                 }
841                 data->last_updated = jiffies;
842                 data->valid = 1;
843         }
844
845         mutex_unlock(&data->update_lock);
846
847         return data;
848 }
849
850 static ssize_t show_in(struct device *dev, struct device_attribute *attr,
851                        char *buf)
852 {
853         struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
854         struct it87_data *data = it87_update_device(dev);
855         int index = sattr->index;
856         int nr = sattr->nr;
857
858         return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr][index]));
859 }
860
861 static ssize_t set_in(struct device *dev, struct device_attribute *attr,
862                       const char *buf, size_t count)
863 {
864         struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
865         struct it87_data *data = dev_get_drvdata(dev);
866         int index = sattr->index;
867         int nr = sattr->nr;
868         unsigned long val;
869
870         if (kstrtoul(buf, 10, &val) < 0)
871                 return -EINVAL;
872
873         mutex_lock(&data->update_lock);
874         data->in[nr][index] = in_to_reg(data, nr, val);
875         it87_write_value(data,
876                          index == 1 ? IT87_REG_VIN_MIN(nr)
877                                     : IT87_REG_VIN_MAX(nr),
878                          data->in[nr][index]);
879         mutex_unlock(&data->update_lock);
880         return count;
881 }
882
883 static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0);
884 static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in,
885                             0, 1);
886 static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in,
887                             0, 2);
888
889 static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0);
890 static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in,
891                             1, 1);
892 static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in,
893                             1, 2);
894
895 static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0);
896 static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in,
897                             2, 1);
898 static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in,
899                             2, 2);
900
901 static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0);
902 static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in,
903                             3, 1);
904 static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in,
905                             3, 2);
906
907 static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0);
908 static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in,
909                             4, 1);
910 static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in,
911                             4, 2);
912
913 static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0);
914 static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in,
915                             5, 1);
916 static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in,
917                             5, 2);
918
919 static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0);
920 static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in,
921                             6, 1);
922 static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in,
923                             6, 2);
924
925 static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0);
926 static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in,
927                             7, 1);
928 static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in,
929                             7, 2);
930
931 static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0);
932 static SENSOR_DEVICE_ATTR_2(in9_input, S_IRUGO, show_in, NULL, 9, 0);
933 static SENSOR_DEVICE_ATTR_2(in10_input, S_IRUGO, show_in, NULL, 10, 0);
934 static SENSOR_DEVICE_ATTR_2(in11_input, S_IRUGO, show_in, NULL, 11, 0);
935 static SENSOR_DEVICE_ATTR_2(in12_input, S_IRUGO, show_in, NULL, 12, 0);
936
937 /* Up to 6 temperatures */
938 static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
939                          char *buf)
940 {
941         struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
942         int nr = sattr->nr;
943         int index = sattr->index;
944         struct it87_data *data = it87_update_device(dev);
945
946         return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index]));
947 }
948
949 static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
950                         const char *buf, size_t count)
951 {
952         struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
953         int nr = sattr->nr;
954         int index = sattr->index;
955         struct it87_data *data = dev_get_drvdata(dev);
956         long val;
957         u8 reg, regval;
958
959         if (kstrtol(buf, 10, &val) < 0)
960                 return -EINVAL;
961
962         mutex_lock(&data->update_lock);
963
964         switch (index) {
965         default:
966         case 1:
967                 reg = IT87_REG_TEMP_LOW(nr);
968                 break;
969         case 2:
970                 reg = IT87_REG_TEMP_HIGH(nr);
971                 break;
972         case 3:
973                 regval = it87_read_value(data, IT87_REG_BEEP_ENABLE);
974                 if (!(regval & 0x80)) {
975                         regval |= 0x80;
976                         it87_write_value(data, IT87_REG_BEEP_ENABLE, regval);
977                 }
978                 data->valid = 0;
979                 reg = IT87_REG_TEMP_OFFSET[nr];
980                 break;
981         }
982
983         data->temp[nr][index] = TEMP_TO_REG(val);
984         it87_write_value(data, reg, data->temp[nr][index]);
985         mutex_unlock(&data->update_lock);
986         return count;
987 }
988
989 static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0);
990 static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
991                             0, 1);
992 static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
993                             0, 2);
994 static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp,
995                             set_temp, 0, 3);
996 static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0);
997 static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
998                             1, 1);
999 static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1000                             1, 2);
1001 static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp,
1002                             set_temp, 1, 3);
1003 static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0);
1004 static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1005                             2, 1);
1006 static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1007                             2, 2);
1008 static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp,
1009                             set_temp, 2, 3);
1010 static SENSOR_DEVICE_ATTR_2(temp4_input, S_IRUGO, show_temp, NULL, 3, 0);
1011 static SENSOR_DEVICE_ATTR_2(temp5_input, S_IRUGO, show_temp, NULL, 4, 0);
1012 static SENSOR_DEVICE_ATTR_2(temp6_input, S_IRUGO, show_temp, NULL, 5, 0);
1013
1014 static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr,
1015                               char *buf)
1016 {
1017         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1018         int nr = sensor_attr->index;
1019         struct it87_data *data = it87_update_device(dev);
1020         u8 reg = data->sensor;      /* In case value is updated while used */
1021         u8 extra = data->extra;
1022
1023         if ((has_temp_peci(data, nr) && (reg >> 6 == nr + 1)) ||
1024             (has_temp_old_peci(data, nr) && (extra & 0x80)))
1025                 return sprintf(buf, "6\n");  /* Intel PECI */
1026         if (reg & (1 << nr))
1027                 return sprintf(buf, "3\n");  /* thermal diode */
1028         if (reg & (8 << nr))
1029                 return sprintf(buf, "4\n");  /* thermistor */
1030         return sprintf(buf, "0\n");      /* disabled */
1031 }
1032
1033 static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr,
1034                              const char *buf, size_t count)
1035 {
1036         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1037         int nr = sensor_attr->index;
1038
1039         struct it87_data *data = dev_get_drvdata(dev);
1040         long val;
1041         u8 reg, extra;
1042
1043         if (kstrtol(buf, 10, &val) < 0)
1044                 return -EINVAL;
1045
1046         reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
1047         reg &= ~(1 << nr);
1048         reg &= ~(8 << nr);
1049         if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1 || val == 6))
1050                 reg &= 0x3f;
1051         extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
1052         if (has_temp_old_peci(data, nr) && ((extra & 0x80) || val == 6))
1053                 extra &= 0x7f;
1054         if (val == 2) { /* backwards compatibility */
1055                 dev_warn(dev,
1056                          "Sensor type 2 is deprecated, please use 4 instead\n");
1057                 val = 4;
1058         }
1059         /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */
1060         if (val == 3)
1061                 reg |= 1 << nr;
1062         else if (val == 4)
1063                 reg |= 8 << nr;
1064         else if (has_temp_peci(data, nr) && val == 6)
1065                 reg |= (nr + 1) << 6;
1066         else if (has_temp_old_peci(data, nr) && val == 6)
1067                 extra |= 0x80;
1068         else if (val != 0)
1069                 return -EINVAL;
1070
1071         mutex_lock(&data->update_lock);
1072         data->sensor = reg;
1073         data->extra = extra;
1074         it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
1075         if (has_temp_old_peci(data, nr))
1076                 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
1077         data->valid = 0;        /* Force cache refresh */
1078         mutex_unlock(&data->update_lock);
1079         return count;
1080 }
1081
1082 static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type,
1083                           set_temp_type, 0);
1084 static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type,
1085                           set_temp_type, 1);
1086 static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type,
1087                           set_temp_type, 2);
1088
1089 /* 6 Fans */
1090
1091 static int pwm_mode(const struct it87_data *data, int nr)
1092 {
1093         if (data->type != it8603 && nr < 3 && !(data->fan_main_ctrl & BIT(nr)))
1094                 return 0;                               /* Full speed */
1095         if (data->pwm_ctrl[nr] & 0x80)
1096                 return 2;                               /* Automatic mode */
1097         if ((data->type == it8603 || nr >= 3) &&
1098             data->pwm_duty[nr] == pwm_to_reg(data, 0xff))
1099                 return 0;                       /* Full speed */
1100
1101         return 1;                               /* Manual mode */
1102 }
1103
1104 static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
1105                         char *buf)
1106 {
1107         struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1108         int nr = sattr->nr;
1109         int index = sattr->index;
1110         int speed;
1111         struct it87_data *data = it87_update_device(dev);
1112
1113         speed = has_16bit_fans(data) ?
1114                 FAN16_FROM_REG(data->fan[nr][index]) :
1115                 FAN_FROM_REG(data->fan[nr][index],
1116                              DIV_FROM_REG(data->fan_div[nr]));
1117         return sprintf(buf, "%d\n", speed);
1118 }
1119
1120 static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
1121                             char *buf)
1122 {
1123         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1124         struct it87_data *data = it87_update_device(dev);
1125         int nr = sensor_attr->index;
1126
1127         return sprintf(buf, "%lu\n", DIV_FROM_REG(data->fan_div[nr]));
1128 }
1129
1130 static ssize_t show_pwm_enable(struct device *dev,
1131                                struct device_attribute *attr, char *buf)
1132 {
1133         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1134         struct it87_data *data = it87_update_device(dev);
1135         int nr = sensor_attr->index;
1136
1137         return sprintf(buf, "%d\n", pwm_mode(data, nr));
1138 }
1139
1140 static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
1141                         char *buf)
1142 {
1143         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1144         struct it87_data *data = it87_update_device(dev);
1145         int nr = sensor_attr->index;
1146
1147         return sprintf(buf, "%d\n",
1148                        pwm_from_reg(data, data->pwm_duty[nr]));
1149 }
1150
1151 static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
1152                              char *buf)
1153 {
1154         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1155         struct it87_data *data = it87_update_device(dev);
1156         int nr = sensor_attr->index;
1157         unsigned int freq;
1158         int index;
1159
1160         if (has_pwm_freq2(data) && nr == 1)
1161                 index = (data->extra >> 4) & 0x07;
1162         else
1163                 index = (data->fan_ctl >> 4) & 0x07;
1164
1165         freq = pwm_freq[index] / (has_newer_autopwm(data) ? 256 : 128);
1166
1167         return sprintf(buf, "%u\n", freq);
1168 }
1169
1170 static ssize_t set_fan(struct device *dev, struct device_attribute *attr,
1171                        const char *buf, size_t count)
1172 {
1173         struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1174         int nr = sattr->nr;
1175         int index = sattr->index;
1176
1177         struct it87_data *data = dev_get_drvdata(dev);
1178         long val;
1179         u8 reg;
1180
1181         if (kstrtol(buf, 10, &val) < 0)
1182                 return -EINVAL;
1183
1184         mutex_lock(&data->update_lock);
1185
1186         if (has_16bit_fans(data)) {
1187                 data->fan[nr][index] = FAN16_TO_REG(val);
1188                 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1189                                  data->fan[nr][index] & 0xff);
1190                 it87_write_value(data, IT87_REG_FANX_MIN[nr],
1191                                  data->fan[nr][index] >> 8);
1192         } else {
1193                 reg = it87_read_value(data, IT87_REG_FAN_DIV);
1194                 switch (nr) {
1195                 case 0:
1196                         data->fan_div[nr] = reg & 0x07;
1197                         break;
1198                 case 1:
1199                         data->fan_div[nr] = (reg >> 3) & 0x07;
1200                         break;
1201                 case 2:
1202                         data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
1203                         break;
1204                 }
1205                 data->fan[nr][index] =
1206                   FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
1207                 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1208                                  data->fan[nr][index]);
1209         }
1210
1211         mutex_unlock(&data->update_lock);
1212         return count;
1213 }
1214
1215 static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
1216                            const char *buf, size_t count)
1217 {
1218         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1219         struct it87_data *data = dev_get_drvdata(dev);
1220         int nr = sensor_attr->index;
1221         unsigned long val;
1222         int min;
1223         u8 old;
1224
1225         if (kstrtoul(buf, 10, &val) < 0)
1226                 return -EINVAL;
1227
1228         mutex_lock(&data->update_lock);
1229         old = it87_read_value(data, IT87_REG_FAN_DIV);
1230
1231         /* Save fan min limit */
1232         min = FAN_FROM_REG(data->fan[nr][1], DIV_FROM_REG(data->fan_div[nr]));
1233
1234         switch (nr) {
1235         case 0:
1236         case 1:
1237                 data->fan_div[nr] = DIV_TO_REG(val);
1238                 break;
1239         case 2:
1240                 if (val < 8)
1241                         data->fan_div[nr] = 1;
1242                 else
1243                         data->fan_div[nr] = 3;
1244         }
1245         val = old & 0x80;
1246         val |= (data->fan_div[0] & 0x07);
1247         val |= (data->fan_div[1] & 0x07) << 3;
1248         if (data->fan_div[2] == 3)
1249                 val |= 0x1 << 6;
1250         it87_write_value(data, IT87_REG_FAN_DIV, val);
1251
1252         /* Restore fan min limit */
1253         data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
1254         it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan[nr][1]);
1255
1256         mutex_unlock(&data->update_lock);
1257         return count;
1258 }
1259
1260 /* Returns 0 if OK, -EINVAL otherwise */
1261 static int check_trip_points(struct device *dev, int nr)
1262 {
1263         const struct it87_data *data = dev_get_drvdata(dev);
1264         int i, err = 0;
1265
1266         if (has_old_autopwm(data)) {
1267                 for (i = 0; i < 3; i++) {
1268                         if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1269                                 err = -EINVAL;
1270                 }
1271                 for (i = 0; i < 2; i++) {
1272                         if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
1273                                 err = -EINVAL;
1274                 }
1275         } else if (has_newer_autopwm(data)) {
1276                 for (i = 1; i < 3; i++) {
1277                         if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1278                                 err = -EINVAL;
1279                 }
1280         }
1281
1282         if (err) {
1283                 dev_err(dev,
1284                         "Inconsistent trip points, not switching to automatic mode\n");
1285                 dev_err(dev, "Adjust the trip points and try again\n");
1286         }
1287         return err;
1288 }
1289
1290 static ssize_t set_pwm_enable(struct device *dev, struct device_attribute *attr,
1291                               const char *buf, size_t count)
1292 {
1293         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1294         struct it87_data *data = dev_get_drvdata(dev);
1295         int nr = sensor_attr->index;
1296         long val;
1297
1298         if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
1299                 return -EINVAL;
1300
1301         /* Check trip points before switching to automatic mode */
1302         if (val == 2) {
1303                 if (check_trip_points(dev, nr) < 0)
1304                         return -EINVAL;
1305         }
1306
1307         mutex_lock(&data->update_lock);
1308
1309         if (val == 0) {
1310                 if (nr < 3 && data->type != it8603) {
1311                         int tmp;
1312                         /* make sure the fan is on when in on/off mode */
1313                         tmp = it87_read_value(data, IT87_REG_FAN_CTL);
1314                         it87_write_value(data, IT87_REG_FAN_CTL, tmp | BIT(nr));
1315                         /* set on/off mode */
1316                         data->fan_main_ctrl &= ~BIT(nr);
1317                         it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1318                                          data->fan_main_ctrl);
1319                 } else {
1320                         /* No on/off mode, set maximum pwm value */
1321                         data->pwm_duty[nr] = pwm_to_reg(data, 0xff);
1322                         it87_write_value(data, IT87_REG_PWM_DUTY[nr],
1323                                          data->pwm_duty[nr]);
1324                         /* and set manual mode */
1325                         data->pwm_ctrl[nr] = has_newer_autopwm(data) ?
1326                                              data->pwm_temp_map[nr] :
1327                                              data->pwm_duty[nr];
1328                         it87_write_value(data, IT87_REG_PWM[nr],
1329                                          data->pwm_ctrl[nr]);
1330                 }
1331         } else {
1332                 if (val == 1)                           /* Manual mode */
1333                         data->pwm_ctrl[nr] = has_newer_autopwm(data) ?
1334                                              data->pwm_temp_map[nr] :
1335                                              data->pwm_duty[nr];
1336                 else                                    /* Automatic mode */
1337                         data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
1338                 it87_write_value(data, IT87_REG_PWM[nr], data->pwm_ctrl[nr]);
1339
1340                 if (data->type != it8603 && nr < 3) {
1341                         /* set SmartGuardian mode */
1342                         data->fan_main_ctrl |= BIT(nr);
1343                         it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1344                                          data->fan_main_ctrl);
1345                 }
1346         }
1347
1348         mutex_unlock(&data->update_lock);
1349         return count;
1350 }
1351
1352 static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
1353                        const char *buf, size_t count)
1354 {
1355         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1356         struct it87_data *data = dev_get_drvdata(dev);
1357         int nr = sensor_attr->index;
1358         long val;
1359
1360         if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
1361                 return -EINVAL;
1362
1363         mutex_lock(&data->update_lock);
1364         if (has_newer_autopwm(data)) {
1365                 /*
1366                  * If we are in automatic mode, the PWM duty cycle register
1367                  * is read-only so we can't write the value.
1368                  */
1369                 if (data->pwm_ctrl[nr] & 0x80) {
1370                         mutex_unlock(&data->update_lock);
1371                         return -EBUSY;
1372                 }
1373                 data->pwm_duty[nr] = pwm_to_reg(data, val);
1374                 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
1375                                  data->pwm_duty[nr]);
1376         } else {
1377                 data->pwm_duty[nr] = pwm_to_reg(data, val);
1378                 /*
1379                  * If we are in manual mode, write the duty cycle immediately;
1380                  * otherwise, just store it for later use.
1381                  */
1382                 if (!(data->pwm_ctrl[nr] & 0x80)) {
1383                         data->pwm_ctrl[nr] = data->pwm_duty[nr];
1384                         it87_write_value(data, IT87_REG_PWM[nr],
1385                                          data->pwm_ctrl[nr]);
1386                 }
1387         }
1388         mutex_unlock(&data->update_lock);
1389         return count;
1390 }
1391
1392 static ssize_t set_pwm_freq(struct device *dev, struct device_attribute *attr,
1393                             const char *buf, size_t count)
1394 {
1395         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1396         struct it87_data *data = dev_get_drvdata(dev);
1397         int nr = sensor_attr->index;
1398         unsigned long val;
1399         int i;
1400
1401         if (kstrtoul(buf, 10, &val) < 0)
1402                 return -EINVAL;
1403
1404         val = clamp_val(val, 0, 1000000);
1405         val *= has_newer_autopwm(data) ? 256 : 128;
1406
1407         /* Search for the nearest available frequency */
1408         for (i = 0; i < 7; i++) {
1409                 if (val > (pwm_freq[i] + pwm_freq[i + 1]) / 2)
1410                         break;
1411         }
1412
1413         mutex_lock(&data->update_lock);
1414         if (nr == 0) {
1415                 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
1416                 data->fan_ctl |= i << 4;
1417                 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
1418         } else {
1419                 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x8f;
1420                 data->extra |= i << 4;
1421                 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
1422         }
1423         mutex_unlock(&data->update_lock);
1424
1425         return count;
1426 }
1427
1428 static ssize_t show_pwm_temp_map(struct device *dev,
1429                                  struct device_attribute *attr, char *buf)
1430 {
1431         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1432         struct it87_data *data = it87_update_device(dev);
1433         int nr = sensor_attr->index;
1434         int map;
1435
1436         map = data->pwm_temp_map[nr];
1437         if (map >= 3)
1438                 map = 0;        /* Should never happen */
1439         if (nr >= 3)            /* pwm channels 3..6 map to temp4..6 */
1440                 map += 3;
1441
1442         return sprintf(buf, "%d\n", (int)BIT(map));
1443 }
1444
1445 static ssize_t set_pwm_temp_map(struct device *dev,
1446                                 struct device_attribute *attr, const char *buf,
1447                                 size_t count)
1448 {
1449         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1450         struct it87_data *data = dev_get_drvdata(dev);
1451         int nr = sensor_attr->index;
1452         long val;
1453         u8 reg;
1454
1455         if (kstrtol(buf, 10, &val) < 0)
1456                 return -EINVAL;
1457
1458         if (nr >= 3)
1459                 val -= 3;
1460
1461         switch (val) {
1462         case BIT(0):
1463                 reg = 0x00;
1464                 break;
1465         case BIT(1):
1466                 reg = 0x01;
1467                 break;
1468         case BIT(2):
1469                 reg = 0x02;
1470                 break;
1471         default:
1472                 return -EINVAL;
1473         }
1474
1475         mutex_lock(&data->update_lock);
1476         data->pwm_temp_map[nr] = reg;
1477         /*
1478          * If we are in automatic mode, write the temp mapping immediately;
1479          * otherwise, just store it for later use.
1480          */
1481         if (data->pwm_ctrl[nr] & 0x80) {
1482                 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
1483                 it87_write_value(data, IT87_REG_PWM[nr], data->pwm_ctrl[nr]);
1484         }
1485         mutex_unlock(&data->update_lock);
1486         return count;
1487 }
1488
1489 static ssize_t show_auto_pwm(struct device *dev, struct device_attribute *attr,
1490                              char *buf)
1491 {
1492         struct it87_data *data = it87_update_device(dev);
1493         struct sensor_device_attribute_2 *sensor_attr =
1494                         to_sensor_dev_attr_2(attr);
1495         int nr = sensor_attr->nr;
1496         int point = sensor_attr->index;
1497
1498         return sprintf(buf, "%d\n",
1499                        pwm_from_reg(data, data->auto_pwm[nr][point]));
1500 }
1501
1502 static ssize_t set_auto_pwm(struct device *dev, struct device_attribute *attr,
1503                             const char *buf, size_t count)
1504 {
1505         struct it87_data *data = dev_get_drvdata(dev);
1506         struct sensor_device_attribute_2 *sensor_attr =
1507                         to_sensor_dev_attr_2(attr);
1508         int nr = sensor_attr->nr;
1509         int point = sensor_attr->index;
1510         int regaddr;
1511         long val;
1512
1513         if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
1514                 return -EINVAL;
1515
1516         mutex_lock(&data->update_lock);
1517         data->auto_pwm[nr][point] = pwm_to_reg(data, val);
1518         if (has_newer_autopwm(data))
1519                 regaddr = IT87_REG_AUTO_TEMP(nr, 3);
1520         else
1521                 regaddr = IT87_REG_AUTO_PWM(nr, point);
1522         it87_write_value(data, regaddr, data->auto_pwm[nr][point]);
1523         mutex_unlock(&data->update_lock);
1524         return count;
1525 }
1526
1527 static ssize_t show_auto_pwm_slope(struct device *dev,
1528                                    struct device_attribute *attr, char *buf)
1529 {
1530         struct it87_data *data = it87_update_device(dev);
1531         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1532         int nr = sensor_attr->index;
1533
1534         return sprintf(buf, "%d\n", data->auto_pwm[nr][1] & 0x7f);
1535 }
1536
1537 static ssize_t set_auto_pwm_slope(struct device *dev,
1538                                   struct device_attribute *attr,
1539                                   const char *buf, size_t count)
1540 {
1541         struct it87_data *data = dev_get_drvdata(dev);
1542         struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1543         int nr = sensor_attr->index;
1544         unsigned long val;
1545
1546         if (kstrtoul(buf, 10, &val) < 0 || val > 127)
1547                 return -EINVAL;
1548
1549         mutex_lock(&data->update_lock);
1550         data->auto_pwm[nr][1] = (data->auto_pwm[nr][1] & 0x80) | val;
1551         it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 4),
1552                          data->auto_pwm[nr][1]);
1553         mutex_unlock(&data->update_lock);
1554         return count;
1555 }
1556
1557 static ssize_t show_auto_temp(struct device *dev, struct device_attribute *attr,
1558                               char *buf)
1559 {
1560         struct it87_data *data = it87_update_device(dev);
1561         struct sensor_device_attribute_2 *sensor_attr =
1562                         to_sensor_dev_attr_2(attr);
1563         int nr = sensor_attr->nr;
1564         int point = sensor_attr->index;
1565         int reg;
1566
1567         if (has_old_autopwm(data) || point)
1568                 reg = data->auto_temp[nr][point];
1569         else
1570                 reg = data->auto_temp[nr][1] - (data->auto_temp[nr][0] & 0x1f);
1571
1572         return sprintf(buf, "%d\n", TEMP_FROM_REG(reg));
1573 }
1574
1575 static ssize_t set_auto_temp(struct device *dev, struct device_attribute *attr,
1576                              const char *buf, size_t count)
1577 {
1578         struct it87_data *data = dev_get_drvdata(dev);
1579         struct sensor_device_attribute_2 *sensor_attr =
1580                         to_sensor_dev_attr_2(attr);
1581         int nr = sensor_attr->nr;
1582         int point = sensor_attr->index;
1583         long val;
1584         int reg;
1585
1586         if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
1587                 return -EINVAL;
1588
1589         mutex_lock(&data->update_lock);
1590         if (has_newer_autopwm(data) && !point) {
1591                 reg = data->auto_temp[nr][1] - TEMP_TO_REG(val);
1592                 reg = clamp_val(reg, 0, 0x1f) | (data->auto_temp[nr][0] & 0xe0);
1593                 data->auto_temp[nr][0] = reg;
1594                 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 5), reg);
1595         } else {
1596                 reg = TEMP_TO_REG(val);
1597                 data->auto_temp[nr][point] = reg;
1598                 if (has_newer_autopwm(data))
1599                         point--;
1600                 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point), reg);
1601         }
1602         mutex_unlock(&data->update_lock);
1603         return count;
1604 }
1605
1606 static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0);
1607 static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1608                             0, 1);
1609 static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div,
1610                           set_fan_div, 0);
1611
1612 static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0);
1613 static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1614                             1, 1);
1615 static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div,
1616                           set_fan_div, 1);
1617
1618 static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0);
1619 static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1620                             2, 1);
1621 static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div,
1622                           set_fan_div, 2);
1623
1624 static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0);
1625 static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1626                             3, 1);
1627
1628 static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0);
1629 static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1630                             4, 1);
1631
1632 static SENSOR_DEVICE_ATTR_2(fan6_input, S_IRUGO, show_fan, NULL, 5, 0);
1633 static SENSOR_DEVICE_ATTR_2(fan6_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1634                             5, 1);
1635
1636 static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
1637                           show_pwm_enable, set_pwm_enable, 0);
1638 static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
1639 static SENSOR_DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq,
1640                           set_pwm_freq, 0);
1641 static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO,
1642                           show_pwm_temp_map, set_pwm_temp_map, 0);
1643 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR,
1644                             show_auto_pwm, set_auto_pwm, 0, 0);
1645 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR,
1646                             show_auto_pwm, set_auto_pwm, 0, 1);
1647 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR,
1648                             show_auto_pwm, set_auto_pwm, 0, 2);
1649 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO,
1650                             show_auto_pwm, NULL, 0, 3);
1651 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
1652                             show_auto_temp, set_auto_temp, 0, 1);
1653 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1654                             show_auto_temp, set_auto_temp, 0, 0);
1655 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
1656                             show_auto_temp, set_auto_temp, 0, 2);
1657 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
1658                             show_auto_temp, set_auto_temp, 0, 3);
1659 static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR,
1660                             show_auto_temp, set_auto_temp, 0, 4);
1661 static SENSOR_DEVICE_ATTR_2(pwm1_auto_start, S_IRUGO | S_IWUSR,
1662                             show_auto_pwm, set_auto_pwm, 0, 0);
1663 static SENSOR_DEVICE_ATTR(pwm1_auto_slope, S_IRUGO | S_IWUSR,
1664                           show_auto_pwm_slope, set_auto_pwm_slope, 0);
1665
1666 static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
1667                           show_pwm_enable, set_pwm_enable, 1);
1668 static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
1669 static SENSOR_DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, set_pwm_freq, 1);
1670 static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO,
1671                           show_pwm_temp_map, set_pwm_temp_map, 1);
1672 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR,
1673                             show_auto_pwm, set_auto_pwm, 1, 0);
1674 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR,
1675                             show_auto_pwm, set_auto_pwm, 1, 1);
1676 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR,
1677                             show_auto_pwm, set_auto_pwm, 1, 2);
1678 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO,
1679                             show_auto_pwm, NULL, 1, 3);
1680 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
1681                             show_auto_temp, set_auto_temp, 1, 1);
1682 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1683                             show_auto_temp, set_auto_temp, 1, 0);
1684 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
1685                             show_auto_temp, set_auto_temp, 1, 2);
1686 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
1687                             show_auto_temp, set_auto_temp, 1, 3);
1688 static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR,
1689                             show_auto_temp, set_auto_temp, 1, 4);
1690 static SENSOR_DEVICE_ATTR_2(pwm2_auto_start, S_IRUGO | S_IWUSR,
1691                             show_auto_pwm, set_auto_pwm, 1, 0);
1692 static SENSOR_DEVICE_ATTR(pwm2_auto_slope, S_IRUGO | S_IWUSR,
1693                           show_auto_pwm_slope, set_auto_pwm_slope, 1);
1694
1695 static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
1696                           show_pwm_enable, set_pwm_enable, 2);
1697 static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2);
1698 static SENSOR_DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL, 2);
1699 static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO,
1700                           show_pwm_temp_map, set_pwm_temp_map, 2);
1701 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR,
1702                             show_auto_pwm, set_auto_pwm, 2, 0);
1703 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR,
1704                             show_auto_pwm, set_auto_pwm, 2, 1);
1705 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR,
1706                             show_auto_pwm, set_auto_pwm, 2, 2);
1707 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO,
1708                             show_auto_pwm, NULL, 2, 3);
1709 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
1710                             show_auto_temp, set_auto_temp, 2, 1);
1711 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1712                             show_auto_temp, set_auto_temp, 2, 0);
1713 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
1714                             show_auto_temp, set_auto_temp, 2, 2);
1715 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
1716                             show_auto_temp, set_auto_temp, 2, 3);
1717 static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR,
1718                             show_auto_temp, set_auto_temp, 2, 4);
1719 static SENSOR_DEVICE_ATTR_2(pwm3_auto_start, S_IRUGO | S_IWUSR,
1720                             show_auto_pwm, set_auto_pwm, 2, 0);
1721 static SENSOR_DEVICE_ATTR(pwm3_auto_slope, S_IRUGO | S_IWUSR,
1722                           show_auto_pwm_slope, set_auto_pwm_slope, 2);
1723
1724 static SENSOR_DEVICE_ATTR(pwm4_enable, S_IRUGO | S_IWUSR,
1725                           show_pwm_enable, set_pwm_enable, 3);
1726 static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 3);
1727 static SENSOR_DEVICE_ATTR(pwm4_freq, S_IRUGO, show_pwm_freq, NULL, 3);
1728 static SENSOR_DEVICE_ATTR(pwm4_auto_channels_temp, S_IRUGO,
1729                           show_pwm_temp_map, set_pwm_temp_map, 3);
1730 static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp, S_IRUGO | S_IWUSR,
1731                             show_auto_temp, set_auto_temp, 2, 1);
1732 static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1733                             show_auto_temp, set_auto_temp, 2, 0);
1734 static SENSOR_DEVICE_ATTR_2(pwm4_auto_point2_temp, S_IRUGO | S_IWUSR,
1735                             show_auto_temp, set_auto_temp, 2, 2);
1736 static SENSOR_DEVICE_ATTR_2(pwm4_auto_point3_temp, S_IRUGO | S_IWUSR,
1737                             show_auto_temp, set_auto_temp, 2, 3);
1738 static SENSOR_DEVICE_ATTR_2(pwm4_auto_start, S_IRUGO | S_IWUSR,
1739                             show_auto_pwm, set_auto_pwm, 3, 0);
1740 static SENSOR_DEVICE_ATTR(pwm4_auto_slope, S_IRUGO | S_IWUSR,
1741                           show_auto_pwm_slope, set_auto_pwm_slope, 3);
1742
1743 static SENSOR_DEVICE_ATTR(pwm5_enable, S_IRUGO | S_IWUSR,
1744                           show_pwm_enable, set_pwm_enable, 4);
1745 static SENSOR_DEVICE_ATTR(pwm5, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 4);
1746 static SENSOR_DEVICE_ATTR(pwm5_freq, S_IRUGO, show_pwm_freq, NULL, 4);
1747 static SENSOR_DEVICE_ATTR(pwm5_auto_channels_temp, S_IRUGO,
1748                           show_pwm_temp_map, set_pwm_temp_map, 4);
1749 static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp, S_IRUGO | S_IWUSR,
1750                             show_auto_temp, set_auto_temp, 2, 1);
1751 static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1752                             show_auto_temp, set_auto_temp, 2, 0);
1753 static SENSOR_DEVICE_ATTR_2(pwm5_auto_point2_temp, S_IRUGO | S_IWUSR,
1754                             show_auto_temp, set_auto_temp, 2, 2);
1755 static SENSOR_DEVICE_ATTR_2(pwm5_auto_point3_temp, S_IRUGO | S_IWUSR,
1756                             show_auto_temp, set_auto_temp, 2, 3);
1757 static SENSOR_DEVICE_ATTR_2(pwm5_auto_start, S_IRUGO | S_IWUSR,
1758                             show_auto_pwm, set_auto_pwm, 4, 0);
1759 static SENSOR_DEVICE_ATTR(pwm5_auto_slope, S_IRUGO | S_IWUSR,
1760                           show_auto_pwm_slope, set_auto_pwm_slope, 4);
1761
1762 static SENSOR_DEVICE_ATTR(pwm6_enable, S_IRUGO | S_IWUSR,
1763                           show_pwm_enable, set_pwm_enable, 5);
1764 static SENSOR_DEVICE_ATTR(pwm6, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 5);
1765 static SENSOR_DEVICE_ATTR(pwm6_freq, S_IRUGO, show_pwm_freq, NULL, 5);
1766 static SENSOR_DEVICE_ATTR(pwm6_auto_channels_temp, S_IRUGO,
1767                           show_pwm_temp_map, set_pwm_temp_map, 5);
1768 static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp, S_IRUGO | S_IWUSR,
1769                             show_auto_temp, set_auto_temp, 2, 1);
1770 static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1771                             show_auto_temp, set_auto_temp, 2, 0);
1772 static SENSOR_DEVICE_ATTR_2(pwm6_auto_point2_temp, S_IRUGO | S_IWUSR,
1773                             show_auto_temp, set_auto_temp, 2, 2);
1774 static SENSOR_DEVICE_ATTR_2(pwm6_auto_point3_temp, S_IRUGO | S_IWUSR,
1775                             show_auto_temp, set_auto_temp, 2, 3);
1776 static SENSOR_DEVICE_ATTR_2(pwm6_auto_start, S_IRUGO | S_IWUSR,
1777                             show_auto_pwm, set_auto_pwm, 5, 0);
1778 static SENSOR_DEVICE_ATTR(pwm6_auto_slope, S_IRUGO | S_IWUSR,
1779                           show_auto_pwm_slope, set_auto_pwm_slope, 5);
1780
1781 /* Alarms */
1782 static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
1783                            char *buf)
1784 {
1785         struct it87_data *data = it87_update_device(dev);
1786
1787         return sprintf(buf, "%u\n", data->alarms);
1788 }
1789 static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
1790
1791 static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
1792                           char *buf)
1793 {
1794         struct it87_data *data = it87_update_device(dev);
1795         int bitnr = to_sensor_dev_attr(attr)->index;
1796
1797         return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1798 }
1799
1800 static ssize_t clear_intrusion(struct device *dev,
1801                                struct device_attribute *attr, const char *buf,
1802                                size_t count)
1803 {
1804         struct it87_data *data = dev_get_drvdata(dev);
1805         int config;
1806         long val;
1807
1808         if (kstrtol(buf, 10, &val) < 0 || val != 0)
1809                 return -EINVAL;
1810
1811         mutex_lock(&data->update_lock);
1812         config = it87_read_value(data, IT87_REG_CONFIG);
1813         if (config < 0) {
1814                 count = config;
1815         } else {
1816                 config |= BIT(5);
1817                 it87_write_value(data, IT87_REG_CONFIG, config);
1818                 /* Invalidate cache to force re-read */
1819                 data->valid = 0;
1820         }
1821         mutex_unlock(&data->update_lock);
1822
1823         return count;
1824 }
1825
1826 static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1827 static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1828 static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1829 static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1830 static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1831 static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1832 static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1833 static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1834 static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1835 static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1836 static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1837 static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1838 static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
1839 static SENSOR_DEVICE_ATTR(fan6_alarm, S_IRUGO, show_alarm, NULL, 7);
1840 static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1841 static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1842 static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
1843 static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1844                           show_alarm, clear_intrusion, 4);
1845
1846 static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
1847                          char *buf)
1848 {
1849         struct it87_data *data = it87_update_device(dev);
1850         int bitnr = to_sensor_dev_attr(attr)->index;
1851
1852         return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1853 }
1854
1855 static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
1856                         const char *buf, size_t count)
1857 {
1858         int bitnr = to_sensor_dev_attr(attr)->index;
1859         struct it87_data *data = dev_get_drvdata(dev);
1860         long val;
1861
1862         if (kstrtol(buf, 10, &val) < 0 || (val != 0 && val != 1))
1863                 return -EINVAL;
1864
1865         mutex_lock(&data->update_lock);
1866         data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1867         if (val)
1868                 data->beeps |= BIT(bitnr);
1869         else
1870                 data->beeps &= ~BIT(bitnr);
1871         it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1872         mutex_unlock(&data->update_lock);
1873         return count;
1874 }
1875
1876 static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1877                           show_beep, set_beep, 1);
1878 static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1879 static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1880 static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1881 static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1882 static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1883 static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1884 static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1885 /* fanX_beep writability is set later */
1886 static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1887 static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1888 static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1889 static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1890 static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
1891 static SENSOR_DEVICE_ATTR(fan6_beep, S_IRUGO, show_beep, set_beep, 0);
1892 static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1893                           show_beep, set_beep, 2);
1894 static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1895 static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1896
1897 static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
1898                             char *buf)
1899 {
1900         struct it87_data *data = dev_get_drvdata(dev);
1901
1902         return sprintf(buf, "%u\n", data->vrm);
1903 }
1904
1905 static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
1906                              const char *buf, size_t count)
1907 {
1908         struct it87_data *data = dev_get_drvdata(dev);
1909         unsigned long val;
1910
1911         if (kstrtoul(buf, 10, &val) < 0)
1912                 return -EINVAL;
1913
1914         data->vrm = val;
1915
1916         return count;
1917 }
1918 static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
1919
1920 static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
1921                             char *buf)
1922 {
1923         struct it87_data *data = it87_update_device(dev);
1924
1925         return sprintf(buf, "%ld\n", (long)vid_from_reg(data->vid, data->vrm));
1926 }
1927 static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
1928
1929 static ssize_t show_label(struct device *dev, struct device_attribute *attr,
1930                           char *buf)
1931 {
1932         static const char * const labels[] = {
1933                 "+5V",
1934                 "5VSB",
1935                 "Vbat",
1936                 "AVCC",
1937         };
1938         static const char * const labels_it8721[] = {
1939                 "+3.3V",
1940                 "3VSB",
1941                 "Vbat",
1942                 "+3.3V",
1943         };
1944         struct it87_data *data = dev_get_drvdata(dev);
1945         int nr = to_sensor_dev_attr(attr)->index;
1946         const char *label;
1947
1948         if (has_vin3_5v(data) && nr == 0)
1949                 label = labels[0];
1950         else if (has_12mv_adc(data) || has_10_9mv_adc(data))
1951                 label = labels_it8721[nr];
1952         else
1953                 label = labels[nr];
1954
1955         return sprintf(buf, "%s\n", label);
1956 }
1957 static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1958 static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1959 static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
1960 /* AVCC3 */
1961 static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 3);
1962
1963 static umode_t it87_in_is_visible(struct kobject *kobj,
1964                                   struct attribute *attr, int index)
1965 {
1966         struct device *dev = container_of(kobj, struct device, kobj);
1967         struct it87_data *data = dev_get_drvdata(dev);
1968         int i = index / 5;      /* voltage index */
1969         int a = index % 5;      /* attribute index */
1970
1971         if (index >= 40) {      /* in8 and higher only have input attributes */
1972                 i = index - 40 + 8;
1973                 a = 0;
1974         }
1975
1976         if (!(data->has_in & BIT(i)))
1977                 return 0;
1978
1979         if (a == 4 && !data->has_beep)
1980                 return 0;
1981
1982         return attr->mode;
1983 }
1984
1985 static struct attribute *it87_attributes_in[] = {
1986         &sensor_dev_attr_in0_input.dev_attr.attr,
1987         &sensor_dev_attr_in0_min.dev_attr.attr,
1988         &sensor_dev_attr_in0_max.dev_attr.attr,
1989         &sensor_dev_attr_in0_alarm.dev_attr.attr,
1990         &sensor_dev_attr_in0_beep.dev_attr.attr,        /* 4 */
1991
1992         &sensor_dev_attr_in1_input.dev_attr.attr,
1993         &sensor_dev_attr_in1_min.dev_attr.attr,
1994         &sensor_dev_attr_in1_max.dev_attr.attr,
1995         &sensor_dev_attr_in1_alarm.dev_attr.attr,
1996         &sensor_dev_attr_in1_beep.dev_attr.attr,        /* 9 */
1997
1998         &sensor_dev_attr_in2_input.dev_attr.attr,
1999         &sensor_dev_attr_in2_min.dev_attr.attr,
2000         &sensor_dev_attr_in2_max.dev_attr.attr,
2001         &sensor_dev_attr_in2_alarm.dev_attr.attr,
2002         &sensor_dev_attr_in2_beep.dev_attr.attr,        /* 14 */
2003
2004         &sensor_dev_attr_in3_input.dev_attr.attr,
2005         &sensor_dev_attr_in3_min.dev_attr.attr,
2006         &sensor_dev_attr_in3_max.dev_attr.attr,
2007         &sensor_dev_attr_in3_alarm.dev_attr.attr,
2008         &sensor_dev_attr_in3_beep.dev_attr.attr,        /* 19 */
2009
2010         &sensor_dev_attr_in4_input.dev_attr.attr,
2011         &sensor_dev_attr_in4_min.dev_attr.attr,
2012         &sensor_dev_attr_in4_max.dev_attr.attr,
2013         &sensor_dev_attr_in4_alarm.dev_attr.attr,
2014         &sensor_dev_attr_in4_beep.dev_attr.attr,        /* 24 */
2015
2016         &sensor_dev_attr_in5_input.dev_attr.attr,
2017         &sensor_dev_attr_in5_min.dev_attr.attr,
2018         &sensor_dev_attr_in5_max.dev_attr.attr,
2019         &sensor_dev_attr_in5_alarm.dev_attr.attr,
2020         &sensor_dev_attr_in5_beep.dev_attr.attr,        /* 29 */
2021
2022         &sensor_dev_attr_in6_input.dev_attr.attr,
2023         &sensor_dev_attr_in6_min.dev_attr.attr,
2024         &sensor_dev_attr_in6_max.dev_attr.attr,
2025         &sensor_dev_attr_in6_alarm.dev_attr.attr,
2026         &sensor_dev_attr_in6_beep.dev_attr.attr,        /* 34 */
2027
2028         &sensor_dev_attr_in7_input.dev_attr.attr,
2029         &sensor_dev_attr_in7_min.dev_attr.attr,
2030         &sensor_dev_attr_in7_max.dev_attr.attr,
2031         &sensor_dev_attr_in7_alarm.dev_attr.attr,
2032         &sensor_dev_attr_in7_beep.dev_attr.attr,        /* 39 */
2033
2034         &sensor_dev_attr_in8_input.dev_attr.attr,       /* 40 */
2035         &sensor_dev_attr_in9_input.dev_attr.attr,       /* 41 */
2036         &sensor_dev_attr_in10_input.dev_attr.attr,      /* 41 */
2037         &sensor_dev_attr_in11_input.dev_attr.attr,      /* 41 */
2038         &sensor_dev_attr_in12_input.dev_attr.attr,      /* 41 */
2039         NULL
2040 };
2041
2042 static const struct attribute_group it87_group_in = {
2043         .attrs = it87_attributes_in,
2044         .is_visible = it87_in_is_visible,
2045 };
2046
2047 static umode_t it87_temp_is_visible(struct kobject *kobj,
2048                                     struct attribute *attr, int index)
2049 {
2050         struct device *dev = container_of(kobj, struct device, kobj);
2051         struct it87_data *data = dev_get_drvdata(dev);
2052         int i = index / 7;      /* temperature index */
2053         int a = index % 7;      /* attribute index */
2054
2055         if (index >= 21) {
2056                 i = index - 21 + 3;
2057                 a = 0;
2058         }
2059
2060         if (!(data->has_temp & BIT(i)))
2061                 return 0;
2062
2063         if (a == 5 && !has_temp_offset(data))
2064                 return 0;
2065
2066         if (a == 6 && !data->has_beep)
2067                 return 0;
2068
2069         return attr->mode;
2070 }
2071
2072 static struct attribute *it87_attributes_temp[] = {
2073         &sensor_dev_attr_temp1_input.dev_attr.attr,
2074         &sensor_dev_attr_temp1_max.dev_attr.attr,
2075         &sensor_dev_attr_temp1_min.dev_attr.attr,
2076         &sensor_dev_attr_temp1_type.dev_attr.attr,
2077         &sensor_dev_attr_temp1_alarm.dev_attr.attr,
2078         &sensor_dev_attr_temp1_offset.dev_attr.attr,    /* 5 */
2079         &sensor_dev_attr_temp1_beep.dev_attr.attr,      /* 6 */
2080
2081         &sensor_dev_attr_temp2_input.dev_attr.attr,     /* 7 */
2082         &sensor_dev_attr_temp2_max.dev_attr.attr,
2083         &sensor_dev_attr_temp2_min.dev_attr.attr,
2084         &sensor_dev_attr_temp2_type.dev_attr.attr,
2085         &sensor_dev_attr_temp2_alarm.dev_attr.attr,
2086         &sensor_dev_attr_temp2_offset.dev_attr.attr,
2087         &sensor_dev_attr_temp2_beep.dev_attr.attr,
2088
2089         &sensor_dev_attr_temp3_input.dev_attr.attr,     /* 14 */
2090         &sensor_dev_attr_temp3_max.dev_attr.attr,
2091         &sensor_dev_attr_temp3_min.dev_attr.attr,
2092         &sensor_dev_attr_temp3_type.dev_attr.attr,
2093         &sensor_dev_attr_temp3_alarm.dev_attr.attr,
2094         &sensor_dev_attr_temp3_offset.dev_attr.attr,
2095         &sensor_dev_attr_temp3_beep.dev_attr.attr,
2096
2097         &sensor_dev_attr_temp4_input.dev_attr.attr,     /* 21 */
2098         &sensor_dev_attr_temp5_input.dev_attr.attr,
2099         &sensor_dev_attr_temp6_input.dev_attr.attr,
2100         NULL
2101 };
2102
2103 static const struct attribute_group it87_group_temp = {
2104         .attrs = it87_attributes_temp,
2105         .is_visible = it87_temp_is_visible,
2106 };
2107
2108 static umode_t it87_is_visible(struct kobject *kobj,
2109                                struct attribute *attr, int index)
2110 {
2111         struct device *dev = container_of(kobj, struct device, kobj);
2112         struct it87_data *data = dev_get_drvdata(dev);
2113
2114         if ((index == 2 || index == 3) && !data->has_vid)
2115                 return 0;
2116
2117         if (index > 3 && !(data->in_internal & BIT(index - 4)))
2118                 return 0;
2119
2120         return attr->mode;
2121 }
2122
2123 static struct attribute *it87_attributes[] = {
2124         &dev_attr_alarms.attr,
2125         &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
2126         &dev_attr_vrm.attr,                             /* 2 */
2127         &dev_attr_cpu0_vid.attr,                        /* 3 */
2128         &sensor_dev_attr_in3_label.dev_attr.attr,       /* 4 .. 7 */
2129         &sensor_dev_attr_in7_label.dev_attr.attr,
2130         &sensor_dev_attr_in8_label.dev_attr.attr,
2131         &sensor_dev_attr_in9_label.dev_attr.attr,
2132         NULL
2133 };
2134
2135 static const struct attribute_group it87_group = {
2136         .attrs = it87_attributes,
2137         .is_visible = it87_is_visible,
2138 };
2139
2140 static umode_t it87_fan_is_visible(struct kobject *kobj,
2141                                    struct attribute *attr, int index)
2142 {
2143         struct device *dev = container_of(kobj, struct device, kobj);
2144         struct it87_data *data = dev_get_drvdata(dev);
2145         int i = index / 5;      /* fan index */
2146         int a = index % 5;      /* attribute index */
2147
2148         if (index >= 15) {      /* fan 4..6 don't have divisor attributes */
2149                 i = (index - 15) / 4 + 3;
2150                 a = (index - 15) % 4;
2151         }
2152
2153         if (!(data->has_fan & BIT(i)))
2154                 return 0;
2155
2156         if (a == 3) {                           /* beep */
2157                 if (!data->has_beep)
2158                         return 0;
2159                 /* first fan beep attribute is writable */
2160                 if (i == __ffs(data->has_fan))
2161                         return attr->mode | S_IWUSR;
2162         }
2163
2164         if (a == 4 && has_16bit_fans(data))     /* divisor */
2165                 return 0;
2166
2167         return attr->mode;
2168 }
2169
2170 static struct attribute *it87_attributes_fan[] = {
2171         &sensor_dev_attr_fan1_input.dev_attr.attr,
2172         &sensor_dev_attr_fan1_min.dev_attr.attr,
2173         &sensor_dev_attr_fan1_alarm.dev_attr.attr,
2174         &sensor_dev_attr_fan1_beep.dev_attr.attr,       /* 3 */
2175         &sensor_dev_attr_fan1_div.dev_attr.attr,        /* 4 */
2176
2177         &sensor_dev_attr_fan2_input.dev_attr.attr,
2178         &sensor_dev_attr_fan2_min.dev_attr.attr,
2179         &sensor_dev_attr_fan2_alarm.dev_attr.attr,
2180         &sensor_dev_attr_fan2_beep.dev_attr.attr,
2181         &sensor_dev_attr_fan2_div.dev_attr.attr,        /* 9 */
2182
2183         &sensor_dev_attr_fan3_input.dev_attr.attr,
2184         &sensor_dev_attr_fan3_min.dev_attr.attr,
2185         &sensor_dev_attr_fan3_alarm.dev_attr.attr,
2186         &sensor_dev_attr_fan3_beep.dev_attr.attr,
2187         &sensor_dev_attr_fan3_div.dev_attr.attr,        /* 14 */
2188
2189         &sensor_dev_attr_fan4_input.dev_attr.attr,      /* 15 */
2190         &sensor_dev_attr_fan4_min.dev_attr.attr,
2191         &sensor_dev_attr_fan4_alarm.dev_attr.attr,
2192         &sensor_dev_attr_fan4_beep.dev_attr.attr,
2193
2194         &sensor_dev_attr_fan5_input.dev_attr.attr,      /* 19 */
2195         &sensor_dev_attr_fan5_min.dev_attr.attr,
2196         &sensor_dev_attr_fan5_alarm.dev_attr.attr,
2197         &sensor_dev_attr_fan5_beep.dev_attr.attr,
2198
2199         &sensor_dev_attr_fan6_input.dev_attr.attr,      /* 23 */
2200         &sensor_dev_attr_fan6_min.dev_attr.attr,
2201         &sensor_dev_attr_fan6_alarm.dev_attr.attr,
2202         &sensor_dev_attr_fan6_beep.dev_attr.attr,
2203         NULL
2204 };
2205
2206 static const struct attribute_group it87_group_fan = {
2207         .attrs = it87_attributes_fan,
2208         .is_visible = it87_fan_is_visible,
2209 };
2210
2211 static umode_t it87_pwm_is_visible(struct kobject *kobj,
2212                                    struct attribute *attr, int index)
2213 {
2214         struct device *dev = container_of(kobj, struct device, kobj);
2215         struct it87_data *data = dev_get_drvdata(dev);
2216         int i = index / 4;      /* pwm index */
2217         int a = index % 4;      /* attribute index */
2218
2219         if (!(data->has_pwm & BIT(i)))
2220                 return 0;
2221
2222         /* pwmX_auto_channels_temp is only writable if auto pwm is supported */
2223         if (a == 3 && (has_old_autopwm(data) || has_newer_autopwm(data)))
2224                 return attr->mode | S_IWUSR;
2225
2226         /* pwm2_freq is writable if there are two pwm frequency selects */
2227         if (has_pwm_freq2(data) && i == 1 && a == 2)
2228                 return attr->mode | S_IWUSR;
2229
2230         return attr->mode;
2231 }
2232
2233 static struct attribute *it87_attributes_pwm[] = {
2234         &sensor_dev_attr_pwm1_enable.dev_attr.attr,
2235         &sensor_dev_attr_pwm1.dev_attr.attr,
2236         &sensor_dev_attr_pwm1_freq.dev_attr.attr,
2237         &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
2238
2239         &sensor_dev_attr_pwm2_enable.dev_attr.attr,
2240         &sensor_dev_attr_pwm2.dev_attr.attr,
2241         &sensor_dev_attr_pwm2_freq.dev_attr.attr,
2242         &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
2243
2244         &sensor_dev_attr_pwm3_enable.dev_attr.attr,
2245         &sensor_dev_attr_pwm3.dev_attr.attr,
2246         &sensor_dev_attr_pwm3_freq.dev_attr.attr,
2247         &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
2248
2249         &sensor_dev_attr_pwm4_enable.dev_attr.attr,
2250         &sensor_dev_attr_pwm4.dev_attr.attr,
2251         &sensor_dev_attr_pwm4_freq.dev_attr.attr,
2252         &sensor_dev_attr_pwm4_auto_channels_temp.dev_attr.attr,
2253
2254         &sensor_dev_attr_pwm5_enable.dev_attr.attr,
2255         &sensor_dev_attr_pwm5.dev_attr.attr,
2256         &sensor_dev_attr_pwm5_freq.dev_attr.attr,
2257         &sensor_dev_attr_pwm5_auto_channels_temp.dev_attr.attr,
2258
2259         &sensor_dev_attr_pwm6_enable.dev_attr.attr,
2260         &sensor_dev_attr_pwm6.dev_attr.attr,
2261         &sensor_dev_attr_pwm6_freq.dev_attr.attr,
2262         &sensor_dev_attr_pwm6_auto_channels_temp.dev_attr.attr,
2263
2264         NULL
2265 };
2266
2267 static const struct attribute_group it87_group_pwm = {
2268         .attrs = it87_attributes_pwm,
2269         .is_visible = it87_pwm_is_visible,
2270 };
2271
2272 static umode_t it87_auto_pwm_is_visible(struct kobject *kobj,
2273                                         struct attribute *attr, int index)
2274 {
2275         struct device *dev = container_of(kobj, struct device, kobj);
2276         struct it87_data *data = dev_get_drvdata(dev);
2277         int i = index / 11;     /* pwm index */
2278         int a = index % 11;     /* attribute index */
2279
2280         if (index >= 33) {      /* pwm 4..6 */
2281                 i = (index - 33) / 6 + 3;
2282                 a = (index - 33) % 6 + 4;
2283         }
2284
2285         if (!(data->has_pwm & BIT(i)))
2286                 return 0;
2287
2288         if (has_newer_autopwm(data)) {
2289                 if (a < 4)      /* no auto point pwm */
2290                         return 0;
2291                 if (a == 8)     /* no auto_point4 */
2292                         return 0;
2293         }
2294         if (has_old_autopwm(data)) {
2295                 if (a >= 9)     /* no pwm_auto_start, pwm_auto_slope */
2296                         return 0;
2297         }
2298
2299         return attr->mode;
2300 }
2301
2302 static struct attribute *it87_attributes_auto_pwm[] = {
2303         &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
2304         &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
2305         &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
2306         &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
2307         &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
2308         &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
2309         &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
2310         &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
2311         &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
2312         &sensor_dev_attr_pwm1_auto_start.dev_attr.attr,
2313         &sensor_dev_attr_pwm1_auto_slope.dev_attr.attr,
2314
2315         &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr,    /* 11 */
2316         &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
2317         &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
2318         &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
2319         &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
2320         &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
2321         &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
2322         &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
2323         &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
2324         &sensor_dev_attr_pwm2_auto_start.dev_attr.attr,
2325         &sensor_dev_attr_pwm2_auto_slope.dev_attr.attr,
2326
2327         &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr,    /* 22 */
2328         &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
2329         &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
2330         &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
2331         &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
2332         &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
2333         &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
2334         &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
2335         &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
2336         &sensor_dev_attr_pwm3_auto_start.dev_attr.attr,
2337         &sensor_dev_attr_pwm3_auto_slope.dev_attr.attr,
2338
2339         &sensor_dev_attr_pwm4_auto_point1_temp.dev_attr.attr,   /* 33 */
2340         &sensor_dev_attr_pwm4_auto_point1_temp_hyst.dev_attr.attr,
2341         &sensor_dev_attr_pwm4_auto_point2_temp.dev_attr.attr,
2342         &sensor_dev_attr_pwm4_auto_point3_temp.dev_attr.attr,
2343         &sensor_dev_attr_pwm4_auto_start.dev_attr.attr,
2344         &sensor_dev_attr_pwm4_auto_slope.dev_attr.attr,
2345
2346         &sensor_dev_attr_pwm5_auto_point1_temp.dev_attr.attr,
2347         &sensor_dev_attr_pwm5_auto_point1_temp_hyst.dev_attr.attr,
2348         &sensor_dev_attr_pwm5_auto_point2_temp.dev_attr.attr,
2349         &sensor_dev_attr_pwm5_auto_point3_temp.dev_attr.attr,
2350         &sensor_dev_attr_pwm5_auto_start.dev_attr.attr,
2351         &sensor_dev_attr_pwm5_auto_slope.dev_attr.attr,
2352
2353         &sensor_dev_attr_pwm6_auto_point1_temp.dev_attr.attr,
2354         &sensor_dev_attr_pwm6_auto_point1_temp_hyst.dev_attr.attr,
2355         &sensor_dev_attr_pwm6_auto_point2_temp.dev_attr.attr,
2356         &sensor_dev_attr_pwm6_auto_point3_temp.dev_attr.attr,
2357         &sensor_dev_attr_pwm6_auto_start.dev_attr.attr,
2358         &sensor_dev_attr_pwm6_auto_slope.dev_attr.attr,
2359
2360         NULL,
2361 };
2362
2363 static const struct attribute_group it87_group_auto_pwm = {
2364         .attrs = it87_attributes_auto_pwm,
2365         .is_visible = it87_auto_pwm_is_visible,
2366 };
2367
2368 /* SuperIO detection - will change isa_address if a chip is found */
2369 static int __init it87_find(int sioaddr, unsigned short *address,
2370                             struct it87_sio_data *sio_data)
2371 {
2372         int err;
2373         u16 chip_type;
2374         const char *board_vendor, *board_name;
2375         const struct it87_devices *config;
2376
2377         err = superio_enter(sioaddr);
2378         if (err)
2379                 return err;
2380
2381         err = -ENODEV;
2382         chip_type = force_id ? force_id : superio_inw(sioaddr, DEVID);
2383
2384         switch (chip_type) {
2385         case IT8705F_DEVID:
2386                 sio_data->type = it87;
2387                 break;
2388         case IT8712F_DEVID:
2389                 sio_data->type = it8712;
2390                 break;
2391         case IT8716F_DEVID:
2392         case IT8726F_DEVID:
2393                 sio_data->type = it8716;
2394                 break;
2395         case IT8718F_DEVID:
2396                 sio_data->type = it8718;
2397                 break;
2398         case IT8720F_DEVID:
2399                 sio_data->type = it8720;
2400                 break;
2401         case IT8721F_DEVID:
2402                 sio_data->type = it8721;
2403                 break;
2404         case IT8728F_DEVID:
2405                 sio_data->type = it8728;
2406                 break;
2407         case IT8732F_DEVID:
2408                 sio_data->type = it8732;
2409                 break;
2410         case IT8771E_DEVID:
2411                 sio_data->type = it8771;
2412                 break;
2413         case IT8772E_DEVID:
2414                 sio_data->type = it8772;
2415                 break;
2416         case IT8781F_DEVID:
2417                 sio_data->type = it8781;
2418                 break;
2419         case IT8782F_DEVID:
2420                 sio_data->type = it8782;
2421                 break;
2422         case IT8783E_DEVID:
2423                 sio_data->type = it8783;
2424                 break;
2425         case IT8786E_DEVID:
2426                 sio_data->type = it8786;
2427                 break;
2428         case IT8790E_DEVID:
2429                 sio_data->type = it8790;
2430                 break;
2431         case IT8603E_DEVID:
2432         case IT8623E_DEVID:
2433                 sio_data->type = it8603;
2434                 break;
2435         case IT8620E_DEVID:
2436                 sio_data->type = it8620;
2437                 break;
2438         case IT8622E_DEVID:
2439                 sio_data->type = it8622;
2440                 break;
2441         case IT8628E_DEVID:
2442                 sio_data->type = it8628;
2443                 break;
2444         case 0xffff:    /* No device at all */
2445                 goto exit;
2446         default:
2447                 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
2448                 goto exit;
2449         }
2450
2451         superio_select(sioaddr, PME);
2452         if (!(superio_inb(sioaddr, IT87_ACT_REG) & 0x01)) {
2453                 pr_info("Device not activated, skipping\n");
2454                 goto exit;
2455         }
2456
2457         *address = superio_inw(sioaddr, IT87_BASE_REG) & ~(IT87_EXTENT - 1);
2458         if (*address == 0) {
2459                 pr_info("Base address not set, skipping\n");
2460                 goto exit;
2461         }
2462
2463         err = 0;
2464         sio_data->revision = superio_inb(sioaddr, DEVREV) & 0x0f;
2465         pr_info("Found IT%04x%s chip at 0x%x, revision %d\n", chip_type,
2466                 it87_devices[sio_data->type].suffix,
2467                 *address, sio_data->revision);
2468
2469         config = &it87_devices[sio_data->type];
2470
2471         /* in7 (VSB or VCCH5V) is always internal on some chips */
2472         if (has_in7_internal(config))
2473                 sio_data->internal |= BIT(1);
2474
2475         /* in8 (Vbat) is always internal */
2476         sio_data->internal |= BIT(2);
2477
2478         /* in9 (AVCC3), always internal if supported */
2479         if (has_avcc3(config))
2480                 sio_data->internal |= BIT(3); /* in9 is AVCC */
2481         else
2482                 sio_data->skip_in |= BIT(9);
2483
2484         if (!has_five_pwm(config))
2485                 sio_data->skip_pwm |= BIT(3) | BIT(4) | BIT(5);
2486         else if (!has_six_pwm(config))
2487                 sio_data->skip_pwm |= BIT(5);
2488
2489         if (!has_vid(config))
2490                 sio_data->skip_vid = 1;
2491
2492         /* Read GPIO config and VID value from LDN 7 (GPIO) */
2493         if (sio_data->type == it87) {
2494                 /* The IT8705F has a different LD number for GPIO */
2495                 superio_select(sioaddr, 5);
2496                 sio_data->beep_pin = superio_inb(sioaddr,
2497                                                  IT87_SIO_BEEP_PIN_REG) & 0x3f;
2498         } else if (sio_data->type == it8783) {
2499                 int reg25, reg27, reg2a, reg2c, regef;
2500
2501                 superio_select(sioaddr, GPIO);
2502
2503                 reg25 = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2504                 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2505                 reg2a = superio_inb(sioaddr, IT87_SIO_PINX1_REG);
2506                 reg2c = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2507                 regef = superio_inb(sioaddr, IT87_SIO_SPI_REG);
2508
2509                 /* Check if fan3 is there or not */
2510                 if ((reg27 & BIT(0)) || !(reg2c & BIT(2)))
2511                         sio_data->skip_fan |= BIT(2);
2512                 if ((reg25 & BIT(4)) ||
2513                     (!(reg2a & BIT(1)) && (regef & BIT(0))))
2514                         sio_data->skip_pwm |= BIT(2);
2515
2516                 /* Check if fan2 is there or not */
2517                 if (reg27 & BIT(7))
2518                         sio_data->skip_fan |= BIT(1);
2519                 if (reg27 & BIT(3))
2520                         sio_data->skip_pwm |= BIT(1);
2521
2522                 /* VIN5 */
2523                 if ((reg27 & BIT(0)) || (reg2c & BIT(2)))
2524                         sio_data->skip_in |= BIT(5); /* No VIN5 */
2525
2526                 /* VIN6 */
2527                 if (reg27 & BIT(1))
2528                         sio_data->skip_in |= BIT(6); /* No VIN6 */
2529
2530                 /*
2531                  * VIN7
2532                  * Does not depend on bit 2 of Reg2C, contrary to datasheet.
2533                  */
2534                 if (reg27 & BIT(2)) {
2535                         /*
2536                          * The data sheet is a bit unclear regarding the
2537                          * internal voltage divider for VCCH5V. It says
2538                          * "This bit enables and switches VIN7 (pin 91) to the
2539                          * internal voltage divider for VCCH5V".
2540                          * This is different to other chips, where the internal
2541                          * voltage divider would connect VIN7 to an internal
2542                          * voltage source. Maybe that is the case here as well.
2543                          *
2544                          * Since we don't know for sure, re-route it if that is
2545                          * not the case, and ask the user to report if the
2546                          * resulting voltage is sane.
2547                          */
2548                         if (!(reg2c & BIT(1))) {
2549                                 reg2c |= BIT(1);
2550                                 superio_outb(sioaddr, IT87_SIO_PINX2_REG,
2551                                              reg2c);
2552                                 pr_notice("Routing internal VCCH5V to in7.\n");
2553                         }
2554                         pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
2555                         pr_notice("Please report if it displays a reasonable voltage.\n");
2556                 }
2557
2558                 if (reg2c & BIT(0))
2559                         sio_data->internal |= BIT(0);
2560                 if (reg2c & BIT(1))
2561                         sio_data->internal |= BIT(1);
2562
2563                 sio_data->beep_pin = superio_inb(sioaddr,
2564                                                  IT87_SIO_BEEP_PIN_REG) & 0x3f;
2565         } else if (sio_data->type == it8603) {
2566                 int reg27, reg29;
2567
2568                 superio_select(sioaddr, GPIO);
2569
2570                 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2571
2572                 /* Check if fan3 is there or not */
2573                 if (reg27 & BIT(6))
2574                         sio_data->skip_pwm |= BIT(2);
2575                 if (reg27 & BIT(7))
2576                         sio_data->skip_fan |= BIT(2);
2577
2578                 /* Check if fan2 is there or not */
2579                 reg29 = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
2580                 if (reg29 & BIT(1))
2581                         sio_data->skip_pwm |= BIT(1);
2582                 if (reg29 & BIT(2))
2583                         sio_data->skip_fan |= BIT(1);
2584
2585                 sio_data->skip_in |= BIT(5); /* No VIN5 */
2586                 sio_data->skip_in |= BIT(6); /* No VIN6 */
2587
2588                 sio_data->beep_pin = superio_inb(sioaddr,
2589                                                  IT87_SIO_BEEP_PIN_REG) & 0x3f;
2590         } else if (sio_data->type == it8620 || sio_data->type == it8628) {
2591                 int reg;
2592
2593                 superio_select(sioaddr, GPIO);
2594
2595                 /* Check for pwm5 */
2596                 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2597                 if (reg & BIT(6))
2598                         sio_data->skip_pwm |= BIT(4);
2599
2600                 /* Check for fan4, fan5 */
2601                 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
2602                 if (!(reg & BIT(5)))
2603                         sio_data->skip_fan |= BIT(3);
2604                 if (!(reg & BIT(4)))
2605                         sio_data->skip_fan |= BIT(4);
2606
2607                 /* Check for pwm3, fan3 */
2608                 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2609                 if (reg & BIT(6))
2610                         sio_data->skip_pwm |= BIT(2);
2611                 if (reg & BIT(7))
2612                         sio_data->skip_fan |= BIT(2);
2613
2614                 /* Check for pwm4 */
2615                 reg = superio_inb(sioaddr, IT87_SIO_GPIO4_REG);
2616                 if (!(reg & BIT(2)))
2617                         sio_data->skip_pwm |= BIT(3);
2618
2619                 /* Check for pwm2, fan2 */
2620                 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
2621                 if (reg & BIT(1))
2622                         sio_data->skip_pwm |= BIT(1);
2623                 if (reg & BIT(2))
2624                         sio_data->skip_fan |= BIT(1);
2625                 /* Check for pwm6, fan6 */
2626                 if (!(reg & BIT(7))) {
2627                         sio_data->skip_pwm |= BIT(5);
2628                         sio_data->skip_fan |= BIT(5);
2629                 }
2630
2631                 /* Check if AVCC is on VIN3 */
2632                 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2633                 if (reg & BIT(0))
2634                         sio_data->internal |= BIT(0);
2635                 else
2636                         sio_data->skip_in |= BIT(9);
2637
2638                 sio_data->beep_pin = superio_inb(sioaddr,
2639                                                  IT87_SIO_BEEP_PIN_REG) & 0x3f;
2640         } else if (sio_data->type == it8622) {
2641                 int reg;
2642
2643                 superio_select(sioaddr, GPIO);
2644
2645                 /* Check for pwm4, fan4 */
2646                 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2647                 if (reg & BIT(6))
2648                         sio_data->skip_fan |= BIT(3);
2649                 if (reg & BIT(5))
2650                         sio_data->skip_pwm |= BIT(3);
2651
2652                 /* Check for pwm3, fan3, pwm5, fan5 */
2653                 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2654                 if (reg & BIT(6))
2655                         sio_data->skip_pwm |= BIT(2);
2656                 if (reg & BIT(7))
2657                         sio_data->skip_fan |= BIT(2);
2658                 if (reg & BIT(3))
2659                         sio_data->skip_pwm |= BIT(4);
2660                 if (reg & BIT(1))
2661                         sio_data->skip_fan |= BIT(4);
2662
2663                 /* Check for pwm2, fan2 */
2664                 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
2665                 if (reg & BIT(1))
2666                         sio_data->skip_pwm |= BIT(1);
2667                 if (reg & BIT(2))
2668                         sio_data->skip_fan |= BIT(1);
2669
2670                 /* Check for AVCC */
2671                 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2672                 if (!(reg & BIT(0)))
2673                         sio_data->skip_in |= BIT(9);
2674
2675                 sio_data->beep_pin = superio_inb(sioaddr,
2676                                                  IT87_SIO_BEEP_PIN_REG) & 0x3f;
2677         } else {
2678                 int reg;
2679                 bool uart6;
2680
2681                 superio_select(sioaddr, GPIO);
2682
2683                 /* Check for fan4, fan5 */
2684                 if (has_five_fans(config)) {
2685                         reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
2686                         switch (sio_data->type) {
2687                         case it8718:
2688                                 if (reg & BIT(5))
2689                                         sio_data->skip_fan |= BIT(3);
2690                                 if (reg & BIT(4))
2691                                         sio_data->skip_fan |= BIT(4);
2692                                 break;
2693                         case it8720:
2694                         case it8721:
2695                         case it8728:
2696                                 if (!(reg & BIT(5)))
2697                                         sio_data->skip_fan |= BIT(3);
2698                                 if (!(reg & BIT(4)))
2699                                         sio_data->skip_fan |= BIT(4);
2700                                 break;
2701                         default:
2702                                 break;
2703                         }
2704                 }
2705
2706                 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2707                 if (!sio_data->skip_vid) {
2708                         /* We need at least 4 VID pins */
2709                         if (reg & 0x0f) {
2710                                 pr_info("VID is disabled (pins used for GPIO)\n");
2711                                 sio_data->skip_vid = 1;
2712                         }
2713                 }
2714
2715                 /* Check if fan3 is there or not */
2716                 if (reg & BIT(6))
2717                         sio_data->skip_pwm |= BIT(2);
2718                 if (reg & BIT(7))
2719                         sio_data->skip_fan |= BIT(2);
2720
2721                 /* Check if fan2 is there or not */
2722                 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
2723                 if (reg & BIT(1))
2724                         sio_data->skip_pwm |= BIT(1);
2725                 if (reg & BIT(2))
2726                         sio_data->skip_fan |= BIT(1);
2727
2728                 if ((sio_data->type == it8718 || sio_data->type == it8720) &&
2729                     !(sio_data->skip_vid))
2730                         sio_data->vid_value = superio_inb(sioaddr,
2731                                                           IT87_SIO_VID_REG);
2732
2733                 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2734
2735                 uart6 = sio_data->type == it8782 && (reg & BIT(2));
2736
2737                 /*
2738                  * The IT8720F has no VIN7 pin, so VCCH should always be
2739                  * routed internally to VIN7 with an internal divider.
2740                  * Curiously, there still is a configuration bit to control
2741                  * this, which means it can be set incorrectly. And even
2742                  * more curiously, many boards out there are improperly
2743                  * configured, even though the IT8720F datasheet claims
2744                  * that the internal routing of VCCH to VIN7 is the default
2745                  * setting. So we force the internal routing in this case.
2746                  *
2747                  * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
2748                  * If UART6 is enabled, re-route VIN7 to the internal divider
2749                  * if that is not already the case.
2750                  */
2751                 if ((sio_data->type == it8720 || uart6) && !(reg & BIT(1))) {
2752                         reg |= BIT(1);
2753                         superio_outb(sioaddr, IT87_SIO_PINX2_REG, reg);
2754                         pr_notice("Routing internal VCCH to in7\n");
2755                 }
2756                 if (reg & BIT(0))
2757                         sio_data->internal |= BIT(0);
2758                 if (reg & BIT(1))
2759                         sio_data->internal |= BIT(1);
2760
2761                 /*
2762                  * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
2763                  * While VIN7 can be routed to the internal voltage divider,
2764                  * VIN5 and VIN6 are not available if UART6 is enabled.
2765                  *
2766                  * Also, temp3 is not available if UART6 is enabled and TEMPIN3
2767                  * is the temperature source. Since we can not read the
2768                  * temperature source here, skip_temp is preliminary.
2769                  */
2770                 if (uart6) {
2771                         sio_data->skip_in |= BIT(5) | BIT(6);
2772                         sio_data->skip_temp |= BIT(2);
2773                 }
2774
2775                 sio_data->beep_pin = superio_inb(sioaddr,
2776                                                  IT87_SIO_BEEP_PIN_REG) & 0x3f;
2777         }
2778         if (sio_data->beep_pin)
2779                 pr_info("Beeping is supported\n");
2780
2781         /* Disable specific features based on DMI strings */
2782         board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
2783         board_name = dmi_get_system_info(DMI_BOARD_NAME);
2784         if (board_vendor && board_name) {
2785                 if (strcmp(board_vendor, "nVIDIA") == 0 &&
2786                     strcmp(board_name, "FN68PT") == 0) {
2787                         /*
2788                          * On the Shuttle SN68PT, FAN_CTL2 is apparently not
2789                          * connected to a fan, but to something else. One user
2790                          * has reported instant system power-off when changing
2791                          * the PWM2 duty cycle, so we disable it.
2792                          * I use the board name string as the trigger in case
2793                          * the same board is ever used in other systems.
2794                          */
2795                         pr_info("Disabling pwm2 due to hardware constraints\n");
2796                         sio_data->skip_pwm = BIT(1);
2797                 }
2798         }
2799
2800 exit:
2801         superio_exit(sioaddr);
2802         return err;
2803 }
2804
2805 /* Called when we have found a new IT87. */
2806 static void it87_init_device(struct platform_device *pdev)
2807 {
2808         struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
2809         struct it87_data *data = platform_get_drvdata(pdev);
2810         int tmp, i;
2811         u8 mask;
2812
2813         /*
2814          * For each PWM channel:
2815          * - If it is in automatic mode, setting to manual mode should set
2816          *   the fan to full speed by default.
2817          * - If it is in manual mode, we need a mapping to temperature
2818          *   channels to use when later setting to automatic mode later.
2819          *   Use a 1:1 mapping by default (we are clueless.)
2820          * In both cases, the value can (and should) be changed by the user
2821          * prior to switching to a different mode.
2822          * Note that this is no longer needed for the IT8721F and later, as
2823          * these have separate registers for the temperature mapping and the
2824          * manual duty cycle.
2825          */
2826         for (i = 0; i < NUM_AUTO_PWM; i++) {
2827                 data->pwm_temp_map[i] = i;
2828                 data->pwm_duty[i] = 0x7f;       /* Full speed */
2829                 data->auto_pwm[i][3] = 0x7f;    /* Full speed, hard-coded */
2830         }
2831
2832         /*
2833          * Some chips seem to have default value 0xff for all limit
2834          * registers. For low voltage limits it makes no sense and triggers
2835          * alarms, so change to 0 instead. For high temperature limits, it
2836          * means -1 degree C, which surprisingly doesn't trigger an alarm,
2837          * but is still confusing, so change to 127 degrees C.
2838          */
2839         for (i = 0; i < NUM_VIN_LIMIT; i++) {
2840                 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
2841                 if (tmp == 0xff)
2842                         it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
2843         }
2844         for (i = 0; i < NUM_TEMP_LIMIT; i++) {
2845                 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
2846                 if (tmp == 0xff)
2847                         it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
2848         }
2849
2850         /*
2851          * Temperature channels are not forcibly enabled, as they can be
2852          * set to two different sensor types and we can't guess which one
2853          * is correct for a given system. These channels can be enabled at
2854          * run-time through the temp{1-3}_type sysfs accessors if needed.
2855          */
2856
2857         /* Check if voltage monitors are reset manually or by some reason */
2858         tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
2859         if ((tmp & 0xff) == 0) {
2860                 /* Enable all voltage monitors */
2861                 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
2862         }
2863
2864         /* Check if tachometers are reset manually or by some reason */
2865         mask = 0x70 & ~(sio_data->skip_fan << 4);
2866         data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
2867         if ((data->fan_main_ctrl & mask) == 0) {
2868                 /* Enable all fan tachometers */
2869                 data->fan_main_ctrl |= mask;
2870                 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2871                                  data->fan_main_ctrl);
2872         }
2873         data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
2874
2875         tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
2876
2877         /* Set tachometers to 16-bit mode if needed */
2878         if (has_fan16_config(data)) {
2879                 if (~tmp & 0x07 & data->has_fan) {
2880                         dev_dbg(&pdev->dev,
2881                                 "Setting fan1-3 to 16-bit mode\n");
2882                         it87_write_value(data, IT87_REG_FAN_16BIT,
2883                                          tmp | 0x07);
2884                 }
2885         }
2886
2887         /* Check for additional fans */
2888         if (has_five_fans(data)) {
2889                 if (tmp & BIT(4))
2890                         data->has_fan |= BIT(3); /* fan4 enabled */
2891                 if (tmp & BIT(5))
2892                         data->has_fan |= BIT(4); /* fan5 enabled */
2893                 if (has_six_fans(data) && (tmp & BIT(2)))
2894                         data->has_fan |= BIT(5); /* fan6 enabled */
2895         }
2896
2897         /* Fan input pins may be used for alternative functions */
2898         data->has_fan &= ~sio_data->skip_fan;
2899
2900         /* Check if pwm5, pwm6 are enabled */
2901         if (has_six_pwm(data)) {
2902                 /* The following code may be IT8620E specific */
2903                 tmp = it87_read_value(data, IT87_REG_FAN_DIV);
2904                 if ((tmp & 0xc0) == 0xc0)
2905                         sio_data->skip_pwm |= BIT(4);
2906                 if (!(tmp & BIT(3)))
2907                         sio_data->skip_pwm |= BIT(5);
2908         }
2909
2910         /* Start monitoring */
2911         it87_write_value(data, IT87_REG_CONFIG,
2912                          (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
2913                          | (update_vbat ? 0x41 : 0x01));
2914 }
2915
2916 /* Return 1 if and only if the PWM interface is safe to use */
2917 static int it87_check_pwm(struct device *dev)
2918 {
2919         struct it87_data *data = dev_get_drvdata(dev);
2920         /*
2921          * Some BIOSes fail to correctly configure the IT87 fans. All fans off
2922          * and polarity set to active low is sign that this is the case so we
2923          * disable pwm control to protect the user.
2924          */
2925         int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
2926
2927         if ((tmp & 0x87) == 0) {
2928                 if (fix_pwm_polarity) {
2929                         /*
2930                          * The user asks us to attempt a chip reconfiguration.
2931                          * This means switching to active high polarity and
2932                          * inverting all fan speed values.
2933                          */
2934                         int i;
2935                         u8 pwm[3];
2936
2937                         for (i = 0; i < ARRAY_SIZE(pwm); i++)
2938                                 pwm[i] = it87_read_value(data,
2939                                                          IT87_REG_PWM[i]);
2940
2941                         /*
2942                          * If any fan is in automatic pwm mode, the polarity
2943                          * might be correct, as suspicious as it seems, so we
2944                          * better don't change anything (but still disable the
2945                          * PWM interface).
2946                          */
2947                         if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
2948                                 dev_info(dev,
2949                                          "Reconfiguring PWM to active high polarity\n");
2950                                 it87_write_value(data, IT87_REG_FAN_CTL,
2951                                                  tmp | 0x87);
2952                                 for (i = 0; i < 3; i++)
2953                                         it87_write_value(data,
2954                                                          IT87_REG_PWM[i],
2955                                                          0x7f & ~pwm[i]);
2956                                 return 1;
2957                         }
2958
2959                         dev_info(dev,
2960                                  "PWM configuration is too broken to be fixed\n");
2961                 }
2962
2963                 dev_info(dev,
2964                          "Detected broken BIOS defaults, disabling PWM interface\n");
2965                 return 0;
2966         } else if (fix_pwm_polarity) {
2967                 dev_info(dev,
2968                          "PWM configuration looks sane, won't touch\n");
2969         }
2970
2971         return 1;
2972 }
2973
2974 static int it87_probe(struct platform_device *pdev)
2975 {
2976         struct it87_data *data;
2977         struct resource *res;
2978         struct device *dev = &pdev->dev;
2979         struct it87_sio_data *sio_data = dev_get_platdata(dev);
2980         int enable_pwm_interface;
2981         struct device *hwmon_dev;
2982
2983         res = platform_get_resource(pdev, IORESOURCE_IO, 0);
2984         if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT,
2985                                  DRVNAME)) {
2986                 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
2987                         (unsigned long)res->start,
2988                         (unsigned long)(res->start + IT87_EC_EXTENT - 1));
2989                 return -EBUSY;
2990         }
2991
2992         data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL);
2993         if (!data)
2994                 return -ENOMEM;
2995
2996         data->addr = res->start;
2997         data->type = sio_data->type;
2998         data->features = it87_devices[sio_data->type].features;
2999         data->peci_mask = it87_devices[sio_data->type].peci_mask;
3000         data->old_peci_mask = it87_devices[sio_data->type].old_peci_mask;
3001         /*
3002          * IT8705F Datasheet 0.4.1, 3h == Version G.
3003          * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
3004          * These are the first revisions with 16-bit tachometer support.
3005          */
3006         switch (data->type) {
3007         case it87:
3008                 if (sio_data->revision >= 0x03) {
3009                         data->features &= ~FEAT_OLD_AUTOPWM;
3010                         data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS;
3011                 }
3012                 break;
3013         case it8712:
3014                 if (sio_data->revision >= 0x08) {
3015                         data->features &= ~FEAT_OLD_AUTOPWM;
3016                         data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS |
3017                                           FEAT_FIVE_FANS;
3018                 }
3019                 break;
3020         default:
3021                 break;
3022         }
3023
3024         /* Now, we do the remaining detection. */
3025         if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80) ||
3026             it87_read_value(data, IT87_REG_CHIPID) != 0x90)
3027                 return -ENODEV;
3028
3029         platform_set_drvdata(pdev, data);
3030
3031         mutex_init(&data->update_lock);
3032
3033         /* Check PWM configuration */
3034         enable_pwm_interface = it87_check_pwm(dev);
3035
3036         /* Starting with IT8721F, we handle scaling of internal voltages */
3037         if (has_12mv_adc(data)) {
3038                 if (sio_data->internal & BIT(0))
3039                         data->in_scaled |= BIT(3);      /* in3 is AVCC */
3040                 if (sio_data->internal & BIT(1))
3041                         data->in_scaled |= BIT(7);      /* in7 is VSB */
3042                 if (sio_data->internal & BIT(2))
3043                         data->in_scaled |= BIT(8);      /* in8 is Vbat */
3044                 if (sio_data->internal & BIT(3))
3045                         data->in_scaled |= BIT(9);      /* in9 is AVCC */
3046         } else if (sio_data->type == it8781 || sio_data->type == it8782 ||
3047                    sio_data->type == it8783) {
3048                 if (sio_data->internal & BIT(0))
3049                         data->in_scaled |= BIT(3);      /* in3 is VCC5V */
3050                 if (sio_data->internal & BIT(1))
3051                         data->in_scaled |= BIT(7);      /* in7 is VCCH5V */
3052         }
3053
3054         data->has_temp = 0x07;
3055         if (sio_data->skip_temp & BIT(2)) {
3056                 if (sio_data->type == it8782 &&
3057                     !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80))
3058                         data->has_temp &= ~BIT(2);
3059         }
3060
3061         data->in_internal = sio_data->internal;
3062         data->has_in = 0x3ff & ~sio_data->skip_in;
3063
3064         if (has_six_temp(data)) {
3065                 u8 reg = it87_read_value(data, IT87_REG_TEMP456_ENABLE);
3066
3067                 /* Check for additional temperature sensors */
3068                 if ((reg & 0x03) >= 0x02)
3069                         data->has_temp |= BIT(3);
3070                 if (((reg >> 2) & 0x03) >= 0x02)
3071                         data->has_temp |= BIT(4);
3072                 if (((reg >> 4) & 0x03) >= 0x02)
3073                         data->has_temp |= BIT(5);
3074
3075                 /* Check for additional voltage sensors */
3076                 if ((reg & 0x03) == 0x01)
3077                         data->has_in |= BIT(10);
3078                 if (((reg >> 2) & 0x03) == 0x01)
3079                         data->has_in |= BIT(11);
3080                 if (((reg >> 4) & 0x03) == 0x01)
3081                         data->has_in |= BIT(12);
3082         }
3083
3084         data->has_beep = !!sio_data->beep_pin;
3085
3086         /* Initialize the IT87 chip */
3087         it87_init_device(pdev);
3088
3089         if (!sio_data->skip_vid) {
3090                 data->has_vid = true;
3091                 data->vrm = vid_which_vrm();
3092                 /* VID reading from Super-I/O config space if available */
3093                 data->vid = sio_data->vid_value;
3094         }
3095
3096         /* Prepare for sysfs hooks */
3097         data->groups[0] = &it87_group;
3098         data->groups[1] = &it87_group_in;
3099         data->groups[2] = &it87_group_temp;
3100         data->groups[3] = &it87_group_fan;
3101
3102         if (enable_pwm_interface) {
3103                 data->has_pwm = BIT(ARRAY_SIZE(IT87_REG_PWM)) - 1;
3104                 data->has_pwm &= ~sio_data->skip_pwm;
3105
3106                 data->groups[4] = &it87_group_pwm;
3107                 if (has_old_autopwm(data) || has_newer_autopwm(data))
3108                         data->groups[5] = &it87_group_auto_pwm;
3109         }
3110
3111         hwmon_dev = devm_hwmon_device_register_with_groups(dev,
3112                                         it87_devices[sio_data->type].name,
3113                                         data, data->groups);
3114         return PTR_ERR_OR_ZERO(hwmon_dev);
3115 }
3116
3117 static struct platform_driver it87_driver = {
3118         .driver = {
3119                 .name   = DRVNAME,
3120         },
3121         .probe  = it87_probe,
3122 };
3123
3124 static int __init it87_device_add(int index, unsigned short address,
3125                                   const struct it87_sio_data *sio_data)
3126 {
3127         struct platform_device *pdev;
3128         struct resource res = {
3129                 .start  = address + IT87_EC_OFFSET,
3130                 .end    = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
3131                 .name   = DRVNAME,
3132                 .flags  = IORESOURCE_IO,
3133         };
3134         int err;
3135
3136         err = acpi_check_resource_conflict(&res);
3137         if (err)
3138                 return err;
3139
3140         pdev = platform_device_alloc(DRVNAME, address);
3141         if (!pdev)
3142                 return -ENOMEM;
3143
3144         err = platform_device_add_resources(pdev, &res, 1);
3145         if (err) {
3146                 pr_err("Device resource addition failed (%d)\n", err);
3147                 goto exit_device_put;
3148         }
3149
3150         err = platform_device_add_data(pdev, sio_data,
3151                                        sizeof(struct it87_sio_data));
3152         if (err) {
3153                 pr_err("Platform data allocation failed\n");
3154                 goto exit_device_put;
3155         }
3156
3157         err = platform_device_add(pdev);
3158         if (err) {
3159                 pr_err("Device addition failed (%d)\n", err);
3160                 goto exit_device_put;
3161         }
3162
3163         it87_pdev[index] = pdev;
3164         return 0;
3165
3166 exit_device_put:
3167         platform_device_put(pdev);
3168         return err;
3169 }
3170
3171 static int __init sm_it87_init(void)
3172 {
3173         int sioaddr[2] = { REG_2E, REG_4E };
3174         struct it87_sio_data sio_data;
3175         unsigned short isa_address;
3176         bool found = false;
3177         int i, err;
3178
3179         err = platform_driver_register(&it87_driver);
3180         if (err)
3181                 return err;
3182
3183         for (i = 0; i < ARRAY_SIZE(sioaddr); i++) {
3184                 memset(&sio_data, 0, sizeof(struct it87_sio_data));
3185                 isa_address = 0;
3186                 err = it87_find(sioaddr[i], &isa_address, &sio_data);
3187                 if (err || isa_address == 0)
3188                         continue;
3189
3190                 err = it87_device_add(i, isa_address, &sio_data);
3191                 if (err)
3192                         goto exit_dev_unregister;
3193                 found = true;
3194         }
3195
3196         if (!found) {
3197                 err = -ENODEV;
3198                 goto exit_unregister;
3199         }
3200         return 0;
3201
3202 exit_dev_unregister:
3203         /* NULL check handled by platform_device_unregister */
3204         platform_device_unregister(it87_pdev[0]);
3205 exit_unregister:
3206         platform_driver_unregister(&it87_driver);
3207         return err;
3208 }
3209
3210 static void __exit sm_it87_exit(void)
3211 {
3212         /* NULL check handled by platform_device_unregister */
3213         platform_device_unregister(it87_pdev[1]);
3214         platform_device_unregister(it87_pdev[0]);
3215         platform_driver_unregister(&it87_driver);
3216 }
3217
3218 MODULE_AUTHOR("Chris Gauthron, Jean Delvare <jdelvare@suse.de>");
3219 MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
3220 module_param(update_vbat, bool, 0);
3221 MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
3222 module_param(fix_pwm_polarity, bool, 0);
3223 MODULE_PARM_DESC(fix_pwm_polarity,
3224                  "Force PWM polarity to active high (DANGEROUS)");
3225 MODULE_LICENSE("GPL");
3226
3227 module_init(sm_it87_init);
3228 module_exit(sm_it87_exit);