lm87.c 29.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*
 * lm87.c
 *
 * Copyright (C) 2000       Frodo Looijaard <frodol@dds.nl>
 *                          Philip Edelbrock <phil@netroedge.com>
 *                          Stephen Rousset <stephen.rousset@rocketlogix.com>
 *                          Dan Eaton <dan.eaton@rocketlogix.com>
8
 * Copyright (C) 2004-2008  Jean Delvare <khali@linux-fr.org>
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * Original port to Linux 2.6 by Jeff Oliver.
 *
 * The LM87 is a sensor chip made by National Semiconductor. It monitors up
 * to 8 voltages (including its own power source), up to three temperatures
 * (its own plus up to two external ones) and up to two fans. The default
 * configuration is 6 voltages, two temperatures and two fans (see below).
 * Voltages are scaled internally with ratios such that the nominal value of
 * each voltage correspond to a register value of 192 (which means a
 * resolution of about 0.5% of the nominal value). Temperature values are
 * reported with a 1 deg resolution and a 3-4 deg accuracy. Complete
 * datasheet can be obtained from National's website at:
 *   http://www.national.com/pf/LM/LM87.html
 *
 * Some functions share pins, so not all functions are available at the same
24 25 26 27
 * time. Which are depends on the hardware setup. This driver normally
 * assumes that firmware configured the chip correctly. Where this is not
 * the case, platform code must set the I2C client's platform_data to point
 * to a u8 value to be written to the channel register.
L
Linus Torvalds 已提交
28 29 30 31 32 33 34 35 36 37 38
 * For reference, here is the list of exclusive functions:
 *  - in0+in5 (default) or temp3
 *  - fan1 (default) or in6
 *  - fan2 (default) or in7
 *  - VID lines (default) or IRQ lines (not handled by this driver)
 *
 * The LM87 additionally features an analog output, supposedly usable to
 * control the speed of a fan. All new chips use pulse width modulation
 * instead. The LM87 is the only hardware monitoring chipset I know of
 * which uses amplitude modulation. Be careful when using this feature.
 *
39 40 41 42 43
 * This driver also supports the ADM1024, a sensor chip made by Analog
 * Devices. That chip is fully compatible with the LM87. Complete
 * datasheet can be obtained from Analog's website at:
 *   http://www.analog.com/en/prod/0,2877,ADM1024,00.html
 *
L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
 * 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.
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/jiffies.h>
#include <linux/i2c.h>
64
#include <linux/hwmon.h>
65
#include <linux/hwmon-sysfs.h>
66
#include <linux/hwmon-vid.h>
67
#include <linux/err.h>
68
#include <linux/mutex.h>
L
Linus Torvalds 已提交
69 70 71 72 73 74

/*
 * Addresses to scan
 * LM87 has three possible addresses: 0x2c, 0x2d and 0x2e.
 */

75
static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END };
L
Linus Torvalds 已提交
76

J
Jean Delvare 已提交
77
enum chips { lm87, adm1024 };
L
Linus Torvalds 已提交
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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

/*
 * The LM87 registers
 */

/* nr in 0..5 */
#define LM87_REG_IN(nr)			(0x20 + (nr))
#define LM87_REG_IN_MAX(nr)		(0x2B + (nr) * 2)
#define LM87_REG_IN_MIN(nr)		(0x2C + (nr) * 2)
/* nr in 0..1 */
#define LM87_REG_AIN(nr)		(0x28 + (nr))
#define LM87_REG_AIN_MIN(nr)		(0x1A + (nr))
#define LM87_REG_AIN_MAX(nr)		(0x3B + (nr))

static u8 LM87_REG_TEMP[3] = { 0x27, 0x26, 0x20 };
static u8 LM87_REG_TEMP_HIGH[3] = { 0x39, 0x37, 0x2B };
static u8 LM87_REG_TEMP_LOW[3] = { 0x3A, 0x38, 0x2C };

#define LM87_REG_TEMP_HW_INT_LOCK	0x13
#define LM87_REG_TEMP_HW_EXT_LOCK	0x14
#define LM87_REG_TEMP_HW_INT		0x17
#define LM87_REG_TEMP_HW_EXT		0x18

/* nr in 0..1 */
#define LM87_REG_FAN(nr)		(0x28 + (nr))
#define LM87_REG_FAN_MIN(nr)		(0x3B + (nr))
#define LM87_REG_AOUT			0x19

#define LM87_REG_CONFIG			0x40
#define LM87_REG_CHANNEL_MODE		0x16
#define LM87_REG_VID_FAN_DIV		0x47
#define LM87_REG_VID4			0x49

#define LM87_REG_ALARMS1		0x41
#define LM87_REG_ALARMS2		0x42

#define LM87_REG_COMPANY_ID		0x3E
#define LM87_REG_REVISION		0x3F

/*
 * Conversions and various macros
 * The LM87 uses signed 8-bit values for temperatures.
 */

122 123
#define IN_FROM_REG(reg, scale)	(((reg) * (scale) + 96) / 192)
#define IN_TO_REG(val, scale)	((val) <= 0 ? 0 : \
L
Linus Torvalds 已提交
124
				 (val) * 192 >= (scale) * 255 ? 255 : \
125
				 ((val) * 192 + (scale) / 2) / (scale))
L
Linus Torvalds 已提交
126 127 128 129

