smsc47m1.c 25.0 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 21 22 23 24 25 26 27
 * smsc47m1.c - Part of lm_sensors, Linux kernel modules
 *		for hardware monitoring
 *
 * Supports the SMSC LPC47B27x, LPC47M10x, LPC47M112, LPC47M13x,
 * LPC47M14x, LPC47M15x, LPC47M192, LPC47M292 and LPC47M997
 * Super-I/O chips.
 *
 * Copyright (C) 2002 Mark D. Studebaker <mdsxyz123@yahoo.com>
 * Copyright (C) 2004-2007 Jean Delvare <khali@linux-fr.org>
 * Ported to Linux 2.6 by Gabriele Gorla <gorlik@yahoo.com>
 *			and Jean Delvare
 *
 * 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 已提交
28

29 30
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

L
Linus Torvalds 已提交
31 32 33 34
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/ioport.h>
#include <linux/jiffies.h>
35
#include <linux/platform_device.h>
36
#include <linux/hwmon.h>
37
#include <linux/hwmon-sysfs.h>
38
#include <linux/err.h>
L
Linus Torvalds 已提交
39
#include <linux/init.h>
40
#include <linux/mutex.h>
41
#include <linux/sysfs.h>
42
#include <linux/acpi.h>
43
#include <linux/io.h>
L
Linus Torvalds 已提交
44

45 46 47 48
static unsigned short force_id;
module_param(force_id, ushort, 0);
MODULE_PARM_DESC(force_id, "Override the detected device ID");

49 50 51
static struct platform_device *pdev;

#define DRVNAME "smsc47m1"
52
enum chips { smsc47m1, smsc47m2 };
L
Linus Torvalds 已提交
53 54 55

/* Super-I/0 registers and commands */

56 57
#define REG	0x2e	/* The register to read/write */
#define VAL	0x2f	/* The value to read/write */
L
Linus Torvalds 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90

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

/* logical device for fans is 0x0A */
#define superio_select() superio_outb(0x07, 0x0A)

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

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

#define SUPERIO_REG_ACT		0x30
#define SUPERIO_REG_BASE	0x60
#define SUPERIO_REG_DEVID	0x20
91
#define SUPERIO_REG_DEVREV	0x21
L
Linus Torvalds 已提交
92 93 94 95 96 97 98 99 100 101

/* Logical device registers */

#define SMSC_EXTENT		0x80

/* nr is 0 or 1 in the macros below */
#define SMSC47M1_REG_ALARM		0x04
#define SMSC47M1_REG_TPIN(nr)		(0x34 - (nr))
#define SMSC47M1_REG_PPIN(nr)		(0x36 - (nr))
#define SMSC47M1_REG_FANDIV		0x58
102 103 104 105 106 107 108 109 110 111 112

static const u8 SMSC47M1_REG_FAN[3]		= { 0x59, 0x5a, 0x6b };
static const u8 SMSC47M1_REG_FAN_PRELOAD[3]	= { 0x5b, 0x5c, 0x6c };
static const u8 SMSC47M1_REG_PWM[3]		= { 0x56, 0x57, 0x69 };

#define SMSC47M2_REG_ALARM6		0x09
#define SMSC47M2_REG_TPIN1		0x38
#define SMSC47M2_REG_TPIN2		0x37
#define SMSC47M2_REG_TPIN3		0x2d
#define SMSC47M2_REG_PPIN3		0x2c
#define SMSC47M2_REG_FANDIV3		0x6a
L
Linus Torvalds 已提交
113

114 115 116 117 118
#define MIN_FROM_REG(reg, div)		((reg) >= 192 ? 0 : \
					 983040 / ((192 - (reg)) * (div)))
#define FAN_FROM_REG(reg, div, preload)	((reg) <= (preload) || (reg) == 255 ? \
					 0 : \
					 983040 / (((reg) - (preload)) * (div)))
L
Linus Torvalds 已提交
119 120 121 122 123 124
#define DIV_FROM_REG(reg)		(1 << (reg))
#define PWM_FROM_REG(reg)		(((reg) & 0x7E) << 1)
#define PWM_EN_FROM_REG(reg)		((~(reg)) & 0x01)
#define PWM_TO_REG(reg)			(((reg) >> 1) & 0x7E)

struct smsc47m1_data {
125 126
	unsigned short addr;
	const char *name;
127
	enum chips type;
128
	struct device *hwmon_dev;
L
Linus Torvalds 已提交
129

130
	struct mutex update_lock;
L
Linus Torvalds 已提交
131 132
	unsigned long last_updated;	/* In jiffies */

133 134 135
	u8 fan[3];		/* Register value */
	u8 fan_preload[3];	/* Register value */
	u8 fan_div[3];		/* Register encoding, shifted right */
L
Linus Torvalds 已提交
136
	u8 alarms;		/* Register encoding */
137
	u8 pwm[3];		/* Register value (bit 0 is disable) */
L
Linus Torvalds 已提交
138 139
};

