adm1021.c 13.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
    adm1021.c - Part of lm_sensors, Linux kernel modules for hardware
K
Krzysztof Helt 已提交
3
		monitoring
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
    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.
*/

#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 37

/* Insmod parameters */
K
Krzysztof Helt 已提交
38 39
I2C_CLIENT_INSMOD_8(adm1021, adm1023, max1617, max1617a, thmc10, lm84, gl523sm,
			mc1066);
L
Linus Torvalds 已提交
40 41 42 43 44

/* adm1021 constants specified below */

/* The adm1021 registers */
/* Read-only */
45 46
/* For nr in 0-1 */
#define ADM1021_REG_TEMP(nr)		(nr)
L
Linus Torvalds 已提交
47
#define ADM1021_REG_STATUS		0x02
K
Krzysztof Helt 已提交
48 49 50 51
/* 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 已提交
52 53 54 55 56 57
/* 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 已提交
58 59 60 61 62
#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 已提交
63
/* limits */
64 65 66 67 68
/* 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 已提交
69 70 71 72 73
/* write-only */
#define ADM1021_REG_ONESHOT		0x0F

/* Initial values */

K
Krzysztof Helt 已提交
74 75 76
/* 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
L
Linus Torvalds 已提交
77 78 79 80 81
clearing it.  Weird, ey?   --Phil  */

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

85
	struct mutex update_lock;
L
Linus Torvalds 已提交
86 87 88
	char valid;		/* !=0 if following fields are valid */
	unsigned long last_updated;	/* In jiffies */

89 90 91 92 93 94 95 96 97 98
	s8 temp_max[2];		/* Register values */
	s8 temp_min[2];
	s8 temp[2];
	u8 alarms;
	/* Special values for ADM1023 only */
	u8 remote_temp_prec;
	u8 remote_temp_os_prec;
	u8 remote_temp_hyst_prec;
	u8 remote_temp_offset;
	u8 remote_temp_offset_prec;
L
Linus Torvalds 已提交
99 100 101 102 103 104 105 106 107
};

static int adm1021_attach_adapter(struct i2c_adapter *adapter);
static int adm1021_detect(struct i2c_adapter *adapter, int address, int kind);
static void adm1021_init_client(struct i2c_client *client);
static int adm1021_detach_client(struct i2c_client *client);
static struct adm1021_data *adm1021_update_device(struct device *dev);

/* (amalysh) read only mode, otherwise any limit's writing confuse BIOS */
108
static int read_only;
L
Linus Torvalds 已提交
109 110 111 112


/* This is the driver that will be inserted */
static struct i2c_driver adm1021_driver = {
113 114 115
	.driver = {
		.name	= "adm1021",
	},
L
Linus Torvalds 已提交
116 117 118 119
	.attach_adapter	= adm1021_attach_adapter,
	.detach_client	= adm1021_detach_client,
};

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

	return sprintf(buf, "%d\n", 1000 * data->temp[index]);
}

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

	return sprintf(buf, "%d\n", 1000 * data->temp_max[index]);
}

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

	return sprintf(buf, "%d\n", 1000 * data->temp_min[index]);
L
Linus Torvalds 已提交
145 146
}

147 148 149 150 151 152 153 154
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 已提交
155 156 157 158 159 160
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 已提交
161
}
K
Krzysztof Helt 已提交
162

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 191 192 193 194 195 196 197 198
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;
	struct i2c_client *client = to_i2c_client(dev);
	struct adm1021_data *data = i2c_get_clientdata(client);
	long temp = simple_strtol(buf, NULL, 10) / 1000;

	mutex_lock(&data->update_lock);
	data->temp_max[index] = SENSORS_LIMIT(temp, -128, 127);
	if (!read_only)
		i2c_smbus_write_byte_data(client, ADM1021_REG_TOS_W(index),
					  data->temp_max[index]);
	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;
	struct i2c_client *client = to_i2c_client(dev);
	struct adm1021_data *data = i2c_get_clientdata(client);
	long temp = simple_strtol(buf, NULL, 10) / 1000;

	mutex_lock(&data->update_lock);
	data->temp_min[index] = SENSORS_LIMIT(temp, -128, 127);
	if (!read_only)
		i2c_smbus_write_byte_data(client, ADM1021_REG_THYST_W(index),
					  data->temp_min[index]);
	mutex_unlock(&data->update_lock);

	return count;
L
Linus Torvalds 已提交
199 200
}

201 202 203 204 205 206 207 208 209 210
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);
211 212 213 214 215 216
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);

217
static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
L
Linus Torvalds 已提交
218 219 220 221 222

static int adm1021_attach_adapter(struct i2c_adapter *adapter)
{
	if (!(adapter->class & I2C_CLASS_HWMON))
		return 0;
223
	return i2c_probe(adapter, &addr_data, adm1021_detect);
L
Linus Torvalds 已提交
224 225
}

