w83627hf.c 56.4 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3 4 5 6 7
 * w83627hf.c - Part of lm_sensors, Linux kernel modules for hardware
 *		monitoring
 * Copyright (c) 1998 - 2003  Frodo Looijaard <frodol@dds.nl>,
 *			      Philip Edelbrock <phil@netroedge.com>,
 *			      and Mark Studebaker <mdsxyz123@yahoo.com>
 * Ported to 2.6 by Bernhard C. Schrenk <clemy@clemy.org>
8
 * Copyright (c) 2007 - 1012  Jean Delvare <khali@linux-fr.org>
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * 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.
 */
L
Linus Torvalds 已提交
24 25

/*
26 27
 * Supports following chips:
 *
28
 * Chip		#vin	#fanin	#pwm	#temp	wchipid	vendid	i2c	ISA
29 30 31 32 33 34 35 36 37 38 39 40
 * w83627hf	9	3	2	3	0x20	0x5ca3	no	yes(LPC)
 * w83627thf	7	3	3	3	0x90	0x5ca3	no	yes(LPC)
 * w83637hf	7	3	3	3	0x80	0x5ca3	no	yes(LPC)
 * w83687thf	7	3	3	3	0x90	0x5ca3	no	yes(LPC)
 * w83697hf	8	2	2	2	0x60	0x5ca3	no	yes(LPC)
 *
 * For other winbond chips, and for i2c support in the above chips,
 * use w83781d.c.
 *
 * Note: automatic ("cruise") fan control for 697, 637 & 627thf not
 * supported yet.
 */
L
Linus Torvalds 已提交
41

42 43
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

L
Linus Torvalds 已提交
44 45 46 47
#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/jiffies.h>
48
#include <linux/platform_device.h>
49
#include <linux/hwmon.h>
50
#include <linux/hwmon-sysfs.h>
51
#include <linux/hwmon-vid.h>
52
#include <linux/err.h>
53
#include <linux/mutex.h>
54
#include <linux/ioport.h>
55
#include <linux/acpi.h>
56
#include <linux/io.h>
L
Linus Torvalds 已提交
57 58
#include "lm75.h"

59
static struct platform_device *pdev;
60 61 62 63

#define DRVNAME "w83627hf"
enum chips { w83627hf, w83627thf, w83697hf, w83637hf, w83687thf };

64 65 66 67 68
struct w83627hf_sio_data {
	enum chips type;
	int sioaddr;
};

L
Linus Torvalds 已提交
69 70 71 72 73
static u8 force_i2c = 0x1f;
module_param(force_i2c, byte, 0);
MODULE_PARM_DESC(force_i2c,
		 "Initialize the i2c address of the sensors");

74
static bool init = 1;
L
Linus Torvalds 已提交
75 76 77
module_param(init, bool, 0);
MODULE_PARM_DESC(init, "Set to zero to bypass chip initialization");

78 79 80 81
static unsigned short force_id;
module_param(force_id, ushort, 0);
MODULE_PARM_DESC(force_id, "Override the detected device ID");

L
Linus Torvalds 已提交
82
/* modified from kernel/include/traps.c */
83
#define DEV			0x07 /* Register: Logical device select */
L
Linus Torvalds 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101

/* logical device numbers for superio_select (below) */
#define W83627HF_LD_FDC		0x00
#define W83627HF_LD_PRT		0x01
#define W83627HF_LD_UART1	0x02
#define W83627HF_LD_UART2	0x03
#define W83627HF_LD_KBC		0x05
#define W83627HF_LD_CIR		0x06 /* w83627hf only */
#define W83627HF_LD_GAME	0x07
#define W83627HF_LD_MIDI	0x07
#define W83627HF_LD_GPIO1	0x07
#define W83627HF_LD_GPIO5	0x07 /* w83627thf only */
#define W83627HF_LD_GPIO2	0x08
#define W83627HF_LD_GPIO3	0x09
#define W83627HF_LD_GPIO4	0x09 /* w83627thf only */
#define W83627HF_LD_ACPI	0x0a
#define W83627HF_LD_HWM		0x0b

102
#define DEVID			0x20 /* Register: Device ID */
L
Linus Torvalds 已提交
103 104 105 106 107

#define W83627THF_GPIO5_EN	0x30 /* w83627thf only */
#define W83627THF_GPIO5_IOSR	0xf3 /* w83627thf only */
#define W83627THF_GPIO5_DR	0xf4 /* w83627thf only */

108 109 110 111
#define W83687THF_VID_EN	0x29 /* w83687thf only */
#define W83687THF_VID_CFG	0xF0 /* w83687thf only */
#define W83687THF_VID_DATA	0xF1 /* w83687thf only */

L
Linus Torvalds 已提交
112
static inline void
113
superio_outb(struct w83627hf_sio_data *sio, int reg, int val)
L
Linus Torvalds 已提交
114
{
115 116
	outb(reg, sio->sioaddr);
	outb(val, sio->sioaddr + 1);
L
Linus Torvalds 已提交
117 118 119
}

static inline int
120
superio_inb(struct w83627hf_sio_data *sio, int reg)
L
Linus Torvalds 已提交
121
{
122 123
	outb(reg, sio->sioaddr);
	return inb(sio->sioaddr + 1);
L
Linus Torvalds 已提交
124 125 126
}

static inline void
127
superio_select(struct w83627hf_sio_data *sio, int ld)
L
Linus Torvalds 已提交
128
{
129 130
	outb(DEV, sio->sioaddr);
	outb(ld,  sio->sioaddr + 1);
L
Linus Torvalds 已提交
131 132 133
}

static inline void
134
superio_enter(struct w83627hf_sio_data *sio)
L
Linus Torvalds 已提交
135
{
136 137
	outb(0x87, sio->sioaddr);
	outb(0x87, sio->sioaddr);
L
Linus Torvalds 已提交
138 139 140
}

static inline void
141
superio_exit(struct w83627hf_sio_data *sio)
L
Linus Torvalds 已提交
142
{
143
	outb(0xAA, sio->sioaddr);
L
Linus Torvalds 已提交
144 145 146 147 148 149
}

#define W627_DEVID 0x52
#define W627THF_DEVID 0x82
#define W697_DEVID 0x60
#define W637_DEVID 0x70
150
#define W687THF_DEVID 0x85
L
Linus Torvalds 已提交
151 152 153 154
#define WINB_ACT_REG 0x30
#define WINB_BASE_REG 0x60
/* Constants specified below */

155 156
/* Alignment of the base address */
#define WINB_ALIGNMENT		~7
L
Linus Torvalds 已提交
157

158 159 160 161
/* Offset & size of I/O region we are interested in */
#define WINB_REGION_OFFSET	5
#define WINB_REGION_SIZE	2

162 163 164
/* Where are the sensors address/data registers relative to the region offset */
#define W83781D_ADDR_REG_OFFSET 0
#define W83781D_DATA_REG_OFFSET 1
L
Linus Torvalds 已提交
165 166 167 168 169 170 171 172 173 174

/* The W83781D registers */
/* The W83782D registers for nr=7,8 are in bank 5 */
#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))

175 176 177
/* nr:0-2 for fans:1-3 */
#define W83627HF_REG_FAN_MIN(nr)	(0x3b + (nr))
#define W83627HF_REG_FAN(nr)		(0x28 + (nr))
L
Linus Torvalds 已提交
178

179 180 181 182 183 184
#define W83627HF_REG_TEMP2_CONFIG 0x152
#define W83627HF_REG_TEMP3_CONFIG 0x252
/* these are zero-based, unlike config constants above */
static const u16 w83627hf_reg_temp[]		= { 0x27, 0x150, 0x250 };
static const u16 w83627hf_reg_temp_hyst[]	= { 0x3A, 0x153, 0x253 };
static const u16 w83627hf_reg_temp_over[]	= { 0x39, 0x155, 0x255 };
L
Linus Torvalds 已提交
185 186 187 188

#define W83781D_REG_BANK 0x4E

#define W83781D_REG_CONFIG 0x40
Y
Yuan Mu 已提交
189 190 191
#define W83781D_REG_ALARM1 0x459
#define W83781D_REG_ALARM2 0x45A
#define W83781D_REG_ALARM3 0x45B
L
Linus Torvalds 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209

#define W83781D_REG_BEEP_CONFIG 0x4D
#define W83781D_REG_BEEP_INTS1 0x56
#define W83781D_REG_BEEP_INTS2 0x57
#define W83781D_REG_BEEP_INTS3 0x453

#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

#define W83781D_REG_VBAT 0x5D

#define W83627HF_REG_PWM1 0x5A
#define W83627HF_REG_PWM2 0x5B

210 211 212 213 214 215 216
static const u8 W83627THF_REG_PWM_ENABLE[] = {
	0x04,		/* FAN 1 mode */
	0x04,		/* FAN 2 mode */
	0x12,		/* FAN AUX mode */
};
static const u8 W83627THF_PWM_ENABLE_SHIFT[] = { 2, 4, 1 };

217 218 219
#define W83627THF_REG_PWM1		0x01	/* 697HF/637HF/687THF too */
#define W83627THF_REG_PWM2		0x03	/* 697HF/637HF/687THF too */
#define W83627THF_REG_PWM3		0x11	/* 637HF/687THF too */
L
Linus Torvalds 已提交
220

221
#define W83627THF_REG_VRM_OVT_CFG 	0x18	/* 637HF/687THF too */
L
Linus Torvalds 已提交
222 223 224 225 226

static const u8 regpwm_627hf[] = { W83627HF_REG_PWM1, W83627HF_REG_PWM2 };
static const u8 regpwm[] = { W83627THF_REG_PWM1, W83627THF_REG_PWM2,
                             W83627THF_REG_PWM3 };
#define W836X7HF_REG_PWM(type, nr) (((type) == w83627hf) ? \
227
				    regpwm_627hf[nr] : regpwm[nr])
L
Linus Torvalds 已提交
228

