2 w83781d.c - Part of lm_sensors, Linux kernel modules for hardware
4 Copyright (c) 1998 - 2001 Frodo Looijaard <frodol@dds.nl>,
5 Philip Edelbrock <phil@netroedge.com>,
6 and Mark Studebaker <mdsxyz123@yahoo.com>
7 Copyright (c) 2007 Jean Delvare <khali@linux-fr.org>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 Supports following chips:
27 Chip #vin #fanin #pwm #temp wchipid vendid i2c ISA
28 as99127f 7 3 0 3 0x31 0x12c3 yes no
29 as99127f rev.2 (type_name = as99127f) 0x31 0x5ca3 yes no
30 w83781d 7 3 0 3 0x10-1 0x5ca3 yes yes
31 w83627hf 9 3 2 3 0x21 0x5ca3 yes yes(LPC)
32 w83782d 9 3 2-4 3 0x30 0x5ca3 yes yes
33 w83783s 5-6 3 2 1-2 0x40 0x5ca3 yes no
37 #include <linux/module.h>
38 #include <linux/init.h>
39 #include <linux/slab.h>
40 #include <linux/jiffies.h>
41 #include <linux/i2c.h>
42 #include <linux/platform_device.h>
43 #include <linux/ioport.h>
44 #include <linux/hwmon.h>
45 #include <linux/hwmon-vid.h>
46 #include <linux/sysfs.h>
47 #include <linux/err.h>
48 #include <linux/mutex.h>
52 /* ISA device, if found */
53 static struct platform_device *pdev;
55 /* Addresses to scan */
56 static unsigned short normal_i2c[] = { 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,
57 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b,
58 0x2c, 0x2d, 0x2e, 0x2f, I2C_CLIENT_END };
59 static unsigned short isa_address = 0x290;
61 /* Insmod parameters */
62 I2C_CLIENT_INSMOD_5(w83781d, w83782d, w83783s, w83627hf, as99127f);
63 I2C_CLIENT_MODULE_PARM(force_subclients, "List of subclient addresses: "
64 "{bus, clientaddr, subclientaddr1, subclientaddr2}");
67 module_param(reset, bool, 0);
68 MODULE_PARM_DESC(reset, "Set to one to reset chip on load");
71 module_param(init, bool, 0);
72 MODULE_PARM_DESC(init, "Set to zero to bypass chip initialization");
74 /* Constants specified below */
76 /* Length of ISA address segment */
77 #define W83781D_EXTENT 8
79 /* Where are the ISA address/data registers relative to the base address */
80 #define W83781D_ADDR_REG_OFFSET 5
81 #define W83781D_DATA_REG_OFFSET 6
83 /* The W83781D registers */
84 /* The W83782D registers for nr=7,8 are in bank 5 */
85 #define W83781D_REG_IN_MAX(nr) ((nr < 7) ? (0x2b + (nr) * 2) : \
86 (0x554 + (((nr) - 7) * 2)))
87 #define W83781D_REG_IN_MIN(nr) ((nr < 7) ? (0x2c + (nr) * 2) : \
88 (0x555 + (((nr) - 7) * 2)))
89 #define W83781D_REG_IN(nr) ((nr < 7) ? (0x20 + (nr)) : \
92 #define W83781D_REG_FAN_MIN(nr) (0x3a + (nr))
93 #define W83781D_REG_FAN(nr) (0x27 + (nr))
95 #define W83781D_REG_BANK 0x4E
96 #define W83781D_REG_TEMP2_CONFIG 0x152
97 #define W83781D_REG_TEMP3_CONFIG 0x252
98 #define W83781D_REG_TEMP(nr) ((nr == 3) ? (0x0250) : \
99 ((nr == 2) ? (0x0150) : \
101 #define W83781D_REG_TEMP_HYST(nr) ((nr == 3) ? (0x253) : \
102 ((nr == 2) ? (0x153) : \
104 #define W83781D_REG_TEMP_OVER(nr) ((nr == 3) ? (0x255) : \
105 ((nr == 2) ? (0x155) : \
108 #define W83781D_REG_CONFIG 0x40
110 /* Interrupt status (W83781D, AS99127F) */
111 #define W83781D_REG_ALARM1 0x41
112 #define W83781D_REG_ALARM2 0x42
114 /* Real-time status (W83782D, W83783S, W83627HF) */
115 #define W83782D_REG_ALARM1 0x459
116 #define W83782D_REG_ALARM2 0x45A
117 #define W83782D_REG_ALARM3 0x45B
119 #define W83781D_REG_BEEP_CONFIG 0x4D
120 #define W83781D_REG_BEEP_INTS1 0x56
121 #define W83781D_REG_BEEP_INTS2 0x57
122 #define W83781D_REG_BEEP_INTS3 0x453 /* not on W83781D */
124 #define W83781D_REG_VID_FANDIV 0x47
126 #define W83781D_REG_CHIPID 0x49
127 #define W83781D_REG_WCHIPID 0x58
128 #define W83781D_REG_CHIPMAN 0x4F
129 #define W83781D_REG_PIN 0x4B
132 #define W83781D_REG_VBAT 0x5D
134 /* PWM 782D (1-4) and 783S (1-2) only */
135 #define W83781D_REG_PWM1 0x5B /* 782d and 783s/627hf datasheets disagree */
136 /* on which is which; */
137 #define W83781D_REG_PWM2 0x5A /* We follow the 782d convention here, */
138 /* However 782d is probably wrong. */
139 #define W83781D_REG_PWM3 0x5E
140 #define W83781D_REG_PWM4 0x5F
141 #define W83781D_REG_PWMCLK12 0x5C
142 #define W83781D_REG_PWMCLK34 0x45C
143 static const u8 regpwm[] = { W83781D_REG_PWM1, W83781D_REG_PWM2,
144 W83781D_REG_PWM3, W83781D_REG_PWM4
147 #define W83781D_REG_PWM(nr) (regpwm[(nr) - 1])
149 #define W83781D_REG_I2C_ADDR 0x48
150 #define W83781D_REG_I2C_SUBADDR 0x4A
152 /* The following are undocumented in the data sheets however we
153 received the information in an email from Winbond tech support */
154 /* Sensor selection - not on 781d */
155 #define W83781D_REG_SCFG1 0x5D
156 static const u8 BIT_SCFG1[] = { 0x02, 0x04, 0x08 };
158 #define W83781D_REG_SCFG2 0x59
159 static const u8 BIT_SCFG2[] = { 0x10, 0x20, 0x40 };
161 #define W83781D_DEFAULT_BETA 3435
163 /* RT Table registers */
164 #define W83781D_REG_RT_IDX 0x50
165 #define W83781D_REG_RT_VAL 0x51
168 #define IN_TO_REG(val) SENSORS_LIMIT(((val) + 8) / 16, 0, 255)
169 #define IN_FROM_REG(val) ((val) * 16)
172 FAN_TO_REG(long rpm, int div)
176 rpm = SENSORS_LIMIT(rpm, 1, 1000000);
177 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
181 FAN_FROM_REG(u8 val, int div)
187 return 1350000 / (val * div);
190 #define TEMP_TO_REG(val) SENSORS_LIMIT((val) / 1000, -127, 128)
191 #define TEMP_FROM_REG(val) ((val) * 1000)
193 #define BEEP_MASK_FROM_REG(val,type) ((type) == as99127f ? \
194 (val) ^ 0x7fff : (val))
195 #define BEEP_MASK_TO_REG(val,type) ((type) == as99127f ? \
196 (~(val)) & 0x7fff : (val) & 0xffffff)
198 #define DIV_FROM_REG(val) (1 << (val))
201 DIV_TO_REG(long val, enum chips type)
204 val = SENSORS_LIMIT(val, 1,
206 || type == as99127f) ? 8 : 128)) >> 1;
207 for (i = 0; i < 7; i++) {
215 /* There are some complications in a module like this. First off, W83781D chips
216 may be both present on the SMBus and the ISA bus, and we have to handle
217 those cases separately at some places. Second, there might be several
218 W83781D chips available (well, actually, that is probably never done; but
219 it is a clean illustration of how to handle a case like that). Finally,
220 a specific chip may be attached to *both* ISA and SMBus, and we would
221 not like to detect it double. Fortunately, in the case of the W83781D at
222 least, a register tells us what SMBus address we are on, so that helps
223 a bit - except if there could be more than one SMBus. Groan. No solution
226 /* For ISA chips, we abuse the i2c_client addr and name fields. We also use
227 the driver field to differentiate between I2C and ISA chips. */
228 struct w83781d_data {
229 struct i2c_client client;
230 struct class_device *class_dev;
234 struct mutex update_lock;
235 char valid; /* !=0 if following fields are valid */
236 unsigned long last_updated; /* In jiffies */
238 struct i2c_client *lm75[2]; /* for secondary I2C addresses */
239 /* array of 2 pointers to subclients */
241 u8 in[9]; /* Register value - 8 & 9 for 782D only */
242 u8 in_max[9]; /* Register value - 8 & 9 for 782D only */
243 u8 in_min[9]; /* Register value - 8 & 9 for 782D only */
244 u8 fan[3]; /* Register value */
245 u8 fan_min[3]; /* Register value */
246 s8 temp; /* Register value */
247 s8 temp_max; /* Register value */
248 s8 temp_max_hyst; /* Register value */
249 u16 temp_add[2]; /* Register value */
250 u16 temp_max_add[2]; /* Register value */
251 u16 temp_max_hyst_add[2]; /* Register value */
252 u8 fan_div[3]; /* Register encoding, shifted right */
253 u8 vid; /* Register encoding, combined */
254 u32 alarms; /* Register encoding, combined */
255 u32 beep_mask; /* Register encoding, combined */
256 u8 beep_enable; /* Boolean */
257 u8 pwm[4]; /* Register value */
258 u8 pwmenable[4]; /* Boolean */
259 u16 sens[3]; /* 782D/783S only.
260 1 = pentium diode; 2 = 3904 diode;
261 3000-5000 = thermistor beta.
263 Other Betas unimplemented */
267 static int w83781d_attach_adapter(struct i2c_adapter *adapter);
268 static int w83781d_detect(struct i2c_adapter *adapter, int address, int kind);
269 static int w83781d_detach_client(struct i2c_client *client);
271 static int __devinit w83781d_isa_probe(struct platform_device *pdev);
272 static int __devexit w83781d_isa_remove(struct platform_device *pdev);
274 static int w83781d_read_value(struct i2c_client *client, u16 reg);
275 static int w83781d_write_value(struct i2c_client *client, u16 reg, u16 value);
276 static struct w83781d_data *w83781d_update_device(struct device *dev);
277 static void w83781d_init_device(struct device *dev);
279 static struct i2c_driver w83781d_driver = {
283 .id = I2C_DRIVERID_W83781D,
284 .attach_adapter = w83781d_attach_adapter,
285 .detach_client = w83781d_detach_client,
288 static struct platform_driver w83781d_isa_driver = {
290 .owner = THIS_MODULE,
293 .probe = w83781d_isa_probe,
294 .remove = w83781d_isa_remove,
298 /* following are the sysfs callback functions */
299 #define show_in_reg(reg) \
300 static ssize_t show_##reg (struct device *dev, char *buf, int nr) \
302 struct w83781d_data *data = w83781d_update_device(dev); \
303 return sprintf(buf, "%ld\n", (long)IN_FROM_REG(data->reg[nr])); \
309 #define store_in_reg(REG, reg) \
310 static ssize_t store_in_##reg (struct device *dev, const char *buf, size_t count, int nr) \
312 struct w83781d_data *data = dev_get_drvdata(dev); \
313 struct i2c_client *client = &data->client; \
316 val = simple_strtoul(buf, NULL, 10); \
318 mutex_lock(&data->update_lock); \
319 data->in_##reg[nr] = IN_TO_REG(val); \
320 w83781d_write_value(client, W83781D_REG_IN_##REG(nr), data->in_##reg[nr]); \
322 mutex_unlock(&data->update_lock); \
325 store_in_reg(MIN, min);
326 store_in_reg(MAX, max);
328 #define sysfs_in_offset(offset) \
330 show_regs_in_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
332 return show_in(dev, buf, offset); \
334 static DEVICE_ATTR(in##offset##_input, S_IRUGO, show_regs_in_##offset, NULL);
336 #define sysfs_in_reg_offset(reg, offset) \
337 static ssize_t show_regs_in_##reg##offset (struct device *dev, struct device_attribute *attr, char *buf) \
339 return show_in_##reg (dev, buf, offset); \
341 static ssize_t store_regs_in_##reg##offset (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
343 return store_in_##reg (dev, buf, count, offset); \
345 static DEVICE_ATTR(in##offset##_##reg, S_IRUGO| S_IWUSR, show_regs_in_##reg##offset, store_regs_in_##reg##offset);
347 #define sysfs_in_offsets(offset) \
348 sysfs_in_offset(offset); \
349 sysfs_in_reg_offset(min, offset); \
350 sysfs_in_reg_offset(max, offset);
362 #define show_fan_reg(reg) \
363 static ssize_t show_##reg (struct device *dev, char *buf, int nr) \
365 struct w83781d_data *data = w83781d_update_device(dev); \
366 return sprintf(buf,"%ld\n", \
367 FAN_FROM_REG(data->reg[nr-1], (long)DIV_FROM_REG(data->fan_div[nr-1]))); \
370 show_fan_reg(fan_min);
373 store_fan_min(struct device *dev, const char *buf, size_t count, int nr)
375 struct w83781d_data *data = dev_get_drvdata(dev);
376 struct i2c_client *client = &data->client;
379 val = simple_strtoul(buf, NULL, 10);
381 mutex_lock(&data->update_lock);
382 data->fan_min[nr - 1] =
383 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr - 1]));
384 w83781d_write_value(client, W83781D_REG_FAN_MIN(nr),
385 data->fan_min[nr - 1]);
387 mutex_unlock(&data->update_lock);
391 #define sysfs_fan_offset(offset) \
392 static ssize_t show_regs_fan_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
394 return show_fan(dev, buf, offset); \
396 static DEVICE_ATTR(fan##offset##_input, S_IRUGO, show_regs_fan_##offset, NULL);
398 #define sysfs_fan_min_offset(offset) \
399 static ssize_t show_regs_fan_min##offset (struct device *dev, struct device_attribute *attr, char *buf) \
401 return show_fan_min(dev, buf, offset); \
403 static ssize_t store_regs_fan_min##offset (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
405 return store_fan_min(dev, buf, count, offset); \
407 static DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, show_regs_fan_min##offset, store_regs_fan_min##offset);
410 sysfs_fan_min_offset(1);
412 sysfs_fan_min_offset(2);
414 sysfs_fan_min_offset(3);
416 #define show_temp_reg(reg) \
417 static ssize_t show_##reg (struct device *dev, char *buf, int nr) \
419 struct w83781d_data *data = w83781d_update_device(dev); \
420 if (nr >= 2) { /* TEMP2 and TEMP3 */ \
421 return sprintf(buf,"%d\n", \
422 LM75_TEMP_FROM_REG(data->reg##_add[nr-2])); \
423 } else { /* TEMP1 */ \
424 return sprintf(buf,"%ld\n", (long)TEMP_FROM_REG(data->reg)); \
428 show_temp_reg(temp_max);
429 show_temp_reg(temp_max_hyst);
431 #define store_temp_reg(REG, reg) \
432 static ssize_t store_temp_##reg (struct device *dev, const char *buf, size_t count, int nr) \
434 struct w83781d_data *data = dev_get_drvdata(dev); \
435 struct i2c_client *client = &data->client; \
438 val = simple_strtol(buf, NULL, 10); \
440 mutex_lock(&data->update_lock); \
442 if (nr >= 2) { /* TEMP2 and TEMP3 */ \
443 data->temp_##reg##_add[nr-2] = LM75_TEMP_TO_REG(val); \
444 w83781d_write_value(client, W83781D_REG_TEMP_##REG(nr), \
445 data->temp_##reg##_add[nr-2]); \
446 } else { /* TEMP1 */ \
447 data->temp_##reg = TEMP_TO_REG(val); \
448 w83781d_write_value(client, W83781D_REG_TEMP_##REG(nr), \
452 mutex_unlock(&data->update_lock); \
455 store_temp_reg(OVER, max);
456 store_temp_reg(HYST, max_hyst);
458 #define sysfs_temp_offset(offset) \
460 show_regs_temp_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
462 return show_temp(dev, buf, offset); \
464 static DEVICE_ATTR(temp##offset##_input, S_IRUGO, show_regs_temp_##offset, NULL);
466 #define sysfs_temp_reg_offset(reg, offset) \
467 static ssize_t show_regs_temp_##reg##offset (struct device *dev, struct device_attribute *attr, char *buf) \
469 return show_temp_##reg (dev, buf, offset); \
471 static ssize_t store_regs_temp_##reg##offset (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
473 return store_temp_##reg (dev, buf, count, offset); \
475 static DEVICE_ATTR(temp##offset##_##reg, S_IRUGO| S_IWUSR, show_regs_temp_##reg##offset, store_regs_temp_##reg##offset);
477 #define sysfs_temp_offsets(offset) \
478 sysfs_temp_offset(offset); \
479 sysfs_temp_reg_offset(max, offset); \
480 sysfs_temp_reg_offset(max_hyst, offset);
482 sysfs_temp_offsets(1);
483 sysfs_temp_offsets(2);
484 sysfs_temp_offsets(3);
487 show_vid_reg(struct device *dev, struct device_attribute *attr, char *buf)
489 struct w83781d_data *data = w83781d_update_device(dev);
490 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
493 static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
496 show_vrm_reg(struct device *dev, struct device_attribute *attr, char *buf)
498 struct w83781d_data *data = w83781d_update_device(dev);
499 return sprintf(buf, "%ld\n", (long) data->vrm);
503 store_vrm_reg(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
505 struct w83781d_data *data = dev_get_drvdata(dev);
508 val = simple_strtoul(buf, NULL, 10);
514 static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
517 show_alarms_reg(struct device *dev, struct device_attribute *attr, char *buf)
519 struct w83781d_data *data = w83781d_update_device(dev);
520 return sprintf(buf, "%u\n", data->alarms);
523 static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL);
525 static ssize_t show_beep_mask (struct device *dev, struct device_attribute *attr, char *buf)
527 struct w83781d_data *data = w83781d_update_device(dev);
528 return sprintf(buf, "%ld\n",
529 (long)BEEP_MASK_FROM_REG(data->beep_mask, data->type));
531 static ssize_t show_beep_enable (struct device *dev, struct device_attribute *attr, char *buf)
533 struct w83781d_data *data = w83781d_update_device(dev);
534 return sprintf(buf, "%ld\n", (long)data->beep_enable);
537 #define BEEP_ENABLE 0 /* Store beep_enable */
538 #define BEEP_MASK 1 /* Store beep_mask */
541 store_beep_reg(struct device *dev, const char *buf, size_t count,
544 struct w83781d_data *data = dev_get_drvdata(dev);
545 struct i2c_client *client = &data->client;
548 val = simple_strtoul(buf, NULL, 10);
550 mutex_lock(&data->update_lock);
552 if (update_mask == BEEP_MASK) { /* We are storing beep_mask */
553 data->beep_mask = BEEP_MASK_TO_REG(val, data->type);
554 w83781d_write_value(client, W83781D_REG_BEEP_INTS1,
555 data->beep_mask & 0xff);
557 if ((data->type != w83781d) && (data->type != as99127f)) {
558 w83781d_write_value(client, W83781D_REG_BEEP_INTS3,
559 ((data->beep_mask) >> 16) & 0xff);
562 val2 = (data->beep_mask >> 8) & 0x7f;
563 } else { /* We are storing beep_enable */
564 val2 = w83781d_read_value(client, W83781D_REG_BEEP_INTS2) & 0x7f;
565 data->beep_enable = !!val;
568 w83781d_write_value(client, W83781D_REG_BEEP_INTS2,
569 val2 | data->beep_enable << 7);
571 mutex_unlock(&data->update_lock);
575 #define sysfs_beep(REG, reg) \
576 static ssize_t show_regs_beep_##reg (struct device *dev, struct device_attribute *attr, char *buf) \
578 return show_beep_##reg(dev, attr, buf); \
580 static ssize_t store_regs_beep_##reg (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
582 return store_beep_reg(dev, buf, count, BEEP_##REG); \
584 static DEVICE_ATTR(beep_##reg, S_IRUGO | S_IWUSR, show_regs_beep_##reg, store_regs_beep_##reg);
586 sysfs_beep(ENABLE, enable);
587 sysfs_beep(MASK, mask);
590 show_fan_div_reg(struct device *dev, char *buf, int nr)
592 struct w83781d_data *data = w83781d_update_device(dev);
593 return sprintf(buf, "%ld\n",
594 (long) DIV_FROM_REG(data->fan_div[nr - 1]));
597 /* Note: we save and restore the fan minimum here, because its value is
598 determined in part by the fan divisor. This follows the principle of
599 least surprise; the user doesn't expect the fan minimum to change just
600 because the divisor changed. */
602 store_fan_div_reg(struct device *dev, const char *buf, size_t count, int nr)
604 struct w83781d_data *data = dev_get_drvdata(dev);
605 struct i2c_client *client = &data->client;
608 unsigned long val = simple_strtoul(buf, NULL, 10);
610 mutex_lock(&data->update_lock);
613 min = FAN_FROM_REG(data->fan_min[nr],
614 DIV_FROM_REG(data->fan_div[nr]));
616 data->fan_div[nr] = DIV_TO_REG(val, data->type);
618 reg = (w83781d_read_value(client, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV)
619 & (nr==0 ? 0xcf : 0x3f))
620 | ((data->fan_div[nr] & 0x03) << (nr==0 ? 4 : 6));
621 w83781d_write_value(client, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV, reg);
623 /* w83781d and as99127f don't have extended divisor bits */
624 if (data->type != w83781d && data->type != as99127f) {
625 reg = (w83781d_read_value(client, W83781D_REG_VBAT)
627 | ((data->fan_div[nr] & 0x04) << (3 + nr));
628 w83781d_write_value(client, W83781D_REG_VBAT, reg);
631 /* Restore fan_min */
632 data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
633 w83781d_write_value(client, W83781D_REG_FAN_MIN(nr+1), data->fan_min[nr]);
635 mutex_unlock(&data->update_lock);
639 #define sysfs_fan_div(offset) \
640 static ssize_t show_regs_fan_div_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
642 return show_fan_div_reg(dev, buf, offset); \
644 static ssize_t store_regs_fan_div_##offset (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
646 return store_fan_div_reg(dev, buf, count, offset - 1); \
648 static DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, show_regs_fan_div_##offset, store_regs_fan_div_##offset);
655 show_pwm_reg(struct device *dev, char *buf, int nr)
657 struct w83781d_data *data = w83781d_update_device(dev);
658 return sprintf(buf, "%ld\n", (long)data->pwm[nr - 1]);
662 show_pwmenable_reg(struct device *dev, char *buf, int nr)
664 struct w83781d_data *data = w83781d_update_device(dev);
665 return sprintf(buf, "%ld\n", (long) data->pwmenable[nr - 1]);
669 store_pwm_reg(struct device *dev, const char *buf, size_t count, int nr)
671 struct w83781d_data *data = dev_get_drvdata(dev);
672 struct i2c_client *client = &data->client;
675 val = simple_strtoul(buf, NULL, 10);
677 mutex_lock(&data->update_lock);
678 data->pwm[nr - 1] = SENSORS_LIMIT(val, 0, 255);
679 w83781d_write_value(client, W83781D_REG_PWM(nr), data->pwm[nr - 1]);
680 mutex_unlock(&data->update_lock);
685 store_pwmenable_reg(struct device *dev, const char *buf, size_t count, int nr)
687 struct w83781d_data *data = dev_get_drvdata(dev);
688 struct i2c_client *client = &data->client;
691 val = simple_strtoul(buf, NULL, 10);
693 mutex_lock(&data->update_lock);
698 reg = w83781d_read_value(client, W83781D_REG_PWMCLK12);
699 w83781d_write_value(client, W83781D_REG_PWMCLK12,
700 (reg & 0xf7) | (val << 3));
702 reg = w83781d_read_value(client, W83781D_REG_BEEP_CONFIG);
703 w83781d_write_value(client, W83781D_REG_BEEP_CONFIG,
704 (reg & 0xef) | (!val << 4));
706 data->pwmenable[nr - 1] = val;
710 mutex_unlock(&data->update_lock);
714 mutex_unlock(&data->update_lock);
718 #define sysfs_pwm(offset) \
719 static ssize_t show_regs_pwm_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
721 return show_pwm_reg(dev, buf, offset); \
723 static ssize_t store_regs_pwm_##offset (struct device *dev, struct device_attribute *attr, \
724 const char *buf, size_t count) \
726 return store_pwm_reg(dev, buf, count, offset); \
728 static DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
729 show_regs_pwm_##offset, store_regs_pwm_##offset);
731 #define sysfs_pwmenable(offset) \
732 static ssize_t show_regs_pwmenable_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
734 return show_pwmenable_reg(dev, buf, offset); \
736 static ssize_t store_regs_pwmenable_##offset (struct device *dev, struct device_attribute *attr, \
737 const char *buf, size_t count) \
739 return store_pwmenable_reg(dev, buf, count, offset); \
741 static DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
742 show_regs_pwmenable_##offset, store_regs_pwmenable_##offset);
746 sysfs_pwmenable(2); /* only PWM2 can be enabled/disabled */
751 show_sensor_reg(struct device *dev, char *buf, int nr)
753 struct w83781d_data *data = w83781d_update_device(dev);
754 return sprintf(buf, "%ld\n", (long) data->sens[nr - 1]);
758 store_sensor_reg(struct device *dev, const char *buf, size_t count, int nr)
760 struct w83781d_data *data = dev_get_drvdata(dev);
761 struct i2c_client *client = &data->client;
764 val = simple_strtoul(buf, NULL, 10);
766 mutex_lock(&data->update_lock);
769 case 1: /* PII/Celeron diode */
770 tmp = w83781d_read_value(client, W83781D_REG_SCFG1);
771 w83781d_write_value(client, W83781D_REG_SCFG1,
772 tmp | BIT_SCFG1[nr - 1]);
773 tmp = w83781d_read_value(client, W83781D_REG_SCFG2);
774 w83781d_write_value(client, W83781D_REG_SCFG2,
775 tmp | BIT_SCFG2[nr - 1]);
776 data->sens[nr - 1] = val;
779 tmp = w83781d_read_value(client, W83781D_REG_SCFG1);
780 w83781d_write_value(client, W83781D_REG_SCFG1,
781 tmp | BIT_SCFG1[nr - 1]);
782 tmp = w83781d_read_value(client, W83781D_REG_SCFG2);
783 w83781d_write_value(client, W83781D_REG_SCFG2,
784 tmp & ~BIT_SCFG2[nr - 1]);
785 data->sens[nr - 1] = val;
787 case W83781D_DEFAULT_BETA: /* thermistor */
788 tmp = w83781d_read_value(client, W83781D_REG_SCFG1);
789 w83781d_write_value(client, W83781D_REG_SCFG1,
790 tmp & ~BIT_SCFG1[nr - 1]);
791 data->sens[nr - 1] = val;
794 dev_err(dev, "Invalid sensor type %ld; must be 1, 2, or %d\n",
795 (long) val, W83781D_DEFAULT_BETA);
799 mutex_unlock(&data->update_lock);
803 #define sysfs_sensor(offset) \
804 static ssize_t show_regs_sensor_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
806 return show_sensor_reg(dev, buf, offset); \
808 static ssize_t store_regs_sensor_##offset (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
810 return store_sensor_reg(dev, buf, count, offset); \
812 static DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, show_regs_sensor_##offset, store_regs_sensor_##offset);
818 /* I2C devices get this name attribute automatically, but for ISA devices
819 we must create it by ourselves. */
821 show_name(struct device *dev, struct device_attribute *devattr, char *buf)
823 struct w83781d_data *data = dev_get_drvdata(dev);
824 return sprintf(buf, "%s\n", data->client.name);
826 static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
828 /* This function is called when:
829 * w83781d_driver is inserted (when this module is loaded), for each
831 * when a new adapter is inserted (and w83781d_driver is still present) */
833 w83781d_attach_adapter(struct i2c_adapter *adapter)
835 if (!(adapter->class & I2C_CLASS_HWMON))
837 return i2c_probe(adapter, &addr_data, w83781d_detect);
840 /* Assumes that adapter is of I2C, not ISA variety.
841 * OTHERWISE DON'T CALL THIS
844 w83781d_detect_subclients(struct i2c_adapter *adapter, int address, int kind,
845 struct i2c_client *new_client)
849 const char *client_name = "";
850 struct w83781d_data *data = i2c_get_clientdata(new_client);
852 data->lm75[0] = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
853 if (!(data->lm75[0])) {
858 id = i2c_adapter_id(adapter);
860 if (force_subclients[0] == id && force_subclients[1] == address) {
861 for (i = 2; i <= 3; i++) {
862 if (force_subclients[i] < 0x48 ||
863 force_subclients[i] > 0x4f) {
864 dev_err(&new_client->dev, "Invalid subclient "
865 "address %d; must be 0x48-0x4f\n",
866 force_subclients[i]);
871 w83781d_write_value(new_client, W83781D_REG_I2C_SUBADDR,
872 (force_subclients[2] & 0x07) |
873 ((force_subclients[3] & 0x07) << 4));
874 data->lm75[0]->addr = force_subclients[2];
876 val1 = w83781d_read_value(new_client, W83781D_REG_I2C_SUBADDR);
877 data->lm75[0]->addr = 0x48 + (val1 & 0x07);
880 if (kind != w83783s) {
881 data->lm75[1] = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
882 if (!(data->lm75[1])) {
887 if (force_subclients[0] == id &&
888 force_subclients[1] == address) {
889 data->lm75[1]->addr = force_subclients[3];
891 data->lm75[1]->addr = 0x48 + ((val1 >> 4) & 0x07);
893 if (data->lm75[0]->addr == data->lm75[1]->addr) {
894 dev_err(&new_client->dev,
895 "Duplicate addresses 0x%x for subclients.\n",
896 data->lm75[0]->addr);
903 client_name = "w83781d subclient";
904 else if (kind == w83782d)
905 client_name = "w83782d subclient";
906 else if (kind == w83783s)
907 client_name = "w83783s subclient";
908 else if (kind == w83627hf)
909 client_name = "w83627hf subclient";
910 else if (kind == as99127f)
911 client_name = "as99127f subclient";
913 for (i = 0; i <= 1; i++) {
914 /* store all data in w83781d */
915 i2c_set_clientdata(data->lm75[i], NULL);
916 data->lm75[i]->adapter = adapter;
917 data->lm75[i]->driver = &w83781d_driver;
918 data->lm75[i]->flags = 0;
919 strlcpy(data->lm75[i]->name, client_name,
921 if ((err = i2c_attach_client(data->lm75[i]))) {
922 dev_err(&new_client->dev, "Subclient %d "
923 "registration at address 0x%x "
924 "failed.\n", i, data->lm75[i]->addr);
935 /* Undo inits in case of errors */
937 i2c_detach_client(data->lm75[0]);
939 kfree(data->lm75[1]);
941 kfree(data->lm75[0]);
946 #define IN_UNIT_ATTRS(X) \
947 &dev_attr_in##X##_input.attr, \
948 &dev_attr_in##X##_min.attr, \
949 &dev_attr_in##X##_max.attr
951 #define FAN_UNIT_ATTRS(X) \
952 &dev_attr_fan##X##_input.attr, \
953 &dev_attr_fan##X##_min.attr, \
954 &dev_attr_fan##X##_div.attr
956 #define TEMP_UNIT_ATTRS(X) \
957 &dev_attr_temp##X##_input.attr, \
958 &dev_attr_temp##X##_max.attr, \
959 &dev_attr_temp##X##_max_hyst.attr
961 static struct attribute* w83781d_attributes[] = {
973 &dev_attr_cpu0_vid.attr,
975 &dev_attr_alarms.attr,
976 &dev_attr_beep_mask.attr,
977 &dev_attr_beep_enable.attr,
980 static const struct attribute_group w83781d_group = {
981 .attrs = w83781d_attributes,
984 static struct attribute *w83781d_attributes_opt[] = {
991 &dev_attr_pwm2_enable.attr,
994 &dev_attr_temp1_type.attr,
995 &dev_attr_temp2_type.attr,
996 &dev_attr_temp3_type.attr,
999 static const struct attribute_group w83781d_group_opt = {
1000 .attrs = w83781d_attributes_opt,
1003 /* No clean up is done on error, it's up to the caller */
1005 w83781d_create_files(struct device *dev, int kind, int is_isa)
1009 if ((err = sysfs_create_group(&dev->kobj, &w83781d_group)))
1012 if (kind != w83783s) {
1013 if ((err = device_create_file(dev, &dev_attr_in1_input))
1014 || (err = device_create_file(dev, &dev_attr_in1_min))
1015 || (err = device_create_file(dev, &dev_attr_in1_max)))
1018 if (kind != as99127f && kind != w83781d && kind != w83783s) {
1019 if ((err = device_create_file(dev, &dev_attr_in7_input))
1020 || (err = device_create_file(dev, &dev_attr_in7_min))
1021 || (err = device_create_file(dev, &dev_attr_in7_max))
1022 || (err = device_create_file(dev, &dev_attr_in8_input))
1023 || (err = device_create_file(dev, &dev_attr_in8_min))
1024 || (err = device_create_file(dev, &dev_attr_in8_max)))
1027 if (kind != w83783s) {
1028 if ((err = device_create_file(dev, &dev_attr_temp3_input))
1029 || (err = device_create_file(dev, &dev_attr_temp3_max))
1030 || (err = device_create_file(dev,
1031 &dev_attr_temp3_max_hyst)))
1035 if (kind != w83781d && kind != as99127f) {
1036 if ((err = device_create_file(dev, &dev_attr_pwm1))
1037 || (err = device_create_file(dev, &dev_attr_pwm2))
1038 || (err = device_create_file(dev, &dev_attr_pwm2_enable)))
1041 if (kind == w83782d && !is_isa) {
1042 if ((err = device_create_file(dev, &dev_attr_pwm3))
1043 || (err = device_create_file(dev, &dev_attr_pwm4)))
1047 if (kind != as99127f && kind != w83781d) {
1048 if ((err = device_create_file(dev, &dev_attr_temp1_type))
1049 || (err = device_create_file(dev,
1050 &dev_attr_temp2_type)))
1052 if (kind != w83783s) {
1053 if ((err = device_create_file(dev,
1054 &dev_attr_temp3_type)))
1060 err = device_create_file(&pdev->dev, &dev_attr_name);
1069 w83781d_detect(struct i2c_adapter *adapter, int address, int kind)
1072 struct i2c_client *client;
1074 struct w83781d_data *data;
1076 const char *client_name = "";
1077 enum vendor { winbond, asus } vendid;
1079 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
1084 /* OK. For now, we presume we have a valid client. We now create the
1085 client structure, even though we cannot fill it completely yet.
1086 But it allows us to access w83781d_{read,write}_value. */
1088 if (!(data = kzalloc(sizeof(struct w83781d_data), GFP_KERNEL))) {
1093 client = &data->client;
1094 i2c_set_clientdata(client, data);
1095 client->addr = address;
1096 mutex_init(&data->lock);
1097 client->adapter = adapter;
1098 client->driver = &w83781d_driver;
1101 /* Now, we do the remaining detection. */
1103 /* The w8378?d may be stuck in some other bank than bank 0. This may
1104 make reading other information impossible. Specify a force=... or
1105 force_*=... parameter, and the Winbond will be reset to the right
1108 if (w83781d_read_value(client, W83781D_REG_CONFIG) & 0x80) {
1109 dev_dbg(&adapter->dev, "Detection of w83781d chip "
1110 "failed at step 3\n");
1114 val1 = w83781d_read_value(client, W83781D_REG_BANK);
1115 val2 = w83781d_read_value(client, W83781D_REG_CHIPMAN);
1116 /* Check for Winbond or Asus ID if in bank 0 */
1117 if ((!(val1 & 0x07)) &&
1118 (((!(val1 & 0x80)) && (val2 != 0xa3) && (val2 != 0xc3))
1119 || ((val1 & 0x80) && (val2 != 0x5c) && (val2 != 0x12)))) {
1120 dev_dbg(&adapter->dev, "Detection of w83781d chip "
1121 "failed at step 4\n");
1125 /* If Winbond SMBus, check address at 0x48.
1126 Asus doesn't support, except for as99127f rev.2 */
1127 if ((!(val1 & 0x80) && (val2 == 0xa3)) ||
1128 ((val1 & 0x80) && (val2 == 0x5c))) {
1129 if (w83781d_read_value
1130 (client, W83781D_REG_I2C_ADDR) != address) {
1131 dev_dbg(&adapter->dev, "Detection of w83781d "
1132 "chip failed at step 5\n");
1139 /* We have either had a force parameter, or we have already detected the
1140 Winbond. Put it now into bank 0 and Vendor ID High Byte */
1141 w83781d_write_value(client, W83781D_REG_BANK,
1142 (w83781d_read_value(client, W83781D_REG_BANK)
1145 /* Determine the chip type. */
1148 val2 = w83781d_read_value(client, W83781D_REG_CHIPMAN);
1151 else if (val2 == 0x12)
1154 dev_dbg(&adapter->dev, "w83781d chip vendor is "
1155 "neither Winbond nor Asus\n");
1160 val1 = w83781d_read_value(client, W83781D_REG_WCHIPID);
1161 if ((val1 == 0x10 || val1 == 0x11) && vendid == winbond)
1163 else if (val1 == 0x30 && vendid == winbond)
1165 else if (val1 == 0x40 && vendid == winbond && address == 0x2d)
1167 else if (val1 == 0x21 && vendid == winbond)
1169 else if (val1 == 0x31 && address >= 0x28)
1173 dev_warn(&adapter->dev, "Ignoring 'force' "
1174 "parameter for unknown chip at "
1175 "address 0x%02x\n", address);
1181 if (kind == w83781d) {
1182 client_name = "w83781d";
1183 } else if (kind == w83782d) {
1184 client_name = "w83782d";
1185 } else if (kind == w83783s) {
1186 client_name = "w83783s";
1187 } else if (kind == w83627hf) {
1188 client_name = "w83627hf";
1189 } else if (kind == as99127f) {
1190 client_name = "as99127f";
1193 /* Fill in the remaining client fields and put into the global list */
1194 strlcpy(client->name, client_name, I2C_NAME_SIZE);
1197 /* Tell the I2C layer a new client has arrived */
1198 if ((err = i2c_attach_client(client)))
1201 /* attach secondary i2c lm75-like clients */
1202 if ((err = w83781d_detect_subclients(adapter, address,
1206 /* Initialize the chip */
1207 w83781d_init_device(dev);
1209 /* Register sysfs hooks */
1210 err = w83781d_create_files(dev, kind, 0);
1214 data->class_dev = hwmon_device_register(dev);
1215 if (IS_ERR(data->class_dev)) {
1216 err = PTR_ERR(data->class_dev);
1223 sysfs_remove_group(&dev->kobj, &w83781d_group);
1224 sysfs_remove_group(&dev->kobj, &w83781d_group_opt);
1226 if (data->lm75[1]) {
1227 i2c_detach_client(data->lm75[1]);
1228 kfree(data->lm75[1]);
1230 if (data->lm75[0]) {
1231 i2c_detach_client(data->lm75[0]);
1232 kfree(data->lm75[0]);
1235 i2c_detach_client(client);
1243 w83781d_detach_client(struct i2c_client *client)
1245 struct w83781d_data *data = i2c_get_clientdata(client);
1250 hwmon_device_unregister(data->class_dev);
1251 sysfs_remove_group(&client->dev.kobj, &w83781d_group);
1252 sysfs_remove_group(&client->dev.kobj, &w83781d_group_opt);
1255 if ((err = i2c_detach_client(client)))
1269 static int __devinit
1270 w83781d_isa_probe(struct platform_device *pdev)
1273 struct w83781d_data *data;
1274 struct resource *res;
1277 /* Reserve the ISA region */
1278 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
1279 if (!request_region(res->start, W83781D_EXTENT, "w83781d")) {
1284 if (!(data = kzalloc(sizeof(struct w83781d_data), GFP_KERNEL))) {
1286 goto exit_release_region;
1288 mutex_init(&data->lock);
1289 data->client.addr = res->start;
1290 i2c_set_clientdata(&data->client, data);
1291 platform_set_drvdata(pdev, data);
1293 reg = w83781d_read_value(&data->client, W83781D_REG_WCHIPID);
1296 data->type = w83627hf;
1300 data->type = w83782d;
1304 data->type = w83781d;
1307 strlcpy(data->client.name, name, I2C_NAME_SIZE);
1309 /* Initialize the W83781D chip */
1310 w83781d_init_device(&pdev->dev);
1312 /* Register sysfs hooks */
1313 err = w83781d_create_files(&pdev->dev, data->type, 1);
1315 goto exit_remove_files;
1317 data->class_dev = hwmon_device_register(&pdev->dev);
1318 if (IS_ERR(data->class_dev)) {
1319 err = PTR_ERR(data->class_dev);
1320 goto exit_remove_files;
1326 sysfs_remove_group(&pdev->dev.kobj, &w83781d_group);
1327 sysfs_remove_group(&pdev->dev.kobj, &w83781d_group_opt);
1328 device_remove_file(&pdev->dev, &dev_attr_name);
1330 exit_release_region:
1331 release_region(res->start, W83781D_EXTENT);
1336 static int __devexit
1337 w83781d_isa_remove(struct platform_device *pdev)
1339 struct w83781d_data *data = platform_get_drvdata(pdev);
1341 hwmon_device_unregister(data->class_dev);
1342 sysfs_remove_group(&pdev->dev.kobj, &w83781d_group);
1343 sysfs_remove_group(&pdev->dev.kobj, &w83781d_group_opt);
1344 device_remove_file(&pdev->dev, &dev_attr_name);
1345 release_region(data->client.addr, W83781D_EXTENT);
1351 /* The SMBus locks itself, usually, but nothing may access the Winbond between
1352 bank switches. ISA access must always be locked explicitly!
1353 We ignore the W83781D BUSY flag at this moment - it could lead to deadlocks,
1354 would slow down the W83781D access and should not be necessary.
1355 There are some ugly typecasts here, but the good news is - they should
1356 nowhere else be necessary! */
1358 w83781d_read_value(struct i2c_client *client, u16 reg)
1360 struct w83781d_data *data = i2c_get_clientdata(client);
1361 int res, word_sized, bank;
1362 struct i2c_client *cl;
1364 mutex_lock(&data->lock);
1365 if (!client->driver) { /* ISA device */
1366 word_sized = (((reg & 0xff00) == 0x100)
1367 || ((reg & 0xff00) == 0x200))
1368 && (((reg & 0x00ff) == 0x50)
1369 || ((reg & 0x00ff) == 0x53)
1370 || ((reg & 0x00ff) == 0x55));
1372 outb_p(W83781D_REG_BANK,
1373 client->addr + W83781D_ADDR_REG_OFFSET);
1375 client->addr + W83781D_DATA_REG_OFFSET);
1377 outb_p(reg & 0xff, client->addr + W83781D_ADDR_REG_OFFSET);
1378 res = inb_p(client->addr + W83781D_DATA_REG_OFFSET);
1380 outb_p((reg & 0xff) + 1,
1381 client->addr + W83781D_ADDR_REG_OFFSET);
1383 (res << 8) + inb_p(client->addr +
1384 W83781D_DATA_REG_OFFSET);
1387 outb_p(W83781D_REG_BANK,
1388 client->addr + W83781D_ADDR_REG_OFFSET);
1389 outb_p(0, client->addr + W83781D_DATA_REG_OFFSET);
1392 bank = (reg >> 8) & 0x0f;
1395 i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
1397 if (bank == 0 || bank > 2) {
1398 res = i2c_smbus_read_byte_data(client, reg & 0xff);
1400 /* switch to subclient */
1401 cl = data->lm75[bank - 1];
1402 /* convert from ISA to LM75 I2C addresses */
1403 switch (reg & 0xff) {
1404 case 0x50: /* TEMP */
1405 res = swab16(i2c_smbus_read_word_data(cl, 0));
1407 case 0x52: /* CONFIG */
1408 res = i2c_smbus_read_byte_data(cl, 1);
1410 case 0x53: /* HYST */
1411 res = swab16(i2c_smbus_read_word_data(cl, 2));
1413 case 0x55: /* OVER */
1415 res = swab16(i2c_smbus_read_word_data(cl, 3));
1420 i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0);
1422 mutex_unlock(&data->lock);
1427 w83781d_write_value(struct i2c_client *client, u16 reg, u16 value)
1429 struct w83781d_data *data = i2c_get_clientdata(client);
1430 int word_sized, bank;
1431 struct i2c_client *cl;
1433 mutex_lock(&data->lock);
1434 if (!client->driver) { /* ISA device */
1435 word_sized = (((reg & 0xff00) == 0x100)
1436 || ((reg & 0xff00) == 0x200))
1437 && (((reg & 0x00ff) == 0x53)
1438 || ((reg & 0x00ff) == 0x55));
1440 outb_p(W83781D_REG_BANK,
1441 client->addr + W83781D_ADDR_REG_OFFSET);
1443 client->addr + W83781D_DATA_REG_OFFSET);
1445 outb_p(reg & 0xff, client->addr + W83781D_ADDR_REG_OFFSET);
1448 client->addr + W83781D_DATA_REG_OFFSET);
1449 outb_p((reg & 0xff) + 1,
1450 client->addr + W83781D_ADDR_REG_OFFSET);
1452 outb_p(value & 0xff, client->addr + W83781D_DATA_REG_OFFSET);
1454 outb_p(W83781D_REG_BANK,
1455 client->addr + W83781D_ADDR_REG_OFFSET);
1456 outb_p(0, client->addr + W83781D_DATA_REG_OFFSET);
1459 bank = (reg >> 8) & 0x0f;
1462 i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
1464 if (bank == 0 || bank > 2) {
1465 i2c_smbus_write_byte_data(client, reg & 0xff,
1468 /* switch to subclient */
1469 cl = data->lm75[bank - 1];
1470 /* convert from ISA to LM75 I2C addresses */
1471 switch (reg & 0xff) {
1472 case 0x52: /* CONFIG */
1473 i2c_smbus_write_byte_data(cl, 1, value & 0xff);
1475 case 0x53: /* HYST */
1476 i2c_smbus_write_word_data(cl, 2, swab16(value));
1478 case 0x55: /* OVER */
1479 i2c_smbus_write_word_data(cl, 3, swab16(value));
1484 i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0);
1486 mutex_unlock(&data->lock);
1491 w83781d_init_device(struct device *dev)
1493 struct w83781d_data *data = dev_get_drvdata(dev);
1494 struct i2c_client *client = &data->client;
1496 int type = data->type;
1499 if (reset && type != as99127f) { /* this resets registers we don't have
1500 documentation for on the as99127f */
1501 /* Resetting the chip has been the default for a long time,
1502 but it causes the BIOS initializations (fan clock dividers,
1503 thermal sensor types...) to be lost, so it is now optional.
1504 It might even go away if nobody reports it as being useful,
1505 as I see very little reason why this would be needed at
1507 dev_info(dev, "If reset=1 solved a problem you were "
1508 "having, please report!\n");
1510 /* save these registers */
1511 i = w83781d_read_value(client, W83781D_REG_BEEP_CONFIG);
1512 p = w83781d_read_value(client, W83781D_REG_PWMCLK12);
1513 /* Reset all except Watchdog values and last conversion values
1514 This sets fan-divs to 2, among others */
1515 w83781d_write_value(client, W83781D_REG_CONFIG, 0x80);
1516 /* Restore the registers and disable power-on abnormal beep.
1517 This saves FAN 1/2/3 input/output values set by BIOS. */
1518 w83781d_write_value(client, W83781D_REG_BEEP_CONFIG, i | 0x80);
1519 w83781d_write_value(client, W83781D_REG_PWMCLK12, p);
1520 /* Disable master beep-enable (reset turns it on).
1521 Individual beep_mask should be reset to off but for some reason
1522 disabling this bit helps some people not get beeped */
1523 w83781d_write_value(client, W83781D_REG_BEEP_INTS2, 0);
1526 /* Disable power-on abnormal beep, as advised by the datasheet.
1527 Already done if reset=1. */
1528 if (init && !reset && type != as99127f) {
1529 i = w83781d_read_value(client, W83781D_REG_BEEP_CONFIG);
1530 w83781d_write_value(client, W83781D_REG_BEEP_CONFIG, i | 0x80);
1533 data->vrm = vid_which_vrm();
1535 if ((type != w83781d) && (type != as99127f)) {
1536 tmp = w83781d_read_value(client, W83781D_REG_SCFG1);
1537 for (i = 1; i <= 3; i++) {
1538 if (!(tmp & BIT_SCFG1[i - 1])) {
1539 data->sens[i - 1] = W83781D_DEFAULT_BETA;
1541 if (w83781d_read_value
1543 W83781D_REG_SCFG2) & BIT_SCFG2[i - 1])
1544 data->sens[i - 1] = 1;
1546 data->sens[i - 1] = 2;
1548 if (type == w83783s && i == 2)
1553 if (init && type != as99127f) {
1555 tmp = w83781d_read_value(client, W83781D_REG_TEMP2_CONFIG);
1557 dev_warn(dev, "Enabling temp2, readings "
1558 "might not make sense\n");
1559 w83781d_write_value(client, W83781D_REG_TEMP2_CONFIG,
1564 if (type != w83783s) {
1565 tmp = w83781d_read_value(client,
1566 W83781D_REG_TEMP3_CONFIG);
1568 dev_warn(dev, "Enabling temp3, "
1569 "readings might not make sense\n");
1570 w83781d_write_value(client,
1571 W83781D_REG_TEMP3_CONFIG, tmp & 0xfe);
1576 /* Start monitoring */
1577 w83781d_write_value(client, W83781D_REG_CONFIG,
1578 (w83781d_read_value(client,
1579 W83781D_REG_CONFIG) & 0xf7)
1582 /* A few vars need to be filled upon startup */
1583 for (i = 1; i <= 3; i++) {
1584 data->fan_min[i - 1] = w83781d_read_value(client,
1585 W83781D_REG_FAN_MIN(i));
1587 if (type != w83781d && type != as99127f)
1588 for (i = 0; i < 4; i++)
1589 data->pwmenable[i] = 1;
1591 mutex_init(&data->update_lock);
1594 static struct w83781d_data *w83781d_update_device(struct device *dev)
1596 struct w83781d_data *data = dev_get_drvdata(dev);
1597 struct i2c_client *client = &data->client;
1600 mutex_lock(&data->update_lock);
1602 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
1604 dev_dbg(dev, "Starting device update\n");
1606 for (i = 0; i <= 8; i++) {
1607 if (data->type == w83783s && i == 1)
1608 continue; /* 783S has no in1 */
1610 w83781d_read_value(client, W83781D_REG_IN(i));
1612 w83781d_read_value(client, W83781D_REG_IN_MIN(i));
1614 w83781d_read_value(client, W83781D_REG_IN_MAX(i));
1615 if ((data->type != w83782d)
1616 && (data->type != w83627hf) && (i == 6))
1619 for (i = 1; i <= 3; i++) {
1621 w83781d_read_value(client, W83781D_REG_FAN(i));
1622 data->fan_min[i - 1] =
1623 w83781d_read_value(client, W83781D_REG_FAN_MIN(i));
1625 if (data->type != w83781d && data->type != as99127f) {
1626 for (i = 1; i <= 4; i++) {
1628 w83781d_read_value(client,
1629 W83781D_REG_PWM(i));
1630 if ((data->type != w83782d || !client->driver)
1634 /* Only PWM2 can be disabled */
1635 data->pwmenable[1] = (w83781d_read_value(client,
1636 W83781D_REG_PWMCLK12) & 0x08) >> 3;
1639 data->temp = w83781d_read_value(client, W83781D_REG_TEMP(1));
1641 w83781d_read_value(client, W83781D_REG_TEMP_OVER(1));
1642 data->temp_max_hyst =
1643 w83781d_read_value(client, W83781D_REG_TEMP_HYST(1));
1645 w83781d_read_value(client, W83781D_REG_TEMP(2));
1646 data->temp_max_add[0] =
1647 w83781d_read_value(client, W83781D_REG_TEMP_OVER(2));
1648 data->temp_max_hyst_add[0] =
1649 w83781d_read_value(client, W83781D_REG_TEMP_HYST(2));
1650 if (data->type != w83783s) {
1652 w83781d_read_value(client, W83781D_REG_TEMP(3));
1653 data->temp_max_add[1] =
1654 w83781d_read_value(client,
1655 W83781D_REG_TEMP_OVER(3));
1656 data->temp_max_hyst_add[1] =
1657 w83781d_read_value(client,
1658 W83781D_REG_TEMP_HYST(3));
1660 i = w83781d_read_value(client, W83781D_REG_VID_FANDIV);
1661 data->vid = i & 0x0f;
1662 data->vid |= (w83781d_read_value(client,
1663 W83781D_REG_CHIPID) & 0x01) << 4;
1664 data->fan_div[0] = (i >> 4) & 0x03;
1665 data->fan_div[1] = (i >> 6) & 0x03;
1666 data->fan_div[2] = (w83781d_read_value(client,
1667 W83781D_REG_PIN) >> 6) & 0x03;
1668 if ((data->type != w83781d) && (data->type != as99127f)) {
1669 i = w83781d_read_value(client, W83781D_REG_VBAT);
1670 data->fan_div[0] |= (i >> 3) & 0x04;
1671 data->fan_div[1] |= (i >> 4) & 0x04;
1672 data->fan_div[2] |= (i >> 5) & 0x04;
1674 if ((data->type == w83782d) || (data->type == w83627hf)) {
1675 data->alarms = w83781d_read_value(client,
1677 | (w83781d_read_value(client,
1678 W83782D_REG_ALARM2) << 8)
1679 | (w83781d_read_value(client,
1680 W83782D_REG_ALARM3) << 16);
1681 } else if (data->type == w83783s) {
1682 data->alarms = w83781d_read_value(client,
1684 | (w83781d_read_value(client,
1685 W83782D_REG_ALARM2) << 8);
1687 /* No real-time status registers, fall back to
1688 interrupt status registers */
1689 data->alarms = w83781d_read_value(client,
1691 | (w83781d_read_value(client,
1692 W83781D_REG_ALARM2) << 8);
1694 i = w83781d_read_value(client, W83781D_REG_BEEP_INTS2);
1695 data->beep_enable = i >> 7;
1696 data->beep_mask = ((i & 0x7f) << 8) +
1697 w83781d_read_value(client, W83781D_REG_BEEP_INTS1);
1698 if ((data->type != w83781d) && (data->type != as99127f)) {
1700 w83781d_read_value(client,
1701 W83781D_REG_BEEP_INTS3) << 16;
1703 data->last_updated = jiffies;
1707 mutex_unlock(&data->update_lock);
1712 /* return 1 if a supported chip is found, 0 otherwise */
1714 w83781d_isa_found(unsigned short address)
1716 int val, save, found = 0;
1718 if (!request_region(address, W83781D_EXTENT, "w83781d"))
1721 #define REALLY_SLOW_IO
1722 /* We need the timeouts for at least some W83781D-like
1723 chips. But only if we read 'undefined' registers. */
1724 val = inb_p(address + 1);
1725 if (inb_p(address + 2) != val
1726 || inb_p(address + 3) != val
1727 || inb_p(address + 7) != val) {
1728 pr_debug("w83781d: Detection failed at step 1\n");
1731 #undef REALLY_SLOW_IO
1733 /* We should be able to change the 7 LSB of the address port. The
1734 MSB (busy flag) should be clear initially, set after the write. */
1735 save = inb_p(address + W83781D_ADDR_REG_OFFSET);
1737 pr_debug("w83781d: Detection failed at step 2\n");
1741 outb_p(val, address + W83781D_ADDR_REG_OFFSET);
1742 if (inb_p(address + W83781D_ADDR_REG_OFFSET) != (val | 0x80)) {
1743 outb_p(save, address + W83781D_ADDR_REG_OFFSET);
1744 pr_debug("w83781d: Detection failed at step 3\n");
1748 /* We found a device, now see if it could be a W83781D */
1749 outb_p(W83781D_REG_CONFIG, address + W83781D_ADDR_REG_OFFSET);
1750 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1752 pr_debug("w83781d: Detection failed at step 4\n");
1755 outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET);
1756 save = inb_p(address + W83781D_DATA_REG_OFFSET);
1757 outb_p(W83781D_REG_CHIPMAN, address + W83781D_ADDR_REG_OFFSET);
1758 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1759 if ((!(save & 0x80) && (val != 0xa3))
1760 || ((save & 0x80) && (val != 0x5c))) {
1761 pr_debug("w83781d: Detection failed at step 5\n");
1764 outb_p(W83781D_REG_I2C_ADDR, address + W83781D_ADDR_REG_OFFSET);
1765 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1766 if (val < 0x03 || val > 0x77) { /* Not a valid I2C address */
1767 pr_debug("w83781d: Detection failed at step 6\n");
1771 /* The busy flag should be clear again */
1772 if (inb_p(address + W83781D_ADDR_REG_OFFSET) & 0x80) {
1773 pr_debug("w83781d: Detection failed at step 7\n");
1777 /* Determine the chip type */
1778 outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET);
1779 save = inb_p(address + W83781D_DATA_REG_OFFSET);
1780 outb_p(save & 0xf8, address + W83781D_DATA_REG_OFFSET);
1781 outb_p(W83781D_REG_WCHIPID, address + W83781D_ADDR_REG_OFFSET);
1782 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1783 if ((val & 0xfe) == 0x10 /* W83781D */
1784 || val == 0x30 /* W83782D */
1785 || val == 0x21) /* W83627HF */
1789 pr_info("w83781d: Found a %s chip at %#x\n",
1790 val == 0x21 ? "W83627HF" :
1791 val == 0x30 ? "W83782D" : "W83781D", (int)address);
1794 release_region(address, W83781D_EXTENT);
1799 w83781d_isa_device_add(unsigned short address)
1801 struct resource res = {
1803 .end = address + W83781D_EXTENT,
1805 .flags = IORESOURCE_IO,
1809 pdev = platform_device_alloc("w83781d", address);
1812 printk(KERN_ERR "w83781d: Device allocation failed\n");
1816 err = platform_device_add_resources(pdev, &res, 1);
1818 printk(KERN_ERR "w83781d: Device resource addition failed "
1820 goto exit_device_put;
1823 err = platform_device_add(pdev);
1825 printk(KERN_ERR "w83781d: Device addition failed (%d)\n",
1827 goto exit_device_put;
1833 platform_device_put(pdev);
1840 sensors_w83781d_init(void)
1844 res = i2c_add_driver(&w83781d_driver);
1848 if (w83781d_isa_found(isa_address)) {
1849 res = platform_driver_register(&w83781d_isa_driver);
1851 goto exit_unreg_i2c_driver;
1853 /* Sets global pdev as a side effect */
1854 res = w83781d_isa_device_add(isa_address);
1856 goto exit_unreg_isa_driver;
1861 exit_unreg_isa_driver:
1862 platform_driver_unregister(&w83781d_isa_driver);
1863 exit_unreg_i2c_driver:
1864 i2c_del_driver(&w83781d_driver);
1870 sensors_w83781d_exit(void)
1873 platform_device_unregister(pdev);
1874 platform_driver_unregister(&w83781d_isa_driver);
1876 i2c_del_driver(&w83781d_driver);
1879 MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, "
1880 "Philip Edelbrock <phil@netroedge.com>, "
1881 "and Mark Studebaker <mdsxyz123@yahoo.com>");
1882 MODULE_DESCRIPTION("W83781D driver");
1883 MODULE_LICENSE("GPL");
1885 module_init(sensors_w83781d_init);
1886 module_exit(sensors_w83781d_exit);