140 141
struct smsc47m1_sio_data {
	enum chips type;
142
	u8 activate;		/* Remember initial device state */
143
};
L
Linus Torvalds 已提交
144

145

146
static int __exit smsc47m1_remove(struct platform_device *pdev);
L
Linus Torvalds 已提交
147 148 149
static struct smsc47m1_data *smsc47m1_update_device(struct device *dev,
		int init);

150
static inline int smsc47m1_read_value(struct smsc47m1_data *data, u8 reg)
151
{
152
	return inb_p(data->addr + reg);
153 154
}

155
static inline void smsc47m1_write_value(struct smsc47m1_data *data, u8 reg,
156 157
		u8 value)
{
158
	outb_p(value, data->addr + reg);
159
}
L
Linus Torvalds 已提交
160

161
static struct platform_driver smsc47m1_driver = {
162
	.driver = {
J
Jean Delvare 已提交
163
		.owner	= THIS_MODULE,
164
		.name	= DRVNAME,
165
	},
166
	.remove		= __exit_p(smsc47m1_remove),
L
Linus Torvalds 已提交
167 168
};

169 170
static ssize_t get_fan(struct device *dev, struct device_attribute
		       *devattr, char *buf)
L
Linus Torvalds 已提交
171
{
172
	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
L
Linus Torvalds 已提交
173
	struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
174
	int nr = attr->index;
175 176 177 178 179 180
	/*
	 * This chip (stupidly) stops monitoring fan speed if PWM is
	 * enabled and duty cycle is 0%. This is fine if the monitoring
	 * and control concern the same fan, but troublesome if they are
	 * not (which could as well happen).
	 */
L
Linus Torvalds 已提交
181 182 183 184 185 186 187
	int rpm = (data->pwm[nr] & 0x7F) == 0x00 ? 0 :
		  FAN_FROM_REG(data->fan[nr],
			       DIV_FROM_REG(data->fan_div[nr]),
			       data->fan_preload[nr]);
	return sprintf(buf, "%d\n", rpm);
}

188 189
static ssize_t get_fan_min(struct device *dev, struct device_attribute
			   *devattr, char *buf)
L
Linus Torvalds 已提交
190
{
191
	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
L
Linus Torvalds 已提交
192
	struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
193
	int nr = attr->index;
L
Linus Torvalds 已提交
194 195 196 197 198
	int rpm = MIN_FROM_REG(data->fan_preload[nr],
			       DIV_FROM_REG(data->fan_div[nr]));
	return sprintf(buf, "%d\n", rpm);
}

199 200
static ssize_t get_fan_div(struct device *dev, struct device_attribute
			   *devattr, char *buf)
L
Linus Torvalds 已提交
201
{
202
	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
L
Linus Torvalds 已提交
203
	struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
204
	return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[attr->index]));
L
Linus Torvalds 已提交
205 206
}

207 208 209 210 211 212 213 214
static ssize_t get_fan_alarm(struct device *dev, struct device_attribute
			     *devattr, char *buf)
{
	int bitnr = to_sensor_dev_attr(devattr)->index;
	struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
	return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
}

215 216
static ssize_t get_pwm(struct device *dev, struct device_attribute
		       *devattr, char *buf)
L
Linus Torvalds 已提交
217
{
218
	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
L
Linus Torvalds 已提交
219
	struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
220
	return sprintf(buf, "%d\n", PWM_FROM_REG(data->pwm[attr->index]));
L
Linus Torvalds 已提交
221 222
}

223 224
static ssize_t get_pwm_en(struct device *dev, struct device_attribute
			  *devattr, char *buf)
L
Linus Torvalds 已提交
225
{
226
	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
L
Linus Torvalds 已提交
227
	struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
228
	return sprintf(buf, "%d\n", PWM_EN_FROM_REG(data->pwm[attr->index]));
L
Linus Torvalds 已提交
229 230
}

231 232
static ssize_t get_alarms(struct device *dev, struct device_attribute
			  *devattr, char *buf)
L
Linus Torvalds 已提交
233 234 235 236 237
{
	struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
	return sprintf(buf, "%d\n", data->alarms);
}

238 239
static ssize_t set_fan_min(struct device *dev, struct device_attribute
			   *devattr, const char *buf, size_t count)
