w83781d.c 58.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
    w83781d.c - Part of lm_sensors, Linux kernel modules for hardware
                monitoring
    Copyright (c) 1998 - 2001  Frodo Looijaard <frodol@dds.nl>,
5 6 7
                               Philip Edelbrock <phil@netroedge.com>,
                               and Mark Studebaker <mdsxyz123@yahoo.com>
    Copyright (c) 2007         Jean Delvare <khali@linux-fr.org>
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

/*
    Supports following chips:

    Chip	#vin	#fanin	#pwm	#temp	wchipid	vendid	i2c	ISA
    as99127f	7	3	0	3	0x31	0x12c3	yes	no
    as99127f rev.2 (type_name = as99127f)	0x31	0x5ca3	yes	no
    w83781d	7	3	0	3	0x10-1	0x5ca3	yes	yes
    w83627hf	9	3	2	3	0x21	0x5ca3	yes	yes(LPC)
    w83782d	9	3	2-4	3	0x30	0x5ca3	yes	yes
    w83783s	5-6	3	2	1-2	0x40	0x5ca3	yes	no

*/

#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/jiffies.h>
#include <linux/i2c.h>
42 43
#include <linux/platform_device.h>
#include <linux/ioport.h>
44
#include <linux/hwmon.h>
45
#include <linux/hwmon-vid.h>
46
#include <linux/hwmon-sysfs.h>
47
#include <linux/sysfs.h>
48
#include <linux/err.h>
49
#include <linux/mutex.h>
L
Linus Torvalds 已提交
50 51 52
#include <asm/io.h>
#include "lm75.h"

53 54 55
/* ISA device, if found */
static struct platform_device *pdev;

L
Linus Torvalds 已提交
56
/* Addresses to scan */
57 58
static unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,
				       0x2e, 0x2f, I2C_CLIENT_END };
59
static unsigned short isa_address = 0x290;
L
Linus Torvalds 已提交
60 61

/* Insmod parameters */
62
I2C_CLIENT_INSMOD_5(w83781d, w83782d, w83783s, w83627hf, as99127f);
L
Linus Torvalds 已提交
63 64 65
I2C_CLIENT_MODULE_PARM(force_subclients, "List of subclient addresses: "
		    "{bus, clientaddr, subclientaddr1, subclientaddr2}");

66 67 68 69
static int reset;
module_param(reset, bool, 0);
MODULE_PARM_DESC(reset, "Set to one to reset chip on load");

L
Linus Torvalds 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82
static int init = 1;
module_param(init, bool, 0);
MODULE_PARM_DESC(init, "Set to zero to bypass chip initialization");

/* Constants specified below */

/* Length of ISA address segment */
#define W83781D_EXTENT			8

/* Where are the ISA address/data registers relative to the base address */
#define W83781D_ADDR_REG_OFFSET		5
#define W83781D_DATA_REG_OFFSET		6

83 84
/* The device registers */
/* in nr from 0 to 8 */
L
Linus Torvalds 已提交
85 86 87 88 89 90 91
#define W83781D_REG_IN_MAX(nr)		((nr < 7) ? (0x2b + (nr) * 2) : \
						    (0x554 + (((nr) - 7) * 2)))
#define W83781D_REG_IN_MIN(nr)		((nr < 7) ? (0x2c + (nr) * 2) : \
						    (0x555 + (((nr) - 7) * 2)))
#define W83781D_REG_IN(nr)		((nr < 7) ? (0x20 + (nr)) : \
						    (0x550 + (nr) - 7))

92 93 94
/* fan nr from 0 to 2 */
#define W83781D_REG_FAN_MIN(nr)		(0x3b + (nr))
#define W83781D_REG_FAN(nr)		(0x28 + (nr))
L
Linus Torvalds 已提交
95 96 97 98

#define W83781D_REG_BANK		0x4E
#define W83781D_REG_TEMP2_CONFIG	0x152
#define W83781D_REG_TEMP3_CONFIG	0x252
99
/* temp nr from 1 to 3 */
L
Linus Torvalds 已提交
100 101 102 103 104 105 106 107 108 109 110
#define W83781D_REG_TEMP(nr)		((nr == 3) ? (0x0250) : \
					((nr == 2) ? (0x0150) : \
						     (0x27)))
#define W83781D_REG_TEMP_HYST(nr)	((nr == 3) ? (0x253) : \
					((nr == 2) ? (0x153) : \
						     (0x3A)))
#define W83781D_REG_TEMP_OVER(nr)	((nr == 3) ? (0x255) : \
					((nr == 2) ? (0x155) : \
						     (0x39)))

#define W83781D_REG_CONFIG		0x40
111 112

/* Interrupt status (W83781D, AS99127F) */
L
Linus Torvalds 已提交
113 114 115
#define W83781D_REG_ALARM1		0x41
#define W83781D_REG_ALARM2		0x42

116 117 118 119 120
/* Real-time status (W83782D, W83783S, W83627HF) */
#define W83782D_REG_ALARM1		0x459
#define W83782D_REG_ALARM2		0x45A
#define W83782D_REG_ALARM3		0x45B

L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
#define W83781D_REG_BEEP_CONFIG		0x4D
#define W83781D_REG_BEEP_INTS1		0x56
#define W83781D_REG_BEEP_INTS2		0x57
#define W83781D_REG_BEEP_INTS3		0x453	/* not on W83781D */

#define W83781D_REG_VID_FANDIV		0x47

#define W83781D_REG_CHIPID		0x49
#define W83781D_REG_WCHIPID		0x58
#define W83781D_REG_CHIPMAN		0x4F
#define W83781D_REG_PIN			0x4B

/* 782D/783S only */
#define W83781D_REG_VBAT		0x5D

/* PWM 782D (1-4) and 783S (1-2) only */
137
static const u8 W83781D_REG_PWM[] = { 0x5B, 0x5A, 0x5E, 0x5F };
L
Linus Torvalds 已提交
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
#define W83781D_REG_PWMCLK12		0x5C
#define W83781D_REG_PWMCLK34		0x45C

#define W83781D_REG_I2C_ADDR		0x48
#define W83781D_REG_I2C_SUBADDR		0x4A

/* The following are undocumented in the data sheets however we
   received the information in an email from Winbond tech support */
/* Sensor selection - not on 781d */
#define W83781D_REG_SCFG1		0x5D
static const u8 BIT_SCFG1[] = { 0x02, 0x04, 0x08 };

#define W83781D_REG_SCFG2		0x59
static const u8 BIT_SCFG2[] = { 0x10, 0x20, 0x40 };

#define W83781D_DEFAULT_BETA		3435

/* RT Table registers */
#define W83781D_REG_RT_IDX		0x50
#define W83781D_REG_RT_VAL		0x51

159 160 161
/* Conversions */
#define IN_TO_REG(val)			SENSORS_LIMIT(((val) + 8) / 16, 0, 255)
#define IN_FROM_REG(val)		((val) * 16)
L
Linus Torvalds 已提交
162 163 164 165 166 167 168 169 170 171

static inline u8
FAN_TO_REG(long rpm, int div)
{
	if (rpm == 0)
		return 255;
	rpm = SENSORS_LIMIT(rpm, 1, 1000000);
	return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
}

172 173 174 175 176 177 178 179 180
static inline long
FAN_FROM_REG(u8 val, int div)
{
	if (val == 0)
		return -1;
	if (val == 255)
		return 0;
	return 1350000 / (val * div);
}
L
Linus Torvalds 已提交
181

182 183
#define TEMP_TO_REG(val)		SENSORS_LIMIT((val) / 1000, -127, 128)
#define TEMP_FROM_REG(val)		((val) * 1000)
L
Linus Torvalds 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198

#define BEEP_MASK_FROM_REG(val,type)	((type) == as99127f ? \
					 (val) ^ 0x7fff : (val))
#define BEEP_MASK_TO_REG(val,type)	((type) == as99127f ? \
					 (~(val)) & 0x7fff : (val) & 0xffffff)

#define DIV_FROM_REG(val)		(1 << (val))

static inline u8
DIV_TO_REG(long val, enum chips type)
{
	int i;
	val = SENSORS_LIMIT(val, 1,
			    ((type == w83781d
			      || type == as99127f) ? 8 : 128)) >> 1;
199
	for (i = 0; i < 7; i++) {
L
Linus Torvalds 已提交
200 201 202 203
		if (val == 0)
			break;
		val >>= 1;
	}
204
	return i;
L
Linus Torvalds 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217
}

/* There are some complications in a module like this. First off, W83781D chips
   may be both present on the SMBus and the ISA bus, and we have to handle
   those cases separately at some places. Second, there might be several
   W83781D chips available (well, actually, that is probably never done; but
   it is a clean illustration of how to handle a case like that). Finally,
   a specific chip may be attached to *both* ISA and SMBus, and we would
   not like to detect it double. Fortunately, in the case of the W83781D at
   least, a register tells us what SMBus address we are on, so that helps
   a bit - except if there could be more than one SMBus. Groan. No solution
   for this yet. */

218 219
/* For ISA chips, we abuse the i2c_client addr and name fields. We also use
   the driver field to differentiate between I2C and ISA chips. */
L
Linus Torvalds 已提交
220 221
struct w83781d_data {
	struct i2c_client client;
222
	struct device *hwmon_dev;
223
	struct mutex lock;
L
Linus Torvalds 已提交
224 225
	enum chips type;

226
	struct mutex update_lock;
L
Linus Torvalds 已提交
227 228 229 230 231 232 233 234 235 236 237
	char valid;		/* !=0 if following fields are valid */
	unsigned long last_updated;	/* In jiffies */

	struct i2c_client *lm75[2];	/* for secondary I2C addresses */
	/* array of 2 pointers to subclients */

