w83627hf.c 49.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  Jean Delvare <khali@linux-fr.org>
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

    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
    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)
32
    w83687thf	7	3	3	3	0x90	0x5ca3	no	yes(LPC)
L
Linus Torvalds 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45
    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.
*/

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

56
static struct platform_device *pdev;
57 58 59 60

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

L
Linus Torvalds 已提交
61 62 63 64 65 66 67 68 69
static u16 force_addr;
module_param(force_addr, ushort, 0);
MODULE_PARM_DESC(force_addr,
		 "Initialize the base address of the sensors");
static u8 force_i2c = 0x1f;
module_param(force_i2c, byte, 0);
MODULE_PARM_DESC(force_i2c,
		 "Initialize the i2c address of the sensors");

70 71 72 73
static int reset;
module_param(reset, bool, 0);
MODULE_PARM_DESC(reset, "Set to one to reset chip on load");

L
Linus Torvalds 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
static int init = 1;
module_param(init, bool, 0);
MODULE_PARM_DESC(init, "Set to zero to bypass chip initialization");

/* modified from kernel/include/traps.c */
static int REG;		/* The register to read/write */
#define	DEV	0x07	/* Register: Logical device select */
static int VAL;		/* The value to read/write */

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

#define	DEVID	0x20	/* Register: Device ID */

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

106 107 108 109
#define W83687THF_VID_EN	0x29 /* w83687thf only */
#define W83687THF_VID_CFG	0xF0 /* w83687thf only */
#define W83687THF_VID_DATA	0xF1 /* w83687thf only */

L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
static inline void
superio_outb(int reg, int val)
{
	outb(reg, REG);
	outb(val, VAL);
}

static inline int
superio_inb(int reg)
{
	outb(reg, REG);
	return inb(VAL);
}

static inline void
superio_select(int ld)
{
	outb(DEV, REG);
	outb(ld, VAL);
}

static inline void
superio_enter(void)
{
	outb(0x87, REG);
	outb(0x87, REG);
}

static inline void
superio_exit(void)
{
	outb(0xAA, REG);
}

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

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

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

160 161 162
/* 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 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190

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

#define W83781D_REG_FAN_MIN(nr) (0x3a + (nr))
#define W83781D_REG_FAN(nr) (0x27 + (nr))

#define W83781D_REG_TEMP2_CONFIG 0x152
#define W83781D_REG_TEMP3_CONFIG 0x252
#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_BANK 0x4E

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

#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

212 213 214
#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 已提交
215

216
#define W83627THF_REG_VRM_OVT_CFG 	0x18	/* 637HF/687THF too */
L
Linus Torvalds 已提交
217 218 219 220 221

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) ? \
222
				    regpwm_627hf[nr] : regpwm[nr])
L
Linus Torvalds 已提交
223

224 225 226 227 228 229 230 231 232 233 234 235
#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 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
#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

/* 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. */
#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)

/* TEMP: 0.001C/bit (-128C to +127C)
   REG: 1C/bit, two's complement */
267
static u8 TEMP_TO_REG(long temp)
L
Linus Torvalds 已提交
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
{
        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))

283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
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;
	/* Only 5 dividers (1 2 4 8 16)
	   Search for the nearest available frequency */
	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++;
	return (clock / (reg << 8));
}
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 */
		return (24000000UL / (val << 8));
	if (val < 6)		/* The lowest we can do */
		return 0xFF;
	else			/* Use 180 kHz clock */
		return (0x80 | (180000UL / (val << 8)));
}

L
Linus Torvalds 已提交
326 327 328 329 330 331 332 333 334 335 336
#define BEEP_MASK_FROM_REG(val)		 (val)
#define BEEP_MASK_TO_REG(val)		((val) & 0xffffff)
#define BEEP_ENABLE_TO_REG(val)		((val)?1:0)
#define BEEP_ENABLE_FROM_REG(val)	((val)?1:0)

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

static inline u8 DIV_TO_REG(long val)
{
	int i;
	val = SENSORS_LIMIT(val, 1, 128) >> 1;
337
	for (i = 0; i < 7; i++) {
L
Linus Torvalds 已提交
338 339 340 341 342 343 344
		if (val == 0)
			break;
		val >>= 1;
	}
	return ((u8) i);
}

345 346
/* For each registered chip, we need to keep some data in memory.
   The structure is dynamically allocated. */
L
Linus Torvalds 已提交
347
struct w83627hf_data {
348 349
	unsigned short addr;
	const char *name;
350
	struct device *hwmon_dev;
351
	struct mutex lock;
L
Linus Torvalds 已提交
352 353
	enum chips type;

354
	struct mutex update_lock;
L
Linus Torvalds 已提交
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
	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 */
	u8 temp;
	u8 temp_max;		/* Register value */
	u8 temp_max_hyst;	/* Register value */
	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[3];		/* Register value */
375
	u8 pwm_freq[3];		/* Register value */
J
Jean Delvare 已提交
376 377
	u16 sens[3];		/* 1 = pentium diode; 2 = 3904 diode;
				   4 = thermistor */
L
Linus Torvalds 已提交
378
	u8 vrm;
379
	u8 vrm_ovt;		/* Register value, 627THF/637HF/687THF only */
L
Linus Torvalds 已提交
380 381
};

382 383 384
struct w83627hf_sio_data {
	enum chips type;
};
L
Linus Torvalds 已提交
385 386


387
static int w83627hf_probe(struct platform_device *pdev);
388
static int __devexit w83627hf_remove(struct platform_device *pdev);
389 390 391

static int w83627hf_read_value(struct w83627hf_data *data, u16 reg);
static int w83627hf_write_value(struct w83627hf_data *data, u16 reg, u16 value);
L
Linus Torvalds 已提交
392
static struct w83627hf_data *w83627hf_update_device(struct device *dev);
393
static void w83627hf_init_device(struct platform_device *pdev);
L
Linus Torvalds 已提交
394

395
static struct platform_driver w83627hf_driver = {
396
	.driver = {
J
Jean Delvare 已提交
397
		.owner	= THIS_MODULE,
398
		.name	= DRVNAME,
399
	},
400 401
	.probe		= w83627hf_probe,
	.remove		= __devexit_p(w83627hf_remove),
L
Linus Torvalds 已提交
402 403
};

404 405 406 407 408 409
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 已提交
410
}
411 412 413 414 415 416 417 418 419 420 421 422 423
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 已提交
424
}
425 426 427 428 429 430 431
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);
	long val = simple_strtol(buf, NULL, 10);