L
Linus Torvalds 已提交
240
{
241
	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
242
	struct smsc47m1_data *data = dev_get_drvdata(dev);
243
	int nr = attr->index;
244 245 246 247 248 249 250
	long rpmdiv;
	long val;
	int err;

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

252
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
253 254 255
	rpmdiv = val * DIV_FROM_REG(data->fan_div[nr]);

	if (983040 > 192 * rpmdiv || 2 * rpmdiv > 983040) {
256
		mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
257 258 259 260
		return -EINVAL;
	}

	data->fan_preload[nr] = 192 - ((983040 + rpmdiv / 2) / rpmdiv);
261
	smsc47m1_write_value(data, SMSC47M1_REG_FAN_PRELOAD[nr],
L
Linus Torvalds 已提交
262
			     data->fan_preload[nr]);
263
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
264 265 266 267

	return count;
}

268 269 270 271 272 273
/*
 * 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.
 */
274 275
static ssize_t set_fan_div(struct device *dev, struct device_attribute
			   *devattr, const char *buf, size_t count)
L
Linus Torvalds 已提交
276
{
277
	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
278
	struct smsc47m1_data *data = dev_get_drvdata(dev);
279
	int nr = attr->index;
280 281 282
	long new_div;
	int err;
	long tmp;
L
Linus Torvalds 已提交
283 284
	u8 old_div = DIV_FROM_REG(data->fan_div[nr]);

285 286 287 288
	err = kstrtol(buf, 10, &new_div);
	if (err)
		return err;

L
Linus Torvalds 已提交
289 290 291
	if (new_div == old_div) /* No change */
		return count;

292
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
293
	switch (new_div) {
294 295 296 297 298 299 300 301 302 303 304 305
	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 已提交
306
	default:
307
		mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
308 309 310
		return -EINVAL;
	}

311 312 313
	switch (nr) {
	case 0:
	case 1:
314
		tmp = smsc47m1_read_value(data, SMSC47M1_REG_FANDIV)
315 316
		      & ~(0x03 << (4 + 2 * nr));
		tmp |= data->fan_div[nr] << (4 + 2 * nr);
317
		smsc47m1_write_value(data, SMSC47M1_REG_FANDIV, tmp);
318 319
		break;
	case 2:
320
		tmp = smsc47m1_read_value(data, SMSC47M2_REG_FANDIV3) & 0xCF;
321
		tmp |= data->fan_div[2] << 4;
322
		smsc47m1_write_value(data, SMSC47M2_REG_FANDIV3, tmp);
323 324
		break;
	}
L
Linus Torvalds 已提交
325 326 327 328 329

	/* Preserve fan min */
	tmp = 192 - (old_div * (192 - data->fan_preload[nr])
		     + new_div / 2) / new_div;
	data->fan_preload[nr] = SENSORS_LIMIT(tmp, 0, 191);
330
	smsc47m1_write_value(data, SMSC47M1_REG_FAN_PRELOAD[nr],
L
Linus Torvalds 已提交
331
			     data->fan_preload[nr]);
332
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
333 334 335 336

	return count;
}

337 338
static ssize_t set_pwm(struct device *dev, struct device_attribute
		       *devattr, const char *buf, size_t count)
L
Linus Torvalds 已提交
339
{
340
	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
341
	struct smsc47m1_data *data = dev_get_drvdata(dev);
342
	int nr = attr->index;
343 344 345 346 347 348
	long val;
	int err;

	err = kstrtol(buf, 10, &val);
	if (err)
		return err;
L
Linus Torvalds 已提交
349 350 351 352

	if (val < 0 || val > 255)
		return -EINVAL;

353
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
354 355
	data->pwm[nr] &= 0x81; /* Preserve additional bits */
	data->pwm[nr] |= PWM_TO_REG(val);
356
	smsc47m1_write_value(data, SMSC47M1_REG_PWM[nr],
L
Linus Torvalds 已提交
357
			     data->pwm[nr]);
358
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
359 360 361 362

	return count;
}

363 364
static ssize_t set_pwm_en(struct device *dev, struct device_attribute
			  *devattr, const char *buf, size_t count)
L
Linus Torvalds 已提交
365
{
366
	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
367
	struct smsc47m1_data *data = dev_get_drvdata(dev);
368
	int nr = attr->index;
369 370 371 372 373 374 375 376
	unsigned long val;
	int err;

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

	if (val > 1)
L
Linus Torvalds 已提交
377 378
		return -EINVAL;

379
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
380 381
	data->pwm[nr] &= 0xFE; /* preserve the other bits */
	data->pwm[nr] |= !val;
382
	smsc47m1_write_value(data, SMSC47M1_REG_PWM[nr],
L
Linus Torvalds 已提交
383
			     data->pwm[nr]);
384
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
385 386 387 388 389

	return count;
}