	u8 in[9];		/* Register value - 8 & 9 for 782D only */
	u8 in_max[9];		/* Register value - 8 & 9 for 782D only */
	u8 in_min[9];		/* Register value - 8 & 9 for 782D only */
	u8 fan[3];		/* Register value */
	u8 fan_min[3];		/* Register value */
238 239 240
	s8 temp;		/* Register value */
	s8 temp_max;		/* Register value */
	s8 temp_max_hyst;	/* Register value */
L
Linus Torvalds 已提交
241 242 243 244 245 246 247 248 249
	u16 temp_add[2];	/* Register value */
	u16 temp_max_add[2];	/* Register value */
	u16 temp_max_hyst_add[2];	/* Register value */
	u8 fan_div[3];		/* Register encoding, shifted right */
	u8 vid;			/* Register encoding, combined */
	u32 alarms;		/* Register encoding, combined */
	u32 beep_mask;		/* Register encoding, combined */
	u8 beep_enable;		/* Boolean */
	u8 pwm[4];		/* Register value */
250
	u8 pwm2_enable;		/* Boolean */
L
Linus Torvalds 已提交
251 252
	u16 sens[3];		/* 782D/783S only.
				   1 = pentium diode; 2 = 3904 diode;
J
Jean Delvare 已提交
253
				   4 = thermistor */
L
Linus Torvalds 已提交
254 255 256 257 258 259 260
	u8 vrm;
};

static int w83781d_attach_adapter(struct i2c_adapter *adapter);
static int w83781d_detect(struct i2c_adapter *adapter, int address, int kind);
static int w83781d_detach_client(struct i2c_client *client);

261 262 263
static int __devinit w83781d_isa_probe(struct platform_device *pdev);
static int __devexit w83781d_isa_remove(struct platform_device *pdev);

264 265
static int w83781d_read_value(struct w83781d_data *data, u16 reg);
static int w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value);
L
Linus Torvalds 已提交
266
static struct w83781d_data *w83781d_update_device(struct device *dev);
267
static void w83781d_init_device(struct device *dev);
L
Linus Torvalds 已提交
268 269

static struct i2c_driver w83781d_driver = {
270 271 272
	.driver = {
		.name = "w83781d",
	},
L
Linus Torvalds 已提交
273 274 275 276 277
	.id = I2C_DRIVERID_W83781D,
	.attach_adapter = w83781d_attach_adapter,
	.detach_client = w83781d_detach_client,
};

278
static struct platform_driver w83781d_isa_driver = {
279
	.driver = {
J
Jean Delvare 已提交
280
		.owner = THIS_MODULE,
281
		.name = "w83781d",
282
	},
283 284
	.probe = w83781d_isa_probe,
	.remove = w83781d_isa_remove,
285 286 287
};


L
Linus Torvalds 已提交
288 289
/* following are the sysfs callback functions */
#define show_in_reg(reg) \
290 291
static ssize_t show_##reg (struct device *dev, struct device_attribute *da, \
		char *buf) \
L
Linus Torvalds 已提交
292
{ \
293
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
L
Linus Torvalds 已提交
294
	struct w83781d_data *data = w83781d_update_device(dev); \
295 296
	return sprintf(buf, "%ld\n", \
		       (long)IN_FROM_REG(data->reg[attr->index])); \
L
Linus Torvalds 已提交
297 298 299 300 301 302
}
show_in_reg(in);
show_in_reg(in_min);
show_in_reg(in_max);

#define store_in_reg(REG, reg) \
303 304
static ssize_t store_in_##reg (struct device *dev, struct device_attribute \
		*da, const char *buf, size_t count) \
L
Linus Torvalds 已提交
305
{ \
306
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
307
	struct w83781d_data *data = dev_get_drvdata(dev); \
308
	int nr = attr->index; \
L
Linus Torvalds 已提交
309 310
	u32 val; \
	 \
311
	val = simple_strtoul(buf, NULL, 10); \
L
Linus Torvalds 已提交
312
	 \
313
	mutex_lock(&data->update_lock); \
L
Linus Torvalds 已提交
314
	data->in_##reg[nr] = IN_TO_REG(val); \
315
	w83781d_write_value(data, W83781D_REG_IN_##REG(nr), data->in_##reg[nr]); \
L
Linus Torvalds 已提交
316
	 \
317
	mutex_unlock(&data->update_lock); \
L
Linus Torvalds 已提交
318 319 320 321 322 323
	return count; \
}
store_in_reg(MIN, min);
store_in_reg(MAX, max);

#define sysfs_in_offsets(offset) \
324 325 326 327 328 329
static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
		show_in, NULL, offset); \
static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
		show_in_min, store_in_min, offset); \
static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
		show_in_max, store_in_max, offset)
L
Linus Torvalds 已提交
330 331 332 333 334 335 336 337 338 339 340 341

sysfs_in_offsets(0);
sysfs_in_offsets(1);
sysfs_in_offsets(2);
sysfs_in_offsets(3);
sysfs_in_offsets(4);
sysfs_in_offsets(5);
sysfs_in_offsets(6);
sysfs_in_offsets(7);
sysfs_in_offsets(8);

#define show_fan_reg(reg) \
342 343
static ssize_t show_##reg (struct device *dev, struct device_attribute *da, \
		char *buf) \
L
Linus Torvalds 已提交
344
{ \
345
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
L
Linus Torvalds 已提交
346 347
	struct w83781d_data *data = w83781d_update_device(dev); \
	return sprintf(buf,"%ld\n", \
348 349
		FAN_FROM_REG(data->reg[attr->index], \
			DIV_FROM_REG(data->fan_div[attr->index]))); \
L
Linus Torvalds 已提交
350 351 352 353 354
}
show_fan_reg(fan);
show_fan_reg(fan_min);

static ssize_t
355 356
store_fan_min(struct device *dev, struct device_attribute *da,
		const char *buf, size_t count)
L
Linus Torvalds 已提交
357
{
358
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
359
	struct w83781d_data *data = dev_get_drvdata(dev);
360
	int nr = attr->index;
L
Linus Torvalds 已提交
361 362 363 364
	u32 val;

	val = simple_strtoul(buf, NULL, 10);

365
	mutex_lock(&data->update_lock);
366 367
	data->fan_min[nr] =
	    FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
368
	w83781d_write_value(data, W83781D_REG_FAN_MIN(nr),
369
			    data->fan_min[nr]);
L
Linus Torvalds 已提交
370

371
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
372 373 374
	return count;
}

375 376 377 378 379 380 381 382 383
static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0);
static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO | S_IWUSR,
		show_fan_min, store_fan_min, 0);
static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, show_fan, NULL, 1);
static SENSOR_DEVICE_ATTR(fan2_min, S_IRUGO | S_IWUSR,
		show_fan_min, store_fan_min, 1);
static SENSOR_DEVICE_ATTR(fan3_input, S_IRUGO, show_fan, NULL, 2);
static SENSOR_DEVICE_ATTR(fan3_min, S_IRUGO | S_IWUSR,
		show_fan_min, store_fan_min, 2);
L
Linus Torvalds 已提交
384 385

#define show_temp_reg(reg) \
386 387
static ssize_t show_##reg (struct device *dev, struct device_attribute *da, \
		char *buf) \
L
Linus Torvalds 已提交
388
{ \
389
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
L
Linus Torvalds 已提交
390
	struct w83781d_data *data = w83781d_update_device(dev); \
391
	int nr = attr->index; \
L
Linus Torvalds 已提交
392 393 394 395 396 397 398 399 400 401 402 403
	if (nr >= 2) {	/* TEMP2 and TEMP3 */ \
		return sprintf(buf,"%d\n", \
			LM75_TEMP_FROM_REG(data->reg##_add[nr-2])); \
	} else {	/* TEMP1 */ \
		return sprintf(buf,"%ld\n", (long)TEMP_FROM_REG(data->reg)); \
	} \
}
show_temp_reg(temp);
show_temp_reg(temp_max);
show_temp_reg(temp_max_hyst);

#define store_temp_reg(REG, reg) \
404 405
static ssize_t store_temp_##reg (struct device *dev, \
		struct device_attribute *da, const char *buf, size_t count) \
L
Linus Torvalds 已提交
406
{ \
407
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da); \
408
	struct w83781d_data *data = dev_get_drvdata(dev); \
409
	int nr = attr->index; \
410
	long val; \
L
Linus Torvalds 已提交
411 412 413
	 \
	val = simple_strtol(buf, NULL, 10); \
	 \
414
	mutex_lock(&data->update_lock); \
L
Linus Torvalds 已提交
415 416 417
	 \
	if (nr >= 2) {	/* TEMP2 and TEMP3 */ \
		data->temp_##reg##_add[nr-2] = LM75_TEMP_TO_REG(val); \
418
		w83781d_write_value(data, W83781D_REG_TEMP_##REG(nr), \
L
Linus Torvalds 已提交
419 420 421
				data->temp_##reg##_add[nr-2]); \
	} else {	/* TEMP1 */ \
		data->temp_##reg = TEMP_TO_REG(val); \
422
		w83781d_write_value(data, W83781D_REG_TEMP_##REG(nr), \
L
Linus Torvalds 已提交
423 424 425
			data->temp_##reg); \
	} \
	 \
426
	mutex_unlock(&data->update_lock); \
L
Linus Torvalds 已提交
427 428 429 430 431 432
	return count; \
}
store_temp_reg(OVER, max);
store_temp_reg(HYST, max_hyst);

#define sysfs_temp_offsets(offset) \
433 434 435 436 437 438
static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
		show_temp, NULL, offset); \
static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
		show_temp_max, store_temp_max, offset); \
static SENSOR_DEVICE_ATTR(temp##offset##_max_hyst, S_IRUGO | S_IWUSR, \
		show_temp_max_hyst, store_temp_max_hyst, offset);
L
Linus Torvalds 已提交
439 440 441 442 443 444

sysfs_temp_offsets(1);
sysfs_temp_offsets(2);
sysfs_temp_offsets(3);

static ssize_t
445
show_vid_reg(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
446 447 448 449 450
{
	struct w83781d_data *data = w83781d_update_device(dev);
	return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
}

451 452
static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);

L
Linus Torvalds 已提交
453
static ssize_t
454
show_vrm_reg(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
455
{
456
	struct w83781d_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
457 458 459 460
	return sprintf(buf, "%ld\n", (long) data->vrm);
}

static ssize_t
461
store_vrm_reg(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
L
Linus Torvalds 已提交
462
{
463
	struct w83781d_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
464 465 466 467 468 469 470 471
	u32 val;

	val = simple_strtoul(buf, NULL, 10);
	data->vrm = val;

	return count;
}

472 473
static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);

L
Linus Torvalds 已提交
474
static ssize_t
475
show_alarms_reg(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
476 477
{
	struct w83781d_data *data = w83781d_update_device(dev);
478
	return sprintf(buf, "%u\n", data->alarms);
L
Linus Torvalds 已提交
479 480
}

481 482
static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL);

483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
		char *buf)
{
	struct w83781d_data *data = w83781d_update_device(dev);
	int bitnr = to_sensor_dev_attr(attr)->index;
	return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
}