L
Linus Torvalds 已提交
432

433 434 435 436 437 438 439 440 441 442 443 444 445
	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);
	long val = simple_strtol(buf, NULL, 10);
L
Linus Torvalds 已提交
446

447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
	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 已提交
469 470 471 472 473 474 475

/* 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) &&
476 477
		(w83627thf == data->type || w83637hf == data->type
		 || w83687thf == data->type))
L
Linus Torvalds 已提交
478 479 480 481 482 483 484 485 486 487

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

488
static ssize_t show_regs_in_0(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
489 490 491 492 493
{
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return show_in_0(data, buf, data->in[0]);
}

494
static ssize_t show_regs_in_min0(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
495 496 497 498 499
{
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return show_in_0(data, buf, data->in_min[0]);
}

500
static ssize_t show_regs_in_max0(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
501 502 503 504 505
{
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return show_in_0(data, buf, data->in_max[0]);
}

506
static ssize_t store_regs_in_min0(struct device *dev, struct device_attribute *attr,
L
Linus Torvalds 已提交
507 508
	const char *buf, size_t count)
{
509
	struct w83627hf_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
510 511 512 513
	u32 val;

	val = simple_strtoul(buf, NULL, 10);

514
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
515 516
	
	if ((data->vrm_ovt & 0x01) &&
517 518
		(w83627thf == data->type || w83637hf == data->type
		 || w83687thf == data->type))
L
Linus Torvalds 已提交
519 520

		/* use VRM9 calculation */
521 522 523
		data->in_min[0] =
			SENSORS_LIMIT(((val * 100) - 70000 + 244) / 488, 0,
					255);
L
Linus Torvalds 已提交
524 525 526 527
	else
		/* use VRM8 (standard) calculation */
		data->in_min[0] = IN_TO_REG(val);

528
	w83627hf_write_value(data, W83781D_REG_IN_MIN(0), data->in_min[0]);
529
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
530 531 532
	return count;
}

533
static ssize_t store_regs_in_max0(struct device *dev, struct device_attribute *attr,
L
Linus Torvalds 已提交
534 535
	const char *buf, size_t count)
{
536
	struct w83627hf_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
537 538 539 540
	u32 val;

	val = simple_strtoul(buf, NULL, 10);

541
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
542 543

	if ((data->vrm_ovt & 0x01) &&
544 545
		(w83627thf == data->type || w83637hf == data->type
		 || w83687thf == data->type))
L
Linus Torvalds 已提交
546 547
		
		/* use VRM9 calculation */
548 549 550
		data->in_max[0] =
			SENSORS_LIMIT(((val * 100) - 70000 + 244) / 488, 0,
					255);
L
Linus Torvalds 已提交
551 552 553 554
	else
		/* use VRM8 (standard) calculation */
		data->in_max[0] = IN_TO_REG(val);

555
	w83627hf_write_value(data, W83781D_REG_IN_MAX(0), data->in_max[0]);
556
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
557 558 559 560 561 562 563 564 565
	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);

566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
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 已提交
581 582
}
static ssize_t
583 584
store_fan_min(struct device *dev, struct device_attribute *devattr,
	      const char *buf, size_t count)
L
Linus Torvalds 已提交
585
{
586
	int nr = to_sensor_dev_attr(devattr)->index;
587
	struct w83627hf_data *data = dev_get_drvdata(dev);
588
	u32 val = simple_strtoul(buf, NULL, 10);
L
Linus Torvalds 已提交
589

590
	mutex_lock(&data->update_lock);
591 592 593
	data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
	w83627hf_write_value(data, W83781D_REG_FAN_MIN(nr+1),
			     data->fan_min[nr]);
L
Linus Torvalds 已提交
594

595
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
596 597
	return count;
}
598 599 600 601 602
#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 已提交
603

604 605 606
sysfs_fan_decl(1);
sysfs_fan_decl(2);
sysfs_fan_decl(3);
L
Linus Torvalds 已提交
607

608 609 610 611 612 613 614 615 616 617 618
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);
	if (nr >= 2) {	/* TEMP2 and TEMP3 */
		return sprintf(buf, "%ld\n",
			(long)LM75_TEMP_FROM_REG(data->temp_add[nr-2]));
	} else {	/* TEMP1 */
		return sprintf(buf, "%ld\n", (long)TEMP_FROM_REG(data->temp));
	}
L
Linus Torvalds 已提交
619 620
}

621 622 623 624 625 626 627 628 629 630 631 632 633
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);
	if (nr >= 2) {	/* TEMP2 and TEMP3 */
		return sprintf(buf, "%ld\n",
			(long)LM75_TEMP_FROM_REG(data->temp_max_add[nr-2]));
	} else {	/* TEMP1 */
		return sprintf(buf, "%ld\n",
			(long)TEMP_FROM_REG(data->temp_max));
	}
L
Linus Torvalds 已提交
634 635
}

636 637 638 639 640 641 642 643 644 645 646 647 648 649
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);
	if (nr >= 2) {	/* TEMP2 and TEMP3 */
		return sprintf(buf, "%ld\n",
			(long)LM75_TEMP_FROM_REG(data->temp_max_hyst_add[nr-2]));
	} else {	/* TEMP1 */
		return sprintf(buf, "%ld\n",
			(long)TEMP_FROM_REG(data->temp_max_hyst));
	}
}
L
Linus Torvalds 已提交
650

651 652 653 654 655 656 657
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);
	long val = simple_strtol(buf, NULL, 10);
L
Linus Torvalds 已提交
658

659
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
660

661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
	if (nr >= 2) {	/* TEMP2 and TEMP3 */
		data->temp_max_add[nr-2] = LM75_TEMP_TO_REG(val);
		w83627hf_write_value(data, W83781D_REG_TEMP_OVER(nr),
				data->temp_max_add[nr-2]);
	} else {	/* TEMP1 */
		data->temp_max = TEMP_TO_REG(val);
		w83627hf_write_value(data, W83781D_REG_TEMP_OVER(nr),
			data->temp_max);
	}
	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);
	long val = simple_strtol(buf, NULL, 10);

	mutex_lock(&data->update_lock);

	if (nr >= 2) {	/* TEMP2 and TEMP3 */
		data->temp_max_hyst_add[nr-2] = LM75_TEMP_TO_REG(val);
		w83627hf_write_value(data, W83781D_REG_TEMP_HYST(nr),
				data->temp_max_hyst_add[nr-2]);
	} else {	/* TEMP1 */
		data->temp_max_hyst = TEMP_TO_REG(val);
		w83627hf_write_value(data, W83781D_REG_TEMP_HYST(nr),
			data->temp_max_hyst);
	}
	mutex_unlock(&data->update_lock);
	return count;
}