229 230 231 232 233 234 235 236 237 238 239 240
#define W83627HF_REG_PWM_FREQ		0x5C	/* Only for the 627HF */

#define W83637HF_REG_PWM_FREQ1		0x00	/* 697HF/687THF too */
#define W83637HF_REG_PWM_FREQ2		0x02	/* 697HF/687THF too */
#define W83637HF_REG_PWM_FREQ3		0x10	/* 687THF too */

static const u8 W83637HF_REG_PWM_FREQ[] = { W83637HF_REG_PWM_FREQ1,
					W83637HF_REG_PWM_FREQ2,
					W83637HF_REG_PWM_FREQ3 };

#define W83627HF_BASE_PWM_FREQ	46870

L
Linus Torvalds 已提交
241 242 243 244 245 246 247 248 249 250
#define W83781D_REG_I2C_ADDR 0x48
#define W83781D_REG_I2C_SUBADDR 0x4A

/* Sensor selection */
#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

251 252 253 254 255 256
/*
 * Conversions. Limit checking is only done on the TO_REG
 * variants. Note that you should be a bit careful with which arguments
 * these macros are called: arguments may be evaluated more than once.
 * Fixing this is just not worth it.
 */
L
Linus Torvalds 已提交
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
#define IN_TO_REG(val)  (SENSORS_LIMIT((((val) + 8)/16),0,255))
#define IN_FROM_REG(val) ((val) * 16)

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);
}

#define TEMP_MIN (-128000)
#define TEMP_MAX ( 127000)

272 273 274 275
/*
 * TEMP: 0.001C/bit (-128C to +127C)
 * REG: 1C/bit, two's complement
 */
276
static u8 TEMP_TO_REG(long temp)
L
Linus Torvalds 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
{
        int ntemp = SENSORS_LIMIT(temp, TEMP_MIN, TEMP_MAX);
        ntemp += (ntemp<0 ? -500 : 500);
        return (u8)(ntemp / 1000);
}

static int TEMP_FROM_REG(u8 reg)
{
        return (s8)reg * 1000;
}

#define FAN_FROM_REG(val,div) ((val)==0?-1:(val)==255?0:1350000/((val)*(div)))

#define PWM_TO_REG(val) (SENSORS_LIMIT((val),0,255))

292 293 294 295 296 297 298 299 300
static inline unsigned long pwm_freq_from_reg_627hf(u8 reg)
{
	unsigned long freq;
	freq = W83627HF_BASE_PWM_FREQ >> reg;
	return freq;
}
static inline u8 pwm_freq_to_reg_627hf(unsigned long val)
{
	u8 i;
301 302 303 304
	/*
	 * Only 5 dividers (1 2 4 8 16)
	 * Search for the nearest available frequency
	 */
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
	for (i = 0; i < 4; i++) {
		if (val > (((W83627HF_BASE_PWM_FREQ >> i) +
			    (W83627HF_BASE_PWM_FREQ >> (i+1))) / 2))
			break;
	}
	return i;
}

static inline unsigned long pwm_freq_from_reg(u8 reg)
{
	/* Clock bit 8 -> 180 kHz or 24 MHz */
	unsigned long clock = (reg & 0x80) ? 180000UL : 24000000UL;

	reg &= 0x7f;
	/* This should not happen but anyway... */
	if (reg == 0)
		reg++;
322
	return clock / (reg << 8);
323 324 325 326 327 328 329
}
static inline u8 pwm_freq_to_reg(unsigned long val)
{
	/* Minimum divider value is 0x01 and maximum is 0x7F */
	if (val >= 93750)	/* The highest we can do */
		return 0x01;
	if (val >= 720)	/* Use 24 MHz clock */
330
		return 24000000UL / (val << 8);
331 332 333
	if (val < 6)		/* The lowest we can do */
		return 0xFF;
	else			/* Use 180 kHz clock */
334
		return 0x80 | (180000UL / (val << 8));
335 336
}

337 338
#define BEEP_MASK_FROM_REG(val)		((val) & 0xff7fff)
#define BEEP_MASK_TO_REG(val)		((val) & 0xff7fff)
L
Linus Torvalds 已提交
339 340 341 342 343 344 345

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

static inline u8 DIV_TO_REG(long val)
{
	int i;
	val = SENSORS_LIMIT(val, 1, 128) >> 1;
346
	for (i = 0; i < 7; i++) {
L
Linus Torvalds 已提交
347 348 349 350
		if (val == 0)
			break;
		val >>= 1;
	}
351
	return (u8)i;
L
Linus Torvalds 已提交
352 353
}

354 355 356 357
/*
 * For each registered chip, we need to keep some data in memory.
 * The structure is dynamically allocated.
 */
L
Linus Torvalds 已提交
358
struct w83627hf_data {
359 360
	unsigned short addr;
	const char *name;
361
	struct device *hwmon_dev;
362
	struct mutex lock;
L
Linus Torvalds 已提交
363 364
	enum chips type;

365
	struct mutex update_lock;
L
Linus Torvalds 已提交
366 367 368 369 370 371 372 373
	char valid;		/* !=0 if following fields are valid */
	unsigned long last_updated;	/* In jiffies */

	u8 in[9];		/* Register value */
	u8 in_max[9];		/* Register value */
	u8 in_min[9];		/* Register value */
	u8 fan[3];		/* Register value */
	u8 fan_min[3];		/* Register value */
374 375 376
	u16 temp[3];		/* Register value */
	u16 temp_max[3];	/* Register value */
	u16 temp_max_hyst[3];	/* Register value */
L
Linus Torvalds 已提交
377 378 379 380 381
	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 pwm[3];		/* Register value */
382
	u8 pwm_enable[3];	/* 1 = manual
383 384 385
				 * 2 = thermal cruise (also called SmartFan I)
				 * 3 = fan speed cruise
				 */
386
	u8 pwm_freq[3];		/* Register value */
J
Jean Delvare 已提交
387
	u16 sens[3];		/* 1 = pentium diode; 2 = 3904 diode;
388 389
				 * 4 = thermistor
				 */
L
Linus Torvalds 已提交
390
	u8 vrm;
391
	u8 vrm_ovt;		/* Register value, 627THF/637HF/687THF only */
392 393 394 395 396 397

#ifdef CONFIG_PM
	/* Remember extra register values over suspend/resume */
	u8 scfg1;
	u8 scfg2;
#endif
L
Linus Torvalds 已提交
398 399 400
};


401
static int w83627hf_probe(struct platform_device *pdev);
B
Bill Pemberton 已提交
402
static int w83627hf_remove(struct platform_device *pdev);
403 404 405

static int w83627hf_read_value(struct w83627hf_data *data, u16 reg);
static int w83627hf_write_value(struct w83627hf_data *data, u16 reg, u16 value);
406
static void w83627hf_update_fan_div(struct w83627hf_data *data);
L
Linus Torvalds 已提交
407
static struct w83627hf_data *w83627hf_update_device(struct device *dev);
408
static void w83627hf_init_device(struct platform_device *pdev);
L
Linus Torvalds 已提交
409

410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
#ifdef CONFIG_PM
static int w83627hf_suspend(struct device *dev)
{
	struct w83627hf_data *data = w83627hf_update_device(dev);

	mutex_lock(&data->update_lock);
	data->scfg1 = w83627hf_read_value(data, W83781D_REG_SCFG1);
	data->scfg2 = w83627hf_read_value(data, W83781D_REG_SCFG2);
	mutex_unlock(&data->update_lock);

	return 0;
}

static int w83627hf_resume(struct device *dev)
{
	struct w83627hf_data *data = dev_get_drvdata(dev);
	int i, num_temps = (data->type == w83697hf) ? 2 : 3;

	/* Restore limits */
	mutex_lock(&data->update_lock);
	for (i = 0; i <= 8; i++) {
		/* skip missing sensors */
		if (((data->type == w83697hf) && (i == 1)) ||
		    ((data->type != w83627hf && data->type != w83697hf)
		    && (i == 5 || i == 6)))
			continue;
		w83627hf_write_value(data, W83781D_REG_IN_MAX(i),
				     data->in_max[i]);
		w83627hf_write_value(data, W83781D_REG_IN_MIN(i),
				     data->in_min[i]);
	}
	for (i = 0; i <= 2; i++)
		w83627hf_write_value(data, W83627HF_REG_FAN_MIN(i),
				     data->fan_min[i]);
	for (i = 0; i < num_temps; i++) {
		w83627hf_write_value(data, w83627hf_reg_temp_over[i],
				     data->temp_max[i]);
		w83627hf_write_value(data, w83627hf_reg_temp_hyst[i],
				     data->temp_max_hyst[i]);
	}

	/* Fixup BIOS bugs */
	if (data->type == w83627thf || data->type == w83637hf ||
	    data->type == w83687thf)
		w83627hf_write_value(data, W83627THF_REG_VRM_OVT_CFG,
				     data->vrm_ovt);
	w83627hf_write_value(data, W83781D_REG_SCFG1, data->scfg1);
	w83627hf_write_value(data, W83781D_REG_SCFG2, data->scfg2);

	/* Force re-reading all values */
	data->valid = 0;
	mutex_unlock(&data->update_lock);

	return 0;
}

static const struct dev_pm_ops w83627hf_dev_pm_ops = {
	.suspend = w83627hf_suspend,
	.resume = w83627hf_resume,
};

#define W83627HF_DEV_PM_OPS	(&w83627hf_dev_pm_ops)
#else
#define W83627HF_DEV_PM_OPS	NULL
#endif /* CONFIG_PM */

476
static struct platform_driver w83627hf_driver = {
477
	.driver = {
J
Jean Delvare 已提交
478
		.owner	= THIS_MODULE,
479
		.name	= DRVNAME,
480
		.pm	= W83627HF_DEV_PM_OPS,
481
	},
482
	.probe		= w83627hf_probe,
B
Bill Pemberton 已提交
483
	.remove		= w83627hf_remove,
L
Linus Torvalds 已提交
484 485
};

