adm1021.c 14.7 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * adm1021.c - Part of lm_sensors, Linux kernel modules for hardware
 *	       monitoring
 * Copyright (c) 1998, 1999  Frodo Looijaard <frodol@dds.nl> and
 *			     Philip Edelbrock <phil@netroedge.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
L
Linus Torvalds 已提交
21 22 23 24 25 26

#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/jiffies.h>
#include <linux/i2c.h>
27
#include <linux/hwmon.h>
28
#include <linux/hwmon-sysfs.h>
29
#include <linux/err.h>
30
#include <linux/mutex.h>
L
Linus Torvalds 已提交
31 32 33


/* Addresses to scan */
34 35
static const unsigned short normal_i2c[] = {
	0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x4c, 0x4d, 0x4e, I2C_CLIENT_END };
L
Linus Torvalds 已提交
36

J
Jean Delvare 已提交
37 38
enum chips {
	adm1021, adm1023, max1617, max1617a, thmc10, lm84, gl523sm, mc1066 };
L
Linus Torvalds 已提交
39 40 41 42 43

/* adm1021 constants specified below */

/* The adm1021 registers */
/* Read-only */
44 45
/* For nr in 0-1 */
#define ADM1021_REG_TEMP(nr)		(nr)
L
Linus Torvalds 已提交
46
#define ADM1021_REG_STATUS		0x02
K
Krzysztof Helt 已提交
47 48 49 50
/* 0x41 = AD, 0x49 = TI, 0x4D = Maxim, 0x23 = Genesys , 0x54 = Onsemi */
#define ADM1021_REG_MAN_ID		0xFE
/* ADM1021 = 0x0X, ADM1023 = 0x3X */
#define ADM1021_REG_DEV_ID		0xFF
L
Linus Torvalds 已提交
51 52 53 54 55 56
/* These use different addresses for reading/writing */
#define ADM1021_REG_CONFIG_R		0x03
#define ADM1021_REG_CONFIG_W		0x09
#define ADM1021_REG_CONV_RATE_R		0x04
#define ADM1021_REG_CONV_RATE_W		0x0A
/* These are for the ADM1023's additional precision on the remote temp sensor */
K
Krzysztof Helt 已提交
57 58 59 60 61
#define ADM1023_REG_REM_TEMP_PREC	0x10
#define ADM1023_REG_REM_OFFSET		0x11
#define ADM1023_REG_REM_OFFSET_PREC	0x12
#define ADM1023_REG_REM_TOS_PREC	0x13
#define ADM1023_REG_REM_THYST_PREC	0x14
L
Linus Torvalds 已提交
62
/* limits */
63 64 65 66 67
/* For nr in 0-1 */
#define ADM1021_REG_TOS_R(nr)		(0x05 + 2 * (nr))
#define ADM1021_REG_TOS_W(nr)		(0x0B + 2 * (nr))
#define ADM1021_REG_THYST_R(nr)		(0x06 + 2 * (nr))
#define ADM1021_REG_THYST_W(nr)		(0x0C + 2 * (nr))
L
Linus Torvalds 已提交
68 69 70 71 72
/* write-only */
#define ADM1021_REG_ONESHOT		0x0F

/* Initial values */

73 74 75 76 77 78
/*
 * Note: Even though I left the low and high limits named os and hyst,
 * they don't quite work like a thermostat the way the LM75 does.  I.e.,
 * a lower temp than THYST actually triggers an alarm instead of
 * clearing it.  Weird, ey?   --Phil
 */
L
Linus Torvalds 已提交
79 80 81

/* Each client has this additional data */
struct adm1021_data {
82
	struct i2c_client *client;
L
Linus Torvalds 已提交
83 84
	enum chips type;

85 86
	const struct attribute_group *groups[3];

87
	struct mutex update_lock;
L
Linus Torvalds 已提交
88
	char valid;		/* !=0 if following fields are valid */
89
	char low_power;		/* !=0 if device in low power mode */
L
Linus Torvalds 已提交
90 91
	unsigned long last_updated;	/* In jiffies */

92 93 94
	int temp_max[2];		/* Register values */
	int temp_min[2];
	int temp[2];
95 96 97 98
	u8 alarms;
	/* Special values for ADM1023 only */
	u8 remote_temp_offset;
	u8 remote_temp_offset_prec;
L
Linus Torvalds 已提交
99 100 101
};