/* The W83781D has a single alarm bit for temp2 and temp3 */
static ssize_t show_temp3_alarm(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	struct w83781d_data *data = w83781d_update_device(dev);
	int bitnr = (data->type == w83781d) ? 5 : 13;
	return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
}

static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9);
static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 10);
static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 16);
static SENSOR_DEVICE_ATTR(in8_alarm, S_IRUGO, show_alarm, NULL, 17);
static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6);
static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7);
static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11);
static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5);
static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_temp3_alarm, NULL, 0);

516
static ssize_t show_beep_mask (struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
517 518 519 520 521
{
	struct w83781d_data *data = w83781d_update_device(dev);
	return sprintf(buf, "%ld\n",
		       (long)BEEP_MASK_FROM_REG(data->beep_mask, data->type));
}
522
static ssize_t show_beep_enable (struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
523 524
{
	struct w83781d_data *data = w83781d_update_device(dev);
525
	return sprintf(buf, "%ld\n", (long)data->beep_enable);
L
Linus Torvalds 已提交
526 527 528
}

static ssize_t
529 530
store_beep_mask(struct device *dev, struct device_attribute *attr,
		const char *buf, size_t count)
L
Linus Torvalds 已提交
531
{
532
	struct w83781d_data *data = dev_get_drvdata(dev);
533
	u32 val;
L
Linus Torvalds 已提交
534 535 536

	val = simple_strtoul(buf, NULL, 10);

537
	mutex_lock(&data->update_lock);
538 539 540 541 542 543 544 545 546 547 548
	data->beep_mask = BEEP_MASK_TO_REG(val, data->type);
	w83781d_write_value(data, W83781D_REG_BEEP_INTS1,
			    data->beep_mask & 0xff);
	w83781d_write_value(data, W83781D_REG_BEEP_INTS2,
			    ((data->beep_mask >> 8) & 0x7f)
			    | data->beep_enable << 7);
	if (data->type != w83781d && data->type != as99127f) {
		w83781d_write_value(data, W83781D_REG_BEEP_INTS3,
				    ((data->beep_mask) >> 16) & 0xff);
	}
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
549

550 551
	return count;
}
L
Linus Torvalds 已提交
552

553 554 555 556 557 558
static ssize_t
store_beep_enable(struct device *dev, struct device_attribute *attr,
		const char *buf, size_t count)
{
	struct w83781d_data *data = dev_get_drvdata(dev);
	u32 val;
L
Linus Torvalds 已提交
559

560 561 562
	val = simple_strtoul(buf, NULL, 10);
	if (val != 0 && val != 1)
		return -EINVAL;
L
Linus Torvalds 已提交
563

564 565 566 567 568
	mutex_lock(&data->update_lock);
	data->beep_enable = val;
	val = w83781d_read_value(data, W83781D_REG_BEEP_INTS2) & 0x7f;
	val |= data->beep_enable << 7;
	w83781d_write_value(data, W83781D_REG_BEEP_INTS2, val);
569
	mutex_unlock(&data->update_lock);
570

L
Linus Torvalds 已提交
571 572 573
	return count;
}

574 575 576 577
static DEVICE_ATTR(beep_mask, S_IRUGO | S_IWUSR,
		show_beep_mask, store_beep_mask);
static DEVICE_ATTR(beep_enable, S_IRUGO | S_IWUSR,
		show_beep_enable, store_beep_enable);
L
Linus Torvalds 已提交
578

579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
		char *buf)
{
	struct w83781d_data *data = w83781d_update_device(dev);
	int bitnr = to_sensor_dev_attr(attr)->index;
	return sprintf(buf, "%u\n", (data->beep_mask >> bitnr) & 1);
}

static ssize_t
store_beep(struct device *dev, struct device_attribute *attr,
		const char *buf, size_t count)
{
	struct w83781d_data *data = dev_get_drvdata(dev);
	int bitnr = to_sensor_dev_attr(attr)->index;
	unsigned long bit;
	u8 reg;

	bit = simple_strtoul(buf, NULL, 10);
	if (bit & ~1)
		return -EINVAL;

	mutex_lock(&data->update_lock);
	if (bit)
		data->beep_mask |= (1 << bitnr);
	else
		data->beep_mask &= ~(1 << bitnr);

	if (bitnr < 8) {
		reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS1);
		if (bit)
			reg |= (1 << bitnr);
		else
			reg &= ~(1 << bitnr);
		w83781d_write_value(data, W83781D_REG_BEEP_INTS1, reg);
	} else if (bitnr < 16) {
		reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS2);
		if (bit)
			reg |= (1 << (bitnr - 8));
		else
			reg &= ~(1 << (bitnr - 8));
		w83781d_write_value(data, W83781D_REG_BEEP_INTS2, reg);
	} else {
		reg = w83781d_read_value(data, W83781D_REG_BEEP_INTS3);
		if (bit)
			reg |= (1 << (bitnr - 16));
		else
			reg &= ~(1 << (bitnr - 16));
		w83781d_write_value(data, W83781D_REG_BEEP_INTS3, reg);
	}
	mutex_unlock(&data->update_lock);

	return count;
}

/* The W83781D has a single beep bit for temp2 and temp3 */
static ssize_t show_temp3_beep(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	struct w83781d_data *data = w83781d_update_device(dev);
	int bitnr = (data->type == w83781d) ? 5 : 13;
	return sprintf(buf, "%u\n", (data->beep_mask >> bitnr) & 1);
}

static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 0);
static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 1);
static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 2);
static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 3);
static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 8);
static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 9);
static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 10);
static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 16);
static SENSOR_DEVICE_ATTR(in8_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 17);
static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 6);
static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 7);
static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 11);
static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 4);
static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 5);
static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO,
			show_temp3_beep, store_beep, 13);

L
Linus Torvalds 已提交
673
static ssize_t
674
show_fan_div(struct device *dev, struct device_attribute *da, char *buf)
L
Linus Torvalds 已提交
675
{
676
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
L
Linus Torvalds 已提交
677 678
	struct w83781d_data *data = w83781d_update_device(dev);
	return sprintf(buf, "%ld\n",
679
		       (long) DIV_FROM_REG(data->fan_div[attr->index]));
L
Linus Torvalds 已提交
680 681 682 683
}

/* Note: we save and restore the fan minimum here, because its value is
   determined in part by the fan divisor.  This follows the principle of
A
Andreas Mohr 已提交
684
   least surprise; the user doesn't expect the fan minimum to change just
L
Linus Torvalds 已提交
685 686
   because the divisor changed. */
static ssize_t
687 688
store_fan_div(struct device *dev, struct device_attribute *da,
		const char *buf, size_t count)
L
Linus Torvalds 已提交
689
{
690
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
691
	struct w83781d_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
692
	unsigned long min;
693
	int nr = attr->index;
L
Linus Torvalds 已提交
694 695 696
	u8 reg;
	unsigned long val = simple_strtoul(buf, NULL, 10);

697
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
698 699 700 701 702 703 704
	
	/* Save fan_min */
	min = FAN_FROM_REG(data->fan_min[nr],
			   DIV_FROM_REG(data->fan_div[nr]));

	data->fan_div[nr] = DIV_TO_REG(val, data->type);

705
	reg = (w83781d_read_value(data, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV)
L
Linus Torvalds 已提交
706 707
	       & (nr==0 ? 0xcf : 0x3f))
	    | ((data->fan_div[nr] & 0x03) << (nr==0 ? 4 : 6));
708
	w83781d_write_value(data, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV, reg);
L
Linus Torvalds 已提交
709 710 711

	/* w83781d and as99127f don't have extended divisor bits */
	if (data->type != w83781d && data->type != as99127f) {
712
		reg = (w83781d_read_value(data, W83781D_REG_VBAT)
L
Linus Torvalds 已提交
713 714
		       & ~(1 << (5 + nr)))
		    | ((data->fan_div[nr] & 0x04) << (3 + nr));
715
		w83781d_write_value(data, W83781D_REG_VBAT, reg);
L
Linus Torvalds 已提交
716 717 718 719
	}

	/* Restore fan_min */
	data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
720
	w83781d_write_value(data, W83781D_REG_FAN_MIN(nr), data->fan_min[nr]);
L
Linus Torvalds 已提交
721

722
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
723 724 725
	return count;
}

726 727 728 729 730 731
static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR,
		show_fan_div, store_fan_div, 0);
static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR,
		show_fan_div, store_fan_div, 1);
static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR,
		show_fan_div, store_fan_div, 2);
L
Linus Torvalds 已提交
732 733

static ssize_t
734
show_pwm(struct device *dev, struct device_attribute *da, char *buf)
L
Linus Torvalds 已提交
735
{
736
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
L
Linus Torvalds 已提交
737
	struct w83781d_data *data = w83781d_update_device(dev);
738
	return sprintf(buf, "%d\n", (int)data->pwm[attr->index]);
L
Linus Torvalds 已提交
739 740 741
}

static ssize_t
742
show_pwm2_enable(struct device *dev, struct device_attribute *da, char *buf)
L
Linus Torvalds 已提交
743 744
{
	struct w83781d_data *data = w83781d_update_device(dev);
745
	return sprintf(buf, "%d\n", (int)data->pwm2_enable);
L
Linus Torvalds 已提交
746 747 748
}

static ssize_t
749 750
store_pwm(struct device *dev, struct device_attribute *da, const char *buf,
		size_t count)
L
Linus Torvalds 已提交
751
{
752
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
753
	struct w83781d_data *data = dev_get_drvdata(dev);
754
	int nr = attr->index;
L
Linus Torvalds 已提交
755 756 757 758
	u32 val;

	val = simple_strtoul(buf, NULL, 10);

759
	mutex_lock(&data->update_lock);
760 761
	data->pwm[nr] = SENSORS_LIMIT(val, 0, 255);
	w83781d_write_value(data, W83781D_REG_PWM[nr], data->pwm[nr]);
762
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
763 764 765 766
	return count;
}

static ssize_t
767 768
store_pwm2_enable(struct device *dev, struct device_attribute *da,
		const char *buf, size_t count)