#define sysfs_temp_decl(offset) \
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);

sysfs_temp_decl(1);
sysfs_temp_decl(2);
sysfs_temp_decl(3);
L
Linus Torvalds 已提交
708 709

static ssize_t
710
show_vid_reg(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
711 712 713 714 715 716 717
{
	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
718
show_vrm_reg(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
719
{
720
	struct w83627hf_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
721 722 723
	return sprintf(buf, "%ld\n", (long) data->vrm);
}
static ssize_t
724
store_vrm_reg(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
L
Linus Torvalds 已提交
725
{
726
	struct w83627hf_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
727 728 729 730 731 732 733 734 735 736
	u32 val;

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

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

static ssize_t
737
show_alarms_reg(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
738 739 740 741 742 743 744
{
	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);

#define show_beep_reg(REG, reg) \
745
static ssize_t show_beep_##reg (struct device *dev, struct device_attribute *attr, char *buf) \
L
Linus Torvalds 已提交
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
{ \
	struct w83627hf_data *data = w83627hf_update_device(dev); \
	return sprintf(buf,"%ld\n", \
		      (long)BEEP_##REG##_FROM_REG(data->beep_##reg)); \
}
show_beep_reg(ENABLE, enable)
show_beep_reg(MASK, mask)

#define BEEP_ENABLE			0	/* Store beep_enable */
#define BEEP_MASK			1	/* Store beep_mask */

static ssize_t
store_beep_reg(struct device *dev, const char *buf, size_t count,
	       int update_mask)
{
761
	struct w83627hf_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
762 763 764 765
	u32 val, val2;

	val = simple_strtoul(buf, NULL, 10);

766
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
767 768 769

	if (update_mask == BEEP_MASK) {	/* We are storing beep_mask */
		data->beep_mask = BEEP_MASK_TO_REG(val);
770
		w83627hf_write_value(data, W83781D_REG_BEEP_INTS1,
L
Linus Torvalds 已提交
771
				    data->beep_mask & 0xff);
772
		w83627hf_write_value(data, W83781D_REG_BEEP_INTS3,
L
Linus Torvalds 已提交
773 774 775 776
				    ((data->beep_mask) >> 16) & 0xff);
		val2 = (data->beep_mask >> 8) & 0x7f;
	} else {		/* We are storing beep_enable */
		val2 =
777
		    w83627hf_read_value(data, W83781D_REG_BEEP_INTS2) & 0x7f;
L
Linus Torvalds 已提交
778 779 780
		data->beep_enable = BEEP_ENABLE_TO_REG(val);
	}

781
	w83627hf_write_value(data, W83781D_REG_BEEP_INTS2,
L
Linus Torvalds 已提交
782 783
			    val2 | data->beep_enable << 7);

784
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
785 786 787 788
	return count;
}

#define sysfs_beep(REG, reg) \
789
static ssize_t show_regs_beep_##reg (struct device *dev, struct device_attribute *attr, char *buf) \
L
Linus Torvalds 已提交
790
{ \
791
	return show_beep_##reg(dev, attr, buf); \
L
Linus Torvalds 已提交
792 793
} \
static ssize_t \
794
store_regs_beep_##reg (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
L
Linus Torvalds 已提交
795 796 797 798 799 800 801 802 803 804
{ \
	return store_beep_reg(dev, buf, count, BEEP_##REG); \
} \
static DEVICE_ATTR(beep_##reg, S_IRUGO | S_IWUSR, \
		  show_regs_beep_##reg, store_regs_beep_##reg);

sysfs_beep(ENABLE, enable);
sysfs_beep(MASK, mask);

static ssize_t
805
show_fan_div(struct device *dev, struct device_attribute *devattr, char *buf)
L
Linus Torvalds 已提交
806
{
807
	int nr = to_sensor_dev_attr(devattr)->index;
L
Linus Torvalds 已提交
808 809
	struct w83627hf_data *data = w83627hf_update_device(dev);
	return sprintf(buf, "%ld\n",
810
		       (long) DIV_FROM_REG(data->fan_div[nr]));
L
Linus Torvalds 已提交
811 812 813
}
/* 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 已提交
814
   least surprise; the user doesn't expect the fan minimum to change just
L
Linus Torvalds 已提交
815 816
   because the divisor changed. */
static ssize_t
817 818
store_fan_div(struct device *dev, struct device_attribute *devattr,
	      const char *buf, size_t count)
L
Linus Torvalds 已提交
819
{
820
	int nr = to_sensor_dev_attr(devattr)->index;
821
	struct w83627hf_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
822 823 824 825
	unsigned long min;
	u8 reg;
	unsigned long val = simple_strtoul(buf, NULL, 10);

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

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

834
	reg = (w83627hf_read_value(data, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV)
L
Linus Torvalds 已提交
835 836
	       & (nr==0 ? 0xcf : 0x3f))
	    | ((data->fan_div[nr] & 0x03) << (nr==0 ? 4 : 6));
837
	w83627hf_write_value(data, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV, reg);
L
Linus Torvalds 已提交
838

839
	reg = (w83627hf_read_value(data, W83781D_REG_VBAT)
L
Linus Torvalds 已提交
840 841
	       & ~(1 << (5 + nr)))
	    | ((data->fan_div[nr] & 0x04) << (3 + nr));
842
	w83627hf_write_value(data, W83781D_REG_VBAT, reg);
L
Linus Torvalds 已提交
843 844 845

	/* Restore fan_min */
	data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
846
	w83627hf_write_value(data, W83781D_REG_FAN_MIN(nr+1), data->fan_min[nr]);
L
Linus Torvalds 已提交
847

848
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
849 850 851
	return count;
}

852 853 854 855 856 857
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 已提交
858 859

static ssize_t
860
show_pwm(struct device *dev, struct device_attribute *devattr, char *buf)
L
Linus Torvalds 已提交
861
{
862
	int nr = to_sensor_dev_attr(devattr)->index;
L
Linus Torvalds 已提交
863
	struct w83627hf_data *data = w83627hf_update_device(dev);
864
	return sprintf(buf, "%ld\n", (long) data->pwm[nr]);
L
Linus Torvalds 已提交
865 866 867
}

static ssize_t
868 869
store_pwm(struct device *dev, struct device_attribute *devattr,
	  const char *buf, size_t count)
L
Linus Torvalds 已提交
870
{
871
	int nr = to_sensor_dev_attr(devattr)->index;
872
	struct w83627hf_data *data = dev_get_drvdata(dev);
873
	u32 val = simple_strtoul(buf, NULL, 10);
L
Linus Torvalds 已提交
874

875
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
876 877 878

	if (data->type == w83627thf) {
		/* bits 0-3 are reserved  in 627THF */
879
		data->pwm[nr] = PWM_TO_REG(val) & 0xf0;
880
		w83627hf_write_value(data,
L
Linus Torvalds 已提交
881
				     W836X7HF_REG_PWM(data->type, nr),
882
				     data->pwm[nr] |
883
				     (w83627hf_read_value(data,
L
Linus Torvalds 已提交
884 885
				     W836X7HF_REG_PWM(data->type, nr)) & 0x0f));
	} else {
886
		data->pwm[nr] = PWM_TO_REG(val);
887
		w83627hf_write_value(data,
L
Linus Torvalds 已提交
888
				     W836X7HF_REG_PWM(data->type, nr),
889
				     data->pwm[nr]);
L
Linus Torvalds 已提交
890 891
	}

892
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
893 894 895
	return count;
}

896 897 898
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 已提交
899

900
static ssize_t
901
show_pwm_freq(struct device *dev, struct device_attribute *devattr, char *buf)
902
{
903
	int nr = to_sensor_dev_attr(devattr)->index;
904 905 906
	struct w83627hf_data *data = w83627hf_update_device(dev);
	if (data->type == w83627hf)
		return sprintf(buf, "%ld\n",
907
			pwm_freq_from_reg_627hf(data->pwm_freq[nr]));
908 909
	else
		return sprintf(buf, "%ld\n",
910
			pwm_freq_from_reg(data->pwm_freq[nr]));
911 912 913
}

static ssize_t
914 915
store_pwm_freq(struct device *dev, struct device_attribute *devattr,
	       const char *buf, size_t count)
916
{
917
	int nr = to_sensor_dev_attr(devattr)->index;
918 919 920 921 922 923 924 925 926
	struct w83627hf_data *data = dev_get_drvdata(dev);
	static const u8 mask[]={0xF8, 0x8F};
	u32 val;

	val = simple_strtoul(buf, NULL, 10);

	mutex_lock(&data->update_lock);

	if (data->type == w83627hf) {
927
		data->pwm_freq[nr] = pwm_freq_to_reg_627hf(val);
928
		w83627hf_write_value(data, W83627HF_REG_PWM_FREQ,
929
				(data->pwm_freq[nr] << (nr*4)) |
930
				(w83627hf_read_value(data,
931
				W83627HF_REG_PWM_FREQ) & mask[nr]));
932
	} else {
933 934 935
		data->pwm_freq[nr] = pwm_freq_to_reg(val);
		w83627hf_write_value(data, W83637HF_REG_PWM_FREQ[nr],
				data->pwm_freq[nr]);
936 937 938 939 940 941
	}

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

942 943 944 945 946 947
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);
948

L
Linus Torvalds 已提交
949
static ssize_t
950 951
show_temp_type(struct device *dev, struct device_attribute *devattr,
	       char *buf)
L
Linus Torvalds 已提交
952
{
953
	int nr = to_sensor_dev_attr(devattr)->index;
L
Linus Torvalds 已提交
954
	struct w83627hf_data *data = w83627hf_update_device(dev);
955
	return sprintf(buf, "%ld\n", (long) data->sens[nr]);
L
Linus Torvalds 已提交
956 957 958
}

static ssize_t
959 960
store_temp_type(struct device *dev, struct device_attribute *devattr,
		const char *buf, size_t count)
L
Linus Torvalds 已提交
961
{
962
	int nr = to_sensor_dev_attr(devattr)->index;
963
	struct w83627hf_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
964 965 966 967
	u32 val, tmp;

	val = simple_strtoul(buf, NULL, 10);

968
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
969 970 971

	switch (val) {
	case 1:		/* PII/Celeron diode */
972 973
		tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
		w83627hf_write_value(data, W83781D_REG_SCFG1,
974
				    tmp | BIT_SCFG1[nr]);
975 976
		tmp = w83627hf_read_value(data, W83781D_REG_SCFG2);
		w83627hf_write_value(data, W83781D_REG_SCFG2,
977 978
				    tmp | BIT_SCFG2[nr]);
		data->sens[nr] = val;
L
Linus Torvalds 已提交
979 980
		break;
	case 2:		/* 3904 */
981 982
		tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
		w83627hf_write_value(data, W83781D_REG_SCFG1,
983
				    tmp | BIT_SCFG1[nr]);
984 985
		tmp = w83627hf_read_value(data, W83781D_REG_SCFG2);
		w83627hf_write_value(data, W83781D_REG_SCFG2,
986 987
				    tmp & ~BIT_SCFG2[nr]);
		data->sens[nr] = val;
L
Linus Torvalds 已提交
988
		break;
J
Jean Delvare 已提交
989 990 991 992 993
	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 */
994 995
		tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
		w83627hf_write_value(data, W83781D_REG_SCFG1,
996 997
				    tmp & ~BIT_SCFG1[nr]);
		data->sens[nr] = val;
L
Linus Torvalds 已提交
998 999
		break;
	default:
1000
		dev_err(dev,
J
Jean Delvare 已提交
1001 1002
		       "Invalid sensor type %ld; must be 1, 2, or 4\n",
		       (long) val);
L
Linus Torvalds 已提交
1003 1004 1005
		break;
	}

1006
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
1007 1008 1009
	return count;
}

1010 1011 1012
#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 已提交
1013

1014 1015 1016
sysfs_temp_type(1);
sysfs_temp_type(2);
sysfs_temp_type(3);
L
Linus Torvalds 已提交
1017

1018 1019
static ssize_t
show_name(struct device *dev, struct device_attribute *devattr, char *buf)
1020 1021 1022 1023 1024 1025 1026 1027 1028
{
	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 已提交
1029
{
1030
	int err = -ENODEV;
L
Linus Torvalds 已提交
1031 1032
	u16 val;

1033 1034 1035 1036 1037 1038 1039 1040
	static const __initdata char *names[] = {
		"W83627HF",
		"W83627THF",
		"W83697HF",
		"W83637HF",
		"W83687THF",
	};

L
Linus Torvalds 已提交
1041 1042 1043 1044 1045
	REG = sioaddr;
	VAL = sioaddr + 1;

	superio_enter();
	val= superio_inb(DEVID);
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
	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;
1062 1063
	case 0xff:	/* No device at all */
		goto exit;
1064
	default:
1065
		pr_debug(DRVNAME ": Unsupported chip (DEVID=0x%02x)\n", val);
1066
		goto exit;
L
Linus Torvalds 已提交
1067 1068 1069
	}

	superio_select(W83627HF_LD_HWM);
1070 1071 1072 1073 1074 1075 1076
	force_addr &= WINB_ALIGNMENT;
	if (force_addr) {
		printk(KERN_WARNING DRVNAME ": Forcing address 0x%x\n",
		       force_addr);
		superio_outb(WINB_BASE_REG, force_addr >> 8);
		superio_outb(WINB_BASE_REG + 1, force_addr & 0xff);
	}
L
Linus Torvalds 已提交
1077 1078
	val = (superio_inb(WINB_BASE_REG) << 8) |
	       superio_inb(WINB_BASE_REG + 1);
1079
	*addr = val & WINB_ALIGNMENT;
1080 1081 1082 1083
	if (*addr == 0) {
		printk(KERN_WARNING DRVNAME ": Base address not set, "
		       "skipping\n");
		goto exit;
L
Linus Torvalds 已提交
1084 1085
	}

1086 1087 1088 1089 1090 1091 1092
	val = superio_inb(WINB_ACT_REG);
	if (!(val & 0x01)) {
		printk(KERN_WARNING DRVNAME ": Enabling HWM logical device\n");
		superio_outb(WINB_ACT_REG, val | 0x01);
	}

	err = 0;
1093 1094
	pr_info(DRVNAME ": Found %s chip at %#x\n",
		names[sio_data->type], *addr);
1095 1096

 exit:
L
Linus Torvalds 已提交
1097
	superio_exit();
1098
	return err;
L
Linus Torvalds 已提交
1099 1100
}

1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
#define VIN_UNIT_ATTRS(_X_)	\
	&sensor_dev_attr_in##_X_##_input.dev_attr.attr,		\
	&sensor_dev_attr_in##_X_##_min.dev_attr.attr,		\
	&sensor_dev_attr_in##_X_##_max.dev_attr.attr

#define FAN_UNIT_ATTRS(_X_)	\
	&sensor_dev_attr_fan##_X_##_input.dev_attr.attr,	\
	&sensor_dev_attr_fan##_X_##_min.dev_attr.attr,		\
	&sensor_dev_attr_fan##_X_##_div.dev_attr.attr

#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,	\
	&sensor_dev_attr_temp##_X_##_type.dev_attr.attr

1117 1118 1119 1120
static struct attribute *w83627hf_attributes[] = {
	&dev_attr_in0_input.attr,
	&dev_attr_in0_min.attr,
	&dev_attr_in0_max.attr,
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
	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),
1132 1133 1134 1135 1136

	&dev_attr_alarms.attr,
	&dev_attr_beep_enable.attr,
	&dev_attr_beep_mask.attr,

1137 1138
	&sensor_dev_attr_pwm1.dev_attr.attr,
	&sensor_dev_attr_pwm2.dev_attr.attr,
1139
	&dev_attr_name.attr,
1140 1141 1142 1143 1144 1145 1146 1147
	NULL
};

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

static struct attribute *w83627hf_attributes_opt[] = {
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
	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,
1159 1160 1161 1162 1163 1164 1165
	NULL
};

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

1166
static int __devinit w83627hf_probe(struct platform_device *pdev)
L
Linus Torvalds 已提交
1167
{
1168 1169
	struct device *dev = &pdev->dev;
	struct w83627hf_sio_data *sio_data = dev->platform_data;
L
Linus Torvalds 已提交
1170
	struct w83627hf_data *data;
1171 1172
	struct resource *res;
	int err;
L
Linus Torvalds 已提交
1173

1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
	static const char *names[] = {
		"w83627hf",
		"w83627thf",
		"w83697hf",
		"w83637hf",
		"w83687thf",
	};

	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
	if (!request_region(res->start, WINB_REGION_SIZE, DRVNAME)) {
		dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
			(unsigned long)res->start,
			(unsigned long)(res->start + WINB_REGION_SIZE - 1));
L
Linus Torvalds 已提交
1187 1188 1189 1190
		err = -EBUSY;
		goto ERROR0;
	}

D
Deepak Saxena 已提交
1191
	if (!(data = kzalloc(sizeof(struct w83627hf_data), GFP_KERNEL))) {
L
Linus Torvalds 已提交
1192 1193 1194
		err = -ENOMEM;
		goto ERROR1;
	}
1195 1196 1197
	data->addr = res->start;
	data->type = sio_data->type;
	data->name = names[sio_data->type];
1198 1199
	mutex_init(&data->lock);
	mutex_init(&data->update_lock);
1200
	platform_set_drvdata(pdev, data);
L
Linus Torvalds 已提交
1201 1202

	/* Initialize the chip */
1203
	w83627hf_init_device(pdev);
L
Linus Torvalds 已提交
1204 1205

	/* A few vars need to be filled upon startup */
1206 1207 1208
	data->fan_min[0] = w83627hf_read_value(data, W83781D_REG_FAN_MIN(1));
	data->fan_min[1] = w83627hf_read_value(data, W83781D_REG_FAN_MIN(2));
	data->fan_min[2] = w83627hf_read_value(data, W83781D_REG_FAN_MIN(3));
L
Linus Torvalds 已提交
1209

1210
	/* Register common device attributes */
1211
	if ((err = sysfs_create_group(&dev->kobj, &w83627hf_group)))
1212
		goto ERROR3;
L
Linus Torvalds 已提交
1213

1214
	/* Register chip-specific device attributes */
1215
	if (data->type == w83627hf || data->type == w83697hf)
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
		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))
		 || (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))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_pwm1_freq.dev_attr))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_pwm2_freq.dev_attr)))