#define fan_present(offset)						\
390 391 392 393 394 395
static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, get_fan,	\
		NULL, offset - 1);					\
static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR,		\
		get_fan_min, set_fan_min, offset - 1);			\
static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR,		\
		get_fan_div, set_fan_div, offset - 1);			\
396 397
static SENSOR_DEVICE_ATTR(fan##offset##_alarm, S_IRUGO, get_fan_alarm,	\
		NULL, offset - 1);					\
398 399 400 401
static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR,		\
		get_pwm, set_pwm, offset - 1);				\
static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR,	\
		get_pwm_en, set_pwm_en, offset - 1)
L
Linus Torvalds 已提交
402 403 404

fan_present(1);
fan_present(2);
405
fan_present(3);
L
Linus Torvalds 已提交
406 407 408

static DEVICE_ATTR(alarms, S_IRUGO, get_alarms, NULL);

409 410 411 412 413 414 415 416 417
static ssize_t show_name(struct device *dev, struct device_attribute
			 *devattr, char *buf)
{
	struct smsc47m1_data *data = dev_get_drvdata(dev);

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

418
static struct attribute *smsc47m1_attributes_fan1[] = {
419 420 421
	&sensor_dev_attr_fan1_input.dev_attr.attr,
	&sensor_dev_attr_fan1_min.dev_attr.attr,
	&sensor_dev_attr_fan1_div.dev_attr.attr,
422
	&sensor_dev_attr_fan1_alarm.dev_attr.attr,
423 424 425 426 427 428 429 430
	NULL
};

static const struct attribute_group smsc47m1_group_fan1 = {
	.attrs = smsc47m1_attributes_fan1,
};

static struct attribute *smsc47m1_attributes_fan2[] = {
431 432 433
	&sensor_dev_attr_fan2_input.dev_attr.attr,
	&sensor_dev_attr_fan2_min.dev_attr.attr,
	&sensor_dev_attr_fan2_div.dev_attr.attr,
434
	&sensor_dev_attr_fan2_alarm.dev_attr.attr,
435 436 437 438 439 440 441 442
	NULL
};

static const struct attribute_group smsc47m1_group_fan2 = {
	.attrs = smsc47m1_attributes_fan2,
};

static struct attribute *smsc47m1_attributes_fan3[] = {
443 444 445
	&sensor_dev_attr_fan3_input.dev_attr.attr,
	&sensor_dev_attr_fan3_min.dev_attr.attr,
	&sensor_dev_attr_fan3_div.dev_attr.attr,
446
	&sensor_dev_attr_fan3_alarm.dev_attr.attr,
447 448
	NULL
};
449

450 451 452 453 454
static const struct attribute_group smsc47m1_group_fan3 = {
	.attrs = smsc47m1_attributes_fan3,
};

static struct attribute *smsc47m1_attributes_pwm1[] = {
455 456
	&sensor_dev_attr_pwm1.dev_attr.attr,
	&sensor_dev_attr_pwm1_enable.dev_attr.attr,
457 458 459 460 461 462 463 464
	NULL
};

static const struct attribute_group smsc47m1_group_pwm1 = {
	.attrs = smsc47m1_attributes_pwm1,
};

static struct attribute *smsc47m1_attributes_pwm2[] = {
465 466
	&sensor_dev_attr_pwm2.dev_attr.attr,
	&sensor_dev_attr_pwm2_enable.dev_attr.attr,
467 468 469 470 471 472 473 474
	NULL
};

static const struct attribute_group smsc47m1_group_pwm2 = {
	.attrs = smsc47m1_attributes_pwm2,
};

static struct attribute *smsc47m1_attributes_pwm3[] = {
475 476
	&sensor_dev_attr_pwm3.dev_attr.attr,
	&sensor_dev_attr_pwm3_enable.dev_attr.attr,
477 478
	NULL
};
479

480 481 482 483 484
static const struct attribute_group smsc47m1_group_pwm3 = {
	.attrs = smsc47m1_attributes_pwm3,
};

static struct attribute *smsc47m1_attributes[] = {
485
	&dev_attr_alarms.attr,
486
	&dev_attr_name.attr,
487 488 489 490 491 492 493
	NULL
};

static const struct attribute_group smsc47m1_group = {
	.attrs = smsc47m1_attributes,
};

494 495
static int __init smsc47m1_find(unsigned short *addr,
				struct smsc47m1_sio_data *sio_data)
L
Linus Torvalds 已提交
496 497 498 499
{
	u8 val;

	superio_enter();
500
	val = force_id ? force_id : superio_inb(SUPERIO_REG_DEVID);
L
Linus Torvalds 已提交
501 502

	/*
503 504
	 * SMSC LPC47M10x/LPC47M112/LPC47M13x (device id 0x59), LPC47M14x
	 * (device id 0x5F) and LPC47B27x (device id 0x51) have fan control.
L
Linus Torvalds 已提交
505
	 * The LPC47M15x and LPC47M192 chips "with hardware monitoring block"
506
	 * can do much more besides (device id 0x60).
507 508
	 * The LPC47M997 is undocumented, but seems to be compatible with
	 * the LPC47M192, and has the same device id.
509 510 511
	 * The LPC47M292 (device id 0x6B) is somewhat compatible, but it
	 * supports a 3rd fan, and the pin configuration registers are
	 * unfortunately different.
512 513 514
	 * The LPC47M233 has the same device id (0x6B) but is not compatible.
	 * We check the high bit of the device revision register to
	 * differentiate them.
L
Linus Torvalds 已提交
515
	 */
516
	switch (val) {
517
	case 0x51:
518
		pr_info("Found SMSC LPC47B27x\n");
519
		sio_data->type = smsc47m1;
520 521
		break;
	case 0x59:
522
		pr_info("Found SMSC LPC47M10x/LPC47M112/LPC47M13x\n");
523
		sio_data->type = smsc47m1;
524 525
		break;
	case 0x5F:
526
		pr_info("Found SMSC LPC47M14x\n");
527
		sio_data->type = smsc47m1;
528 529
		break;
	case 0x60:
530
		pr_info("Found SMSC LPC47M15x/LPC47M192/LPC47M997\n");
531
		sio_data->type = smsc47m1;
532 533
		break;
	case 0x6B:
534
		if (superio_inb(SUPERIO_REG_DEVREV) & 0x80) {
535
			pr_debug("Found SMSC LPC47M233, unsupported\n");
536 537 538 539
			superio_exit();
			return -ENODEV;
		}

540
		pr_info("Found SMSC LPC47M292\n");
541
		sio_data->type = smsc47m2;
542 543
		break;
	default:
L
Linus Torvalds 已提交
544 545 546 547 548
		superio_exit();
		return -ENODEV;
	}

	superio_select();
549 550
	*addr = (superio_inb(SUPERIO_REG_BASE) << 8)
	      |  superio_inb(SUPERIO_REG_BASE + 1);
551
	if (*addr == 0) {
552
		pr_info("Device address not set, will not use\n");
L
Linus Torvalds 已提交
553 554 555 556
		superio_exit();
		return -ENODEV;
	}

557 558 559 560
	/*
	 * Enable only if address is set (needed at least on the
	 * Compaq Presario S4000NX)
	 */
561 562
	sio_data->activate = superio_inb(SUPERIO_REG_ACT);
	if ((sio_data->activate & 0x01) == 0) {
563
		pr_info("Enabling device\n");
564 565 566
		superio_outb(SUPERIO_REG_ACT, sio_data->activate | 0x01);
	}

L
Linus Torvalds 已提交
567 568 569 570
	superio_exit();
	return 0;
}

571
/* Restore device to its initial state */
572
static void smsc47m1_restore(const struct smsc47m1_sio_data *sio_data)
573 574 575 576 577
{
	if ((sio_data->activate & 0x01) == 0) {
		superio_enter();
		superio_select();

578
		pr_info("Disabling device\n");
579 580 581 582 583 584
		superio_outb(SUPERIO_REG_ACT, sio_data->activate);

		superio_exit();
	}
}

585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665
#define CHECK		1
#define REQUEST		2
#define RELEASE		3

/*
 * This function can be used to:
 *  - test for resource conflicts with ACPI
 *  - request the resources
 *  - release the resources
 * We only allocate the I/O ports we really need, to minimize the risk of
 * conflicts with ACPI or with other drivers.
 */
static int smsc47m1_handle_resources(unsigned short address, enum chips type,
				     int action, struct device *dev)
{
	static const u8 ports_m1[] = {
		/* register, region length */
		0x04, 1,
		0x33, 4,
		0x56, 7,
	};

	static const u8 ports_m2[] = {
		/* register, region length */
		0x04, 1,
		0x09, 1,
		0x2c, 2,
		0x35, 4,
		0x56, 7,
		0x69, 4,
	};

	int i, ports_size, err;
	const u8 *ports;

	switch (type) {
	case smsc47m1:
	default:
		ports = ports_m1;
		ports_size = ARRAY_SIZE(ports_m1);
		break;
	case smsc47m2:
		ports = ports_m2;
		ports_size = ARRAY_SIZE(ports_m2);
		break;
	}

	for (i = 0; i + 1 < ports_size; i += 2) {
		unsigned short start = address + ports[i];
		unsigned short len = ports[i + 1];

		switch (action) {
		case CHECK:
			/* Only check for conflicts */
			err = acpi_check_region(start, len, DRVNAME);
			if (err)
				return err;
			break;
		case REQUEST:
			/* Request the resources */
			if (!request_region(start, len, DRVNAME)) {
				dev_err(dev, "Region 0x%hx-0x%hx already in "
					"use!\n", start, start + len);

				/* Undo all requests */
				for (i -= 2; i >= 0; i -= 2)
					release_region(address + ports[i],
						       ports[i + 1]);
				return -EBUSY;
			}
			break;
		case RELEASE:
			/* Release the resources */
			release_region(start, len);
			break;
		}
	}

	return 0;
}

666 667 668 669 670 671 672 673 674 675 676
static void smsc47m1_remove_files(struct device *dev)
{
	sysfs_remove_group(&dev->kobj, &smsc47m1_group);
	sysfs_remove_group(&dev->kobj, &smsc47m1_group_fan1);
	sysfs_remove_group(&dev->kobj, &smsc47m1_group_fan2);
	sysfs_remove_group(&dev->kobj, &smsc47m1_group_fan3);
	sysfs_remove_group(&dev->kobj, &smsc47m1_group_pwm1);
	sysfs_remove_group(&dev->kobj, &smsc47m1_group_pwm2);
	sysfs_remove_group(&dev->kobj, &smsc47m1_group_pwm3);
}

677
static int __init smsc47m1_probe(struct platform_device *pdev)
L
Linus Torvalds 已提交
678
{
679 680
	struct device *dev = &pdev->dev;
	struct smsc47m1_sio_data *sio_data = dev->platform_data;
L
Linus Torvalds 已提交
681
	struct smsc47m1_data *data;
682
	struct resource *res;
683
	int err;
684
	int fan1, fan2, fan3, pwm1, pwm2, pwm3;
L
Linus Torvalds 已提交
685

686
	static const char * const names[] = {
687 688 689 690 691
		"smsc47m1",
		"smsc47m2",
	};

	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
692 693 694 695
	err = smsc47m1_handle_resources(res->start, sio_data->type,
					REQUEST, dev);
	if (err < 0)
		return err;
L
Linus Torvalds 已提交
696

697 698
	data = kzalloc(sizeof(struct smsc47m1_data), GFP_KERNEL);
	if (!data) {
L
Linus Torvalds 已提交
699 700 701 702
		err = -ENOMEM;
		goto error_release;
	}

703 704 705
	data->addr = res->start;
	data->type = sio_data->type;
	data->name = names[sio_data->type];
706
	mutex_init(&data->update_lock);
707
	platform_set_drvdata(pdev, data);
L
Linus Torvalds 已提交
708

709 710 711 712
	/*
	 * If no function is properly configured, there's no point in
	 * actually registering the chip.
	 */
713
	pwm1 = (smsc47m1_read_value(data, SMSC47M1_REG_PPIN(0)) & 0x05)
L
Linus Torvalds 已提交
714
	       == 0x04;
715
	pwm2 = (smsc47m1_read_value(data, SMSC47M1_REG_PPIN(1)) & 0x05)
L
Linus Torvalds 已提交
716
	       == 0x04;
717
	if (data->type == smsc47m2) {
718
		fan1 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN1)
719
			& 0x0d) == 0x09;
720
		fan2 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN2)
