2 it87.c - Part of lm_sensors, Linux kernel modules for hardware
5 Supports: IT8705F Super I/O chip w/LPC interface
6 IT8712F Super I/O chip w/LPC interface
7 IT8716F Super I/O chip w/LPC interface
8 IT8718F Super I/O chip w/LPC interface
9 IT8726F Super I/O chip w/LPC interface
10 Sis950 A clone of the IT8705F
12 Copyright (C) 2001 Chris Gauthron <chrisg@0-in.com>
13 Copyright (C) 2005-2006 Jean Delvare <khali@linux-fr.org>
15 This program is free software; you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation; either version 2 of the License, or
18 (at your option) any later version.
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 #include <linux/module.h>
31 #include <linux/init.h>
32 #include <linux/slab.h>
33 #include <linux/jiffies.h>
34 #include <linux/platform_device.h>
35 #include <linux/hwmon.h>
36 #include <linux/hwmon-sysfs.h>
37 #include <linux/hwmon-vid.h>
38 #include <linux/err.h>
39 #include <linux/mutex.h>
40 #include <linux/sysfs.h>
43 #define DRVNAME "it87"
45 enum chips
{ it87
, it8712
, it8716
, it8718
};
47 static struct platform_device
*pdev
;
49 #define REG 0x2e /* The register to read/write */
50 #define DEV 0x07 /* Register: Logical device select */
51 #define VAL 0x2f /* The value to read/write */
52 #define PME 0x04 /* The device with the fan registers in it */
53 #define GPIO 0x07 /* The device with the IT8718F VID value in it */
54 #define DEVID 0x20 /* Register: Device ID */
55 #define DEVREV 0x22 /* Register: Device Revision */
64 static int superio_inw(int reg
)
75 superio_select(int ldn
)
97 /* Logical device 4 registers */
98 #define IT8712F_DEVID 0x8712
99 #define IT8705F_DEVID 0x8705
100 #define IT8716F_DEVID 0x8716
101 #define IT8718F_DEVID 0x8718
102 #define IT8726F_DEVID 0x8726
103 #define IT87_ACT_REG 0x30
104 #define IT87_BASE_REG 0x60
106 /* Logical device 7 registers (IT8712F and later) */
107 #define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
108 #define IT87_SIO_VID_REG 0xfc /* VID value */
110 /* Update battery voltage after every reading if true */
111 static int update_vbat
;
113 /* Not all BIOSes properly configure the PWM registers */
114 static int fix_pwm_polarity
;
116 /* Many IT87 constants specified below */
118 /* Length of ISA address segment */
119 #define IT87_EXTENT 8
121 /* Where are the ISA address/data registers relative to the base address */
122 #define IT87_ADDR_REG_OFFSET 5
123 #define IT87_DATA_REG_OFFSET 6
125 /*----- The IT87 registers -----*/
127 #define IT87_REG_CONFIG 0x00
129 #define IT87_REG_ALARM1 0x01
130 #define IT87_REG_ALARM2 0x02
131 #define IT87_REG_ALARM3 0x03
133 /* The IT8718F has the VID value in a different register, in Super-I/O
134 configuration space. */
135 #define IT87_REG_VID 0x0a
136 /* Warning: register 0x0b is used for something completely different in
137 new chips/revisions. I suspect only 16-bit tachometer mode will work
139 #define IT87_REG_FAN_DIV 0x0b
140 #define IT87_REG_FAN_16BIT 0x0c
142 /* Monitors: 9 voltage (0 to 7, battery), 3 temp (1 to 3), 3 fan (1 to 3) */
144 #define IT87_REG_FAN(nr) (0x0d + (nr))
145 #define IT87_REG_FAN_MIN(nr) (0x10 + (nr))
146 #define IT87_REG_FANX(nr) (0x18 + (nr))
147 #define IT87_REG_FANX_MIN(nr) (0x1b + (nr))
148 #define IT87_REG_FAN_MAIN_CTRL 0x13
149 #define IT87_REG_FAN_CTL 0x14
150 #define IT87_REG_PWM(nr) (0x15 + (nr))
152 #define IT87_REG_VIN(nr) (0x20 + (nr))
153 #define IT87_REG_TEMP(nr) (0x29 + (nr))
155 #define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
156 #define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
157 #define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
158 #define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
160 #define IT87_REG_VIN_ENABLE 0x50
161 #define IT87_REG_TEMP_ENABLE 0x51
163 #define IT87_REG_CHIPID 0x58
165 #define IN_TO_REG(val) (SENSORS_LIMIT((((val) + 8)/16),0,255))
166 #define IN_FROM_REG(val) ((val) * 16)
168 static inline u8
FAN_TO_REG(long rpm
, int div
)
172 rpm
= SENSORS_LIMIT(rpm
, 1, 1000000);
173 return SENSORS_LIMIT((1350000 + rpm
* div
/ 2) / (rpm
* div
), 1,
177 static inline u16
FAN16_TO_REG(long rpm
)
181 return SENSORS_LIMIT((1350000 + rpm
) / (rpm
* 2), 1, 0xfffe);
184 #define FAN_FROM_REG(val,div) ((val)==0?-1:(val)==255?0:1350000/((val)*(div)))
185 /* The divider is fixed to 2 in 16-bit mode */
186 #define FAN16_FROM_REG(val) ((val)==0?-1:(val)==0xffff?0:1350000/((val)*2))
188 #define TEMP_TO_REG(val) (SENSORS_LIMIT(((val)<0?(((val)-500)/1000):\
189 ((val)+500)/1000),-128,127))
190 #define TEMP_FROM_REG(val) (((val)>0x80?(val)-0x100:(val))*1000)
192 #define PWM_TO_REG(val) ((val) >> 1)
193 #define PWM_FROM_REG(val) (((val)&0x7f) << 1)
195 static int DIV_TO_REG(int val
)
198 while (answer
< 7 && (val
>>= 1))
202 #define DIV_FROM_REG(val) (1 << (val))
204 static const unsigned int pwm_freq
[8] = {
216 struct it87_sio_data
{
218 /* Values read from Super-I/O config space */
222 /* For each registered chip, we need to keep some data in memory.
223 The structure is dynamically allocated. */
225 struct class_device
*class_dev
;
230 struct mutex update_lock
;
231 char valid
; /* !=0 if following fields are valid */
232 unsigned long last_updated
; /* In jiffies */
234 u8 in
[9]; /* Register value */
235 u8 in_max
[8]; /* Register value */
236 u8 in_min
[8]; /* Register value */
237 u8 has_fan
; /* Bitfield, fans enabled */
238 u16 fan
[3]; /* Register values, possibly combined */
239 u16 fan_min
[3]; /* Register values, possibly combined */
240 u8 temp
[3]; /* Register value */
241 u8 temp_high
[3]; /* Register value */
242 u8 temp_low
[3]; /* Register value */
243 u8 sensor
; /* Register value */
244 u8 fan_div
[3]; /* Register encoding, shifted right */
245 u8 vid
; /* Register encoding, combined */
247 u32 alarms
; /* Register encoding, combined */
248 u8 fan_main_ctrl
; /* Register value */
249 u8 fan_ctl
; /* Register value */
250 u8 manual_pwm_ctl
[3]; /* manual PWM value set by user */
254 static int it87_probe(struct platform_device
*pdev
);
255 static int __devexit
it87_remove(struct platform_device
*pdev
);
257 static int it87_read_value(struct it87_data
*data
, u8 reg
);
258 static void it87_write_value(struct it87_data
*data
, u8 reg
, u8 value
);
259 static struct it87_data
*it87_update_device(struct device
*dev
);
260 static int it87_check_pwm(struct device
*dev
);
261 static void it87_init_device(struct platform_device
*pdev
);
264 static struct platform_driver it87_driver
= {
266 .owner
= THIS_MODULE
,
270 .remove
= __devexit_p(it87_remove
),
273 static ssize_t
show_in(struct device
*dev
, struct device_attribute
*attr
,
276 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
277 int nr
= sensor_attr
->index
;
279 struct it87_data
*data
= it87_update_device(dev
);
280 return sprintf(buf
, "%d\n", IN_FROM_REG(data
->in
[nr
]));
283 static ssize_t
show_in_min(struct device
*dev
, struct device_attribute
*attr
,
286 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
287 int nr
= sensor_attr
->index
;
289 struct it87_data
*data
= it87_update_device(dev
);
290 return sprintf(buf
, "%d\n", IN_FROM_REG(data
->in_min
[nr
]));
293 static ssize_t
show_in_max(struct device
*dev
, struct device_attribute
*attr
,
296 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
297 int nr
= sensor_attr
->index
;
299 struct it87_data
*data
= it87_update_device(dev
);
300 return sprintf(buf
, "%d\n", IN_FROM_REG(data
->in_max
[nr
]));
303 static ssize_t
set_in_min(struct device
*dev
, struct device_attribute
*attr
,
304 const char *buf
, size_t count
)
306 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
307 int nr
= sensor_attr
->index
;
309 struct it87_data
*data
= dev_get_drvdata(dev
);
310 unsigned long val
= simple_strtoul(buf
, NULL
, 10);
312 mutex_lock(&data
->update_lock
);
313 data
->in_min
[nr
] = IN_TO_REG(val
);
314 it87_write_value(data
, IT87_REG_VIN_MIN(nr
),
316 mutex_unlock(&data
->update_lock
);
319 static ssize_t
set_in_max(struct device
*dev
, struct device_attribute
*attr
,
320 const char *buf
, size_t count
)
322 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
323 int nr
= sensor_attr
->index
;
325 struct it87_data
*data
= dev_get_drvdata(dev
);
326 unsigned long val
= simple_strtoul(buf
, NULL
, 10);
328 mutex_lock(&data
->update_lock
);
329 data
->in_max
[nr
] = IN_TO_REG(val
);
330 it87_write_value(data
, IT87_REG_VIN_MAX(nr
),
332 mutex_unlock(&data
->update_lock
);
336 #define show_in_offset(offset) \
337 static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
338 show_in, NULL, offset);
340 #define limit_in_offset(offset) \
341 static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
342 show_in_min, set_in_min, offset); \
343 static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
344 show_in_max, set_in_max, offset);
365 static ssize_t
show_temp(struct device
*dev
, struct device_attribute
*attr
,
368 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
369 int nr
= sensor_attr
->index
;
371 struct it87_data
*data
= it87_update_device(dev
);
372 return sprintf(buf
, "%d\n", TEMP_FROM_REG(data
->temp
[nr
]));
374 static ssize_t
show_temp_max(struct device
*dev
, struct device_attribute
*attr
,
377 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
378 int nr
= sensor_attr
->index
;
380 struct it87_data
*data
= it87_update_device(dev
);
381 return sprintf(buf
, "%d\n", TEMP_FROM_REG(data
->temp_high
[nr
]));
383 static ssize_t
show_temp_min(struct device
*dev
, struct device_attribute
*attr
,
386 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
387 int nr
= sensor_attr
->index
;
389 struct it87_data
*data
= it87_update_device(dev
);
390 return sprintf(buf
, "%d\n", TEMP_FROM_REG(data
->temp_low
[nr
]));
392 static ssize_t
set_temp_max(struct device
*dev
, struct device_attribute
*attr
,
393 const char *buf
, size_t count
)
395 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
396 int nr
= sensor_attr
->index
;
398 struct it87_data
*data
= dev_get_drvdata(dev
);
399 int val
= simple_strtol(buf
, NULL
, 10);
401 mutex_lock(&data
->update_lock
);
402 data
->temp_high
[nr
] = TEMP_TO_REG(val
);
403 it87_write_value(data
, IT87_REG_TEMP_HIGH(nr
), data
->temp_high
[nr
]);
404 mutex_unlock(&data
->update_lock
);
407 static ssize_t
set_temp_min(struct device
*dev
, struct device_attribute
*attr
,
408 const char *buf
, size_t count
)
410 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
411 int nr
= sensor_attr
->index
;
413 struct it87_data
*data
= dev_get_drvdata(dev
);
414 int val
= simple_strtol(buf
, NULL
, 10);
416 mutex_lock(&data
->update_lock
);
417 data
->temp_low
[nr
] = TEMP_TO_REG(val
);
418 it87_write_value(data
, IT87_REG_TEMP_LOW(nr
), data
->temp_low
[nr
]);
419 mutex_unlock(&data
->update_lock
);
422 #define show_temp_offset(offset) \
423 static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
424 show_temp, NULL, offset - 1); \
425 static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
426 show_temp_max, set_temp_max, offset - 1); \
427 static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
428 show_temp_min, set_temp_min, offset - 1);
434 static ssize_t
show_sensor(struct device
*dev
, struct device_attribute
*attr
,
437 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
438 int nr
= sensor_attr
->index
;
440 struct it87_data
*data
= it87_update_device(dev
);
441 u8 reg
= data
->sensor
; /* In case the value is updated while we use it */
444 return sprintf(buf
, "3\n"); /* thermal diode */
446 return sprintf(buf
, "2\n"); /* thermistor */
447 return sprintf(buf
, "0\n"); /* disabled */
449 static ssize_t
set_sensor(struct device
*dev
, struct device_attribute
*attr
,
450 const char *buf
, size_t count
)
452 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
453 int nr
= sensor_attr
->index
;
455 struct it87_data
*data
= dev_get_drvdata(dev
);
456 int val
= simple_strtol(buf
, NULL
, 10);
458 mutex_lock(&data
->update_lock
);
460 data
->sensor
&= ~(1 << nr
);
461 data
->sensor
&= ~(8 << nr
);
462 /* 3 = thermal diode; 2 = thermistor; 0 = disabled */
464 data
->sensor
|= 1 << nr
;
466 data
->sensor
|= 8 << nr
;
468 mutex_unlock(&data
->update_lock
);
471 it87_write_value(data
, IT87_REG_TEMP_ENABLE
, data
->sensor
);
472 mutex_unlock(&data
->update_lock
);
475 #define show_sensor_offset(offset) \
476 static SENSOR_DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, \
477 show_sensor, set_sensor, offset - 1);
479 show_sensor_offset(1);
480 show_sensor_offset(2);
481 show_sensor_offset(3);
484 static ssize_t
show_fan(struct device
*dev
, struct device_attribute
*attr
,
487 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
488 int nr
= sensor_attr
->index
;
490 struct it87_data
*data
= it87_update_device(dev
);
491 return sprintf(buf
,"%d\n", FAN_FROM_REG(data
->fan
[nr
],
492 DIV_FROM_REG(data
->fan_div
[nr
])));
494 static ssize_t
show_fan_min(struct device
*dev
, struct device_attribute
*attr
,
497 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
498 int nr
= sensor_attr
->index
;
500 struct it87_data
*data
= it87_update_device(dev
);
501 return sprintf(buf
,"%d\n",
502 FAN_FROM_REG(data
->fan_min
[nr
], DIV_FROM_REG(data
->fan_div
[nr
])));
504 static ssize_t
show_fan_div(struct device
*dev
, struct device_attribute
*attr
,
507 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
508 int nr
= sensor_attr
->index
;
510 struct it87_data
*data
= it87_update_device(dev
);
511 return sprintf(buf
, "%d\n", DIV_FROM_REG(data
->fan_div
[nr
]));
513 static ssize_t
show_pwm_enable(struct device
*dev
, struct device_attribute
*attr
,
516 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
517 int nr
= sensor_attr
->index
;
519 struct it87_data
*data
= it87_update_device(dev
);
520 return sprintf(buf
,"%d\n", (data
->fan_main_ctrl
& (1 << nr
)) ? 1 : 0);
522 static ssize_t
show_pwm(struct device
*dev
, struct device_attribute
*attr
,
525 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
526 int nr
= sensor_attr
->index
;
528 struct it87_data
*data
= it87_update_device(dev
);
529 return sprintf(buf
,"%d\n", data
->manual_pwm_ctl
[nr
]);
531 static ssize_t
show_pwm_freq(struct device
*dev
, struct device_attribute
*attr
,
534 struct it87_data
*data
= it87_update_device(dev
);
535 int index
= (data
->fan_ctl
>> 4) & 0x07;
537 return sprintf(buf
, "%u\n", pwm_freq
[index
]);
539 static ssize_t
set_fan_min(struct device
*dev
, struct device_attribute
*attr
,
540 const char *buf
, size_t count
)
542 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
543 int nr
= sensor_attr
->index
;
545 struct it87_data
*data
= dev_get_drvdata(dev
);
546 int val
= simple_strtol(buf
, NULL
, 10);
549 mutex_lock(&data
->update_lock
);
550 reg
= it87_read_value(data
, IT87_REG_FAN_DIV
);
552 case 0: data
->fan_div
[nr
] = reg
& 0x07; break;
553 case 1: data
->fan_div
[nr
] = (reg
>> 3) & 0x07; break;
554 case 2: data
->fan_div
[nr
] = (reg
& 0x40) ? 3 : 1; break;
557 data
->fan_min
[nr
] = FAN_TO_REG(val
, DIV_FROM_REG(data
->fan_div
[nr
]));
558 it87_write_value(data
, IT87_REG_FAN_MIN(nr
), data
->fan_min
[nr
]);
559 mutex_unlock(&data
->update_lock
);
562 static ssize_t
set_fan_div(struct device
*dev
, struct device_attribute
*attr
,
563 const char *buf
, size_t count
)
565 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
566 int nr
= sensor_attr
->index
;
568 struct it87_data
*data
= dev_get_drvdata(dev
);
569 unsigned long val
= simple_strtoul(buf
, NULL
, 10);
573 mutex_lock(&data
->update_lock
);
574 old
= it87_read_value(data
, IT87_REG_FAN_DIV
);
576 /* Save fan min limit */
577 min
= FAN_FROM_REG(data
->fan_min
[nr
], DIV_FROM_REG(data
->fan_div
[nr
]));
582 data
->fan_div
[nr
] = DIV_TO_REG(val
);
586 data
->fan_div
[nr
] = 1;
588 data
->fan_div
[nr
] = 3;
591 val
|= (data
->fan_div
[0] & 0x07);
592 val
|= (data
->fan_div
[1] & 0x07) << 3;
593 if (data
->fan_div
[2] == 3)
595 it87_write_value(data
, IT87_REG_FAN_DIV
, val
);
597 /* Restore fan min limit */
598 data
->fan_min
[nr
] = FAN_TO_REG(min
, DIV_FROM_REG(data
->fan_div
[nr
]));
599 it87_write_value(data
, IT87_REG_FAN_MIN(nr
), data
->fan_min
[nr
]);
601 mutex_unlock(&data
->update_lock
);
604 static ssize_t
set_pwm_enable(struct device
*dev
,
605 struct device_attribute
*attr
, const char *buf
, size_t count
)
607 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
608 int nr
= sensor_attr
->index
;
610 struct it87_data
*data
= dev_get_drvdata(dev
);
611 int val
= simple_strtol(buf
, NULL
, 10);
613 mutex_lock(&data
->update_lock
);
617 /* make sure the fan is on when in on/off mode */
618 tmp
= it87_read_value(data
, IT87_REG_FAN_CTL
);
619 it87_write_value(data
, IT87_REG_FAN_CTL
, tmp
| (1 << nr
));
620 /* set on/off mode */
621 data
->fan_main_ctrl
&= ~(1 << nr
);
622 it87_write_value(data
, IT87_REG_FAN_MAIN_CTRL
, data
->fan_main_ctrl
);
623 } else if (val
== 1) {
624 /* set SmartGuardian mode */
625 data
->fan_main_ctrl
|= (1 << nr
);
626 it87_write_value(data
, IT87_REG_FAN_MAIN_CTRL
, data
->fan_main_ctrl
);
627 /* set saved pwm value, clear FAN_CTLX PWM mode bit */
628 it87_write_value(data
, IT87_REG_PWM(nr
), PWM_TO_REG(data
->manual_pwm_ctl
[nr
]));
630 mutex_unlock(&data
->update_lock
);
634 mutex_unlock(&data
->update_lock
);
637 static ssize_t
set_pwm(struct device
*dev
, struct device_attribute
*attr
,
638 const char *buf
, size_t count
)
640 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
641 int nr
= sensor_attr
->index
;
643 struct it87_data
*data
= dev_get_drvdata(dev
);
644 int val
= simple_strtol(buf
, NULL
, 10);
646 if (val
< 0 || val
> 255)
649 mutex_lock(&data
->update_lock
);
650 data
->manual_pwm_ctl
[nr
] = val
;
651 if (data
->fan_main_ctrl
& (1 << nr
))
652 it87_write_value(data
, IT87_REG_PWM(nr
), PWM_TO_REG(data
->manual_pwm_ctl
[nr
]));
653 mutex_unlock(&data
->update_lock
);
656 static ssize_t
set_pwm_freq(struct device
*dev
,
657 struct device_attribute
*attr
, const char *buf
, size_t count
)
659 struct it87_data
*data
= dev_get_drvdata(dev
);
660 unsigned long val
= simple_strtoul(buf
, NULL
, 10);
663 /* Search for the nearest available frequency */
664 for (i
= 0; i
< 7; i
++) {
665 if (val
> (pwm_freq
[i
] + pwm_freq
[i
+1]) / 2)
669 mutex_lock(&data
->update_lock
);
670 data
->fan_ctl
= it87_read_value(data
, IT87_REG_FAN_CTL
) & 0x8f;
671 data
->fan_ctl
|= i
<< 4;
672 it87_write_value(data
, IT87_REG_FAN_CTL
, data
->fan_ctl
);
673 mutex_unlock(&data
->update_lock
);
678 #define show_fan_offset(offset) \
679 static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
680 show_fan, NULL, offset - 1); \
681 static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
682 show_fan_min, set_fan_min, offset - 1); \
683 static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
684 show_fan_div, set_fan_div, offset - 1);
690 #define show_pwm_offset(offset) \
691 static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
692 show_pwm_enable, set_pwm_enable, offset - 1); \
693 static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
694 show_pwm, set_pwm, offset - 1); \
695 static DEVICE_ATTR(pwm##offset##_freq, \
696 (offset == 1 ? S_IRUGO | S_IWUSR : S_IRUGO), \
697 show_pwm_freq, (offset == 1 ? set_pwm_freq : NULL));
703 /* A different set of callbacks for 16-bit fans */
704 static ssize_t
show_fan16(struct device
*dev
, struct device_attribute
*attr
,
707 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
708 int nr
= sensor_attr
->index
;
709 struct it87_data
*data
= it87_update_device(dev
);
710 return sprintf(buf
, "%d\n", FAN16_FROM_REG(data
->fan
[nr
]));
713 static ssize_t
show_fan16_min(struct device
*dev
, struct device_attribute
*attr
,
716 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
717 int nr
= sensor_attr
->index
;
718 struct it87_data
*data
= it87_update_device(dev
);
719 return sprintf(buf
, "%d\n", FAN16_FROM_REG(data
->fan_min
[nr
]));
722 static ssize_t
set_fan16_min(struct device
*dev
, struct device_attribute
*attr
,
723 const char *buf
, size_t count
)
725 struct sensor_device_attribute
*sensor_attr
= to_sensor_dev_attr(attr
);
726 int nr
= sensor_attr
->index
;
727 struct it87_data
*data
= dev_get_drvdata(dev
);
728 int val
= simple_strtol(buf
, NULL
, 10);
730 mutex_lock(&data
->update_lock
);
731 data
->fan_min
[nr
] = FAN16_TO_REG(val
);
732 it87_write_value(data
, IT87_REG_FAN_MIN(nr
),
733 data
->fan_min
[nr
] & 0xff);
734 it87_write_value(data
, IT87_REG_FANX_MIN(nr
),
735 data
->fan_min
[nr
] >> 8);
736 mutex_unlock(&data
->update_lock
);
740 /* We want to use the same sysfs file names as 8-bit fans, but we need
741 different variable names, so we have to use SENSOR_ATTR instead of
742 SENSOR_DEVICE_ATTR. */
743 #define show_fan16_offset(offset) \
744 static struct sensor_device_attribute sensor_dev_attr_fan##offset##_input16 \
745 = SENSOR_ATTR(fan##offset##_input, S_IRUGO, \
746 show_fan16, NULL, offset - 1); \
747 static struct sensor_device_attribute sensor_dev_attr_fan##offset##_min16 \
748 = SENSOR_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
749 show_fan16_min, set_fan16_min, offset - 1)
751 show_fan16_offset(1);
752 show_fan16_offset(2);
753 show_fan16_offset(3);
756 static ssize_t
show_alarms(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
758 struct it87_data
*data
= it87_update_device(dev
);
759 return sprintf(buf
, "%u\n", data
->alarms
);
761 static DEVICE_ATTR(alarms
, S_IRUGO
, show_alarms
, NULL
);
764 show_vrm_reg(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
766 struct it87_data
*data
= it87_update_device(dev
);
767 return sprintf(buf
, "%u\n", data
->vrm
);
770 store_vrm_reg(struct device
*dev
, struct device_attribute
*attr
, const char *buf
, size_t count
)
772 struct it87_data
*data
= dev_get_drvdata(dev
);
775 val
= simple_strtoul(buf
, NULL
, 10);
780 static DEVICE_ATTR(vrm
, S_IRUGO
| S_IWUSR
, show_vrm_reg
, store_vrm_reg
);
783 show_vid_reg(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
785 struct it87_data
*data
= it87_update_device(dev
);
786 return sprintf(buf
, "%ld\n", (long) vid_from_reg(data
->vid
, data
->vrm
));
788 static DEVICE_ATTR(cpu0_vid
, S_IRUGO
, show_vid_reg
, NULL
);
790 static ssize_t
show_name(struct device
*dev
, struct device_attribute
793 struct it87_data
*data
= dev_get_drvdata(dev
);
794 return sprintf(buf
, "%s\n", data
->name
);
796 static DEVICE_ATTR(name
, S_IRUGO
, show_name
, NULL
);
798 static struct attribute
*it87_attributes
[] = {
799 &sensor_dev_attr_in0_input
.dev_attr
.attr
,
800 &sensor_dev_attr_in1_input
.dev_attr
.attr
,
801 &sensor_dev_attr_in2_input
.dev_attr
.attr
,
802 &sensor_dev_attr_in3_input
.dev_attr
.attr
,
803 &sensor_dev_attr_in4_input
.dev_attr
.attr
,
804 &sensor_dev_attr_in5_input
.dev_attr
.attr
,
805 &sensor_dev_attr_in6_input
.dev_attr
.attr
,
806 &sensor_dev_attr_in7_input
.dev_attr
.attr
,
807 &sensor_dev_attr_in8_input
.dev_attr
.attr
,
808 &sensor_dev_attr_in0_min
.dev_attr
.attr
,
809 &sensor_dev_attr_in1_min
.dev_attr
.attr
,
810 &sensor_dev_attr_in2_min
.dev_attr
.attr
,
811 &sensor_dev_attr_in3_min
.dev_attr
.attr
,
812 &sensor_dev_attr_in4_min
.dev_attr
.attr
,
813 &sensor_dev_attr_in5_min
.dev_attr
.attr
,
814 &sensor_dev_attr_in6_min
.dev_attr
.attr
,
815 &sensor_dev_attr_in7_min
.dev_attr
.attr
,
816 &sensor_dev_attr_in0_max
.dev_attr
.attr
,
817 &sensor_dev_attr_in1_max
.dev_attr
.attr
,
818 &sensor_dev_attr_in2_max
.dev_attr
.attr
,
819 &sensor_dev_attr_in3_max
.dev_attr
.attr
,
820 &sensor_dev_attr_in4_max
.dev_attr
.attr
,
821 &sensor_dev_attr_in5_max
.dev_attr
.attr
,
822 &sensor_dev_attr_in6_max
.dev_attr
.attr
,
823 &sensor_dev_attr_in7_max
.dev_attr
.attr
,
825 &sensor_dev_attr_temp1_input
.dev_attr
.attr
,
826 &sensor_dev_attr_temp2_input
.dev_attr
.attr
,
827 &sensor_dev_attr_temp3_input
.dev_attr
.attr
,
828 &sensor_dev_attr_temp1_max
.dev_attr
.attr
,
829 &sensor_dev_attr_temp2_max
.dev_attr
.attr
,
830 &sensor_dev_attr_temp3_max
.dev_attr
.attr
,
831 &sensor_dev_attr_temp1_min
.dev_attr
.attr
,
832 &sensor_dev_attr_temp2_min
.dev_attr
.attr
,
833 &sensor_dev_attr_temp3_min
.dev_attr
.attr
,
834 &sensor_dev_attr_temp1_type
.dev_attr
.attr
,
835 &sensor_dev_attr_temp2_type
.dev_attr
.attr
,
836 &sensor_dev_attr_temp3_type
.dev_attr
.attr
,
838 &dev_attr_alarms
.attr
,
843 static const struct attribute_group it87_group
= {
844 .attrs
= it87_attributes
,
847 static struct attribute
*it87_attributes_opt
[] = {
848 &sensor_dev_attr_fan1_input16
.dev_attr
.attr
,
849 &sensor_dev_attr_fan1_min16
.dev_attr
.attr
,
850 &sensor_dev_attr_fan2_input16
.dev_attr
.attr
,
851 &sensor_dev_attr_fan2_min16
.dev_attr
.attr
,
852 &sensor_dev_attr_fan3_input16
.dev_attr
.attr
,
853 &sensor_dev_attr_fan3_min16
.dev_attr
.attr
,
855 &sensor_dev_attr_fan1_input
.dev_attr
.attr
,
856 &sensor_dev_attr_fan1_min
.dev_attr
.attr
,
857 &sensor_dev_attr_fan1_div
.dev_attr
.attr
,
858 &sensor_dev_attr_fan2_input
.dev_attr
.attr
,
859 &sensor_dev_attr_fan2_min
.dev_attr
.attr
,
860 &sensor_dev_attr_fan2_div
.dev_attr
.attr
,
861 &sensor_dev_attr_fan3_input
.dev_attr
.attr
,
862 &sensor_dev_attr_fan3_min
.dev_attr
.attr
,
863 &sensor_dev_attr_fan3_div
.dev_attr
.attr
,
865 &sensor_dev_attr_pwm1_enable
.dev_attr
.attr
,
866 &sensor_dev_attr_pwm2_enable
.dev_attr
.attr
,
867 &sensor_dev_attr_pwm3_enable
.dev_attr
.attr
,
868 &sensor_dev_attr_pwm1
.dev_attr
.attr
,
869 &sensor_dev_attr_pwm2
.dev_attr
.attr
,
870 &sensor_dev_attr_pwm3
.dev_attr
.attr
,
873 &dev_attr_cpu0_vid
.attr
,
877 static const struct attribute_group it87_group_opt
= {
878 .attrs
= it87_attributes_opt
,
881 /* SuperIO detection - will change isa_address if a chip is found */
882 static int __init
it87_find(unsigned short *address
,
883 struct it87_sio_data
*sio_data
)
889 chip_type
= superio_inw(DEVID
);
893 sio_data
->type
= it87
;
896 sio_data
->type
= it8712
;
900 sio_data
->type
= it8716
;
903 sio_data
->type
= it8718
;
905 case 0xffff: /* No device at all */
908 pr_debug(DRVNAME
": Unsupported chip (DEVID=0x%x)\n",
914 if (!(superio_inb(IT87_ACT_REG
) & 0x01)) {
915 pr_info("it87: Device not activated, skipping\n");
919 *address
= superio_inw(IT87_BASE_REG
) & ~(IT87_EXTENT
- 1);
921 pr_info("it87: Base address not set, skipping\n");
926 pr_info("it87: Found IT%04xF chip at 0x%x, revision %d\n",
927 chip_type
, *address
, superio_inb(DEVREV
) & 0x0f);
929 /* Read GPIO config and VID value from LDN 7 (GPIO) */
930 if (chip_type
!= IT8705F_DEVID
) {
933 superio_select(GPIO
);
934 if (chip_type
== it8718
)
935 sio_data
->vid_value
= superio_inb(IT87_SIO_VID_REG
);
937 reg
= superio_inb(IT87_SIO_PINX2_REG
);
939 pr_info("it87: in3 is VCC (+5V)\n");
941 pr_info("it87: in7 is VCCH (+5V Stand-By)\n");
949 static int __devinit
it87_probe(struct platform_device
*pdev
)
951 struct it87_data
*data
;
952 struct resource
*res
;
953 struct device
*dev
= &pdev
->dev
;
954 struct it87_sio_data
*sio_data
= dev
->platform_data
;
956 int enable_pwm_interface
;
957 static const char *names
[] = {
964 res
= platform_get_resource(pdev
, IORESOURCE_IO
, 0);
965 if (!request_region(res
->start
, IT87_EXTENT
, DRVNAME
)) {
966 dev_err(dev
, "Failed to request region 0x%lx-0x%lx\n",
967 (unsigned long)res
->start
,
968 (unsigned long)(res
->start
+ IT87_EXTENT
- 1));
973 if (!(data
= kzalloc(sizeof(struct it87_data
), GFP_KERNEL
))) {
978 data
->addr
= res
->start
;
979 data
->type
= sio_data
->type
;
980 data
->name
= names
[sio_data
->type
];
982 /* Now, we do the remaining detection. */
983 if ((it87_read_value(data
, IT87_REG_CONFIG
) & 0x80)
984 || it87_read_value(data
, IT87_REG_CHIPID
) != 0x90) {
989 platform_set_drvdata(pdev
, data
);
991 mutex_init(&data
->update_lock
);
993 /* Check PWM configuration */
994 enable_pwm_interface
= it87_check_pwm(dev
);
996 /* Initialize the IT87 chip */
997 it87_init_device(pdev
);
999 /* Register sysfs hooks */
1000 if ((err
= sysfs_create_group(&dev
->kobj
, &it87_group
)))
1003 /* Do not create fan files for disabled fans */
1004 if (data
->type
== it8716
|| data
->type
== it8718
) {
1005 /* 16-bit tachometers */
1006 if (data
->has_fan
& (1 << 0)) {
1007 if ((err
= device_create_file(dev
,
1008 &sensor_dev_attr_fan1_input16
.dev_attr
))
1009 || (err
= device_create_file(dev
,
1010 &sensor_dev_attr_fan1_min16
.dev_attr
)))
1013 if (data
->has_fan
& (1 << 1)) {
1014 if ((err
= device_create_file(dev
,
1015 &sensor_dev_attr_fan2_input16
.dev_attr
))
1016 || (err
= device_create_file(dev
,
1017 &sensor_dev_attr_fan2_min16
.dev_attr
)))
1020 if (data
->has_fan
& (1 << 2)) {
1021 if ((err
= device_create_file(dev
,
1022 &sensor_dev_attr_fan3_input16
.dev_attr
))
1023 || (err
= device_create_file(dev
,
1024 &sensor_dev_attr_fan3_min16
.dev_attr
)))
1028 /* 8-bit tachometers with clock divider */
1029 if (data
->has_fan
& (1 << 0)) {
1030 if ((err
= device_create_file(dev
,
1031 &sensor_dev_attr_fan1_input
.dev_attr
))
1032 || (err
= device_create_file(dev
,
1033 &sensor_dev_attr_fan1_min
.dev_attr
))
1034 || (err
= device_create_file(dev
,
1035 &sensor_dev_attr_fan1_div
.dev_attr
)))
1038 if (data
->has_fan
& (1 << 1)) {
1039 if ((err
= device_create_file(dev
,
1040 &sensor_dev_attr_fan2_input
.dev_attr
))
1041 || (err
= device_create_file(dev
,
1042 &sensor_dev_attr_fan2_min
.dev_attr
))
1043 || (err
= device_create_file(dev
,
1044 &sensor_dev_attr_fan2_div
.dev_attr
)))
1047 if (data
->has_fan
& (1 << 2)) {
1048 if ((err
= device_create_file(dev
,
1049 &sensor_dev_attr_fan3_input
.dev_attr
))
1050 || (err
= device_create_file(dev
,
1051 &sensor_dev_attr_fan3_min
.dev_attr
))
1052 || (err
= device_create_file(dev
,
1053 &sensor_dev_attr_fan3_div
.dev_attr
)))
1058 if (enable_pwm_interface
) {
1059 if ((err
= device_create_file(dev
,
1060 &sensor_dev_attr_pwm1_enable
.dev_attr
))
1061 || (err
= device_create_file(dev
,
1062 &sensor_dev_attr_pwm2_enable
.dev_attr
))
1063 || (err
= device_create_file(dev
,
1064 &sensor_dev_attr_pwm3_enable
.dev_attr
))
1065 || (err
= device_create_file(dev
,
1066 &sensor_dev_attr_pwm1
.dev_attr
))
1067 || (err
= device_create_file(dev
,
1068 &sensor_dev_attr_pwm2
.dev_attr
))
1069 || (err
= device_create_file(dev
,
1070 &sensor_dev_attr_pwm3
.dev_attr
))
1071 || (err
= device_create_file(dev
,
1072 &dev_attr_pwm1_freq
))
1073 || (err
= device_create_file(dev
,
1074 &dev_attr_pwm2_freq
))
1075 || (err
= device_create_file(dev
,
1076 &dev_attr_pwm3_freq
)))
1080 if (data
->type
== it8712
|| data
->type
== it8716
1081 || data
->type
== it8718
) {
1082 data
->vrm
= vid_which_vrm();
1083 /* VID reading from Super-I/O config space if available */
1084 data
->vid
= sio_data
->vid_value
;
1085 if ((err
= device_create_file(dev
,
1087 || (err
= device_create_file(dev
,
1088 &dev_attr_cpu0_vid
)))
1092 data
->class_dev
= hwmon_device_register(dev
);
1093 if (IS_ERR(data
->class_dev
)) {
1094 err
= PTR_ERR(data
->class_dev
);
1101 sysfs_remove_group(&dev
->kobj
, &it87_group
);
1102 sysfs_remove_group(&dev
->kobj
, &it87_group_opt
);
1104 platform_set_drvdata(pdev
, NULL
);
1107 release_region(res
->start
, IT87_EXTENT
);
1112 static int __devexit
it87_remove(struct platform_device
*pdev
)
1114 struct it87_data
*data
= platform_get_drvdata(pdev
);
1116 hwmon_device_unregister(data
->class_dev
);
1117 sysfs_remove_group(&pdev
->dev
.kobj
, &it87_group
);
1118 sysfs_remove_group(&pdev
->dev
.kobj
, &it87_group_opt
);
1120 release_region(data
->addr
, IT87_EXTENT
);
1121 platform_set_drvdata(pdev
, NULL
);
1127 /* Must be called with data->update_lock held, except during initialization.
1128 We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
1129 would slow down the IT87 access and should not be necessary. */
1130 static int it87_read_value(struct it87_data
*data
, u8 reg
)
1132 outb_p(reg
, data
->addr
+ IT87_ADDR_REG_OFFSET
);
1133 return inb_p(data
->addr
+ IT87_DATA_REG_OFFSET
);
1136 /* Must be called with data->update_lock held, except during initialization.
1137 We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
1138 would slow down the IT87 access and should not be necessary. */
1139 static void it87_write_value(struct it87_data
*data
, u8 reg
, u8 value
)
1141 outb_p(reg
, data
->addr
+ IT87_ADDR_REG_OFFSET
);
1142 outb_p(value
, data
->addr
+ IT87_DATA_REG_OFFSET
);
1145 /* Return 1 if and only if the PWM interface is safe to use */
1146 static int __devinit
it87_check_pwm(struct device
*dev
)
1148 struct it87_data
*data
= dev_get_drvdata(dev
);
1149 /* Some BIOSes fail to correctly configure the IT87 fans. All fans off
1150 * and polarity set to active low is sign that this is the case so we
1151 * disable pwm control to protect the user. */
1152 int tmp
= it87_read_value(data
, IT87_REG_FAN_CTL
);
1153 if ((tmp
& 0x87) == 0) {
1154 if (fix_pwm_polarity
) {
1155 /* The user asks us to attempt a chip reconfiguration.
1156 * This means switching to active high polarity and
1157 * inverting all fan speed values. */
1161 for (i
= 0; i
< 3; i
++)
1162 pwm
[i
] = it87_read_value(data
,
1165 /* If any fan is in automatic pwm mode, the polarity
1166 * might be correct, as suspicious as it seems, so we
1167 * better don't change anything (but still disable the
1168 * PWM interface). */
1169 if (!((pwm
[0] | pwm
[1] | pwm
[2]) & 0x80)) {
1170 dev_info(dev
, "Reconfiguring PWM to "
1171 "active high polarity\n");
1172 it87_write_value(data
, IT87_REG_FAN_CTL
,
1174 for (i
= 0; i
< 3; i
++)
1175 it87_write_value(data
,
1181 dev_info(dev
, "PWM configuration is "
1182 "too broken to be fixed\n");
1185 dev_info(dev
, "Detected broken BIOS "
1186 "defaults, disabling PWM interface\n");
1188 } else if (fix_pwm_polarity
) {
1189 dev_info(dev
, "PWM configuration looks "
1190 "sane, won't touch\n");
1196 /* Called when we have found a new IT87. */
1197 static void __devinit
it87_init_device(struct platform_device
*pdev
)
1199 struct it87_data
*data
= platform_get_drvdata(pdev
);
1202 /* initialize to sane defaults:
1203 * - if the chip is in manual pwm mode, this will be overwritten with
1204 * the actual settings on the chip (so in this case, initialization
1206 * - if in automatic or on/off mode, we could switch to manual mode,
1207 * read the registers and set manual_pwm_ctl accordingly, but currently
1208 * this is not implemented, so we initialize to something sane */
1209 for (i
= 0; i
< 3; i
++) {
1210 data
->manual_pwm_ctl
[i
] = 0xff;
1213 /* Some chips seem to have default value 0xff for all limit
1214 * registers. For low voltage limits it makes no sense and triggers
1215 * alarms, so change to 0 instead. For high temperature limits, it
1216 * means -1 degree C, which surprisingly doesn't trigger an alarm,
1217 * but is still confusing, so change to 127 degrees C. */
1218 for (i
= 0; i
< 8; i
++) {
1219 tmp
= it87_read_value(data
, IT87_REG_VIN_MIN(i
));
1221 it87_write_value(data
, IT87_REG_VIN_MIN(i
), 0);
1223 for (i
= 0; i
< 3; i
++) {
1224 tmp
= it87_read_value(data
, IT87_REG_TEMP_HIGH(i
));
1226 it87_write_value(data
, IT87_REG_TEMP_HIGH(i
), 127);
1229 /* Check if temperature channnels are reset manually or by some reason */
1230 tmp
= it87_read_value(data
, IT87_REG_TEMP_ENABLE
);
1231 if ((tmp
& 0x3f) == 0) {
1232 /* Temp1,Temp3=thermistor; Temp2=thermal diode */
1233 tmp
= (tmp
& 0xc0) | 0x2a;
1234 it87_write_value(data
, IT87_REG_TEMP_ENABLE
, tmp
);
1238 /* Check if voltage monitors are reset manually or by some reason */
1239 tmp
= it87_read_value(data
, IT87_REG_VIN_ENABLE
);
1240 if ((tmp
& 0xff) == 0) {
1241 /* Enable all voltage monitors */
1242 it87_write_value(data
, IT87_REG_VIN_ENABLE
, 0xff);
1245 /* Check if tachometers are reset manually or by some reason */
1246 data
->fan_main_ctrl
= it87_read_value(data
, IT87_REG_FAN_MAIN_CTRL
);
1247 if ((data
->fan_main_ctrl
& 0x70) == 0) {
1248 /* Enable all fan tachometers */
1249 data
->fan_main_ctrl
|= 0x70;
1250 it87_write_value(data
, IT87_REG_FAN_MAIN_CTRL
, data
->fan_main_ctrl
);
1252 data
->has_fan
= (data
->fan_main_ctrl
>> 4) & 0x07;
1254 /* Set tachometers to 16-bit mode if needed */
1255 if (data
->type
== it8716
|| data
->type
== it8718
) {
1256 tmp
= it87_read_value(data
, IT87_REG_FAN_16BIT
);
1257 if (~tmp
& 0x07 & data
->has_fan
) {
1259 "Setting fan1-3 to 16-bit mode\n");
1260 it87_write_value(data
, IT87_REG_FAN_16BIT
,
1265 /* Set current fan mode registers and the default settings for the
1266 * other mode registers */
1267 for (i
= 0; i
< 3; i
++) {
1268 if (data
->fan_main_ctrl
& (1 << i
)) {
1270 tmp
= it87_read_value(data
, IT87_REG_PWM(i
));
1272 /* automatic pwm - not yet implemented, but
1273 * leave the settings made by the BIOS alone
1274 * until a change is requested via the sysfs
1278 data
->manual_pwm_ctl
[i
] = PWM_FROM_REG(tmp
);
1283 /* Start monitoring */
1284 it87_write_value(data
, IT87_REG_CONFIG
,
1285 (it87_read_value(data
, IT87_REG_CONFIG
) & 0x36)
1286 | (update_vbat
? 0x41 : 0x01));
1289 static struct it87_data
*it87_update_device(struct device
*dev
)
1291 struct it87_data
*data
= dev_get_drvdata(dev
);
1294 mutex_lock(&data
->update_lock
);
1296 if (time_after(jiffies
, data
->last_updated
+ HZ
+ HZ
/ 2)
1300 /* Cleared after each update, so reenable. Value
1301 returned by this read will be previous value */
1302 it87_write_value(data
, IT87_REG_CONFIG
,
1303 it87_read_value(data
, IT87_REG_CONFIG
) | 0x40);
1305 for (i
= 0; i
<= 7; i
++) {
1307 it87_read_value(data
, IT87_REG_VIN(i
));
1309 it87_read_value(data
, IT87_REG_VIN_MIN(i
));
1311 it87_read_value(data
, IT87_REG_VIN_MAX(i
));
1313 /* in8 (battery) has no limit registers */
1315 it87_read_value(data
, IT87_REG_VIN(8));
1317 for (i
= 0; i
< 3; i
++) {
1318 /* Skip disabled fans */
1319 if (!(data
->has_fan
& (1 << i
)))
1323 it87_read_value(data
, IT87_REG_FAN_MIN(i
));
1324 data
->fan
[i
] = it87_read_value(data
,
1326 /* Add high byte if in 16-bit mode */
1327 if (data
->type
== it8716
|| data
->type
== it8718
) {
1328 data
->fan
[i
] |= it87_read_value(data
,
1329 IT87_REG_FANX(i
)) << 8;
1330 data
->fan_min
[i
] |= it87_read_value(data
,
1331 IT87_REG_FANX_MIN(i
)) << 8;
1334 for (i
= 0; i
< 3; i
++) {
1336 it87_read_value(data
, IT87_REG_TEMP(i
));
1337 data
->temp_high
[i
] =
1338 it87_read_value(data
, IT87_REG_TEMP_HIGH(i
));
1340 it87_read_value(data
, IT87_REG_TEMP_LOW(i
));
1343 /* Newer chips don't have clock dividers */
1344 if ((data
->has_fan
& 0x07) && data
->type
!= it8716
1345 && data
->type
!= it8718
) {
1346 i
= it87_read_value(data
, IT87_REG_FAN_DIV
);
1347 data
->fan_div
[0] = i
& 0x07;
1348 data
->fan_div
[1] = (i
>> 3) & 0x07;
1349 data
->fan_div
[2] = (i
& 0x40) ? 3 : 1;
1353 it87_read_value(data
, IT87_REG_ALARM1
) |
1354 (it87_read_value(data
, IT87_REG_ALARM2
) << 8) |
1355 (it87_read_value(data
, IT87_REG_ALARM3
) << 16);
1356 data
->fan_main_ctrl
= it87_read_value(data
,
1357 IT87_REG_FAN_MAIN_CTRL
);
1358 data
->fan_ctl
= it87_read_value(data
, IT87_REG_FAN_CTL
);
1360 data
->sensor
= it87_read_value(data
, IT87_REG_TEMP_ENABLE
);
1361 /* The 8705 does not have VID capability */
1362 if (data
->type
== it8712
|| data
->type
== it8716
) {
1363 data
->vid
= it87_read_value(data
, IT87_REG_VID
);
1364 /* The older IT8712F revisions had only 5 VID pins,
1365 but we assume it is always safe to read 6 bits. */
1368 data
->last_updated
= jiffies
;
1372 mutex_unlock(&data
->update_lock
);
1377 static int __init
it87_device_add(unsigned short address
,
1378 const struct it87_sio_data
*sio_data
)
1380 struct resource res
= {
1382 .end
= address
+ IT87_EXTENT
- 1,
1384 .flags
= IORESOURCE_IO
,
1388 pdev
= platform_device_alloc(DRVNAME
, address
);
1391 printk(KERN_ERR DRVNAME
": Device allocation failed\n");
1395 err
= platform_device_add_resources(pdev
, &res
, 1);
1397 printk(KERN_ERR DRVNAME
": Device resource addition failed "
1399 goto exit_device_put
;
1402 err
= platform_device_add_data(pdev
, sio_data
,
1403 sizeof(struct it87_sio_data
));
1405 printk(KERN_ERR DRVNAME
": Platform data allocation failed\n");
1406 goto exit_device_put
;
1409 err
= platform_device_add(pdev
);
1411 printk(KERN_ERR DRVNAME
": Device addition failed (%d)\n",
1413 goto exit_device_put
;
1419 platform_device_put(pdev
);
1424 static int __init
sm_it87_init(void)
1427 unsigned short isa_address
=0;
1428 struct it87_sio_data sio_data
;
1430 err
= it87_find(&isa_address
, &sio_data
);
1433 err
= platform_driver_register(&it87_driver
);
1437 err
= it87_device_add(isa_address
, &sio_data
);
1439 platform_driver_unregister(&it87_driver
);
1446 static void __exit
sm_it87_exit(void)
1448 platform_device_unregister(pdev
);
1449 platform_driver_unregister(&it87_driver
);
1453 MODULE_AUTHOR("Chris Gauthron <chrisg@0-in.com>, "
1454 "Jean Delvare <khali@linux-fr.org>");
1455 MODULE_DESCRIPTION("IT8705F/8712F/8716F/8718F/8726F, SiS950 driver");
1456 module_param(update_vbat
, bool, 0);
1457 MODULE_PARM_DESC(update_vbat
, "Update vbat if set else return powerup value");
1458 module_param(fix_pwm_polarity
, bool, 0);
1459 MODULE_PARM_DESC(fix_pwm_polarity
, "Force PWM polarity to active high (DANGEROUS)");
1460 MODULE_LICENSE("GPL");
1462 module_init(sm_it87_init
);
1463 module_exit(sm_it87_exit
);