226
static struct attribute *adm1021_attributes[] = {
227 228 229 230 231 232
	&sensor_dev_attr_temp1_max.dev_attr.attr,
	&sensor_dev_attr_temp1_min.dev_attr.attr,
	&sensor_dev_attr_temp1_input.dev_attr.attr,
	&sensor_dev_attr_temp2_max.dev_attr.attr,
	&sensor_dev_attr_temp2_min.dev_attr.attr,
	&sensor_dev_attr_temp2_input.dev_attr.attr,
233 234 235 236 237
	&sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
	&sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
	&sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
	&sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
	&sensor_dev_attr_temp2_fault.dev_attr.attr,
238 239 240 241 242 243 244 245
	&dev_attr_alarms.attr,
	NULL
};

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

L
Linus Torvalds 已提交
246 247 248
static int adm1021_detect(struct i2c_adapter *adapter, int address, int kind)
{
	int i;
K
Krzysztof Helt 已提交
249
	struct i2c_client *client;
L
Linus Torvalds 已提交
250 251 252
	struct adm1021_data *data;
	int err = 0;
	const char *type_name = "";
K
Krzysztof Helt 已提交
253
	int conv_rate, status, config;
L
Linus Torvalds 已提交
254

K
Krzysztof Helt 已提交
255 256 257
	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
		pr_debug("adm1021: detect failed, "
			 "smbus byte data not supported!\n");
L
Linus Torvalds 已提交
258
		goto error0;
K
Krzysztof Helt 已提交
259
	}
L
Linus Torvalds 已提交
260 261 262

	/* OK. For now, we presume we have a valid client. We now create the
	   client structure, even though we cannot fill it completely yet.
K
Krzysztof Helt 已提交
263
	   But it allows us to access adm1021 register values. */
L
Linus Torvalds 已提交
264

D
Deepak Saxena 已提交
265
	if (!(data = kzalloc(sizeof(struct adm1021_data), GFP_KERNEL))) {
K
Krzysztof Helt 已提交
266
		pr_debug("adm1021: detect failed, kzalloc failed!\n");
L
Linus Torvalds 已提交
267 268 269 270
		err = -ENOMEM;
		goto error0;
	}

K
Krzysztof Helt 已提交
271 272 273 274 275 276 277 278 279
	client = &data->client;
	i2c_set_clientdata(client, data);
	client->addr = address;
	client->adapter = adapter;
	client->driver = &adm1021_driver;
	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 已提交
280 281 282

	/* Now, we do the remaining detection. */
	if (kind < 0) {
K
Krzysztof Helt 已提交
283 284 285 286
		if ((status & 0x03) != 0x00 || (config & 0x3F) != 0x00
		    || (conv_rate & 0xF8) != 0x00) {
			pr_debug("adm1021: detect failed, "
				 "chip not detected!\n");
L
Linus Torvalds 已提交
287 288 289 290 291 292 293
			err = -ENODEV;
			goto error1;
		}
	}

	/* Determine the chip type. */
	if (kind <= 0) {
K
Krzysztof Helt 已提交
294
		i = i2c_smbus_read_byte_data(client, ADM1021_REG_MAN_ID);
L
Linus Torvalds 已提交
295
		if (i == 0x41)
K
Krzysztof Helt 已提交
296 297
			if ((i2c_smbus_read_byte_data(client,
					ADM1021_REG_DEV_ID) & 0xF0) == 0x30)
L
Linus Torvalds 已提交
298 299 300 301 302 303 304 305
				kind = adm1023;
			else
				kind = adm1021;
		else if (i == 0x49)
			kind = thmc10;
		else if (i == 0x23)
			kind = gl523sm;
		else if ((i == 0x4d) &&
K
Krzysztof Helt 已提交
306 307
			 (i2c_smbus_read_byte_data(client,
						   ADM1021_REG_DEV_ID) == 0x01))
L
Linus Torvalds 已提交
308 309 310 311
			kind = max1617a;
		else if (i == 0x54)
			kind = mc1066;
		/* LM84 Mfr ID in a different place, and it has more unused bits */
K
Krzysztof Helt 已提交
312 313 314 315
		else if (conv_rate == 0x00
			 && (kind == 0 /* skip extra detection */
			     || ((config & 0x7F) == 0x00
				 && (status & 0xAB) == 0x00)))
L
Linus Torvalds 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
			kind = lm84;
		else
			kind = max1617;
	}

	if (kind == max1617) {
		type_name = "max1617";
	} else if (kind == max1617a) {
		type_name = "max1617a";
	} else if (kind == adm1021) {
		type_name = "adm1021";
	} else if (kind == adm1023) {
		type_name = "adm1023";
	} else if (kind == thmc10) {
		type_name = "thmc10";
	} else if (kind == lm84) {
		type_name = "lm84";
	} else if (kind == gl523sm) {
		type_name = "gl523sm";
	} else if (kind == mc1066) {
		type_name = "mc1066";
	}
K
Krzysztof Helt 已提交
338 339
	pr_debug("adm1021: Detected chip %s at adapter %d, address 0x%02x.\n",
		 type_name, i2c_adapter_id(adapter), address);
L
Linus Torvalds 已提交
340