486 487 488 489 490 491
static ssize_t
show_in_input(struct device *dev, struct device_attribute *devattr, char *buf)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return sprintf(buf, "%ld\n", (long)IN_FROM_REG(data->in[nr]));
L
Linus Torvalds 已提交
492
}
493 494 495 496 497 498 499 500 501 502 503 504 505
static ssize_t
show_in_min(struct device *dev, struct device_attribute *devattr, char *buf)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return sprintf(buf, "%ld\n", (long)IN_FROM_REG(data->in_min[nr]));
}
static ssize_t
show_in_max(struct device *dev, struct device_attribute *devattr, char *buf)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return sprintf(buf, "%ld\n", (long)IN_FROM_REG(data->in_max[nr]));
L
Linus Torvalds 已提交
506
}
507 508 509 510 511 512
static ssize_t
store_in_min(struct device *dev, struct device_attribute *devattr,
	     const char *buf, size_t count)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = dev_get_drvdata(dev);
513 514 515 516 517 518
	long val;
	int err;

	err = kstrtol(buf, 10, &val);
	if (err)
		return err;
L
Linus Torvalds 已提交
519

520 521 522 523 524 525 526 527 528 529 530 531
	mutex_lock(&data->update_lock);
	data->in_min[nr] = IN_TO_REG(val);
	w83627hf_write_value(data, W83781D_REG_IN_MIN(nr), data->in_min[nr]);
	mutex_unlock(&data->update_lock);
	return count;
}
static ssize_t
store_in_max(struct device *dev, struct device_attribute *devattr,
	     const char *buf, size_t count)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = dev_get_drvdata(dev);
532 533 534 535 536 537
	long val;
	int err;

	err = kstrtol(buf, 10, &val);
	if (err)
		return err;
L
Linus Torvalds 已提交
538

539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
	mutex_lock(&data->update_lock);
	data->in_max[nr] = IN_TO_REG(val);
	w83627hf_write_value(data, W83781D_REG_IN_MAX(nr), data->in_max[nr]);
	mutex_unlock(&data->update_lock);
	return count;
}
#define sysfs_vin_decl(offset) \
static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO,		\
			  show_in_input, 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);

sysfs_vin_decl(1);
sysfs_vin_decl(2);
sysfs_vin_decl(3);
sysfs_vin_decl(4);
sysfs_vin_decl(5);
sysfs_vin_decl(6);
sysfs_vin_decl(7);
sysfs_vin_decl(8);
L
Linus Torvalds 已提交
561 562 563 564 565 566 567

/* use a different set of functions for in0 */
static ssize_t show_in_0(struct w83627hf_data *data, char *buf, u8 reg)
{
	long in0;

	if ((data->vrm_ovt & 0x01) &&
568 569
		(w83627thf == data->type || w83637hf == data->type
		 || w83687thf == data->type))
L
Linus Torvalds 已提交
570 571 572 573 574 575 576 577 578 579

		/* use VRM9 calculation */
		in0 = (long)((reg * 488 + 70000 + 50) / 100);
	else
		/* use VRM8 (standard) calculation */
		in0 = (long)IN_FROM_REG(reg);

	return sprintf(buf,"%ld\n", in0);
}

580
static ssize_t show_regs_in_0(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
581 582 583 584 585
{
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return show_in_0(data, buf, data->in[0]);
}

586
static ssize_t show_regs_in_min0(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
587 588 589 590 591
{
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return show_in_0(data, buf, data->in_min[0]);
}

592
static ssize_t show_regs_in_max0(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
593 594 595 596 597
{
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return show_in_0(data, buf, data->in_max[0]);
}

598
static ssize_t store_regs_in_min0(struct device *dev, struct device_attribute *attr,
L
Linus Torvalds 已提交
599 600
	const char *buf, size_t count)
{
601
	struct w83627hf_data *data = dev_get_drvdata(dev);
602 603
	unsigned long val;
	int err;
L
Linus Torvalds 已提交
604

605 606 607
	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;
L
Linus Torvalds 已提交
608

609
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
610 611
	
	if ((data->vrm_ovt & 0x01) &&
612 613
		(w83627thf == data->type || w83637hf == data->type
		 || w83687thf == data->type))
L
Linus Torvalds 已提交
614 615

		/* use VRM9 calculation */
616 617 618
		data->in_min[0] =
			SENSORS_LIMIT(((val * 100) - 70000 + 244) / 488, 0,
					255);
L
Linus Torvalds 已提交
619 620 621 622
	else
		/* use VRM8 (standard) calculation */
		data->in_min[0] = IN_TO_REG(val);

623
	w83627hf_write_value(data, W83781D_REG_IN_MIN(0), data->in_min[0]);
624
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
625 626 627
	return count;
}

628
static ssize_t store_regs_in_max0(struct device *dev, struct device_attribute *attr,
L
Linus Torvalds 已提交
629 630
	const char *buf, size_t count)
{
631
	struct w83627hf_data *data = dev_get_drvdata(dev);
632 633
	unsigned long val;
	int err;
L
Linus Torvalds 已提交
634

635 636 637
	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;
L
Linus Torvalds 已提交
638

639
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
640 641

	if ((data->vrm_ovt & 0x01) &&
642 643
		(w83627thf == data->type || w83637hf == data->type
		 || w83687thf == data->type))
L
Linus Torvalds 已提交
644 645
		
		/* use VRM9 calculation */
646 647 648
		data->in_max[0] =
			SENSORS_LIMIT(((val * 100) - 70000 + 244) / 488, 0,
					255);
L
Linus Torvalds 已提交
649 650 651 652
	else
		/* use VRM8 (standard) calculation */
		data->in_max[0] = IN_TO_REG(val);

653
	w83627hf_write_value(data, W83781D_REG_IN_MAX(0), data->in_max[0]);
654
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
655 656 657 658 659 660 661 662 663
	return count;
}

static DEVICE_ATTR(in0_input, S_IRUGO, show_regs_in_0, NULL);
static DEVICE_ATTR(in0_min, S_IRUGO | S_IWUSR,
	show_regs_in_min0, store_regs_in_min0);
static DEVICE_ATTR(in0_max, S_IRUGO | S_IWUSR,
	show_regs_in_max0, store_regs_in_max0);

664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
static ssize_t
show_fan_input(struct device *dev, struct device_attribute *devattr, char *buf)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return sprintf(buf, "%ld\n", FAN_FROM_REG(data->fan[nr],
				(long)DIV_FROM_REG(data->fan_div[nr])));
}
static ssize_t
show_fan_min(struct device *dev, struct device_attribute *devattr, char *buf)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return sprintf(buf, "%ld\n", FAN_FROM_REG(data->fan_min[nr],
				(long)DIV_FROM_REG(data->fan_div[nr])));
L
Linus Torvalds 已提交
679 680
}
static ssize_t
681 682
store_fan_min(struct device *dev, struct device_attribute *devattr,
	      const char *buf, size_t count)
L
Linus Torvalds 已提交
683
{
684
	int nr = to_sensor_dev_attr(devattr)->index;
685
	struct w83627hf_data *data = dev_get_drvdata(dev);
686 687 688 689 690 691
	unsigned long val;
	int err;

	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;
L
Linus Torvalds 已提交
692

693
	mutex_lock(&data->update_lock);
694
	data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
695
	w83627hf_write_value(data, W83627HF_REG_FAN_MIN(nr),
696
			     data->fan_min[nr]);
L
Linus Torvalds 已提交
697

698
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
699 700
	return count;
}
701 702 703 704 705
#define sysfs_fan_decl(offset)	\
static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO,			\
			  show_fan_input, NULL, offset - 1);		\
static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR,		\
			  show_fan_min, store_fan_min, offset - 1);
L
Linus Torvalds 已提交
706

707 708 709
sysfs_fan_decl(1);
sysfs_fan_decl(2);
sysfs_fan_decl(3);
L
Linus Torvalds 已提交
710

711 712 713 714 715
static ssize_t
show_temp(struct device *dev, struct device_attribute *devattr, char *buf)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = w83627hf_update_device(dev);
716 717 718 719

	u16 tmp = data->temp[nr];
	return sprintf(buf, "%ld\n", (nr) ? (long) LM75_TEMP_FROM_REG(tmp)
					  : (long) TEMP_FROM_REG(tmp));
L
Linus Torvalds 已提交
720 721
}

722 723 724 725 726 727
static ssize_t
show_temp_max(struct device *dev, struct device_attribute *devattr,
	      char *buf)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = w83627hf_update_device(dev);
728 729 730 731

	u16 tmp = data->temp_max[nr];
	return sprintf(buf, "%ld\n", (nr) ? (long) LM75_TEMP_FROM_REG(tmp)
					  : (long) TEMP_FROM_REG(tmp));
L
Linus Torvalds 已提交
732 733
}

734 735 736 737 738 739
static ssize_t
show_temp_max_hyst(struct device *dev, struct device_attribute *devattr,
		   char *buf)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = w83627hf_update_device(dev);
740 741 742 743

	u16 tmp = data->temp_max_hyst[nr];
	return sprintf(buf, "%ld\n", (nr) ? (long) LM75_TEMP_FROM_REG(tmp)
					  : (long) TEMP_FROM_REG(tmp));
744
}
L
Linus Torvalds 已提交
745

746 747 748 749 750 751
static ssize_t
store_temp_max(struct device *dev, struct device_attribute *devattr,
	       const char *buf, size_t count)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = dev_get_drvdata(dev);
752 753 754
	u16 tmp;
	long val;
	int err;
L
Linus Torvalds 已提交
755

756 757 758 759 760
	err = kstrtol(buf, 10, &val);
	if (err)
		return err;

	tmp = (nr) ? LM75_TEMP_TO_REG(val) : TEMP_TO_REG(val);
761
	mutex_lock(&data->update_lock);
762 763
	data->temp_max[nr] = tmp;
	w83627hf_write_value(data, w83627hf_reg_temp_over[nr], tmp);