721
			& 0x0d) == 0x09;
722
		fan3 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN3)
723
			& 0x0d) == 0x0d;
724
		pwm3 = (smsc47m1_read_value(data, SMSC47M2_REG_PPIN3)
725 726
			& 0x0d) == 0x08;
	} else {
727
		fan1 = (smsc47m1_read_value(data, SMSC47M1_REG_TPIN(0))
728
			& 0x05) == 0x05;
729
		fan2 = (smsc47m1_read_value(data, SMSC47M1_REG_TPIN(1))
730 731 732 733 734
			& 0x05) == 0x05;
		fan3 = 0;
		pwm3 = 0;
	}
	if (!(fan1 || fan2 || fan3 || pwm1 || pwm2 || pwm3)) {
735
		dev_warn(dev, "Device not configured, will not use\n");
L
Linus Torvalds 已提交
736 737 738 739
		err = -ENODEV;
		goto error_free;
	}

740 741 742 743 744 745 746 747
	/*
	 * Some values (fan min, clock dividers, pwm registers) may be
	 * needed before any update is triggered, so we better read them
	 * at least once here. We don't usually do it that way, but in
	 * this particular case, manually reading 5 registers out of 8
	 * doesn't make much sense and we're better using the existing
	 * function.
	 */
748
	smsc47m1_update_device(dev, 1);