L
Linus Torvalds 已提交
769
{
770
	struct w83781d_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
771 772 773 774
	u32 val, reg;

	val = simple_strtoul(buf, NULL, 10);

775
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
776 777 778 779

	switch (val) {
	case 0:
	case 1:
780 781
		reg = w83781d_read_value(data, W83781D_REG_PWMCLK12);
		w83781d_write_value(data, W83781D_REG_PWMCLK12,
L
Linus Torvalds 已提交
782 783
				    (reg & 0xf7) | (val << 3));

784 785
		reg = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG);
		w83781d_write_value(data, W83781D_REG_BEEP_CONFIG,
L
Linus Torvalds 已提交
786 787
				    (reg & 0xef) | (!val << 4));

788
		data->pwm2_enable = val;
L
Linus Torvalds 已提交
789 790 791
		break;

	default:
792
		mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
793 794 795
		return -EINVAL;
	}

796
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
797 798 799
	return count;
}

800 801 802 803 804 805 806
static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 0);
static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 1);
static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 2);
static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, store_pwm, 3);
/* only PWM2 can be enabled/disabled */
static DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
		show_pwm2_enable, store_pwm2_enable);
L
Linus Torvalds 已提交
807 808

static ssize_t
809
show_sensor(struct device *dev, struct device_attribute *da, char *buf)
L
Linus Torvalds 已提交
810
{
811
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
L
Linus Torvalds 已提交
812
	struct w83781d_data *data = w83781d_update_device(dev);
813
	return sprintf(buf, "%d\n", (int)data->sens[attr->index]);
L
Linus Torvalds 已提交
814 815 816
}

static ssize_t
817 818
store_sensor(struct device *dev, struct device_attribute *da,
		const char *buf, size_t count)
L
Linus Torvalds 已提交
819
{
820
	struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
821
	struct w83781d_data *data = dev_get_drvdata(dev);
822
	int nr = attr->index;
L
Linus Torvalds 已提交
823 824 825 826
	u32 val, tmp;

	val = simple_strtoul(buf, NULL, 10);

827
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
828 829 830

	switch (val) {
	case 1:		/* PII/Celeron diode */
831 832
		tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
		w83781d_write_value(data, W83781D_REG_SCFG1,
833
				    tmp | BIT_SCFG1[nr]);
834 835
		tmp = w83781d_read_value(data, W83781D_REG_SCFG2);
		w83781d_write_value(data, W83781D_REG_SCFG2,
836 837
				    tmp | BIT_SCFG2[nr]);
		data->sens[nr] = val;
L
Linus Torvalds 已提交
838 839
		break;
	case 2:		/* 3904 */
840 841
		tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
		w83781d_write_value(data, W83781D_REG_SCFG1,
842
				    tmp | BIT_SCFG1[nr]);
843 844
		tmp = w83781d_read_value(data, W83781D_REG_SCFG2);
		w83781d_write_value(data, W83781D_REG_SCFG2,
845 846
				    tmp & ~BIT_SCFG2[nr]);
		data->sens[nr] = val;
L
Linus Torvalds 已提交
847
		break;
J
Jean Delvare 已提交
848 849 850 851 852
	case W83781D_DEFAULT_BETA:
		dev_warn(dev, "Sensor type %d is deprecated, please use 4 "
			 "instead\n", W83781D_DEFAULT_BETA);
		/* fall through */
	case 4:		/* thermistor */
853 854
		tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
		w83781d_write_value(data, W83781D_REG_SCFG1,
855 856
				    tmp & ~BIT_SCFG1[nr]);
		data->sens[nr] = val;
L
Linus Torvalds 已提交
857 858
		break;
	default:
J
Jean Delvare 已提交
859 860
		dev_err(dev, "Invalid sensor type %ld; must be 1, 2, or 4\n",
		       (long) val);
L
Linus Torvalds 已提交
861 862 863
		break;
	}

864
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
865 866 867
	return count;
}

868 869 870
static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR,
	show_sensor, store_sensor, 0);
static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR,
871
	show_sensor, store_sensor, 1);
872
static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR,
873
	show_sensor, store_sensor, 2);
L
Linus Torvalds 已提交
874

875 876 877 878 879 880 881 882 883 884
/* I2C devices get this name attribute automatically, but for ISA devices
   we must create it by ourselves. */
static ssize_t
show_name(struct device *dev, struct device_attribute *devattr, char *buf)
{
	struct w83781d_data *data = dev_get_drvdata(dev);
	return sprintf(buf, "%s\n", data->client.name);
}
static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);

L
Linus Torvalds 已提交
885 886 887 888 889 890 891 892 893
/* This function is called when:
     * w83781d_driver is inserted (when this module is loaded), for each
       available adapter
     * when a new adapter is inserted (and w83781d_driver is still present) */
static int
w83781d_attach_adapter(struct i2c_adapter *adapter)
{
	if (!(adapter->class & I2C_CLASS_HWMON))
		return 0;
894
	return i2c_probe(adapter, &addr_data, w83781d_detect);
L
Linus Torvalds 已提交
895 896 897 898 899 900 901 902 903 904 905 906 907 908
}

/* Assumes that adapter is of I2C, not ISA variety.
 * OTHERWISE DON'T CALL THIS
 */
static int
w83781d_detect_subclients(struct i2c_adapter *adapter, int address, int kind,
		struct i2c_client *new_client)
{
	int i, val1 = 0, id;
	int err;
	const char *client_name = "";
	struct w83781d_data *data = i2c_get_clientdata(new_client);

D
Deepak Saxena 已提交
909
	data->lm75[0] = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
L
Linus Torvalds 已提交
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
	if (!(data->lm75[0])) {
		err = -ENOMEM;
		goto ERROR_SC_0;
	}

	id = i2c_adapter_id(adapter);

	if (force_subclients[0] == id && force_subclients[1] == address) {
		for (i = 2; i <= 3; i++) {
			if (force_subclients[i] < 0x48 ||
			    force_subclients[i] > 0x4f) {
				dev_err(&new_client->dev, "Invalid subclient "
					"address %d; must be 0x48-0x4f\n",
					force_subclients[i]);
				err = -EINVAL;
				goto ERROR_SC_1;
			}
		}
928
		w83781d_write_value(data, W83781D_REG_I2C_SUBADDR,
L
Linus Torvalds 已提交
929 930 931 932
				(force_subclients[2] & 0x07) |
				((force_subclients[3] & 0x07) << 4));
		data->lm75[0]->addr = force_subclients[2];
	} else {
933
		val1 = w83781d_read_value(data, W83781D_REG_I2C_SUBADDR);
L
Linus Torvalds 已提交
934 935 936 937
		data->lm75[0]->addr = 0x48 + (val1 & 0x07);
	}

	if (kind != w83783s) {
D
Deepak Saxena 已提交
938
		data->lm75[1] = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
L
Linus Torvalds 已提交
939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995
		if (!(data->lm75[1])) {
			err = -ENOMEM;
			goto ERROR_SC_1;
		}

		if (force_subclients[0] == id &&
		    force_subclients[1] == address) {
			data->lm75[1]->addr = force_subclients[3];
		} else {
			data->lm75[1]->addr = 0x48 + ((val1 >> 4) & 0x07);
		}
		if (data->lm75[0]->addr == data->lm75[1]->addr) {
			dev_err(&new_client->dev,
			       "Duplicate addresses 0x%x for subclients.\n",
			       data->lm75[0]->addr);
			err = -EBUSY;
			goto ERROR_SC_2;
		}
	}

	if (kind == w83781d)
		client_name = "w83781d subclient";
	else if (kind == w83782d)
		client_name = "w83782d subclient";
	else if (kind == w83783s)
		client_name = "w83783s subclient";
	else if (kind == w83627hf)
		client_name = "w83627hf subclient";
	else if (kind == as99127f)
		client_name = "as99127f subclient";

	for (i = 0; i <= 1; i++) {
		/* store all data in w83781d */
		i2c_set_clientdata(data->lm75[i], NULL);
		data->lm75[i]->adapter = adapter;
		data->lm75[i]->driver = &w83781d_driver;
		data->lm75[i]->flags = 0;
		strlcpy(data->lm75[i]->name, client_name,
			I2C_NAME_SIZE);
		if ((err = i2c_attach_client(data->lm75[i]))) {
			dev_err(&new_client->dev, "Subclient %d "
				"registration at address 0x%x "
				"failed.\n", i, data->lm75[i]->addr);
			if (i == 1)
				goto ERROR_SC_3;
			goto ERROR_SC_2;
		}
		if (kind == w83783s)
			break;
	}

	return 0;

/* Undo inits in case of errors */
ERROR_SC_3:
	i2c_detach_client(data->lm75[0]);
ERROR_SC_2:
996
	kfree(data->lm75[1]);
L
Linus Torvalds 已提交
997
ERROR_SC_1:
998
	kfree(data->lm75[0]);
L
Linus Torvalds 已提交
999 1000 1001 1002
ERROR_SC_0:
	return err;
}

1003 1004 1005
#define IN_UNIT_ATTRS(X)					\
	&sensor_dev_attr_in##X##_input.dev_attr.attr,		\
	&sensor_dev_attr_in##X##_min.dev_attr.attr,		\
1006 1007 1008
	&sensor_dev_attr_in##X##_max.dev_attr.attr, 		\
	&sensor_dev_attr_in##X##_alarm.dev_attr.attr,		\
	&sensor_dev_attr_in##X##_beep.dev_attr.attr
1009

1010 1011 1012
#define FAN_UNIT_ATTRS(X)					\
	&sensor_dev_attr_fan##X##_input.dev_attr.attr,		\
	&sensor_dev_attr_fan##X##_min.dev_attr.attr,		\
1013 1014 1015
	&sensor_dev_attr_fan##X##_div.dev_attr.attr,		\
	&sensor_dev_attr_fan##X##_alarm.dev_attr.attr,		\
	&sensor_dev_attr_fan##X##_beep.dev_attr.attr
1016

1017 1018 1019
#define TEMP_UNIT_ATTRS(X)					\
	&sensor_dev_attr_temp##X##_input.dev_attr.attr,		\
	&sensor_dev_attr_temp##X##_max.dev_attr.attr,		\
1020 1021 1022
	&sensor_dev_attr_temp##X##_max_hyst.dev_attr.attr,	\
	&sensor_dev_attr_temp##X##_alarm.dev_attr.attr,		\
	&sensor_dev_attr_temp##X##_beep.dev_attr.attr
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051