764 765 766 767 768 769 770 771 772 773
	mutex_unlock(&data->update_lock);
	return count;
}

static ssize_t
store_temp_max_hyst(struct device *dev, struct device_attribute *devattr,
		    const char *buf, size_t count)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = dev_get_drvdata(dev);
774 775 776 777 778 779 780
	u16 tmp;
	long val;
	int err;

	err = kstrtol(buf, 10, &val);
	if (err)
		return err;
781

782
	tmp = (nr) ? LM75_TEMP_TO_REG(val) : TEMP_TO_REG(val);
783
	mutex_lock(&data->update_lock);
784 785
	data->temp_max_hyst[nr] = tmp;
	w83627hf_write_value(data, w83627hf_reg_temp_hyst[nr], tmp);
786 787 788 789 790 791
	mutex_unlock(&data->update_lock);
	return count;
}

#define sysfs_temp_decl(offset) \
static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO,		\
792
			  show_temp, NULL, offset - 1);			\
793
static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO|S_IWUSR,	 	\
794
			  show_temp_max, store_temp_max, offset - 1);	\
795
static SENSOR_DEVICE_ATTR(temp##offset##_max_hyst, S_IRUGO|S_IWUSR,	\
796
			  show_temp_max_hyst, store_temp_max_hyst, offset - 1);
797 798 799 800

sysfs_temp_decl(1);
sysfs_temp_decl(2);
sysfs_temp_decl(3);
L
Linus Torvalds 已提交
801 802

static ssize_t
803
show_vid_reg(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
804 805 806 807 808 809 810
{
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
}
static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);

static ssize_t
811
show_vrm_reg(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
812
{
813
	struct w83627hf_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
814 815 816
	return sprintf(buf, "%ld\n", (long) data->vrm);
}
static ssize_t
817
store_vrm_reg(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
L
Linus Torvalds 已提交
818
{
819
	struct w83627hf_data *data = dev_get_drvdata(dev);
820 821
	unsigned long val;
	int err;
L
Linus Torvalds 已提交
822

823 824 825
	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;
L
Linus Torvalds 已提交
826 827 828 829 830 831 832
	data->vrm = val;

	return count;
}
static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);

static ssize_t
833
show_alarms_reg(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
834 835 836 837 838 839
{
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return sprintf(buf, "%ld\n", (long) data->alarms);
}
static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL);

840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862
static ssize_t
show_alarm(struct device *dev, struct device_attribute *attr, char *buf)
{
	struct w83627hf_data *data = w83627hf_update_device(dev);
	int bitnr = to_sensor_dev_attr(attr)->index;
	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_alarm, NULL, 13);

863 864 865 866 867 868
static ssize_t
show_beep_mask(struct device *dev, struct device_attribute *attr, char *buf)
{
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return sprintf(buf, "%ld\n",
		      (long)BEEP_MASK_FROM_REG(data->beep_mask));
L
Linus Torvalds 已提交
869 870 871
}

static ssize_t
872 873
store_beep_mask(struct device *dev, struct device_attribute *attr,
		const char *buf, size_t count)
L
Linus Torvalds 已提交
874
{
875
	struct w83627hf_data *data = dev_get_drvdata(dev);
876
	unsigned long val;
877
	int err;
L
Linus Torvalds 已提交
878

879 880 881
	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;
L
Linus Torvalds 已提交
882

883
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
884

885 886 887 888 889 890 891
	/* preserve beep enable */
	data->beep_mask = (data->beep_mask & 0x8000)
			| BEEP_MASK_TO_REG(val);
	w83627hf_write_value(data, W83781D_REG_BEEP_INTS1,
			    data->beep_mask & 0xff);
	w83627hf_write_value(data, W83781D_REG_BEEP_INTS3,
			    ((data->beep_mask) >> 16) & 0xff);
892
	w83627hf_write_value(data, W83781D_REG_BEEP_INTS2,
893
			    (data->beep_mask >> 8) & 0xff);
L
Linus Torvalds 已提交
894

895
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
896 897 898
	return count;
}

899 900
static DEVICE_ATTR(beep_mask, S_IRUGO | S_IWUSR,
		   show_beep_mask, store_beep_mask);
L
Linus Torvalds 已提交
901

902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
static ssize_t
show_beep(struct device *dev, struct device_attribute *attr, char *buf)
{
	struct w83627hf_data *data = w83627hf_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 w83627hf_data *data = dev_get_drvdata(dev);
	int bitnr = to_sensor_dev_attr(attr)->index;
	u8 reg;
917 918 919 920 921 922
	unsigned long bit;
	int err;

	err = kstrtoul(buf, 10, &bit);
	if (err)
		return err;
923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 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

	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 = w83627hf_read_value(data, W83781D_REG_BEEP_INTS1);
		if (bit)
			reg |= (1 << bitnr);
		else
			reg &= ~(1 << bitnr);
		w83627hf_write_value(data, W83781D_REG_BEEP_INTS1, reg);
	} else if (bitnr < 16) {
		reg = w83627hf_read_value(data, W83781D_REG_BEEP_INTS2);
		if (bit)
			reg |= (1 << (bitnr - 8));
		else
			reg &= ~(1 << (bitnr - 8));
		w83627hf_write_value(data, W83781D_REG_BEEP_INTS2, reg);
	} else {
		reg = w83627hf_read_value(data, W83781D_REG_BEEP_INTS3);
		if (bit)
			reg |= (1 << (bitnr - 16));
		else
			reg &= ~(1 << (bitnr - 16));
		w83627hf_write_value(data, W83781D_REG_BEEP_INTS3, reg);
	}
	mutex_unlock(&data->update_lock);

	return count;
}

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 | S_IWUSR,
			show_beep, store_beep, 13);
990 991
static SENSOR_DEVICE_ATTR(beep_enable, S_IRUGO | S_IWUSR,
			show_beep, store_beep, 15);
992

L
Linus Torvalds 已提交
993
static ssize_t
994
show_fan_div(struct device *dev, struct device_attribute *devattr, char *buf)
L
Linus Torvalds 已提交
995
{
996
	int nr = to_sensor_dev_attr(devattr)->index;
L
Linus Torvalds 已提交
997 998
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return sprintf(buf, "%ld\n",
999
		       (long) DIV_FROM_REG(data->fan_div[nr]));
L
Linus Torvalds 已提交
1000
}
1001 1002 1003 1004 1005 1006
/*
 * 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
 * least surprise; the user doesn't expect the fan minimum to change just
 * because the divisor changed.
 */
L
Linus Torvalds 已提交
1007
static ssize_t
1008 1009
store_fan_div(struct device *dev, struct device_attribute *devattr,
	      const char *buf, size_t count)
L
Linus Torvalds 已提交
1010
{
1011
	int nr = to_sensor_dev_attr(devattr)->index;
1012
	struct w83627hf_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
1013 1014
	unsigned long min;
	u8 reg;
1015 1016 1017 1018 1019 1020
	unsigned long val;
	int err;

	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;
L
Linus Torvalds 已提交
1021

1022
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
1023 1024 1025 1026 1027 1028 1029

	/* 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);

1030
	reg = (w83627hf_read_value(data, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV)
L
Linus Torvalds 已提交
1031 1032
	       & (nr==0 ? 0xcf : 0x3f))
	    | ((data->fan_div[nr] & 0x03) << (nr==0 ? 4 : 6));
1033
	w83627hf_write_value(data, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV, reg);
L
Linus Torvalds 已提交
1034

1035
	reg = (w83627hf_read_value(data, W83781D_REG_VBAT)
L
Linus Torvalds 已提交
1036 1037
	       & ~(1 << (5 + nr)))
	    | ((data->fan_div[nr] & 0x04) << (3 + nr));
1038
	w83627hf_write_value(data, W83781D_REG_VBAT, reg);
L
Linus Torvalds 已提交
1039 1040 1041

	/* Restore fan_min */
	data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
1042
	w83627hf_write_value(data, W83627HF_REG_FAN_MIN(nr), data->fan_min[nr]);
L
Linus Torvalds 已提交
1043

1044
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
1045 1046 1047
	return count;
}

1048 1049 1050 1051 1052 1053
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 已提交
1054 1055

static ssize_t
1056
show_pwm(struct device *dev, struct device_attribute *devattr, char *buf)
L
Linus Torvalds 已提交
1057
{
1058
	int nr = to_sensor_dev_attr(devattr)->index;
L
Linus Torvalds 已提交
1059
	struct w83627hf_data *data = w83627hf_update_device(dev);
1060
	return sprintf(buf, "%ld\n", (long) data->pwm[nr]);
L
Linus Torvalds 已提交
1061 1062 1063
}

static ssize_t
1064 1065
store_pwm(struct device *dev, struct device_attribute *devattr,
	  const char *buf, size_t count)
L
Linus Torvalds 已提交
1066
{
1067
	int nr = to_sensor_dev_attr(devattr)->index;
1068
	struct w83627hf_data *data = dev_get_drvdata(dev);
1069 1070 1071 1072 1073 1074
	unsigned long val;
	int err;

	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;
L
Linus Torvalds 已提交
1075

1076
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
1077 1078 1079

	if (data->type == w83627thf) {
		/* bits 0-3 are reserved  in 627THF */
1080
		data->pwm[nr] = PWM_TO_REG(val) & 0xf0;
1081
		w83627hf_write_value(data,
L
Linus Torvalds 已提交
1082
				     W836X7HF_REG_PWM(data->type, nr),
1083
				     data->pwm[nr] |
1084
				     (w83627hf_read_value(data,
L
Linus Torvalds 已提交
1085 1086
				     W836X7HF_REG_PWM(data->type, nr)) & 0x0f));
	} else {
1087
		data->pwm[nr] = PWM_TO_REG(val);
1088
		w83627hf_write_value(data,
L
Linus Torvalds 已提交
1089
				     W836X7HF_REG_PWM(data->type, nr),
1090
				     data->pwm[nr]);
L
Linus Torvalds 已提交
1091 1092
	}

1093
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
1094 1095 1096
	return count;
}