1232
			goto ERROR4;
L
Linus Torvalds 已提交
1233

1234
	if (data->type != w83697hf)
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254
		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))
		 || (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))
		 || (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))
		 || (err = device_create_file(dev,
				&sensor_dev_attr_temp3_type.dev_attr)))
1255 1256
			goto ERROR4;

1257
	if (data->type != w83697hf && data->vid != 0xff) {
1258 1259 1260
		/* Convert VID to voltage based on VRM */
		data->vrm = vid_which_vrm();

1261 1262
		if ((err = device_create_file(dev, &dev_attr_cpu0_vid))
		 || (err = device_create_file(dev, &dev_attr_vrm)))
1263
			goto ERROR4;
1264
	}
L
Linus Torvalds 已提交
1265

1266 1267
	if (data->type == w83627thf || data->type == w83637hf
	 || data->type == w83687thf)
1268 1269
		if ((err = device_create_file(dev,
				&sensor_dev_attr_pwm3.dev_attr)))
1270
			goto ERROR4;
L
Linus Torvalds 已提交
1271

1272
	if (data->type == w83637hf || data->type == w83687thf)
1273 1274 1275 1276 1277 1278
		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)))
1279 1280
			goto ERROR4;

1281 1282 1283
	data->hwmon_dev = hwmon_device_register(dev);
	if (IS_ERR(data->hwmon_dev)) {
		err = PTR_ERR(data->hwmon_dev);
1284 1285
		goto ERROR4;
	}