static struct attribute* w83781d_attributes[] = {
	IN_UNIT_ATTRS(0),
	IN_UNIT_ATTRS(2),
	IN_UNIT_ATTRS(3),
	IN_UNIT_ATTRS(4),
	IN_UNIT_ATTRS(5),
	IN_UNIT_ATTRS(6),
	FAN_UNIT_ATTRS(1),
	FAN_UNIT_ATTRS(2),
	FAN_UNIT_ATTRS(3),
	TEMP_UNIT_ATTRS(1),
	TEMP_UNIT_ATTRS(2),
	&dev_attr_cpu0_vid.attr,
	&dev_attr_vrm.attr,
	&dev_attr_alarms.attr,
	&dev_attr_beep_mask.attr,
	&dev_attr_beep_enable.attr,
	NULL
};
static const struct attribute_group w83781d_group = {
	.attrs = w83781d_attributes,
};

static struct attribute *w83781d_attributes_opt[] = {
	IN_UNIT_ATTRS(1),
	IN_UNIT_ATTRS(7),
	IN_UNIT_ATTRS(8),
	TEMP_UNIT_ATTRS(3),
1052 1053 1054 1055
	&sensor_dev_attr_pwm1.dev_attr.attr,
	&sensor_dev_attr_pwm2.dev_attr.attr,
	&sensor_dev_attr_pwm3.dev_attr.attr,
	&sensor_dev_attr_pwm4.dev_attr.attr,
1056
	&dev_attr_pwm2_enable.attr,
1057 1058 1059
	&sensor_dev_attr_temp1_type.dev_attr.attr,
	&sensor_dev_attr_temp2_type.dev_attr.attr,
	&sensor_dev_attr_temp3_type.dev_attr.attr,
1060 1061 1062 1063 1064 1065
	NULL
};
static const struct attribute_group w83781d_group_opt = {
	.attrs = w83781d_attributes_opt,
};

1066
/* No clean up is done on error, it's up to the caller */
L
Linus Torvalds 已提交
1067
static int
1068
w83781d_create_files(struct device *dev, int kind, int is_isa)
L
Linus Torvalds 已提交
1069 1070 1071
{
	int err;

1072 1073 1074 1075
	if ((err = sysfs_create_group(&dev->kobj, &w83781d_group)))
		return err;

	if (kind != w83783s) {
1076 1077 1078 1079 1080
		if ((err = device_create_file(dev,
				&sensor_dev_attr_in1_input.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_in1_min.dev_attr))
		    || (err = device_create_file(dev,
1081 1082 1083 1084 1085
				&sensor_dev_attr_in1_max.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_in1_alarm.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_in1_beep.dev_attr)))
1086 1087 1088
			return err;
	}
	if (kind != as99127f && kind != w83781d && kind != w83783s) {
1089 1090 1091 1092 1093 1094
		if ((err = device_create_file(dev,
				&sensor_dev_attr_in7_input.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_in7_min.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_in7_max.dev_attr))
1095 1096 1097 1098
		    || (err = device_create_file(dev,
				&sensor_dev_attr_in7_alarm.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_in7_beep.dev_attr))
1099 1100 1101 1102 1103
		    || (err = device_create_file(dev,
				&sensor_dev_attr_in8_input.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_in8_min.dev_attr))
		    || (err = device_create_file(dev,
1104 1105 1106 1107 1108
				&sensor_dev_attr_in8_max.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_in8_alarm.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_in8_beep.dev_attr)))
1109 1110 1111
			return err;
	}
	if (kind != w83783s) {
1112 1113 1114 1115
		if ((err = device_create_file(dev,
				&sensor_dev_attr_temp3_input.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_temp3_max.dev_attr))
1116
		    || (err = device_create_file(dev,
1117 1118 1119 1120 1121
				&sensor_dev_attr_temp3_max_hyst.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_temp3_alarm.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_temp3_beep.dev_attr)))
1122
			return err;
1123

1124
		if (kind != w83781d) {
1125 1126 1127 1128 1129
			err = sysfs_chmod_file(&dev->kobj,
				&sensor_dev_attr_temp3_alarm.dev_attr.attr,
				S_IRUGO | S_IWUSR);
			if (err)
				return err;
1130
		}
L
Linus Torvalds 已提交
1131 1132
	}

1133
	if (kind != w83781d && kind != as99127f) {
1134 1135 1136 1137
		if ((err = device_create_file(dev,
				&sensor_dev_attr_pwm1.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_pwm2.dev_attr))
1138 1139
		    || (err = device_create_file(dev, &dev_attr_pwm2_enable)))
			return err;
L
Linus Torvalds 已提交
1140
	}
1141
	if (kind == w83782d && !is_isa) {
1142 1143 1144 1145
		if ((err = device_create_file(dev,
				&sensor_dev_attr_pwm3.dev_attr))
		    || (err = device_create_file(dev,
				&sensor_dev_attr_pwm4.dev_attr)))
1146 1147 1148 1149
			return err;
	}

	if (kind != as99127f && kind != w83781d) {
1150 1151
		if ((err = device_create_file(dev,
				&sensor_dev_attr_temp1_type.dev_attr))
1152
		    || (err = device_create_file(dev,
1153
				&sensor_dev_attr_temp2_type.dev_attr)))
1154 1155 1156
			return err;
		if (kind != w83783s) {
			if ((err = device_create_file(dev,
1157
					&sensor_dev_attr_temp3_type.dev_attr)))
1158
				return err;
L
Linus Torvalds 已提交
1159
		}
1160
	}
L
Linus Torvalds 已提交
1161

1162 1163 1164 1165 1166
	if (is_isa) {
		err = device_create_file(&pdev->dev, &dev_attr_name);
		if (err)
			return err;
	}
L
Linus Torvalds 已提交
1167

1168 1169
	return 0;
}
L
Linus Torvalds 已提交
1170

1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
static int
w83781d_detect(struct i2c_adapter *adapter, int address, int kind)
{
	int val1 = 0, val2;
	struct i2c_client *client;
	struct device *dev;
	struct w83781d_data *data;
	int err;
	const char *client_name = "";
	enum vendor { winbond, asus } vendid;

	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
		err = -EINVAL;
		goto ERROR1;
L
Linus Torvalds 已提交
1185 1186 1187 1188 1189 1190
	}

	/* OK. For now, we presume we have a valid client. We now create the
	   client structure, even though we cannot fill it completely yet.
	   But it allows us to access w83781d_{read,write}_value. */

D
Deepak Saxena 已提交
1191
	if (!(data = kzalloc(sizeof(struct w83781d_data), GFP_KERNEL))) {
L
Linus Torvalds 已提交
1192 1193 1194 1195
		err = -ENOMEM;
		goto ERROR1;
	}

1196 1197 1198
	client = &data->client;
	i2c_set_clientdata(client, data);
	client->addr = address;
1199
	mutex_init(&data->lock);
1200
	client->adapter = adapter;
1201
	client->driver = &w83781d_driver;
1202
	dev = &client->dev;
L
Linus Torvalds 已提交
1203 1204 1205 1206 1207 1208 1209 1210

	/* Now, we do the remaining detection. */

	/* The w8378?d may be stuck in some other bank than bank 0. This may
	   make reading other information impossible. Specify a force=... or
	   force_*=... parameter, and the Winbond will be reset to the right
	   bank. */
	if (kind < 0) {
1211
		if (w83781d_read_value(data, W83781D_REG_CONFIG) & 0x80) {
1212 1213
			dev_dbg(&adapter->dev, "Detection of w83781d chip "
				"failed at step 3\n");
L
Linus Torvalds 已提交
1214 1215 1216
			err = -ENODEV;
			goto ERROR2;
		}
1217 1218
		val1 = w83781d_read_value(data, W83781D_REG_BANK);
		val2 = w83781d_read_value(data, W83781D_REG_CHIPMAN);
L
Linus Torvalds 已提交
1219 1220 1221 1222
		/* Check for Winbond or Asus ID if in bank 0 */
		if ((!(val1 & 0x07)) &&
		    (((!(val1 & 0x80)) && (val2 != 0xa3) && (val2 != 0xc3))
		     || ((val1 & 0x80) && (val2 != 0x5c) && (val2 != 0x12)))) {
1223 1224
			dev_dbg(&adapter->dev, "Detection of w83781d chip "
				"failed at step 4\n");
L
Linus Torvalds 已提交
1225 1226 1227 1228 1229
			err = -ENODEV;
			goto ERROR2;
		}
		/* If Winbond SMBus, check address at 0x48.
		   Asus doesn't support, except for as99127f rev.2 */
1230 1231
		if ((!(val1 & 0x80) && (val2 == 0xa3)) ||
		    ((val1 & 0x80) && (val2 == 0x5c))) {
L
Linus Torvalds 已提交
1232
			if (w83781d_read_value
1233
			    (data, W83781D_REG_I2C_ADDR) != address) {
1234 1235
				dev_dbg(&adapter->dev, "Detection of w83781d "
					"chip failed at step 5\n");
L
Linus Torvalds 已提交
1236 1237 1238 1239 1240 1241 1242 1243
				err = -ENODEV;
				goto ERROR2;
			}
		}
	}

	/* We have either had a force parameter, or we have already detected the
	   Winbond. Put it now into bank 0 and Vendor ID High Byte */
1244 1245
	w83781d_write_value(data, W83781D_REG_BANK,
			    (w83781d_read_value(data, W83781D_REG_BANK)
1246
			     & 0x78) | 0x80);