#define TEMP_FROM_REG(reg)	((reg) * 1000)
#define TEMP_TO_REG(val)	((val) <= -127500 ? -128 : \
				 (val) >= 126500 ? 127 : \
130 131
				 (((val) < 0 ? (val) - 500 : \
				   (val) + 500) / 1000))
L
Linus Torvalds 已提交
132

133 134 135 136
#define FAN_FROM_REG(reg, div)	((reg) == 255 || (reg) == 0 ? 0 : \
				 (1350000 + (reg)*(div) / 2) / ((reg) * (div)))
#define FAN_TO_REG(val, div)	((val) * (div) * 255 <= 1350000 ? 255 : \
				 (1350000 + (val)*(div) / 2) / ((val) * (div)))
L
Linus Torvalds 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149

#define FAN_DIV_FROM_REG(reg)	(1 << (reg))

/* analog out is 9.80mV/LSB */
#define AOUT_FROM_REG(reg)	(((reg) * 98 + 5) / 10)
#define AOUT_TO_REG(val)	((val) <= 0 ? 0 : \
				 (val) >= 2500 ? 255 : \
				 ((val) * 10 + 49) / 98)

/* nr in 0..1 */
#define CHAN_NO_FAN(nr)		(1 << (nr))
#define CHAN_TEMP3		(1 << 2)
#define CHAN_VCC_5V		(1 << 3)
150
#define CHAN_NO_VID		(1 << 7)
L
Linus Torvalds 已提交
151 152 153 154 155 156

/*
 * Client data (each client gets its own)
 */

struct lm87_data {
157
	struct device *hwmon_dev;
158
	struct mutex update_lock;
L
Linus Torvalds 已提交
159 160 161 162
	char valid; /* zero until following fields are valid */
	unsigned long last_updated; /* In jiffies */

	u8 channel;		/* register value */
163
	u8 config;		/* original register value */
L
Linus Torvalds 已提交
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 191 192 193 194 195

	u8 in[8];		/* register value */
	u8 in_max[8];		/* register value */
	u8 in_min[8];		/* register value */
	u16 in_scale[8];

	s8 temp[3];		/* register value */
	s8 temp_high[3];	/* register value */
	s8 temp_low[3];		/* register value */
	s8 temp_crit_int;	/* min of two register values */
	s8 temp_crit_ext;	/* min of two register values */

	u8 fan[2];		/* register value */
	u8 fan_min[2];		/* register value */
	u8 fan_div[2];		/* register value, shifted right */
	u8 aout;		/* register value */

	u16 alarms;		/* register values, combined */
	u8 vid;			/* register values, combined */
	u8 vrm;
};

static inline int lm87_read_value(struct i2c_client *client, u8 reg)
{
	return i2c_smbus_read_byte_data(client, reg);
}

static inline int lm87_write_value(struct i2c_client *client, u8 reg, u8 value)
{
	return i2c_smbus_write_byte_data(client, reg, value);
}

J
Jean Delvare 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 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 267 268 269 270 271 272 273 274 275 276 277 278
static struct lm87_data *lm87_update_device(struct device *dev)
{
	struct i2c_client *client = to_i2c_client(dev);
	struct lm87_data *data = i2c_get_clientdata(client);

	mutex_lock(&data->update_lock);

	if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
		int i, j;

		dev_dbg(&client->dev, "Updating data.\n");

		i = (data->channel & CHAN_TEMP3) ? 1 : 0;
		j = (data->channel & CHAN_TEMP3) ? 5 : 6;
		for (; i < j; i++) {
			data->in[i] = lm87_read_value(client,
				      LM87_REG_IN(i));
			data->in_min[i] = lm87_read_value(client,
					  LM87_REG_IN_MIN(i));
			data->in_max[i] = lm87_read_value(client,
					  LM87_REG_IN_MAX(i));
		}

		for (i = 0; i < 2; i++) {
			if (data->channel & CHAN_NO_FAN(i)) {
				data->in[6+i] = lm87_read_value(client,
						LM87_REG_AIN(i));
				data->in_max[6+i] = lm87_read_value(client,
						    LM87_REG_AIN_MAX(i));
				data->in_min[6+i] = lm87_read_value(client,
						    LM87_REG_AIN_MIN(i));

			} else {
				data->fan[i] = lm87_read_value(client,
					       LM87_REG_FAN(i));
				data->fan_min[i] = lm87_read_value(client,
						   LM87_REG_FAN_MIN(i));
			}
		}

		j = (data->channel & CHAN_TEMP3) ? 3 : 2;
		for (i = 0 ; i < j; i++) {
			data->temp[i] = lm87_read_value(client,
					LM87_REG_TEMP[i]);
			data->temp_high[i] = lm87_read_value(client,
					     LM87_REG_TEMP_HIGH[i]);
			data->temp_low[i] = lm87_read_value(client,
					    LM87_REG_TEMP_LOW[i]);
		}

		i = lm87_read_value(client, LM87_REG_TEMP_HW_INT_LOCK);
		j = lm87_read_value(client, LM87_REG_TEMP_HW_INT);
		data->temp_crit_int = min(i, j);

		i = lm87_read_value(client, LM87_REG_TEMP_HW_EXT_LOCK);
		j = lm87_read_value(client, LM87_REG_TEMP_HW_EXT);
		data->temp_crit_ext = min(i, j);