L
Linus Torvalds 已提交
1286 1287 1288

	return 0;

1289
      ERROR4:
1290 1291
	sysfs_remove_group(&dev->kobj, &w83627hf_group);
	sysfs_remove_group(&dev->kobj, &w83627hf_group_opt);
1292
      ERROR3:
1293
	platform_set_drvdata(pdev, NULL);
L
Linus Torvalds 已提交
1294 1295
	kfree(data);
      ERROR1:
1296
	release_region(res->start, WINB_REGION_SIZE);
L
Linus Torvalds 已提交
1297 1298 1299 1300
      ERROR0:
	return err;
}

1301
static int __devexit w83627hf_remove(struct platform_device *pdev)
L
Linus Torvalds 已提交
1302
{
1303 1304
	struct w83627hf_data *data = platform_get_drvdata(pdev);
	struct resource *res;
L
Linus Torvalds 已提交
1305

1306
	hwmon_device_unregister(data->hwmon_dev);
1307

1308 1309
	sysfs_remove_group(&pdev->dev.kobj, &w83627hf_group);
	sysfs_remove_group(&pdev->dev.kobj, &w83627hf_group_opt);
1310
	platform_set_drvdata(pdev, NULL);
1311
	kfree(data);
L
Linus Torvalds 已提交
1312

1313 1314 1315
	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
	release_region(res->start, WINB_REGION_SIZE);

L
Linus Torvalds 已提交
1316 1317 1318 1319
	return 0;
}