L
Linus Torvalds 已提交
1247 1248 1249 1250

	/* Determine the chip type. */
	if (kind <= 0) {
		/* get vendor ID */
1251
		val2 = w83781d_read_value(data, W83781D_REG_CHIPMAN);
L
Linus Torvalds 已提交
1252 1253 1254 1255 1256
		if (val2 == 0x5c)
			vendid = winbond;
		else if (val2 == 0x12)
			vendid = asus;
		else {
1257 1258
			dev_dbg(&adapter->dev, "w83781d chip vendor is "
				"neither Winbond nor Asus\n");
L
Linus Torvalds 已提交
1259 1260 1261 1262
			err = -ENODEV;
			goto ERROR2;
		}

1263
		val1 = w83781d_read_value(data, W83781D_REG_WCHIPID);
L
Linus Torvalds 已提交
1264 1265 1266 1267
		if ((val1 == 0x10 || val1 == 0x11) && vendid == winbond)
			kind = w83781d;
		else if (val1 == 0x30 && vendid == winbond)
			kind = w83782d;
1268
		else if (val1 == 0x40 && vendid == winbond && address == 0x2d)
L
Linus Torvalds 已提交
1269
			kind = w83783s;
1270
		else if (val1 == 0x21 && vendid == winbond)
L
Linus Torvalds 已提交
1271
			kind = w83627hf;
1272
		else if (val1 == 0x31)
L
Linus Torvalds 已提交
1273 1274 1275
			kind = as99127f;
		else {
			if (kind == 0)
1276
				dev_warn(&adapter->dev, "Ignoring 'force' "
L
Linus Torvalds 已提交
1277
					 "parameter for unknown chip at "
1278
					 "address 0x%02x\n", address);
L
Linus Torvalds 已提交
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
			err = -EINVAL;
			goto ERROR2;
		}
	}

	if (kind == w83781d) {
		client_name = "w83781d";
	} else if (kind == w83782d) {
		client_name = "w83782d";
	} else if (kind == w83783s) {
		client_name = "w83783s";
	} else if (kind == w83627hf) {
1291
		client_name = "w83627hf";
L
Linus Torvalds 已提交
1292 1293 1294 1295 1296
	} else if (kind == as99127f) {
		client_name = "as99127f";
	}

	/* Fill in the remaining client fields and put into the global list */
1297
	strlcpy(client->name, client_name, I2C_NAME_SIZE);
L
Linus Torvalds 已提交
1298 1299 1300
	data->type = kind;

	/* Tell the I2C layer a new client has arrived */
1301
	if ((err = i2c_attach_client(client)))
L
Linus Torvalds 已提交
1302 1303 1304
		goto ERROR2;

	/* attach secondary i2c lm75-like clients */
1305 1306 1307
	if ((err = w83781d_detect_subclients(adapter, address,
			kind, client)))
		goto ERROR3;
L
Linus Torvalds 已提交
1308 1309

	/* Initialize the chip */
1310
	w83781d_init_device(dev);
L
Linus Torvalds 已提交
1311 1312

	/* Register sysfs hooks */
1313 1314
	err = w83781d_create_files(dev, kind, 0);
	if (err)
1315 1316
		goto ERROR4;

1317 1318 1319
	data->hwmon_dev = hwmon_device_register(dev);
	if (IS_ERR(data->hwmon_dev)) {
		err = PTR_ERR(data->hwmon_dev);
1320
		goto ERROR4;
L
Linus Torvalds 已提交
1321 1322 1323 1324
	}

	return 0;

1325
ERROR4:
1326 1327 1328
	sysfs_remove_group(&dev->kobj, &w83781d_group);
	sysfs_remove_group(&dev->kobj, &w83781d_group_opt);

1329 1330 1331 1332 1333 1334 1335 1336
	if (data->lm75[1]) {
		i2c_detach_client(data->lm75[1]);
		kfree(data->lm75[1]);
	}
	if (data->lm75[0]) {
		i2c_detach_client(data->lm75[0]);
		kfree(data->lm75[0]);
	}
L
Linus Torvalds 已提交
1337
ERROR3:
1338
	i2c_detach_client(client);
L
Linus Torvalds 已提交
1339 1340 1341 1342 1343 1344 1345 1346 1347
ERROR2:
	kfree(data);
ERROR1:
	return err;
}

static int
w83781d_detach_client(struct i2c_client *client)
{
1348
	struct w83781d_data *data = i2c_get_clientdata(client);
L
Linus Torvalds 已提交
1349 1350
	int err;

1351
	/* main client */
1352
	if (data) {
1353
		hwmon_device_unregister(data->hwmon_dev);
1354 1355 1356
		sysfs_remove_group(&client->dev.kobj, &w83781d_group);
		sysfs_remove_group(&client->dev.kobj, &w83781d_group_opt);
	}
L
Linus Torvalds 已提交
1357

1358
	if ((err = i2c_detach_client(client)))
L
Linus Torvalds 已提交
1359 1360
		return err;

1361 1362 1363 1364 1365 1366
	/* main client */
	if (data)
		kfree(data);

	/* subclient */
	else
L
Linus Torvalds 已提交
1367 1368 1369 1370 1371
		kfree(client);

	return 0;
}

1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
static int __devinit
w83781d_isa_probe(struct platform_device *pdev)
{
	int err, reg;
	struct w83781d_data *data;
	struct resource *res;
	const char *name;

	/* Reserve the ISA region */
	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
	if (!request_region(res->start, W83781D_EXTENT, "w83781d")) {
		err = -EBUSY;
		goto exit;
	}

	if (!(data = kzalloc(sizeof(struct w83781d_data), GFP_KERNEL))) {
		err = -ENOMEM;
		goto exit_release_region;
	}
	mutex_init(&data->lock);
	data->client.addr = res->start;
	i2c_set_clientdata(&data->client, data);
	platform_set_drvdata(pdev, data);

1396
	reg = w83781d_read_value(data, W83781D_REG_WCHIPID);
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
	switch (reg) {
	case 0x21:
		data->type = w83627hf;
		name = "w83627hf";
		break;
	case 0x30:
		data->type = w83782d;
		name = "w83782d";
		break;
	default:
		data->type = w83781d;
		name = "w83781d";
	}
	strlcpy(data->client.name, name, I2C_NAME_SIZE);

	/* Initialize the W83781D chip */
	w83781d_init_device(&pdev->dev);

	/* Register sysfs hooks */
	err = w83781d_create_files(&pdev->dev, data->type, 1);
	if (err)
		goto exit_remove_files;

1420 1421 1422
	data->hwmon_dev = hwmon_device_register(&pdev->dev);
	if (IS_ERR(data->hwmon_dev)) {
		err = PTR_ERR(data->hwmon_dev);
1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
		goto exit_remove_files;
	}

	return 0;

 exit_remove_files:
	sysfs_remove_group(&pdev->dev.kobj, &w83781d_group);
	sysfs_remove_group(&pdev->dev.kobj, &w83781d_group_opt);
	device_remove_file(&pdev->dev, &dev_attr_name);
	kfree(data);
 exit_release_region:
	release_region(res->start, W83781D_EXTENT);
 exit:
	return err;
}

static int __devexit
w83781d_isa_remove(struct platform_device *pdev)
{
	struct w83781d_data *data = platform_get_drvdata(pdev);

1444
	hwmon_device_unregister(data->hwmon_dev);
1445 1446 1447 1448 1449 1450 1451 1452 1453
	sysfs_remove_group(&pdev->dev.kobj, &w83781d_group);
	sysfs_remove_group(&pdev->dev.kobj, &w83781d_group_opt);
	device_remove_file(&pdev->dev, &dev_attr_name);
	release_region(data->client.addr, W83781D_EXTENT);
	kfree(data);

	return 0;
}

L
Linus Torvalds 已提交
1454 1455 1456 1457 1458 1459 1460
/* The SMBus locks itself, usually, but nothing may access the Winbond between
   bank switches. ISA access must always be locked explicitly! 
   We ignore the W83781D BUSY flag at this moment - it could lead to deadlocks,
   would slow down the W83781D access and should not be necessary. 
   There are some ugly typecasts here, but the good news is - they should
   nowhere else be necessary! */
static int
1461
w83781d_read_value(struct w83781d_data *data, u16 reg)
L
Linus Torvalds 已提交
1462
{
1463
	struct i2c_client *client = &data->client;
L
Linus Torvalds 已提交
1464 1465 1466
	int res, word_sized, bank;
	struct i2c_client *cl;

1467
	mutex_lock(&data->lock);
1468
	if (!client->driver) { /* ISA device */
L
Linus Torvalds 已提交
1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
		word_sized = (((reg & 0xff00) == 0x100)
			      || ((reg & 0xff00) == 0x200))
		    && (((reg & 0x00ff) == 0x50)
			|| ((reg & 0x00ff) == 0x53)
			|| ((reg & 0x00ff) == 0x55));
		if (reg & 0xff00) {
			outb_p(W83781D_REG_BANK,
			       client->addr + W83781D_ADDR_REG_OFFSET);
			outb_p(reg >> 8,
			       client->addr + W83781D_DATA_REG_OFFSET);
		}
		outb_p(reg & 0xff, client->addr + W83781D_ADDR_REG_OFFSET);
		res = inb_p(client->addr + W83781D_DATA_REG_OFFSET);
		if (word_sized) {
			outb_p((reg & 0xff) + 1,
			       client->addr + W83781D_ADDR_REG_OFFSET);
			res =
			    (res << 8) + inb_p(client->addr +
					       W83781D_DATA_REG_OFFSET);
		}
		if (reg & 0xff00) {
			outb_p(W83781D_REG_BANK,
			       client->addr + W83781D_ADDR_REG_OFFSET);
			outb_p(0, client->addr + W83781D_DATA_REG_OFFSET);
		}
	} else {
		bank = (reg >> 8) & 0x0f;
		if (bank > 2)
			/* switch banks */
			i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
						  bank);
		if (bank == 0 || bank > 2) {
			res = i2c_smbus_read_byte_data(client, reg & 0xff);
		} else {
			/* switch to subclient */
			cl = data->lm75[bank - 1];
			/* convert from ISA to LM75 I2C addresses */
			switch (reg & 0xff) {
			case 0x50:	/* TEMP */
				res = swab16(i2c_smbus_read_word_data(cl, 0));
				break;
			case 0x52:	/* CONFIG */
				res = i2c_smbus_read_byte_data(cl, 1);
				break;
			case 0x53:	/* HYST */
				res = swab16(i2c_smbus_read_word_data(cl, 2));
				break;
			case 0x55:	/* OVER */
			default:
				res = swab16(i2c_smbus_read_word_data(cl, 3));
				break;
			}
		}
		if (bank > 2)
			i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0);
	}
1525
	mutex_unlock(&data->lock);
L
Linus Torvalds 已提交
1526 1527 1528 1529
	return res;
}