		i = lm87_read_value(client, LM87_REG_VID_FAN_DIV);
		data->fan_div[0] = (i >> 4) & 0x03;
		data->fan_div[1] = (i >> 6) & 0x03;
		data->vid = (i & 0x0F)
			  | (lm87_read_value(client, LM87_REG_VID4) & 0x01)
			     << 4;

		data->alarms = lm87_read_value(client, LM87_REG_ALARMS1)
			     | (lm87_read_value(client, LM87_REG_ALARMS2)
				<< 8);
		data->aout = lm87_read_value(client, LM87_REG_AOUT);

		data->last_updated = jiffies;
		data->valid = 1;
	}

	mutex_unlock(&data->update_lock);

	return data;
}

/*
 * Sysfs stuff
 */

L
Linus Torvalds 已提交
279
#define show_in(offset) \
280 281 282
static ssize_t show_in##offset##_input(struct device *dev, \
				       struct device_attribute *attr, \
				       char *buf) \
L
Linus Torvalds 已提交
283 284 285 286 287
{ \
	struct lm87_data *data = lm87_update_device(dev); \
	return sprintf(buf, "%u\n", IN_FROM_REG(data->in[offset], \
		       data->in_scale[offset])); \
} \
288 289
static ssize_t show_in##offset##_min(struct device *dev, \
				     struct device_attribute *attr, char *buf) \
L
Linus Torvalds 已提交
290 291 292 293 294
{ \
	struct lm87_data *data = lm87_update_device(dev); \
	return sprintf(buf, "%u\n", IN_FROM_REG(data->in_min[offset], \
		       data->in_scale[offset])); \
} \
295 296
static ssize_t show_in##offset##_max(struct device *dev, \
				     struct device_attribute *attr, char *buf) \
L
Linus Torvalds 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
{ \
	struct lm87_data *data = lm87_update_device(dev); \
	return sprintf(buf, "%u\n", IN_FROM_REG(data->in_max[offset], \
		       data->in_scale[offset])); \
} \
static DEVICE_ATTR(in##offset##_input, S_IRUGO, \
		show_in##offset##_input, NULL);
show_in(0);
show_in(1);
show_in(2);
show_in(3);
show_in(4);
show_in(5);
show_in(6);
show_in(7);

313 314
static ssize_t set_in_min(struct device *dev, const char *buf, int nr,
			  size_t count)
L
Linus Torvalds 已提交
315 316 317
{
	struct i2c_client *client = to_i2c_client(dev);
	struct lm87_data *data = i2c_get_clientdata(client);
318 319 320 321 322 323
	long val;
	int err;

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

325
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
326
	data->in_min[nr] = IN_TO_REG(val, data->in_scale[nr]);
327 328
	lm87_write_value(client, nr < 6 ? LM87_REG_IN_MIN(nr) :
			 LM87_REG_AIN_MIN(nr - 6), data->in_min[nr]);
329
	mutex_unlock(&data->update_lock);
330
	return count;
L
Linus Torvalds 已提交
331 332
}

333 334
static ssize_t set_in_max(struct device *dev, const char *buf, int nr,
			  size_t count)
L
Linus Torvalds 已提交
335 336 337
{
	struct i2c_client *client = to_i2c_client(dev);
	struct lm87_data *data = i2c_get_clientdata(client);
338 339 340 341 342 343
	long val;
	int err;

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

345
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
346
	data->in_max[nr] = IN_TO_REG(val, data->in_scale[nr]);
347 348
	lm87_write_value(client, nr < 6 ? LM87_REG_IN_MAX(nr) :
			 LM87_REG_AIN_MAX(nr - 6), data->in_max[nr]);
349
	mutex_unlock(&data->update_lock);
350
	return count;
L
Linus Torvalds 已提交
351 352 353
}

#define set_in(offset) \
354 355 356
static ssize_t set_in##offset##_min(struct device *dev, \
				    struct device_attribute *attr, \
				    const char *buf, size_t count) \
L
Linus Torvalds 已提交
357
{ \
358
	return set_in_min(dev, buf, offset, count); \
L
Linus Torvalds 已提交
359
} \
360 361 362
static ssize_t set_in##offset##_max(struct device *dev, \
				    struct device_attribute *attr, \
				    const char *buf, size_t count) \
L
Linus Torvalds 已提交
363
{ \
364
	return set_in_max(dev, buf, offset, count); \
L
Linus Torvalds 已提交
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
} \
static DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
		show_in##offset##_min, set_in##offset##_min); \
static DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
		show_in##offset##_max, set_in##offset##_max);
set_in(0);
set_in(1);
set_in(2);
set_in(3);
set_in(4);
set_in(5);
set_in(6);
set_in(7);

#define show_temp(offset) \
380 381 382
static ssize_t show_temp##offset##_input(struct device *dev, \
					 struct device_attribute *attr, \
					 char *buf) \
L
Linus Torvalds 已提交
383 384
{ \
	struct lm87_data *data = lm87_update_device(dev); \
385
	return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[offset - 1])); \
L
Linus Torvalds 已提交
386
} \
387 388 389
static ssize_t show_temp##offset##_low(struct device *dev, \
				       struct device_attribute *attr, \
				       char *buf) \