1320
static int w83627hf_read_value(struct w83627hf_data *data, u16 reg)
L
Linus Torvalds 已提交
1321 1322 1323
{
	int res, word_sized;

1324
	mutex_lock(&data->lock);
L
Linus Torvalds 已提交
1325 1326 1327 1328 1329 1330 1331
	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,
1332
		       data->addr + W83781D_ADDR_REG_OFFSET);
L
Linus Torvalds 已提交
1333
		outb_p(reg >> 8,
1334
		       data->addr + W83781D_DATA_REG_OFFSET);
L
Linus Torvalds 已提交
1335
	}
1336 1337
	outb_p(reg & 0xff, data->addr + W83781D_ADDR_REG_OFFSET);
	res = inb_p(data->addr + W83781D_DATA_REG_OFFSET);
L
Linus Torvalds 已提交
1338 1339
	if (word_sized) {
		outb_p((reg & 0xff) + 1,
1340
		       data->addr + W83781D_ADDR_REG_OFFSET);
L
Linus Torvalds 已提交
1341
		res =
1342
		    (res << 8) + inb_p(data->addr +
L
Linus Torvalds 已提交
1343 1344 1345 1346
				       W83781D_DATA_REG_OFFSET);
	}
	if (reg & 0xff00) {
		outb_p(W83781D_REG_BANK,
1347 1348
		       data->addr + W83781D_ADDR_REG_OFFSET);
		outb_p(0, data->addr + W83781D_DATA_REG_OFFSET);
L
Linus Torvalds 已提交
1349
	}
1350
	mutex_unlock(&data->lock);
L
Linus Torvalds 已提交
1351 1352 1353
	return res;
}

1354
static int __devinit w83627thf_read_gpio5(struct platform_device *pdev)
L
Linus Torvalds 已提交
1355 1356 1357 1358 1359 1360 1361 1362
{
	int res = 0xff, sel;

	superio_enter();
	superio_select(W83627HF_LD_GPIO5);

	/* Make sure these GPIO pins are enabled */
	if (!(superio_inb(W83627THF_GPIO5_EN) & (1<<3))) {
1363
		dev_dbg(&pdev->dev, "GPIO5 disabled, no VID function\n");
L
Linus Torvalds 已提交
1364 1365 1366 1367 1368
		goto exit;
	}

	/* Make sure the pins are configured for input
	   There must be at least five (VRM 9), and possibly 6 (VRM 10) */
Y
Yuan Mu 已提交
1369
	sel = superio_inb(W83627THF_GPIO5_IOSR) & 0x3f;
L
Linus Torvalds 已提交
1370
	if ((sel & 0x1f) != 0x1f) {
1371
		dev_dbg(&pdev->dev, "GPIO5 not configured for VID "
L
Linus Torvalds 已提交
1372 1373 1374 1375
			"function\n");
		goto exit;
	}

1376
	dev_info(&pdev->dev, "Reading VID from GPIO5\n");
L
Linus Torvalds 已提交
1377 1378 1379 1380 1381 1382 1383
	res = superio_inb(W83627THF_GPIO5_DR) & sel;

exit:
	superio_exit();
	return res;
}

1384
static int __devinit w83687thf_read_vid(struct platform_device *pdev)
1385 1386 1387 1388 1389 1390 1391 1392
{
	int res = 0xff;

	superio_enter();
	superio_select(W83627HF_LD_HWM);

	/* Make sure these GPIO pins are enabled */
	if (!(superio_inb(W83687THF_VID_EN) & (1 << 2))) {
1393
		dev_dbg(&pdev->dev, "VID disabled, no VID function\n");
1394 1395 1396 1397 1398
		goto exit;
	}

	/* Make sure the pins are configured for input */
	if (!(superio_inb(W83687THF_VID_CFG) & (1 << 4))) {
1399
		dev_dbg(&pdev->dev, "VID configured as output, "
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
			"no VID function\n");
		goto exit;
	}

	res = superio_inb(W83687THF_VID_DATA) & 0x3f;

exit:
	superio_exit();
	return res;
}