L
Linus Torvalds 已提交
749

750
	/* Register sysfs hooks */
L
Linus Torvalds 已提交
751
	if (fan1) {
752 753 754
		err = sysfs_create_group(&dev->kobj,
					 &smsc47m1_group_fan1);
		if (err)
755
			goto error_remove_files;
L
Linus Torvalds 已提交
756
	} else
757
		dev_dbg(dev, "Fan 1 not enabled by hardware, skipping\n");
L
Linus Torvalds 已提交
758 759

	if (fan2) {
760 761 762
		err = sysfs_create_group(&dev->kobj,
					 &smsc47m1_group_fan2);
		if (err)
763
			goto error_remove_files;
L
Linus Torvalds 已提交
764
	} else
765
		dev_dbg(dev, "Fan 2 not enabled by hardware, skipping\n");
L
Linus Torvalds 已提交
766

767
	if (fan3) {
768 769 770
		err = sysfs_create_group(&dev->kobj,
					 &smsc47m1_group_fan3);
		if (err)
771
			goto error_remove_files;
772
	} else if (data->type == smsc47m2)
773
		dev_dbg(dev, "Fan 3 not enabled by hardware, skipping\n");
774

L
Linus Torvalds 已提交
775
	if (pwm1) {
776 777 778
		err = sysfs_create_group(&dev->kobj,
					 &smsc47m1_group_pwm1);
		if (err)
779
			goto error_remove_files;
L
Linus Torvalds 已提交
780
	} else