L
Linus Torvalds 已提交
390 391
{ \
	struct lm87_data *data = lm87_update_device(dev); \
392 393
	return sprintf(buf, "%d\n", \
		       TEMP_FROM_REG(data->temp_low[offset - 1])); \
L
Linus Torvalds 已提交
394
} \
395 396 397
static ssize_t show_temp##offset##_high(struct device *dev, \
					struct device_attribute *attr, \
					char *buf) \
L
Linus Torvalds 已提交
398 399
{ \
	struct lm87_data *data = lm87_update_device(dev); \
400 401 402
	return sprintf(buf, "%d\n", \
		       TEMP_FROM_REG(data->temp_high[offset - 1])); \
} \
L
Linus Torvalds 已提交
403 404 405 406 407 408
static DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
		show_temp##offset##_input, NULL);
show_temp(1);
show_temp(2);
show_temp(3);

409 410
static ssize_t set_temp_low(struct device *dev, const char *buf, int nr,
			    size_t count)
L
Linus Torvalds 已提交
411 412 413
{
	struct i2c_client *client = to_i2c_client(dev);
	struct lm87_data *data = i2c_get_clientdata(client);
414 415 416 417 418 419
	long val;
	int err;

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

421
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
422 423
	data->temp_low[nr] = TEMP_TO_REG(val);
	lm87_write_value(client, LM87_REG_TEMP_LOW[nr], data->temp_low[nr]);
424
	mutex_unlock(&data->update_lock);
425
	return count;
L
Linus Torvalds 已提交
426 427
}

428 429
static ssize_t set_temp_high(struct device *dev, const char *buf, int nr,
			     size_t count)
L
Linus Torvalds 已提交
430 431 432
{
	struct i2c_client *client = to_i2c_client(dev);
	struct lm87_data *data = i2c_get_clientdata(client);
433 434 435 436 437 438
	long val;
	int err;

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

440
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
441 442
	data->temp_high[nr] = TEMP_TO_REG(val);
	lm87_write_value(client, LM87_REG_TEMP_HIGH[nr], data->temp_high[nr]);
443
	mutex_unlock(&data->update_lock);
444
	return count;
L
Linus Torvalds 已提交
445 446 447
}

#define set_temp(offset) \
448 449 450
static ssize_t set_temp##offset##_low(struct device *dev, \
				      struct device_attribute *attr, \
				      const char *buf, size_t count) \
L
Linus Torvalds 已提交
451
{ \
452
	return set_temp_low(dev, buf, offset - 1, count); \
L
Linus Torvalds 已提交
453
} \
454 455 456
static ssize_t set_temp##offset##_high(struct device *dev, \
				       struct device_attribute *attr, \
				       const char *buf, size_t count) \
L
Linus Torvalds 已提交
457
{ \
458
	return set_temp_high(dev, buf, offset - 1, count); \
L
Linus Torvalds 已提交
459 460 461 462 463 464 465 466 467
} \
static DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
		show_temp##offset##_high, set_temp##offset##_high); \
static DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
		show_temp##offset##_low, set_temp##offset##_low);
set_temp(1);
set_temp(2);
set_temp(3);

468 469
static ssize_t show_temp_crit_int(struct device *dev,
				  struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
470 471 472 473 474
{
	struct lm87_data *data = lm87_update_device(dev);
	return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_crit_int));
}

475 476
static ssize_t show_temp_crit_ext(struct device *dev,
				  struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
477 478 479 480 481 482 483 484 485 486
{
	struct lm87_data *data = lm87_update_device(dev);
	return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_crit_ext));
}

static DEVICE_ATTR(temp1_crit, S_IRUGO, show_temp_crit_int, NULL);
static DEVICE_ATTR(temp2_crit, S_IRUGO, show_temp_crit_ext, NULL);
static DEVICE_ATTR(temp3_crit, S_IRUGO, show_temp_crit_ext, NULL);

#define show_fan(offset) \
487 488 489
static ssize_t show_fan##offset##_input(struct device *dev, \
					struct device_attribute *attr, \
					char *buf) \
L
Linus Torvalds 已提交
490 491
{ \
	struct lm87_data *data = lm87_update_device(dev); \
492 493
	return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[offset - 1], \
		       FAN_DIV_FROM_REG(data->fan_div[offset - 1]))); \
L
Linus Torvalds 已提交
494
} \
495 496 497
static ssize_t show_fan##offset##_min(struct device *dev, \
				      struct device_attribute *attr, \
				      char *buf) \
L
Linus Torvalds 已提交
498 499
{ \
	struct lm87_data *data = lm87_update_device(dev); \
500 501
	return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[offset - 1], \
		       FAN_DIV_FROM_REG(data->fan_div[offset - 1]))); \
L
Linus Torvalds 已提交
502
} \
503 504 505
static ssize_t show_fan##offset##_div(struct device *dev, \
				      struct device_attribute *attr, \
				      char *buf) \
L
Linus Torvalds 已提交
506 507
{ \
	struct lm87_data *data = lm87_update_device(dev); \
508 509
	return sprintf(buf, "%d\n", \
		       FAN_DIV_FROM_REG(data->fan_div[offset - 1])); \
L
Linus Torvalds 已提交
510 511 512 513 514 515
} \
static DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
		show_fan##offset##_input, NULL);
show_fan(1);
show_fan(2);

516 517
static ssize_t set_fan_min(struct device *dev, const char *buf, int nr,
			   size_t count)