/* (amalysh) read only mode, otherwise any limit's writing confuse BIOS */
102
static bool read_only;
L
Linus Torvalds 已提交
103

104 105 106 107
static struct adm1021_data *adm1021_update_device(struct device *dev)
{
	struct adm1021_data *data = dev_get_drvdata(dev);
	struct i2c_client *client = data->client;
L
Linus Torvalds 已提交
108

109
	mutex_lock(&data->update_lock);
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 148 149 150 151 152 153 154 155 156 157
	if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
	    || !data->valid) {
		int i;

		dev_dbg(dev, "Starting adm1021 update\n");

		for (i = 0; i < 2; i++) {
			data->temp[i] = 1000 *
				(s8) i2c_smbus_read_byte_data(
					client, ADM1021_REG_TEMP(i));
			data->temp_max[i] = 1000 *
				(s8) i2c_smbus_read_byte_data(
					client, ADM1021_REG_TOS_R(i));
			if (data->type != lm84) {
				data->temp_min[i] = 1000 *
				  (s8) i2c_smbus_read_byte_data(client,
							ADM1021_REG_THYST_R(i));
			}
		}
		data->alarms = i2c_smbus_read_byte_data(client,
						ADM1021_REG_STATUS) & 0x7c;
		if (data->type == adm1023) {
			/*
			 * The ADM1023 provides 3 extra bits of precision for
			 * the remote sensor in extra registers.
			 */
			data->temp[1] += 125 * (i2c_smbus_read_byte_data(
				client, ADM1023_REG_REM_TEMP_PREC) >> 5);
			data->temp_max[1] += 125 * (i2c_smbus_read_byte_data(
				client, ADM1023_REG_REM_TOS_PREC) >> 5);
			data->temp_min[1] += 125 * (i2c_smbus_read_byte_data(
				client, ADM1023_REG_REM_THYST_PREC) >> 5);
			data->remote_temp_offset =
				i2c_smbus_read_byte_data(client,
						ADM1023_REG_REM_OFFSET);
			data->remote_temp_offset_prec =
				i2c_smbus_read_byte_data(client,
						ADM1023_REG_REM_OFFSET_PREC);
		}
		data->last_updated = jiffies;
		data->valid = 1;
	}

	mutex_unlock(&data->update_lock);

	return data;
}
L
Linus Torvalds 已提交
158

159 160 161 162 163 164
static ssize_t show_temp(struct device *dev,
			 struct device_attribute *devattr, char *buf)
{
	int index = to_sensor_dev_attr(devattr)->index;
	struct adm1021_data *data = adm1021_update_device(dev);

165
	return sprintf(buf, "%d\n", data->temp[index]);
166 167 168 169 170 171 172 173
}

static ssize_t show_temp_max(struct device *dev,
			     struct device_attribute *devattr, char *buf)
{
	int index = to_sensor_dev_attr(devattr)->index;
	struct adm1021_data *data = adm1021_update_device(dev);

174
	return sprintf(buf, "%d\n", data->temp_max[index]);
175 176 177 178 179 180 181 182
}

static ssize_t show_temp_min(struct device *dev,
			     struct device_attribute *devattr, char *buf)
{
	int index = to_sensor_dev_attr(devattr)->index;
	struct adm1021_data *data = adm1021_update_device(dev);

183
	return sprintf(buf, "%d\n", data->temp_min[index]);
L
Linus Torvalds 已提交
184 185
}

186 187 188 189 190 191 192 193
static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
			  char *buf)
{
	int index = to_sensor_dev_attr(attr)->index;
	struct adm1021_data *data = adm1021_update_device(dev);
	return sprintf(buf, "%u\n", (data->alarms >> index) & 1);
}

K
Krzysztof Helt 已提交
194 195 196 197 198 199
static ssize_t show_alarms(struct device *dev,
			   struct device_attribute *attr,
			   char *buf)
{
	struct adm1021_data *data = adm1021_update_device(dev);
	return sprintf(buf, "%u\n", data->alarms);
L
Linus Torvalds 已提交
200
}
K
Krzysztof Helt 已提交
201