K
Krzysztof Helt 已提交
341 342
	/* Fill in the remaining client fields */
	strlcpy(client->name, type_name, I2C_NAME_SIZE);
L
Linus Torvalds 已提交
343
	data->type = kind;
344
	mutex_init(&data->update_lock);
L
Linus Torvalds 已提交
345 346

	/* Tell the I2C layer a new client has arrived */
K
Krzysztof Helt 已提交
347
	if ((err = i2c_attach_client(client)))
L
Linus Torvalds 已提交
348 349 350
		goto error1;

	/* Initialize the ADM1021 chip */
K
Krzysztof Helt 已提交
351 352
	if (kind != lm84 && !read_only)
		adm1021_init_client(client);
L
Linus Torvalds 已提交
353 354

	/* Register sysfs hooks */
K
Krzysztof Helt 已提交
355
	if ((err = sysfs_create_group(&client->dev.kobj, &adm1021_group)))
356 357
		goto error2;

358 359 360
	data->hwmon_dev = hwmon_device_register(&client->dev);
	if (IS_ERR(data->hwmon_dev)) {
		err = PTR_ERR(data->hwmon_dev);
361
		goto error3;
362 363
	}

L
Linus Torvalds 已提交
364 365
	return 0;

366
error3:
K
Krzysztof Helt 已提交
367
	sysfs_remove_group(&client->dev.kobj, &adm1021_group);
368
error2:
K
Krzysztof Helt 已提交
369
	i2c_detach_client(client);
L
Linus Torvalds 已提交
370 371 372 373 374 375 376 377 378
error1:
	kfree(data);
error0:
	return err;
}

static void adm1021_init_client(struct i2c_client *client)
{
	/* Enable ADC and disable suspend mode */
K
Krzysztof Helt 已提交
379 380
	i2c_smbus_write_byte_data(client, ADM1021_REG_CONFIG_W,
		i2c_smbus_read_byte_data(client, ADM1021_REG_CONFIG_R) & 0xBF);
L
Linus Torvalds 已提交
381
	/* Set Conversion rate to 1/sec (this can be tinkered with) */
K
Krzysztof Helt 已提交
382
	i2c_smbus_write_byte_data(client, ADM1021_REG_CONV_RATE_W, 0x04);
L
Linus Torvalds 已提交
383 384 385 386
}

static int adm1021_detach_client(struct i2c_client *client)
{
387
	struct adm1021_data *data = i2c_get_clientdata(client);
L
Linus Torvalds 已提交
388 389
	int err;

390
	hwmon_device_unregister(data->hwmon_dev);
391
	sysfs_remove_group(&client->dev.kobj, &adm1021_group);
392

393
	if ((err = i2c_detach_client(client)))
L
Linus Torvalds 已提交
394 395
		return err;

396
	kfree(data);
L
Linus Torvalds 已提交
397 398 399 400 401 402 403 404
	return 0;
}

static struct adm1021_data *adm1021_update_device(struct device *dev)
{
	struct i2c_client *client = to_i2c_client(dev);
	struct adm1021_data *data = i2c_get_clientdata(client);

405
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
406 407 408

	if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
	    || !data->valid) {
409 410
		int i;

L
Linus Torvalds 已提交
411 412
		dev_dbg(&client->dev, "Starting adm1021 update\n");

413 414 415 416 417 418 419 420
		for (i = 0; i < 2; i++) {
			data->temp[i] = i2c_smbus_read_byte_data(client,
						ADM1021_REG_TEMP(i));
			data->temp_max[i] = i2c_smbus_read_byte_data(client,
						ADM1021_REG_TOS_R(i));
			data->temp_min[i] = i2c_smbus_read_byte_data(client,
						ADM1021_REG_THYST_R(i));
		}
K
Krzysztof Helt 已提交
421 422
		data->alarms = i2c_smbus_read_byte_data(client,
						ADM1021_REG_STATUS) & 0x7c;
L
Linus Torvalds 已提交
423
		if (data->type == adm1023) {
K
Krzysztof Helt 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
			data->remote_temp_prec =
				i2c_smbus_read_byte_data(client,
						ADM1023_REG_REM_TEMP_PREC);
			data->remote_temp_os_prec =
				i2c_smbus_read_byte_data(client,
						ADM1023_REG_REM_TOS_PREC);
			data->remote_temp_hyst_prec =
				i2c_smbus_read_byte_data(client,
						ADM1023_REG_REM_THYST_PREC);
			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);
L
Linus Torvalds 已提交
439 440 441 442 443
		}
		data->last_updated = jiffies;
		data->valid = 1;
	}

444
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468

	return data;
}

static int __init sensors_adm1021_init(void)
{
	return i2c_add_driver(&adm1021_driver);
}

static void __exit sensors_adm1021_exit(void)
{
	i2c_del_driver(&adm1021_driver);
}

MODULE_AUTHOR ("Frodo Looijaard <frodol@dds.nl> and "
		"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");

module_init(sensors_adm1021_init)
module_exit(sensors_adm1021_exit)