L
Linus Torvalds 已提交
518 519 520
{
	struct i2c_client *client = to_i2c_client(dev);
	struct lm87_data *data = i2c_get_clientdata(client);
521 522 523 524 525 526
	long val;
	int err;

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

528
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
529 530 531
	data->fan_min[nr] = FAN_TO_REG(val,
			    FAN_DIV_FROM_REG(data->fan_div[nr]));
	lm87_write_value(client, LM87_REG_FAN_MIN(nr), data->fan_min[nr]);
532
	mutex_unlock(&data->update_lock);
533
	return count;
L
Linus Torvalds 已提交
534 535
}

536 537 538 539 540 541
/*
 * Note: we save and restore the fan minimum here, because its value is
 * determined in part by the fan clock divider.  This follows the principle
 * of least surprise; the user doesn't expect the fan minimum to change just
 * because the divider changed.
 */
L
Linus Torvalds 已提交
542 543 544 545 546
static ssize_t set_fan_div(struct device *dev, const char *buf,
		size_t count, int nr)
{
	struct i2c_client *client = to_i2c_client(dev);
	struct lm87_data *data = i2c_get_clientdata(client);
547 548
	long val;
	int err;
L
Linus Torvalds 已提交
549 550 551
	unsigned long min;
	u8 reg;

552 553 554 555
	err = kstrtol(buf, 10, &val);
	if (err)
		return err;

556
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
557 558 559 560
	min = FAN_FROM_REG(data->fan_min[nr],
			   FAN_DIV_FROM_REG(data->fan_div[nr]));

	switch (val) {
561 562 563 564 565 566 567 568 569 570 571 572
	case 1:
		data->fan_div[nr] = 0;
		break;
	case 2:
		data->fan_div[nr] = 1;
		break;
	case 4:
		data->fan_div[nr] = 2;
		break;
	case 8:
		data->fan_div[nr] = 3;
		break;
L
Linus Torvalds 已提交
573
	default:
574
		mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
		return -EINVAL;
	}

	reg = lm87_read_value(client, LM87_REG_VID_FAN_DIV);
	switch (nr) {
	case 0:
	    reg = (reg & 0xCF) | (data->fan_div[0] << 4);
	    break;
	case 1:
	    reg = (reg & 0x3F) | (data->fan_div[1] << 6);
	    break;
	}
	lm87_write_value(client, LM87_REG_VID_FAN_DIV, reg);

	data->fan_min[nr] = FAN_TO_REG(min, val);
	lm87_write_value(client, LM87_REG_FAN_MIN(nr),
			 data->fan_min[nr]);
592
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
593 594 595 596 597

	return count;
}

#define set_fan(offset) \
598 599 600
static ssize_t set_fan##offset##_min(struct device *dev, \
				     struct device_attribute *attr, \
				     const char *buf, size_t count) \
L
Linus Torvalds 已提交
601
{ \
602
	return set_fan_min(dev, buf, offset - 1, count); \
L
Linus Torvalds 已提交
603
} \
604 605 606
static ssize_t set_fan##offset##_div(struct device *dev, \
				     struct device_attribute *attr, \
				     const char *buf, size_t count) \
L
Linus Torvalds 已提交
607
{ \
608
	return set_fan_div(dev, buf, count, offset - 1); \
L
Linus Torvalds 已提交
609 610 611 612 613 614 615 616
} \
static DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
		show_fan##offset##_min, set_fan##offset##_min); \
static DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
		show_fan##offset##_div, set_fan##offset##_div);
set_fan(1);
set_fan(2);

617 618
static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
			   char *buf)
L
Linus Torvalds 已提交
619 620 621 622 623 624
{
	struct lm87_data *data = lm87_update_device(dev);
	return sprintf(buf, "%d\n", data->alarms);
}
static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);

625 626
static ssize_t show_vid(struct device *dev, struct device_attribute *attr,
			char *buf)
L
Linus Torvalds 已提交
627 628 629 630 631 632
{
	struct lm87_data *data = lm87_update_device(dev);
	return sprintf(buf, "%d\n", vid_from_reg(data->vid, data->vrm));
}
static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);

633 634
static ssize_t show_vrm(struct device *dev, struct device_attribute *attr,
			char *buf)
L
Linus Torvalds 已提交
635
{
636
	struct lm87_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
637 638
	return sprintf(buf, "%d\n", data->vrm);
}
639 640
static ssize_t set_vrm(struct device *dev, struct device_attribute *attr,
		       const char *buf, size_t count)
L
Linus Torvalds 已提交
641
{
642
	struct lm87_data *data = dev_get_drvdata(dev);
643 644 645 646 647 648 649
	unsigned long val;
	int err;

	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;
	data->vrm = val;
L
Linus Torvalds 已提交
650 651 652 653
	return count;
}
static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm, set_vrm);

654 655
static ssize_t show_aout(struct device *dev, struct device_attribute *attr,
			 char *buf)
L
Linus Torvalds 已提交
656 657 658 659
{
	struct lm87_data *data = lm87_update_device(dev);
	return sprintf(buf, "%d\n", AOUT_FROM_REG(data->aout));
}
660 661
static ssize_t set_aout(struct device *dev, struct device_attribute *attr,
			const char *buf, size_t count)