1097 1098 1099
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);
L
Linus Torvalds 已提交
1100

1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
static ssize_t
show_pwm_enable(struct device *dev, struct device_attribute *devattr, char *buf)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return sprintf(buf, "%d\n", data->pwm_enable[nr]);
}

static ssize_t
store_pwm_enable(struct device *dev, struct device_attribute *devattr,
	  const char *buf, size_t count)
{
	int nr = to_sensor_dev_attr(devattr)->index;
	struct w83627hf_data *data = dev_get_drvdata(dev);
	u8 reg;
1116 1117
	unsigned long val;
	int err;
1118

1119 1120 1121 1122 1123
	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;

	if (!val || val > 3)	/* modes 1, 2 and 3 are supported */
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
		return -EINVAL;
	mutex_lock(&data->update_lock);
	data->pwm_enable[nr] = val;
	reg = w83627hf_read_value(data, W83627THF_REG_PWM_ENABLE[nr]);
	reg &= ~(0x03 << W83627THF_PWM_ENABLE_SHIFT[nr]);
	reg |= (val - 1) << W83627THF_PWM_ENABLE_SHIFT[nr];
	w83627hf_write_value(data, W83627THF_REG_PWM_ENABLE[nr], reg);
	mutex_unlock(&data->update_lock);
	return count;
}

static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO|S_IWUSR, show_pwm_enable,
						  store_pwm_enable, 0);
static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO|S_IWUSR, show_pwm_enable,
						  store_pwm_enable, 1);
static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO|S_IWUSR, show_pwm_enable,
						  store_pwm_enable, 2);

1142
static ssize_t
1143
show_pwm_freq(struct device *dev, struct device_attribute *devattr, char *buf)
1144
{
1145
	int nr = to_sensor_dev_attr(devattr)->index;
1146 1147 1148
	struct w83627hf_data *data = w83627hf_update_device(dev);
	if (data->type == w83627hf)
		return sprintf(buf, "%ld\n",
1149
			pwm_freq_from_reg_627hf(data->pwm_freq[nr]));
1150 1151
	else
		return sprintf(buf, "%ld\n",
1152
			pwm_freq_from_reg(data->pwm_freq[nr]));
1153 1154 1155
}

static ssize_t
1156 1157
store_pwm_freq(struct device *dev, struct device_attribute *devattr,
	       const char *buf, size_t count)
1158
{
1159
	int nr = to_sensor_dev_attr(devattr)->index;
1160 1161
	struct w83627hf_data *data = dev_get_drvdata(dev);
	static const u8 mask[]={0xF8, 0x8F};
1162 1163
	unsigned long val;
	int err;
1164

1165 1166 1167
	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;
1168 1169 1170 1171

	mutex_lock(&data->update_lock);

	if (data->type == w83627hf) {
1172
		data->pwm_freq[nr] = pwm_freq_to_reg_627hf(val);
1173
		w83627hf_write_value(data, W83627HF_REG_PWM_FREQ,
1174
				(data->pwm_freq[nr] << (nr*4)) |
1175
				(w83627hf_read_value(data,
1176
				W83627HF_REG_PWM_FREQ) & mask[nr]));
1177
	} else {
1178 1179 1180
		data->pwm_freq[nr] = pwm_freq_to_reg(val);
		w83627hf_write_value(data, W83637HF_REG_PWM_FREQ[nr],
				data->pwm_freq[nr]);
1181 1182 1183 1184 1185 1186
	}

	mutex_unlock(&data->update_lock);
	return count;
}

1187 1188 1189 1190 1191 1192
static SENSOR_DEVICE_ATTR(pwm1_freq, S_IRUGO|S_IWUSR,
			  show_pwm_freq, store_pwm_freq, 0);
static SENSOR_DEVICE_ATTR(pwm2_freq, S_IRUGO|S_IWUSR,
			  show_pwm_freq, store_pwm_freq, 1);
static SENSOR_DEVICE_ATTR(pwm3_freq, S_IRUGO|S_IWUSR,
			  show_pwm_freq, store_pwm_freq, 2);
1193

L
Linus Torvalds 已提交
1194
static ssize_t
1195 1196
show_temp_type(struct device *dev, struct device_attribute *devattr,
	       char *buf)
L
Linus Torvalds 已提交
1197
{
1198
	int nr = to_sensor_dev_attr(devattr)->index;
L
Linus Torvalds 已提交
1199
	struct w83627hf_data *data = w83627hf_update_device(dev);
1200
	return sprintf(buf, "%ld\n", (long) data->sens[nr]);
L
Linus Torvalds 已提交
1201 1202 1203
}

static ssize_t
1204 1205
store_temp_type(struct device *dev, struct device_attribute *devattr,
		const char *buf, size_t count)
L
Linus Torvalds 已提交
1206
{
1207
	int nr = to_sensor_dev_attr(devattr)->index;
1208
	struct w83627hf_data *data = dev_get_drvdata(dev);
1209 1210 1211
	unsigned long val;
	u32 tmp;
	int err;
L
Linus Torvalds 已提交
1212

1213 1214 1215
	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;
L
Linus Torvalds 已提交
1216

1217
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
1218 1219 1220

	switch (val) {
	case 1:		/* PII/Celeron diode */
1221 1222
		tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
		w83627hf_write_value(data, W83781D_REG_SCFG1,
1223
				    tmp | BIT_SCFG1[nr]);
1224 1225
		tmp = w83627hf_read_value(data, W83781D_REG_SCFG2);
		w83627hf_write_value(data, W83781D_REG_SCFG2,
1226 1227
				    tmp | BIT_SCFG2[nr]);
		data->sens[nr] = val;
L
Linus Torvalds 已提交
1228 1229
		break;
	case 2:		/* 3904 */
1230 1231
		tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
		w83627hf_write_value(data, W83781D_REG_SCFG1,
1232
				    tmp | BIT_SCFG1[nr]);
1233 1234
		tmp = w83627hf_read_value(data, W83781D_REG_SCFG2);
		w83627hf_write_value(data, W83781D_REG_SCFG2,
1235 1236
				    tmp & ~BIT_SCFG2[nr]);
		data->sens[nr] = val;
L
Linus Torvalds 已提交
1237
		break;
J
Jean Delvare 已提交
1238 1239 1240 1241 1242
	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 */
1243 1244
		tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
		w83627hf_write_value(data, W83781D_REG_SCFG1,
1245 1246
				    tmp & ~BIT_SCFG1[nr]);
		data->sens[nr] = val;
L
Linus Torvalds 已提交
1247 1248
		break;
	default:
1249
		dev_err(dev,
J
Jean Delvare 已提交
1250 1251
		       "Invalid sensor type %ld; must be 1, 2, or 4\n",
		       (long) val);
L
Linus Torvalds 已提交
1252 1253 1254
		break;
	}

1255
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
1256 1257 1258
	return count;
}

1259 1260 1261
#define sysfs_temp_type(offset) \
static SENSOR_DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, \
			  show_temp_type, store_temp_type, offset - 1);
L
Linus Torvalds 已提交
1262

1263 1264 1265
sysfs_temp_type(1);
sysfs_temp_type(2);
sysfs_temp_type(3);
L
Linus Torvalds 已提交
1266

1267 1268
static ssize_t
show_name(struct device *dev, struct device_attribute *devattr, char *buf)
1269 1270 1271 1272 1273 1274 1275 1276 1277
{
	struct w83627hf_data *data = dev_get_drvdata(dev);

	return sprintf(buf, "%s\n", data->name);
}
static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);

static int __init w83627hf_find(int sioaddr, unsigned short *addr,
				struct w83627hf_sio_data *sio_data)
L
Linus Torvalds 已提交
1278
{
1279
	int err = -ENODEV;
L
Linus Torvalds 已提交
1280 1281
	u16 val;

1282
	static __initconst char *const names[] = {
1283 1284 1285 1286 1287 1288 1289
		"W83627HF",
		"W83627THF",
		"W83697HF",
		"W83637HF",
		"W83687THF",
	};

1290
	sio_data->sioaddr = sioaddr;
1291 1292
	superio_enter(sio_data);
	val = force_id ? force_id : superio_inb(sio_data, DEVID);
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
	switch (val) {
	case W627_DEVID:
		sio_data->type = w83627hf;
		break;
	case W627THF_DEVID:
		sio_data->type = w83627thf;
		break;
	case W697_DEVID:
		sio_data->type = w83697hf;
		break;
	case W637_DEVID:
		sio_data->type = w83637hf;
		break;
	case W687THF_DEVID:
		sio_data->type = w83687thf;
		break;
1309 1310
	case 0xff:	/* No device at all */
		goto exit;
1311
	default:
1312
		pr_debug(DRVNAME ": Unsupported chip (DEVID=0x%02x)\n", val);
1313
		goto exit;
L
Linus Torvalds 已提交
1314 1315
	}

1316 1317 1318
	superio_select(sio_data, W83627HF_LD_HWM);
	val = (superio_inb(sio_data, WINB_BASE_REG) << 8) |
	       superio_inb(sio_data, WINB_BASE_REG + 1);
1319
	*addr = val & WINB_ALIGNMENT;
1320
	if (*addr == 0) {
1321
		pr_warn("Base address not set, skipping\n");
1322
		goto exit;
L
Linus Torvalds 已提交
1323 1324
	}

1325
	val = superio_inb(sio_data, WINB_ACT_REG);
1326
	if (!(val & 0x01)) {
1327
		pr_warn("Enabling HWM logical device\n");
1328
		superio_outb(sio_data, WINB_ACT_REG, val | 0x01);
1329 1330 1331
	}

	err = 0;
1332 1333
	pr_info(DRVNAME ": Found %s chip at %#x\n",
		names[sio_data->type], *addr);
1334 1335

 exit:
1336
	superio_exit(sio_data);
1337
	return err;
L
Linus Torvalds 已提交
1338 1339
}