202 203 204 205 206
static ssize_t set_temp_max(struct device *dev,
			    struct device_attribute *devattr,
			    const char *buf, size_t count)
{
	int index = to_sensor_dev_attr(devattr)->index;
207 208
	struct adm1021_data *data = dev_get_drvdata(dev);
	struct i2c_client *client = data->client;
209
	long temp;
210
	int reg_val, err;
211 212 213 214 215

	err = kstrtol(buf, 10, &temp);
	if (err)
		return err;
	temp /= 1000;
216 217

	mutex_lock(&data->update_lock);
218 219
	reg_val = clamp_val(temp, -128, 127);
	data->temp_max[index] = reg_val * 1000;
220 221
	if (!read_only)
		i2c_smbus_write_byte_data(client, ADM1021_REG_TOS_W(index),
222
					  reg_val);
223 224 225 226 227 228 229 230 231 232
	mutex_unlock(&data->update_lock);

	return count;
}

static ssize_t set_temp_min(struct device *dev,
			    struct device_attribute *devattr,
			    const char *buf, size_t count)
{
	int index = to_sensor_dev_attr(devattr)->index;
233 234
	struct adm1021_data *data = dev_get_drvdata(dev);
	struct i2c_client *client = data->client;
235
	long temp;
236
	int reg_val, err;
237 238 239 240 241

	err = kstrtol(buf, 10, &temp);
	if (err)
		return err;
	temp /= 1000;
242 243

	mutex_lock(&data->update_lock);
244 245
	reg_val = clamp_val(temp, -128, 127);
	data->temp_min[index] = reg_val * 1000;
246 247
	if (!read_only)
		i2c_smbus_write_byte_data(client, ADM1021_REG_THYST_W(index),
248
					  reg_val);
249 250 251
	mutex_unlock(&data->update_lock);

	return count;
L
Linus Torvalds 已提交
252 253
}

254 255 256 257 258 259 260 261 262 263 264
static ssize_t show_low_power(struct device *dev,
			      struct device_attribute *devattr, char *buf)
{
	struct adm1021_data *data = adm1021_update_device(dev);
	return sprintf(buf, "%d\n", data->low_power);
}

static ssize_t set_low_power(struct device *dev,
			     struct device_attribute *devattr,
			     const char *buf, size_t count)
{
265 266
	struct adm1021_data *data = dev_get_drvdata(dev);
	struct i2c_client *client = data->client;
267 268 269 270 271 272 273 274
	char low_power;
	unsigned long val;
	int err;

	err = kstrtoul(buf, 10, &val);
	if (err)
		return err;
	low_power = val != 0;
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289

	mutex_lock(&data->update_lock);
	if (low_power != data->low_power) {
		int config = i2c_smbus_read_byte_data(
			client, ADM1021_REG_CONFIG_R);
		data->low_power = low_power;
		i2c_smbus_write_byte_data(client, ADM1021_REG_CONFIG_W,
			(config & 0xBF) | (low_power << 6));
	}
	mutex_unlock(&data->update_lock);

	return count;
}


290 291 292 293 294 295 296 297 298 299
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, 0);
static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp_max,
			  set_temp_max, 0);
static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp_min,
			  set_temp_min, 0);
static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp, NULL, 1);
static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp_max,
			  set_temp_max, 1);
static SENSOR_DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp_min,
			  set_temp_min, 1);
300 301 302 303 304 305
static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 5);
static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);

306
static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
307
static DEVICE_ATTR(low_power, S_IWUSR | S_IRUGO, show_low_power, set_low_power);
L
Linus Torvalds 已提交
308

309
static struct attribute *adm1021_attributes[] = {
310 311 312 313
	&sensor_dev_attr_temp1_max.dev_attr.attr,
	&sensor_dev_attr_temp1_input.dev_attr.attr,
	&sensor_dev_attr_temp2_max.dev_attr.attr,
	&sensor_dev_attr_temp2_input.dev_attr.attr,
314 315 316
	&sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
	&sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
	&sensor_dev_attr_temp2_fault.dev_attr.attr,
317
	&dev_attr_alarms.attr,
318
	&dev_attr_low_power.attr,
319 320 321 322 323 324 325
	NULL
};