static int
1530
w83781d_write_value(struct w83781d_data *data, u16 reg, u16 value)
L
Linus Torvalds 已提交
1531
{
1532
	struct i2c_client *client = &data->client;
L
Linus Torvalds 已提交
1533 1534 1535
	int word_sized, bank;
	struct i2c_client *cl;

1536
	mutex_lock(&data->lock);
1537
	if (!client->driver) { /* ISA device */
L
Linus Torvalds 已提交
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
		word_sized = (((reg & 0xff00) == 0x100)
			      || ((reg & 0xff00) == 0x200))
		    && (((reg & 0x00ff) == 0x53)
			|| ((reg & 0x00ff) == 0x55));
		if (reg & 0xff00) {
			outb_p(W83781D_REG_BANK,
			       client->addr + W83781D_ADDR_REG_OFFSET);
			outb_p(reg >> 8,
			       client->addr + W83781D_DATA_REG_OFFSET);
		}
		outb_p(reg & 0xff, client->addr + W83781D_ADDR_REG_OFFSET);
		if (word_sized) {
			outb_p(value >> 8,
			       client->addr + W83781D_DATA_REG_OFFSET);
			outb_p((reg & 0xff) + 1,
			       client->addr + W83781D_ADDR_REG_OFFSET);
		}
		outb_p(value & 0xff, client->addr + W83781D_DATA_REG_OFFSET);
		if (reg & 0xff00) {
			outb_p(W83781D_REG_BANK,
			       client->addr + W83781D_ADDR_REG_OFFSET);
			outb_p(0, client->addr + W83781D_DATA_REG_OFFSET);
		}
	} else {
		bank = (reg >> 8) & 0x0f;
		if (bank > 2)
			/* switch banks */
			i2c_smbus_write_byte_data(client, W83781D_REG_BANK,
						  bank);
		if (bank == 0 || bank > 2) {
			i2c_smbus_write_byte_data(client, reg & 0xff,
						  value & 0xff);
		} else {
			/* switch to subclient */
			cl = data->lm75[bank - 1];
			/* convert from ISA to LM75 I2C addresses */
			switch (reg & 0xff) {
			case 0x52:	/* CONFIG */
				i2c_smbus_write_byte_data(cl, 1, value & 0xff);
				break;
			case 0x53:	/* HYST */
				i2c_smbus_write_word_data(cl, 2, swab16(value));
				break;
			case 0x55:	/* OVER */
				i2c_smbus_write_word_data(cl, 3, swab16(value));
				break;
			}
		}
		if (bank > 2)
			i2c_smbus_write_byte_data(client, W83781D_REG_BANK, 0);
	}
1589
	mutex_unlock(&data->lock);
L
Linus Torvalds 已提交
1590 1591 1592 1593
	return 0;
}

static void
1594
w83781d_init_device(struct device *dev)
L
Linus Torvalds 已提交
1595
{
1596
	struct w83781d_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
1597 1598 1599 1600
	int i, p;
	int type = data->type;
	u8 tmp;

1601 1602 1603 1604 1605
	if (type == w83627hf)
		dev_info(dev, "The W83627HF chip is better supported by the "
			 "w83627hf driver, support will be dropped from the "
			 "w83781d driver soon\n");

1606
	if (reset && type != as99127f) { /* this resets registers we don't have
L
Linus Torvalds 已提交
1607
					   documentation for on the as99127f */
1608 1609 1610 1611 1612 1613
		/* Resetting the chip has been the default for a long time,
		   but it causes the BIOS initializations (fan clock dividers,
		   thermal sensor types...) to be lost, so it is now optional.
		   It might even go away if nobody reports it as being useful,
		   as I see very little reason why this would be needed at
		   all. */
1614
		dev_info(dev, "If reset=1 solved a problem you were "
1615 1616
			 "having, please report!\n");

L
Linus Torvalds 已提交
1617
		/* save these registers */
1618 1619
		i = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG);
		p = w83781d_read_value(data, W83781D_REG_PWMCLK12);
L
Linus Torvalds 已提交
1620 1621
		/* Reset all except Watchdog values and last conversion values
		   This sets fan-divs to 2, among others */
1622
		w83781d_write_value(data, W83781D_REG_CONFIG, 0x80);
L
Linus Torvalds 已提交
1623 1624
		/* Restore the registers and disable power-on abnormal beep.
		   This saves FAN 1/2/3 input/output values set by BIOS. */
1625 1626
		w83781d_write_value(data, W83781D_REG_BEEP_CONFIG, i | 0x80);
		w83781d_write_value(data, W83781D_REG_PWMCLK12, p);
L
Linus Torvalds 已提交
1627 1628 1629
		/* Disable master beep-enable (reset turns it on).
		   Individual beep_mask should be reset to off but for some reason
		   disabling this bit helps some people not get beeped */
1630
		w83781d_write_value(data, W83781D_REG_BEEP_INTS2, 0);
L
Linus Torvalds 已提交
1631 1632
	}

1633 1634 1635
	/* Disable power-on abnormal beep, as advised by the datasheet.
	   Already done if reset=1. */
	if (init && !reset && type != as99127f) {
1636 1637
		i = w83781d_read_value(data, W83781D_REG_BEEP_CONFIG);
		w83781d_write_value(data, W83781D_REG_BEEP_CONFIG, i | 0x80);
1638 1639
	}

1640
	data->vrm = vid_which_vrm();
L
Linus Torvalds 已提交
1641 1642

	if ((type != w83781d) && (type != as99127f)) {
1643
		tmp = w83781d_read_value(data, W83781D_REG_SCFG1);
L
Linus Torvalds 已提交
1644 1645
		for (i = 1; i <= 3; i++) {
			if (!(tmp & BIT_SCFG1[i - 1])) {
J
Jean Delvare 已提交
1646
				data->sens[i - 1] = 4;
L
Linus Torvalds 已提交
1647 1648
			} else {
				if (w83781d_read_value
1649
				    (data,
L
Linus Torvalds 已提交
1650 1651 1652 1653 1654
				     W83781D_REG_SCFG2) & BIT_SCFG2[i - 1])
					data->sens[i - 1] = 1;
				else
					data->sens[i - 1] = 2;
			}
1655
			if (type == w83783s && i == 2)
L
Linus Torvalds 已提交
1656 1657 1658 1659 1660 1661
				break;
		}
	}

	if (init && type != as99127f) {
		/* Enable temp2 */
1662
		tmp = w83781d_read_value(data, W83781D_REG_TEMP2_CONFIG);
L
Linus Torvalds 已提交
1663
		if (tmp & 0x01) {
1664
			dev_warn(dev, "Enabling temp2, readings "
L
Linus Torvalds 已提交
1665
				 "might not make sense\n");
1666
			w83781d_write_value(data, W83781D_REG_TEMP2_CONFIG,
L
Linus Torvalds 已提交
1667 1668 1669 1670
				tmp & 0xfe);
		}

		/* Enable temp3 */
1671
		if (type != w83783s) {
1672
			tmp = w83781d_read_value(data,
L
Linus Torvalds 已提交
1673 1674
				W83781D_REG_TEMP3_CONFIG);
			if (tmp & 0x01) {
1675
				dev_warn(dev, "Enabling temp3, "
L
Linus Torvalds 已提交
1676
					 "readings might not make sense\n");
1677
				w83781d_write_value(data,
L
Linus Torvalds 已提交
1678 1679 1680 1681 1682 1683
					W83781D_REG_TEMP3_CONFIG, tmp & 0xfe);
			}
		}
	}

	/* Start monitoring */
1684 1685
	w83781d_write_value(data, W83781D_REG_CONFIG,
			    (w83781d_read_value(data,
L
Linus Torvalds 已提交
1686 1687
						W83781D_REG_CONFIG) & 0xf7)
			    | 0x01);
1688 1689

	/* A few vars need to be filled upon startup */
1690 1691
	for (i = 0; i < 3; i++) {
		data->fan_min[i] = w83781d_read_value(data,
1692 1693 1694 1695
					W83781D_REG_FAN_MIN(i));
	}

	mutex_init(&data->update_lock);
L
Linus Torvalds 已提交
1696 1697 1698 1699
}

static struct w83781d_data *w83781d_update_device(struct device *dev)
{
1700 1701
	struct w83781d_data *data = dev_get_drvdata(dev);
	struct i2c_client *client = &data->client;
L
Linus Torvalds 已提交
1702 1703
	int i;

1704
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
1705 1706 1707 1708 1709 1710