1340 1341 1342
#define VIN_UNIT_ATTRS(_X_)	\
	&sensor_dev_attr_in##_X_##_input.dev_attr.attr,		\
	&sensor_dev_attr_in##_X_##_min.dev_attr.attr,		\
1343 1344 1345
	&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
1346 1347 1348 1349

#define FAN_UNIT_ATTRS(_X_)	\
	&sensor_dev_attr_fan##_X_##_input.dev_attr.attr,	\
	&sensor_dev_attr_fan##_X_##_min.dev_attr.attr,		\
1350 1351 1352
	&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
1353 1354 1355 1356 1357

#define TEMP_UNIT_ATTRS(_X_)	\
	&sensor_dev_attr_temp##_X_##_input.dev_attr.attr,	\
	&sensor_dev_attr_temp##_X_##_max.dev_attr.attr,		\
	&sensor_dev_attr_temp##_X_##_max_hyst.dev_attr.attr,	\
1358 1359 1360
	&sensor_dev_attr_temp##_X_##_type.dev_attr.attr,	\
	&sensor_dev_attr_temp##_X_##_alarm.dev_attr.attr,	\
	&sensor_dev_attr_temp##_X_##_beep.dev_attr.attr
1361

1362 1363 1364 1365
static struct attribute *w83627hf_attributes[] = {
	&dev_attr_in0_input.attr,
	&dev_attr_in0_min.attr,
	&dev_attr_in0_max.attr,
1366 1367
	&sensor_dev_attr_in0_alarm.dev_attr.attr,
	&sensor_dev_attr_in0_beep.dev_attr.attr,
1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
	VIN_UNIT_ATTRS(2),
	VIN_UNIT_ATTRS(3),
	VIN_UNIT_ATTRS(4),
	VIN_UNIT_ATTRS(7),
	VIN_UNIT_ATTRS(8),

	FAN_UNIT_ATTRS(1),
	FAN_UNIT_ATTRS(2),

	TEMP_UNIT_ATTRS(1),
	TEMP_UNIT_ATTRS(2),
1379 1380

	&dev_attr_alarms.attr,
1381
	&sensor_dev_attr_beep_enable.dev_attr.attr,
1382 1383
	&dev_attr_beep_mask.attr,

1384 1385
	&sensor_dev_attr_pwm1.dev_attr.attr,
	&sensor_dev_attr_pwm2.dev_attr.attr,
1386
	&dev_attr_name.attr,
1387 1388 1389 1390 1391 1392 1393 1394
	NULL
};

static const struct attribute_group w83627hf_group = {
	.attrs = w83627hf_attributes,
};

static struct attribute *w83627hf_attributes_opt[] = {
1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
	VIN_UNIT_ATTRS(1),
	VIN_UNIT_ATTRS(5),
	VIN_UNIT_ATTRS(6),

	FAN_UNIT_ATTRS(3),
	TEMP_UNIT_ATTRS(3),
	&sensor_dev_attr_pwm3.dev_attr.attr,

	&sensor_dev_attr_pwm1_freq.dev_attr.attr,
	&sensor_dev_attr_pwm2_freq.dev_attr.attr,
	&sensor_dev_attr_pwm3_freq.dev_attr.attr,
1406 1407 1408 1409 1410

	&sensor_dev_attr_pwm1_enable.dev_attr.attr,
	&sensor_dev_attr_pwm2_enable.dev_attr.attr,
	&sensor_dev_attr_pwm3_enable.dev_attr.attr,

1411 1412 1413 1414 1415 1416 1417
	NULL
};

static const struct attribute_group w83627hf_group_opt = {
	.attrs = w83627hf_attributes_opt,
};

B
Bill Pemberton 已提交
1418
static int w83627hf_probe(struct platform_device *pdev)
L
Linus Torvalds 已提交
1419
{
1420 1421
	struct device *dev = &pdev->dev;
	struct w83627hf_sio_data *sio_data = dev->platform_data;
L
Linus Torvalds 已提交
1422
	struct w83627hf_data *data;
1423
	struct resource *res;
1424
	int err, i;
L
Linus Torvalds 已提交
1425

1426 1427 1428 1429 1430 1431 1432 1433 1434
	static const char *names[] = {
		"w83627hf",
		"w83627thf",
		"w83697hf",
		"w83637hf",
		"w83687thf",
	};

	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
1435
	if (!devm_request_region(dev, res->start, WINB_REGION_SIZE, DRVNAME)) {
1436 1437 1438
		dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
			(unsigned long)res->start,
			(unsigned long)(res->start + WINB_REGION_SIZE - 1));
1439
		return -EBUSY;
L
Linus Torvalds 已提交
1440 1441
	}

1442 1443 1444 1445
	data = devm_kzalloc(dev, sizeof(struct w83627hf_data), GFP_KERNEL);
	if (!data)
		return -ENOMEM;

1446 1447 1448
	data->addr = res->start;
	data->type = sio_data->type;
	data->name = names[sio_data->type];
1449 1450
	mutex_init(&data->lock);
	mutex_init(&data->update_lock);
1451
	platform_set_drvdata(pdev, data);
L
Linus Torvalds 已提交
1452 1453

	/* Initialize the chip */
1454
	w83627hf_init_device(pdev);
L
Linus Torvalds 已提交
1455 1456

	/* A few vars need to be filled upon startup */
1457 1458 1459
	for (i = 0; i <= 2; i++)
		data->fan_min[i] = w83627hf_read_value(
					data, W83627HF_REG_FAN_MIN(i));
1460
	w83627hf_update_fan_div(data);
L
Linus Torvalds 已提交
1461

1462
	/* Register common device attributes */
1463 1464
	err = sysfs_create_group(&dev->kobj, &w83627hf_group);
	if (err)
1465
		return err;
L
Linus Torvalds 已提交
1466

1467
	/* Register chip-specific device attributes */
1468
	if (data->type == w83627hf || data->type == w83697hf)
1469 1470 1471 1472 1473 1474
		if ((err = device_create_file(dev,
				&sensor_dev_attr_in5_input.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_in5_min.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_in5_max.dev_attr))
1475 1476 1477 1478
		 || (err = device_create_file(dev,
				&sensor_dev_attr_in5_alarm.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_in5_beep.dev_attr))
1479 1480 1481 1482 1483 1484
		 || (err = device_create_file(dev,
				&sensor_dev_attr_in6_input.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_in6_min.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_in6_max.dev_attr))
1485 1486 1487 1488
		 || (err = device_create_file(dev,
				&sensor_dev_attr_in6_alarm.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_in6_beep.dev_attr))
1489 1490 1491 1492
		 || (err = device_create_file(dev,
				&sensor_dev_attr_pwm1_freq.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_pwm2_freq.dev_attr)))
1493
			goto error;
L
Linus Torvalds 已提交
1494

1495
	if (data->type != w83697hf)
1496 1497 1498 1499 1500 1501
		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,
				&sensor_dev_attr_in1_max.dev_attr))
1502 1503 1504 1505
		 || (err = device_create_file(dev,
				&sensor_dev_attr_in1_alarm.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_in1_beep.dev_attr))
1506 1507 1508 1509 1510 1511
		 || (err = device_create_file(dev,
				&sensor_dev_attr_fan3_input.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_fan3_min.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_fan3_div.dev_attr))
1512 1513 1514 1515
		 || (err = device_create_file(dev,
				&sensor_dev_attr_fan3_alarm.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_fan3_beep.dev_attr))
1516 1517 1518 1519 1520 1521
		 || (err = device_create_file(dev,
				&sensor_dev_attr_temp3_input.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_temp3_max.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_temp3_max_hyst.dev_attr))
1522 1523 1524 1525
		 || (err = device_create_file(dev,
				&sensor_dev_attr_temp3_alarm.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_temp3_beep.dev_attr))
1526 1527
		 || (err = device_create_file(dev,
				&sensor_dev_attr_temp3_type.dev_attr)))
1528
			goto error;
1529

1530
	if (data->type != w83697hf && data->vid != 0xff) {
1531 1532 1533
		/* Convert VID to voltage based on VRM */
		data->vrm = vid_which_vrm();

1534 1535
		if ((err = device_create_file(dev, &dev_attr_cpu0_vid))
		 || (err = device_create_file(dev, &dev_attr_vrm)))
1536
			goto error;
1537
	}
L
Linus Torvalds 已提交
1538

1539
	if (data->type == w83627thf || data->type == w83637hf
1540 1541 1542
	    || data->type == w83687thf) {
		err = device_create_file(dev, &sensor_dev_attr_pwm3.dev_attr);
		if (err)
1543
			goto error;
1544
	}
L
Linus Torvalds 已提交
1545

1546
	if (data->type == w83637hf || data->type == w83687thf)
1547 1548 1549 1550 1551 1552
		if ((err = device_create_file(dev,
				&sensor_dev_attr_pwm1_freq.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_pwm2_freq.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_pwm3_freq.dev_attr)))
1553
			goto error;
1554

1555 1556 1557 1558 1559
	if (data->type != w83627hf)
		if ((err = device_create_file(dev,
				&sensor_dev_attr_pwm1_enable.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_pwm2_enable.dev_attr)))
1560
			goto error;
1561 1562

	if (data->type == w83627thf || data->type == w83637hf
1563 1564 1565 1566
	    || data->type == w83687thf) {
		err = device_create_file(dev,
					 &sensor_dev_attr_pwm3_enable.dev_attr);
		if (err)
1567
			goto error;
1568
	}
1569

1570 1571 1572
	data->hwmon_dev = hwmon_device_register(dev);
	if (IS_ERR(data->hwmon_dev)) {
		err = PTR_ERR(data->hwmon_dev);
1573
		goto error;
1574
	}
L
Linus Torvalds 已提交
1575 1576 1577

	return 0;

1578
 error:
