blob: 54848fdd181e2212c302355e99f0920464c98c29 [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>
Jean Delvare7c81c602014-01-29 20:40:08 +01007 * Copyright (c) 2007 - 2008 Jean Delvare <jdelvare@suse.de>
Guenter Roeckaff6e002012-01-19 11:02:27 -08008 *
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);
Guenter Roeckb55f3752013-01-10 10:01:24 -080067MODULE_PARM_DESC(force_subclients,
68 "List of subclient addresses: {bus, clientaddr, subclientaddr1, subclientaddr2}");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
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:
Guenter Roeckb55f3752013-01-10 10:01:24 -0800829 dev_warn(dev,
830 "Sensor type %d is deprecated, please use 4 instead\n",
831 W83781D_DEFAULT_BETA);
Jean Delvareb26f9332007-08-16 14:30:01 +0200832 /* fall through */
833 case 4: /* thermistor */
Jean Delvare31b8dc42007-05-08 17:22:03 +0200834 tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
835 w83781d_write_value(data, W83781D_REG_SCFG1,
Jean Delvare34875332007-05-08 17:22:03 +0200836 tmp & ~BIT_SCFG1[nr]);
837 data->sens[nr] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 break;
839 default:
Jean Delvareb26f9332007-08-16 14:30:01 +0200840 dev_err(dev, "Invalid sensor type %ld; must be 1, 2, or 4\n",
841 (long) val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 break;
843 }
844
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100845 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return count;
847}
848
Jean Delvare34875332007-05-08 17:22:03 +0200849static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR,
850 show_sensor, store_sensor, 0);
851static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR,
Mark M. Hoffman393cdad2007-08-09 08:12:46 -0400852 show_sensor, store_sensor, 1);
Jean Delvare34875332007-05-08 17:22:03 +0200853static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR,
Mark M. Hoffman393cdad2007-08-09 08:12:46 -0400854 show_sensor, store_sensor, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Guenter Roeckaff6e002012-01-19 11:02:27 -0800856/*
857 * Assumes that adapter is of I2C, not ISA variety.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 * OTHERWISE DON'T CALL THIS
859 */
860static int
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200861w83781d_detect_subclients(struct i2c_client *new_client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
863 int i, val1 = 0, id;
864 int err;
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200865 int address = new_client->addr;
866 unsigned short sc_addr[2];
867 struct i2c_adapter *adapter = new_client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct w83781d_data *data = i2c_get_clientdata(new_client);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200869 enum chips kind = data->type;
Guenter Roeckbbc8a562012-06-12 08:27:49 -0700870 int num_sc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 id = i2c_adapter_id(adapter);
873
874 if (force_subclients[0] == id && force_subclients[1] == address) {
875 for (i = 2; i <= 3; i++) {
876 if (force_subclients[i] < 0x48 ||
877 force_subclients[i] > 0x4f) {
Guenter Roeckb55f3752013-01-10 10:01:24 -0800878 dev_err(&new_client->dev,
879 "Invalid subclient address %d; must be 0x48-0x4f\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 force_subclients[i]);
881 err = -EINVAL;
882 goto ERROR_SC_1;
883 }
884 }
Jean Delvare31b8dc42007-05-08 17:22:03 +0200885 w83781d_write_value(data, W83781D_REG_I2C_SUBADDR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 (force_subclients[2] & 0x07) |
887 ((force_subclients[3] & 0x07) << 4));
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200888 sc_addr[0] = force_subclients[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 } else {
Jean Delvare31b8dc42007-05-08 17:22:03 +0200890 val1 = w83781d_read_value(data, W83781D_REG_I2C_SUBADDR);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200891 sc_addr[0] = 0x48 + (val1 & 0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893
894 if (kind != w83783s) {
Guenter Roeckbbc8a562012-06-12 08:27:49 -0700895 num_sc = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (force_subclients[0] == id &&
897 force_subclients[1] == address) {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200898 sc_addr[1] = force_subclients[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 } else {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200900 sc_addr[1] = 0x48 + ((val1 >> 4) & 0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200902 if (sc_addr[0] == sc_addr[1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 dev_err(&new_client->dev,
904 "Duplicate addresses 0x%x for subclients.\n",
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200905 sc_addr[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 err = -EBUSY;
907 goto ERROR_SC_2;
908 }
909 }
910
Guenter Roeckbbc8a562012-06-12 08:27:49 -0700911 for (i = 0; i < num_sc; i++) {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200912 data->lm75[i] = i2c_new_dummy(adapter, sc_addr[i]);
913 if (!data->lm75[i]) {
Guenter Roeckb55f3752013-01-10 10:01:24 -0800914 dev_err(&new_client->dev,
915 "Subclient %d registration at address 0x%x failed.\n",
916 i, sc_addr[i]);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200917 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (i == 1)
919 goto ERROR_SC_3;
920 goto ERROR_SC_2;
921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923
924 return 0;
925
926/* Undo inits in case of errors */
927ERROR_SC_3:
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +0200928 i2c_unregister_device(data->lm75[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929ERROR_SC_2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930ERROR_SC_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return err;
932}
933
Jean Delvare34875332007-05-08 17:22:03 +0200934#define IN_UNIT_ATTRS(X) \
935 &sensor_dev_attr_in##X##_input.dev_attr.attr, \
936 &sensor_dev_attr_in##X##_min.dev_attr.attr, \
Jean Delvare293c0992007-11-30 23:52:44 +0100937 &sensor_dev_attr_in##X##_max.dev_attr.attr, \
Jean Delvare7d4a1372007-10-08 18:29:43 +0200938 &sensor_dev_attr_in##X##_alarm.dev_attr.attr, \
939 &sensor_dev_attr_in##X##_beep.dev_attr.attr
Jim Cromie311ce2e2006-09-24 21:22:52 +0200940
Jean Delvare34875332007-05-08 17:22:03 +0200941#define FAN_UNIT_ATTRS(X) \
942 &sensor_dev_attr_fan##X##_input.dev_attr.attr, \
943 &sensor_dev_attr_fan##X##_min.dev_attr.attr, \
Jean Delvare7d4a1372007-10-08 18:29:43 +0200944 &sensor_dev_attr_fan##X##_div.dev_attr.attr, \
945 &sensor_dev_attr_fan##X##_alarm.dev_attr.attr, \
946 &sensor_dev_attr_fan##X##_beep.dev_attr.attr
Jim Cromie311ce2e2006-09-24 21:22:52 +0200947
Jean Delvare34875332007-05-08 17:22:03 +0200948#define TEMP_UNIT_ATTRS(X) \
949 &sensor_dev_attr_temp##X##_input.dev_attr.attr, \
950 &sensor_dev_attr_temp##X##_max.dev_attr.attr, \
Jean Delvare7d4a1372007-10-08 18:29:43 +0200951 &sensor_dev_attr_temp##X##_max_hyst.dev_attr.attr, \
952 &sensor_dev_attr_temp##X##_alarm.dev_attr.attr, \
953 &sensor_dev_attr_temp##X##_beep.dev_attr.attr
Jim Cromie311ce2e2006-09-24 21:22:52 +0200954
Guenter Roeckc531eb32012-01-15 09:19:16 -0800955static struct attribute *w83781d_attributes[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200956 IN_UNIT_ATTRS(0),
957 IN_UNIT_ATTRS(2),
958 IN_UNIT_ATTRS(3),
959 IN_UNIT_ATTRS(4),
960 IN_UNIT_ATTRS(5),
961 IN_UNIT_ATTRS(6),
962 FAN_UNIT_ATTRS(1),
963 FAN_UNIT_ATTRS(2),
964 FAN_UNIT_ATTRS(3),
965 TEMP_UNIT_ATTRS(1),
966 TEMP_UNIT_ATTRS(2),
967 &dev_attr_cpu0_vid.attr,
968 &dev_attr_vrm.attr,
969 &dev_attr_alarms.attr,
970 &dev_attr_beep_mask.attr,
Jean Delvare2fbbbf12008-10-17 17:51:18 +0200971 &sensor_dev_attr_beep_enable.dev_attr.attr,
Jim Cromie311ce2e2006-09-24 21:22:52 +0200972 NULL
973};
974static const struct attribute_group w83781d_group = {
975 .attrs = w83781d_attributes,
976};
977
Guenter Roeck79501332012-01-16 20:45:16 -0800978static struct attribute *w83781d_attributes_in1[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200979 IN_UNIT_ATTRS(1),
Guenter Roeck79501332012-01-16 20:45:16 -0800980 NULL
981};
982static const struct attribute_group w83781d_group_in1 = {
983 .attrs = w83781d_attributes_in1,
984};
985
986static struct attribute *w83781d_attributes_in78[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200987 IN_UNIT_ATTRS(7),
988 IN_UNIT_ATTRS(8),
Guenter Roeck79501332012-01-16 20:45:16 -0800989 NULL
990};
991static const struct attribute_group w83781d_group_in78 = {
992 .attrs = w83781d_attributes_in78,
993};
994
995static struct attribute *w83781d_attributes_temp3[] = {
Jim Cromie311ce2e2006-09-24 21:22:52 +0200996 TEMP_UNIT_ATTRS(3),
Guenter Roeck79501332012-01-16 20:45:16 -0800997 NULL
998};
999static const struct attribute_group w83781d_group_temp3 = {
1000 .attrs = w83781d_attributes_temp3,
1001};
1002
1003static struct attribute *w83781d_attributes_pwm12[] = {
Jean Delvare34875332007-05-08 17:22:03 +02001004 &sensor_dev_attr_pwm1.dev_attr.attr,
1005 &sensor_dev_attr_pwm2.dev_attr.attr,
Guenter Roeck79501332012-01-16 20:45:16 -08001006 &dev_attr_pwm2_enable.attr,
1007 NULL
1008};
1009static const struct attribute_group w83781d_group_pwm12 = {
1010 .attrs = w83781d_attributes_pwm12,
1011};
1012
1013static struct attribute *w83781d_attributes_pwm34[] = {
Jean Delvare34875332007-05-08 17:22:03 +02001014 &sensor_dev_attr_pwm3.dev_attr.attr,
1015 &sensor_dev_attr_pwm4.dev_attr.attr,
Guenter Roeck79501332012-01-16 20:45:16 -08001016 NULL
1017};
1018static const struct attribute_group w83781d_group_pwm34 = {
1019 .attrs = w83781d_attributes_pwm34,
1020};
1021
1022static struct attribute *w83781d_attributes_other[] = {
Jean Delvare34875332007-05-08 17:22:03 +02001023 &sensor_dev_attr_temp1_type.dev_attr.attr,
1024 &sensor_dev_attr_temp2_type.dev_attr.attr,
1025 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jim Cromie311ce2e2006-09-24 21:22:52 +02001026 NULL
1027};
Guenter Roeck79501332012-01-16 20:45:16 -08001028static const struct attribute_group w83781d_group_other = {
1029 .attrs = w83781d_attributes_other,
Jim Cromie311ce2e2006-09-24 21:22:52 +02001030};
1031
Jean Delvare7666c132007-05-08 17:22:02 +02001032/* No clean up is done on error, it's up to the caller */
1033static int
1034w83781d_create_files(struct device *dev, int kind, int is_isa)
1035{
1036 int err;
1037
Guenter Roeckc531eb32012-01-15 09:19:16 -08001038 err = sysfs_create_group(&dev->kobj, &w83781d_group);
1039 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001040 return err;
1041
1042 if (kind != w83783s) {
Guenter Roeck79501332012-01-16 20:45:16 -08001043 err = sysfs_create_group(&dev->kobj, &w83781d_group_in1);
1044 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001045 return err;
1046 }
1047 if (kind != as99127f && kind != w83781d && kind != w83783s) {
Guenter Roeck79501332012-01-16 20:45:16 -08001048 err = sysfs_create_group(&dev->kobj, &w83781d_group_in78);
1049 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001050 return err;
1051 }
1052 if (kind != w83783s) {
Guenter Roeck79501332012-01-16 20:45:16 -08001053 err = sysfs_create_group(&dev->kobj, &w83781d_group_temp3);
1054 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001055 return err;
Jean Delvare7d4a1372007-10-08 18:29:43 +02001056
Jean Delvare7768aa72007-10-25 13:11:01 +02001057 if (kind != w83781d) {
Jean Delvare7d4a1372007-10-08 18:29:43 +02001058 err = sysfs_chmod_file(&dev->kobj,
1059 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
1060 S_IRUGO | S_IWUSR);
1061 if (err)
1062 return err;
Jean Delvare7768aa72007-10-25 13:11:01 +02001063 }
Jean Delvare7666c132007-05-08 17:22:02 +02001064 }
1065
1066 if (kind != w83781d && kind != as99127f) {
Guenter Roeck79501332012-01-16 20:45:16 -08001067 err = sysfs_create_group(&dev->kobj, &w83781d_group_pwm12);
1068 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001069 return err;
1070 }
1071 if (kind == w83782d && !is_isa) {
Guenter Roeck79501332012-01-16 20:45:16 -08001072 err = sysfs_create_group(&dev->kobj, &w83781d_group_pwm34);
1073 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001074 return err;
1075 }
1076
1077 if (kind != as99127f && kind != w83781d) {
Guenter Roeck79501332012-01-16 20:45:16 -08001078 err = device_create_file(dev,
1079 &sensor_dev_attr_temp1_type.dev_attr);
1080 if (err)
1081 return err;
1082 err = device_create_file(dev,
1083 &sensor_dev_attr_temp2_type.dev_attr);
1084 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001085 return err;
1086 if (kind != w83783s) {
Guenter Roeckc531eb32012-01-15 09:19:16 -08001087 err = device_create_file(dev,
Guenter Roeck79501332012-01-16 20:45:16 -08001088 &sensor_dev_attr_temp3_type.dev_attr);
Guenter Roeckc531eb32012-01-15 09:19:16 -08001089 if (err)
Jean Delvare7666c132007-05-08 17:22:02 +02001090 return err;
1091 }
1092 }
1093
Jean Delvare7666c132007-05-08 17:22:02 +02001094 return 0;
1095}
1096
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001097/* Return 0 if detection is successful, -ENODEV otherwise */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098static int
Jean Delvare310ec792009-12-14 21:17:23 +01001099w83781d_detect(struct i2c_client *client, struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Jean Delvarebab2bf42009-12-09 20:35:54 +01001101 int val1, val2;
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001102 struct w83781d_data *isa = w83781d_data_if_isa();
1103 struct i2c_adapter *adapter = client->adapter;
1104 int address = client->addr;
Jean Delvarebab2bf42009-12-09 20:35:54 +01001105 const char *client_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 enum vendor { winbond, asus } vendid;
1107
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001108 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
1109 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Guenter Roeckaff6e002012-01-19 11:02:27 -08001111 /*
1112 * We block updates of the ISA device to minimize the risk of
1113 * concurrent access to the same W83781D chip through different
1114 * interfaces.
1115 */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001116 if (isa)
1117 mutex_lock(&isa->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Jean Delvarebab2bf42009-12-09 20:35:54 +01001119 if (i2c_smbus_read_byte_data(client, W83781D_REG_CONFIG) & 0x80) {
1120 dev_dbg(&adapter->dev,
1121 "Detection of w83781d chip failed at step 3\n");
1122 goto err_nodev;
1123 }
1124
1125 val1 = i2c_smbus_read_byte_data(client, W83781D_REG_BANK);
1126 val2 = i2c_smbus_read_byte_data(client, W83781D_REG_CHIPMAN);
1127 /* Check for Winbond or Asus ID if in bank 0 */
1128 if (!(val1 & 0x07) &&
1129 ((!(val1 & 0x80) && val2 != 0xa3 && val2 != 0xc3) ||
Guenter Roeckc531eb32012-01-15 09:19:16 -08001130 ((val1 & 0x80) && val2 != 0x5c && val2 != 0x12))) {
Jean Delvarebab2bf42009-12-09 20:35:54 +01001131 dev_dbg(&adapter->dev,
1132 "Detection of w83781d chip failed at step 4\n");
1133 goto err_nodev;
1134 }
Guenter Roeckaff6e002012-01-19 11:02:27 -08001135 /*
1136 * If Winbond SMBus, check address at 0x48.
1137 * Asus doesn't support, except for as99127f rev.2
1138 */
Jean Delvarebab2bf42009-12-09 20:35:54 +01001139 if ((!(val1 & 0x80) && val2 == 0xa3) ||
Guenter Roeckc531eb32012-01-15 09:19:16 -08001140 ((val1 & 0x80) && val2 == 0x5c)) {
Jean Delvarebab2bf42009-12-09 20:35:54 +01001141 if (i2c_smbus_read_byte_data(client, W83781D_REG_I2C_ADDR)
1142 != address) {
1143 dev_dbg(&adapter->dev,
1144 "Detection of w83781d chip failed at step 5\n");
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001145 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148
Jean Delvarebab2bf42009-12-09 20:35:54 +01001149 /* Put it now into bank 0 and Vendor ID High Byte */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001150 i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
1151 (i2c_smbus_read_byte_data(client, W83781D_REG_BANK)
1152 & 0x78) | 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Jean Delvarebab2bf42009-12-09 20:35:54 +01001154 /* Get the vendor ID */
1155 val2 = i2c_smbus_read_byte_data(client, W83781D_REG_CHIPMAN);
1156 if (val2 == 0x5c)
1157 vendid = winbond;
1158 else if (val2 == 0x12)
1159 vendid = asus;
1160 else {
1161 dev_dbg(&adapter->dev,
1162 "w83781d chip vendor is neither Winbond nor Asus\n");
1163 goto err_nodev;
1164 }
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 /* Determine the chip type. */
Jean Delvarebab2bf42009-12-09 20:35:54 +01001167 val1 = i2c_smbus_read_byte_data(client, W83781D_REG_WCHIPID);
1168 if ((val1 == 0x10 || val1 == 0x11) && vendid == winbond)
1169 client_name = "w83781d";
1170 else if (val1 == 0x30 && vendid == winbond)
1171 client_name = "w83782d";
1172 else if (val1 == 0x40 && vendid == winbond && address == 0x2d)
1173 client_name = "w83783s";
1174 else if (val1 == 0x31)
1175 client_name = "as99127f";
1176 else
1177 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Jean Delvarebab2bf42009-12-09 20:35:54 +01001179 if (val1 <= 0x30 && w83781d_alias_detect(client, val1)) {
Guenter Roeckb55f3752013-01-10 10:01:24 -08001180 dev_dbg(&adapter->dev,
1181 "Device at 0x%02x appears to be the same as ISA device\n",
1182 address);
Jean Delvarebab2bf42009-12-09 20:35:54 +01001183 goto err_nodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
1185
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001186 if (isa)
1187 mutex_unlock(&isa->update_lock);
1188
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001189 strlcpy(info->type, client_name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001191 return 0;
1192
1193 err_nodev:
1194 if (isa)
1195 mutex_unlock(&isa->update_lock);
1196 return -ENODEV;
1197}
1198
Guenter Roeck79501332012-01-16 20:45:16 -08001199static void w83781d_remove_files(struct device *dev)
1200{
1201 sysfs_remove_group(&dev->kobj, &w83781d_group);
1202 sysfs_remove_group(&dev->kobj, &w83781d_group_in1);
1203 sysfs_remove_group(&dev->kobj, &w83781d_group_in78);
1204 sysfs_remove_group(&dev->kobj, &w83781d_group_temp3);
1205 sysfs_remove_group(&dev->kobj, &w83781d_group_pwm12);
1206 sysfs_remove_group(&dev->kobj, &w83781d_group_pwm34);
1207 sysfs_remove_group(&dev->kobj, &w83781d_group_other);
1208}
1209
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001210static int
1211w83781d_probe(struct i2c_client *client, const struct i2c_device_id *id)
1212{
1213 struct device *dev = &client->dev;
1214 struct w83781d_data *data;
1215 int err;
1216
Guenter Roeck144d2b92012-06-02 11:48:00 -07001217 data = devm_kzalloc(dev, sizeof(struct w83781d_data), GFP_KERNEL);
1218 if (!data)
1219 return -ENOMEM;
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001220
1221 i2c_set_clientdata(client, data);
1222 mutex_init(&data->lock);
1223 mutex_init(&data->update_lock);
1224
1225 data->type = id->driver_data;
1226 data->client = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 /* attach secondary i2c lm75-like clients */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001229 err = w83781d_detect_subclients(client);
1230 if (err)
Guenter Roeck144d2b92012-06-02 11:48:00 -07001231 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 /* Initialize the chip */
Jean Delvare7666c132007-05-08 17:22:02 +02001234 w83781d_init_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 /* Register sysfs hooks */
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001237 err = w83781d_create_files(dev, data->type, 0);
Jean Delvare7666c132007-05-08 17:22:02 +02001238 if (err)
Guenter Roeck144d2b92012-06-02 11:48:00 -07001239 goto exit_remove_files;
Jim Cromie311ce2e2006-09-24 21:22:52 +02001240
Tony Jones1beeffe2007-08-20 13:46:20 -07001241 data->hwmon_dev = hwmon_device_register(dev);
1242 if (IS_ERR(data->hwmon_dev)) {
1243 err = PTR_ERR(data->hwmon_dev);
Guenter Roeck144d2b92012-06-02 11:48:00 -07001244 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001245 }
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return 0;
1248
Guenter Roeck144d2b92012-06-02 11:48:00 -07001249 exit_remove_files:
Guenter Roeck79501332012-01-16 20:45:16 -08001250 w83781d_remove_files(dev);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001251 if (data->lm75[0])
1252 i2c_unregister_device(data->lm75[0]);
1253 if (data->lm75[1])
1254 i2c_unregister_device(data->lm75[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return err;
1256}
1257
1258static int
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001259w83781d_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001261 struct w83781d_data *data = i2c_get_clientdata(client);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001262 struct device *dev = &client->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001264 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeck79501332012-01-16 20:45:16 -08001265 w83781d_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001267 if (data->lm75[0])
1268 i2c_unregister_device(data->lm75[0]);
1269 if (data->lm75[1])
1270 i2c_unregister_device(data->lm75[1]);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return 0;
1273}
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275static int
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001276w83781d_read_value_i2c(struct w83781d_data *data, u16 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001278 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001279 int res, bank;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 struct i2c_client *cl;
1281
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001282 bank = (reg >> 8) & 0x0f;
1283 if (bank > 2)
1284 /* switch banks */
1285 i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
1286 bank);
1287 if (bank == 0 || bank > 2) {
1288 res = i2c_smbus_read_byte_data(client, reg & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 } else {
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001290 /* switch to subclient */
1291 cl = data->lm75[bank - 1];
1292 /* convert from ISA to LM75 I2C addresses */
1293 switch (reg & 0xff) {
1294 case 0x50: /* TEMP */
Jean Delvare90f41022011-11-04 12:00:47 +01001295 res = i2c_smbus_read_word_swapped(cl, 0);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001296 break;
1297 case 0x52: /* CONFIG */
1298 res = i2c_smbus_read_byte_data(cl, 1);
1299 break;
1300 case 0x53: /* HYST */
Jean Delvare90f41022011-11-04 12:00:47 +01001301 res = i2c_smbus_read_word_swapped(cl, 2);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001302 break;
1303 case 0x55: /* OVER */
1304 default:
Jean Delvare90f41022011-11-04 12:00:47 +01001305 res = i2c_smbus_read_word_swapped(cl, 3);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001306 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001309 if (bank > 2)
1310 i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0);
1311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 return res;
1313}
1314
1315static int
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001316w83781d_write_value_i2c(struct w83781d_data *data, u16 reg, u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001318 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001319 int bank;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 struct i2c_client *cl;
1321
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001322 bank = (reg >> 8) & 0x0f;
1323 if (bank > 2)
1324 /* switch banks */
1325 i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
1326 bank);
1327 if (bank == 0 || bank > 2) {
1328 i2c_smbus_write_byte_data(client, reg & 0xff,
1329 value & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 } else {
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001331 /* switch to subclient */
1332 cl = data->lm75[bank - 1];
1333 /* convert from ISA to LM75 I2C addresses */
1334 switch (reg & 0xff) {
1335 case 0x52: /* CONFIG */
1336 i2c_smbus_write_byte_data(cl, 1, value & 0xff);
1337 break;
1338 case 0x53: /* HYST */
Jean Delvare90f41022011-11-04 12:00:47 +01001339 i2c_smbus_write_word_swapped(cl, 2, value);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001340 break;
1341 case 0x55: /* OVER */
Jean Delvare90f41022011-11-04 12:00:47 +01001342 i2c_smbus_write_word_swapped(cl, 3, value);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001343 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 }
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001346 if (bank > 2)
1347 i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0);
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return 0;
1350}
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352static void
Jean Delvare7666c132007-05-08 17:22:02 +02001353w83781d_init_device(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Jean Delvare7666c132007-05-08 17:22:02 +02001355 struct w83781d_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 int i, p;
1357 int type = data->type;
1358 u8 tmp;
1359
Guenter Roeckaff6e002012-01-19 11:02:27 -08001360 if (reset && type != as99127f) { /*
1361 * this resets registers we don't have
1362 * documentation for on the as99127f
1363 */
1364 /*
1365 * Resetting the chip has been the default for a long time,
1366 * but it causes the BIOS initializations (fan clock dividers,
1367 * thermal sensor types...) to be lost, so it is now optional.
1368 * It might even go away if nobody reports it as being useful,
1369 * as I see very little reason why this would be needed at
1370 * all.
1371 */
Guenter Roeckb55f3752013-01-10 10:01:24 -08001372 dev_info(dev,
1373 "If reset=1 solved a problem you were having, please report!\n");
Jean Delvarefabddcd2006-02-05 23:26:51 +01001374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 /* save these registers */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001376 i = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG);
1377 p = w83781d_read_value(data, W83781D_REG_PWMCLK12);
Guenter Roeckaff6e002012-01-19 11:02:27 -08001378 /*
1379 * Reset all except Watchdog values and last conversion values
1380 * This sets fan-divs to 2, among others
1381 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001382 w83781d_write_value(data, W83781D_REG_CONFIG, 0x80);
Guenter Roeckaff6e002012-01-19 11:02:27 -08001383 /*
1384 * Restore the registers and disable power-on abnormal beep.
1385 * This saves FAN 1/2/3 input/output values set by BIOS.
1386 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001387 w83781d_write_value(data, W83781D_REG_BEEP_CONFIG, i | 0x80);
1388 w83781d_write_value(data, W83781D_REG_PWMCLK12, p);
Guenter Roeckc531eb32012-01-15 09:19:16 -08001389 /*
1390 * Disable master beep-enable (reset turns it on).
1391 * Individual beep_mask should be reset to off but for some
1392 * reason disabling this bit helps some people not get beeped
1393 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001394 w83781d_write_value(data, W83781D_REG_BEEP_INTS2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396
Guenter Roeckaff6e002012-01-19 11:02:27 -08001397 /*
1398 * Disable power-on abnormal beep, as advised by the datasheet.
1399 * Already done if reset=1.
1400 */
Jean Delvarefabddcd2006-02-05 23:26:51 +01001401 if (init && !reset && type != as99127f) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001402 i = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG);
1403 w83781d_write_value(data, W83781D_REG_BEEP_CONFIG, i | 0x80);
Jean Delvarefabddcd2006-02-05 23:26:51 +01001404 }
1405
Jean Delvare303760b2005-07-31 21:52:01 +02001406 data->vrm = vid_which_vrm();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 if ((type != w83781d) && (type != as99127f)) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001409 tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 for (i = 1; i <= 3; i++) {
1411 if (!(tmp & BIT_SCFG1[i - 1])) {
Jean Delvareb26f9332007-08-16 14:30:01 +02001412 data->sens[i - 1] = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 } else {
1414 if (w83781d_read_value
Jean Delvare31b8dc42007-05-08 17:22:03 +02001415 (data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 W83781D_REG_SCFG2) & BIT_SCFG2[i - 1])
1417 data->sens[i - 1] = 1;
1418 else
1419 data->sens[i - 1] = 2;
1420 }
Jean Delvare7c7a5302005-06-16 19:24:14 +02001421 if (type == w83783s && i == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 break;
1423 }
1424 }
1425
1426 if (init && type != as99127f) {
1427 /* Enable temp2 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001428 tmp = w83781d_read_value(data, W83781D_REG_TEMP2_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if (tmp & 0x01) {
Guenter Roeckb55f3752013-01-10 10:01:24 -08001430 dev_warn(dev,
1431 "Enabling temp2, readings might not make sense\n");
Jean Delvare31b8dc42007-05-08 17:22:03 +02001432 w83781d_write_value(data, W83781D_REG_TEMP2_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 tmp & 0xfe);
1434 }
1435
1436 /* Enable temp3 */
Jean Delvare7c7a5302005-06-16 19:24:14 +02001437 if (type != w83783s) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001438 tmp = w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 W83781D_REG_TEMP3_CONFIG);
1440 if (tmp & 0x01) {
Guenter Roeckb55f3752013-01-10 10:01:24 -08001441 dev_warn(dev,
1442 "Enabling temp3, readings might not make sense\n");
Jean Delvare31b8dc42007-05-08 17:22:03 +02001443 w83781d_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 W83781D_REG_TEMP3_CONFIG, tmp & 0xfe);
1445 }
1446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 }
1448
1449 /* Start monitoring */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001450 w83781d_write_value(data, W83781D_REG_CONFIG,
1451 (w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 W83781D_REG_CONFIG) & 0xf7)
1453 | 0x01);
Jean Delvare7666c132007-05-08 17:22:02 +02001454
1455 /* A few vars need to be filled upon startup */
Jean Delvare34875332007-05-08 17:22:03 +02001456 for (i = 0; i < 3; i++) {
1457 data->fan_min[i] = w83781d_read_value(data,
Jean Delvare7666c132007-05-08 17:22:02 +02001458 W83781D_REG_FAN_MIN(i));
1459 }
Jean Delvare7666c132007-05-08 17:22:02 +02001460
1461 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
1464static struct w83781d_data *w83781d_update_device(struct device *dev)
1465{
Jean Delvare7666c132007-05-08 17:22:02 +02001466 struct w83781d_data *data = dev_get_drvdata(dev);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001467 struct i2c_client *client = data->client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 int i;
1469
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001470 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
1473 || !data->valid) {
1474 dev_dbg(dev, "Starting device update\n");
1475
1476 for (i = 0; i <= 8; i++) {
Jean Delvare7c7a5302005-06-16 19:24:14 +02001477 if (data->type == w83783s && i == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 continue; /* 783S has no in1 */
1479 data->in[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001480 w83781d_read_value(data, W83781D_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 data->in_min[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001482 w83781d_read_value(data, W83781D_REG_IN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 data->in_max[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001484 w83781d_read_value(data, W83781D_REG_IN_MAX(i));
Jean Delvare05663362007-11-30 23:51:24 +01001485 if ((data->type != w83782d) && (i == 6))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 break;
1487 }
Jean Delvare34875332007-05-08 17:22:03 +02001488 for (i = 0; i < 3; i++) {
1489 data->fan[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001490 w83781d_read_value(data, W83781D_REG_FAN(i));
Jean Delvare34875332007-05-08 17:22:03 +02001491 data->fan_min[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001492 w83781d_read_value(data, W83781D_REG_FAN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 }
1494 if (data->type != w83781d && data->type != as99127f) {
Jean Delvare34875332007-05-08 17:22:03 +02001495 for (i = 0; i < 4; i++) {
1496 data->pwm[i] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001497 w83781d_read_value(data,
Jean Delvare34875332007-05-08 17:22:03 +02001498 W83781D_REG_PWM[i]);
Jean Delvare848ddf12009-05-08 20:27:28 +02001499 /* Only W83782D on SMBus has PWM3 and PWM4 */
1500 if ((data->type != w83782d || !client)
Jean Delvare34875332007-05-08 17:22:03 +02001501 && i == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 break;
1503 }
1504 /* Only PWM2 can be disabled */
Jean Delvare34875332007-05-08 17:22:03 +02001505 data->pwm2_enable = (w83781d_read_value(data,
Guenter Roeckc531eb32012-01-15 09:19:16 -08001506 W83781D_REG_PWMCLK12) & 0x08) >> 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
1508
Jean Delvare31b8dc42007-05-08 17:22:03 +02001509 data->temp = w83781d_read_value(data, W83781D_REG_TEMP(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 data->temp_max =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001511 w83781d_read_value(data, W83781D_REG_TEMP_OVER(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 data->temp_max_hyst =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001513 w83781d_read_value(data, W83781D_REG_TEMP_HYST(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 data->temp_add[0] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001515 w83781d_read_value(data, W83781D_REG_TEMP(2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 data->temp_max_add[0] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001517 w83781d_read_value(data, W83781D_REG_TEMP_OVER(2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 data->temp_max_hyst_add[0] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001519 w83781d_read_value(data, W83781D_REG_TEMP_HYST(2));
Jean Delvare7c7a5302005-06-16 19:24:14 +02001520 if (data->type != w83783s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 data->temp_add[1] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001522 w83781d_read_value(data, W83781D_REG_TEMP(3));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 data->temp_max_add[1] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001524 w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 W83781D_REG_TEMP_OVER(3));
1526 data->temp_max_hyst_add[1] =
Jean Delvare31b8dc42007-05-08 17:22:03 +02001527 w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 W83781D_REG_TEMP_HYST(3));
1529 }
Jean Delvare31b8dc42007-05-08 17:22:03 +02001530 i = w83781d_read_value(data, W83781D_REG_VID_FANDIV);
Jean Delvare7c7a5302005-06-16 19:24:14 +02001531 data->vid = i & 0x0f;
Jean Delvare31b8dc42007-05-08 17:22:03 +02001532 data->vid |= (w83781d_read_value(data,
Jean Delvare7c7a5302005-06-16 19:24:14 +02001533 W83781D_REG_CHIPID) & 0x01) << 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 data->fan_div[0] = (i >> 4) & 0x03;
1535 data->fan_div[1] = (i >> 6) & 0x03;
Jean Delvare31b8dc42007-05-08 17:22:03 +02001536 data->fan_div[2] = (w83781d_read_value(data,
Jean Delvare7c7a5302005-06-16 19:24:14 +02001537 W83781D_REG_PIN) >> 6) & 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if ((data->type != w83781d) && (data->type != as99127f)) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001539 i = w83781d_read_value(data, W83781D_REG_VBAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 data->fan_div[0] |= (i >> 3) & 0x04;
1541 data->fan_div[1] |= (i >> 4) & 0x04;
Jean Delvare7c7a5302005-06-16 19:24:14 +02001542 data->fan_div[2] |= (i >> 5) & 0x04;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
Jean Delvare05663362007-11-30 23:51:24 +01001544 if (data->type == w83782d) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001545 data->alarms = w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001546 W83782D_REG_ALARM1)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001547 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001548 W83782D_REG_ALARM2) << 8)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001549 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001550 W83782D_REG_ALARM3) << 16);
1551 } else if (data->type == w83783s) {
Jean Delvare31b8dc42007-05-08 17:22:03 +02001552 data->alarms = w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001553 W83782D_REG_ALARM1)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001554 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001555 W83782D_REG_ALARM2) << 8);
1556 } else {
Guenter Roeckaff6e002012-01-19 11:02:27 -08001557 /*
1558 * No real-time status registers, fall back to
1559 * interrupt status registers
1560 */
Jean Delvare31b8dc42007-05-08 17:22:03 +02001561 data->alarms = w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001562 W83781D_REG_ALARM1)
Jean Delvare31b8dc42007-05-08 17:22:03 +02001563 | (w83781d_read_value(data,
Jean Delvarec7f5d7e2006-02-05 23:13:48 +01001564 W83781D_REG_ALARM2) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
Jean Delvare31b8dc42007-05-08 17:22:03 +02001566 i = w83781d_read_value(data, W83781D_REG_BEEP_INTS2);
Jean Delvare2fbbbf12008-10-17 17:51:18 +02001567 data->beep_mask = (i << 8) +
Jean Delvare31b8dc42007-05-08 17:22:03 +02001568 w83781d_read_value(data, W83781D_REG_BEEP_INTS1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if ((data->type != w83781d) && (data->type != as99127f)) {
1570 data->beep_mask |=
Jean Delvare31b8dc42007-05-08 17:22:03 +02001571 w83781d_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 W83781D_REG_BEEP_INTS3) << 16;
1573 }
1574 data->last_updated = jiffies;
1575 data->valid = 1;
1576 }
1577
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001578 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 return data;
1581}
1582
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001583static const struct i2c_device_id w83781d_ids[] = {
1584 { "w83781d", w83781d, },
1585 { "w83782d", w83782d, },
1586 { "w83783s", w83783s, },
1587 { "as99127f", as99127f },
1588 { /* LIST END */ }
1589};
1590MODULE_DEVICE_TABLE(i2c, w83781d_ids);
1591
1592static struct i2c_driver w83781d_driver = {
1593 .class = I2C_CLASS_HWMON,
1594 .driver = {
1595 .name = "w83781d",
1596 },
1597 .probe = w83781d_probe,
1598 .remove = w83781d_remove,
1599 .id_table = w83781d_ids,
1600 .detect = w83781d_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +01001601 .address_list = normal_i2c,
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001602};
1603
1604/*
1605 * ISA related code
1606 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001607#ifdef CONFIG_ISA
1608
1609/* ISA device, if found */
1610static struct platform_device *pdev;
1611
1612static unsigned short isa_address = 0x290;
1613
Guenter Roeckaff6e002012-01-19 11:02:27 -08001614/*
1615 * I2C devices get this name attribute automatically, but for ISA devices
1616 * we must create it by ourselves.
1617 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001618static ssize_t
1619show_name(struct device *dev, struct device_attribute *devattr, char *buf)
1620{
1621 struct w83781d_data *data = dev_get_drvdata(dev);
Jean Delvare360782d2008-10-17 17:51:19 +02001622 return sprintf(buf, "%s\n", data->name);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001623}
1624static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1625
1626static struct w83781d_data *w83781d_data_if_isa(void)
1627{
1628 return pdev ? platform_get_drvdata(pdev) : NULL;
1629}
1630
1631/* Returns 1 if the I2C chip appears to be an alias of the ISA chip */
1632static int w83781d_alias_detect(struct i2c_client *client, u8 chipid)
1633{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001634 struct w83781d_data *isa;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001635 int i;
1636
1637 if (!pdev) /* No ISA chip */
1638 return 0;
1639
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001640 isa = platform_get_drvdata(pdev);
1641
1642 if (w83781d_read_value(isa, W83781D_REG_I2C_ADDR) != client->addr)
1643 return 0; /* Address doesn't match */
1644 if (w83781d_read_value(isa, W83781D_REG_WCHIPID) != chipid)
1645 return 0; /* Chip type doesn't match */
1646
Guenter Roeckaff6e002012-01-19 11:02:27 -08001647 /*
1648 * We compare all the limit registers, the config register and the
1649 * interrupt mask registers
1650 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001651 for (i = 0x2b; i <= 0x3d; i++) {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001652 if (w83781d_read_value(isa, i) !=
1653 i2c_smbus_read_byte_data(client, i))
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001654 return 0;
1655 }
1656 if (w83781d_read_value(isa, W83781D_REG_CONFIG) !=
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001657 i2c_smbus_read_byte_data(client, W83781D_REG_CONFIG))
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001658 return 0;
1659 for (i = 0x43; i <= 0x46; i++) {
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001660 if (w83781d_read_value(isa, i) !=
1661 i2c_smbus_read_byte_data(client, i))
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001662 return 0;
1663 }
1664
1665 return 1;
1666}
1667
1668static int
1669w83781d_read_value_isa(struct w83781d_data *data, u16 reg)
1670{
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001671 int word_sized, res;
1672
1673 word_sized = (((reg & 0xff00) == 0x100)
1674 || ((reg & 0xff00) == 0x200))
1675 && (((reg & 0x00ff) == 0x50)
1676 || ((reg & 0x00ff) == 0x53)
1677 || ((reg & 0x00ff) == 0x55));
1678 if (reg & 0xff00) {
1679 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001680 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001681 outb_p(reg >> 8,
Jean Delvare360782d2008-10-17 17:51:19 +02001682 data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001683 }
Jean Delvare360782d2008-10-17 17:51:19 +02001684 outb_p(reg & 0xff, data->isa_addr + W83781D_ADDR_REG_OFFSET);
1685 res = inb_p(data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001686 if (word_sized) {
1687 outb_p((reg & 0xff) + 1,
Jean Delvare360782d2008-10-17 17:51:19 +02001688 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001689 res =
Jean Delvare360782d2008-10-17 17:51:19 +02001690 (res << 8) + inb_p(data->isa_addr +
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001691 W83781D_DATA_REG_OFFSET);
1692 }
1693 if (reg & 0xff00) {
1694 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001695 data->isa_addr + W83781D_ADDR_REG_OFFSET);
1696 outb_p(0, data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001697 }
1698 return res;
1699}
1700
1701static void
1702w83781d_write_value_isa(struct w83781d_data *data, u16 reg, u16 value)
1703{
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001704 int word_sized;
1705
1706 word_sized = (((reg & 0xff00) == 0x100)
1707 || ((reg & 0xff00) == 0x200))
1708 && (((reg & 0x00ff) == 0x53)
1709 || ((reg & 0x00ff) == 0x55));
1710 if (reg & 0xff00) {
1711 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001712 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001713 outb_p(reg >> 8,
Jean Delvare360782d2008-10-17 17:51:19 +02001714 data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001715 }
Jean Delvare360782d2008-10-17 17:51:19 +02001716 outb_p(reg & 0xff, data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001717 if (word_sized) {
1718 outb_p(value >> 8,
Jean Delvare360782d2008-10-17 17:51:19 +02001719 data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001720 outb_p((reg & 0xff) + 1,
Jean Delvare360782d2008-10-17 17:51:19 +02001721 data->isa_addr + W83781D_ADDR_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001722 }
Jean Delvare360782d2008-10-17 17:51:19 +02001723 outb_p(value & 0xff, data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001724 if (reg & 0xff00) {
1725 outb_p(W83781D_REG_BANK,
Jean Delvare360782d2008-10-17 17:51:19 +02001726 data->isa_addr + W83781D_ADDR_REG_OFFSET);
1727 outb_p(0, data->isa_addr + W83781D_DATA_REG_OFFSET);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001728 }
1729}
1730
Guenter Roeckaff6e002012-01-19 11:02:27 -08001731/*
1732 * The SMBus locks itself, usually, but nothing may access the Winbond between
1733 * bank switches. ISA access must always be locked explicitly!
1734 * We ignore the W83781D BUSY flag at this moment - it could lead to deadlocks,
1735 * would slow down the W83781D access and should not be necessary.
1736 * There are some ugly typecasts here, but the good news is - they should
1737 * nowhere else be necessary!
1738 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001739static int
1740w83781d_read_value(struct w83781d_data *data, u16 reg)
1741{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001742 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001743 int res;
1744
1745 mutex_lock(&data->lock);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001746 if (client)
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001747 res = w83781d_read_value_i2c(data, reg);
1748 else
1749 res = w83781d_read_value_isa(data, reg);
1750 mutex_unlock(&data->lock);
1751 return res;
1752}
1753
1754static int
1755w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value)
1756{
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001757 struct i2c_client *client = data->client;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001758
1759 mutex_lock(&data->lock);
Wolfgang Grandegger0217eae2008-10-17 17:51:19 +02001760 if (client)
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001761 w83781d_write_value_i2c(data, reg, value);
1762 else
1763 w83781d_write_value_isa(data, reg, value);
1764 mutex_unlock(&data->lock);
1765 return 0;
1766}
1767
Bill Pemberton6c931ae2012-11-19 13:22:35 -05001768static int
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001769w83781d_isa_probe(struct platform_device *pdev)
1770{
1771 int err, reg;
1772 struct w83781d_data *data;
1773 struct resource *res;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001774
1775 /* Reserve the ISA region */
1776 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck144d2b92012-06-02 11:48:00 -07001777 if (!devm_request_region(&pdev->dev,
1778 res->start + W83781D_ADDR_REG_OFFSET, 2,
1779 "w83781d"))
1780 return -EBUSY;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001781
Guenter Roeck144d2b92012-06-02 11:48:00 -07001782 data = devm_kzalloc(&pdev->dev, sizeof(struct w83781d_data),
1783 GFP_KERNEL);
1784 if (!data)
1785 return -ENOMEM;
1786
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001787 mutex_init(&data->lock);
Jean Delvare360782d2008-10-17 17:51:19 +02001788 data->isa_addr = res->start;
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001789 platform_set_drvdata(pdev, data);
1790
1791 reg = w83781d_read_value(data, W83781D_REG_WCHIPID);
1792 switch (reg) {
1793 case 0x30:
1794 data->type = w83782d;
Jean Delvare360782d2008-10-17 17:51:19 +02001795 data->name = "w83782d";
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001796 break;
1797 default:
1798 data->type = w83781d;
Jean Delvare360782d2008-10-17 17:51:19 +02001799 data->name = "w83781d";
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001800 }
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001801
1802 /* Initialize the W83781D chip */
1803 w83781d_init_device(&pdev->dev);
1804
1805 /* Register sysfs hooks */
1806 err = w83781d_create_files(&pdev->dev, data->type, 1);
1807 if (err)
1808 goto exit_remove_files;
1809
1810 err = device_create_file(&pdev->dev, &dev_attr_name);
1811 if (err)
1812 goto exit_remove_files;
1813
1814 data->hwmon_dev = hwmon_device_register(&pdev->dev);
1815 if (IS_ERR(data->hwmon_dev)) {
1816 err = PTR_ERR(data->hwmon_dev);
1817 goto exit_remove_files;
1818 }
1819
1820 return 0;
1821
1822 exit_remove_files:
Guenter Roeck79501332012-01-16 20:45:16 -08001823 w83781d_remove_files(&pdev->dev);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001824 device_remove_file(&pdev->dev, &dev_attr_name);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001825 return err;
1826}
1827
Bill Pemberton281dfd02012-11-19 13:25:51 -05001828static int
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001829w83781d_isa_remove(struct platform_device *pdev)
1830{
1831 struct w83781d_data *data = platform_get_drvdata(pdev);
1832
1833 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeck79501332012-01-16 20:45:16 -08001834 w83781d_remove_files(&pdev->dev);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001835 device_remove_file(&pdev->dev, &dev_attr_name);
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001836
1837 return 0;
1838}
1839
1840static struct platform_driver w83781d_isa_driver = {
1841 .driver = {
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001842 .name = "w83781d",
1843 },
1844 .probe = w83781d_isa_probe,
Bill Pemberton9e5e9b72012-11-19 13:21:20 -05001845 .remove = w83781d_isa_remove,
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001846};
1847
Jean Delvare7666c132007-05-08 17:22:02 +02001848/* return 1 if a supported chip is found, 0 otherwise */
1849static int __init
1850w83781d_isa_found(unsigned short address)
1851{
1852 int val, save, found = 0;
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001853 int port;
Jean Delvare7666c132007-05-08 17:22:02 +02001854
Guenter Roeckaff6e002012-01-19 11:02:27 -08001855 /*
1856 * Some boards declare base+0 to base+7 as a PNP device, some base+4
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001857 * to base+7 and some base+5 to base+6. So we better request each port
Guenter Roeckaff6e002012-01-19 11:02:27 -08001858 * individually for the probing phase.
1859 */
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001860 for (port = address; port < address + W83781D_EXTENT; port++) {
1861 if (!request_region(port, 1, "w83781d")) {
Joe Perches1ca28212011-01-12 21:55:11 +01001862 pr_debug("Failed to request port 0x%x\n", port);
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001863 goto release;
1864 }
Jean Delvare2961cb22008-03-09 13:34:28 +01001865 }
Jean Delvare7666c132007-05-08 17:22:02 +02001866
1867#define REALLY_SLOW_IO
Guenter Roeckaff6e002012-01-19 11:02:27 -08001868 /*
1869 * We need the timeouts for at least some W83781D-like
1870 * chips. But only if we read 'undefined' registers.
1871 */
Jean Delvare7666c132007-05-08 17:22:02 +02001872 val = inb_p(address + 1);
1873 if (inb_p(address + 2) != val
1874 || inb_p(address + 3) != val
1875 || inb_p(address + 7) != val) {
Joe Perches1ca28212011-01-12 21:55:11 +01001876 pr_debug("Detection failed at step %d\n", 1);
Jean Delvare7666c132007-05-08 17:22:02 +02001877 goto release;
1878 }
1879#undef REALLY_SLOW_IO
1880
Guenter Roeckaff6e002012-01-19 11:02:27 -08001881 /*
1882 * We should be able to change the 7 LSB of the address port. The
1883 * MSB (busy flag) should be clear initially, set after the write.
1884 */
Jean Delvare7666c132007-05-08 17:22:02 +02001885 save = inb_p(address + W83781D_ADDR_REG_OFFSET);
1886 if (save & 0x80) {
Joe Perches1ca28212011-01-12 21:55:11 +01001887 pr_debug("Detection failed at step %d\n", 2);
Jean Delvare7666c132007-05-08 17:22:02 +02001888 goto release;
1889 }
1890 val = ~save & 0x7f;
1891 outb_p(val, address + W83781D_ADDR_REG_OFFSET);
1892 if (inb_p(address + W83781D_ADDR_REG_OFFSET) != (val | 0x80)) {
1893 outb_p(save, address + W83781D_ADDR_REG_OFFSET);
Joe Perches1ca28212011-01-12 21:55:11 +01001894 pr_debug("Detection failed at step %d\n", 3);
Jean Delvare7666c132007-05-08 17:22:02 +02001895 goto release;
1896 }
1897
1898 /* We found a device, now see if it could be a W83781D */
1899 outb_p(W83781D_REG_CONFIG, address + W83781D_ADDR_REG_OFFSET);
1900 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1901 if (val & 0x80) {
Joe Perches1ca28212011-01-12 21:55:11 +01001902 pr_debug("Detection failed at step %d\n", 4);
Jean Delvare7666c132007-05-08 17:22:02 +02001903 goto release;
1904 }
1905 outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET);
1906 save = inb_p(address + W83781D_DATA_REG_OFFSET);
1907 outb_p(W83781D_REG_CHIPMAN, address + W83781D_ADDR_REG_OFFSET);
1908 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1909 if ((!(save & 0x80) && (val != 0xa3))
1910 || ((save & 0x80) && (val != 0x5c))) {
Joe Perches1ca28212011-01-12 21:55:11 +01001911 pr_debug("Detection failed at step %d\n", 5);
Jean Delvare7666c132007-05-08 17:22:02 +02001912 goto release;
1913 }
1914 outb_p(W83781D_REG_I2C_ADDR, address + W83781D_ADDR_REG_OFFSET);
1915 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1916 if (val < 0x03 || val > 0x77) { /* Not a valid I2C address */
Joe Perches1ca28212011-01-12 21:55:11 +01001917 pr_debug("Detection failed at step %d\n", 6);
Jean Delvare7666c132007-05-08 17:22:02 +02001918 goto release;
1919 }
1920
1921 /* The busy flag should be clear again */
1922 if (inb_p(address + W83781D_ADDR_REG_OFFSET) & 0x80) {
Joe Perches1ca28212011-01-12 21:55:11 +01001923 pr_debug("Detection failed at step %d\n", 7);
Jean Delvare7666c132007-05-08 17:22:02 +02001924 goto release;
1925 }
1926
1927 /* Determine the chip type */
1928 outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET);
1929 save = inb_p(address + W83781D_DATA_REG_OFFSET);
1930 outb_p(save & 0xf8, address + W83781D_DATA_REG_OFFSET);
1931 outb_p(W83781D_REG_WCHIPID, address + W83781D_ADDR_REG_OFFSET);
1932 val = inb_p(address + W83781D_DATA_REG_OFFSET);
1933 if ((val & 0xfe) == 0x10 /* W83781D */
Jean Delvare05663362007-11-30 23:51:24 +01001934 || val == 0x30) /* W83782D */
Jean Delvare7666c132007-05-08 17:22:02 +02001935 found = 1;
1936
1937 if (found)
Joe Perches1ca28212011-01-12 21:55:11 +01001938 pr_info("Found a %s chip at %#x\n",
Jean Delvare7666c132007-05-08 17:22:02 +02001939 val == 0x30 ? "W83782D" : "W83781D", (int)address);
1940
1941 release:
Jean Delvareb0bcdd32010-02-05 19:58:36 +01001942 for (port--; port >= address; port--)
1943 release_region(port, 1);
Jean Delvare7666c132007-05-08 17:22:02 +02001944 return found;
1945}
1946
1947static int __init
1948w83781d_isa_device_add(unsigned short address)
1949{
1950 struct resource res = {
1951 .start = address,
Jean Delvare15bde2f2007-08-29 10:39:57 +02001952 .end = address + W83781D_EXTENT - 1,
Jean Delvare7666c132007-05-08 17:22:02 +02001953 .name = "w83781d",
1954 .flags = IORESOURCE_IO,
1955 };
1956 int err;
1957
1958 pdev = platform_device_alloc("w83781d", address);
1959 if (!pdev) {
1960 err = -ENOMEM;
Joe Perches1ca28212011-01-12 21:55:11 +01001961 pr_err("Device allocation failed\n");
Jean Delvare7666c132007-05-08 17:22:02 +02001962 goto exit;
1963 }
1964
1965 err = platform_device_add_resources(pdev, &res, 1);
1966 if (err) {
Joe Perches1ca28212011-01-12 21:55:11 +01001967 pr_err("Device resource addition failed (%d)\n", err);
Jean Delvare7666c132007-05-08 17:22:02 +02001968 goto exit_device_put;
1969 }
1970
1971 err = platform_device_add(pdev);
1972 if (err) {
Joe Perches1ca28212011-01-12 21:55:11 +01001973 pr_err("Device addition failed (%d)\n", err);
Jean Delvare7666c132007-05-08 17:22:02 +02001974 goto exit_device_put;
1975 }
1976
1977 return 0;
1978
1979 exit_device_put:
1980 platform_device_put(pdev);
1981 exit:
1982 pdev = NULL;
1983 return err;
1984}
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986static int __init
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02001987w83781d_isa_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
Jean Delvarefde09502005-07-19 23:51:07 +02001989 int res;
1990
Jean Delvare7666c132007-05-08 17:22:02 +02001991 if (w83781d_isa_found(isa_address)) {
1992 res = platform_driver_register(&w83781d_isa_driver);
1993 if (res)
Jean Delvarec6566202008-10-17 17:51:18 +02001994 goto exit;
Jean Delvare7666c132007-05-08 17:22:02 +02001995
1996 /* Sets global pdev as a side effect */
1997 res = w83781d_isa_device_add(isa_address);
1998 if (res)
1999 goto exit_unreg_isa_driver;
2000 }
Jean Delvarefde09502005-07-19 23:51:07 +02002001
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002002 return 0;
2003
2004exit_unreg_isa_driver:
2005 platform_driver_unregister(&w83781d_isa_driver);
2006exit:
2007 return res;
2008}
2009
Geert Uytterhoevendd56b632008-10-26 17:04:38 +01002010static void
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002011w83781d_isa_unregister(void)
2012{
2013 if (pdev) {
2014 platform_device_unregister(pdev);
2015 platform_driver_unregister(&w83781d_isa_driver);
2016 }
2017}
2018#else /* !CONFIG_ISA */
2019
2020static struct w83781d_data *w83781d_data_if_isa(void)
2021{
2022 return NULL;
2023}
2024
2025static int
2026w83781d_alias_detect(struct i2c_client *client, u8 chipid)
2027{
2028 return 0;
2029}
2030
2031static int
2032w83781d_read_value(struct w83781d_data *data, u16 reg)
2033{
2034 int res;
2035
2036 mutex_lock(&data->lock);
2037 res = w83781d_read_value_i2c(data, reg);
2038 mutex_unlock(&data->lock);
2039
2040 return res;
2041}
2042
2043static int
2044w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value)
2045{
2046 mutex_lock(&data->lock);
2047 w83781d_write_value_i2c(data, reg, value);
2048 mutex_unlock(&data->lock);
2049
2050 return 0;
2051}
2052
2053static int __init
2054w83781d_isa_register(void)
2055{
2056 return 0;
2057}
2058
Geert Uytterhoevendd56b632008-10-26 17:04:38 +01002059static void
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002060w83781d_isa_unregister(void)
2061{
2062}
2063#endif /* CONFIG_ISA */
2064
2065static int __init
2066sensors_w83781d_init(void)
2067{
2068 int res;
2069
Guenter Roeckaff6e002012-01-19 11:02:27 -08002070 /*
2071 * We register the ISA device first, so that we can skip the
2072 * registration of an I2C interface to the same device.
2073 */
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002074 res = w83781d_isa_register();
2075 if (res)
2076 goto exit;
2077
Jean Delvarec6566202008-10-17 17:51:18 +02002078 res = i2c_add_driver(&w83781d_driver);
2079 if (res)
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002080 goto exit_unreg_isa;
Jean Delvarec6566202008-10-17 17:51:18 +02002081
Jean Delvarefde09502005-07-19 23:51:07 +02002082 return 0;
Jean Delvare7666c132007-05-08 17:22:02 +02002083
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002084 exit_unreg_isa:
2085 w83781d_isa_unregister();
Jean Delvare7666c132007-05-08 17:22:02 +02002086 exit:
2087 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088}
2089
2090static void __exit
2091sensors_w83781d_exit(void)
2092{
Wolfgang Grandegger443850c2008-10-17 17:51:18 +02002093 w83781d_isa_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 i2c_del_driver(&w83781d_driver);
2095}
2096
2097MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, "
2098 "Philip Edelbrock <phil@netroedge.com>, "
2099 "and Mark Studebaker <mdsxyz123@yahoo.com>");
2100MODULE_DESCRIPTION("W83781D driver");
2101MODULE_LICENSE("GPL");
2102
2103module_init(sensors_w83781d_init);
2104module_exit(sensors_w83781d_exit);