L
Linus Torvalds 已提交
662 663 664
{
	struct i2c_client *client = to_i2c_client(dev);
	struct lm87_data *data = i2c_get_clientdata(client);
665 666 667 668 669 670
	long val;
	int err;

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

672
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
673 674
	data->aout = AOUT_TO_REG(val);
	lm87_write_value(client, LM87_REG_AOUT, data->aout);
675
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
676 677 678 679
	return count;
}
static DEVICE_ATTR(aout_output, S_IRUGO | S_IWUSR, show_aout, set_aout);

680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
			  char *buf)
{
	struct lm87_data *data = lm87_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, 6);
static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 7);
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, 5);
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(temp2_fault, S_IRUGO, show_alarm, NULL, 14);
static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 15);

L
Linus Torvalds 已提交
703 704 705 706
/*
 * Real code
 */

707 708 709 710
static struct attribute *lm87_attributes[] = {
	&dev_attr_in1_input.attr,
	&dev_attr_in1_min.attr,
	&dev_attr_in1_max.attr,
711
	&sensor_dev_attr_in1_alarm.dev_attr.attr,
712 713 714
	&dev_attr_in2_input.attr,
	&dev_attr_in2_min.attr,
	&dev_attr_in2_max.attr,
715
	&sensor_dev_attr_in2_alarm.dev_attr.attr,
716 717 718
	&dev_attr_in3_input.attr,
	&dev_attr_in3_min.attr,
	&dev_attr_in3_max.attr,
719
	&sensor_dev_attr_in3_alarm.dev_attr.attr,
720 721 722
	&dev_attr_in4_input.attr,
	&dev_attr_in4_min.attr,
	&dev_attr_in4_max.attr,
723
	&sensor_dev_attr_in4_alarm.dev_attr.attr,
724 725 726 727 728

	&dev_attr_temp1_input.attr,
	&dev_attr_temp1_max.attr,
	&dev_attr_temp1_min.attr,
	&dev_attr_temp1_crit.attr,
729
	&sensor_dev_attr_temp1_alarm.dev_attr.attr,
730 731 732 733
	&dev_attr_temp2_input.attr,
	&dev_attr_temp2_max.attr,
	&dev_attr_temp2_min.attr,
	&dev_attr_temp2_crit.attr,
734 735
	&sensor_dev_attr_temp2_alarm.dev_attr.attr,
	&sensor_dev_attr_temp2_fault.dev_attr.attr,
736 737 738 739 740 741 742 743 744 745 746

	&dev_attr_alarms.attr,
	&dev_attr_aout_output.attr,

	NULL
};

static const struct attribute_group lm87_group = {
	.attrs = lm87_attributes,
};

747
static struct attribute *lm87_attributes_in6[] = {
748 749 750
	&dev_attr_in6_input.attr,
	&dev_attr_in6_min.attr,
	&dev_attr_in6_max.attr,
751
	&sensor_dev_attr_in6_alarm.dev_attr.attr,
752 753 754 755 756 757
	NULL
};

static const struct attribute_group lm87_group_in6 = {
	.attrs = lm87_attributes_in6,
};
758

759
static struct attribute *lm87_attributes_fan1[] = {
760 761 762
	&dev_attr_fan1_input.attr,
	&dev_attr_fan1_min.attr,
	&dev_attr_fan1_div.attr,
763
	&sensor_dev_attr_fan1_alarm.dev_attr.attr,
764 765 766 767 768 769
	NULL
};

static const struct attribute_group lm87_group_fan1 = {
	.attrs = lm87_attributes_fan1,
};
770

771
static struct attribute *lm87_attributes_in7[] = {
772 773 774
	&dev_attr_in7_input.attr,
	&dev_attr_in7_min.attr,
	&dev_attr_in7_max.attr,
775
	&sensor_dev_attr_in7_alarm.dev_attr.attr,
776 777
	NULL
};
778

779 780 781 782 783
static const struct attribute_group lm87_group_in7 = {
	.attrs = lm87_attributes_in7,
};

static struct attribute *lm87_attributes_fan2[] = {
784 785 786
	&dev_attr_fan2_input.attr,
	&dev_attr_fan2_min.attr,
	&dev_attr_fan2_div.attr,
787
	&sensor_dev_attr_fan2_alarm.dev_attr.attr,
788 789
	NULL
};
790

791 792 793 794 795
static const struct attribute_group lm87_group_fan2 = {
	.attrs = lm87_attributes_fan2,
};

static struct attribute *lm87_attributes_temp3[] = {
796 797 798 799
	&dev_attr_temp3_input.attr,
	&dev_attr_temp3_max.attr,
	&dev_attr_temp3_min.attr,
	&dev_attr_temp3_crit.attr,
800 801
	&sensor_dev_attr_temp3_alarm.dev_attr.attr,
	&sensor_dev_attr_temp3_fault.dev_attr.attr,
802 803
	NULL
};
804

805 806 807 808 809
static const struct attribute_group lm87_group_temp3 = {
	.attrs = lm87_attributes_temp3,
};

static struct attribute *lm87_attributes_in0_5[] = {
810 811 812
	&dev_attr_in0_input.attr,
	&dev_attr_in0_min.attr,
	&dev_attr_in0_max.attr,
813
	&sensor_dev_attr_in0_alarm.dev_attr.attr,
814 815 816
	&dev_attr_in5_input.attr,
	&dev_attr_in5_min.attr,
	&dev_attr_in5_max.attr,
817
	&sensor_dev_attr_in5_alarm.dev_attr.attr,
818 819 820 821 822 823
	NULL
};