1579 1580
	sysfs_remove_group(&dev->kobj, &w83627hf_group);
	sysfs_remove_group(&dev->kobj, &w83627hf_group_opt);
L
Linus Torvalds 已提交
1581 1582 1583
	return err;
}

B
Bill Pemberton 已提交
1584
static int w83627hf_remove(struct platform_device *pdev)
L
Linus Torvalds 已提交
1585
{
1586
	struct w83627hf_data *data = platform_get_drvdata(pdev);
L
Linus Torvalds 已提交
1587

1588
	hwmon_device_unregister(data->hwmon_dev);
1589

1590 1591 1592
	sysfs_remove_group(&pdev->dev.kobj, &w83627hf_group);
	sysfs_remove_group(&pdev->dev.kobj, &w83627hf_group_opt);

L
Linus Torvalds 已提交
1593 1594 1595 1596
	return 0;
}


1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
/* Registers 0x50-0x5f are banked */
static inline void w83627hf_set_bank(struct w83627hf_data *data, u16 reg)
{
	if ((reg & 0x00f0) == 0x50) {
		outb_p(W83781D_REG_BANK, data->addr + W83781D_ADDR_REG_OFFSET);
		outb_p(reg >> 8, data->addr + W83781D_DATA_REG_OFFSET);
	}
}

/* Not strictly necessary, but play it safe for now */
static inline void w83627hf_reset_bank(struct w83627hf_data *data, u16 reg)
{
	if (reg & 0xff00) {
		outb_p(W83781D_REG_BANK, data->addr + W83781D_ADDR_REG_OFFSET);
		outb_p(0, data->addr + W83781D_DATA_REG_OFFSET);
	}
}

1615
static int w83627hf_read_value(struct w83627hf_data *data, u16 reg)
L
Linus Torvalds 已提交
1616 1617 1618
{
	int res, word_sized;

1619
	mutex_lock(&data->lock);
L
Linus Torvalds 已提交
1620 1621 1622 1623 1624
	word_sized = (((reg & 0xff00) == 0x100)
		   || ((reg & 0xff00) == 0x200))
		  && (((reg & 0x00ff) == 0x50)
		   || ((reg & 0x00ff) == 0x53)
		   || ((reg & 0x00ff) == 0x55));
1625
	w83627hf_set_bank(data, reg);
1626 1627
	outb_p(reg & 0xff, data->addr + W83781D_ADDR_REG_OFFSET);
	res = inb_p(data->addr + W83781D_DATA_REG_OFFSET);
L
Linus Torvalds 已提交
1628 1629
	if (word_sized) {
		outb_p((reg & 0xff) + 1,
1630
		       data->addr + W83781D_ADDR_REG_OFFSET);
L
Linus Torvalds 已提交
1631
		res =
1632
		    (res << 8) + inb_p(data->addr +
L
Linus Torvalds 已提交
1633 1634
				       W83781D_DATA_REG_OFFSET);
	}
1635
	w83627hf_reset_bank(data, reg);
1636
	mutex_unlock(&data->lock);
L
Linus Torvalds 已提交
1637 1638 1639
	return res;
}

B
Bill Pemberton 已提交
1640
static int w83627thf_read_gpio5(struct platform_device *pdev)
L
Linus Torvalds 已提交
1641
{
1642
	struct w83627hf_sio_data *sio_data = pdev->dev.platform_data;
L
Linus Torvalds 已提交
1643 1644
	int res = 0xff, sel;

1645 1646
	superio_enter(sio_data);
	superio_select(sio_data, W83627HF_LD_GPIO5);
L
Linus Torvalds 已提交
1647 1648

	/* Make sure these GPIO pins are enabled */
1649
	if (!(superio_inb(sio_data, W83627THF_GPIO5_EN) & (1<<3))) {
1650
		dev_dbg(&pdev->dev, "GPIO5 disabled, no VID function\n");
L
Linus Torvalds 已提交
1651 1652 1653
		goto exit;
	}

1654 1655 1656 1657
	/*
	 * Make sure the pins are configured for input
	 * There must be at least five (VRM 9), and possibly 6 (VRM 10)
	 */
1658
	sel = superio_inb(sio_data, W83627THF_GPIO5_IOSR) & 0x3f;
L
Linus Torvalds 已提交
1659
	if ((sel & 0x1f) != 0x1f) {
1660
		dev_dbg(&pdev->dev, "GPIO5 not configured for VID "
L
Linus Torvalds 已提交
1661 1662 1663 1664
			"function\n");
		goto exit;
	}

1665
	dev_info(&pdev->dev, "Reading VID from GPIO5\n");
1666
	res = superio_inb(sio_data, W83627THF_GPIO5_DR) & sel;
L
Linus Torvalds 已提交
1667 1668

exit:
1669
	superio_exit(sio_data);
L
Linus Torvalds 已提交
1670 1671 1672
	return res;
}

B
Bill Pemberton 已提交
1673
static int w83687thf_read_vid(struct platform_device *pdev)
1674
{
1675
	struct w83627hf_sio_data *sio_data = pdev->dev.platform_data;
1676 1677
	int res = 0xff;

1678 1679
	superio_enter(sio_data);
	superio_select(sio_data, W83627HF_LD_HWM);
1680 1681

	/* Make sure these GPIO pins are enabled */
1682
	if (!(superio_inb(sio_data, W83687THF_VID_EN) & (1 << 2))) {
1683
		dev_dbg(&pdev->dev, "VID disabled, no VID function\n");
1684 1685 1686 1687
		goto exit;
	}

	/* Make sure the pins are configured for input */
1688
	if (!(superio_inb(sio_data, W83687THF_VID_CFG) & (1 << 4))) {
1689
		dev_dbg(&pdev->dev, "VID configured as output, "
1690 1691 1692 1693
			"no VID function\n");
		goto exit;
	}

1694
	res = superio_inb(sio_data, W83687THF_VID_DATA) & 0x3f;
1695 1696

exit:
1697
	superio_exit(sio_data);
1698 1699 1700
	return res;
}

1701
static int w83627hf_write_value(struct w83627hf_data *data, u16 reg, u16 value)
L
Linus Torvalds 已提交
1702 1703 1704
{
	int word_sized;

1705
	mutex_lock(&data->lock);
L
Linus Torvalds 已提交
1706 1707 1708 1709
	word_sized = (((reg & 0xff00) == 0x100)
		   || ((reg & 0xff00) == 0x200))
		  && (((reg & 0x00ff) == 0x53)
		   || ((reg & 0x00ff) == 0x55));
1710
	w83627hf_set_bank(data, reg);
1711
	outb_p(reg & 0xff, data->addr + W83781D_ADDR_REG_OFFSET);
L
Linus Torvalds 已提交
1712 1713
	if (word_sized) {
		outb_p(value >> 8,
1714
		       data->addr + W83781D_DATA_REG_OFFSET);
L
Linus Torvalds 已提交
1715
		outb_p((reg & 0xff) + 1,
1716
		       data->addr + W83781D_ADDR_REG_OFFSET);
L
Linus Torvalds 已提交
1717 1718
	}
	outb_p(value & 0xff,
1719
	       data->addr + W83781D_DATA_REG_OFFSET);
1720
	w83627hf_reset_bank(data, reg);
1721
	mutex_unlock(&data->lock);
L
Linus Torvalds 已提交
1722 1723 1724
	return 0;
}

B
Bill Pemberton 已提交
1725
static void w83627hf_init_device(struct platform_device *pdev)
L
Linus Torvalds 已提交
1726
{
1727
	struct w83627hf_data *data = platform_get_drvdata(pdev);
L
Linus Torvalds 已提交
1728
	int i;
1729
	enum chips type = data->type;
L
Linus Torvalds 已提交
1730 1731 1732 1733 1734
	u8 tmp;

	/* Minimize conflicts with other winbond i2c-only clients...  */
	/* disable i2c subclients... how to disable main i2c client?? */
	/* force i2c address to relatively uncommon address */
1735 1736
	w83627hf_write_value(data, W83781D_REG_I2C_SUBADDR, 0x89);
	w83627hf_write_value(data, W83781D_REG_I2C_ADDR, force_i2c);
L
Linus Torvalds 已提交
1737 1738

	/* Read VID only once */
1739
	if (type == w83627hf || type == w83637hf) {
1740 1741
		int lo = w83627hf_read_value(data, W83781D_REG_VID_FANDIV);
		int hi = w83627hf_read_value(data, W83781D_REG_CHIPID);
L
Linus Torvalds 已提交
1742
		data->vid = (lo & 0x0f) | ((hi & 0x01) << 4);
1743
	} else if (type == w83627thf) {
1744
		data->vid = w83627thf_read_gpio5(pdev);
1745
	} else if (type == w83687thf) {
1746
		data->vid = w83687thf_read_vid(pdev);
L
Linus Torvalds 已提交
1747 1748 1749
	}

	/* Read VRM & OVT Config only once */
1750
	if (type == w83627thf || type == w83637hf || type == w83687thf) {
L
Linus Torvalds 已提交
1751
		data->vrm_ovt = 
1752
			w83627hf_read_value(data, W83627THF_REG_VRM_OVT_CFG);
L
Linus Torvalds 已提交
1753 1754
	}

1755
	tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
L
Linus Torvalds 已提交
1756 1757
	for (i = 1; i <= 3; i++) {
		if (!(tmp & BIT_SCFG1[i - 1])) {
J
Jean Delvare 已提交
1758
			data->sens[i - 1] = 4;
L
Linus Torvalds 已提交
1759 1760
		} else {
			if (w83627hf_read_value
1761
			    (data,
L
Linus Torvalds 已提交
1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772
			     W83781D_REG_SCFG2) & BIT_SCFG2[i - 1])
				data->sens[i - 1] = 1;
			else
				data->sens[i - 1] = 2;
		}
		if ((type == w83697hf) && (i == 2))
			break;
	}

	if(init) {
		/* Enable temp2 */
1773
		tmp = w83627hf_read_value(data, W83627HF_REG_TEMP2_CONFIG);
L
Linus Torvalds 已提交
1774
		if (tmp & 0x01) {
1775
			dev_warn(&pdev->dev, "Enabling temp2, readings "
L
Linus Torvalds 已提交
1776
				 "might not make sense\n");
1777
			w83627hf_write_value(data, W83627HF_REG_TEMP2_CONFIG,
L
Linus Torvalds 已提交
1778 1779 1780 1781 1782
				tmp & 0xfe);
		}

		/* Enable temp3 */
		if (type != w83697hf) {
1783
			tmp = w83627hf_read_value(data,
1784
				W83627HF_REG_TEMP3_CONFIG);
L
Linus Torvalds 已提交
1785
			if (tmp & 0x01) {
1786
				dev_warn(&pdev->dev, "Enabling temp3, "
L
Linus Torvalds 已提交
1787
					 "readings might not make sense\n");
1788
				w83627hf_write_value(data,
1789
					W83627HF_REG_TEMP3_CONFIG, tmp & 0xfe);
L
Linus Torvalds 已提交
1790 1791 1792 1793 1794
			}
		}
	}

	/* Start monitoring */
1795 1796
	w83627hf_write_value(data, W83781D_REG_CONFIG,
			    (w83627hf_read_value(data,
L
Linus Torvalds 已提交
1797 1798
						W83781D_REG_CONFIG) & 0xf7)
			    | 0x01);
1799 1800 1801 1802 1803

	/* Enable VBAT monitoring if needed */
	tmp = w83627hf_read_value(data, W83781D_REG_VBAT);
	if (!(tmp & 0x01))
		w83627hf_write_value(data, W83781D_REG_VBAT, tmp | 0x01);
L
Linus Torvalds 已提交
1804 1805
}