1411
static int w83627hf_write_value(struct w83627hf_data *data, u16 reg, u16 value)
L
Linus Torvalds 已提交
1412 1413 1414
{
	int word_sized;

1415
	mutex_lock(&data->lock);
L
Linus Torvalds 已提交
1416 1417 1418 1419 1420 1421
	word_sized = (((reg & 0xff00) == 0x100)
		   || ((reg & 0xff00) == 0x200))
		  && (((reg & 0x00ff) == 0x53)
		   || ((reg & 0x00ff) == 0x55));
	if (reg & 0xff00) {
		outb_p(W83781D_REG_BANK,
1422
		       data->addr + W83781D_ADDR_REG_OFFSET);
L
Linus Torvalds 已提交
1423
		outb_p(reg >> 8,
1424
		       data->addr + W83781D_DATA_REG_OFFSET);
L
Linus Torvalds 已提交
1425
	}
1426
	outb_p(reg & 0xff, data->addr + W83781D_ADDR_REG_OFFSET);
L
Linus Torvalds 已提交
1427 1428
	if (word_sized) {
		outb_p(value >> 8,
1429
		       data->addr + W83781D_DATA_REG_OFFSET);
L
Linus Torvalds 已提交
1430
		outb_p((reg & 0xff) + 1,
1431
		       data->addr + W83781D_ADDR_REG_OFFSET);
L
Linus Torvalds 已提交
1432 1433
	}
	outb_p(value & 0xff,
1434
	       data->addr + W83781D_DATA_REG_OFFSET);
L
Linus Torvalds 已提交
1435 1436
	if (reg & 0xff00) {
		outb_p(W83781D_REG_BANK,
1437 1438
		       data->addr + W83781D_ADDR_REG_OFFSET);
		outb_p(0, data->addr + W83781D_DATA_REG_OFFSET);
L
Linus Torvalds 已提交
1439
	}
1440
	mutex_unlock(&data->lock);
L
Linus Torvalds 已提交
1441 1442 1443
	return 0;
}

1444
static void __devinit w83627hf_init_device(struct platform_device *pdev)
L
Linus Torvalds 已提交
1445
{
1446
	struct w83627hf_data *data = platform_get_drvdata(pdev);
L
Linus Torvalds 已提交
1447
	int i;
1448
	enum chips type = data->type;
L
Linus Torvalds 已提交
1449 1450
	u8 tmp;

1451 1452 1453 1454 1455 1456
	if (reset) {
		/* Resetting the chip has been the default for a long time,
		   but repeatedly caused problems (fans going to full
		   speed...) 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. */
1457
		dev_info(&pdev->dev, "If reset=1 solved a problem you were "
1458 1459
			 "having, please report!\n");

L
Linus Torvalds 已提交
1460
		/* save this register */
1461
		i = w83627hf_read_value(data, W83781D_REG_BEEP_CONFIG);
L
Linus Torvalds 已提交
1462 1463
		/* Reset all except Watchdog values and last conversion values
		   This sets fan-divs to 2, among others */
1464
		w83627hf_write_value(data, W83781D_REG_CONFIG, 0x80);
L
Linus Torvalds 已提交
1465 1466
		/* Restore the register and disable power-on abnormal beep.
		   This saves FAN 1/2/3 input/output values set by BIOS. */
1467
		w83627hf_write_value(data, W83781D_REG_BEEP_CONFIG, i | 0x80);
L
Linus Torvalds 已提交
1468 1469 1470
		/* Disable master beep-enable (reset turns it on).
		   Individual beeps should be reset to off but for some reason
		   disabling this bit helps some people not get beeped */
1471
		w83627hf_write_value(data, W83781D_REG_BEEP_INTS2, 0);
L
Linus Torvalds 已提交
1472 1473 1474 1475 1476
	}

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

	/* Read VID only once */
1481
	if (type == w83627hf || type == w83637hf) {
1482 1483
		int lo = w83627hf_read_value(data, W83781D_REG_VID_FANDIV);
		int hi = w83627hf_read_value(data, W83781D_REG_CHIPID);
L
Linus Torvalds 已提交
1484
		data->vid = (lo & 0x0f) | ((hi & 0x01) << 4);
1485
	} else if (type == w83627thf) {
1486
		data->vid = w83627thf_read_gpio5(pdev);
1487
	} else if (type == w83687thf) {
1488
		data->vid = w83687thf_read_vid(pdev);
L
Linus Torvalds 已提交
1489 1490 1491
	}

	/* Read VRM & OVT Config only once */
1492
	if (type == w83627thf || type == w83637hf || type == w83687thf) {
L
Linus Torvalds 已提交
1493
		data->vrm_ovt = 
1494
			w83627hf_read_value(data, W83627THF_REG_VRM_OVT_CFG);
L
Linus Torvalds 已提交
1495 1496
	}

1497
	tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
L
Linus Torvalds 已提交
1498 1499
	for (i = 1; i <= 3; i++) {
		if (!(tmp & BIT_SCFG1[i - 1])) {
J
Jean Delvare 已提交
1500
			data->sens[i - 1] = 4;
L
Linus Torvalds 已提交
1501 1502
		} else {
			if (w83627hf_read_value
1503
			    (data,
L
Linus Torvalds 已提交
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514
			     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 */
1515
		tmp = w83627hf_read_value(data, W83781D_REG_TEMP2_CONFIG);
L
Linus Torvalds 已提交
1516
		if (tmp & 0x01) {
1517
			dev_warn(&pdev->dev, "Enabling temp2, readings "
L
Linus Torvalds 已提交
1518
				 "might not make sense\n");
1519
			w83627hf_write_value(data, W83781D_REG_TEMP2_CONFIG,
L
Linus Torvalds 已提交
1520 1521 1522 1523 1524
				tmp & 0xfe);
		}

		/* Enable temp3 */
		if (type != w83697hf) {
1525
			tmp = w83627hf_read_value(data,
L
Linus Torvalds 已提交
1526 1527
				W83781D_REG_TEMP3_CONFIG);
			if (tmp & 0x01) {
1528
				dev_warn(&pdev->dev, "Enabling temp3, "
L
Linus Torvalds 已提交
1529
					 "readings might not make sense\n");
1530
				w83627hf_write_value(data,
L
Linus Torvalds 已提交
1531 1532 1533 1534 1535 1536
					W83781D_REG_TEMP3_CONFIG, tmp & 0xfe);
			}
		}
	}

	/* Start monitoring */
1537 1538
	w83627hf_write_value(data, W83781D_REG_CONFIG,
			    (w83627hf_read_value(data,
L
Linus Torvalds 已提交
1539 1540 1541 1542 1543 1544
						W83781D_REG_CONFIG) & 0xf7)
			    | 0x01);
}

static struct w83627hf_data *w83627hf_update_device(struct device *dev)
{
1545
	struct w83627hf_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
1546 1547
	int i;

1548
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
1549 1550 1551 1552 1553 1554

	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)) ||
1555
			    ((data->type != w83627hf && data->type != w83697hf)
Y
Yuan Mu 已提交
1556
			    && (i == 5 || i == 6)))
L
Linus Torvalds 已提交
1557 1558
				continue;
			data->in[i] =
1559
			    w83627hf_read_value(data, W83781D_REG_IN(i));
L
Linus Torvalds 已提交
1560
			data->in_min[i] =
1561
			    w83627hf_read_value(data,
L
Linus Torvalds 已提交
1562 1563
					       W83781D_REG_IN_MIN(i));
			data->in_max[i] =
1564
			    w83627hf_read_value(data,
L
Linus Torvalds 已提交
1565 1566 1567 1568
					       W83781D_REG_IN_MAX(i));
		}
		for (i = 1; i <= 3; i++) {
			data->fan[i - 1] =
1569
			    w83627hf_read_value(data, W83781D_REG_FAN(i));
L
Linus Torvalds 已提交
1570
			data->fan_min[i - 1] =
1571
			    w83627hf_read_value(data,
L
Linus Torvalds 已提交
1572 1573
					       W83781D_REG_FAN_MIN(i));
		}
