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