	if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
	    || !data->valid) {
		dev_dbg(dev, "Starting device update\n");

		for (i = 0; i <= 8; i++) {
1711
			if (data->type == w83783s && i == 1)
L
Linus Torvalds 已提交
1712 1713
				continue;	/* 783S has no in1 */
			data->in[i] =
1714
			    w83781d_read_value(data, W83781D_REG_IN(i));
L
Linus Torvalds 已提交
1715
			data->in_min[i] =
1716
			    w83781d_read_value(data, W83781D_REG_IN_MIN(i));
L
Linus Torvalds 已提交
1717
			data->in_max[i] =
1718
			    w83781d_read_value(data, W83781D_REG_IN_MAX(i));
1719
			if ((data->type != w83782d)
L
Linus Torvalds 已提交
1720 1721 1722
			    && (data->type != w83627hf) && (i == 6))
				break;
		}
1723 1724
		for (i = 0; i < 3; i++) {
			data->fan[i] =
1725
			    w83781d_read_value(data, W83781D_REG_FAN(i));
1726
			data->fan_min[i] =
1727
			    w83781d_read_value(data, W83781D_REG_FAN_MIN(i));
L
Linus Torvalds 已提交
1728 1729
		}
		if (data->type != w83781d && data->type != as99127f) {
1730 1731
			for (i = 0; i < 4; i++) {
				data->pwm[i] =
1732
				    w83781d_read_value(data,
1733
						       W83781D_REG_PWM[i]);
1734
				if ((data->type != w83782d || !client->driver)
1735
				    && i == 1)
L
Linus Torvalds 已提交
1736 1737 1738
					break;
			}
			/* Only PWM2 can be disabled */
1739
			data->pwm2_enable = (w83781d_read_value(data,
L
Linus Torvalds 已提交
1740 1741 1742
					      W83781D_REG_PWMCLK12) & 0x08) >> 3;
		}

1743
		data->temp = w83781d_read_value(data, W83781D_REG_TEMP(1));
L
Linus Torvalds 已提交
1744
		data->temp_max =
1745
		    w83781d_read_value(data, W83781D_REG_TEMP_OVER(1));
L
Linus Torvalds 已提交
1746
		data->temp_max_hyst =
1747
		    w83781d_read_value(data, W83781D_REG_TEMP_HYST(1));
L
Linus Torvalds 已提交
1748
		data->temp_add[0] =
1749
		    w83781d_read_value(data, W83781D_REG_TEMP(2));
L
Linus Torvalds 已提交
1750
		data->temp_max_add[0] =
1751
		    w83781d_read_value(data, W83781D_REG_TEMP_OVER(2));
L
Linus Torvalds 已提交
1752
		data->temp_max_hyst_add[0] =
1753
		    w83781d_read_value(data, W83781D_REG_TEMP_HYST(2));
1754
		if (data->type != w83783s) {
L
Linus Torvalds 已提交
1755
			data->temp_add[1] =
1756
			    w83781d_read_value(data, W83781D_REG_TEMP(3));
L
Linus Torvalds 已提交
1757
			data->temp_max_add[1] =
1758
			    w83781d_read_value(data,
L
Linus Torvalds 已提交
1759 1760
					       W83781D_REG_TEMP_OVER(3));
			data->temp_max_hyst_add[1] =
1761
			    w83781d_read_value(data,
L
Linus Torvalds 已提交
1762 1763
					       W83781D_REG_TEMP_HYST(3));
		}
1764
		i = w83781d_read_value(data, W83781D_REG_VID_FANDIV);
1765
		data->vid = i & 0x0f;
1766
		data->vid |= (w83781d_read_value(data,
1767
					W83781D_REG_CHIPID) & 0x01) << 4;
L
Linus Torvalds 已提交
1768 1769
		data->fan_div[0] = (i >> 4) & 0x03;
		data->fan_div[1] = (i >> 6) & 0x03;
1770
		data->fan_div[2] = (w83781d_read_value(data,
1771
					W83781D_REG_PIN) >> 6) & 0x03;
L
Linus Torvalds 已提交
1772
		if ((data->type != w83781d) && (data->type != as99127f)) {
1773
			i = w83781d_read_value(data, W83781D_REG_VBAT);
L
Linus Torvalds 已提交
1774 1775
			data->fan_div[0] |= (i >> 3) & 0x04;
			data->fan_div[1] |= (i >> 4) & 0x04;
1776
			data->fan_div[2] |= (i >> 5) & 0x04;
L
Linus Torvalds 已提交
1777 1778
		}
		if ((data->type == w83782d) || (data->type == w83627hf)) {
1779
			data->alarms = w83781d_read_value(data,
1780
						W83782D_REG_ALARM1)
1781
				     | (w83781d_read_value(data,
1782
						W83782D_REG_ALARM2) << 8)
1783
				     | (w83781d_read_value(data,
1784 1785
						W83782D_REG_ALARM3) << 16);
		} else if (data->type == w83783s) {
1786
			data->alarms = w83781d_read_value(data,
1787
						W83782D_REG_ALARM1)
1788
				     | (w83781d_read_value(data,
1789 1790 1791 1792
						W83782D_REG_ALARM2) << 8);
		} else {
			/* No real-time status registers, fall back to
			   interrupt status registers */
1793
			data->alarms = w83781d_read_value(data,
1794
						W83781D_REG_ALARM1)
1795
				     | (w83781d_read_value(data,
1796
						W83781D_REG_ALARM2) << 8);
L
Linus Torvalds 已提交
1797
		}
1798
		i = w83781d_read_value(data, W83781D_REG_BEEP_INTS2);
L
Linus Torvalds 已提交
1799 1800
		data->beep_enable = i >> 7;
		data->beep_mask = ((i & 0x7f) << 8) +
1801
		    w83781d_read_value(data, W83781D_REG_BEEP_INTS1);
L
Linus Torvalds 已提交
1802 1803
		if ((data->type != w83781d) && (data->type != as99127f)) {
			data->beep_mask |=
1804
			    w83781d_read_value(data,
L
Linus Torvalds 已提交
1805 1806 1807 1808 1809 1810
					       W83781D_REG_BEEP_INTS3) << 16;
		}
		data->last_updated = jiffies;
		data->valid = 1;
	}

1811
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
1812 1813 1814 1815

	return data;
}

1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906
/* return 1 if a supported chip is found, 0 otherwise */
static int __init
w83781d_isa_found(unsigned short address)
{
	int val, save, found = 0;

	if (!request_region(address, W83781D_EXTENT, "w83781d"))
		return 0;

#define REALLY_SLOW_IO
	/* We need the timeouts for at least some W83781D-like
	   chips. But only if we read 'undefined' registers. */
	val = inb_p(address + 1);
	if (inb_p(address + 2) != val
	 || inb_p(address + 3) != val
	 || inb_p(address + 7) != val) {
		pr_debug("w83781d: Detection failed at step 1\n");
		goto release;
	}
#undef REALLY_SLOW_IO

	/* We should be able to change the 7 LSB of the address port. The
	   MSB (busy flag) should be clear initially, set after the write. */
	save = inb_p(address + W83781D_ADDR_REG_OFFSET);
	if (save & 0x80) {
		pr_debug("w83781d: Detection failed at step 2\n");
		goto release;
	}
	val = ~save & 0x7f;
	outb_p(val, address + W83781D_ADDR_REG_OFFSET);
	if (inb_p(address + W83781D_ADDR_REG_OFFSET) != (val | 0x80)) {
		outb_p(save, address + W83781D_ADDR_REG_OFFSET);
		pr_debug("w83781d: Detection failed at step 3\n");
		goto release;
	}

	/* We found a device, now see if it could be a W83781D */
	outb_p(W83781D_REG_CONFIG, address + W83781D_ADDR_REG_OFFSET);
	val = inb_p(address + W83781D_DATA_REG_OFFSET);
	if (val & 0x80) {
		pr_debug("w83781d: Detection failed at step 4\n");
		goto release;
	}
	outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET);
	save = inb_p(address + W83781D_DATA_REG_OFFSET);
	outb_p(W83781D_REG_CHIPMAN, address + W83781D_ADDR_REG_OFFSET);
	val = inb_p(address + W83781D_DATA_REG_OFFSET);
	if ((!(save & 0x80) && (val != 0xa3))
	 || ((save & 0x80) && (val != 0x5c))) {
		pr_debug("w83781d: Detection failed at step 5\n");
		goto release;
	}
	outb_p(W83781D_REG_I2C_ADDR, address + W83781D_ADDR_REG_OFFSET);
	val = inb_p(address + W83781D_DATA_REG_OFFSET);
	if (val < 0x03 || val > 0x77) {	/* Not a valid I2C address */
		pr_debug("w83781d: Detection failed at step 6\n");
		goto release;
	}

	/* The busy flag should be clear again */
	if (inb_p(address + W83781D_ADDR_REG_OFFSET) & 0x80) {
		pr_debug("w83781d: Detection failed at step 7\n");
		goto release;
	}

	/* Determine the chip type */
	outb_p(W83781D_REG_BANK, address + W83781D_ADDR_REG_OFFSET);
	save = inb_p(address + W83781D_DATA_REG_OFFSET);
	outb_p(save & 0xf8, address + W83781D_DATA_REG_OFFSET);
	outb_p(W83781D_REG_WCHIPID, address + W83781D_ADDR_REG_OFFSET);
	val = inb_p(address + W83781D_DATA_REG_OFFSET);
	if ((val & 0xfe) == 0x10	/* W83781D */
	 || val == 0x30			/* W83782D */
	 || val == 0x21)		/* W83627HF */
		found = 1;

	if (found)
		pr_info("w83781d: Found a %s chip at %#x\n",
			val == 0x21 ? "W83627HF" :
			val == 0x30 ? "W83782D" : "W83781D", (int)address);

 release:
	release_region(address, W83781D_EXTENT);
	return found;
}

static int __init
w83781d_isa_device_add(unsigned short address)
{
	struct resource res = {
		.start	= address,
1907
		.end	= address + W83781D_EXTENT - 1,
1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942
		.name	= "w83781d",
		.flags	= IORESOURCE_IO,
	};
	int err;

	pdev = platform_device_alloc("w83781d", address);
	if (!pdev) {
		err = -ENOMEM;
		printk(KERN_ERR "w83781d: Device allocation failed\n");
		goto exit;
	}

	err = platform_device_add_resources(pdev, &res, 1);
	if (err) {
		printk(KERN_ERR "w83781d: Device resource addition failed "
		       "(%d)\n", err);
		goto exit_device_put;
	}

	err = platform_device_add(pdev);
	if (err) {
		printk(KERN_ERR "w83781d: Device addition failed (%d)\n",
		       err);
		goto exit_device_put;
	}

	return 0;

 exit_device_put:
	platform_device_put(pdev);
 exit:
	pdev = NULL;
	return err;
}

L
Linus Torvalds 已提交
1943 1944 1945
static int __init
sensors_w83781d_init(void)
{
1946 1947 1948 1949
	int res;

	res = i2c_add_driver(&w83781d_driver);
	if (res)
1950 1951 1952 1953 1954 1955
		goto exit;

	if (w83781d_isa_found(isa_address)) {
		res = platform_driver_register(&w83781d_isa_driver);
		if (res)
			goto exit_unreg_i2c_driver;
1956

1957 1958 1959 1960 1961
		/* Sets global pdev as a side effect */
		res = w83781d_isa_device_add(isa_address);
		if (res)
			goto exit_unreg_isa_driver;
	}
1962 1963

	return 0;
1964 1965 1966 1967 1968 1969 1970

 exit_unreg_isa_driver:
	platform_driver_unregister(&w83781d_isa_driver);
 exit_unreg_i2c_driver:
	i2c_del_driver(&w83781d_driver);
 exit:
	return res;
L
Linus Torvalds 已提交
1971 1972 1973 1974 1975
}

static void __exit
sensors_w83781d_exit(void)
{
1976 1977 1978 1979
	if (pdev) {
		platform_device_unregister(pdev);
		platform_driver_unregister(&w83781d_isa_driver);
	}
L
Linus Torvalds 已提交
1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990
	i2c_del_driver(&w83781d_driver);
}

MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, "
	      "Philip Edelbrock <phil@netroedge.com>, "
	      "and Mark Studebaker <mdsxyz123@yahoo.com>");
MODULE_DESCRIPTION("W83781D driver");
MODULE_LICENSE("GPL");

module_init(sensors_w83781d_init);
module_exit(sensors_w83781d_exit);