781
		dev_dbg(dev, "PWM 1 not enabled by hardware, skipping\n");
782

L
Linus Torvalds 已提交
783
	if (pwm2) {
784 785 786
		err = sysfs_create_group(&dev->kobj,
					 &smsc47m1_group_pwm2);
		if (err)
787
			goto error_remove_files;
L
Linus Torvalds 已提交
788
	} else
789
		dev_dbg(dev, "PWM 2 not enabled by hardware, skipping\n");
L
Linus Torvalds 已提交
790

791
	if (pwm3) {
792 793 794
		err = sysfs_create_group(&dev->kobj,
					 &smsc47m1_group_pwm3);
		if (err)
795
			goto error_remove_files;
796
	} else if (data->type == smsc47m2)
797
		dev_dbg(dev, "PWM 3 not enabled by hardware, skipping\n");
798

799 800
	err = sysfs_create_group(&dev->kobj, &smsc47m1_group);
	if (err)
801
		goto error_remove_files;
802

803 804 805
	data->hwmon_dev = hwmon_device_register(dev);
	if (IS_ERR(data->hwmon_dev)) {
		err = PTR_ERR(data->hwmon_dev);
806 807
		goto error_remove_files;
	}
L
Linus Torvalds 已提交
808 809 810

	return 0;

811
error_remove_files:
812
	smsc47m1_remove_files(dev);
L
Linus Torvalds 已提交
813
error_free:
814
	platform_set_drvdata(pdev, NULL);
815
	kfree(data);
L
Linus Torvalds 已提交
816
error_release:
817
	smsc47m1_handle_resources(res->start, sio_data->type, RELEASE, dev);
L
Linus Torvalds 已提交
818 819 820
	return err;
}

821
static int __exit smsc47m1_remove(struct platform_device *pdev)
L
Linus Torvalds 已提交
822
{
823 824
	struct smsc47m1_data *data = platform_get_drvdata(pdev);
	struct resource *res;
L
Linus Torvalds 已提交
825

826
	hwmon_device_unregister(data->hwmon_dev);
827
	smsc47m1_remove_files(&pdev->dev);
L
Linus Torvalds 已提交
828

829
	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
830
	smsc47m1_handle_resources(res->start, data->type, RELEASE, &pdev->dev);
831
	platform_set_drvdata(pdev, NULL);
832
	kfree(data);
L
Linus Torvalds 已提交
833 834 835 836 837 838 839

	return 0;
}