static const struct attribute_group adm1021_group = {
	.attrs = adm1021_attributes,
};

326 327 328 329 330 331 332 333 334 335 336 337
static struct attribute *adm1021_min_attributes[] = {
	&sensor_dev_attr_temp1_min.dev_attr.attr,
	&sensor_dev_attr_temp2_min.dev_attr.attr,
	&sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
	&sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
	NULL
};

static const struct attribute_group adm1021_min_group = {
	.attrs = adm1021_min_attributes,
};

338
/* Return 0 if detection is successful, -ENODEV otherwise */
339
static int adm1021_detect(struct i2c_client *client,
340
			  struct i2c_board_info *info)
L
Linus Torvalds 已提交
341
{
342
	struct i2c_adapter *adapter = client->adapter;
343 344
	const char *type_name;
	int conv_rate, status, config, man_id, dev_id;
L
Linus Torvalds 已提交
345

K
Krzysztof Helt 已提交
346
	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
347
		pr_debug("detect failed, smbus byte data not supported!\n");
348
		return -ENODEV;
L
Linus Torvalds 已提交
349 350
	}

K
Krzysztof Helt 已提交
351 352 353 354
	status = i2c_smbus_read_byte_data(client, ADM1021_REG_STATUS);
	conv_rate = i2c_smbus_read_byte_data(client,
					     ADM1021_REG_CONV_RATE_R);
	config = i2c_smbus_read_byte_data(client, ADM1021_REG_CONFIG_R);
L
Linus Torvalds 已提交
355

356 357
	/* Check unused bits */
	if ((status & 0x03) || (config & 0x3F) || (conv_rate & 0xF8)) {
358
		pr_debug("detect failed, chip not detected!\n");
359
		return -ENODEV;
L
Linus Torvalds 已提交
360 361 362
	}

	/* Determine the chip type. */
363 364
	man_id = i2c_smbus_read_byte_data(client, ADM1021_REG_MAN_ID);
	dev_id = i2c_smbus_read_byte_data(client, ADM1021_REG_DEV_ID);
L
Linus Torvalds 已提交
365

366 367 368
	if (man_id < 0 || dev_id < 0)
		return -ENODEV;

369
	if (man_id == 0x4d && dev_id == 0x01)
L
Linus Torvalds 已提交
370
		type_name = "max1617a";
371 372 373
	else if (man_id == 0x41) {
		if ((dev_id & 0xF0) == 0x30)
			type_name = "adm1023";
374
		else if ((dev_id & 0xF0) == 0x00)
375
			type_name = "adm1021";
376 377
		else
			return -ENODEV;
378
	} else if (man_id == 0x49)
L
Linus Torvalds 已提交
379
		type_name = "thmc10";
380
	else if (man_id == 0x23)
L
Linus Torvalds 已提交
381
		type_name = "gl523sm";
382
	else if (man_id == 0x54)
L
Linus Torvalds 已提交
383
		type_name = "mc1066";
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
	else {
		int lte, rte, lhi, rhi, llo, rlo;

		/* extra checks for LM84 and MAX1617 to avoid misdetections */

		llo = i2c_smbus_read_byte_data(client, ADM1021_REG_THYST_R(0));
		rlo = i2c_smbus_read_byte_data(client, ADM1021_REG_THYST_R(1));

		/* fail if any of the additional register reads failed */
		if (llo < 0 || rlo < 0)
			return -ENODEV;

		lte = i2c_smbus_read_byte_data(client, ADM1021_REG_TEMP(0));
		rte = i2c_smbus_read_byte_data(client, ADM1021_REG_TEMP(1));
		lhi = i2c_smbus_read_byte_data(client, ADM1021_REG_TOS_R(0));
		rhi = i2c_smbus_read_byte_data(client, ADM1021_REG_TOS_R(1));

		/*
		 * Fail for negative temperatures and negative high limits.
		 * This check also catches read errors on the tested registers.
		 */
		if ((s8)lte < 0 || (s8)rte < 0 || (s8)lhi < 0 || (s8)rhi < 0)
			return -ENODEV;

		/* fail if all registers hold the same value */
		if (lte == rte && lte == lhi && lte == rhi && lte == llo
		    && lte == rlo)
			return -ENODEV;

		/*
		 * LM84 Mfr ID is in a different place,
		 * and it has more unused bits.
		 */
		if (conv_rate == 0x00
		    && (config & 0x7F) == 0x00
		    && (status & 0xAB) == 0x00) {
			type_name = "lm84";
		} else {
			/* fail if low limits are larger than high limits */
			if ((s8)llo > lhi || (s8)rlo > rhi)
				return -ENODEV;
			type_name = "max1617";
		}
	}