static const struct attribute_group lm87_group_in0_5 = {
	.attrs = lm87_attributes_in0_5,
};
824

825
static struct attribute *lm87_attributes_vid[] = {
826 827 828 829 830
	&dev_attr_cpu0_vid.attr,
	&dev_attr_vrm.attr,
	NULL
};

831 832
static const struct attribute_group lm87_group_vid = {
	.attrs = lm87_attributes_vid,
833 834
};

835
/* Return 0 if detection is successful, -ENODEV otherwise */
J
Jean Delvare 已提交
836
static int lm87_detect(struct i2c_client *client, struct i2c_board_info *info)
L
Linus Torvalds 已提交
837
{
J
Jean Delvare 已提交
838
	struct i2c_adapter *adapter = client->adapter;
J
Jean Delvare 已提交
839 840
	const char *name;
	u8 cid, rev;
L
Linus Torvalds 已提交
841 842

	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
843
		return -ENODEV;
L
Linus Torvalds 已提交
844

J
Jean Delvare 已提交
845
	if (lm87_read_value(client, LM87_REG_CONFIG) & 0x80)
J
Jean Delvare 已提交
846
		return -ENODEV;
L
Linus Torvalds 已提交
847 848

	/* Now, we do the remaining detection. */
J
Jean Delvare 已提交
849 850
	cid = lm87_read_value(client, LM87_REG_COMPANY_ID);
	rev = lm87_read_value(client, LM87_REG_REVISION);
J
Jean Delvare 已提交
851 852 853 854 855 856 857 858 859

	if (cid == 0x02			/* National Semiconductor */
	 && (rev >= 0x01 && rev <= 0x08))
		name = "lm87";
	else if (cid == 0x41		/* Analog Devices */
	      && (rev & 0xf0) == 0x10)
		name = "adm1024";
	else {
		dev_dbg(&adapter->dev, "LM87 detection failed at 0x%02x\n",
J
Jean Delvare 已提交
860
			client->addr);
J
Jean Delvare 已提交
861
		return -ENODEV;
L
Linus Torvalds 已提交
862 863
	}

J
Jean Delvare 已提交
864
	strlcpy(info->type, name, I2C_NAME_SIZE);
865 866 867 868

	return 0;
}

869 870 871 872 873 874 875 876 877 878 879 880 881 882
static void lm87_remove_files(struct i2c_client *client)
{
	struct device *dev = &client->dev;

	sysfs_remove_group(&dev->kobj, &lm87_group);
	sysfs_remove_group(&dev->kobj, &lm87_group_in6);
	sysfs_remove_group(&dev->kobj, &lm87_group_fan1);
	sysfs_remove_group(&dev->kobj, &lm87_group_in7);
	sysfs_remove_group(&dev->kobj, &lm87_group_fan2);
	sysfs_remove_group(&dev->kobj, &lm87_group_temp3);
	sysfs_remove_group(&dev->kobj, &lm87_group_in0_5);
	sysfs_remove_group(&dev->kobj, &lm87_group_vid);
}

J
Jean Delvare 已提交
883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
static void lm87_init_client(struct i2c_client *client)
{
	struct lm87_data *data = i2c_get_clientdata(client);

	if (client->dev.platform_data) {
		data->channel = *(u8 *)client->dev.platform_data;
		lm87_write_value(client,
				 LM87_REG_CHANNEL_MODE, data->channel);
	} else {
		data->channel = lm87_read_value(client, LM87_REG_CHANNEL_MODE);
	}
	data->config = lm87_read_value(client, LM87_REG_CONFIG) & 0x6F;

	if (!(data->config & 0x01)) {
		int i;

		/* Limits are left uninitialized after power-up */
		for (i = 1; i < 6; i++) {
			lm87_write_value(client, LM87_REG_IN_MIN(i), 0x00);
			lm87_write_value(client, LM87_REG_IN_MAX(i), 0xFF);
		}
		for (i = 0; i < 2; i++) {
			lm87_write_value(client, LM87_REG_TEMP_HIGH[i], 0x7F);
			lm87_write_value(client, LM87_REG_TEMP_LOW[i], 0x00);
			lm87_write_value(client, LM87_REG_AIN_MIN(i), 0x00);
			lm87_write_value(client, LM87_REG_AIN_MAX(i), 0xFF);
		}
		if (data->channel & CHAN_TEMP3) {
			lm87_write_value(client, LM87_REG_TEMP_HIGH[2], 0x7F);
			lm87_write_value(client, LM87_REG_TEMP_LOW[2], 0x00);
		} else {
			lm87_write_value(client, LM87_REG_IN_MIN(0), 0x00);
			lm87_write_value(client, LM87_REG_IN_MAX(0), 0xFF);
		}
	}

	/* Make sure Start is set and INT#_Clear is clear */
	if ((data->config & 0x09) != 0x01)
		lm87_write_value(client, LM87_REG_CONFIG,
				 (data->config & 0x77) | 0x01);
}