static struct smsc47m1_data *smsc47m1_update_device(struct device *dev,
		int init)
{
840
	struct smsc47m1_data *data = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
841

842
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
843 844

	if (time_after(jiffies, data->last_updated + HZ + HZ / 2) || init) {
845 846
		int i, fan_nr;
		fan_nr = data->type == smsc47m2 ? 3 : 2;
L
Linus Torvalds 已提交
847

848
		for (i = 0; i < fan_nr; i++) {
849
			data->fan[i] = smsc47m1_read_value(data,
850
				       SMSC47M1_REG_FAN[i]);
851
			data->fan_preload[i] = smsc47m1_read_value(data,
852
					       SMSC47M1_REG_FAN_PRELOAD[i]);
853
			data->pwm[i] = smsc47m1_read_value(data,
854
				       SMSC47M1_REG_PWM[i]);
L
Linus Torvalds 已提交
855 856
		}

857
		i = smsc47m1_read_value(data, SMSC47M1_REG_FANDIV);
L
Linus Torvalds 已提交
858 859 860
		data->fan_div[0] = (i >> 4) & 0x03;
		data->fan_div[1] = i >> 6;

861
		data->alarms = smsc47m1_read_value(data,
L
Linus Torvalds 已提交
862 863 864
			       SMSC47M1_REG_ALARM) >> 6;
		/* Clear alarms if needed */
		if (data->alarms)
865
			smsc47m1_write_value(data, SMSC47M1_REG_ALARM, 0xC0);
L
Linus Torvalds 已提交
866

867
		if (fan_nr >= 3) {
868
			data->fan_div[2] = (smsc47m1_read_value(data,
869
					    SMSC47M2_REG_FANDIV3) >> 4) & 0x03;
870
			data->alarms |= (smsc47m1_read_value(data,
871 872 873
					 SMSC47M2_REG_ALARM6) & 0x40) >> 4;
			/* Clear alarm if needed */
			if (data->alarms & 0x04)
874
				smsc47m1_write_value(data,
875 876 877 878
						     SMSC47M2_REG_ALARM6,
						     0x40);
		}

L
Linus Torvalds 已提交
879 880 881
		data->last_updated = jiffies;
	}

882
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
883 884 885
	return data;
}

886 887 888 889 890 891 892 893 894 895 896
static int __init smsc47m1_device_add(unsigned short address,
				      const struct smsc47m1_sio_data *sio_data)
{
	struct resource res = {
		.start	= address,
		.end	= address + SMSC_EXTENT - 1,
		.name	= DRVNAME,
		.flags	= IORESOURCE_IO,
	};
	int err;

897
	err = smsc47m1_handle_resources(address, sio_data->type, CHECK, NULL);
898 899 900
	if (err)
		goto exit;

901 902 903
	pdev = platform_device_alloc(DRVNAME, address);
	if (!pdev) {
		err = -ENOMEM;
904
		pr_err("Device allocation failed\n");
905 906 907 908 909
		goto exit;
	}

	err = platform_device_add_resources(pdev, &res, 1);
	if (err) {
910
		pr_err("Device resource addition failed (%d)\n", err);
911 912 913
		goto exit_device_put;
	}

914 915 916
	err = platform_device_add_data(pdev, sio_data,
				       sizeof(struct smsc47m1_sio_data));
	if (err) {
917
		pr_err("Platform data allocation failed\n");
918 919 920 921 922
		goto exit_device_put;
	}

	err = platform_device_add(pdev);
	if (err) {
923
		pr_err("Device addition failed (%d)\n", err);
924 925 926 927 928 929 930 931 932 933 934
		goto exit_device_put;
	}

	return 0;

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

L
Linus Torvalds 已提交
935 936
static int __init sm_smsc47m1_init(void)
{
937 938 939 940 941
	int err;
	unsigned short address;
	struct smsc47m1_sio_data sio_data;

	if (smsc47m1_find(&address, &sio_data))
L
Linus Torvalds 已提交
942 943
		return -ENODEV;

944 945
	/* Sets global pdev as a side effect */
	err = smsc47m1_device_add(address, &sio_data);
946 947 948
	if (err)
		goto exit;

949
	err = platform_driver_probe(&smsc47m1_driver, smsc47m1_probe);
950
	if (err)
951
		goto exit_device;
952 953 954

	return 0;

955 956
exit_device:
	platform_device_unregister(pdev);
957
	smsc47m1_restore(&sio_data);
958 959
exit:
	return err;
L
Linus Torvalds 已提交
960 961 962 963
}

static void __exit sm_smsc47m1_exit(void)
{
964
	platform_driver_unregister(&smsc47m1_driver);
965
	smsc47m1_restore(pdev->dev.platform_data);
966
	platform_device_unregister(pdev);
L
Linus Torvalds 已提交
967 968 969 970 971 972 973 974
}

MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>");
MODULE_DESCRIPTION("SMSC LPC47M1xx fan sensors driver");
MODULE_LICENSE("GPL");

module_init(sm_smsc47m1_init);
module_exit(sm_smsc47m1_exit);