[PATCH] I2C: Separate non-i2c hwmon drivers from i2c-core (3/9)
[linux-2.6/cjktty.git] / drivers / hwmon / it87.c
bloba438adb4b09f125a7e58ae81974a5db0f19f2b57
1 /*
2 it87.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring.
5 Supports: IT8705F Super I/O chip w/LPC interface & SMBus
6 IT8712F Super I/O chip w/LPC interface & SMBus
7 Sis950 A clone of the IT8705F
9 Copyright (C) 2001 Chris Gauthron <chrisg@0-in.com>
10 Largely inspired by lm78.c of the same package
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 djg@pdp8.net David Gesswein 7/18/01
29 Modified to fix bug with not all alarms enabled.
30 Added ability to read battery voltage and select temperature sensor
31 type at module load time.
34 #include <linux/module.h>
35 #include <linux/init.h>
36 #include <linux/slab.h>
37 #include <linux/jiffies.h>
38 #include <linux/i2c.h>
39 #include <linux/i2c-isa.h>
40 #include <linux/i2c-sensor.h>
41 #include <linux/i2c-vid.h>
42 #include <linux/hwmon-sysfs.h>
43 #include <linux/hwmon.h>
44 #include <linux/err.h>
45 #include <asm/io.h>
48 /* Addresses to scan */
49 static unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,
50 0x2e, 0x2f, I2C_CLIENT_END };
51 static unsigned int normal_isa[] = { 0x0290, I2C_CLIENT_ISA_END };
53 /* Insmod parameters */
54 SENSORS_INSMOD_2(it87, it8712);
56 #define REG 0x2e /* The register to read/write */
57 #define DEV 0x07 /* Register: Logical device select */
58 #define VAL 0x2f /* The value to read/write */
59 #define PME 0x04 /* The device with the fan registers in it */
60 #define DEVID 0x20 /* Register: Device ID */
61 #define DEVREV 0x22 /* Register: Device Revision */
63 static inline int
64 superio_inb(int reg)
66 outb(reg, REG);
67 return inb(VAL);
70 static int superio_inw(int reg)
72 int val;
73 outb(reg++, REG);
74 val = inb(VAL) << 8;
75 outb(reg, REG);
76 val |= inb(VAL);
77 return val;
80 static inline void
81 superio_select(void)
83 outb(DEV, REG);
84 outb(PME, VAL);
87 static inline void
88 superio_enter(void)
90 outb(0x87, REG);
91 outb(0x01, REG);
92 outb(0x55, REG);
93 outb(0x55, REG);
96 static inline void
97 superio_exit(void)
99 outb(0x02, REG);
100 outb(0x02, VAL);
103 #define IT8712F_DEVID 0x8712
104 #define IT8705F_DEVID 0x8705
105 #define IT87_ACT_REG 0x30
106 #define IT87_BASE_REG 0x60
108 /* Update battery voltage after every reading if true */
109 static int update_vbat;
111 /* Not all BIOSes properly configure the PWM registers */
112 static int fix_pwm_polarity;
114 /* Chip Type */
116 static u16 chip_type;
118 /* Many IT87 constants specified below */
120 /* Length of ISA address segment */
121 #define IT87_EXTENT 8
123 /* Where are the ISA address/data registers relative to the base address */
124 #define IT87_ADDR_REG_OFFSET 5
125 #define IT87_DATA_REG_OFFSET 6
127 /*----- The IT87 registers -----*/
129 #define IT87_REG_CONFIG 0x00
131 #define IT87_REG_ALARM1 0x01
132 #define IT87_REG_ALARM2 0x02
133 #define IT87_REG_ALARM3 0x03
135 #define IT87_REG_VID 0x0a
136 #define IT87_REG_FAN_DIV 0x0b
138 /* Monitors: 9 voltage (0 to 7, battery), 3 temp (1 to 3), 3 fan (1 to 3) */
140 #define IT87_REG_FAN(nr) (0x0d + (nr))
141 #define IT87_REG_FAN_MIN(nr) (0x10 + (nr))
142 #define IT87_REG_FAN_MAIN_CTRL 0x13
143 #define IT87_REG_FAN_CTL 0x14
144 #define IT87_REG_PWM(nr) (0x15 + (nr))
146 #define IT87_REG_VIN(nr) (0x20 + (nr))
147 #define IT87_REG_TEMP(nr) (0x29 + (nr))
149 #define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
150 #define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
151 #define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
152 #define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
154 #define IT87_REG_I2C_ADDR 0x48
156 #define IT87_REG_VIN_ENABLE 0x50
157 #define IT87_REG_TEMP_ENABLE 0x51
159 #define IT87_REG_CHIPID 0x58
161 #define IN_TO_REG(val) (SENSORS_LIMIT((((val) + 8)/16),0,255))
162 #define IN_FROM_REG(val) ((val) * 16)
164 static inline u8 FAN_TO_REG(long rpm, int div)
166 if (rpm == 0)
167 return 255;
168 rpm = SENSORS_LIMIT(rpm, 1, 1000000);
169 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1,
170 254);
173 #define FAN_FROM_REG(val,div) ((val)==0?-1:(val)==255?0:1350000/((val)*(div)))
175 #define TEMP_TO_REG(val) (SENSORS_LIMIT(((val)<0?(((val)-500)/1000):\
176 ((val)+500)/1000),-128,127))
177 #define TEMP_FROM_REG(val) (((val)>0x80?(val)-0x100:(val))*1000)
179 #define PWM_TO_REG(val) ((val) >> 1)
180 #define PWM_FROM_REG(val) (((val)&0x7f) << 1)
182 static int DIV_TO_REG(int val)
184 int answer = 0;
185 while ((val >>= 1) != 0)
186 answer++;
187 return answer;
189 #define DIV_FROM_REG(val) (1 << (val))
192 /* For each registered IT87, we need to keep some data in memory. That
193 data is pointed to by it87_list[NR]->data. The structure itself is
194 dynamically allocated, at the same time when a new it87 client is
195 allocated. */
196 struct it87_data {
197 struct i2c_client client;
198 struct class_device *class_dev;
199 struct semaphore lock;
200 enum chips type;
202 struct semaphore update_lock;
203 char valid; /* !=0 if following fields are valid */
204 unsigned long last_updated; /* In jiffies */
206 u8 in[9]; /* Register value */
207 u8 in_max[9]; /* Register value */
208 u8 in_min[9]; /* Register value */
209 u8 fan[3]; /* Register value */
210 u8 fan_min[3]; /* Register value */
211 u8 temp[3]; /* Register value */
212 u8 temp_high[3]; /* Register value */
213 u8 temp_low[3]; /* Register value */
214 u8 sensor; /* Register value */
215 u8 fan_div[3]; /* Register encoding, shifted right */
216 u8 vid; /* Register encoding, combined */
217 int vrm;
218 u32 alarms; /* Register encoding, combined */
219 u8 fan_main_ctrl; /* Register value */
220 u8 manual_pwm_ctl[3]; /* manual PWM value set by user */
224 static int it87_attach_adapter(struct i2c_adapter *adapter);
225 static int it87_find(int *address);
226 static int it87_detect(struct i2c_adapter *adapter, int address, int kind);
227 static int it87_detach_client(struct i2c_client *client);
229 static int it87_read_value(struct i2c_client *client, u8 register);
230 static int it87_write_value(struct i2c_client *client, u8 register,
231 u8 value);
232 static struct it87_data *it87_update_device(struct device *dev);
233 static int it87_check_pwm(struct i2c_client *client);
234 static void it87_init_client(struct i2c_client *client, struct it87_data *data);
237 static struct i2c_driver it87_driver = {
238 .owner = THIS_MODULE,
239 .name = "it87",
240 .id = I2C_DRIVERID_IT87,
241 .flags = I2C_DF_NOTIFY,
242 .attach_adapter = it87_attach_adapter,
243 .detach_client = it87_detach_client,
246 static struct i2c_driver it87_isa_driver = {
247 .owner = THIS_MODULE,
248 .name = "it87-isa",
249 .attach_adapter = it87_attach_adapter,
250 .detach_client = it87_detach_client,
254 static ssize_t show_in(struct device *dev, struct device_attribute *attr,
255 char *buf)
257 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
258 int nr = sensor_attr->index;
260 struct it87_data *data = it87_update_device(dev);
261 return sprintf(buf, "%d\n", IN_FROM_REG(data->in[nr]));
264 static ssize_t show_in_min(struct device *dev, struct device_attribute *attr,
265 char *buf)
267 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
268 int nr = sensor_attr->index;
270 struct it87_data *data = it87_update_device(dev);
271 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_min[nr]));
274 static ssize_t show_in_max(struct device *dev, struct device_attribute *attr,
275 char *buf)
277 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
278 int nr = sensor_attr->index;
280 struct it87_data *data = it87_update_device(dev);
281 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_max[nr]));
284 static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
285 const char *buf, size_t count)
287 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
288 int nr = sensor_attr->index;
290 struct i2c_client *client = to_i2c_client(dev);
291 struct it87_data *data = i2c_get_clientdata(client);
292 unsigned long val = simple_strtoul(buf, NULL, 10);
294 down(&data->update_lock);
295 data->in_min[nr] = IN_TO_REG(val);
296 it87_write_value(client, IT87_REG_VIN_MIN(nr),
297 data->in_min[nr]);
298 up(&data->update_lock);
299 return count;
301 static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
302 const char *buf, size_t count)
304 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
305 int nr = sensor_attr->index;
307 struct i2c_client *client = to_i2c_client(dev);
308 struct it87_data *data = i2c_get_clientdata(client);
309 unsigned long val = simple_strtoul(buf, NULL, 10);
311 down(&data->update_lock);
312 data->in_max[nr] = IN_TO_REG(val);
313 it87_write_value(client, IT87_REG_VIN_MAX(nr),
314 data->in_max[nr]);
315 up(&data->update_lock);
316 return count;
319 #define show_in_offset(offset) \
320 static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
321 show_in, NULL, offset);
323 #define limit_in_offset(offset) \
324 static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
325 show_in_min, set_in_min, offset); \
326 static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
327 show_in_max, set_in_max, offset);
329 show_in_offset(0);
330 limit_in_offset(0);
331 show_in_offset(1);
332 limit_in_offset(1);
333 show_in_offset(2);
334 limit_in_offset(2);
335 show_in_offset(3);
336 limit_in_offset(3);
337 show_in_offset(4);
338 limit_in_offset(4);
339 show_in_offset(5);
340 limit_in_offset(5);
341 show_in_offset(6);
342 limit_in_offset(6);
343 show_in_offset(7);
344 limit_in_offset(7);
345 show_in_offset(8);
347 /* 3 temperatures */
348 static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
349 char *buf)
351 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
352 int nr = sensor_attr->index;
354 struct it87_data *data = it87_update_device(dev);
355 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr]));
357 static ssize_t show_temp_max(struct device *dev, struct device_attribute *attr,
358 char *buf)
360 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
361 int nr = sensor_attr->index;
363 struct it87_data *data = it87_update_device(dev);
364 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_high[nr]));
366 static ssize_t show_temp_min(struct device *dev, struct device_attribute *attr,
367 char *buf)
369 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
370 int nr = sensor_attr->index;
372 struct it87_data *data = it87_update_device(dev);
373 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_low[nr]));
375 static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
376 const char *buf, size_t count)
378 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
379 int nr = sensor_attr->index;
381 struct i2c_client *client = to_i2c_client(dev);
382 struct it87_data *data = i2c_get_clientdata(client);
383 int val = simple_strtol(buf, NULL, 10);
385 down(&data->update_lock);
386 data->temp_high[nr] = TEMP_TO_REG(val);
387 it87_write_value(client, IT87_REG_TEMP_HIGH(nr), data->temp_high[nr]);
388 up(&data->update_lock);
389 return count;
391 static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,
392 const char *buf, size_t count)
394 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
395 int nr = sensor_attr->index;
397 struct i2c_client *client = to_i2c_client(dev);
398 struct it87_data *data = i2c_get_clientdata(client);
399 int val = simple_strtol(buf, NULL, 10);
401 down(&data->update_lock);
402 data->temp_low[nr] = TEMP_TO_REG(val);
403 it87_write_value(client, IT87_REG_TEMP_LOW(nr), data->temp_low[nr]);
404 up(&data->update_lock);
405 return count;
407 #define show_temp_offset(offset) \
408 static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
409 show_temp, NULL, offset - 1); \
410 static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
411 show_temp_max, set_temp_max, offset - 1); \
412 static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
413 show_temp_min, set_temp_min, offset - 1);
415 show_temp_offset(1);
416 show_temp_offset(2);
417 show_temp_offset(3);
419 static ssize_t show_sensor(struct device *dev, struct device_attribute *attr,
420 char *buf)
422 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
423 int nr = sensor_attr->index;
425 struct it87_data *data = it87_update_device(dev);
426 u8 reg = data->sensor; /* In case the value is updated while we use it */
428 if (reg & (1 << nr))
429 return sprintf(buf, "3\n"); /* thermal diode */
430 if (reg & (8 << nr))
431 return sprintf(buf, "2\n"); /* thermistor */
432 return sprintf(buf, "0\n"); /* disabled */
434 static ssize_t set_sensor(struct device *dev, struct device_attribute *attr,
435 const char *buf, size_t count)
437 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
438 int nr = sensor_attr->index;
440 struct i2c_client *client = to_i2c_client(dev);
441 struct it87_data *data = i2c_get_clientdata(client);
442 int val = simple_strtol(buf, NULL, 10);
444 down(&data->update_lock);
446 data->sensor &= ~(1 << nr);
447 data->sensor &= ~(8 << nr);
448 /* 3 = thermal diode; 2 = thermistor; 0 = disabled */
449 if (val == 3)
450 data->sensor |= 1 << nr;
451 else if (val == 2)
452 data->sensor |= 8 << nr;
453 else if (val != 0) {
454 up(&data->update_lock);
455 return -EINVAL;
457 it87_write_value(client, IT87_REG_TEMP_ENABLE, data->sensor);
458 up(&data->update_lock);
459 return count;
461 #define show_sensor_offset(offset) \
462 static SENSOR_DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, \
463 show_sensor, set_sensor, offset - 1);
465 show_sensor_offset(1);
466 show_sensor_offset(2);
467 show_sensor_offset(3);
469 /* 3 Fans */
470 static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
471 char *buf)
473 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
474 int nr = sensor_attr->index;
476 struct it87_data *data = it87_update_device(dev);
477 return sprintf(buf,"%d\n", FAN_FROM_REG(data->fan[nr],
478 DIV_FROM_REG(data->fan_div[nr])));
480 static ssize_t show_fan_min(struct device *dev, struct device_attribute *attr,
481 char *buf)
483 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
484 int nr = sensor_attr->index;
486 struct it87_data *data = it87_update_device(dev);
487 return sprintf(buf,"%d\n",
488 FAN_FROM_REG(data->fan_min[nr], DIV_FROM_REG(data->fan_div[nr])));
490 static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
491 char *buf)
493 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
494 int nr = sensor_attr->index;
496 struct it87_data *data = it87_update_device(dev);
497 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
499 static ssize_t show_pwm_enable(struct device *dev, struct device_attribute *attr,
500 char *buf)
502 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
503 int nr = sensor_attr->index;
505 struct it87_data *data = it87_update_device(dev);
506 return sprintf(buf,"%d\n", (data->fan_main_ctrl & (1 << nr)) ? 1 : 0);
508 static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
509 char *buf)
511 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
512 int nr = sensor_attr->index;
514 struct it87_data *data = it87_update_device(dev);
515 return sprintf(buf,"%d\n", data->manual_pwm_ctl[nr]);
517 static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
518 const char *buf, size_t count)
520 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
521 int nr = sensor_attr->index;
523 struct i2c_client *client = to_i2c_client(dev);
524 struct it87_data *data = i2c_get_clientdata(client);
525 int val = simple_strtol(buf, NULL, 10);
527 down(&data->update_lock);
528 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
529 it87_write_value(client, IT87_REG_FAN_MIN(nr), data->fan_min[nr]);
530 up(&data->update_lock);
531 return count;
533 static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
534 const char *buf, size_t count)
536 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
537 int nr = sensor_attr->index;
539 struct i2c_client *client = to_i2c_client(dev);
540 struct it87_data *data = i2c_get_clientdata(client);
541 int val = simple_strtol(buf, NULL, 10);
542 int i, min[3];
543 u8 old;
545 down(&data->update_lock);
546 old = it87_read_value(client, IT87_REG_FAN_DIV);
548 for (i = 0; i < 3; i++)
549 min[i] = FAN_FROM_REG(data->fan_min[i], DIV_FROM_REG(data->fan_div[i]));
551 switch (nr) {
552 case 0:
553 case 1:
554 data->fan_div[nr] = DIV_TO_REG(val);
555 break;
556 case 2:
557 if (val < 8)
558 data->fan_div[nr] = 1;
559 else
560 data->fan_div[nr] = 3;
562 val = old & 0x80;
563 val |= (data->fan_div[0] & 0x07);
564 val |= (data->fan_div[1] & 0x07) << 3;
565 if (data->fan_div[2] == 3)
566 val |= 0x1 << 6;
567 it87_write_value(client, IT87_REG_FAN_DIV, val);
569 for (i = 0; i < 3; i++) {
570 data->fan_min[i]=FAN_TO_REG(min[i], DIV_FROM_REG(data->fan_div[i]));
571 it87_write_value(client, IT87_REG_FAN_MIN(i), data->fan_min[i]);
573 up(&data->update_lock);
574 return count;
576 static ssize_t set_pwm_enable(struct device *dev,
577 struct device_attribute *attr, const char *buf, size_t count)
579 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
580 int nr = sensor_attr->index;
582 struct i2c_client *client = to_i2c_client(dev);
583 struct it87_data *data = i2c_get_clientdata(client);
584 int val = simple_strtol(buf, NULL, 10);
586 down(&data->update_lock);
588 if (val == 0) {
589 int tmp;
590 /* make sure the fan is on when in on/off mode */
591 tmp = it87_read_value(client, IT87_REG_FAN_CTL);
592 it87_write_value(client, IT87_REG_FAN_CTL, tmp | (1 << nr));
593 /* set on/off mode */
594 data->fan_main_ctrl &= ~(1 << nr);
595 it87_write_value(client, IT87_REG_FAN_MAIN_CTRL, data->fan_main_ctrl);
596 } else if (val == 1) {
597 /* set SmartGuardian mode */
598 data->fan_main_ctrl |= (1 << nr);
599 it87_write_value(client, IT87_REG_FAN_MAIN_CTRL, data->fan_main_ctrl);
600 /* set saved pwm value, clear FAN_CTLX PWM mode bit */
601 it87_write_value(client, IT87_REG_PWM(nr), PWM_TO_REG(data->manual_pwm_ctl[nr]));
602 } else {
603 up(&data->update_lock);
604 return -EINVAL;
607 up(&data->update_lock);
608 return count;
610 static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
611 const char *buf, size_t count)
613 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
614 int nr = sensor_attr->index;
616 struct i2c_client *client = to_i2c_client(dev);
617 struct it87_data *data = i2c_get_clientdata(client);
618 int val = simple_strtol(buf, NULL, 10);
620 if (val < 0 || val > 255)
621 return -EINVAL;
623 down(&data->update_lock);
624 data->manual_pwm_ctl[nr] = val;
625 if (data->fan_main_ctrl & (1 << nr))
626 it87_write_value(client, IT87_REG_PWM(nr), PWM_TO_REG(data->manual_pwm_ctl[nr]));
627 up(&data->update_lock);
628 return count;
631 #define show_fan_offset(offset) \
632 static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
633 show_fan, NULL, offset - 1); \
634 static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
635 show_fan_min, set_fan_min, offset - 1); \
636 static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
637 show_fan_div, set_fan_div, offset - 1);
639 show_fan_offset(1);
640 show_fan_offset(2);
641 show_fan_offset(3);
643 #define show_pwm_offset(offset) \
644 static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
645 show_pwm_enable, set_pwm_enable, offset - 1); \
646 static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
647 show_pwm, set_pwm, offset - 1);
649 show_pwm_offset(1);
650 show_pwm_offset(2);
651 show_pwm_offset(3);
653 /* Alarms */
654 static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
656 struct it87_data *data = it87_update_device(dev);
657 return sprintf(buf, "%u\n", data->alarms);
659 static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
661 static ssize_t
662 show_vrm_reg(struct device *dev, struct device_attribute *attr, char *buf)
664 struct it87_data *data = it87_update_device(dev);
665 return sprintf(buf, "%ld\n", (long) data->vrm);
667 static ssize_t
668 store_vrm_reg(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
670 struct i2c_client *client = to_i2c_client(dev);
671 struct it87_data *data = i2c_get_clientdata(client);
672 u32 val;
674 val = simple_strtoul(buf, NULL, 10);
675 data->vrm = val;
677 return count;
679 static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
680 #define device_create_file_vrm(client) \
681 device_create_file(&client->dev, &dev_attr_vrm)
683 static ssize_t
684 show_vid_reg(struct device *dev, struct device_attribute *attr, char *buf)
686 struct it87_data *data = it87_update_device(dev);
687 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
689 static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
690 #define device_create_file_vid(client) \
691 device_create_file(&client->dev, &dev_attr_cpu0_vid)
693 /* This function is called when:
694 * it87_driver is inserted (when this module is loaded), for each
695 available adapter
696 * when a new adapter is inserted (and it87_driver is still present) */
697 static int it87_attach_adapter(struct i2c_adapter *adapter)
699 if (!(adapter->class & I2C_CLASS_HWMON))
700 return 0;
701 return i2c_detect(adapter, &addr_data, it87_detect);
704 /* SuperIO detection - will change normal_isa[0] if a chip is found */
705 static int it87_find(int *address)
707 int err = -ENODEV;
709 superio_enter();
710 chip_type = superio_inw(DEVID);
711 if (chip_type != IT8712F_DEVID
712 && chip_type != IT8705F_DEVID)
713 goto exit;
715 superio_select();
716 if (!(superio_inb(IT87_ACT_REG) & 0x01)) {
717 pr_info("it87: Device not activated, skipping\n");
718 goto exit;
721 *address = superio_inw(IT87_BASE_REG) & ~(IT87_EXTENT - 1);
722 if (*address == 0) {
723 pr_info("it87: Base address not set, skipping\n");
724 goto exit;
727 err = 0;
728 pr_info("it87: Found IT%04xF chip at 0x%x, revision %d\n",
729 chip_type, *address, superio_inb(DEVREV) & 0x0f);
731 exit:
732 superio_exit();
733 return err;
736 /* This function is called by i2c_detect */
737 int it87_detect(struct i2c_adapter *adapter, int address, int kind)
739 int i;
740 struct i2c_client *new_client;
741 struct it87_data *data;
742 int err = 0;
743 const char *name = "";
744 int is_isa = i2c_is_isa_adapter(adapter);
745 int enable_pwm_interface;
747 if (!is_isa &&
748 !i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
749 goto ERROR0;
751 /* Reserve the ISA region */
752 if (is_isa)
753 if (!request_region(address, IT87_EXTENT, it87_isa_driver.name))
754 goto ERROR0;
756 /* Probe whether there is anything available on this address. Already
757 done for SMBus and Super-I/O clients */
758 if (kind < 0) {
759 if (is_isa && !chip_type) {
760 #define REALLY_SLOW_IO
761 /* We need the timeouts for at least some IT87-like chips. But only
762 if we read 'undefined' registers. */
763 i = inb_p(address + 1);
764 if (inb_p(address + 2) != i
765 || inb_p(address + 3) != i
766 || inb_p(address + 7) != i) {
767 err = -ENODEV;
768 goto ERROR1;
770 #undef REALLY_SLOW_IO
772 /* Let's just hope nothing breaks here */
773 i = inb_p(address + 5) & 0x7f;
774 outb_p(~i & 0x7f, address + 5);
775 if ((inb_p(address + 5) & 0x7f) != (~i & 0x7f)) {
776 outb_p(i, address + 5);
777 err = -ENODEV;
778 goto ERROR1;
783 /* OK. For now, we presume we have a valid client. We now create the
784 client structure, even though we cannot fill it completely yet.
785 But it allows us to access it87_{read,write}_value. */
787 if (!(data = kmalloc(sizeof(struct it87_data), GFP_KERNEL))) {
788 err = -ENOMEM;
789 goto ERROR1;
791 memset(data, 0, sizeof(struct it87_data));
793 new_client = &data->client;
794 if (is_isa)
795 init_MUTEX(&data->lock);
796 i2c_set_clientdata(new_client, data);
797 new_client->addr = address;
798 new_client->adapter = adapter;
799 new_client->driver = is_isa ? &it87_isa_driver : &it87_driver;
800 new_client->flags = 0;
802 /* Now, we do the remaining detection. */
804 if (kind < 0) {
805 if ((it87_read_value(new_client, IT87_REG_CONFIG) & 0x80)
806 || (!is_isa
807 && it87_read_value(new_client, IT87_REG_I2C_ADDR) != address)) {
808 err = -ENODEV;
809 goto ERROR2;
813 /* Determine the chip type. */
814 if (kind <= 0) {
815 i = it87_read_value(new_client, IT87_REG_CHIPID);
816 if (i == 0x90) {
817 kind = it87;
818 if ((is_isa) && (chip_type == IT8712F_DEVID))
819 kind = it8712;
821 else {
822 if (kind == 0)
823 dev_info(&adapter->dev,
824 "Ignoring 'force' parameter for unknown chip at "
825 "adapter %d, address 0x%02x\n",
826 i2c_adapter_id(adapter), address);
827 err = -ENODEV;
828 goto ERROR2;
832 if (kind == it87) {
833 name = "it87";
834 } else if (kind == it8712) {
835 name = "it8712";
838 /* Fill in the remaining client fields and put it into the global list */
839 strlcpy(new_client->name, name, I2C_NAME_SIZE);
840 data->type = kind;
841 data->valid = 0;
842 init_MUTEX(&data->update_lock);
844 /* Tell the I2C layer a new client has arrived */
845 if ((err = i2c_attach_client(new_client)))
846 goto ERROR2;
848 /* Check PWM configuration */
849 enable_pwm_interface = it87_check_pwm(new_client);
851 /* Initialize the IT87 chip */
852 it87_init_client(new_client, data);
854 /* Register sysfs hooks */
855 data->class_dev = hwmon_device_register(&new_client->dev);
856 if (IS_ERR(data->class_dev)) {
857 err = PTR_ERR(data->class_dev);
858 goto ERROR3;
861 device_create_file(&new_client->dev, &sensor_dev_attr_in0_input.dev_attr);
862 device_create_file(&new_client->dev, &sensor_dev_attr_in1_input.dev_attr);
863 device_create_file(&new_client->dev, &sensor_dev_attr_in2_input.dev_attr);
864 device_create_file(&new_client->dev, &sensor_dev_attr_in3_input.dev_attr);
865 device_create_file(&new_client->dev, &sensor_dev_attr_in4_input.dev_attr);
866 device_create_file(&new_client->dev, &sensor_dev_attr_in5_input.dev_attr);
867 device_create_file(&new_client->dev, &sensor_dev_attr_in6_input.dev_attr);
868 device_create_file(&new_client->dev, &sensor_dev_attr_in7_input.dev_attr);
869 device_create_file(&new_client->dev, &sensor_dev_attr_in8_input.dev_attr);
870 device_create_file(&new_client->dev, &sensor_dev_attr_in0_min.dev_attr);
871 device_create_file(&new_client->dev, &sensor_dev_attr_in1_min.dev_attr);
872 device_create_file(&new_client->dev, &sensor_dev_attr_in2_min.dev_attr);
873 device_create_file(&new_client->dev, &sensor_dev_attr_in3_min.dev_attr);
874 device_create_file(&new_client->dev, &sensor_dev_attr_in4_min.dev_attr);
875 device_create_file(&new_client->dev, &sensor_dev_attr_in5_min.dev_attr);
876 device_create_file(&new_client->dev, &sensor_dev_attr_in6_min.dev_attr);
877 device_create_file(&new_client->dev, &sensor_dev_attr_in7_min.dev_attr);
878 device_create_file(&new_client->dev, &sensor_dev_attr_in0_max.dev_attr);
879 device_create_file(&new_client->dev, &sensor_dev_attr_in1_max.dev_attr);
880 device_create_file(&new_client->dev, &sensor_dev_attr_in2_max.dev_attr);
881 device_create_file(&new_client->dev, &sensor_dev_attr_in3_max.dev_attr);
882 device_create_file(&new_client->dev, &sensor_dev_attr_in4_max.dev_attr);
883 device_create_file(&new_client->dev, &sensor_dev_attr_in5_max.dev_attr);
884 device_create_file(&new_client->dev, &sensor_dev_attr_in6_max.dev_attr);
885 device_create_file(&new_client->dev, &sensor_dev_attr_in7_max.dev_attr);
886 device_create_file(&new_client->dev, &sensor_dev_attr_temp1_input.dev_attr);
887 device_create_file(&new_client->dev, &sensor_dev_attr_temp2_input.dev_attr);
888 device_create_file(&new_client->dev, &sensor_dev_attr_temp3_input.dev_attr);
889 device_create_file(&new_client->dev, &sensor_dev_attr_temp1_max.dev_attr);
890 device_create_file(&new_client->dev, &sensor_dev_attr_temp2_max.dev_attr);
891 device_create_file(&new_client->dev, &sensor_dev_attr_temp3_max.dev_attr);
892 device_create_file(&new_client->dev, &sensor_dev_attr_temp1_min.dev_attr);
893 device_create_file(&new_client->dev, &sensor_dev_attr_temp2_min.dev_attr);
894 device_create_file(&new_client->dev, &sensor_dev_attr_temp3_min.dev_attr);
895 device_create_file(&new_client->dev, &sensor_dev_attr_temp1_type.dev_attr);
896 device_create_file(&new_client->dev, &sensor_dev_attr_temp2_type.dev_attr);
897 device_create_file(&new_client->dev, &sensor_dev_attr_temp3_type.dev_attr);
898 device_create_file(&new_client->dev, &sensor_dev_attr_fan1_input.dev_attr);
899 device_create_file(&new_client->dev, &sensor_dev_attr_fan2_input.dev_attr);
900 device_create_file(&new_client->dev, &sensor_dev_attr_fan3_input.dev_attr);
901 device_create_file(&new_client->dev, &sensor_dev_attr_fan1_min.dev_attr);
902 device_create_file(&new_client->dev, &sensor_dev_attr_fan2_min.dev_attr);
903 device_create_file(&new_client->dev, &sensor_dev_attr_fan3_min.dev_attr);
904 device_create_file(&new_client->dev, &sensor_dev_attr_fan1_div.dev_attr);
905 device_create_file(&new_client->dev, &sensor_dev_attr_fan2_div.dev_attr);
906 device_create_file(&new_client->dev, &sensor_dev_attr_fan3_div.dev_attr);
907 device_create_file(&new_client->dev, &dev_attr_alarms);
908 if (enable_pwm_interface) {
909 device_create_file(&new_client->dev, &sensor_dev_attr_pwm1_enable.dev_attr);
910 device_create_file(&new_client->dev, &sensor_dev_attr_pwm2_enable.dev_attr);
911 device_create_file(&new_client->dev, &sensor_dev_attr_pwm3_enable.dev_attr);
912 device_create_file(&new_client->dev, &sensor_dev_attr_pwm1.dev_attr);
913 device_create_file(&new_client->dev, &sensor_dev_attr_pwm2.dev_attr);
914 device_create_file(&new_client->dev, &sensor_dev_attr_pwm3.dev_attr);
917 if (data->type == it8712) {
918 data->vrm = i2c_which_vrm();
919 device_create_file_vrm(new_client);
920 device_create_file_vid(new_client);
923 return 0;
925 ERROR3:
926 i2c_detach_client(new_client);
927 ERROR2:
928 kfree(data);
929 ERROR1:
930 if (is_isa)
931 release_region(address, IT87_EXTENT);
932 ERROR0:
933 return err;
936 static int it87_detach_client(struct i2c_client *client)
938 struct it87_data *data = i2c_get_clientdata(client);
939 int err;
941 hwmon_device_unregister(data->class_dev);
943 if ((err = i2c_detach_client(client))) {
944 dev_err(&client->dev,
945 "Client deregistration failed, client not detached.\n");
946 return err;
949 if(i2c_is_isa_client(client))
950 release_region(client->addr, IT87_EXTENT);
951 kfree(data);
953 return 0;
956 /* The SMBus locks itself, but ISA access must be locked explicitly!
957 We don't want to lock the whole ISA bus, so we lock each client
958 separately.
959 We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
960 would slow down the IT87 access and should not be necessary. */
961 static int it87_read_value(struct i2c_client *client, u8 reg)
963 struct it87_data *data = i2c_get_clientdata(client);
965 int res;
966 if (i2c_is_isa_client(client)) {
967 down(&data->lock);
968 outb_p(reg, client->addr + IT87_ADDR_REG_OFFSET);
969 res = inb_p(client->addr + IT87_DATA_REG_OFFSET);
970 up(&data->lock);
971 return res;
972 } else
973 return i2c_smbus_read_byte_data(client, reg);
976 /* The SMBus locks itself, but ISA access muse be locked explicitly!
977 We don't want to lock the whole ISA bus, so we lock each client
978 separately.
979 We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
980 would slow down the IT87 access and should not be necessary. */
981 static int it87_write_value(struct i2c_client *client, u8 reg, u8 value)
983 struct it87_data *data = i2c_get_clientdata(client);
985 if (i2c_is_isa_client(client)) {
986 down(&data->lock);
987 outb_p(reg, client->addr + IT87_ADDR_REG_OFFSET);
988 outb_p(value, client->addr + IT87_DATA_REG_OFFSET);
989 up(&data->lock);
990 return 0;
991 } else
992 return i2c_smbus_write_byte_data(client, reg, value);
995 /* Return 1 if and only if the PWM interface is safe to use */
996 static int it87_check_pwm(struct i2c_client *client)
998 /* Some BIOSes fail to correctly configure the IT87 fans. All fans off
999 * and polarity set to active low is sign that this is the case so we
1000 * disable pwm control to protect the user. */
1001 int tmp = it87_read_value(client, IT87_REG_FAN_CTL);
1002 if ((tmp & 0x87) == 0) {
1003 if (fix_pwm_polarity) {
1004 /* The user asks us to attempt a chip reconfiguration.
1005 * This means switching to active high polarity and
1006 * inverting all fan speed values. */
1007 int i;
1008 u8 pwm[3];
1010 for (i = 0; i < 3; i++)
1011 pwm[i] = it87_read_value(client,
1012 IT87_REG_PWM(i));
1014 /* If any fan is in automatic pwm mode, the polarity
1015 * might be correct, as suspicious as it seems, so we
1016 * better don't change anything (but still disable the
1017 * PWM interface). */
1018 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
1019 dev_info(&client->dev, "Reconfiguring PWM to "
1020 "active high polarity\n");
1021 it87_write_value(client, IT87_REG_FAN_CTL,
1022 tmp | 0x87);
1023 for (i = 0; i < 3; i++)
1024 it87_write_value(client,
1025 IT87_REG_PWM(i),
1026 0x7f & ~pwm[i]);
1027 return 1;
1030 dev_info(&client->dev, "PWM configuration is "
1031 "too broken to be fixed\n");
1034 dev_info(&client->dev, "Detected broken BIOS "
1035 "defaults, disabling PWM interface\n");
1036 return 0;
1037 } else if (fix_pwm_polarity) {
1038 dev_info(&client->dev, "PWM configuration looks "
1039 "sane, won't touch\n");
1042 return 1;
1045 /* Called when we have found a new IT87. */
1046 static void it87_init_client(struct i2c_client *client, struct it87_data *data)
1048 int tmp, i;
1050 /* initialize to sane defaults:
1051 * - if the chip is in manual pwm mode, this will be overwritten with
1052 * the actual settings on the chip (so in this case, initialization
1053 * is not needed)
1054 * - if in automatic or on/off mode, we could switch to manual mode,
1055 * read the registers and set manual_pwm_ctl accordingly, but currently
1056 * this is not implemented, so we initialize to something sane */
1057 for (i = 0; i < 3; i++) {
1058 data->manual_pwm_ctl[i] = 0xff;
1061 /* Check if temperature channnels are reset manually or by some reason */
1062 tmp = it87_read_value(client, IT87_REG_TEMP_ENABLE);
1063 if ((tmp & 0x3f) == 0) {
1064 /* Temp1,Temp3=thermistor; Temp2=thermal diode */
1065 tmp = (tmp & 0xc0) | 0x2a;
1066 it87_write_value(client, IT87_REG_TEMP_ENABLE, tmp);
1068 data->sensor = tmp;
1070 /* Check if voltage monitors are reset manually or by some reason */
1071 tmp = it87_read_value(client, IT87_REG_VIN_ENABLE);
1072 if ((tmp & 0xff) == 0) {
1073 /* Enable all voltage monitors */
1074 it87_write_value(client, IT87_REG_VIN_ENABLE, 0xff);
1077 /* Check if tachometers are reset manually or by some reason */
1078 data->fan_main_ctrl = it87_read_value(client, IT87_REG_FAN_MAIN_CTRL);
1079 if ((data->fan_main_ctrl & 0x70) == 0) {
1080 /* Enable all fan tachometers */
1081 data->fan_main_ctrl |= 0x70;
1082 it87_write_value(client, IT87_REG_FAN_MAIN_CTRL, data->fan_main_ctrl);
1085 /* Set current fan mode registers and the default settings for the
1086 * other mode registers */
1087 for (i = 0; i < 3; i++) {
1088 if (data->fan_main_ctrl & (1 << i)) {
1089 /* pwm mode */
1090 tmp = it87_read_value(client, IT87_REG_PWM(i));
1091 if (tmp & 0x80) {
1092 /* automatic pwm - not yet implemented, but
1093 * leave the settings made by the BIOS alone
1094 * until a change is requested via the sysfs
1095 * interface */
1096 } else {
1097 /* manual pwm */
1098 data->manual_pwm_ctl[i] = PWM_FROM_REG(tmp);
1103 /* Start monitoring */
1104 it87_write_value(client, IT87_REG_CONFIG,
1105 (it87_read_value(client, IT87_REG_CONFIG) & 0x36)
1106 | (update_vbat ? 0x41 : 0x01));
1109 static struct it87_data *it87_update_device(struct device *dev)
1111 struct i2c_client *client = to_i2c_client(dev);
1112 struct it87_data *data = i2c_get_clientdata(client);
1113 int i;
1115 down(&data->update_lock);
1117 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
1118 || !data->valid) {
1120 if (update_vbat) {
1121 /* Cleared after each update, so reenable. Value
1122 returned by this read will be previous value */
1123 it87_write_value(client, IT87_REG_CONFIG,
1124 it87_read_value(client, IT87_REG_CONFIG) | 0x40);
1126 for (i = 0; i <= 7; i++) {
1127 data->in[i] =
1128 it87_read_value(client, IT87_REG_VIN(i));
1129 data->in_min[i] =
1130 it87_read_value(client, IT87_REG_VIN_MIN(i));
1131 data->in_max[i] =
1132 it87_read_value(client, IT87_REG_VIN_MAX(i));
1134 data->in[8] =
1135 it87_read_value(client, IT87_REG_VIN(8));
1136 /* Temperature sensor doesn't have limit registers, set
1137 to min and max value */
1138 data->in_min[8] = 0;
1139 data->in_max[8] = 255;
1141 for (i = 0; i < 3; i++) {
1142 data->fan[i] =
1143 it87_read_value(client, IT87_REG_FAN(i));
1144 data->fan_min[i] =
1145 it87_read_value(client, IT87_REG_FAN_MIN(i));
1147 for (i = 0; i < 3; i++) {
1148 data->temp[i] =
1149 it87_read_value(client, IT87_REG_TEMP(i));
1150 data->temp_high[i] =
1151 it87_read_value(client, IT87_REG_TEMP_HIGH(i));
1152 data->temp_low[i] =
1153 it87_read_value(client, IT87_REG_TEMP_LOW(i));
1156 i = it87_read_value(client, IT87_REG_FAN_DIV);
1157 data->fan_div[0] = i & 0x07;
1158 data->fan_div[1] = (i >> 3) & 0x07;
1159 data->fan_div[2] = (i & 0x40) ? 3 : 1;
1161 data->alarms =
1162 it87_read_value(client, IT87_REG_ALARM1) |
1163 (it87_read_value(client, IT87_REG_ALARM2) << 8) |
1164 (it87_read_value(client, IT87_REG_ALARM3) << 16);
1165 data->fan_main_ctrl = it87_read_value(client, IT87_REG_FAN_MAIN_CTRL);
1167 data->sensor = it87_read_value(client, IT87_REG_TEMP_ENABLE);
1168 /* The 8705 does not have VID capability */
1169 if (data->type == it8712) {
1170 data->vid = it87_read_value(client, IT87_REG_VID);
1171 data->vid &= 0x1f;
1173 data->last_updated = jiffies;
1174 data->valid = 1;
1177 up(&data->update_lock);
1179 return data;
1182 static int __init sm_it87_init(void)
1184 int addr, res;
1186 if (!it87_find(&addr)) {
1187 normal_isa[0] = addr;
1190 res = i2c_add_driver(&it87_driver);
1191 if (res)
1192 return res;
1194 res = i2c_isa_add_driver(&it87_isa_driver);
1195 if (res) {
1196 i2c_del_driver(&it87_driver);
1197 return res;
1200 return 0;
1203 static void __exit sm_it87_exit(void)
1205 i2c_isa_del_driver(&it87_isa_driver);
1206 i2c_del_driver(&it87_driver);
1210 MODULE_AUTHOR("Chris Gauthron <chrisg@0-in.com>");
1211 MODULE_DESCRIPTION("IT8705F, IT8712F, Sis950 driver");
1212 module_param(update_vbat, bool, 0);
1213 MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
1214 module_param(fix_pwm_polarity, bool, 0);
1215 MODULE_PARM_DESC(fix_pwm_polarity, "Force PWM polarity to active high (DANGEROUS)");
1216 MODULE_LICENSE("GPL");
1218 module_init(sm_it87_init);
1219 module_exit(sm_it87_exit);