static int lm87_probe(struct i2c_client *client, const struct i2c_device_id *id)
926 927 928 929 930 931 932 933 934 935
{
	struct lm87_data *data;
	int err;

	data = kzalloc(sizeof(struct lm87_data), GFP_KERNEL);
	if (!data) {
		err = -ENOMEM;
		goto exit;
	}

J
Jean Delvare 已提交
936
	i2c_set_clientdata(client, data);
L
Linus Torvalds 已提交
937
	data->valid = 0;
938
	mutex_init(&data->update_lock);
L
Linus Torvalds 已提交
939 940

	/* Initialize the LM87 chip */
J
Jean Delvare 已提交
941
	lm87_init_client(client);
L
Linus Torvalds 已提交
942 943 944 945 946 947 948 949 950 951 952

	data->in_scale[0] = 2500;
	data->in_scale[1] = 2700;
	data->in_scale[2] = (data->channel & CHAN_VCC_5V) ? 5000 : 3300;
	data->in_scale[3] = 5000;
	data->in_scale[4] = 12000;
	data->in_scale[5] = 2700;
	data->in_scale[6] = 1875;
	data->in_scale[7] = 1875;

	/* Register sysfs hooks */
J
Jean Delvare 已提交
953
	err = sysfs_create_group(&client->dev.kobj, &lm87_group);
954
	if (err)
955
		goto exit_free;
L
Linus Torvalds 已提交
956 957

	if (data->channel & CHAN_NO_FAN(0)) {
J
Jean Delvare 已提交
958
		err = sysfs_create_group(&client->dev.kobj, &lm87_group_in6);
959
		if (err)
960
			goto exit_remove;
L
Linus Torvalds 已提交
961
	} else {
J
Jean Delvare 已提交
962
		err = sysfs_create_group(&client->dev.kobj, &lm87_group_fan1);
963
		if (err)
964
			goto exit_remove;
L
Linus Torvalds 已提交
965
	}
966

L
Linus Torvalds 已提交
967
	if (data->channel & CHAN_NO_FAN(1)) {
J
Jean Delvare 已提交
968
		err = sysfs_create_group(&client->dev.kobj, &lm87_group_in7);
969
		if (err)
970
			goto exit_remove;
L
Linus Torvalds 已提交
971
	} else {
J
Jean Delvare 已提交
972
		err = sysfs_create_group(&client->dev.kobj, &lm87_group_fan2);
973
		if (err)
974
			goto exit_remove;
L
Linus Torvalds 已提交
975 976 977
	}

	if (data->channel & CHAN_TEMP3) {
J
Jean Delvare 已提交
978
		err = sysfs_create_group(&client->dev.kobj, &lm87_group_temp3);
979
		if (err)
980
			goto exit_remove;
L
Linus Torvalds 已提交
981
	} else {
J
Jean Delvare 已提交
982
		err = sysfs_create_group(&client->dev.kobj, &lm87_group_in0_5);
983
		if (err)
984
			goto exit_remove;
L
Linus Torvalds 已提交
985 986 987
	}

	if (!(data->channel & CHAN_NO_VID)) {
988
		data->vrm = vid_which_vrm();
J
Jean Delvare 已提交
989
		err = sysfs_create_group(&client->dev.kobj, &lm87_group_vid);
990
		if (err)
991
			goto exit_remove;
L
Linus Torvalds 已提交
992 993
	}

J
Jean Delvare 已提交
994
	data->hwmon_dev = hwmon_device_register(&client->dev);
995 996
	if (IS_ERR(data->hwmon_dev)) {
		err = PTR_ERR(data->hwmon_dev);
997 998
		goto exit_remove;
	}
L
Linus Torvalds 已提交
999 1000 1001

	return 0;

1002
exit_remove:
J
Jean Delvare 已提交
1003
	lm87_remove_files(client);
L
Linus Torvalds 已提交
1004
exit_free:
J
Jean Delvare 已提交
1005
	lm87_write_value(client, LM87_REG_CONFIG, data->config);
L
Linus Torvalds 已提交
1006 1007 1008 1009 1010
	kfree(data);
exit:
	return err;
}

1011
static int lm87_remove(struct i2c_client *client)
L
Linus Torvalds 已提交
1012
{
1013
	struct lm87_data *data = i2c_get_clientdata(client);
L
Linus Torvalds 已提交
1014

1015
	hwmon_device_unregister(data->hwmon_dev);
1016
	lm87_remove_files(client);
1017

1018
	lm87_write_value(client, LM87_REG_CONFIG, data->config);
1019
	kfree(data);
L
Linus Torvalds 已提交
1020 1021 1022
	return 0;
}

J
Jean Delvare 已提交
1023 1024 1025
/*
 * Driver data (common to all clients)
 */
L
Linus Torvalds 已提交
1026

J
Jean Delvare 已提交
1027 1028 1029 1030 1031 1032
static const struct i2c_device_id lm87_id[] = {
	{ "lm87", lm87 },
	{ "adm1024", adm1024 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, lm87_id);
L
Linus Torvalds 已提交
1033

J
Jean Delvare 已提交
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
static struct i2c_driver lm87_driver = {
	.class		= I2C_CLASS_HWMON,
	.driver = {
		.name	= "lm87",
	},
	.probe		= lm87_probe,
	.remove		= lm87_remove,
	.id_table	= lm87_id,
	.detect		= lm87_detect,
	.address_list	= normal_i2c,
};
L
Linus Torvalds 已提交
1045

1046
module_i2c_driver(lm87_driver);
L
Linus Torvalds 已提交
1047 1048 1049 1050

MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org> and others");
MODULE_DESCRIPTION("LM87 driver");
MODULE_LICENSE("GPL");