1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823
static void w83627hf_update_fan_div(struct w83627hf_data *data)
{
	int reg;

	reg = w83627hf_read_value(data, W83781D_REG_VID_FANDIV);
	data->fan_div[0] = (reg >> 4) & 0x03;
	data->fan_div[1] = (reg >> 6) & 0x03;
	if (data->type != w83697hf) {
		data->fan_div[2] = (w83627hf_read_value(data,
				       W83781D_REG_PIN) >> 6) & 0x03;
	}
	reg = w83627hf_read_value(data, W83781D_REG_VBAT);
	data->fan_div[0] |= (reg >> 3) & 0x04;
	data->fan_div[1] |= (reg >> 4) & 0x04;
	if (data->type != w83697hf)
		data->fan_div[2] |= (reg >> 5) & 0x04;
}

L
Linus Torvalds 已提交
1824 1825
static struct w83627hf_data *w83627hf_update_device(struct device *dev)
{
1826
	struct w83627hf_data *data = dev_get_drvdata(dev);
1827
	int i, num_temps = (data->type == w83697hf) ? 2 : 3;
1828
	int num_pwms = (data->type == w83697hf) ? 2 : 3;
L
Linus Torvalds 已提交
1829

1830
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
1831 1832 1833 1834 1835 1836

	if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
	    || !data->valid) {
		for (i = 0; i <= 8; i++) {
			/* skip missing sensors */
			if (((data->type == w83697hf) && (i == 1)) ||
1837
			    ((data->type != w83627hf && data->type != w83697hf)
Y
Yuan Mu 已提交
1838
			    && (i == 5 || i == 6)))
L
Linus Torvalds 已提交
1839 1840
				continue;
			data->in[i] =
1841
			    w83627hf_read_value(data, W83781D_REG_IN(i));
L
Linus Torvalds 已提交
1842
			data->in_min[i] =
1843
			    w83627hf_read_value(data,
L
Linus Torvalds 已提交
1844 1845
					       W83781D_REG_IN_MIN(i));
			data->in_max[i] =
1846
			    w83627hf_read_value(data,
L
Linus Torvalds 已提交
1847 1848
					       W83781D_REG_IN_MAX(i));
		}
1849 1850 1851 1852
		for (i = 0; i <= 2; i++) {
			data->fan[i] =
			    w83627hf_read_value(data, W83627HF_REG_FAN(i));
			data->fan_min[i] =
1853
			    w83627hf_read_value(data,
1854
					       W83627HF_REG_FAN_MIN(i));
L
Linus Torvalds 已提交
1855
		}
1856
		for (i = 0; i <= 2; i++) {
1857
			u8 tmp = w83627hf_read_value(data,
L
Linus Torvalds 已提交
1858 1859 1860 1861
				W836X7HF_REG_PWM(data->type, i));
 			/* bits 0-3 are reserved  in 627THF */
 			if (data->type == w83627thf)
				tmp &= 0xf0;
1862 1863 1864
			data->pwm[i] = tmp;
			if (i == 1 &&
			    (data->type == w83627hf || data->type == w83697hf))
L
Linus Torvalds 已提交
1865 1866
				break;
		}
1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880
		if (data->type == w83627hf) {
				u8 tmp = w83627hf_read_value(data,
						W83627HF_REG_PWM_FREQ);
				data->pwm_freq[0] = tmp & 0x07;
				data->pwm_freq[1] = (tmp >> 4) & 0x07;
		} else if (data->type != w83627thf) {
			for (i = 1; i <= 3; i++) {
				data->pwm_freq[i - 1] =
					w83627hf_read_value(data,
						W83637HF_REG_PWM_FREQ[i - 1]);
				if (i == 2 && (data->type == w83697hf))
					break;
			}
		}
1881 1882 1883 1884 1885 1886 1887 1888 1889
		if (data->type != w83627hf) {
			for (i = 0; i < num_pwms; i++) {
				u8 tmp = w83627hf_read_value(data,
					W83627THF_REG_PWM_ENABLE[i]);
				data->pwm_enable[i] =
					((tmp >> W83627THF_PWM_ENABLE_SHIFT[i])
					& 0x03) + 1;
			}
		}
1890 1891 1892 1893 1894 1895 1896
		for (i = 0; i < num_temps; i++) {
			data->temp[i] = w83627hf_read_value(
						data, w83627hf_reg_temp[i]);
			data->temp_max[i] = w83627hf_read_value(
						data, w83627hf_reg_temp_over[i]);
			data->temp_max_hyst[i] = w83627hf_read_value(
						data, w83627hf_reg_temp_hyst[i]);
L
Linus Torvalds 已提交
1897 1898
		}

1899 1900
		w83627hf_update_fan_div(data);

L
Linus Torvalds 已提交
1901
		data->alarms =
1902 1903 1904 1905
		    w83627hf_read_value(data, W83781D_REG_ALARM1) |
		    (w83627hf_read_value(data, W83781D_REG_ALARM2) << 8) |
		    (w83627hf_read_value(data, W83781D_REG_ALARM3) << 16);
		i = w83627hf_read_value(data, W83781D_REG_BEEP_INTS2);
1906
		data->beep_mask = (i << 8) |
1907 1908
		    w83627hf_read_value(data, W83781D_REG_BEEP_INTS1) |
		    w83627hf_read_value(data, W83781D_REG_BEEP_INTS3) << 16;
L
Linus Torvalds 已提交
1909 1910 1911 1912
		data->last_updated = jiffies;
		data->valid = 1;
	}

1913
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
1914 1915 1916 1917

	return data;
}

1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928
static int __init w83627hf_device_add(unsigned short address,
				      const struct w83627hf_sio_data *sio_data)
{
	struct resource res = {
		.start	= address + WINB_REGION_OFFSET,
		.end	= address + WINB_REGION_OFFSET + WINB_REGION_SIZE - 1,
		.name	= DRVNAME,
		.flags	= IORESOURCE_IO,
	};
	int err;

1929 1930 1931 1932
	err = acpi_check_resource_conflict(&res);
	if (err)
		goto exit;

1933 1934 1935
	pdev = platform_device_alloc(DRVNAME, address);
	if (!pdev) {
		err = -ENOMEM;
1936
		pr_err("Device allocation failed\n");
1937 1938 1939 1940 1941
		goto exit;
	}

	err = platform_device_add_resources(pdev, &res, 1);
	if (err) {
1942
		pr_err("Device resource addition failed (%d)\n", err);
1943 1944 1945
		goto exit_device_put;
	}

1946 1947 1948
	err = platform_device_add_data(pdev, sio_data,
				       sizeof(struct w83627hf_sio_data));
	if (err) {
1949
		pr_err("Platform data allocation failed\n");
1950 1951 1952 1953 1954
		goto exit_device_put;
	}

	err = platform_device_add(pdev);
	if (err) {
1955
		pr_err("Device addition failed (%d)\n", err);
1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966
		goto exit_device_put;
	}

	return 0;

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

L
Linus Torvalds 已提交
1967 1968
static int __init sensors_w83627hf_init(void)
{
1969 1970 1971 1972 1973 1974
	int err;
	unsigned short address;
	struct w83627hf_sio_data sio_data;

	if (w83627hf_find(0x2e, &address, &sio_data)
	 && w83627hf_find(0x4e, &address, &sio_data))
L
Linus Torvalds 已提交
1975 1976
		return -ENODEV;

1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991
	err = platform_driver_register(&w83627hf_driver);
	if (err)
		goto exit;

	/* Sets global pdev as a side effect */
	err = w83627hf_device_add(address, &sio_data);
	if (err)
		goto exit_driver;

	return 0;

exit_driver:
	platform_driver_unregister(&w83627hf_driver);
exit:
	return err;
L
Linus Torvalds 已提交
1992 1993 1994 1995
}

static void __exit sensors_w83627hf_exit(void)
{
1996 1997
	platform_device_unregister(pdev);
	platform_driver_unregister(&w83627hf_driver);
L
Linus Torvalds 已提交
1998 1999 2000 2001 2002 2003 2004 2005 2006 2007
}

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

module_init(sensors_w83627hf_init);
module_exit(sensors_w83627hf_exit);