428

429
	pr_debug("Detected chip %s at adapter %d, address 0x%02x.\n",
430 431
		 type_name, i2c_adapter_id(adapter), client->addr);
	strlcpy(info->type, type_name, I2C_NAME_SIZE);
L
Linus Torvalds 已提交
432

433 434
	return 0;
}
L
Linus Torvalds 已提交
435

436 437 438 439 440 441 442 443 444
static void adm1021_init_client(struct i2c_client *client)
{
	/* Enable ADC and disable suspend mode */
	i2c_smbus_write_byte_data(client, ADM1021_REG_CONFIG_W,
		i2c_smbus_read_byte_data(client, ADM1021_REG_CONFIG_R) & 0xBF);
	/* Set Conversion rate to 1/sec (this can be tinkered with) */
	i2c_smbus_write_byte_data(client, ADM1021_REG_CONV_RATE_W, 0x04);
}

445 446 447
static int adm1021_probe(struct i2c_client *client,
			 const struct i2c_device_id *id)
{
448
	struct device *dev = &client->dev;
449
	struct adm1021_data *data;
450
	struct device *hwmon_dev;
451

452
	data = devm_kzalloc(dev, sizeof(struct adm1021_data), GFP_KERNEL);
453
	if (!data)
454
		return -ENOMEM;
455

456
	data->client = client;
457 458
	data->type = id->driver_data;
	mutex_init(&data->update_lock);
L
Linus Torvalds 已提交
459 460

	/* Initialize the ADM1021 chip */
461
	if (data->type != lm84 && !read_only)
K
Krzysztof Helt 已提交
462
		adm1021_init_client(client);
L
Linus Torvalds 已提交
463

464 465 466
	data->groups[0] = &adm1021_group;
	if (data->type != lm84)
		data->groups[1] = &adm1021_min_group;
467

468 469
	hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
							   data, data->groups);
470

471
	return PTR_ERR_OR_ZERO(hwmon_dev);
L
Linus Torvalds 已提交
472 473
}

474 475 476 477 478 479 480 481 482 483 484 485
static const struct i2c_device_id adm1021_id[] = {
	{ "adm1021", adm1021 },
	{ "adm1023", adm1023 },
	{ "max1617", max1617 },
	{ "max1617a", max1617a },
	{ "thmc10", thmc10 },
	{ "lm84", lm84 },
	{ "gl523sm", gl523sm },
	{ "mc1066", mc1066 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, adm1021_id);
L
Linus Torvalds 已提交
486

487 488 489 490 491 492 493 494 495 496
static struct i2c_driver adm1021_driver = {
	.class		= I2C_CLASS_HWMON,
	.driver = {
		.name	= "adm1021",
	},
	.probe		= adm1021_probe,
	.id_table	= adm1021_id,
	.detect		= adm1021_detect,
	.address_list	= normal_i2c,
};
L
Linus Torvalds 已提交
497

498
module_i2c_driver(adm1021_driver);
L
Linus Torvalds 已提交
499

500
MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and "
L
Linus Torvalds 已提交
501 502 503 504 505 506
		"Philip Edelbrock <phil@netroedge.com>");
MODULE_DESCRIPTION("adm1021 driver");
MODULE_LICENSE("GPL");

module_param(read_only, bool, 0);
MODULE_PARM_DESC(read_only, "Don't set any values, read only mode");