blob: b03d54a799e3de9f8f5bbc4aab84c1c5cedcf4dd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Guenter Roeckaff6e002012-01-19 11:02:27 -08002 * w83781d.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
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 - 2008 Jean Delvare <khali@linux-fr.org>
8 *
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.
13 *
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.
18 *
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.
22 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/*
Guenter Roeckaff6e002012-01-19 11:02:27 -080025 * Supports following chips:
26 *
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 * w83782d 9 3 2-4 3 0x30 0x5ca3 yes yes
32 * w83783s 5-6 3 2 1-2 0x40 0x5ca3 yes no
33 *
34 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Joe Perches1ca28212011-01-12 21:55:11 +010036#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/module.h>
39#include <linux/init.h>
40#include <linux/slab.h>
41#include <linux/jiffies.h>
42#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040043#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020044#include <linux/hwmon-vid.h>
Jean Delvare34875332007-05-08 17:22:03 +020045#include <linux/hwmon-sysfs.h>
Jim Cromie311ce2e2006-09-24 21:22:52 +020046#include <linux/sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040047#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010048#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Wolfgang Grandegger443850c2008-10-17 17:51:18 +020050#ifdef CONFIG_ISA
51#include <linux/platform_device.h>
52#include <linux/ioport.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020053#include <linux/io.h>
Wolfgang Grandegger443850c2008-10-17 17:51:18 +020054#endif
55
56#include "lm75.h"
Jean Delvare7666c132007-05-08 17:22:02 +020057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/* Addresses to scan */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050059static const unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,
60 0x2e, 0x2f, I2C_CLIENT_END };
Jean Delvare3aed1982009-01-07 16:37:32 +010061
Jean Delvaree5e9f442009-12-14 21:17:27 +010062enum chips { w83781d, w83782d, w83783s, as99127f };
63
64/* Insmod parameters */
Jean Delvare3aed1982009-01-07 16:37:32 +010065static unsigned short force_subclients[4];
66module_param_array(force_subclients, short, NULL, 0);
67MODULE_PARM_DESC(force_subclients, "List of subclient addresses: "
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 "{bus, clientaddr, subclientaddr1, subclientaddr2}");
69
Rusty Russell90ab5ee2012-01-13 09:32:20 +103070static bool reset;
Jean Delvarefabddcd2006-02-05 23:26:51 +010071module_param(reset, bool, 0);
72MODULE_PARM_DESC(reset, "Set to one to reset chip on load");
73
Rusty Russell90ab5ee2012-01-13 09:32:20 +103074static bool init = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075module_param(init, bool, 0);
76MODULE_PARM_DESC(init, "Set to zero to bypass chip initialization");
77
78/* Constants specified below */
79
80/* Length of ISA address segment */
81#define W83781D_EXTENT 8
82
83/* Where are the ISA address/data registers relative to the base address */
84#define W83781D_ADDR_REG_OFFSET 5
85#define W83781D_DATA_REG_OFFSET 6
86
Jean Delvare34875332007-05-08 17:22:03 +020087/* The device registers */
88/* in nr from 0 to 8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#define W83781D_REG_IN_MAX(nr) ((nr < 7) ? (0x2b + (nr) * 2) : \
90 (0x554 + (((nr) - 7) * 2)))
91#define W83781D_REG_IN_MIN(nr) ((nr < 7) ? (0x2c + (nr) * 2) : \
92 (0x555 + (((nr) - 7) * 2)))
93#define W83781D_REG_IN(nr) ((nr < 7) ? (0x20 + (nr)) : \
94 (0x550 + (nr) - 7))
95
Jean Delvare34875332007-05-08 17:22:03 +020096/* fan nr from 0 to 2 */
97#define W83781D_REG_FAN_MIN(nr) (0x3b + (nr))
98#define W83781D_REG_FAN(nr) (0x28 + (nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100#define W83781D_REG_BANK 0x4E
101#define W83781D_REG_TEMP2_CONFIG 0x152
102#define W83781D_REG_TEMP3_CONFIG 0x252
Jean Delvare34875332007-05-08 17:22:03 +0200103/* temp nr from 1 to 3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#define W83781D_REG_TEMP(nr) ((nr == 3) ? (0x0250) : \
105 ((nr == 2) ? (0x0150) : \
106 (0x27)))
107#define W83781D_REG_TEMP_HYST(nr) ((nr == 3) ? (0x253) : \
108 ((nr == 2) ? (0x153) : \
109 (0x3A)))
110#define W83781D_REG_TEMP_OVER(nr) ((nr == 3) ? (0x255) : \
111 ((nr == 2) ? (0x155) : \
112 (0x39)))
113
114#define W83781D_REG_CONFIG 0x40
Jean Delvarec7f5d7e2006-02-05 23:13:48 +0100115
116/* Interrupt status (W83781D, AS99127F) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define W83781D_REG_ALARM1 0x41
118#define W83781D_REG_ALARM2 0x42
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Jean Delvare05663362007-11-30 23:51:24 +0100120/* Real-time status (W83782D, W83783S) */
Jean Delvarec7f5d7e2006-02-05 23:13:48 +0100121#define W83782D_REG_ALARM1 0x459
122#define W83782D_REG_ALARM2 0x45A
123#define W83782D_REG_ALARM3 0x45B
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#define W83781D_REG_BEEP_CONFIG 0x4D
126#define W83781D_REG_BEEP_INTS1 0x56
127#define W83781D_REG_BEEP_INTS2 0x57
128#define W83781D_REG_BEEP_INTS3 0x453 /* not on W83781D */
129
130#define W83781D_REG_VID_FANDIV 0x47
131
132#define W83781D_REG_CHIPID 0x49
133#define W83781D_REG_WCHIPID 0x58
134#define W83781D_REG_CHIPMAN 0x4F
135#define W83781D_REG_PIN 0x4B
136
137/* 782D/783S only */
138#define W83781D_REG_VBAT 0x5D
139
140/* PWM 782D (1-4) and 783S (1-2) only */
Jean Delvare34875332007-05-08 17:22:03 +0200141static const u8 W83781D_REG_PWM[] = { 0x5B, 0x5A, 0x5E, 0x5F };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#define W83781D_REG_PWMCLK12 0x5C
143#define W83781D_REG_PWMCLK34 0x45C
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145#define W83781D_REG_I2C_ADDR 0x48
146#define W83781D_REG_I2C_SUBADDR 0x4A
147
Guenter Roeckaff6e002012-01-19 11:02:27 -0800148/*
149 * The following are undocumented in the data sheets however we
150 * received the information in an email from Winbond tech support
151 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/* Sensor selection - not on 781d */
153#define W83781D_REG_SCFG1 0x5D
154static const u8 BIT_SCFG1[] = { 0x02, 0x04, 0x08 };
155
156#define W83781D_REG_SCFG2 0x59
157static const u8 BIT_SCFG2[] = { 0x10, 0x20, 0x40 };
158
159#define W83781D_DEFAULT_BETA 3435
160
Jean Delvare474d00a2007-05-08 17:22:03 +0200161/* Conversions */
162#define IN_TO_REG(val) SENSORS_LIMIT(((val) + 8) / 16, 0, 255)
163#define IN_FROM_REG(val) ((val) * 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165static inline u8
166FAN_TO_REG(long rpm, int div)
167{
168 if (rpm == 0)
169 return 255;
170 rpm = SENSORS_LIMIT(rpm, 1, 1000000);
171 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
172}
173
Jean Delvare474d00a2007-05-08 17:22:03 +0200174static inline long
175FAN_FROM_REG(u8 val, int div)
176{
177 if (val == 0)
178 return -1;
179 if (val == 255)
180 return 0;
181 return 1350000 / (val * div);
182}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Jean Delvare474d00a2007-05-08 17:22:03 +0200184#define TEMP_TO_REG(val) SENSORS_LIMIT((val) / 1000, -127, 128)
185#define TEMP_FROM_REG(val) ((val) * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Guenter Roeckc531eb32012-01-15 09:19:16 -0800187#define BEEP_MASK_FROM_REG(val, type) ((type) == as99127f ? \
Jean Delvare2fbbbf12008-10-17 17:51:18 +0200188 (~(val)) & 0x7fff : (val) & 0xff7fff)
Guenter Roeckc531eb32012-01-15 09:19:16 -0800189#define BEEP_MASK_TO_REG(val, type) ((type) == as99127f ? \
Jean Delvare2fbbbf12008-10-17 17:51:18 +0200190 (~(val)) & 0x7fff : (val) & 0xff7fff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#define DIV_FROM_REG(val) (1 << (val))
193
194static inline u8
195DIV_TO_REG(long val, enum chips type)
196{
197 int i;
198 val = SENSORS_LIMIT(val, 1,
199 ((type == w83781d
200 || type == as99127f) ? 8 : 128)) >> 1;
Grant Coadyabc01922005-05-12 13:41:51 +1000201 for (i = 0; i < 7; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (val == 0)
203 break;
204 val >>= 1;
205 }
Jean Delvare474d00a2007-05-08 17:22:03 +0200206 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209struct w83781d_data {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200210 struct i2c_client *client;
Tony Jones1beeffe2007-08-20 13:46:20 -0700211 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100212 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 enum chips type;
214
Jean Delvare360782d2008-10-17 17:51:19 +0200215 /* For ISA device only */
216 const char *name;
217 int isa_addr;
218
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100219 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 char valid; /* !=0 if following fields are valid */
221 unsigned long last_updated; /* In jiffies */
222
223 struct i2c_client *lm75[2]; /* for secondary I2C addresses */
224 /* array of 2 pointers to subclients */
225
226 u8 in[9]; /* Register value - 8 & 9 for 782D only */
227 u8 in_max[9]; /* Register value - 8 & 9 for 782D only */
228 u8 in_min[9]; /* Register value - 8 & 9 for 782D only */
229 u8 fan[3]; /* Register value */
230 u8 fan_min[3]; /* Register value */
Jean Delvare474d00a2007-05-08 17:22:03 +0200231 s8 temp; /* Register value */
232 s8 temp_max; /* Register value */
233 s8 temp_max_hyst; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 u16 temp_add[2]; /* Register value */
235 u16 temp_max_add[2]; /* Register value */
236 u16 temp_max_hyst_add[2]; /* Register value */
237 u8 fan_div[3]; /* Register encoding, shifted right */
238 u8 vid; /* Register encoding, combined */
239 u32 alarms; /* Register encoding, combined */
240 u32 beep_mask; /* Register encoding, combined */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 u8 pwm[4]; /* Register value */
Jean Delvare34875332007-05-08 17:22:03 +0200242 u8 pwm2_enable; /* Boolean */
Guenter Roeckaff6e002012-01-19 11:02:27 -0800243 u16 sens[3]; /*
244 * 782D/783S only.
245 * 1 = pentium diode; 2 = 3904 diode;
246 * 4 = thermistor
247 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 u8 vrm;
249};
250
Wolfgang Grandegger443850c2008-10-17 17:51:18 +0200251static struct w83781d_data *w83781d_data_if_isa(void);
252static int w83781d_alias_detect(struct i2c_client *client, u8 chipid);
253
Jean Delvare31b8dc42007-05-08 17:22:03 +0200254static int w83781d_read_value(struct w83781d_data *data, u16 reg);
255static int w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256static struct w83781d_data *w83781d_update_device(struct device *dev);
Jean Delvare7666c132007-05-08 17:22:02 +0200257static void w83781d_init_device(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/* following are the sysfs callback functions */
260#define show_in_reg(reg) \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800261static ssize_t show_##reg(struct device *dev, struct device_attribute *da, \
Jean Delvare34875332007-05-08 17:22:03 +0200262 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{ \
Jean Delvare34875332007-05-08 17:22:03 +0200264 struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 struct w83781d_data *data = w83781d_update_device(dev); \
Jean Delvare34875332007-05-08 17:22:03 +0200266 return sprintf(buf, "%ld\n", \
267 (long)IN_FROM_REG(data->reg[attr->index])); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269show_in_reg(in);
270show_in_reg(in_min);
271show_in_reg(in_max);
272
273#define store_in_reg(REG, reg) \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800274static ssize_t store_in_##reg(struct device *dev, struct device_attribute \
Jean Delvare34875332007-05-08 17:22:03 +0200275 *da, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{ \
Jean Delvare34875332007-05-08 17:22:03 +0200277 struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
Jean Delvare7666c132007-05-08 17:22:02 +0200278 struct w83781d_data *data = dev_get_drvdata(dev); \
Jean Delvare34875332007-05-08 17:22:03 +0200279 int nr = attr->index; \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800280 unsigned long val; \
281 int err = kstrtoul(buf, 10, &val); \
282 if (err) \
283 return err; \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100284 mutex_lock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 data->in_##reg[nr] = IN_TO_REG(val); \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800286 w83781d_write_value(data, W83781D_REG_IN_##REG(nr), \
287 data->in_##reg[nr]); \
288 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100289 mutex_unlock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return count; \
291}
292store_in_reg(MIN, min);
293store_in_reg(MAX, max);
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#define sysfs_in_offsets(offset) \
Jean Delvare34875332007-05-08 17:22:03 +0200296static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
297 show_in, NULL, offset); \
298static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
299 show_in_min, store_in_min, offset); \
300static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
301 show_in_max, store_in_max, offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303sysfs_in_offsets(0);
304sysfs_in_offsets(1);
305sysfs_in_offsets(2);
306sysfs_in_offsets(3);
307sysfs_in_offsets(4);
308sysfs_in_offsets(5);
309sysfs_in_offsets(6);
310sysfs_in_offsets(7);
311sysfs_in_offsets(8);
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313#define show_fan_reg(reg) \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800314static ssize_t show_##reg(struct device *dev, struct device_attribute *da, \
Jean Delvare34875332007-05-08 17:22:03 +0200315 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{ \
Jean Delvare34875332007-05-08 17:22:03 +0200317 struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 struct w83781d_data *data = w83781d_update_device(dev); \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800319 return sprintf(buf, "%ld\n", \
Jean Delvare34875332007-05-08 17:22:03 +0200320 FAN_FROM_REG(data->reg[attr->index], \
321 DIV_FROM_REG(data->fan_div[attr->index]))); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323show_fan_reg(fan);
324show_fan_reg(fan_min);
325
326static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200327store_fan_min(struct device *dev, struct device_attribute *da,
328 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Jean Delvare34875332007-05-08 17:22:03 +0200330 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvare7666c132007-05-08 17:22:02 +0200331 struct w83781d_data *data = dev_get_drvdata(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200332 int nr = attr->index;
Guenter Roeckc531eb32012-01-15 09:19:16 -0800333 unsigned long val;
334 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Guenter Roeckc531eb32012-01-15 09:19:16 -0800336 err = kstrtoul(buf, 10, &val);
337 if (err)
338 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100340 mutex_lock(&data->update_lock);
Jean Delvare34875332007-05-08 17:22:03 +0200341 data->fan_min[nr] =
342 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvare31b8dc42007-05-08 17:22:03 +0200343 w83781d_write_value(data, W83781D_REG_FAN_MIN(nr),
Jean Delvare34875332007-05-08 17:22:03 +0200344 data->fan_min[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100346 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return count;
348}
349
Jean Delvare34875332007-05-08 17:22:03 +0200350static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0);
351static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO | S_IWUSR,
352 show_fan_min, store_fan_min, 0);
353static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, show_fan, NULL, 1);
354static SENSOR_DEVICE_ATTR(fan2_min, S_IRUGO | S_IWUSR,
355 show_fan_min, store_fan_min, 1);
356static SENSOR_DEVICE_ATTR(fan3_input, S_IRUGO, show_fan, NULL, 2);
357static SENSOR_DEVICE_ATTR(fan3_min, S_IRUGO | S_IWUSR,
358 show_fan_min, store_fan_min, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360#define show_temp_reg(reg) \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800361static ssize_t show_##reg(struct device *dev, struct device_attribute *da, \
Jean Delvare34875332007-05-08 17:22:03 +0200362 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{ \
Jean Delvare34875332007-05-08 17:22:03 +0200364 struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 struct w83781d_data *data = w83781d_update_device(dev); \
Jean Delvare34875332007-05-08 17:22:03 +0200366 int nr = attr->index; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (nr >= 2) { /* TEMP2 and TEMP3 */ \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800368 return sprintf(buf, "%d\n", \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 LM75_TEMP_FROM_REG(data->reg##_add[nr-2])); \
370 } else { /* TEMP1 */ \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800371 return sprintf(buf, "%ld\n", (long)TEMP_FROM_REG(data->reg)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 } \
373}
374show_temp_reg(temp);
375show_temp_reg(temp_max);
376show_temp_reg(temp_max_hyst);
377
378#define store_temp_reg(REG, reg) \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800379static ssize_t store_temp_##reg(struct device *dev, \
Jean Delvare34875332007-05-08 17:22:03 +0200380 struct device_attribute *da, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{ \
Jean Delvare34875332007-05-08 17:22:03 +0200382 struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
Jean Delvare7666c132007-05-08 17:22:02 +0200383 struct w83781d_data *data = dev_get_drvdata(dev); \
Jean Delvare34875332007-05-08 17:22:03 +0200384 int nr = attr->index; \
Christian Hohnstaedt5bfedac2007-08-16 11:40:10 +0200385 long val; \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800386 int err = kstrtol(buf, 10, &val); \
387 if (err) \
388 return err; \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100389 mutex_lock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 \
391 if (nr >= 2) { /* TEMP2 and TEMP3 */ \
392 data->temp_##reg##_add[nr-2] = LM75_TEMP_TO_REG(val); \
Jean Delvare31b8dc42007-05-08 17:22:03 +0200393 w83781d_write_value(data, W83781D_REG_TEMP_##REG(nr), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 data->temp_##reg##_add[nr-2]); \
395 } else { /* TEMP1 */ \
396 data->temp_##reg = TEMP_TO_REG(val); \
Jean Delvare31b8dc42007-05-08 17:22:03 +0200397 w83781d_write_value(data, W83781D_REG_TEMP_##REG(nr), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 data->temp_##reg); \
399 } \
400 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100401 mutex_unlock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return count; \
403}
404store_temp_reg(OVER, max);
405store_temp_reg(HYST, max_hyst);
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407#define sysfs_temp_offsets(offset) \
Jean Delvare34875332007-05-08 17:22:03 +0200408static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
409 show_temp, NULL, offset); \
410static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
411 show_temp_max, store_temp_max, offset); \
412static SENSOR_DEVICE_ATTR(temp##offset##_max_hyst, S_IRUGO | S_IWUSR, \
413 show_temp_max_hyst, store_temp_max_hyst, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415sysfs_temp_offsets(1);
416sysfs_temp_offsets(2);
417sysfs_temp_offsets(3);
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400420show_vid_reg(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 struct w83781d_data *data = w83781d_update_device(dev);
423 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
424}
425
Jim Cromie311ce2e2006-09-24 21:22:52 +0200426static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400429show_vrm_reg(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Jean Delvare90d66192007-10-08 18:24:35 +0200431 struct w83781d_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return sprintf(buf, "%ld\n", (long) data->vrm);
433}
434
435static ssize_t
Guenter Roeckc531eb32012-01-15 09:19:16 -0800436store_vrm_reg(struct device *dev, struct device_attribute *attr,
437 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Jean Delvare7666c132007-05-08 17:22:02 +0200439 struct w83781d_data *data = dev_get_drvdata(dev);
Guenter Roeckc531eb32012-01-15 09:19:16 -0800440 unsigned long val;
441 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Guenter Roeckc531eb32012-01-15 09:19:16 -0800443 err = kstrtoul(buf, 10, &val);
444 if (err)
445 return err;
446 data->vrm = SENSORS_LIMIT(val, 0, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 return count;
449}
450
Jim Cromie311ce2e2006-09-24 21:22:52 +0200451static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400454show_alarms_reg(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 struct w83781d_data *data = w83781d_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +0200457 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Jim Cromie311ce2e2006-09-24 21:22:52 +0200460static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL);
461
Jean Delvare7d4a1372007-10-08 18:29:43 +0200462static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
463 char *buf)
464{
465 struct w83781d_data *data = w83781d_update_device(dev);
466 int bitnr = to_sensor_dev_attr(attr)->index;
467 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
468}
469
470/* The W83781D has a single alarm bit for temp2 and temp3 */
471static ssize_t show_temp3_alarm(struct device *dev,
472 struct device_attribute *attr, char *buf)
473{
474 struct w83781d_data *data = w83781d_update_device(dev);
475 int bitnr = (data->type == w83781d) ? 5 : 13;
476 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
477}
478
479static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
480static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
481static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
482static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
483static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
484static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9);
485static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 10);
486static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 16);
487static SENSOR_DEVICE_ATTR(in8_alarm, S_IRUGO, show_alarm, NULL, 17);
488static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6);
489static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7);
490static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11);
491static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
492static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5);
493static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_temp3_alarm, NULL, 0);
494
Guenter Roeckc531eb32012-01-15 09:19:16 -0800495static ssize_t show_beep_mask(struct device *dev,
496 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 struct w83781d_data *data = w83781d_update_device(dev);
499 return sprintf(buf, "%ld\n",
500 (long)BEEP_MASK_FROM_REG(data->beep_mask, data->type));
501}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200504store_beep_mask(struct device *dev, struct device_attribute *attr,
505 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Jean Delvare7666c132007-05-08 17:22:02 +0200507 struct w83781d_data *data = dev_get_drvdata(dev);
Guenter Roeckc531eb32012-01-15 09:19:16 -0800508 unsigned long val;
509 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Guenter Roeckc531eb32012-01-15 09:19:16 -0800511 err = kstrtoul(buf, 10, &val);
512 if (err)
513 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100515 mutex_lock(&data->update_lock);
Jean Delvare2fbbbf12008-10-17 17:51:18 +0200516 data->beep_mask &= 0x8000; /* preserve beep enable */
517 data->beep_mask |= BEEP_MASK_TO_REG(val, data->type);
Jean Delvare34875332007-05-08 17:22:03 +0200518 w83781d_write_value(data, W83781D_REG_BEEP_INTS1,
519 data->beep_mask & 0xff);
Jean Delvare31b8dc42007-05-08 17:22:03 +0200520 w83781d_write_value(data, W83781D_REG_BEEP_INTS2,
Jean Delvare2fbbbf12008-10-17 17:51:18 +0200521 (data->beep_mask >> 8) & 0xff);
Jean Delvare34875332007-05-08 17:22:03 +0200522 if (data->type != w83781d && data->type != as99127f) {
523 w83781d_write_value(data, W83781D_REG_BEEP_INTS3,
524 ((data->beep_mask) >> 16) & 0xff);
525 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100526 mutex_unlock(&data->update_lock);
Jean Delvare34875332007-05-08 17:22:03 +0200527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return count;
529}
530
Jean Delvare34875332007-05-08 17:22:03 +0200531static DEVICE_ATTR(beep_mask, S_IRUGO | S_IWUSR,
532 show_beep_mask, store_beep_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Jean Delvare7d4a1372007-10-08 18:29:43 +0200534static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
535 char *buf)
536{
537 struct w83781d_data *data = w83781d_update_device(dev);
538 int bitnr = to_sensor_dev_attr(attr)->index;
539 return sprintf(buf, "%u\n", (data->beep_mask >> bitnr) & 1);
540}
541
542static ssize_t
543store_beep(struct device *dev, struct device_attribute *attr,
544 const char *buf, size_t count)
545{
546 struct w83781d_data *data = dev_get_drvdata(dev);
547 int bitnr = to_sensor_dev_attr(attr)->index;
Jean Delvare7d4a1372007-10-08 18:29:43 +0200548 u8 reg;
Guenter Roeckc531eb32012-01-15 09:19:16 -0800549 unsigned long bit;
550 int err;
Jean Delvare7d4a1372007-10-08 18:29:43 +0200551
Guenter Roeckc531eb32012-01-15 09:19:16 -0800552 err = kstrtoul(buf, 10, &bit);
553 if (err)
554 return err;
555
Jean Delvare7d4a1372007-10-08 18:29:43 +0200556 if (bit & ~1)
557 return -EINVAL;
558
559 mutex_lock(&data->update_lock);
560 if (bit)
561 data->beep_mask |= (1 << bitnr);
562 else
563 data->beep_mask &= ~(1 << bitnr);
564
565 if (bitnr < 8) {
566 reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS1);
567 if (bit)
568 reg |= (1 << bitnr);
569 else
570 reg &= ~(1 << bitnr);
571 w83781d_write_value(data, W83781D_REG_BEEP_INTS1, reg);
572 } else if (bitnr < 16) {
573 reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS2);
574 if (bit)
575 reg |= (1 << (bitnr - 8));
576 else
577 reg &= ~(1 << (bitnr - 8));
578 w83781d_write_value(data, W83781D_REG_BEEP_INTS2, reg);
579 } else {
580 reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS3);
581 if (bit)
582 reg |= (1 << (bitnr - 16));
583 else
584 reg &= ~(1 << (bitnr - 16));
585 w83781d_write_value(data, W83781D_REG_BEEP_INTS3, reg);
586 }
587 mutex_unlock(&data->update_lock);
588
589 return count;
590}
591
592/* The W83781D has a single beep bit for temp2 and temp3 */
593static ssize_t show_temp3_beep(struct device *dev,
594 struct device_attribute *attr, char *buf)
595{
596 struct w83781d_data *data = w83781d_update_device(dev);
597 int bitnr = (data->type == w83781d) ? 5 : 13;
598 return sprintf(buf, "%u\n", (data->beep_mask >> bitnr) & 1);
599}
600
601static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
602 show_beep, store_beep, 0);
603static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO | S_IWUSR,
604 show_beep, store_beep, 1);
605static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO | S_IWUSR,
606 show_beep, store_beep, 2);
607static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO | S_IWUSR,
608 show_beep, store_beep, 3);
609static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO | S_IWUSR,
610 show_beep, store_beep, 8);
611static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO | S_IWUSR,
612 show_beep, store_beep, 9);
613static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO | S_IWUSR,
614 show_beep, store_beep, 10);
615static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO | S_IWUSR,
616 show_beep, store_beep, 16);
617static SENSOR_DEVICE_ATTR(in8_beep, S_IRUGO | S_IWUSR,
618 show_beep, store_beep, 17);
619static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO | S_IWUSR,
620 show_beep, store_beep, 6);
621static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO | S_IWUSR,
622 show_beep, store_beep, 7);
623static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO | S_IWUSR,
624 show_beep, store_beep, 11);
625static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
626 show_beep, store_beep, 4);
627static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO | S_IWUSR,
628 show_beep, store_beep, 5);
629static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO,
630 show_temp3_beep, store_beep, 13);
Jean Delvare2fbbbf12008-10-17 17:51:18 +0200631static SENSOR_DEVICE_ATTR(beep_enable, S_IRUGO | S_IWUSR,
632 show_beep, store_beep, 15);
Jean Delvare7d4a1372007-10-08 18:29:43 +0200633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200635show_fan_div(struct device *dev, struct device_attribute *da, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Jean Delvare34875332007-05-08 17:22:03 +0200637 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 struct w83781d_data *data = w83781d_update_device(dev);
639 return sprintf(buf, "%ld\n",
Jean Delvare34875332007-05-08 17:22:03 +0200640 (long) DIV_FROM_REG(data->fan_div[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
Guenter Roeckaff6e002012-01-19 11:02:27 -0800643/*
644 * Note: we save and restore the fan minimum here, because its value is
645 * determined in part by the fan divisor. This follows the principle of
646 * least surprise; the user doesn't expect the fan minimum to change just
647 * because the divisor changed.
648 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200650store_fan_div(struct device *dev, struct device_attribute *da,
651 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Jean Delvare34875332007-05-08 17:22:03 +0200653 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvare7666c132007-05-08 17:22:02 +0200654 struct w83781d_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 unsigned long min;
Jean Delvare34875332007-05-08 17:22:03 +0200656 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 u8 reg;
Guenter Roeckc531eb32012-01-15 09:19:16 -0800658 unsigned long val;
659 int err;
660
661 err = kstrtoul(buf, 10, &val);
662 if (err)
663 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100665 mutex_lock(&data->update_lock);
Jean Delvare293c0992007-11-30 23:52:44 +0100666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 /* Save fan_min */
668 min = FAN_FROM_REG(data->fan_min[nr],
669 DIV_FROM_REG(data->fan_div[nr]));
670
671 data->fan_div[nr] = DIV_TO_REG(val, data->type);
672
Guenter Roeckc531eb32012-01-15 09:19:16 -0800673 reg = (w83781d_read_value(data, nr == 2 ?
674 W83781D_REG_PIN : W83781D_REG_VID_FANDIV)
675 & (nr == 0 ? 0xcf : 0x3f))
676 | ((data->fan_div[nr] & 0x03) << (nr == 0 ? 4 : 6));
677 w83781d_write_value(data, nr == 2 ?
678 W83781D_REG_PIN : W83781D_REG_VID_FANDIV, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 /* w83781d and as99127f don't have extended divisor bits */
681 if (data->type != w83781d && data->type != as99127f) {
Jean Delvare31b8dc42007-05-08 17:22:03 +0200682 reg = (w83781d_read_value(data, W83781D_REG_VBAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 & ~(1 << (5 + nr)))
684 | ((data->fan_div[nr] & 0x04) << (3 + nr));
Jean Delvare31b8dc42007-05-08 17:22:03 +0200685 w83781d_write_value(data, W83781D_REG_VBAT, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687
688 /* Restore fan_min */
689 data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvare34875332007-05-08 17:22:03 +0200690 w83781d_write_value(data, W83781D_REG_FAN_MIN(nr), data->fan_min[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100692 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return count;
694}
695
Jean Delvare34875332007-05-08 17:22:03 +0200696static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR,
697 show_fan_div, store_fan_div, 0);
698static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR,
699 show_fan_div, store_fan_div, 1);
700static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR,
701 show_fan_div, store_fan_div, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200704show_pwm(struct device *dev, struct device_attribute *da, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Jean Delvare34875332007-05-08 17:22:03 +0200706 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 struct w83781d_data *data = w83781d_update_device(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200708 return sprintf(buf, "%d\n", (int)data->pwm[attr->index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
711static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200712show_pwm2_enable(struct device *dev, struct device_attribute *da, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714 struct w83781d_data *data = w83781d_update_device(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200715 return sprintf(buf, "%d\n", (int)data->pwm2_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
717
718static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200719store_pwm(struct device *dev, struct device_attribute *da, const char *buf,
720 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Jean Delvare34875332007-05-08 17:22:03 +0200722 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvare7666c132007-05-08 17:22:02 +0200723 struct w83781d_data *data = dev_get_drvdata(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200724 int nr = attr->index;
Guenter Roeckc531eb32012-01-15 09:19:16 -0800725 unsigned long val;
726 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Guenter Roeckc531eb32012-01-15 09:19:16 -0800728 err = kstrtoul(buf, 10, &val);
729 if (err)
730 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100732 mutex_lock(&data->update_lock);
Jean Delvare34875332007-05-08 17:22:03 +0200733 data->pwm[nr] = SENSORS_LIMIT(val, 0, 255);
734 w83781d_write_value(data, W83781D_REG_PWM[nr], data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100735 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return count;
737}
738
739static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200740store_pwm2_enable(struct device *dev, struct device_attribute *da,
741 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Jean Delvare7666c132007-05-08 17:22:02 +0200743 struct w83781d_data *data = dev_get_drvdata(dev);
Guenter Roeckc531eb32012-01-15 09:19:16 -0800744 unsigned long val;
745 u32 reg;
746 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Guenter Roeckc531eb32012-01-15 09:19:16 -0800748 err = kstrtoul(buf, 10, &val);
749 if (err)
750 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100752 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 switch (val) {
755 case 0:
756 case 1:
Jean Delvare31b8dc42007-05-08 17:22:03 +0200757 reg = w83781d_read_value(data, W83781D_REG_PWMCLK12);
758 w83781d_write_value(data, W83781D_REG_PWMCLK12,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 (reg & 0xf7) | (val << 3));
760
Jean Delvare31b8dc42007-05-08 17:22:03 +0200761 reg = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG);
762 w83781d_write_value(data, W83781D_REG_BEEP_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 (reg & 0xef) | (!val << 4));
764
Jean Delvare34875332007-05-08 17:22:03 +0200765 data->pwm2_enable = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 break;
767
768 default:
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100769 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return -EINVAL;
771 }
772
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100773 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return count;
775}
776
Jean Delvare34875332007-05-08 17:22:03 +0200777static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 0);
778static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 1);
779static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 2);
780static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 3);
781/* only PWM2 can be enabled/disabled */
782static DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
783 show_pwm2_enable, store_pwm2_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200786show_sensor(struct device *dev, struct device_attribute *da, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Jean Delvare34875332007-05-08 17:22:03 +0200788 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 struct w83781d_data *data = w83781d_update_device(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200790 return sprintf(buf, "%d\n", (int)data->sens[attr->index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
793static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200794store_sensor(struct device *dev, struct device_attribute *da,
795 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Jean Delvare34875332007-05-08 17:22:03 +0200797 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvare7666c132007-05-08 17:22:02 +0200798 struct w83781d_data *data = dev_get_drvdata(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200799 int nr = attr->index;
Guenter Roeckc531eb32012-01-15 09:19:16 -0800800 unsigned long val;
801 u32 tmp;
802 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Guenter Roeckc531eb32012-01-15 09:19:16 -0800804 err = kstrtoul(buf, 10, &val);
805 if (err)
806 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100808 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 switch (val) {
811 case 1: /* PII/Celeron diode */
Jean Delvare31b8dc42007-05-08 17:22:03 +0200812 tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
813 w83781d_write_value(data, W83781D_REG_SCFG1,
Jean Delvare34875332007-05-08 17:22:03 +0200814 tmp | BIT_SCFG1[nr]);
Jean Delvare31b8dc42007-05-08 17:22:03 +0200815 tmp = w83781d_read_value(data, W83781D_REG_SCFG2);
816 w83781d_write_value(data, W83781D_REG_SCFG2,
Jean Delvare34875332007-05-08 17:22:03 +0200817 tmp | BIT_SCFG2[nr]);
818 data->sens[nr] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 break;
820 case 2: /* 3904 */
Jean Delvare31b8dc42007-05-08 17:22:03 +0200821 tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
822 w83781d_write_value(data, W83781D_REG_SCFG1,
Jean Delvare34875332007-05-08 17:22:03 +0200823 tmp | BIT_SCFG1[nr]);
Jean Delvare31b8dc42007-05-08 17:22:03 +0200824 tmp = w83781d_read_value(data, W83781D_REG_SCFG2);
825 w83781d_write_value(data, W83781D_REG_SCFG2,
Jean Delvare34875332007-05-08 17:22:03 +0200826 tmp & ~BIT_SCFG2[nr]);
827 data->sens[nr] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 break;
Jean Delvareb26f9332007-08-16 14:30:01 +0200829 case W83781D_DEFAULT_BETA:
830 dev_warn(dev, "Sensor type %d is deprecated, please use 4 "
831 "instead\n", W83781D_DEFAULT_BETA);
832 /* fall through */
833 case 4: /* thermistor */
Jean Delvare31b8dc42007-05-08 17:22:03 +0200834 tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
835 w83781d_write_value(data, W83781D_REG_SCFG1,
Jean Delvare34875332007-05-08 17:22:03 +0200836 tmp & ~BIT_SCFG1[nr]);
837 data->sens[nr] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 break;
839 default:
Jean Delvareb26f9332007-08-16 14:30:01 +0200840 dev_err(dev, "Invalid sensor type %ld; must be 1, 2, or 4\n",
841 (long) val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 break;
843 }
844
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100845 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return count;
847}
848
Jean Delvare34875332007-05-08 17:22:03 +0200849static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR,
850 show_sensor, store_sensor, 0);
851static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR,
Mark M. Hoffman393cdad2007-08-09 08:12:46 -0400852 show_sensor, store_sensor, 1);
Jean Delvare34875332007-05-08 17:22:03 +0200853static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR,
Mark M. Hoffman393cdad2007-08-09 08:12:46 -0400854 show_sensor, store_sensor, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Guenter Roeckaff6e002012-01-19 11:02:27 -0800856/*
857 * Assumes that adapter is of I2C, not ISA variety.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 * OTHERWISE DON'T CALL THIS
859 */
860static int
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200861w83781d_detect_subclients(struct i2c_client *new_client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
863 int i, val1 = 0, id;
864 int err;
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200865 int address = new_client->addr;
866 unsigned short sc_addr[2];
867 struct i2c_adapter *adapter = new_client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct w83781d_data *data = i2c_get_clientdata(new_client);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200869 enum chips kind = data->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 id = i2c_adapter_id(adapter);
872
873 if (force_subclients[0] == id && force_subclients[1] == address) {
874 for (i = 2; i <= 3; i++) {
875 if (force_subclients[i] < 0x48 ||
876 force_subclients[i] > 0x4f) {
877 dev_err(&new_client->dev, "Invalid subclient "
878 "address %d; must be 0x48-0x4f\n",
879 force_subclients[i]);
880 err = -EINVAL;
881 goto ERROR_SC_1;
882 }
883 }
Jean Delvare31b8dc42007-05-08 17:22:03 +0200884 w83781d_write_value(data, W83781D_REG_I2C_SUBADDR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 (force_subclients[2] & 0x07) |
886 ((force_subclients[3] & 0x07) << 4));
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200887 sc_addr[0] = force_subclients[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 } else {
Jean Delvare31b8dc42007-05-08 17:22:03 +0200889 val1 = w83781d_read_value(data, W83781D_REG_I2C_SUBADDR);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200890 sc_addr[0] = 0x48 + (val1 & 0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892
893 if (kind != w83783s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (force_subclients[0] == id &&
895 force_subclients[1] == address) {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200896 sc_addr[1] = force_subclients[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 } else {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200898 sc_addr[1] = 0x48 + ((val1 >> 4) & 0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200900 if (sc_addr[0] == sc_addr[1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 dev_err(&new_client->dev,
902 "Duplicate addresses 0x%x for subclients.\n",
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200903 sc_addr[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 err = -EBUSY;
905 goto ERROR_SC_2;
906 }
907 }
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 for (i = 0; i <= 1; i++) {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200910 data->lm75[i] = i2c_new_dummy(adapter, sc_addr[i]);
911 if (!data->lm75[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 dev_err(&new_client->dev, "Subclient %d "
913 "registration at address 0x%x "
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200914 "failed.\n", i, sc_addr[i]);
915 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (i == 1)
917 goto ERROR_SC_3;
918 goto ERROR_SC_2;
919 }
920 if (kind == w83783s)
921 break;
922 }
923
924 return 0;
925
926/* Undo inits in case of errors */
927ERROR_SC_3:
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200928 i2c_unregister_device(data->lm75[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929ERROR_SC_2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930ERROR_SC_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return err;
932}
933
Jean Delvare34875332007-05-08 17:22:03 +0200934#define IN_UNIT_ATTRS(X) \
935 &sensor_dev_attr_in##X##_input.dev_attr.attr, \
936 &sensor_dev_attr_in##X##_min.dev_attr.attr, \
Jean Delvare293c0992007-11-30 23:52:44 +0100937 &sensor_dev_attr_in##X##_max.dev_attr.attr, \
Jean Delvare7d4a1372007-10-08 18:29:43 +0200938 &sensor_dev_attr_in##X##_alarm.dev_attr.attr, \
939 &sensor_dev_attr_in##X##_beep.dev_attr.attr
Jim Cromie311ce2e2006-09-24 21:22:52 +0200940
Jean Delvare34875332007-05-08 17:22:03 +0200941#define FAN_UNIT_ATTRS(X) \
942 &sensor_dev_attr_fan##X##_input.dev_attr.attr, \
943 &sensor_dev_attr_fan##X##_min.dev_attr.attr, \
Jean Delvare7d4a1372007-10-08 18:29:43 +0200944 &sensor_dev_attr_fan##X##_div.dev_attr.attr, \
945 &sensor_dev_attr_fan##X##_alarm.dev_attr.attr, \
946 &sensor_dev_attr_fan##X##_beep.dev_attr.attr
Jim Cromie311ce2e2006-09-24 21:22:52 +0200947
Jean Delvare34875332007-05-08 17:22:03 +0200948#define TEMP_UNIT_ATTRS(X) \
949 &sensor_dev_attr_temp##X##_input.dev_attr.attr, \
950 &sensor_dev_attr_temp##X##_max.dev_attr.attr, \
Jean Delvare7d4a1372007-10-08 18:29:43 +0200951 &sensor_dev_attr_temp##X##_max_hyst.dev_attr.attr, \
952 &sensor_dev_attr_temp##X##_alarm.dev_attr.attr, \
953 &sensor_dev_attr_temp##X##_beep.dev_attr.attr
Jim Cromie311ce2e2006-09-24 21:22:52 +0200954
Guenter Roeckc531eb32012-01-15 09:19:16 -0800955static struct attribute *w83781d_attributes[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200956 IN_UNIT_ATTRS(0),
957 IN_UNIT_ATTRS(2),
958 IN_UNIT_ATTRS(3),
959 IN_UNIT_ATTRS(4),
960 IN_UNIT_ATTRS(5),
961 IN_UNIT_ATTRS(6),
962 FAN_UNIT_ATTRS(1),
963 FAN_UNIT_ATTRS(2),
964 FAN_UNIT_ATTRS(3),
965 TEMP_UNIT_ATTRS(1),
966 TEMP_UNIT_ATTRS(2),
967 &dev_attr_cpu0_vid.attr,
968 &dev_attr_vrm.attr,
969 &dev_attr_alarms.attr,
970 &dev_attr_beep_mask.attr,
Jean Delvare2fbbbf12008-10-17 17:51:18 +0200971 &sensor_dev_attr_beep_enable.dev_attr.attr,
Jim Cromie311ce2e2006-09-24 21:22:52 +0200972 NULL
973};
974static const struct attribute_group w83781d_group = {
975 .attrs = w83781d_attributes,
976};
977
Guenter Roeck79501332012-01-16 20:45:16 -0800978static struct attribute *w83781d_attributes_in1[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200979 IN_UNIT_ATTRS(1),
Guenter Roeck79501332012-01-16 20:45:16 -0800980 NULL
981};
982static const struct attribute_group w83781d_group_in1 = {
983 .attrs = w83781d_attributes_in1,
984};
985
986static struct attribute *w83781d_attributes_in78[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200987 IN_UNIT_ATTRS(7),
988 IN_UNIT_ATTRS(8),
Guenter Roeck79501332012-01-16 20:45:16 -0800989 NULL
990};
991static const struct attribute_group w83781d_group_in78 = {
992 .attrs = w83781d_attributes_in78,
993};
994
995static struct attribute *w83781d_attributes_temp3[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200996 TEMP_UNIT_ATTRS(3),
Guenter Roeck79501332012-01-16 20:45:16 -0800997 NULL
998};
999static const struct attribute_group w83781d_group_temp3 = {
1000 .attrs = w83781d_attributes_temp3,
1001};
1002
1003static struct attribute *w83781d_attributes_pwm12[] = {
Jean Delvare34875332007-05-08 17:22:03 +02001004 &sensor_dev_attr_pwm1.dev_attr.attr,
1005 &sensor_dev_attr_pwm2.dev_attr.attr,
Guenter Roeck79501332012-01-16 20:45:16 -08001006 &dev_attr_pwm2_enable.attr,
1007 NULL
1008};
1009static const struct attribute_group w83781d_group_pwm12 = {
1010 .attrs = w83781d_attributes_pwm12,
1011};
1012
1013static struct attribute *w83781d_attributes_pwm34[] = {
Jean Delvare34875332007-05-08 17:22:03 +02001014 &sensor_dev_attr_pwm3.dev_attr.attr,
1015 &sensor_dev_attr_pwm4.dev_attr.attr,
Guenter Roeck79501332012-01-16 20:45:16 -08001016 NULL
1017};
1018static const struct attribute_group w83781d_group_pwm34 = {
1019 .attrs = w83781d_attributes_pwm34,
1020};
1021
1022static struct attribute *w83781d_attributes_other[] = {
Jean Delvare34875332007-05-08 17:22:03 +02001023 &sensor_dev_attr_temp1_type.dev_attr.attr,
1024 &sensor_dev_attr_temp2_type.dev_attr.attr,
1025 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jim Cromie311ce2e2006-09-24 21:22:52 +02001026 NULL
1027};
Guenter Roeck79501332012-01-16 20:45:16 -08001028static const struct attribute_group w83781d_group_other = {
1029 .attrs = w83781d_attributes_other,
Jim Cromie311ce2e2006-09-24 21:22:52 +02001030};
1031
Jean Delvare7666c132007-05-08 17:22:02 +02001032/* No clean up is done on error, it's up to the caller */
1033static int
1034w83781d_create_files(struct device *dev, int kind, int is_isa)
1035{
1036 int err;
1037
Guenter Roeckc531eb32012-01-15 09:19:16 -08001038 err = sysfs_create_group(&dev->kobj, &w83781d_group);
1039 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001040 return err;
1041
1042 if (kind != w83783s) {
Guenter Roeck79501332012-01-16 20:45:16 -08001043 err = sysfs_create_group(&dev->kobj, &w83781d_group_in1);
1044 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001045 return err;
1046 }
1047 if (kind != as99127f && kind != w83781d && kind != w83783s) {
Guenter Roeck79501332012-01-16 20:45:16 -08001048 err = sysfs_create_group(&dev->kobj, &w83781d_group_in78);
1049 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001050 return err;
1051 }
1052 if (kind != w83783s) {
Guenter Roeck79501332012-01-16 20:45:16 -08001053 err = sysfs_create_group(&dev->kobj, &w83781d_group_temp3);
1054 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001055 return err;
Jean Delvare7d4a1372007-10-08 18:29:43 +02001056
Jean Delvare7768aa72007-10-25 13:11:01 +02001057 if (kind != w83781d) {
Jean Delvare7d4a1372007-10-08 18:29:43 +02001058 err = sysfs_chmod_file(&dev->kobj,
1059 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
1060 S_IRUGO | S_IWUSR);
1061 if (err)
1062 return err;
Jean Delvare7768aa72007-10-25 13:11:01 +02001063 }
Jean Delvare7666c132007-05-08 17:22:02 +02001064 }
1065
1066 if (kind != w83781d && kind != as99127f) {
Guenter Roeck79501332012-01-16 20:45:16 -08001067 err = sysfs_create_group(&dev->kobj, &w83781d_group_pwm12);
1068 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001069 return err;
1070 }
1071 if (kind == w83782d && !is_isa) {
Guenter Roeck79501332012-01-16 20:45:16 -08001072 err = sysfs_create_group(&dev->kobj, &w83781d_group_pwm34);
1073 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001074 return err;
1075 }
1076
1077 if (kind != as99127f && kind != w83781d) {
Guenter Roeck79501332012-01-16 20:45:16 -08001078 err = device_create_file(dev,
1079 &sensor_dev_attr_temp1_type.dev_attr);
1080 if (err)
1081 return err;
1082 err = device_create_file(dev,
1083 &sensor_dev_attr_temp2_type.dev_attr);
1084 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001085 return err;
1086 if (kind != w83783s) {
Guenter Roeckc531eb32012-01-15 09:19:16 -08001087 err = device_create_file(dev,
Guenter Roeck79501332012-01-16 20:45:16 -08001088 &sensor_dev_attr_temp3_type.dev_attr);
Guenter Roeckc531eb32012-01-15 09:19:16 -08001089 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001090 return err;
1091 }
1092 }
1093
Jean Delvare7666c132007-05-08 17:22:02 +02001094 return 0;
1095}
1096
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001097/* Return 0 if detection is successful, -ENODEV otherwise */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098static int
Jean Delvare310ec792009-12-14 21:17:23 +01001099w83781d_detect(struct i2c_client *client, struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Jean Delvarebab2bf42009-12-09 20:35:54 +01001101 int val1, val2;
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001102 struct w83781d_data *isa = w83781d_data_if_isa();
1103 struct i2c_adapter *adapter = client->adapter;
1104 int address = client->addr;
Jean Delvarebab2bf42009-12-09 20:35:54 +01001105 const char *client_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 enum vendor { winbond, asus } vendid;
1107
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001108 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
1109 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Guenter Roeckaff6e002012-01-19 11:02:27 -08001111 /*
1112 * We block updates of the ISA device to minimize the risk of
1113 * concurrent access to the same W83781D chip through different
1114 * interfaces.
1115 */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001116 if (isa)
1117 mutex_lock(&isa->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Jean Delvarebab2bf42009-12-09 20:35:54 +01001119 if (i2c_smbus_read_byte_data(client, W83781D_REG_CONFIG) & 0x80) {
1120 dev_dbg(&adapter->dev,
1121 "Detection of w83781d chip failed at step 3\n");
1122 goto err_nodev;
1123 }
1124
1125 val1 = i2c_smbus_read_byte_data(client, W83781D_REG_BANK);
1126 val2 = i2c_smbus_read_byte_data(client, W83781D_REG_CHIPMAN);
1127 /* Check for Winbond or Asus ID if in bank 0 */
1128 if (!(val1 & 0x07) &&
1129 ((!(val1 & 0x80) && val2 != 0xa3 && val2 != 0xc3) ||
Guenter Roeckc531eb32012-01-15 09:19:16 -08001130 ((val1 & 0x80) && val2 != 0x5c && val2 != 0x12))) {
Jean Delvarebab2bf42009-12-09 20:35:54 +01001131 dev_dbg(&adapter->dev,
1132 "Detection of w83781d chip failed at step 4\n");
1133 goto err_nodev;
1134 }
Guenter Roeckaff6e002012-01-19 11:02:27 -08001135 /*
1136 * If Winbond SMBus, check address at 0x48.
1137 * Asus doesn't support, except for as99127f rev.2
1138 */
Jean Delvarebab2bf42009-12-09 20:35:54 +01001139 if ((!(val1 & 0x80) && val2 == 0xa3) ||
Guenter Roeckc531eb32012-01-15 09:19:16 -08001140 ((val1 & 0x80) && val2 == 0x5c)) {
Jean Delvarebab2bf42009-12-09 20:35:54 +01001141 if (i2c_smbus_read_byte_data(client, W83781D_REG_I2C_ADDR)
1142 != address) {
1143 dev_dbg(&adapter->dev,
1144 "Detection of w83781d chip failed at step 5\n");
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001145 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148
Jean Delvarebab2bf42009-12-09 20:35:54 +01001149 /* Put it now into bank 0 and Vendor ID High Byte */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001150 i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
1151 (i2c_smbus_read_byte_data(client, W83781D_REG_BANK)
1152 & 0x78) | 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Jean Delvarebab2bf42009-12-09 20:35:54 +01001154 /* Get the vendor ID */
1155 val2 = i2c_smbus_read_byte_data(client, W83781D_REG_CHIPMAN);
1156 if (val2 == 0x5c)
1157 vendid = winbond;
1158 else if (val2 == 0x12)
1159 vendid = asus;
1160 else {
1161 dev_dbg(&adapter->dev,
1162 "w83781d chip vendor is neither Winbond nor Asus\n");
1163 goto err_nodev;
1164 }
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 /* Determine the chip type. */
Jean Delvarebab2bf42009-12-09 20:35:54 +01001167 val1 = i2c_smbus_read_byte_data(client, W83781D_REG_WCHIPID);
1168 if ((val1 == 0x10 || val1 == 0x11) && vendid == winbond)
1169 client_name = "w83781d";
1170 else if (val1 == 0x30 && vendid == winbond)
1171 client_name = "w83782d";
1172 else if (val1 == 0x40 && vendid == winbond && address == 0x2d)
1173 client_name = "w83783s";
1174 else if (val1 == 0x31)
1175 client_name = "as99127f";
1176 else
1177 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Jean Delvarebab2bf42009-12-09 20:35:54 +01001179 if (val1 <= 0x30 && w83781d_alias_detect(client, val1)) {
1180 dev_dbg(&adapter->dev, "Device at 0x%02x appears to "
1181 "be the same as ISA device\n", address);
1182 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
1184
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001185 if (isa)
1186 mutex_unlock(&isa->update_lock);
1187
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001188 strlcpy(info->type, client_name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001190 return 0;
1191
1192 err_nodev:
1193 if (isa)
1194 mutex_unlock(&isa->update_lock);
1195 return -ENODEV;
1196}
1197
Guenter Roeck79501332012-01-16 20:45:16 -08001198static void w83781d_remove_files(struct device *dev)
1199{
1200 sysfs_remove_group(&dev->kobj, &w83781d_group);
1201 sysfs_remove_group(&dev->kobj, &w83781d_group_in1);
1202 sysfs_remove_group(&dev->kobj, &w83781d_group_in78);
1203 sysfs_remove_group(&dev->kobj, &w83781d_group_temp3);
1204 sysfs_remove_group(&dev->kobj, &w83781d_group_pwm12);
1205 sysfs_remove_group(&dev->kobj, &w83781d_group_pwm34);
1206 sysfs_remove_group(&dev->kobj, &w83781d_group_other);
1207}
1208
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001209static int
1210w83781d_probe(struct i2c_client *client, const struct i2c_device_id *id)
1211{
1212 struct device *dev = &client->dev;
1213 struct w83781d_data *data;
1214 int err;
1215
1216 data = kzalloc(sizeof(struct w83781d_data), GFP_KERNEL);
1217 if (!data) {
1218 err = -ENOMEM;
1219 goto ERROR1;
1220 }
1221
1222 i2c_set_clientdata(client, data);
1223 mutex_init(&data->lock);
1224 mutex_init(&data->update_lock);
1225
1226 data->type = id->driver_data;
1227 data->client = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 /* attach secondary i2c lm75-like clients */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001230 err = w83781d_detect_subclients(client);
1231 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001232 goto ERROR3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 /* Initialize the chip */
Jean Delvare7666c132007-05-08 17:22:02 +02001235 w83781d_init_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 /* Register sysfs hooks */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001238 err = w83781d_create_files(dev, data->type, 0);
Jean Delvare7666c132007-05-08 17:22:02 +02001239 if (err)
Jim Cromie311ce2e2006-09-24 21:22:52 +02001240 goto ERROR4;
1241
Tony Jones1beeffe2007-08-20 13:46:20 -07001242 data->hwmon_dev = hwmon_device_register(dev);
1243 if (IS_ERR(data->hwmon_dev)) {
1244 err = PTR_ERR(data->hwmon_dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001245 goto ERROR4;
1246 }
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return 0;
1249
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001250ERROR4:
Guenter Roeck79501332012-01-16 20:45:16 -08001251 w83781d_remove_files(dev);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001252 if (data->lm75[0])
1253 i2c_unregister_device(data->lm75[0]);
1254 if (data->lm75[1])
1255 i2c_unregister_device(data->lm75[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256ERROR3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 kfree(data);
1258ERROR1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return err;
1260}
1261
1262static int
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001263w83781d_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001265 struct w83781d_data *data = i2c_get_clientdata(client);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001266 struct device *dev = &client->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001268 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeck79501332012-01-16 20:45:16 -08001269 w83781d_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001271 if (data->lm75[0])
1272 i2c_unregister_device(data->lm75[0]);
1273 if (data->lm75[1])
1274 i2c_unregister_device(data->lm75[1]);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001275
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001276 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 return 0;
1279}
1280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281static int
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001282w83781d_read_value_i2c(struct w83781d_data *data, u16 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001284 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001285 int res, bank;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 struct i2c_client *cl;
1287
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001288 bank = (reg >> 8) & 0x0f;
1289 if (bank > 2)
1290 /* switch banks */
1291 i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
1292 bank);
1293 if (bank == 0 || bank > 2) {
1294 res = i2c_smbus_read_byte_data(client, reg & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 } else {
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001296 /* switch to subclient */
1297 cl = data->lm75[bank - 1];
1298 /* convert from ISA to LM75 I2C addresses */
1299 switch (reg & 0xff) {
1300 case 0x50: /* TEMP */
Jean Delvare90f41022011-11-04 12:00:47 +01001301 res = i2c_smbus_read_word_swapped(cl, 0);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001302 break;
1303 case 0x52: /* CONFIG */
1304 res = i2c_smbus_read_byte_data(cl, 1);
1305 break;
1306 case 0x53: /* HYST */
Jean Delvare90f41022011-11-04 12:00:47 +01001307 res = i2c_smbus_read_word_swapped(cl, 2);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001308 break;
1309 case 0x55: /* OVER */
1310 default:
Jean Delvare90f41022011-11-04 12:00:47 +01001311 res = i2c_smbus_read_word_swapped(cl, 3);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001312 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001315 if (bank > 2)
1316 i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0);
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return res;
1319}
1320
1321static int
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001322w83781d_write_value_i2c(struct w83781d_data *data, u16 reg, u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001324 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001325 int bank;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 struct i2c_client *cl;
1327
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001328 bank = (reg >> 8) & 0x0f;
1329 if (bank > 2)
1330 /* switch banks */
1331 i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
1332 bank);
1333 if (bank == 0 || bank > 2) {
1334 i2c_smbus_write_byte_data(client, reg & 0xff,
1335 value & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 } else {
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001337 /* switch to subclient */
1338 cl = data->lm75[bank - 1];
1339 /* convert from ISA to LM75 I2C addresses */
1340 switch (reg & 0xff) {
1341 case 0x52: /* CONFIG */
1342 i2c_smbus_write_byte_data(cl, 1, value & 0xff);
1343 break;
1344 case 0x53: /* HYST */
Jean Delvare90f41022011-11-04 12:00:47 +01001345 i2c_smbus_write_word_swapped(cl, 2, value);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001346 break;
1347 case 0x55: /* OVER */
Jean Delvare90f41022011-11-04 12:00:47 +01001348 i2c_smbus_write_word_swapped(cl, 3, value);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001349 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001352 if (bank > 2)
1353 i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0);
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return 0;
1356}
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358static void
Jean Delvare7666c132007-05-08 17:22:02 +02001359w83781d_init_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Jean Delvare7666c132007-05-08 17:22:02 +02001361 struct w83781d_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 int i, p;
1363 int type = data->type;
1364 u8 tmp;
1365
Guenter Roeckaff6e002012-01-19 11:02:27 -08001366 if (reset && type != as99127f) { /*
1367 * this resets registers we don't have
1368 * documentation for on the as99127f
1369 */
1370 /*
1371 * Resetting the chip has been the default for a long time,
1372 * but it causes the BIOS initializations (fan clock dividers,
1373 * thermal sensor types...) to be lost, so it is now optional.
1374 * It might even go away if nobody reports it as being useful,
1375 * as I see very little reason why this would be needed at
1376 * all.
1377 */
Jean Delvare7666c132007-05-08 17:22:02 +02001378 dev_info(dev, "If reset=1 solved a problem you were "
Jean Delvarefabddcd2006-02-05 23:26:51 +01001379 "having, please report!\n");
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 /* save these registers */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001382 i = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG);
1383 p = w83781d_read_value(data, W83781D_REG_PWMCLK12);
Guenter Roeckaff6e002012-01-19 11:02:27 -08001384 /*
1385 * Reset all except Watchdog values and last conversion values
1386 * This sets fan-divs to 2, among others
1387 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001388 w83781d_write_value(data, W83781D_REG_CONFIG, 0x80);
Guenter Roeckaff6e002012-01-19 11:02:27 -08001389 /*
1390 * Restore the registers and disable power-on abnormal beep.
1391 * This saves FAN 1/2/3 input/output values set by BIOS.
1392 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001393 w83781d_write_value(data, W83781D_REG_BEEP_CONFIG, i | 0x80);
1394 w83781d_write_value(data, W83781D_REG_PWMCLK12, p);
Guenter Roeckc531eb32012-01-15 09:19:16 -08001395 /*
1396 * Disable master beep-enable (reset turns it on).
1397 * Individual beep_mask should be reset to off but for some
1398 * reason disabling this bit helps some people not get beeped
1399 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001400 w83781d_write_value(data, W83781D_REG_BEEP_INTS2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402
Guenter Roeckaff6e002012-01-19 11:02:27 -08001403 /*
1404 * Disable power-on abnormal beep, as advised by the datasheet.
1405 * Already done if reset=1.
1406 */
Jean Delvarefabddcd2006-02-05 23:26:51 +01001407 if (init && !reset && type != as99127f) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001408 i = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG);
1409 w83781d_write_value(data, W83781D_REG_BEEP_CONFIG, i | 0x80);
Jean Delvarefabddcd2006-02-05 23:26:51 +01001410 }
1411
Jean Delvare303760b2005-07-31 21:52:01 +02001412 data->vrm = vid_which_vrm();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 if ((type != w83781d) && (type != as99127f)) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001415 tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 for (i = 1; i <= 3; i++) {
1417 if (!(tmp & BIT_SCFG1[i - 1])) {
Jean Delvareb26f9332007-08-16 14:30:01 +02001418 data->sens[i - 1] = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 } else {
1420 if (w83781d_read_value
Jean Delvare31b8dc42007-05-08 17:22:03 +02001421 (data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 W83781D_REG_SCFG2) & BIT_SCFG2[i - 1])
1423 data->sens[i - 1] = 1;
1424 else
1425 data->sens[i - 1] = 2;
1426 }
Jean Delvare7c7a5302005-06-16 19:24:14 +02001427 if (type == w83783s && i == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 break;
1429 }
1430 }
1431
1432 if (init && type != as99127f) {
1433 /* Enable temp2 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001434 tmp = w83781d_read_value(data, W83781D_REG_TEMP2_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (tmp & 0x01) {
Jean Delvare7666c132007-05-08 17:22:02 +02001436 dev_warn(dev, "Enabling temp2, readings "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 "might not make sense\n");
Jean Delvare31b8dc42007-05-08 17:22:03 +02001438 w83781d_write_value(data, W83781D_REG_TEMP2_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 tmp & 0xfe);
1440 }
1441
1442 /* Enable temp3 */
Jean Delvare7c7a5302005-06-16 19:24:14 +02001443 if (type != w83783s) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001444 tmp = w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 W83781D_REG_TEMP3_CONFIG);
1446 if (tmp & 0x01) {
Jean Delvare7666c132007-05-08 17:22:02 +02001447 dev_warn(dev, "Enabling temp3, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 "readings might not make sense\n");
Jean Delvare31b8dc42007-05-08 17:22:03 +02001449 w83781d_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 W83781D_REG_TEMP3_CONFIG, tmp & 0xfe);
1451 }
1452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454
1455 /* Start monitoring */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001456 w83781d_write_value(data, W83781D_REG_CONFIG,
1457 (w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 W83781D_REG_CONFIG) & 0xf7)
1459 | 0x01);
Jean Delvare7666c132007-05-08 17:22:02 +02001460
1461 /* A few vars need to be filled upon startup */
Jean Delvare34875332007-05-08 17:22:03 +02001462 for (i = 0; i < 3; i++) {
1463 data->fan_min[i] = w83781d_read_value(data,
Jean Delvare7666c132007-05-08 17:22:02 +02001464 W83781D_REG_FAN_MIN(i));
1465 }
Jean Delvare7666c132007-05-08 17:22:02 +02001466
1467 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
1470static struct w83781d_data *w83781d_update_device(struct device *dev)
1471{
Jean Delvare7666c132007-05-08 17:22:02 +02001472 struct w83781d_data *data = dev_get_drvdata(dev);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001473 struct i2c_client *client = data->client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 int i;
1475
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001476 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
1479 || !data->valid) {
1480 dev_dbg(dev, "Starting device update\n");
1481
1482 for (i = 0; i <= 8; i++) {
Jean Delvare7c7a5302005-06-16 19:24:14 +02001483 if (data->type == w83783s && i == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 continue; /* 783S has no in1 */
1485 data->in[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001486 w83781d_read_value(data, W83781D_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 data->in_min[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001488 w83781d_read_value(data, W83781D_REG_IN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 data->in_max[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001490 w83781d_read_value(data, W83781D_REG_IN_MAX(i));
Jean Delvare05663362007-11-30 23:51:24 +01001491 if ((data->type != w83782d) && (i == 6))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 break;
1493 }
Jean Delvare34875332007-05-08 17:22:03 +02001494 for (i = 0; i < 3; i++) {
1495 data->fan[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001496 w83781d_read_value(data, W83781D_REG_FAN(i));
Jean Delvare34875332007-05-08 17:22:03 +02001497 data->fan_min[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001498 w83781d_read_value(data, W83781D_REG_FAN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
1500 if (data->type != w83781d && data->type != as99127f) {
Jean Delvare34875332007-05-08 17:22:03 +02001501 for (i = 0; i < 4; i++) {
1502 data->pwm[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001503 w83781d_read_value(data,
Jean Delvare34875332007-05-08 17:22:03 +02001504 W83781D_REG_PWM[i]);
Jean Delvare848ddf12009-05-08 20:27:28 +02001505 /* Only W83782D on SMBus has PWM3 and PWM4 */
1506 if ((data->type != w83782d || !client)
Jean Delvare34875332007-05-08 17:22:03 +02001507 && i == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 break;
1509 }
1510 /* Only PWM2 can be disabled */
Jean Delvare34875332007-05-08 17:22:03 +02001511 data->pwm2_enable = (w83781d_read_value(data,
Guenter Roeckc531eb32012-01-15 09:19:16 -08001512 W83781D_REG_PWMCLK12) & 0x08) >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
1514
Jean Delvare31b8dc42007-05-08 17:22:03 +02001515 data->temp = w83781d_read_value(data, W83781D_REG_TEMP(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 data->temp_max =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001517 w83781d_read_value(data, W83781D_REG_TEMP_OVER(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 data->temp_max_hyst =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001519 w83781d_read_value(data, W83781D_REG_TEMP_HYST(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 data->temp_add[0] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001521 w83781d_read_value(data, W83781D_REG_TEMP(2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 data->temp_max_add[0] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001523 w83781d_read_value(data, W83781D_REG_TEMP_OVER(2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 data->temp_max_hyst_add[0] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001525 w83781d_read_value(data, W83781D_REG_TEMP_HYST(2));
Jean Delvare7c7a5302005-06-16 19:24:14 +02001526 if (data->type != w83783s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 data->temp_add[1] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001528 w83781d_read_value(data, W83781D_REG_TEMP(3));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 data->temp_max_add[1] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001530 w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 W83781D_REG_TEMP_OVER(3));
1532 data->temp_max_hyst_add[1] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001533 w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 W83781D_REG_TEMP_HYST(3));
1535 }
Jean Delvare31b8dc42007-05-08 17:22:03 +02001536 i = w83781d_read_value(data, W83781D_REG_VID_FANDIV);
Jean Delvare7c7a5302005-06-16 19:24:14 +02001537 data->vid = i & 0x0f;
Jean Delvare31b8dc42007-05-08 17:22:03 +02001538 data->vid |= (w83781d_read_value(data,
Jean Delvare7c7a5302005-06-16 19:24:14 +02001539 W83781D_REG_CHIPID) & 0x01) << 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 data->fan_div[0] = (i >> 4) & 0x03;
1541 data->fan_div[1] = (i >> 6) & 0x03;
Jean Delvare31b8dc42007-05-08 17:22:03 +02001542 data->fan_div[2] = (w83781d_read_value(data,
Jean Delvare7c7a5302005-06-16 19:24:14 +02001543 W83781D_REG_PIN) >> 6) & 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 if ((data->type != w83781d) && (data->type != as99127f)) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001545 i = w83781d_read_value(data, W83781D_REG_VBAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 data->fan_div[0] |= (i >> 3) & 0x04;
1547 data->fan_div[1] |= (i >> 4) & 0x04;
Jean Delvare7c7a5302005-06-16 19:24:14 +02001548 data->fan_div[2] |= (i >> 5) & 0x04;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
Jean Delvare05663362007-11-30 23:51:24 +01001550 if (data->type == w83782d) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001551 data->alarms = w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001552 W83782D_REG_ALARM1)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001553 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001554 W83782D_REG_ALARM2) << 8)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001555 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001556 W83782D_REG_ALARM3) << 16);
1557 } else if (data->type == w83783s) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001558 data->alarms = w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001559 W83782D_REG_ALARM1)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001560 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001561 W83782D_REG_ALARM2) << 8);
1562 } else {
Guenter Roeckaff6e002012-01-19 11:02:27 -08001563 /*
1564 * No real-time status registers, fall back to
1565 * interrupt status registers
1566 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001567 data->alarms = w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001568 W83781D_REG_ALARM1)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001569 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001570 W83781D_REG_ALARM2) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
Jean Delvare31b8dc42007-05-08 17:22:03 +02001572 i = w83781d_read_value(data, W83781D_REG_BEEP_INTS2);
Jean Delvare2fbbbf12008-10-17 17:51:18 +02001573 data->beep_mask = (i << 8) +
Jean Delvare31b8dc42007-05-08 17:22:03 +02001574 w83781d_read_value(data, W83781D_REG_BEEP_INTS1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 if ((data->type != w83781d) && (data->type != as99127f)) {
1576 data->beep_mask |=
Jean Delvare31b8dc42007-05-08 17:22:03 +02001577 w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 W83781D_REG_BEEP_INTS3) << 16;
1579 }
1580 data->last_updated = jiffies;
1581 data->valid = 1;
1582 }
1583
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001584 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 return data;
1587}
1588
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001589static const struct i2c_device_id w83781d_ids[] = {
1590 { "w83781d", w83781d, },
1591 { "w83782d", w83782d, },
1592 { "w83783s", w83783s, },
1593 { "as99127f", as99127f },
1594 { /* LIST END */ }
1595};
1596MODULE_DEVICE_TABLE(i2c, w83781d_ids);
1597
1598static struct i2c_driver w83781d_driver = {
1599 .class = I2C_CLASS_HWMON,
1600 .driver = {
1601 .name = "w83781d",
1602 },
1603 .probe = w83781d_probe,
1604 .remove = w83781d_remove,
1605 .id_table = w83781d_ids,
1606 .detect = w83781d_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +01001607 .address_list = normal_i2c,
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001608};
1609
1610/*
1611 * ISA related code
1612 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001613#ifdef CONFIG_ISA
1614
1615/* ISA device, if found */
1616static struct platform_device *pdev;
1617
1618static unsigned short isa_address = 0x290;
1619
Guenter Roeckaff6e002012-01-19 11:02:27 -08001620/*
1621 * I2C devices get this name attribute automatically, but for ISA devices
1622 * we must create it by ourselves.
1623 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001624static ssize_t
1625show_name(struct device *dev, struct device_attribute *devattr, char *buf)
1626{
1627 struct w83781d_data *data = dev_get_drvdata(dev);
Jean Delvare360782d2008-10-17 17:51:19 +02001628 return sprintf(buf, "%s\n", data->name);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001629}
1630static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1631
1632static struct w83781d_data *w83781d_data_if_isa(void)
1633{
1634 return pdev ? platform_get_drvdata(pdev) : NULL;
1635}
1636
1637/* Returns 1 if the I2C chip appears to be an alias of the ISA chip */
1638static int w83781d_alias_detect(struct i2c_client *client, u8 chipid)
1639{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001640 struct w83781d_data *isa;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001641 int i;
1642
1643 if (!pdev) /* No ISA chip */
1644 return 0;
1645
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001646 isa = platform_get_drvdata(pdev);
1647
1648 if (w83781d_read_value(isa, W83781D_REG_I2C_ADDR) != client->addr)
1649 return 0; /* Address doesn't match */
1650 if (w83781d_read_value(isa, W83781D_REG_WCHIPID) != chipid)
1651 return 0; /* Chip type doesn't match */
1652
Guenter Roeckaff6e002012-01-19 11:02:27 -08001653 /*
1654 * We compare all the limit registers, the config register and the
1655 * interrupt mask registers
1656 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001657 for (i = 0x2b; i <= 0x3d; i++) {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001658 if (w83781d_read_value(isa, i) !=
1659 i2c_smbus_read_byte_data(client, i))
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001660 return 0;
1661 }
1662 if (w83781d_read_value(isa, W83781D_REG_CONFIG) !=
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001663 i2c_smbus_read_byte_data(client, W83781D_REG_CONFIG))
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001664 return 0;
1665 for (i = 0x43; i <= 0x46; i++) {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001666 if (w83781d_read_value(isa, i) !=
1667 i2c_smbus_read_byte_data(client, i))
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001668 return 0;
1669 }
1670
1671 return 1;
1672}
1673
1674static int
1675w83781d_read_value_isa(struct w83781d_data *data, u16 reg)
1676{
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001677 int word_sized, res;
1678
1679 word_sized = (((reg & 0xff00) == 0x100)
1680 || ((reg & 0xff00) == 0x200))
1681 && (((reg & 0x00ff) == 0x50)
1682 || ((reg & 0x00ff) == 0x53)
1683 || ((reg & 0x00ff) == 0x55));
1684 if (reg & 0xff00) {
1685 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001686 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001687 outb_p(reg >> 8,
Jean Delvare360782d2008-10-17 17:51:19 +02001688 data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001689 }
Jean Delvare360782d2008-10-17 17:51:19 +02001690 outb_p(reg & 0xff, data->isa_addr + W83781D_ADDR_REG_OFFSET);
1691 res = inb_p(data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001692 if (word_sized) {
1693 outb_p((reg & 0xff) + 1,
Jean Delvare360782d2008-10-17 17:51:19 +02001694 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001695 res =
Jean Delvare360782d2008-10-17 17:51:19 +02001696 (res << 8) + inb_p(data->isa_addr +
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001697 W83781D_DATA_REG_OFFSET);
1698 }
1699 if (reg & 0xff00) {
1700 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001701 data->isa_addr + W83781D_ADDR_REG_OFFSET);
1702 outb_p(0, data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001703 }
1704 return res;
1705}
1706
1707static void
1708w83781d_write_value_isa(struct w83781d_data *data, u16 reg, u16 value)
1709{
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001710 int word_sized;
1711
1712 word_sized = (((reg & 0xff00) == 0x100)
1713 || ((reg & 0xff00) == 0x200))
1714 && (((reg & 0x00ff) == 0x53)
1715 || ((reg & 0x00ff) == 0x55));
1716 if (reg & 0xff00) {
1717 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001718 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001719 outb_p(reg >> 8,
Jean Delvare360782d2008-10-17 17:51:19 +02001720 data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001721 }
Jean Delvare360782d2008-10-17 17:51:19 +02001722 outb_p(reg & 0xff, data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001723 if (word_sized) {
1724 outb_p(value >> 8,
Jean Delvare360782d2008-10-17 17:51:19 +02001725 data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001726 outb_p((reg & 0xff) + 1,
Jean Delvare360782d2008-10-17 17:51:19 +02001727 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001728 }
Jean Delvare360782d2008-10-17 17:51:19 +02001729 outb_p(value & 0xff, data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001730 if (reg & 0xff00) {
1731 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001732 data->isa_addr + W83781D_ADDR_REG_OFFSET);
1733 outb_p(0, data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001734 }
1735}
1736
Guenter Roeckaff6e002012-01-19 11:02:27 -08001737/*
1738 * The SMBus locks itself, usually, but nothing may access the Winbond between
1739 * bank switches. ISA access must always be locked explicitly!
1740 * We ignore the W83781D BUSY flag at this moment - it could lead to deadlocks,
1741 * would slow down the W83781D access and should not be necessary.
1742 * There are some ugly typecasts here, but the good news is - they should
1743 * nowhere else be necessary!
1744 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001745static int
1746w83781d_read_value(struct w83781d_data *data, u16 reg)
1747{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001748 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001749 int res;
1750
1751 mutex_lock(&data->lock);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001752 if (client)
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001753 res = w83781d_read_value_i2c(data, reg);
1754 else
1755 res = w83781d_read_value_isa(data, reg);
1756 mutex_unlock(&data->lock);
1757 return res;
1758}
1759
1760static int
1761w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value)
1762{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001763 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001764
1765 mutex_lock(&data->lock);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001766 if (client)
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001767 w83781d_write_value_i2c(data, reg, value);
1768 else
1769 w83781d_write_value_isa(data, reg, value);
1770 mutex_unlock(&data->lock);
1771 return 0;
1772}
1773
1774static int __devinit
1775w83781d_isa_probe(struct platform_device *pdev)
1776{
1777 int err, reg;
1778 struct w83781d_data *data;
1779 struct resource *res;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001780
1781 /* Reserve the ISA region */
1782 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
1783 if (!request_region(res->start + W83781D_ADDR_REG_OFFSET, 2,
1784 "w83781d")) {
1785 err = -EBUSY;
1786 goto exit;
1787 }
1788
1789 data = kzalloc(sizeof(struct w83781d_data), GFP_KERNEL);
1790 if (!data) {
1791 err = -ENOMEM;
1792 goto exit_release_region;
1793 }
1794 mutex_init(&data->lock);
Jean Delvare360782d2008-10-17 17:51:19 +02001795 data->isa_addr = res->start;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001796 platform_set_drvdata(pdev, data);
1797
1798 reg = w83781d_read_value(data, W83781D_REG_WCHIPID);
1799 switch (reg) {
1800 case 0x30:
1801 data->type = w83782d;
Jean Delvare360782d2008-10-17 17:51:19 +02001802 data->name = "w83782d";
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001803 break;
1804 default:
1805 data->type = w83781d;
Jean Delvare360782d2008-10-17 17:51:19 +02001806 data->name = "w83781d";
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001807 }
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001808
1809 /* Initialize the W83781D chip */
1810 w83781d_init_device(&pdev->dev);
1811
1812 /* Register sysfs hooks */
1813 err = w83781d_create_files(&pdev->dev, data->type, 1);
1814 if (err)
1815 goto exit_remove_files;
1816
1817 err = device_create_file(&pdev->dev, &dev_attr_name);
1818 if (err)
1819 goto exit_remove_files;
1820
1821 data->hwmon_dev = hwmon_device_register(&pdev->dev);
1822 if (IS_ERR(data->hwmon_dev)) {
1823 err = PTR_ERR(data->hwmon_dev);
1824 goto exit_remove_files;
1825 }
1826
1827 return 0;
1828
1829 exit_remove_files:
Guenter Roeck79501332012-01-16 20:45:16 -08001830 w83781d_remove_files(&pdev->dev);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001831 device_remove_file(&pdev->dev, &dev_attr_name);
1832 kfree(data);
1833 exit_release_region:
1834 release_region(res->start + W83781D_ADDR_REG_OFFSET, 2);
1835 exit:
1836 return err;
1837}
1838
1839static int __devexit
1840w83781d_isa_remove(struct platform_device *pdev)
1841{
1842 struct w83781d_data *data = platform_get_drvdata(pdev);
1843
1844 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeck79501332012-01-16 20:45:16 -08001845 w83781d_remove_files(&pdev->dev);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001846 device_remove_file(&pdev->dev, &dev_attr_name);
Jean Delvare360782d2008-10-17 17:51:19 +02001847 release_region(data->isa_addr + W83781D_ADDR_REG_OFFSET, 2);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001848 kfree(data);
1849
1850 return 0;
1851}
1852
1853static struct platform_driver w83781d_isa_driver = {
1854 .driver = {
1855 .owner = THIS_MODULE,
1856 .name = "w83781d",
1857 },
1858 .probe = w83781d_isa_probe,
1859 .remove = __devexit_p(w83781d_isa_remove),
1860};
1861
Jean Delvare7666c132007-05-08 17:22:02 +02001862/* return 1 if a supported chip is found, 0 otherwise */
1863static int __init
1864w83781d_isa_found(unsigned short address)
1865{
1866 int val, save, found = 0;
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001867 int port;
Jean Delvare7666c132007-05-08 17:22:02 +02001868
Guenter Roeckaff6e002012-01-19 11:02:27 -08001869 /*
1870 * Some boards declare base+0 to base+7 as a PNP device, some base+4
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001871 * to base+7 and some base+5 to base+6. So we better request each port
Guenter Roeckaff6e002012-01-19 11:02:27 -08001872 * individually for the probing phase.
1873 */
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001874 for (port = address; port < address + W83781D_EXTENT; port++) {
1875 if (!request_region(port, 1, "w83781d")) {
Joe Perches1ca28212011-01-12 21:55:11 +01001876 pr_debug("Failed to request port 0x%x\n", port);
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001877 goto release;
1878 }
Jean Delvare2961cb22008-03-09 13:34:28 +01001879 }
Jean Delvare7666c132007-05-08 17:22:02 +02001880
1881#define REALLY_SLOW_IO
Guenter Roeckaff6e002012-01-19 11:02:27 -08001882 /*
1883 * We need the timeouts for at least some W83781D-like
1884 * chips. But only if we read 'undefined' registers.
1885 */
Jean Delvare7666c132007-05-08 17:22:02 +02001886 val = inb_p(address + 1);
1887 if (inb_p(address + 2) != val
1888 || inb_p(address + 3) != val
1889 || inb_p(address + 7) != val) {
Joe Perches1ca28212011-01-12 21:55:11 +01001890 pr_debug("Detection failed at step %d\n", 1);
Jean Delvare7666c132007-05-08 17:22:02 +02001891 goto release;
1892 }
1893#undef REALLY_SLOW_IO
1894
Guenter Roeckaff6e002012-01-19 11:02:27 -08001895 /*
1896 * We should be able to change the 7 LSB of the address port. The
1897 * MSB (busy flag) should be clear initially, set after the write.
1898 */
Jean Delvare7666c132007-05-08 17:22:02 +02001899 save = inb_p(address + W83781D_ADDR_REG_OFFSET);
1900 if (save & 0x80) {
Joe Perches1ca28212011-01-12 21:55:11 +01001901 pr_debug("Detection failed at step %d\n", 2);
Jean Delvare7666c132007-05-08 17:22:02 +02001902 goto release;
1903 }
1904 val = ~save & 0x7f;
1905 outb_p(val, address + W83781D_ADDR_REG_OFFSET);
1906 if (inb_p(address + W83781D_ADDR_REG_OFFSET) != (val | 0x80)) {
1907 outb_p(save, address + W83781D_ADDR_REG_OFFSET);
Joe Perches1ca28212011-01-12 21:55:11 +01001908 pr_debug("Detection failed at step %d\n", 3);
Jean Delvare7666c132007-05-08 17:22:02 +02001909 goto release;
1910 }
1911
1912 /* We found a device, now see if it could be a W83781D */
1913 outb_p(W83781D_REG_CONFIG, address + W83781D_ADDR_REG_OFFSET);
1914 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1915 if (val & 0x80) {
Joe Perches1ca28212011-01-12 21:55:11 +01001916 pr_debug("Detection failed at step %d\n", 4);
Jean Delvare7666c132007-05-08 17:22:02 +02001917 goto release;
1918 }
1919 outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET);
1920 save = inb_p(address + W83781D_DATA_REG_OFFSET);
1921 outb_p(W83781D_REG_CHIPMAN, address + W83781D_ADDR_REG_OFFSET);
1922 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1923 if ((!(save & 0x80) && (val != 0xa3))
1924 || ((save & 0x80) && (val != 0x5c))) {
Joe Perches1ca28212011-01-12 21:55:11 +01001925 pr_debug("Detection failed at step %d\n", 5);
Jean Delvare7666c132007-05-08 17:22:02 +02001926 goto release;
1927 }
1928 outb_p(W83781D_REG_I2C_ADDR, address + W83781D_ADDR_REG_OFFSET);
1929 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1930 if (val < 0x03 || val > 0x77) { /* Not a valid I2C address */
Joe Perches1ca28212011-01-12 21:55:11 +01001931 pr_debug("Detection failed at step %d\n", 6);
Jean Delvare7666c132007-05-08 17:22:02 +02001932 goto release;
1933 }
1934
1935 /* The busy flag should be clear again */
1936 if (inb_p(address + W83781D_ADDR_REG_OFFSET) & 0x80) {
Joe Perches1ca28212011-01-12 21:55:11 +01001937 pr_debug("Detection failed at step %d\n", 7);
Jean Delvare7666c132007-05-08 17:22:02 +02001938 goto release;
1939 }
1940
1941 /* Determine the chip type */
1942 outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET);
1943 save = inb_p(address + W83781D_DATA_REG_OFFSET);
1944 outb_p(save & 0xf8, address + W83781D_DATA_REG_OFFSET);
1945 outb_p(W83781D_REG_WCHIPID, address + W83781D_ADDR_REG_OFFSET);
1946 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1947 if ((val & 0xfe) == 0x10 /* W83781D */
Jean Delvare05663362007-11-30 23:51:24 +01001948 || val == 0x30) /* W83782D */
Jean Delvare7666c132007-05-08 17:22:02 +02001949 found = 1;
1950
1951 if (found)
Joe Perches1ca28212011-01-12 21:55:11 +01001952 pr_info("Found a %s chip at %#x\n",
Jean Delvare7666c132007-05-08 17:22:02 +02001953 val == 0x30 ? "W83782D" : "W83781D", (int)address);
1954
1955 release:
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001956 for (port--; port >= address; port--)
1957 release_region(port, 1);
Jean Delvare7666c132007-05-08 17:22:02 +02001958 return found;
1959}
1960
1961static int __init
1962w83781d_isa_device_add(unsigned short address)
1963{
1964 struct resource res = {
1965 .start = address,
Jean Delvare15bde2f2007-08-29 10:39:57 +02001966 .end = address + W83781D_EXTENT - 1,
Jean Delvare7666c132007-05-08 17:22:02 +02001967 .name = "w83781d",
1968 .flags = IORESOURCE_IO,
1969 };
1970 int err;
1971
1972 pdev = platform_device_alloc("w83781d", address);
1973 if (!pdev) {
1974 err = -ENOMEM;
Joe Perches1ca28212011-01-12 21:55:11 +01001975 pr_err("Device allocation failed\n");
Jean Delvare7666c132007-05-08 17:22:02 +02001976 goto exit;
1977 }
1978
1979 err = platform_device_add_resources(pdev, &res, 1);
1980 if (err) {
Joe Perches1ca28212011-01-12 21:55:11 +01001981 pr_err("Device resource addition failed (%d)\n", err);
Jean Delvare7666c132007-05-08 17:22:02 +02001982 goto exit_device_put;
1983 }
1984
1985 err = platform_device_add(pdev);
1986 if (err) {
Joe Perches1ca28212011-01-12 21:55:11 +01001987 pr_err("Device addition failed (%d)\n", err);
Jean Delvare7666c132007-05-08 17:22:02 +02001988 goto exit_device_put;
1989 }
1990
1991 return 0;
1992
1993 exit_device_put:
1994 platform_device_put(pdev);
1995 exit:
1996 pdev = NULL;
1997 return err;
1998}
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000static int __init
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002001w83781d_isa_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002{
Jean Delvarefde09502005-07-19 23:51:07 +02002003 int res;
2004
Jean Delvare7666c132007-05-08 17:22:02 +02002005 if (w83781d_isa_found(isa_address)) {
2006 res = platform_driver_register(&w83781d_isa_driver);
2007 if (res)
Jean Delvarec6566202008-10-17 17:51:18 +02002008 goto exit;
Jean Delvare7666c132007-05-08 17:22:02 +02002009
2010 /* Sets global pdev as a side effect */
2011 res = w83781d_isa_device_add(isa_address);
2012 if (res)
2013 goto exit_unreg_isa_driver;
2014 }
Jean Delvarefde09502005-07-19 23:51:07 +02002015
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002016 return 0;
2017
2018exit_unreg_isa_driver:
2019 platform_driver_unregister(&w83781d_isa_driver);
2020exit:
2021 return res;
2022}
2023
Geert Uytterhoevendd56b632008-10-26 17:04:38 +01002024static void
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002025w83781d_isa_unregister(void)
2026{
2027 if (pdev) {
2028 platform_device_unregister(pdev);
2029 platform_driver_unregister(&w83781d_isa_driver);
2030 }
2031}
2032#else /* !CONFIG_ISA */
2033
2034static struct w83781d_data *w83781d_data_if_isa(void)
2035{
2036 return NULL;
2037}
2038
2039static int
2040w83781d_alias_detect(struct i2c_client *client, u8 chipid)
2041{
2042 return 0;
2043}
2044
2045static int
2046w83781d_read_value(struct w83781d_data *data, u16 reg)
2047{
2048 int res;
2049
2050 mutex_lock(&data->lock);
2051 res = w83781d_read_value_i2c(data, reg);
2052 mutex_unlock(&data->lock);
2053
2054 return res;
2055}
2056
2057static int
2058w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value)
2059{
2060 mutex_lock(&data->lock);
2061 w83781d_write_value_i2c(data, reg, value);
2062 mutex_unlock(&data->lock);
2063
2064 return 0;
2065}
2066
2067static int __init
2068w83781d_isa_register(void)
2069{
2070 return 0;
2071}
2072
Geert Uytterhoevendd56b632008-10-26 17:04:38 +01002073static void
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002074w83781d_isa_unregister(void)
2075{
2076}
2077#endif /* CONFIG_ISA */
2078
2079static int __init
2080sensors_w83781d_init(void)
2081{
2082 int res;
2083
Guenter Roeckaff6e002012-01-19 11:02:27 -08002084 /*
2085 * We register the ISA device first, so that we can skip the
2086 * registration of an I2C interface to the same device.
2087 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002088 res = w83781d_isa_register();
2089 if (res)
2090 goto exit;
2091
Jean Delvarec6566202008-10-17 17:51:18 +02002092 res = i2c_add_driver(&w83781d_driver);
2093 if (res)
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002094 goto exit_unreg_isa;
Jean Delvarec6566202008-10-17 17:51:18 +02002095
Jean Delvarefde09502005-07-19 23:51:07 +02002096 return 0;
Jean Delvare7666c132007-05-08 17:22:02 +02002097
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002098 exit_unreg_isa:
2099 w83781d_isa_unregister();
Jean Delvare7666c132007-05-08 17:22:02 +02002100 exit:
2101 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102}
2103
2104static void __exit
2105sensors_w83781d_exit(void)
2106{
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002107 w83781d_isa_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 i2c_del_driver(&w83781d_driver);
2109}
2110
2111MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, "
2112 "Philip Edelbrock <phil@netroedge.com>, "
2113 "and Mark Studebaker <mdsxyz123@yahoo.com>");
2114MODULE_DESCRIPTION("W83781D driver");
2115MODULE_LICENSE("GPL");
2116
2117module_init(sensors_w83781d_init);
2118module_exit(sensors_w83781d_exit);