1574
		for (i = 0; i <= 2; i++) {
1575
			u8 tmp = w83627hf_read_value(data,
L
Linus Torvalds 已提交
1576 1577 1578 1579
				W836X7HF_REG_PWM(data->type, i));
 			/* bits 0-3 are reserved  in 627THF */
 			if (data->type == w83627thf)
				tmp &= 0xf0;
1580 1581 1582
			data->pwm[i] = tmp;
			if (i == 1 &&
			    (data->type == w83627hf || data->type == w83697hf))
L
Linus Torvalds 已提交
1583 1584
				break;
		}
1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598
		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;
			}
		}
L
Linus Torvalds 已提交
1599

1600
		data->temp = w83627hf_read_value(data, W83781D_REG_TEMP(1));
L
Linus Torvalds 已提交
1601
		data->temp_max =
1602
		    w83627hf_read_value(data, W83781D_REG_TEMP_OVER(1));
L
Linus Torvalds 已提交
1603
		data->temp_max_hyst =
1604
		    w83627hf_read_value(data, W83781D_REG_TEMP_HYST(1));
L
Linus Torvalds 已提交
1605
		data->temp_add[0] =
1606
		    w83627hf_read_value(data, W83781D_REG_TEMP(2));
L
Linus Torvalds 已提交
1607
		data->temp_max_add[0] =
1608
		    w83627hf_read_value(data, W83781D_REG_TEMP_OVER(2));
L
Linus Torvalds 已提交
1609
		data->temp_max_hyst_add[0] =
1610
		    w83627hf_read_value(data, W83781D_REG_TEMP_HYST(2));
L
Linus Torvalds 已提交
1611 1612
		if (data->type != w83697hf) {
			data->temp_add[1] =
1613
			  w83627hf_read_value(data, W83781D_REG_TEMP(3));
L
Linus Torvalds 已提交
1614
			data->temp_max_add[1] =
1615
			  w83627hf_read_value(data, W83781D_REG_TEMP_OVER(3));
L
Linus Torvalds 已提交
1616
			data->temp_max_hyst_add[1] =
1617
			  w83627hf_read_value(data, W83781D_REG_TEMP_HYST(3));
L
Linus Torvalds 已提交
1618 1619
		}

1620
		i = w83627hf_read_value(data, W83781D_REG_VID_FANDIV);
L
Linus Torvalds 已提交
1621 1622 1623
		data->fan_div[0] = (i >> 4) & 0x03;
		data->fan_div[1] = (i >> 6) & 0x03;
		if (data->type != w83697hf) {
1624
			data->fan_div[2] = (w83627hf_read_value(data,
L
Linus Torvalds 已提交
1625 1626
					       W83781D_REG_PIN) >> 6) & 0x03;
		}
1627
		i = w83627hf_read_value(data, W83781D_REG_VBAT);
L
Linus Torvalds 已提交
1628 1629 1630 1631 1632
		data->fan_div[0] |= (i >> 3) & 0x04;
		data->fan_div[1] |= (i >> 4) & 0x04;
		if (data->type != w83697hf)
			data->fan_div[2] |= (i >> 5) & 0x04;
		data->alarms =
1633 1634 1635 1636
		    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);
L
Linus Torvalds 已提交
1637 1638
		data->beep_enable = i >> 7;
		data->beep_mask = ((i & 0x7f) << 8) |
1639 1640
		    w83627hf_read_value(data, W83781D_REG_BEEP_INTS1) |
		    w83627hf_read_value(data, W83781D_REG_BEEP_INTS3) << 16;
L
Linus Torvalds 已提交
1641 1642 1643 1644
		data->last_updated = jiffies;
		data->valid = 1;
	}

1645
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
1646 1647 1648 1649

	return data;
}

1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674
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;

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

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

1675 1676 1677
	err = platform_device_add_data(pdev, sio_data,
				       sizeof(struct w83627hf_sio_data));
	if (err) {
1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696
		printk(KERN_ERR DRVNAME ": Platform data allocation failed\n");
		goto exit_device_put;
	}

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

	return 0;

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

L
Linus Torvalds 已提交
1697 1698
static int __init sensors_w83627hf_init(void)
{
1699 1700 1701 1702 1703 1704
	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 已提交
1705 1706
		return -ENODEV;

1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721
	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 已提交
1722 1723 1724 1725
}

static void __exit sensors_w83627hf_exit(void)
{
1726 1727
	platform_device_unregister(pdev);
	platform_driver_unregister(&w83627hf_driver);
L
Linus Torvalds 已提交
1728 1729 1730 1731 1732 1733 1734 1735 1736 1737
}

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