blob: aeec5b1d81c93d10c81c7d79d1ef65f3996123f2 [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 *
Jean Delvare4101ece2012-11-05 21:54:40 +010027 * Chip #vin #fanin #pwm #temp wchipid vendid i2c ISA
Guenter Roeckaff6e002012-01-19 11:02:27 -080028 * 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 */
Guenter Roeck2a844c12013-01-09 08:09:34 -0800162#define IN_TO_REG(val) clamp_val(((val) + 8) / 16, 0, 255)
Jean Delvare474d00a2007-05-08 17:22:03 +0200163#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;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800170 rpm = clamp_val(rpm, 1, 1000000);
171 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
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
Guenter Roeck2a844c12013-01-09 08:09:34 -0800184#define TEMP_TO_REG(val) clamp_val((val) / 1000, -127, 128)
Jean Delvare474d00a2007-05-08 17:22:03 +0200185#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;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800198 val = clamp_val(val, 1,
199 ((type == w83781d || type == as99127f) ? 8 : 128)) >> 1;
Grant Coadyabc01922005-05-12 13:41:51 +1000200 for (i = 0; i < 7; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (val == 0)
202 break;
203 val >>= 1;
204 }
Jean Delvare474d00a2007-05-08 17:22:03 +0200205 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208struct w83781d_data {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200209 struct i2c_client *client;
Tony Jones1beeffe2007-08-20 13:46:20 -0700210 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100211 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 enum chips type;
213
Jean Delvare360782d2008-10-17 17:51:19 +0200214 /* For ISA device only */
215 const char *name;
216 int isa_addr;
217
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100218 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 char valid; /* !=0 if following fields are valid */
220 unsigned long last_updated; /* In jiffies */
221
222 struct i2c_client *lm75[2]; /* for secondary I2C addresses */
223 /* array of 2 pointers to subclients */
224
225 u8 in[9]; /* Register value - 8 & 9 for 782D only */
226 u8 in_max[9]; /* Register value - 8 & 9 for 782D only */
227 u8 in_min[9]; /* Register value - 8 & 9 for 782D only */
228 u8 fan[3]; /* Register value */
229 u8 fan_min[3]; /* Register value */
Jean Delvare474d00a2007-05-08 17:22:03 +0200230 s8 temp; /* Register value */
231 s8 temp_max; /* Register value */
232 s8 temp_max_hyst; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 u16 temp_add[2]; /* Register value */
234 u16 temp_max_add[2]; /* Register value */
235 u16 temp_max_hyst_add[2]; /* Register value */
236 u8 fan_div[3]; /* Register encoding, shifted right */
237 u8 vid; /* Register encoding, combined */
238 u32 alarms; /* Register encoding, combined */
239 u32 beep_mask; /* Register encoding, combined */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 u8 pwm[4]; /* Register value */
Jean Delvare34875332007-05-08 17:22:03 +0200241 u8 pwm2_enable; /* Boolean */
Guenter Roeckaff6e002012-01-19 11:02:27 -0800242 u16 sens[3]; /*
243 * 782D/783S only.
244 * 1 = pentium diode; 2 = 3904 diode;
245 * 4 = thermistor
246 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 u8 vrm;
248};
249
Wolfgang Grandegger443850c2008-10-17 17:51:18 +0200250static struct w83781d_data *w83781d_data_if_isa(void);
251static int w83781d_alias_detect(struct i2c_client *client, u8 chipid);
252
Jean Delvare31b8dc42007-05-08 17:22:03 +0200253static int w83781d_read_value(struct w83781d_data *data, u16 reg);
254static int w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255static struct w83781d_data *w83781d_update_device(struct device *dev);
Jean Delvare7666c132007-05-08 17:22:02 +0200256static void w83781d_init_device(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/* following are the sysfs callback functions */
259#define show_in_reg(reg) \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800260static ssize_t show_##reg(struct device *dev, struct device_attribute *da, \
Jean Delvare34875332007-05-08 17:22:03 +0200261 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{ \
Jean Delvare34875332007-05-08 17:22:03 +0200263 struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 struct w83781d_data *data = w83781d_update_device(dev); \
Jean Delvare34875332007-05-08 17:22:03 +0200265 return sprintf(buf, "%ld\n", \
266 (long)IN_FROM_REG(data->reg[attr->index])); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268show_in_reg(in);
269show_in_reg(in_min);
270show_in_reg(in_max);
271
272#define store_in_reg(REG, reg) \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800273static ssize_t store_in_##reg(struct device *dev, struct device_attribute \
Jean Delvare34875332007-05-08 17:22:03 +0200274 *da, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{ \
Jean Delvare34875332007-05-08 17:22:03 +0200276 struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
Jean Delvare7666c132007-05-08 17:22:02 +0200277 struct w83781d_data *data = dev_get_drvdata(dev); \
Jean Delvare34875332007-05-08 17:22:03 +0200278 int nr = attr->index; \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800279 unsigned long val; \
280 int err = kstrtoul(buf, 10, &val); \
281 if (err) \
282 return err; \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100283 mutex_lock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 data->in_##reg[nr] = IN_TO_REG(val); \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800285 w83781d_write_value(data, W83781D_REG_IN_##REG(nr), \
286 data->in_##reg[nr]); \
287 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100288 mutex_unlock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return count; \
290}
291store_in_reg(MIN, min);
292store_in_reg(MAX, max);
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294#define sysfs_in_offsets(offset) \
Jean Delvare34875332007-05-08 17:22:03 +0200295static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
296 show_in, NULL, offset); \
297static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
298 show_in_min, store_in_min, offset); \
299static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
300 show_in_max, store_in_max, offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302sysfs_in_offsets(0);
303sysfs_in_offsets(1);
304sysfs_in_offsets(2);
305sysfs_in_offsets(3);
306sysfs_in_offsets(4);
307sysfs_in_offsets(5);
308sysfs_in_offsets(6);
309sysfs_in_offsets(7);
310sysfs_in_offsets(8);
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312#define show_fan_reg(reg) \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800313static ssize_t show_##reg(struct device *dev, struct device_attribute *da, \
Jean Delvare34875332007-05-08 17:22:03 +0200314 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{ \
Jean Delvare34875332007-05-08 17:22:03 +0200316 struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct w83781d_data *data = w83781d_update_device(dev); \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800318 return sprintf(buf, "%ld\n", \
Jean Delvare34875332007-05-08 17:22:03 +0200319 FAN_FROM_REG(data->reg[attr->index], \
320 DIV_FROM_REG(data->fan_div[attr->index]))); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322show_fan_reg(fan);
323show_fan_reg(fan_min);
324
325static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200326store_fan_min(struct device *dev, struct device_attribute *da,
327 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Jean Delvare34875332007-05-08 17:22:03 +0200329 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvare7666c132007-05-08 17:22:02 +0200330 struct w83781d_data *data = dev_get_drvdata(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200331 int nr = attr->index;
Guenter Roeckc531eb32012-01-15 09:19:16 -0800332 unsigned long val;
333 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Guenter Roeckc531eb32012-01-15 09:19:16 -0800335 err = kstrtoul(buf, 10, &val);
336 if (err)
337 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100339 mutex_lock(&data->update_lock);
Jean Delvare34875332007-05-08 17:22:03 +0200340 data->fan_min[nr] =
341 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvare31b8dc42007-05-08 17:22:03 +0200342 w83781d_write_value(data, W83781D_REG_FAN_MIN(nr),
Jean Delvare34875332007-05-08 17:22:03 +0200343 data->fan_min[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100345 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return count;
347}
348
Jean Delvare34875332007-05-08 17:22:03 +0200349static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0);
350static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO | S_IWUSR,
351 show_fan_min, store_fan_min, 0);
352static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, show_fan, NULL, 1);
353static SENSOR_DEVICE_ATTR(fan2_min, S_IRUGO | S_IWUSR,
354 show_fan_min, store_fan_min, 1);
355static SENSOR_DEVICE_ATTR(fan3_input, S_IRUGO, show_fan, NULL, 2);
356static SENSOR_DEVICE_ATTR(fan3_min, S_IRUGO | S_IWUSR,
357 show_fan_min, store_fan_min, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359#define show_temp_reg(reg) \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800360static ssize_t show_##reg(struct device *dev, struct device_attribute *da, \
Jean Delvare34875332007-05-08 17:22:03 +0200361 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{ \
Jean Delvare34875332007-05-08 17:22:03 +0200363 struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 struct w83781d_data *data = w83781d_update_device(dev); \
Jean Delvare34875332007-05-08 17:22:03 +0200365 int nr = attr->index; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (nr >= 2) { /* TEMP2 and TEMP3 */ \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800367 return sprintf(buf, "%d\n", \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 LM75_TEMP_FROM_REG(data->reg##_add[nr-2])); \
369 } else { /* TEMP1 */ \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800370 return sprintf(buf, "%ld\n", (long)TEMP_FROM_REG(data->reg)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 } \
372}
373show_temp_reg(temp);
374show_temp_reg(temp_max);
375show_temp_reg(temp_max_hyst);
376
377#define store_temp_reg(REG, reg) \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800378static ssize_t store_temp_##reg(struct device *dev, \
Jean Delvare34875332007-05-08 17:22:03 +0200379 struct device_attribute *da, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{ \
Jean Delvare34875332007-05-08 17:22:03 +0200381 struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
Jean Delvare7666c132007-05-08 17:22:02 +0200382 struct w83781d_data *data = dev_get_drvdata(dev); \
Jean Delvare34875332007-05-08 17:22:03 +0200383 int nr = attr->index; \
Christian Hohnstaedt5bfedac2007-08-16 11:40:10 +0200384 long val; \
Guenter Roeckc531eb32012-01-15 09:19:16 -0800385 int err = kstrtol(buf, 10, &val); \
386 if (err) \
387 return err; \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100388 mutex_lock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 \
390 if (nr >= 2) { /* TEMP2 and TEMP3 */ \
391 data->temp_##reg##_add[nr-2] = LM75_TEMP_TO_REG(val); \
Jean Delvare31b8dc42007-05-08 17:22:03 +0200392 w83781d_write_value(data, W83781D_REG_TEMP_##REG(nr), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 data->temp_##reg##_add[nr-2]); \
394 } else { /* TEMP1 */ \
395 data->temp_##reg = TEMP_TO_REG(val); \
Jean Delvare31b8dc42007-05-08 17:22:03 +0200396 w83781d_write_value(data, W83781D_REG_TEMP_##REG(nr), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 data->temp_##reg); \
398 } \
399 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100400 mutex_unlock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return count; \
402}
403store_temp_reg(OVER, max);
404store_temp_reg(HYST, max_hyst);
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#define sysfs_temp_offsets(offset) \
Jean Delvare34875332007-05-08 17:22:03 +0200407static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
408 show_temp, NULL, offset); \
409static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
410 show_temp_max, store_temp_max, offset); \
411static SENSOR_DEVICE_ATTR(temp##offset##_max_hyst, S_IRUGO | S_IWUSR, \
412 show_temp_max_hyst, store_temp_max_hyst, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414sysfs_temp_offsets(1);
415sysfs_temp_offsets(2);
416sysfs_temp_offsets(3);
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400419show_vid_reg(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 struct w83781d_data *data = w83781d_update_device(dev);
422 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
423}
424
Jim Cromie311ce2e2006-09-24 21:22:52 +0200425static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400428show_vrm_reg(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Jean Delvare90d66192007-10-08 18:24:35 +0200430 struct w83781d_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return sprintf(buf, "%ld\n", (long) data->vrm);
432}
433
434static ssize_t
Guenter Roeckc531eb32012-01-15 09:19:16 -0800435store_vrm_reg(struct device *dev, struct device_attribute *attr,
436 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Jean Delvare7666c132007-05-08 17:22:02 +0200438 struct w83781d_data *data = dev_get_drvdata(dev);
Guenter Roeckc531eb32012-01-15 09:19:16 -0800439 unsigned long val;
440 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Guenter Roeckc531eb32012-01-15 09:19:16 -0800442 err = kstrtoul(buf, 10, &val);
443 if (err)
444 return err;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800445 data->vrm = clamp_val(val, 0, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 return count;
448}
449
Jim Cromie311ce2e2006-09-24 21:22:52 +0200450static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452static ssize_t
Yani Ioannoue404e272005-05-17 06:42:58 -0400453show_alarms_reg(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 struct w83781d_data *data = w83781d_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +0200456 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Jim Cromie311ce2e2006-09-24 21:22:52 +0200459static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL);
460
Jean Delvare7d4a1372007-10-08 18:29:43 +0200461static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
462 char *buf)
463{
464 struct w83781d_data *data = w83781d_update_device(dev);
465 int bitnr = to_sensor_dev_attr(attr)->index;
466 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
467}
468
469/* The W83781D has a single alarm bit for temp2 and temp3 */
470static ssize_t show_temp3_alarm(struct device *dev,
471 struct device_attribute *attr, char *buf)
472{
473 struct w83781d_data *data = w83781d_update_device(dev);
474 int bitnr = (data->type == w83781d) ? 5 : 13;
475 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
476}
477
478static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
479static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
480static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
481static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
482static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
483static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9);
484static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 10);
485static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 16);
486static SENSOR_DEVICE_ATTR(in8_alarm, S_IRUGO, show_alarm, NULL, 17);
487static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6);
488static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7);
489static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11);
490static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
491static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5);
492static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_temp3_alarm, NULL, 0);
493
Guenter Roeckc531eb32012-01-15 09:19:16 -0800494static ssize_t show_beep_mask(struct device *dev,
495 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
497 struct w83781d_data *data = w83781d_update_device(dev);
498 return sprintf(buf, "%ld\n",
499 (long)BEEP_MASK_FROM_REG(data->beep_mask, data->type));
500}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200503store_beep_mask(struct device *dev, struct device_attribute *attr,
504 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Jean Delvare7666c132007-05-08 17:22:02 +0200506 struct w83781d_data *data = dev_get_drvdata(dev);
Guenter Roeckc531eb32012-01-15 09:19:16 -0800507 unsigned long val;
508 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Guenter Roeckc531eb32012-01-15 09:19:16 -0800510 err = kstrtoul(buf, 10, &val);
511 if (err)
512 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100514 mutex_lock(&data->update_lock);
Jean Delvare2fbbbf12008-10-17 17:51:18 +0200515 data->beep_mask &= 0x8000; /* preserve beep enable */
516 data->beep_mask |= BEEP_MASK_TO_REG(val, data->type);
Jean Delvare34875332007-05-08 17:22:03 +0200517 w83781d_write_value(data, W83781D_REG_BEEP_INTS1,
518 data->beep_mask & 0xff);
Jean Delvare31b8dc42007-05-08 17:22:03 +0200519 w83781d_write_value(data, W83781D_REG_BEEP_INTS2,
Jean Delvare2fbbbf12008-10-17 17:51:18 +0200520 (data->beep_mask >> 8) & 0xff);
Jean Delvare34875332007-05-08 17:22:03 +0200521 if (data->type != w83781d && data->type != as99127f) {
522 w83781d_write_value(data, W83781D_REG_BEEP_INTS3,
523 ((data->beep_mask) >> 16) & 0xff);
524 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100525 mutex_unlock(&data->update_lock);
Jean Delvare34875332007-05-08 17:22:03 +0200526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return count;
528}
529
Jean Delvare34875332007-05-08 17:22:03 +0200530static DEVICE_ATTR(beep_mask, S_IRUGO | S_IWUSR,
531 show_beep_mask, store_beep_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Jean Delvare7d4a1372007-10-08 18:29:43 +0200533static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
534 char *buf)
535{
536 struct w83781d_data *data = w83781d_update_device(dev);
537 int bitnr = to_sensor_dev_attr(attr)->index;
538 return sprintf(buf, "%u\n", (data->beep_mask >> bitnr) & 1);
539}
540
541static ssize_t
542store_beep(struct device *dev, struct device_attribute *attr,
543 const char *buf, size_t count)
544{
545 struct w83781d_data *data = dev_get_drvdata(dev);
546 int bitnr = to_sensor_dev_attr(attr)->index;
Jean Delvare7d4a1372007-10-08 18:29:43 +0200547 u8 reg;
Guenter Roeckc531eb32012-01-15 09:19:16 -0800548 unsigned long bit;
549 int err;
Jean Delvare7d4a1372007-10-08 18:29:43 +0200550
Guenter Roeckc531eb32012-01-15 09:19:16 -0800551 err = kstrtoul(buf, 10, &bit);
552 if (err)
553 return err;
554
Jean Delvare7d4a1372007-10-08 18:29:43 +0200555 if (bit & ~1)
556 return -EINVAL;
557
558 mutex_lock(&data->update_lock);
559 if (bit)
560 data->beep_mask |= (1 << bitnr);
561 else
562 data->beep_mask &= ~(1 << bitnr);
563
564 if (bitnr < 8) {
565 reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS1);
566 if (bit)
567 reg |= (1 << bitnr);
568 else
569 reg &= ~(1 << bitnr);
570 w83781d_write_value(data, W83781D_REG_BEEP_INTS1, reg);
571 } else if (bitnr < 16) {
572 reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS2);
573 if (bit)
574 reg |= (1 << (bitnr - 8));
575 else
576 reg &= ~(1 << (bitnr - 8));
577 w83781d_write_value(data, W83781D_REG_BEEP_INTS2, reg);
578 } else {
579 reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS3);
580 if (bit)
581 reg |= (1 << (bitnr - 16));
582 else
583 reg &= ~(1 << (bitnr - 16));
584 w83781d_write_value(data, W83781D_REG_BEEP_INTS3, reg);
585 }
586 mutex_unlock(&data->update_lock);
587
588 return count;
589}
590
591/* The W83781D has a single beep bit for temp2 and temp3 */
592static ssize_t show_temp3_beep(struct device *dev,
593 struct device_attribute *attr, char *buf)
594{
595 struct w83781d_data *data = w83781d_update_device(dev);
596 int bitnr = (data->type == w83781d) ? 5 : 13;
597 return sprintf(buf, "%u\n", (data->beep_mask >> bitnr) & 1);
598}
599
600static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
601 show_beep, store_beep, 0);
602static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO | S_IWUSR,
603 show_beep, store_beep, 1);
604static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO | S_IWUSR,
605 show_beep, store_beep, 2);
606static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO | S_IWUSR,
607 show_beep, store_beep, 3);
608static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO | S_IWUSR,
609 show_beep, store_beep, 8);
610static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO | S_IWUSR,
611 show_beep, store_beep, 9);
612static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO | S_IWUSR,
613 show_beep, store_beep, 10);
614static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO | S_IWUSR,
615 show_beep, store_beep, 16);
616static SENSOR_DEVICE_ATTR(in8_beep, S_IRUGO | S_IWUSR,
617 show_beep, store_beep, 17);
618static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO | S_IWUSR,
619 show_beep, store_beep, 6);
620static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO | S_IWUSR,
621 show_beep, store_beep, 7);
622static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO | S_IWUSR,
623 show_beep, store_beep, 11);
624static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
625 show_beep, store_beep, 4);
626static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO | S_IWUSR,
627 show_beep, store_beep, 5);
628static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO,
629 show_temp3_beep, store_beep, 13);
Jean Delvare2fbbbf12008-10-17 17:51:18 +0200630static SENSOR_DEVICE_ATTR(beep_enable, S_IRUGO | S_IWUSR,
631 show_beep, store_beep, 15);
Jean Delvare7d4a1372007-10-08 18:29:43 +0200632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200634show_fan_div(struct device *dev, struct device_attribute *da, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Jean Delvare34875332007-05-08 17:22:03 +0200636 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 struct w83781d_data *data = w83781d_update_device(dev);
638 return sprintf(buf, "%ld\n",
Jean Delvare34875332007-05-08 17:22:03 +0200639 (long) DIV_FROM_REG(data->fan_div[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
Guenter Roeckaff6e002012-01-19 11:02:27 -0800642/*
643 * Note: we save and restore the fan minimum here, because its value is
644 * determined in part by the fan divisor. This follows the principle of
645 * least surprise; the user doesn't expect the fan minimum to change just
646 * because the divisor changed.
647 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200649store_fan_div(struct device *dev, struct device_attribute *da,
650 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Jean Delvare34875332007-05-08 17:22:03 +0200652 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvare7666c132007-05-08 17:22:02 +0200653 struct w83781d_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 unsigned long min;
Jean Delvare34875332007-05-08 17:22:03 +0200655 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 u8 reg;
Guenter Roeckc531eb32012-01-15 09:19:16 -0800657 unsigned long val;
658 int err;
659
660 err = kstrtoul(buf, 10, &val);
661 if (err)
662 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100664 mutex_lock(&data->update_lock);
Jean Delvare293c0992007-11-30 23:52:44 +0100665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /* Save fan_min */
667 min = FAN_FROM_REG(data->fan_min[nr],
668 DIV_FROM_REG(data->fan_div[nr]));
669
670 data->fan_div[nr] = DIV_TO_REG(val, data->type);
671
Guenter Roeckc531eb32012-01-15 09:19:16 -0800672 reg = (w83781d_read_value(data, nr == 2 ?
673 W83781D_REG_PIN : W83781D_REG_VID_FANDIV)
674 & (nr == 0 ? 0xcf : 0x3f))
675 | ((data->fan_div[nr] & 0x03) << (nr == 0 ? 4 : 6));
676 w83781d_write_value(data, nr == 2 ?
677 W83781D_REG_PIN : W83781D_REG_VID_FANDIV, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 /* w83781d and as99127f don't have extended divisor bits */
680 if (data->type != w83781d && data->type != as99127f) {
Jean Delvare31b8dc42007-05-08 17:22:03 +0200681 reg = (w83781d_read_value(data, W83781D_REG_VBAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 & ~(1 << (5 + nr)))
683 | ((data->fan_div[nr] & 0x04) << (3 + nr));
Jean Delvare31b8dc42007-05-08 17:22:03 +0200684 w83781d_write_value(data, W83781D_REG_VBAT, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686
687 /* Restore fan_min */
688 data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvare34875332007-05-08 17:22:03 +0200689 w83781d_write_value(data, W83781D_REG_FAN_MIN(nr), data->fan_min[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100691 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return count;
693}
694
Jean Delvare34875332007-05-08 17:22:03 +0200695static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR,
696 show_fan_div, store_fan_div, 0);
697static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR,
698 show_fan_div, store_fan_div, 1);
699static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR,
700 show_fan_div, store_fan_div, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200703show_pwm(struct device *dev, struct device_attribute *da, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Jean Delvare34875332007-05-08 17:22:03 +0200705 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct w83781d_data *data = w83781d_update_device(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200707 return sprintf(buf, "%d\n", (int)data->pwm[attr->index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
710static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200711show_pwm2_enable(struct device *dev, struct device_attribute *da, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 struct w83781d_data *data = w83781d_update_device(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200714 return sprintf(buf, "%d\n", (int)data->pwm2_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
717static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200718store_pwm(struct device *dev, struct device_attribute *da, const char *buf,
719 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Jean Delvare34875332007-05-08 17:22:03 +0200721 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvare7666c132007-05-08 17:22:02 +0200722 struct w83781d_data *data = dev_get_drvdata(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200723 int nr = attr->index;
Guenter Roeckc531eb32012-01-15 09:19:16 -0800724 unsigned long val;
725 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Guenter Roeckc531eb32012-01-15 09:19:16 -0800727 err = kstrtoul(buf, 10, &val);
728 if (err)
729 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100731 mutex_lock(&data->update_lock);
Guenter Roeck2a844c12013-01-09 08:09:34 -0800732 data->pwm[nr] = clamp_val(val, 0, 255);
Jean Delvare34875332007-05-08 17:22:03 +0200733 w83781d_write_value(data, W83781D_REG_PWM[nr], data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100734 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return count;
736}
737
738static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200739store_pwm2_enable(struct device *dev, struct device_attribute *da,
740 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Jean Delvare7666c132007-05-08 17:22:02 +0200742 struct w83781d_data *data = dev_get_drvdata(dev);
Guenter Roeckc531eb32012-01-15 09:19:16 -0800743 unsigned long val;
744 u32 reg;
745 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Guenter Roeckc531eb32012-01-15 09:19:16 -0800747 err = kstrtoul(buf, 10, &val);
748 if (err)
749 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100751 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 switch (val) {
754 case 0:
755 case 1:
Jean Delvare31b8dc42007-05-08 17:22:03 +0200756 reg = w83781d_read_value(data, W83781D_REG_PWMCLK12);
757 w83781d_write_value(data, W83781D_REG_PWMCLK12,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 (reg & 0xf7) | (val << 3));
759
Jean Delvare31b8dc42007-05-08 17:22:03 +0200760 reg = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG);
761 w83781d_write_value(data, W83781D_REG_BEEP_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 (reg & 0xef) | (!val << 4));
763
Jean Delvare34875332007-05-08 17:22:03 +0200764 data->pwm2_enable = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 break;
766
767 default:
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100768 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return -EINVAL;
770 }
771
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100772 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return count;
774}
775
Jean Delvare34875332007-05-08 17:22:03 +0200776static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 0);
777static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 1);
778static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 2);
779static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 3);
780/* only PWM2 can be enabled/disabled */
781static DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
782 show_pwm2_enable, store_pwm2_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200785show_sensor(struct device *dev, struct device_attribute *da, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Jean Delvare34875332007-05-08 17:22:03 +0200787 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 struct w83781d_data *data = w83781d_update_device(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200789 return sprintf(buf, "%d\n", (int)data->sens[attr->index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
792static ssize_t
Jean Delvare34875332007-05-08 17:22:03 +0200793store_sensor(struct device *dev, struct device_attribute *da,
794 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Jean Delvare34875332007-05-08 17:22:03 +0200796 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Jean Delvare7666c132007-05-08 17:22:02 +0200797 struct w83781d_data *data = dev_get_drvdata(dev);
Jean Delvare34875332007-05-08 17:22:03 +0200798 int nr = attr->index;
Guenter Roeckc531eb32012-01-15 09:19:16 -0800799 unsigned long val;
800 u32 tmp;
801 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Guenter Roeckc531eb32012-01-15 09:19:16 -0800803 err = kstrtoul(buf, 10, &val);
804 if (err)
805 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100807 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 switch (val) {
810 case 1: /* PII/Celeron diode */
Jean Delvare31b8dc42007-05-08 17:22:03 +0200811 tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
812 w83781d_write_value(data, W83781D_REG_SCFG1,
Jean Delvare34875332007-05-08 17:22:03 +0200813 tmp | BIT_SCFG1[nr]);
Jean Delvare31b8dc42007-05-08 17:22:03 +0200814 tmp = w83781d_read_value(data, W83781D_REG_SCFG2);
815 w83781d_write_value(data, W83781D_REG_SCFG2,
Jean Delvare34875332007-05-08 17:22:03 +0200816 tmp | BIT_SCFG2[nr]);
817 data->sens[nr] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 break;
819 case 2: /* 3904 */
Jean Delvare31b8dc42007-05-08 17:22:03 +0200820 tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
821 w83781d_write_value(data, W83781D_REG_SCFG1,
Jean Delvare34875332007-05-08 17:22:03 +0200822 tmp | BIT_SCFG1[nr]);
Jean Delvare31b8dc42007-05-08 17:22:03 +0200823 tmp = w83781d_read_value(data, W83781D_REG_SCFG2);
824 w83781d_write_value(data, W83781D_REG_SCFG2,
Jean Delvare34875332007-05-08 17:22:03 +0200825 tmp & ~BIT_SCFG2[nr]);
826 data->sens[nr] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 break;
Jean Delvareb26f9332007-08-16 14:30:01 +0200828 case W83781D_DEFAULT_BETA:
829 dev_warn(dev, "Sensor type %d is deprecated, please use 4 "
830 "instead\n", W83781D_DEFAULT_BETA);
831 /* fall through */
832 case 4: /* thermistor */
Jean Delvare31b8dc42007-05-08 17:22:03 +0200833 tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
834 w83781d_write_value(data, W83781D_REG_SCFG1,
Jean Delvare34875332007-05-08 17:22:03 +0200835 tmp & ~BIT_SCFG1[nr]);
836 data->sens[nr] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 break;
838 default:
Jean Delvareb26f9332007-08-16 14:30:01 +0200839 dev_err(dev, "Invalid sensor type %ld; must be 1, 2, or 4\n",
840 (long) val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 break;
842 }
843
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100844 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 return count;
846}
847
Jean Delvare34875332007-05-08 17:22:03 +0200848static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR,
849 show_sensor, store_sensor, 0);
850static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR,
Mark M. Hoffman393cdad2007-08-09 08:12:46 -0400851 show_sensor, store_sensor, 1);
Jean Delvare34875332007-05-08 17:22:03 +0200852static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR,
Mark M. Hoffman393cdad2007-08-09 08:12:46 -0400853 show_sensor, store_sensor, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Guenter Roeckaff6e002012-01-19 11:02:27 -0800855/*
856 * Assumes that adapter is of I2C, not ISA variety.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 * OTHERWISE DON'T CALL THIS
858 */
859static int
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200860w83781d_detect_subclients(struct i2c_client *new_client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 int i, val1 = 0, id;
863 int err;
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200864 int address = new_client->addr;
865 unsigned short sc_addr[2];
866 struct i2c_adapter *adapter = new_client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 struct w83781d_data *data = i2c_get_clientdata(new_client);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200868 enum chips kind = data->type;
Guenter Roeckbbc8a562012-06-12 08:27:49 -0700869 int num_sc = 1;
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) {
Guenter Roeckbbc8a562012-06-12 08:27:49 -0700894 num_sc = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (force_subclients[0] == id &&
896 force_subclients[1] == address) {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200897 sc_addr[1] = force_subclients[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 } else {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200899 sc_addr[1] = 0x48 + ((val1 >> 4) & 0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200901 if (sc_addr[0] == sc_addr[1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 dev_err(&new_client->dev,
903 "Duplicate addresses 0x%x for subclients.\n",
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200904 sc_addr[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 err = -EBUSY;
906 goto ERROR_SC_2;
907 }
908 }
909
Guenter Roeckbbc8a562012-06-12 08:27:49 -0700910 for (i = 0; i < num_sc; i++) {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200911 data->lm75[i] = i2c_new_dummy(adapter, sc_addr[i]);
912 if (!data->lm75[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 dev_err(&new_client->dev, "Subclient %d "
914 "registration at address 0x%x "
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200915 "failed.\n", i, sc_addr[i]);
916 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (i == 1)
918 goto ERROR_SC_3;
919 goto ERROR_SC_2;
920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
922
923 return 0;
924
925/* Undo inits in case of errors */
926ERROR_SC_3:
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200927 i2c_unregister_device(data->lm75[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928ERROR_SC_2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929ERROR_SC_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return err;
931}
932
Jean Delvare34875332007-05-08 17:22:03 +0200933#define IN_UNIT_ATTRS(X) \
934 &sensor_dev_attr_in##X##_input.dev_attr.attr, \
935 &sensor_dev_attr_in##X##_min.dev_attr.attr, \
Jean Delvare293c0992007-11-30 23:52:44 +0100936 &sensor_dev_attr_in##X##_max.dev_attr.attr, \
Jean Delvare7d4a1372007-10-08 18:29:43 +0200937 &sensor_dev_attr_in##X##_alarm.dev_attr.attr, \
938 &sensor_dev_attr_in##X##_beep.dev_attr.attr
Jim Cromie311ce2e2006-09-24 21:22:52 +0200939
Jean Delvare34875332007-05-08 17:22:03 +0200940#define FAN_UNIT_ATTRS(X) \
941 &sensor_dev_attr_fan##X##_input.dev_attr.attr, \
942 &sensor_dev_attr_fan##X##_min.dev_attr.attr, \
Jean Delvare7d4a1372007-10-08 18:29:43 +0200943 &sensor_dev_attr_fan##X##_div.dev_attr.attr, \
944 &sensor_dev_attr_fan##X##_alarm.dev_attr.attr, \
945 &sensor_dev_attr_fan##X##_beep.dev_attr.attr
Jim Cromie311ce2e2006-09-24 21:22:52 +0200946
Jean Delvare34875332007-05-08 17:22:03 +0200947#define TEMP_UNIT_ATTRS(X) \
948 &sensor_dev_attr_temp##X##_input.dev_attr.attr, \
949 &sensor_dev_attr_temp##X##_max.dev_attr.attr, \
Jean Delvare7d4a1372007-10-08 18:29:43 +0200950 &sensor_dev_attr_temp##X##_max_hyst.dev_attr.attr, \
951 &sensor_dev_attr_temp##X##_alarm.dev_attr.attr, \
952 &sensor_dev_attr_temp##X##_beep.dev_attr.attr
Jim Cromie311ce2e2006-09-24 21:22:52 +0200953
Guenter Roeckc531eb32012-01-15 09:19:16 -0800954static struct attribute *w83781d_attributes[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200955 IN_UNIT_ATTRS(0),
956 IN_UNIT_ATTRS(2),
957 IN_UNIT_ATTRS(3),
958 IN_UNIT_ATTRS(4),
959 IN_UNIT_ATTRS(5),
960 IN_UNIT_ATTRS(6),
961 FAN_UNIT_ATTRS(1),
962 FAN_UNIT_ATTRS(2),
963 FAN_UNIT_ATTRS(3),
964 TEMP_UNIT_ATTRS(1),
965 TEMP_UNIT_ATTRS(2),
966 &dev_attr_cpu0_vid.attr,
967 &dev_attr_vrm.attr,
968 &dev_attr_alarms.attr,
969 &dev_attr_beep_mask.attr,
Jean Delvare2fbbbf12008-10-17 17:51:18 +0200970 &sensor_dev_attr_beep_enable.dev_attr.attr,
Jim Cromie311ce2e2006-09-24 21:22:52 +0200971 NULL
972};
973static const struct attribute_group w83781d_group = {
974 .attrs = w83781d_attributes,
975};
976
Guenter Roeck79501332012-01-16 20:45:16 -0800977static struct attribute *w83781d_attributes_in1[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200978 IN_UNIT_ATTRS(1),
Guenter Roeck79501332012-01-16 20:45:16 -0800979 NULL
980};
981static const struct attribute_group w83781d_group_in1 = {
982 .attrs = w83781d_attributes_in1,
983};
984
985static struct attribute *w83781d_attributes_in78[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200986 IN_UNIT_ATTRS(7),
987 IN_UNIT_ATTRS(8),
Guenter Roeck79501332012-01-16 20:45:16 -0800988 NULL
989};
990static const struct attribute_group w83781d_group_in78 = {
991 .attrs = w83781d_attributes_in78,
992};
993
994static struct attribute *w83781d_attributes_temp3[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200995 TEMP_UNIT_ATTRS(3),
Guenter Roeck79501332012-01-16 20:45:16 -0800996 NULL
997};
998static const struct attribute_group w83781d_group_temp3 = {
999 .attrs = w83781d_attributes_temp3,
1000};
1001
1002static struct attribute *w83781d_attributes_pwm12[] = {
Jean Delvare34875332007-05-08 17:22:03 +02001003 &sensor_dev_attr_pwm1.dev_attr.attr,
1004 &sensor_dev_attr_pwm2.dev_attr.attr,
Guenter Roeck79501332012-01-16 20:45:16 -08001005 &dev_attr_pwm2_enable.attr,
1006 NULL
1007};
1008static const struct attribute_group w83781d_group_pwm12 = {
1009 .attrs = w83781d_attributes_pwm12,
1010};
1011
1012static struct attribute *w83781d_attributes_pwm34[] = {
Jean Delvare34875332007-05-08 17:22:03 +02001013 &sensor_dev_attr_pwm3.dev_attr.attr,
1014 &sensor_dev_attr_pwm4.dev_attr.attr,
Guenter Roeck79501332012-01-16 20:45:16 -08001015 NULL
1016};
1017static const struct attribute_group w83781d_group_pwm34 = {
1018 .attrs = w83781d_attributes_pwm34,
1019};
1020
1021static struct attribute *w83781d_attributes_other[] = {
Jean Delvare34875332007-05-08 17:22:03 +02001022 &sensor_dev_attr_temp1_type.dev_attr.attr,
1023 &sensor_dev_attr_temp2_type.dev_attr.attr,
1024 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jim Cromie311ce2e2006-09-24 21:22:52 +02001025 NULL
1026};
Guenter Roeck79501332012-01-16 20:45:16 -08001027static const struct attribute_group w83781d_group_other = {
1028 .attrs = w83781d_attributes_other,
Jim Cromie311ce2e2006-09-24 21:22:52 +02001029};
1030
Jean Delvare7666c132007-05-08 17:22:02 +02001031/* No clean up is done on error, it's up to the caller */
1032static int
1033w83781d_create_files(struct device *dev, int kind, int is_isa)
1034{
1035 int err;
1036
Guenter Roeckc531eb32012-01-15 09:19:16 -08001037 err = sysfs_create_group(&dev->kobj, &w83781d_group);
1038 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001039 return err;
1040
1041 if (kind != w83783s) {
Guenter Roeck79501332012-01-16 20:45:16 -08001042 err = sysfs_create_group(&dev->kobj, &w83781d_group_in1);
1043 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001044 return err;
1045 }
1046 if (kind != as99127f && kind != w83781d && kind != w83783s) {
Guenter Roeck79501332012-01-16 20:45:16 -08001047 err = sysfs_create_group(&dev->kobj, &w83781d_group_in78);
1048 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001049 return err;
1050 }
1051 if (kind != w83783s) {
Guenter Roeck79501332012-01-16 20:45:16 -08001052 err = sysfs_create_group(&dev->kobj, &w83781d_group_temp3);
1053 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001054 return err;
Jean Delvare7d4a1372007-10-08 18:29:43 +02001055
Jean Delvare7768aa72007-10-25 13:11:01 +02001056 if (kind != w83781d) {
Jean Delvare7d4a1372007-10-08 18:29:43 +02001057 err = sysfs_chmod_file(&dev->kobj,
1058 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
1059 S_IRUGO | S_IWUSR);
1060 if (err)
1061 return err;
Jean Delvare7768aa72007-10-25 13:11:01 +02001062 }
Jean Delvare7666c132007-05-08 17:22:02 +02001063 }
1064
1065 if (kind != w83781d && kind != as99127f) {
Guenter Roeck79501332012-01-16 20:45:16 -08001066 err = sysfs_create_group(&dev->kobj, &w83781d_group_pwm12);
1067 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001068 return err;
1069 }
1070 if (kind == w83782d && !is_isa) {
Guenter Roeck79501332012-01-16 20:45:16 -08001071 err = sysfs_create_group(&dev->kobj, &w83781d_group_pwm34);
1072 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001073 return err;
1074 }
1075
1076 if (kind != as99127f && kind != w83781d) {
Guenter Roeck79501332012-01-16 20:45:16 -08001077 err = device_create_file(dev,
1078 &sensor_dev_attr_temp1_type.dev_attr);
1079 if (err)
1080 return err;
1081 err = device_create_file(dev,
1082 &sensor_dev_attr_temp2_type.dev_attr);
1083 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001084 return err;
1085 if (kind != w83783s) {
Guenter Roeckc531eb32012-01-15 09:19:16 -08001086 err = device_create_file(dev,
Guenter Roeck79501332012-01-16 20:45:16 -08001087 &sensor_dev_attr_temp3_type.dev_attr);
Guenter Roeckc531eb32012-01-15 09:19:16 -08001088 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001089 return err;
1090 }
1091 }
1092
Jean Delvare7666c132007-05-08 17:22:02 +02001093 return 0;
1094}
1095
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001096/* Return 0 if detection is successful, -ENODEV otherwise */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097static int
Jean Delvare310ec792009-12-14 21:17:23 +01001098w83781d_detect(struct i2c_client *client, struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Jean Delvarebab2bf42009-12-09 20:35:54 +01001100 int val1, val2;
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001101 struct w83781d_data *isa = w83781d_data_if_isa();
1102 struct i2c_adapter *adapter = client->adapter;
1103 int address = client->addr;
Jean Delvarebab2bf42009-12-09 20:35:54 +01001104 const char *client_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 enum vendor { winbond, asus } vendid;
1106
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001107 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
1108 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Guenter Roeckaff6e002012-01-19 11:02:27 -08001110 /*
1111 * We block updates of the ISA device to minimize the risk of
1112 * concurrent access to the same W83781D chip through different
1113 * interfaces.
1114 */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001115 if (isa)
1116 mutex_lock(&isa->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Jean Delvarebab2bf42009-12-09 20:35:54 +01001118 if (i2c_smbus_read_byte_data(client, W83781D_REG_CONFIG) & 0x80) {
1119 dev_dbg(&adapter->dev,
1120 "Detection of w83781d chip failed at step 3\n");
1121 goto err_nodev;
1122 }
1123
1124 val1 = i2c_smbus_read_byte_data(client, W83781D_REG_BANK);
1125 val2 = i2c_smbus_read_byte_data(client, W83781D_REG_CHIPMAN);
1126 /* Check for Winbond or Asus ID if in bank 0 */
1127 if (!(val1 & 0x07) &&
1128 ((!(val1 & 0x80) && val2 != 0xa3 && val2 != 0xc3) ||
Guenter Roeckc531eb32012-01-15 09:19:16 -08001129 ((val1 & 0x80) && val2 != 0x5c && val2 != 0x12))) {
Jean Delvarebab2bf42009-12-09 20:35:54 +01001130 dev_dbg(&adapter->dev,
1131 "Detection of w83781d chip failed at step 4\n");
1132 goto err_nodev;
1133 }
Guenter Roeckaff6e002012-01-19 11:02:27 -08001134 /*
1135 * If Winbond SMBus, check address at 0x48.
1136 * Asus doesn't support, except for as99127f rev.2
1137 */
Jean Delvarebab2bf42009-12-09 20:35:54 +01001138 if ((!(val1 & 0x80) && val2 == 0xa3) ||
Guenter Roeckc531eb32012-01-15 09:19:16 -08001139 ((val1 & 0x80) && val2 == 0x5c)) {
Jean Delvarebab2bf42009-12-09 20:35:54 +01001140 if (i2c_smbus_read_byte_data(client, W83781D_REG_I2C_ADDR)
1141 != address) {
1142 dev_dbg(&adapter->dev,
1143 "Detection of w83781d chip failed at step 5\n");
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001144 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147
Jean Delvarebab2bf42009-12-09 20:35:54 +01001148 /* Put it now into bank 0 and Vendor ID High Byte */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001149 i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
1150 (i2c_smbus_read_byte_data(client, W83781D_REG_BANK)
1151 & 0x78) | 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Jean Delvarebab2bf42009-12-09 20:35:54 +01001153 /* Get the vendor ID */
1154 val2 = i2c_smbus_read_byte_data(client, W83781D_REG_CHIPMAN);
1155 if (val2 == 0x5c)
1156 vendid = winbond;
1157 else if (val2 == 0x12)
1158 vendid = asus;
1159 else {
1160 dev_dbg(&adapter->dev,
1161 "w83781d chip vendor is neither Winbond nor Asus\n");
1162 goto err_nodev;
1163 }
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 /* Determine the chip type. */
Jean Delvarebab2bf42009-12-09 20:35:54 +01001166 val1 = i2c_smbus_read_byte_data(client, W83781D_REG_WCHIPID);
1167 if ((val1 == 0x10 || val1 == 0x11) && vendid == winbond)
1168 client_name = "w83781d";
1169 else if (val1 == 0x30 && vendid == winbond)
1170 client_name = "w83782d";
1171 else if (val1 == 0x40 && vendid == winbond && address == 0x2d)
1172 client_name = "w83783s";
1173 else if (val1 == 0x31)
1174 client_name = "as99127f";
1175 else
1176 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Jean Delvarebab2bf42009-12-09 20:35:54 +01001178 if (val1 <= 0x30 && w83781d_alias_detect(client, val1)) {
1179 dev_dbg(&adapter->dev, "Device at 0x%02x appears to "
1180 "be the same as ISA device\n", address);
1181 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001184 if (isa)
1185 mutex_unlock(&isa->update_lock);
1186
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001187 strlcpy(info->type, client_name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001189 return 0;
1190
1191 err_nodev:
1192 if (isa)
1193 mutex_unlock(&isa->update_lock);
1194 return -ENODEV;
1195}
1196
Guenter Roeck79501332012-01-16 20:45:16 -08001197static void w83781d_remove_files(struct device *dev)
1198{
1199 sysfs_remove_group(&dev->kobj, &w83781d_group);
1200 sysfs_remove_group(&dev->kobj, &w83781d_group_in1);
1201 sysfs_remove_group(&dev->kobj, &w83781d_group_in78);
1202 sysfs_remove_group(&dev->kobj, &w83781d_group_temp3);
1203 sysfs_remove_group(&dev->kobj, &w83781d_group_pwm12);
1204 sysfs_remove_group(&dev->kobj, &w83781d_group_pwm34);
1205 sysfs_remove_group(&dev->kobj, &w83781d_group_other);
1206}
1207
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001208static int
1209w83781d_probe(struct i2c_client *client, const struct i2c_device_id *id)
1210{
1211 struct device *dev = &client->dev;
1212 struct w83781d_data *data;
1213 int err;
1214
Guenter Roeck144d2b92012-06-02 11:48:00 -07001215 data = devm_kzalloc(dev, sizeof(struct w83781d_data), GFP_KERNEL);
1216 if (!data)
1217 return -ENOMEM;
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001218
1219 i2c_set_clientdata(client, data);
1220 mutex_init(&data->lock);
1221 mutex_init(&data->update_lock);
1222
1223 data->type = id->driver_data;
1224 data->client = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 /* attach secondary i2c lm75-like clients */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001227 err = w83781d_detect_subclients(client);
1228 if (err)
Guenter Roeck144d2b92012-06-02 11:48:00 -07001229 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 /* Initialize the chip */
Jean Delvare7666c132007-05-08 17:22:02 +02001232 w83781d_init_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 /* Register sysfs hooks */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001235 err = w83781d_create_files(dev, data->type, 0);
Jean Delvare7666c132007-05-08 17:22:02 +02001236 if (err)
Guenter Roeck144d2b92012-06-02 11:48:00 -07001237 goto exit_remove_files;
Jim Cromie311ce2e2006-09-24 21:22:52 +02001238
Tony Jones1beeffe2007-08-20 13:46:20 -07001239 data->hwmon_dev = hwmon_device_register(dev);
1240 if (IS_ERR(data->hwmon_dev)) {
1241 err = PTR_ERR(data->hwmon_dev);
Guenter Roeck144d2b92012-06-02 11:48:00 -07001242 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001243 }
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return 0;
1246
Guenter Roeck144d2b92012-06-02 11:48:00 -07001247 exit_remove_files:
Guenter Roeck79501332012-01-16 20:45:16 -08001248 w83781d_remove_files(dev);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001249 if (data->lm75[0])
1250 i2c_unregister_device(data->lm75[0]);
1251 if (data->lm75[1])
1252 i2c_unregister_device(data->lm75[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return err;
1254}
1255
1256static int
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001257w83781d_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001259 struct w83781d_data *data = i2c_get_clientdata(client);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001260 struct device *dev = &client->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001262 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeck79501332012-01-16 20:45:16 -08001263 w83781d_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001265 if (data->lm75[0])
1266 i2c_unregister_device(data->lm75[0]);
1267 if (data->lm75[1])
1268 i2c_unregister_device(data->lm75[1]);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return 0;
1271}
1272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273static int
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001274w83781d_read_value_i2c(struct w83781d_data *data, u16 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001276 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001277 int res, bank;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 struct i2c_client *cl;
1279
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001280 bank = (reg >> 8) & 0x0f;
1281 if (bank > 2)
1282 /* switch banks */
1283 i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
1284 bank);
1285 if (bank == 0 || bank > 2) {
1286 res = i2c_smbus_read_byte_data(client, reg & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 } else {
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001288 /* switch to subclient */
1289 cl = data->lm75[bank - 1];
1290 /* convert from ISA to LM75 I2C addresses */
1291 switch (reg & 0xff) {
1292 case 0x50: /* TEMP */
Jean Delvare90f41022011-11-04 12:00:47 +01001293 res = i2c_smbus_read_word_swapped(cl, 0);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001294 break;
1295 case 0x52: /* CONFIG */
1296 res = i2c_smbus_read_byte_data(cl, 1);
1297 break;
1298 case 0x53: /* HYST */
Jean Delvare90f41022011-11-04 12:00:47 +01001299 res = i2c_smbus_read_word_swapped(cl, 2);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001300 break;
1301 case 0x55: /* OVER */
1302 default:
Jean Delvare90f41022011-11-04 12:00:47 +01001303 res = i2c_smbus_read_word_swapped(cl, 3);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001304 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001307 if (bank > 2)
1308 i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0);
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return res;
1311}
1312
1313static int
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001314w83781d_write_value_i2c(struct w83781d_data *data, u16 reg, u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001316 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001317 int bank;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 struct i2c_client *cl;
1319
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001320 bank = (reg >> 8) & 0x0f;
1321 if (bank > 2)
1322 /* switch banks */
1323 i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
1324 bank);
1325 if (bank == 0 || bank > 2) {
1326 i2c_smbus_write_byte_data(client, reg & 0xff,
1327 value & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 } else {
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001329 /* switch to subclient */
1330 cl = data->lm75[bank - 1];
1331 /* convert from ISA to LM75 I2C addresses */
1332 switch (reg & 0xff) {
1333 case 0x52: /* CONFIG */
1334 i2c_smbus_write_byte_data(cl, 1, value & 0xff);
1335 break;
1336 case 0x53: /* HYST */
Jean Delvare90f41022011-11-04 12:00:47 +01001337 i2c_smbus_write_word_swapped(cl, 2, value);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001338 break;
1339 case 0x55: /* OVER */
Jean Delvare90f41022011-11-04 12:00:47 +01001340 i2c_smbus_write_word_swapped(cl, 3, value);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001341 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001344 if (bank > 2)
1345 i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0);
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return 0;
1348}
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350static void
Jean Delvare7666c132007-05-08 17:22:02 +02001351w83781d_init_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
Jean Delvare7666c132007-05-08 17:22:02 +02001353 struct w83781d_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 int i, p;
1355 int type = data->type;
1356 u8 tmp;
1357
Guenter Roeckaff6e002012-01-19 11:02:27 -08001358 if (reset && type != as99127f) { /*
1359 * this resets registers we don't have
1360 * documentation for on the as99127f
1361 */
1362 /*
1363 * Resetting the chip has been the default for a long time,
1364 * but it causes the BIOS initializations (fan clock dividers,
1365 * thermal sensor types...) to be lost, so it is now optional.
1366 * It might even go away if nobody reports it as being useful,
1367 * as I see very little reason why this would be needed at
1368 * all.
1369 */
Jean Delvare7666c132007-05-08 17:22:02 +02001370 dev_info(dev, "If reset=1 solved a problem you were "
Jean Delvarefabddcd2006-02-05 23:26:51 +01001371 "having, please report!\n");
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 /* save these registers */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001374 i = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG);
1375 p = w83781d_read_value(data, W83781D_REG_PWMCLK12);
Guenter Roeckaff6e002012-01-19 11:02:27 -08001376 /*
1377 * Reset all except Watchdog values and last conversion values
1378 * This sets fan-divs to 2, among others
1379 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001380 w83781d_write_value(data, W83781D_REG_CONFIG, 0x80);
Guenter Roeckaff6e002012-01-19 11:02:27 -08001381 /*
1382 * Restore the registers and disable power-on abnormal beep.
1383 * This saves FAN 1/2/3 input/output values set by BIOS.
1384 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001385 w83781d_write_value(data, W83781D_REG_BEEP_CONFIG, i | 0x80);
1386 w83781d_write_value(data, W83781D_REG_PWMCLK12, p);
Guenter Roeckc531eb32012-01-15 09:19:16 -08001387 /*
1388 * Disable master beep-enable (reset turns it on).
1389 * Individual beep_mask should be reset to off but for some
1390 * reason disabling this bit helps some people not get beeped
1391 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001392 w83781d_write_value(data, W83781D_REG_BEEP_INTS2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
1394
Guenter Roeckaff6e002012-01-19 11:02:27 -08001395 /*
1396 * Disable power-on abnormal beep, as advised by the datasheet.
1397 * Already done if reset=1.
1398 */
Jean Delvarefabddcd2006-02-05 23:26:51 +01001399 if (init && !reset && type != as99127f) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001400 i = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG);
1401 w83781d_write_value(data, W83781D_REG_BEEP_CONFIG, i | 0x80);
Jean Delvarefabddcd2006-02-05 23:26:51 +01001402 }
1403
Jean Delvare303760b2005-07-31 21:52:01 +02001404 data->vrm = vid_which_vrm();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406 if ((type != w83781d) && (type != as99127f)) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001407 tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 for (i = 1; i <= 3; i++) {
1409 if (!(tmp & BIT_SCFG1[i - 1])) {
Jean Delvareb26f9332007-08-16 14:30:01 +02001410 data->sens[i - 1] = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 } else {
1412 if (w83781d_read_value
Jean Delvare31b8dc42007-05-08 17:22:03 +02001413 (data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 W83781D_REG_SCFG2) & BIT_SCFG2[i - 1])
1415 data->sens[i - 1] = 1;
1416 else
1417 data->sens[i - 1] = 2;
1418 }
Jean Delvare7c7a5302005-06-16 19:24:14 +02001419 if (type == w83783s && i == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 break;
1421 }
1422 }
1423
1424 if (init && type != as99127f) {
1425 /* Enable temp2 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001426 tmp = w83781d_read_value(data, W83781D_REG_TEMP2_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (tmp & 0x01) {
Jean Delvare7666c132007-05-08 17:22:02 +02001428 dev_warn(dev, "Enabling temp2, readings "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 "might not make sense\n");
Jean Delvare31b8dc42007-05-08 17:22:03 +02001430 w83781d_write_value(data, W83781D_REG_TEMP2_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 tmp & 0xfe);
1432 }
1433
1434 /* Enable temp3 */
Jean Delvare7c7a5302005-06-16 19:24:14 +02001435 if (type != w83783s) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001436 tmp = w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 W83781D_REG_TEMP3_CONFIG);
1438 if (tmp & 0x01) {
Jean Delvare7666c132007-05-08 17:22:02 +02001439 dev_warn(dev, "Enabling temp3, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 "readings might not make sense\n");
Jean Delvare31b8dc42007-05-08 17:22:03 +02001441 w83781d_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 W83781D_REG_TEMP3_CONFIG, tmp & 0xfe);
1443 }
1444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 }
1446
1447 /* Start monitoring */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001448 w83781d_write_value(data, W83781D_REG_CONFIG,
1449 (w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 W83781D_REG_CONFIG) & 0xf7)
1451 | 0x01);
Jean Delvare7666c132007-05-08 17:22:02 +02001452
1453 /* A few vars need to be filled upon startup */
Jean Delvare34875332007-05-08 17:22:03 +02001454 for (i = 0; i < 3; i++) {
1455 data->fan_min[i] = w83781d_read_value(data,
Jean Delvare7666c132007-05-08 17:22:02 +02001456 W83781D_REG_FAN_MIN(i));
1457 }
Jean Delvare7666c132007-05-08 17:22:02 +02001458
1459 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460}
1461
1462static struct w83781d_data *w83781d_update_device(struct device *dev)
1463{
Jean Delvare7666c132007-05-08 17:22:02 +02001464 struct w83781d_data *data = dev_get_drvdata(dev);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001465 struct i2c_client *client = data->client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 int i;
1467
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001468 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
1471 || !data->valid) {
1472 dev_dbg(dev, "Starting device update\n");
1473
1474 for (i = 0; i <= 8; i++) {
Jean Delvare7c7a5302005-06-16 19:24:14 +02001475 if (data->type == w83783s && i == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 continue; /* 783S has no in1 */
1477 data->in[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001478 w83781d_read_value(data, W83781D_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 data->in_min[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001480 w83781d_read_value(data, W83781D_REG_IN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 data->in_max[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001482 w83781d_read_value(data, W83781D_REG_IN_MAX(i));
Jean Delvare05663362007-11-30 23:51:24 +01001483 if ((data->type != w83782d) && (i == 6))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 break;
1485 }
Jean Delvare34875332007-05-08 17:22:03 +02001486 for (i = 0; i < 3; i++) {
1487 data->fan[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001488 w83781d_read_value(data, W83781D_REG_FAN(i));
Jean Delvare34875332007-05-08 17:22:03 +02001489 data->fan_min[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001490 w83781d_read_value(data, W83781D_REG_FAN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
1492 if (data->type != w83781d && data->type != as99127f) {
Jean Delvare34875332007-05-08 17:22:03 +02001493 for (i = 0; i < 4; i++) {
1494 data->pwm[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001495 w83781d_read_value(data,
Jean Delvare34875332007-05-08 17:22:03 +02001496 W83781D_REG_PWM[i]);
Jean Delvare848ddf12009-05-08 20:27:28 +02001497 /* Only W83782D on SMBus has PWM3 and PWM4 */
1498 if ((data->type != w83782d || !client)
Jean Delvare34875332007-05-08 17:22:03 +02001499 && i == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 break;
1501 }
1502 /* Only PWM2 can be disabled */
Jean Delvare34875332007-05-08 17:22:03 +02001503 data->pwm2_enable = (w83781d_read_value(data,
Guenter Roeckc531eb32012-01-15 09:19:16 -08001504 W83781D_REG_PWMCLK12) & 0x08) >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 }
1506
Jean Delvare31b8dc42007-05-08 17:22:03 +02001507 data->temp = w83781d_read_value(data, W83781D_REG_TEMP(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 data->temp_max =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001509 w83781d_read_value(data, W83781D_REG_TEMP_OVER(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 data->temp_max_hyst =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001511 w83781d_read_value(data, W83781D_REG_TEMP_HYST(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 data->temp_add[0] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001513 w83781d_read_value(data, W83781D_REG_TEMP(2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 data->temp_max_add[0] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001515 w83781d_read_value(data, W83781D_REG_TEMP_OVER(2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 data->temp_max_hyst_add[0] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001517 w83781d_read_value(data, W83781D_REG_TEMP_HYST(2));
Jean Delvare7c7a5302005-06-16 19:24:14 +02001518 if (data->type != w83783s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 data->temp_add[1] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001520 w83781d_read_value(data, W83781D_REG_TEMP(3));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 data->temp_max_add[1] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001522 w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 W83781D_REG_TEMP_OVER(3));
1524 data->temp_max_hyst_add[1] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001525 w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 W83781D_REG_TEMP_HYST(3));
1527 }
Jean Delvare31b8dc42007-05-08 17:22:03 +02001528 i = w83781d_read_value(data, W83781D_REG_VID_FANDIV);
Jean Delvare7c7a5302005-06-16 19:24:14 +02001529 data->vid = i & 0x0f;
Jean Delvare31b8dc42007-05-08 17:22:03 +02001530 data->vid |= (w83781d_read_value(data,
Jean Delvare7c7a5302005-06-16 19:24:14 +02001531 W83781D_REG_CHIPID) & 0x01) << 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 data->fan_div[0] = (i >> 4) & 0x03;
1533 data->fan_div[1] = (i >> 6) & 0x03;
Jean Delvare31b8dc42007-05-08 17:22:03 +02001534 data->fan_div[2] = (w83781d_read_value(data,
Jean Delvare7c7a5302005-06-16 19:24:14 +02001535 W83781D_REG_PIN) >> 6) & 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 if ((data->type != w83781d) && (data->type != as99127f)) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001537 i = w83781d_read_value(data, W83781D_REG_VBAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 data->fan_div[0] |= (i >> 3) & 0x04;
1539 data->fan_div[1] |= (i >> 4) & 0x04;
Jean Delvare7c7a5302005-06-16 19:24:14 +02001540 data->fan_div[2] |= (i >> 5) & 0x04;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
Jean Delvare05663362007-11-30 23:51:24 +01001542 if (data->type == w83782d) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001543 data->alarms = w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001544 W83782D_REG_ALARM1)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001545 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001546 W83782D_REG_ALARM2) << 8)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001547 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001548 W83782D_REG_ALARM3) << 16);
1549 } else if (data->type == w83783s) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001550 data->alarms = w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001551 W83782D_REG_ALARM1)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001552 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001553 W83782D_REG_ALARM2) << 8);
1554 } else {
Guenter Roeckaff6e002012-01-19 11:02:27 -08001555 /*
1556 * No real-time status registers, fall back to
1557 * interrupt status registers
1558 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001559 data->alarms = w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001560 W83781D_REG_ALARM1)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001561 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001562 W83781D_REG_ALARM2) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 }
Jean Delvare31b8dc42007-05-08 17:22:03 +02001564 i = w83781d_read_value(data, W83781D_REG_BEEP_INTS2);
Jean Delvare2fbbbf12008-10-17 17:51:18 +02001565 data->beep_mask = (i << 8) +
Jean Delvare31b8dc42007-05-08 17:22:03 +02001566 w83781d_read_value(data, W83781D_REG_BEEP_INTS1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if ((data->type != w83781d) && (data->type != as99127f)) {
1568 data->beep_mask |=
Jean Delvare31b8dc42007-05-08 17:22:03 +02001569 w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 W83781D_REG_BEEP_INTS3) << 16;
1571 }
1572 data->last_updated = jiffies;
1573 data->valid = 1;
1574 }
1575
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001576 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 return data;
1579}
1580
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001581static const struct i2c_device_id w83781d_ids[] = {
1582 { "w83781d", w83781d, },
1583 { "w83782d", w83782d, },
1584 { "w83783s", w83783s, },
1585 { "as99127f", as99127f },
1586 { /* LIST END */ }
1587};
1588MODULE_DEVICE_TABLE(i2c, w83781d_ids);
1589
1590static struct i2c_driver w83781d_driver = {
1591 .class = I2C_CLASS_HWMON,
1592 .driver = {
1593 .name = "w83781d",
1594 },
1595 .probe = w83781d_probe,
1596 .remove = w83781d_remove,
1597 .id_table = w83781d_ids,
1598 .detect = w83781d_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +01001599 .address_list = normal_i2c,
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001600};
1601
1602/*
1603 * ISA related code
1604 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001605#ifdef CONFIG_ISA
1606
1607/* ISA device, if found */
1608static struct platform_device *pdev;
1609
1610static unsigned short isa_address = 0x290;
1611
Guenter Roeckaff6e002012-01-19 11:02:27 -08001612/*
1613 * I2C devices get this name attribute automatically, but for ISA devices
1614 * we must create it by ourselves.
1615 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001616static ssize_t
1617show_name(struct device *dev, struct device_attribute *devattr, char *buf)
1618{
1619 struct w83781d_data *data = dev_get_drvdata(dev);
Jean Delvare360782d2008-10-17 17:51:19 +02001620 return sprintf(buf, "%s\n", data->name);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001621}
1622static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1623
1624static struct w83781d_data *w83781d_data_if_isa(void)
1625{
1626 return pdev ? platform_get_drvdata(pdev) : NULL;
1627}
1628
1629/* Returns 1 if the I2C chip appears to be an alias of the ISA chip */
1630static int w83781d_alias_detect(struct i2c_client *client, u8 chipid)
1631{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001632 struct w83781d_data *isa;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001633 int i;
1634
1635 if (!pdev) /* No ISA chip */
1636 return 0;
1637
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001638 isa = platform_get_drvdata(pdev);
1639
1640 if (w83781d_read_value(isa, W83781D_REG_I2C_ADDR) != client->addr)
1641 return 0; /* Address doesn't match */
1642 if (w83781d_read_value(isa, W83781D_REG_WCHIPID) != chipid)
1643 return 0; /* Chip type doesn't match */
1644
Guenter Roeckaff6e002012-01-19 11:02:27 -08001645 /*
1646 * We compare all the limit registers, the config register and the
1647 * interrupt mask registers
1648 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001649 for (i = 0x2b; i <= 0x3d; i++) {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001650 if (w83781d_read_value(isa, i) !=
1651 i2c_smbus_read_byte_data(client, i))
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001652 return 0;
1653 }
1654 if (w83781d_read_value(isa, W83781D_REG_CONFIG) !=
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001655 i2c_smbus_read_byte_data(client, W83781D_REG_CONFIG))
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001656 return 0;
1657 for (i = 0x43; i <= 0x46; 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
1663 return 1;
1664}
1665
1666static int
1667w83781d_read_value_isa(struct w83781d_data *data, u16 reg)
1668{
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001669 int word_sized, res;
1670
1671 word_sized = (((reg & 0xff00) == 0x100)
1672 || ((reg & 0xff00) == 0x200))
1673 && (((reg & 0x00ff) == 0x50)
1674 || ((reg & 0x00ff) == 0x53)
1675 || ((reg & 0x00ff) == 0x55));
1676 if (reg & 0xff00) {
1677 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001678 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001679 outb_p(reg >> 8,
Jean Delvare360782d2008-10-17 17:51:19 +02001680 data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001681 }
Jean Delvare360782d2008-10-17 17:51:19 +02001682 outb_p(reg & 0xff, data->isa_addr + W83781D_ADDR_REG_OFFSET);
1683 res = inb_p(data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001684 if (word_sized) {
1685 outb_p((reg & 0xff) + 1,
Jean Delvare360782d2008-10-17 17:51:19 +02001686 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001687 res =
Jean Delvare360782d2008-10-17 17:51:19 +02001688 (res << 8) + inb_p(data->isa_addr +
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001689 W83781D_DATA_REG_OFFSET);
1690 }
1691 if (reg & 0xff00) {
1692 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001693 data->isa_addr + W83781D_ADDR_REG_OFFSET);
1694 outb_p(0, data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001695 }
1696 return res;
1697}
1698
1699static void
1700w83781d_write_value_isa(struct w83781d_data *data, u16 reg, u16 value)
1701{
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001702 int word_sized;
1703
1704 word_sized = (((reg & 0xff00) == 0x100)
1705 || ((reg & 0xff00) == 0x200))
1706 && (((reg & 0x00ff) == 0x53)
1707 || ((reg & 0x00ff) == 0x55));
1708 if (reg & 0xff00) {
1709 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001710 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001711 outb_p(reg >> 8,
Jean Delvare360782d2008-10-17 17:51:19 +02001712 data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001713 }
Jean Delvare360782d2008-10-17 17:51:19 +02001714 outb_p(reg & 0xff, data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001715 if (word_sized) {
1716 outb_p(value >> 8,
Jean Delvare360782d2008-10-17 17:51:19 +02001717 data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001718 outb_p((reg & 0xff) + 1,
Jean Delvare360782d2008-10-17 17:51:19 +02001719 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001720 }
Jean Delvare360782d2008-10-17 17:51:19 +02001721 outb_p(value & 0xff, data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001722 if (reg & 0xff00) {
1723 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001724 data->isa_addr + W83781D_ADDR_REG_OFFSET);
1725 outb_p(0, data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001726 }
1727}
1728
Guenter Roeckaff6e002012-01-19 11:02:27 -08001729/*
1730 * The SMBus locks itself, usually, but nothing may access the Winbond between
1731 * bank switches. ISA access must always be locked explicitly!
1732 * We ignore the W83781D BUSY flag at this moment - it could lead to deadlocks,
1733 * would slow down the W83781D access and should not be necessary.
1734 * There are some ugly typecasts here, but the good news is - they should
1735 * nowhere else be necessary!
1736 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001737static int
1738w83781d_read_value(struct w83781d_data *data, u16 reg)
1739{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001740 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001741 int res;
1742
1743 mutex_lock(&data->lock);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001744 if (client)
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001745 res = w83781d_read_value_i2c(data, reg);
1746 else
1747 res = w83781d_read_value_isa(data, reg);
1748 mutex_unlock(&data->lock);
1749 return res;
1750}
1751
1752static int
1753w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value)
1754{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001755 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001756
1757 mutex_lock(&data->lock);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001758 if (client)
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001759 w83781d_write_value_i2c(data, reg, value);
1760 else
1761 w83781d_write_value_isa(data, reg, value);
1762 mutex_unlock(&data->lock);
1763 return 0;
1764}
1765
Bill Pemberton6c931ae2012-11-19 13:22:35 -05001766static int
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001767w83781d_isa_probe(struct platform_device *pdev)
1768{
1769 int err, reg;
1770 struct w83781d_data *data;
1771 struct resource *res;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001772
1773 /* Reserve the ISA region */
1774 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck144d2b92012-06-02 11:48:00 -07001775 if (!devm_request_region(&pdev->dev,
1776 res->start + W83781D_ADDR_REG_OFFSET, 2,
1777 "w83781d"))
1778 return -EBUSY;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001779
Guenter Roeck144d2b92012-06-02 11:48:00 -07001780 data = devm_kzalloc(&pdev->dev, sizeof(struct w83781d_data),
1781 GFP_KERNEL);
1782 if (!data)
1783 return -ENOMEM;
1784
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001785 mutex_init(&data->lock);
Jean Delvare360782d2008-10-17 17:51:19 +02001786 data->isa_addr = res->start;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001787 platform_set_drvdata(pdev, data);
1788
1789 reg = w83781d_read_value(data, W83781D_REG_WCHIPID);
1790 switch (reg) {
1791 case 0x30:
1792 data->type = w83782d;
Jean Delvare360782d2008-10-17 17:51:19 +02001793 data->name = "w83782d";
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001794 break;
1795 default:
1796 data->type = w83781d;
Jean Delvare360782d2008-10-17 17:51:19 +02001797 data->name = "w83781d";
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001798 }
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001799
1800 /* Initialize the W83781D chip */
1801 w83781d_init_device(&pdev->dev);
1802
1803 /* Register sysfs hooks */
1804 err = w83781d_create_files(&pdev->dev, data->type, 1);
1805 if (err)
1806 goto exit_remove_files;
1807
1808 err = device_create_file(&pdev->dev, &dev_attr_name);
1809 if (err)
1810 goto exit_remove_files;
1811
1812 data->hwmon_dev = hwmon_device_register(&pdev->dev);
1813 if (IS_ERR(data->hwmon_dev)) {
1814 err = PTR_ERR(data->hwmon_dev);
1815 goto exit_remove_files;
1816 }
1817
1818 return 0;
1819
1820 exit_remove_files:
Guenter Roeck79501332012-01-16 20:45:16 -08001821 w83781d_remove_files(&pdev->dev);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001822 device_remove_file(&pdev->dev, &dev_attr_name);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001823 return err;
1824}
1825
Bill Pemberton281dfd02012-11-19 13:25:51 -05001826static int
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001827w83781d_isa_remove(struct platform_device *pdev)
1828{
1829 struct w83781d_data *data = platform_get_drvdata(pdev);
1830
1831 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeck79501332012-01-16 20:45:16 -08001832 w83781d_remove_files(&pdev->dev);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001833 device_remove_file(&pdev->dev, &dev_attr_name);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001834
1835 return 0;
1836}
1837
1838static struct platform_driver w83781d_isa_driver = {
1839 .driver = {
1840 .owner = THIS_MODULE,
1841 .name = "w83781d",
1842 },
1843 .probe = w83781d_isa_probe,
Bill Pemberton9e5e9b72012-11-19 13:21:20 -05001844 .remove = w83781d_isa_remove,
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001845};
1846
Jean Delvare7666c132007-05-08 17:22:02 +02001847/* return 1 if a supported chip is found, 0 otherwise */
1848static int __init
1849w83781d_isa_found(unsigned short address)
1850{
1851 int val, save, found = 0;
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001852 int port;
Jean Delvare7666c132007-05-08 17:22:02 +02001853
Guenter Roeckaff6e002012-01-19 11:02:27 -08001854 /*
1855 * Some boards declare base+0 to base+7 as a PNP device, some base+4
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001856 * to base+7 and some base+5 to base+6. So we better request each port
Guenter Roeckaff6e002012-01-19 11:02:27 -08001857 * individually for the probing phase.
1858 */
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001859 for (port = address; port < address + W83781D_EXTENT; port++) {
1860 if (!request_region(port, 1, "w83781d")) {
Joe Perches1ca28212011-01-12 21:55:11 +01001861 pr_debug("Failed to request port 0x%x\n", port);
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001862 goto release;
1863 }
Jean Delvare2961cb22008-03-09 13:34:28 +01001864 }
Jean Delvare7666c132007-05-08 17:22:02 +02001865
1866#define REALLY_SLOW_IO
Guenter Roeckaff6e002012-01-19 11:02:27 -08001867 /*
1868 * We need the timeouts for at least some W83781D-like
1869 * chips. But only if we read 'undefined' registers.
1870 */
Jean Delvare7666c132007-05-08 17:22:02 +02001871 val = inb_p(address + 1);
1872 if (inb_p(address + 2) != val
1873 || inb_p(address + 3) != val
1874 || inb_p(address + 7) != val) {
Joe Perches1ca28212011-01-12 21:55:11 +01001875 pr_debug("Detection failed at step %d\n", 1);
Jean Delvare7666c132007-05-08 17:22:02 +02001876 goto release;
1877 }
1878#undef REALLY_SLOW_IO
1879
Guenter Roeckaff6e002012-01-19 11:02:27 -08001880 /*
1881 * We should be able to change the 7 LSB of the address port. The
1882 * MSB (busy flag) should be clear initially, set after the write.
1883 */
Jean Delvare7666c132007-05-08 17:22:02 +02001884 save = inb_p(address + W83781D_ADDR_REG_OFFSET);
1885 if (save & 0x80) {
Joe Perches1ca28212011-01-12 21:55:11 +01001886 pr_debug("Detection failed at step %d\n", 2);
Jean Delvare7666c132007-05-08 17:22:02 +02001887 goto release;
1888 }
1889 val = ~save & 0x7f;
1890 outb_p(val, address + W83781D_ADDR_REG_OFFSET);
1891 if (inb_p(address + W83781D_ADDR_REG_OFFSET) != (val | 0x80)) {
1892 outb_p(save, address + W83781D_ADDR_REG_OFFSET);
Joe Perches1ca28212011-01-12 21:55:11 +01001893 pr_debug("Detection failed at step %d\n", 3);
Jean Delvare7666c132007-05-08 17:22:02 +02001894 goto release;
1895 }
1896
1897 /* We found a device, now see if it could be a W83781D */
1898 outb_p(W83781D_REG_CONFIG, address + W83781D_ADDR_REG_OFFSET);
1899 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1900 if (val & 0x80) {
Joe Perches1ca28212011-01-12 21:55:11 +01001901 pr_debug("Detection failed at step %d\n", 4);
Jean Delvare7666c132007-05-08 17:22:02 +02001902 goto release;
1903 }
1904 outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET);
1905 save = inb_p(address + W83781D_DATA_REG_OFFSET);
1906 outb_p(W83781D_REG_CHIPMAN, address + W83781D_ADDR_REG_OFFSET);
1907 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1908 if ((!(save & 0x80) && (val != 0xa3))
1909 || ((save & 0x80) && (val != 0x5c))) {
Joe Perches1ca28212011-01-12 21:55:11 +01001910 pr_debug("Detection failed at step %d\n", 5);
Jean Delvare7666c132007-05-08 17:22:02 +02001911 goto release;
1912 }
1913 outb_p(W83781D_REG_I2C_ADDR, address + W83781D_ADDR_REG_OFFSET);
1914 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1915 if (val < 0x03 || val > 0x77) { /* Not a valid I2C address */
Joe Perches1ca28212011-01-12 21:55:11 +01001916 pr_debug("Detection failed at step %d\n", 6);
Jean Delvare7666c132007-05-08 17:22:02 +02001917 goto release;
1918 }
1919
1920 /* The busy flag should be clear again */
1921 if (inb_p(address + W83781D_ADDR_REG_OFFSET) & 0x80) {
Joe Perches1ca28212011-01-12 21:55:11 +01001922 pr_debug("Detection failed at step %d\n", 7);
Jean Delvare7666c132007-05-08 17:22:02 +02001923 goto release;
1924 }
1925
1926 /* Determine the chip type */
1927 outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET);
1928 save = inb_p(address + W83781D_DATA_REG_OFFSET);
1929 outb_p(save & 0xf8, address + W83781D_DATA_REG_OFFSET);
1930 outb_p(W83781D_REG_WCHIPID, address + W83781D_ADDR_REG_OFFSET);
1931 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1932 if ((val & 0xfe) == 0x10 /* W83781D */
Jean Delvare05663362007-11-30 23:51:24 +01001933 || val == 0x30) /* W83782D */
Jean Delvare7666c132007-05-08 17:22:02 +02001934 found = 1;
1935
1936 if (found)
Joe Perches1ca28212011-01-12 21:55:11 +01001937 pr_info("Found a %s chip at %#x\n",
Jean Delvare7666c132007-05-08 17:22:02 +02001938 val == 0x30 ? "W83782D" : "W83781D", (int)address);
1939
1940 release:
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001941 for (port--; port >= address; port--)
1942 release_region(port, 1);
Jean Delvare7666c132007-05-08 17:22:02 +02001943 return found;
1944}
1945
1946static int __init
1947w83781d_isa_device_add(unsigned short address)
1948{
1949 struct resource res = {
1950 .start = address,
Jean Delvare15bde2f2007-08-29 10:39:57 +02001951 .end = address + W83781D_EXTENT - 1,
Jean Delvare7666c132007-05-08 17:22:02 +02001952 .name = "w83781d",
1953 .flags = IORESOURCE_IO,
1954 };
1955 int err;
1956
1957 pdev = platform_device_alloc("w83781d", address);
1958 if (!pdev) {
1959 err = -ENOMEM;
Joe Perches1ca28212011-01-12 21:55:11 +01001960 pr_err("Device allocation failed\n");
Jean Delvare7666c132007-05-08 17:22:02 +02001961 goto exit;
1962 }
1963
1964 err = platform_device_add_resources(pdev, &res, 1);
1965 if (err) {
Joe Perches1ca28212011-01-12 21:55:11 +01001966 pr_err("Device resource addition failed (%d)\n", err);
Jean Delvare7666c132007-05-08 17:22:02 +02001967 goto exit_device_put;
1968 }
1969
1970 err = platform_device_add(pdev);
1971 if (err) {
Joe Perches1ca28212011-01-12 21:55:11 +01001972 pr_err("Device addition failed (%d)\n", err);
Jean Delvare7666c132007-05-08 17:22:02 +02001973 goto exit_device_put;
1974 }
1975
1976 return 0;
1977
1978 exit_device_put:
1979 platform_device_put(pdev);
1980 exit:
1981 pdev = NULL;
1982 return err;
1983}
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985static int __init
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001986w83781d_isa_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987{
Jean Delvarefde09502005-07-19 23:51:07 +02001988 int res;
1989
Jean Delvare7666c132007-05-08 17:22:02 +02001990 if (w83781d_isa_found(isa_address)) {
1991 res = platform_driver_register(&w83781d_isa_driver);
1992 if (res)
Jean Delvarec6566202008-10-17 17:51:18 +02001993 goto exit;
Jean Delvare7666c132007-05-08 17:22:02 +02001994
1995 /* Sets global pdev as a side effect */
1996 res = w83781d_isa_device_add(isa_address);
1997 if (res)
1998 goto exit_unreg_isa_driver;
1999 }
Jean Delvarefde09502005-07-19 23:51:07 +02002000
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002001 return 0;
2002
2003exit_unreg_isa_driver:
2004 platform_driver_unregister(&w83781d_isa_driver);
2005exit:
2006 return res;
2007}
2008
Geert Uytterhoevendd56b632008-10-26 17:04:38 +01002009static void
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002010w83781d_isa_unregister(void)
2011{
2012 if (pdev) {
2013 platform_device_unregister(pdev);
2014 platform_driver_unregister(&w83781d_isa_driver);
2015 }
2016}
2017#else /* !CONFIG_ISA */
2018
2019static struct w83781d_data *w83781d_data_if_isa(void)
2020{
2021 return NULL;
2022}
2023
2024static int
2025w83781d_alias_detect(struct i2c_client *client, u8 chipid)
2026{
2027 return 0;
2028}
2029
2030static int
2031w83781d_read_value(struct w83781d_data *data, u16 reg)
2032{
2033 int res;
2034
2035 mutex_lock(&data->lock);
2036 res = w83781d_read_value_i2c(data, reg);
2037 mutex_unlock(&data->lock);
2038
2039 return res;
2040}
2041
2042static int
2043w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value)
2044{
2045 mutex_lock(&data->lock);
2046 w83781d_write_value_i2c(data, reg, value);
2047 mutex_unlock(&data->lock);
2048
2049 return 0;
2050}
2051
2052static int __init
2053w83781d_isa_register(void)
2054{
2055 return 0;
2056}
2057
Geert Uytterhoevendd56b632008-10-26 17:04:38 +01002058static void
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002059w83781d_isa_unregister(void)
2060{
2061}
2062#endif /* CONFIG_ISA */
2063
2064static int __init
2065sensors_w83781d_init(void)
2066{
2067 int res;
2068
Guenter Roeckaff6e002012-01-19 11:02:27 -08002069 /*
2070 * We register the ISA device first, so that we can skip the
2071 * registration of an I2C interface to the same device.
2072 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002073 res = w83781d_isa_register();
2074 if (res)
2075 goto exit;
2076
Jean Delvarec6566202008-10-17 17:51:18 +02002077 res = i2c_add_driver(&w83781d_driver);
2078 if (res)
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002079 goto exit_unreg_isa;
Jean Delvarec6566202008-10-17 17:51:18 +02002080
Jean Delvarefde09502005-07-19 23:51:07 +02002081 return 0;
Jean Delvare7666c132007-05-08 17:22:02 +02002082
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002083 exit_unreg_isa:
2084 w83781d_isa_unregister();
Jean Delvare7666c132007-05-08 17:22:02 +02002085 exit:
2086 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087}
2088
2089static void __exit
2090sensors_w83781d_exit(void)
2091{
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002092 w83781d_isa_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 i2c_del_driver(&w83781d_driver);
2094}
2095
2096MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, "
2097 "Philip Edelbrock <phil@netroedge.com>, "
2098 "and Mark Studebaker <mdsxyz123@yahoo.com>");
2099MODULE_DESCRIPTION("W83781D driver");
2100MODULE_LICENSE("GPL");
2101
2102module_init(sensors_w83781d_init);
2103module_exit(sensors_w83781d_exit);