2 * smsc47m1.c - Part of lm_sensors, Linux kernel modules
3 * for hardware monitoring
5 * Supports the SMSC LPC47B27x, LPC47M10x, LPC47M112, LPC47M13x,
6 * LPC47M14x, LPC47M15x, LPC47M192, LPC47M292 and LPC47M997
9 * Copyright (C) 2002 Mark D. Studebaker <mdsxyz123@yahoo.com>
10 * Copyright (C) 2004-2007 Jean Delvare <jdelvare@suse.de>
11 * Ported to Linux 2.6 by Gabriele Gorla <gorlik@yahoo.com>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31 #include <linux/module.h>
32 #include <linux/slab.h>
33 #include <linux/ioport.h>
34 #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>
39 #include <linux/init.h>
40 #include <linux/mutex.h>
41 #include <linux/sysfs.h>
42 #include <linux/acpi.h>
45 static unsigned short force_id
;
46 module_param(force_id
, ushort
, 0);
47 MODULE_PARM_DESC(force_id
, "Override the detected device ID");
49 static struct platform_device
*pdev
;
51 #define DRVNAME "smsc47m1"
52 enum chips
{ smsc47m1
, smsc47m2
};
54 /* Super-I/0 registers and commands */
56 #define REG 0x2e /* The register to read/write */
57 #define VAL 0x2f /* The value to read/write */
60 superio_outb(int reg
, int val
)
73 /* logical device for fans is 0x0A */
74 #define superio_select() superio_outb(0x07, 0x0A)
88 #define SUPERIO_REG_ACT 0x30
89 #define SUPERIO_REG_BASE 0x60
90 #define SUPERIO_REG_DEVID 0x20
91 #define SUPERIO_REG_DEVREV 0x21
93 /* Logical device registers */
95 #define SMSC_EXTENT 0x80
97 /* nr is 0 or 1 in the macros below */
98 #define SMSC47M1_REG_ALARM 0x04
99 #define SMSC47M1_REG_TPIN(nr) (0x34 - (nr))
100 #define SMSC47M1_REG_PPIN(nr) (0x36 - (nr))
101 #define SMSC47M1_REG_FANDIV 0x58
103 static const u8 SMSC47M1_REG_FAN
[3] = { 0x59, 0x5a, 0x6b };
104 static const u8 SMSC47M1_REG_FAN_PRELOAD
[3] = { 0x5b, 0x5c, 0x6c };
105 static const u8 SMSC47M1_REG_PWM
[3] = { 0x56, 0x57, 0x69 };
107 #define SMSC47M2_REG_ALARM6 0x09
108 #define SMSC47M2_REG_TPIN1 0x38
109 #define SMSC47M2_REG_TPIN2 0x37
110 #define SMSC47M2_REG_TPIN3 0x2d
111 #define SMSC47M2_REG_PPIN3 0x2c
112 #define SMSC47M2_REG_FANDIV3 0x6a
114 #define MIN_FROM_REG(reg, div) ((reg) >= 192 ? 0 : \
115 983040 / ((192 - (reg)) * (div)))
116 #define FAN_FROM_REG(reg, div, preload) ((reg) <= (preload) || (reg) == 255 ? \
118 983040 / (((reg) - (preload)) * (div)))
119 #define DIV_FROM_REG(reg) (1 << (reg))
120 #define PWM_FROM_REG(reg) (((reg) & 0x7E) << 1)
121 #define PWM_EN_FROM_REG(reg) ((~(reg)) & 0x01)
122 #define PWM_TO_REG(reg) (((reg) >> 1) & 0x7E)
124 struct smsc47m1_data
{
128 struct device
*hwmon_dev
;
130 struct mutex update_lock
;
131 unsigned long last_updated
; /* In jiffies */
133 u8 fan
[3]; /* Register value */
134 u8 fan_preload
[3]; /* Register value */
135 u8 fan_div
[3]; /* Register encoding, shifted right */
136 u8 alarms
; /* Register encoding */
137 u8 pwm
[3]; /* Register value (bit 0 is disable) */
140 struct smsc47m1_sio_data
{
142 u8 activate
; /* Remember initial device state */
145 static inline int smsc47m1_read_value(struct smsc47m1_data
*data
, u8 reg
)
147 return inb_p(data
->addr
+ reg
);
150 static inline void smsc47m1_write_value(struct smsc47m1_data
*data
, u8 reg
,
153 outb_p(value
, data
->addr
+ reg
);
156 static struct smsc47m1_data
*smsc47m1_update_device(struct device
*dev
,
159 struct smsc47m1_data
*data
= dev_get_drvdata(dev
);
161 mutex_lock(&data
->update_lock
);
163 if (time_after(jiffies
, data
->last_updated
+ HZ
+ HZ
/ 2) || init
) {
165 fan_nr
= data
->type
== smsc47m2
? 3 : 2;
167 for (i
= 0; i
< fan_nr
; i
++) {
168 data
->fan
[i
] = smsc47m1_read_value(data
,
169 SMSC47M1_REG_FAN
[i
]);
170 data
->fan_preload
[i
] = smsc47m1_read_value(data
,
171 SMSC47M1_REG_FAN_PRELOAD
[i
]);
172 data
->pwm
[i
] = smsc47m1_read_value(data
,
173 SMSC47M1_REG_PWM
[i
]);
176 i
= smsc47m1_read_value(data
, SMSC47M1_REG_FANDIV
);
177 data
->fan_div
[0] = (i
>> 4) & 0x03;
178 data
->fan_div
[1] = i
>> 6;
180 data
->alarms
= smsc47m1_read_value(data
,
181 SMSC47M1_REG_ALARM
) >> 6;
182 /* Clear alarms if needed */
184 smsc47m1_write_value(data
, SMSC47M1_REG_ALARM
, 0xC0);
187 data
->fan_div
[2] = (smsc47m1_read_value(data
,
188 SMSC47M2_REG_FANDIV3
) >> 4) & 0x03;
189 data
->alarms
|= (smsc47m1_read_value(data
,
190 SMSC47M2_REG_ALARM6
) & 0x40) >> 4;
191 /* Clear alarm if needed */
192 if (data
->alarms
& 0x04)
193 smsc47m1_write_value(data
,
198 data
->last_updated
= jiffies
;
201 mutex_unlock(&data
->update_lock
);
205 static ssize_t
get_fan(struct device
*dev
, struct device_attribute
208 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
209 struct smsc47m1_data
*data
= smsc47m1_update_device(dev
, 0);
210 int nr
= attr
->index
;
212 * This chip (stupidly) stops monitoring fan speed if PWM is
213 * enabled and duty cycle is 0%. This is fine if the monitoring
214 * and control concern the same fan, but troublesome if they are
215 * not (which could as well happen).
217 int rpm
= (data
->pwm
[nr
] & 0x7F) == 0x00 ? 0 :
218 FAN_FROM_REG(data
->fan
[nr
],
219 DIV_FROM_REG(data
->fan_div
[nr
]),
220 data
->fan_preload
[nr
]);
221 return sprintf(buf
, "%d\n", rpm
);
224 static ssize_t
get_fan_min(struct device
*dev
, struct device_attribute
227 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
228 struct smsc47m1_data
*data
= smsc47m1_update_device(dev
, 0);
229 int nr
= attr
->index
;
230 int rpm
= MIN_FROM_REG(data
->fan_preload
[nr
],
231 DIV_FROM_REG(data
->fan_div
[nr
]));
232 return sprintf(buf
, "%d\n", rpm
);
235 static ssize_t
get_fan_div(struct device
*dev
, struct device_attribute
238 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
239 struct smsc47m1_data
*data
= smsc47m1_update_device(dev
, 0);
240 return sprintf(buf
, "%d\n", DIV_FROM_REG(data
->fan_div
[attr
->index
]));
243 static ssize_t
get_fan_alarm(struct device
*dev
, struct device_attribute
246 int bitnr
= to_sensor_dev_attr(devattr
)->index
;
247 struct smsc47m1_data
*data
= smsc47m1_update_device(dev
, 0);
248 return sprintf(buf
, "%u\n", (data
->alarms
>> bitnr
) & 1);
251 static ssize_t
get_pwm(struct device
*dev
, struct device_attribute
254 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
255 struct smsc47m1_data
*data
= smsc47m1_update_device(dev
, 0);
256 return sprintf(buf
, "%d\n", PWM_FROM_REG(data
->pwm
[attr
->index
]));
259 static ssize_t
get_pwm_en(struct device
*dev
, struct device_attribute
262 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
263 struct smsc47m1_data
*data
= smsc47m1_update_device(dev
, 0);
264 return sprintf(buf
, "%d\n", PWM_EN_FROM_REG(data
->pwm
[attr
->index
]));
267 static ssize_t
alarms_show(struct device
*dev
,
268 struct device_attribute
*devattr
, char *buf
)
270 struct smsc47m1_data
*data
= smsc47m1_update_device(dev
, 0);
271 return sprintf(buf
, "%d\n", data
->alarms
);
274 static ssize_t
set_fan_min(struct device
*dev
, struct device_attribute
275 *devattr
, const char *buf
, size_t count
)
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
;
284 err
= kstrtol(buf
, 10, &val
);
288 mutex_lock(&data
->update_lock
);
289 rpmdiv
= val
* DIV_FROM_REG(data
->fan_div
[nr
]);
291 if (983040 > 192 * rpmdiv
|| 2 * rpmdiv
> 983040) {
292 mutex_unlock(&data
->update_lock
);
296 data
->fan_preload
[nr
] = 192 - ((983040 + rpmdiv
/ 2) / rpmdiv
);
297 smsc47m1_write_value(data
, SMSC47M1_REG_FAN_PRELOAD
[nr
],
298 data
->fan_preload
[nr
]);
299 mutex_unlock(&data
->update_lock
);
305 * Note: we save and restore the fan minimum here, because its value is
306 * determined in part by the fan clock divider. This follows the principle
307 * of least surprise; the user doesn't expect the fan minimum to change just
308 * because the divider changed.
310 static ssize_t
set_fan_div(struct device
*dev
, struct device_attribute
311 *devattr
, const char *buf
, size_t count
)
313 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
314 struct smsc47m1_data
*data
= dev_get_drvdata(dev
);
315 int nr
= attr
->index
;
319 u8 old_div
= DIV_FROM_REG(data
->fan_div
[nr
]);
321 err
= kstrtol(buf
, 10, &new_div
);
325 if (new_div
== old_div
) /* No change */
328 mutex_lock(&data
->update_lock
);
331 data
->fan_div
[nr
] = 0;
334 data
->fan_div
[nr
] = 1;
337 data
->fan_div
[nr
] = 2;
340 data
->fan_div
[nr
] = 3;
343 mutex_unlock(&data
->update_lock
);
350 tmp
= smsc47m1_read_value(data
, SMSC47M1_REG_FANDIV
)
351 & ~(0x03 << (4 + 2 * nr
));
352 tmp
|= data
->fan_div
[nr
] << (4 + 2 * nr
);
353 smsc47m1_write_value(data
, SMSC47M1_REG_FANDIV
, tmp
);
356 tmp
= smsc47m1_read_value(data
, SMSC47M2_REG_FANDIV3
) & 0xCF;
357 tmp
|= data
->fan_div
[2] << 4;
358 smsc47m1_write_value(data
, SMSC47M2_REG_FANDIV3
, tmp
);
362 /* Preserve fan min */
363 tmp
= 192 - (old_div
* (192 - data
->fan_preload
[nr
])
364 + new_div
/ 2) / new_div
;
365 data
->fan_preload
[nr
] = clamp_val(tmp
, 0, 191);
366 smsc47m1_write_value(data
, SMSC47M1_REG_FAN_PRELOAD
[nr
],
367 data
->fan_preload
[nr
]);
368 mutex_unlock(&data
->update_lock
);
373 static ssize_t
set_pwm(struct device
*dev
, struct device_attribute
374 *devattr
, const char *buf
, size_t count
)
376 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
377 struct smsc47m1_data
*data
= dev_get_drvdata(dev
);
378 int nr
= attr
->index
;
382 err
= kstrtol(buf
, 10, &val
);
386 if (val
< 0 || val
> 255)
389 mutex_lock(&data
->update_lock
);
390 data
->pwm
[nr
] &= 0x81; /* Preserve additional bits */
391 data
->pwm
[nr
] |= PWM_TO_REG(val
);
392 smsc47m1_write_value(data
, SMSC47M1_REG_PWM
[nr
],
394 mutex_unlock(&data
->update_lock
);
399 static ssize_t
set_pwm_en(struct device
*dev
, struct device_attribute
400 *devattr
, const char *buf
, size_t count
)
402 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
403 struct smsc47m1_data
*data
= dev_get_drvdata(dev
);
404 int nr
= attr
->index
;
408 err
= kstrtoul(buf
, 10, &val
);
415 mutex_lock(&data
->update_lock
);
416 data
->pwm
[nr
] &= 0xFE; /* preserve the other bits */
417 data
->pwm
[nr
] |= !val
;
418 smsc47m1_write_value(data
, SMSC47M1_REG_PWM
[nr
],
420 mutex_unlock(&data
->update_lock
);
425 #define fan_present(offset) \
426 static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, get_fan, \
428 static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
429 get_fan_min, set_fan_min, offset - 1); \
430 static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
431 get_fan_div, set_fan_div, offset - 1); \
432 static SENSOR_DEVICE_ATTR(fan##offset##_alarm, S_IRUGO, get_fan_alarm, \
434 static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
435 get_pwm, set_pwm, offset - 1); \
436 static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
437 get_pwm_en, set_pwm_en, offset - 1)
443 static DEVICE_ATTR_RO(alarms
);
445 static ssize_t
name_show(struct device
*dev
, struct device_attribute
448 struct smsc47m1_data
*data
= dev_get_drvdata(dev
);
450 return sprintf(buf
, "%s\n", data
->name
);
452 static DEVICE_ATTR_RO(name
);
454 static struct attribute
*smsc47m1_attributes_fan1
[] = {
455 &sensor_dev_attr_fan1_input
.dev_attr
.attr
,
456 &sensor_dev_attr_fan1_min
.dev_attr
.attr
,
457 &sensor_dev_attr_fan1_div
.dev_attr
.attr
,
458 &sensor_dev_attr_fan1_alarm
.dev_attr
.attr
,
462 static const struct attribute_group smsc47m1_group_fan1
= {
463 .attrs
= smsc47m1_attributes_fan1
,
466 static struct attribute
*smsc47m1_attributes_fan2
[] = {
467 &sensor_dev_attr_fan2_input
.dev_attr
.attr
,
468 &sensor_dev_attr_fan2_min
.dev_attr
.attr
,
469 &sensor_dev_attr_fan2_div
.dev_attr
.attr
,
470 &sensor_dev_attr_fan2_alarm
.dev_attr
.attr
,
474 static const struct attribute_group smsc47m1_group_fan2
= {
475 .attrs
= smsc47m1_attributes_fan2
,
478 static struct attribute
*smsc47m1_attributes_fan3
[] = {
479 &sensor_dev_attr_fan3_input
.dev_attr
.attr
,
480 &sensor_dev_attr_fan3_min
.dev_attr
.attr
,
481 &sensor_dev_attr_fan3_div
.dev_attr
.attr
,
482 &sensor_dev_attr_fan3_alarm
.dev_attr
.attr
,
486 static const struct attribute_group smsc47m1_group_fan3
= {
487 .attrs
= smsc47m1_attributes_fan3
,
490 static struct attribute
*smsc47m1_attributes_pwm1
[] = {
491 &sensor_dev_attr_pwm1
.dev_attr
.attr
,
492 &sensor_dev_attr_pwm1_enable
.dev_attr
.attr
,
496 static const struct attribute_group smsc47m1_group_pwm1
= {
497 .attrs
= smsc47m1_attributes_pwm1
,
500 static struct attribute
*smsc47m1_attributes_pwm2
[] = {
501 &sensor_dev_attr_pwm2
.dev_attr
.attr
,
502 &sensor_dev_attr_pwm2_enable
.dev_attr
.attr
,
506 static const struct attribute_group smsc47m1_group_pwm2
= {
507 .attrs
= smsc47m1_attributes_pwm2
,
510 static struct attribute
*smsc47m1_attributes_pwm3
[] = {
511 &sensor_dev_attr_pwm3
.dev_attr
.attr
,
512 &sensor_dev_attr_pwm3_enable
.dev_attr
.attr
,
516 static const struct attribute_group smsc47m1_group_pwm3
= {
517 .attrs
= smsc47m1_attributes_pwm3
,
520 static struct attribute
*smsc47m1_attributes
[] = {
521 &dev_attr_alarms
.attr
,
526 static const struct attribute_group smsc47m1_group
= {
527 .attrs
= smsc47m1_attributes
,
530 static int __init
smsc47m1_find(struct smsc47m1_sio_data
*sio_data
)
536 val
= force_id
? force_id
: superio_inb(SUPERIO_REG_DEVID
);
539 * SMSC LPC47M10x/LPC47M112/LPC47M13x (device id 0x59), LPC47M14x
540 * (device id 0x5F) and LPC47B27x (device id 0x51) have fan control.
541 * The LPC47M15x and LPC47M192 chips "with hardware monitoring block"
542 * can do much more besides (device id 0x60).
543 * The LPC47M997 is undocumented, but seems to be compatible with
544 * the LPC47M192, and has the same device id.
545 * The LPC47M292 (device id 0x6B) is somewhat compatible, but it
546 * supports a 3rd fan, and the pin configuration registers are
547 * unfortunately different.
548 * The LPC47M233 has the same device id (0x6B) but is not compatible.
549 * We check the high bit of the device revision register to
550 * differentiate them.
554 pr_info("Found SMSC LPC47B27x\n");
555 sio_data
->type
= smsc47m1
;
558 pr_info("Found SMSC LPC47M10x/LPC47M112/LPC47M13x\n");
559 sio_data
->type
= smsc47m1
;
562 pr_info("Found SMSC LPC47M14x\n");
563 sio_data
->type
= smsc47m1
;
566 pr_info("Found SMSC LPC47M15x/LPC47M192/LPC47M997\n");
567 sio_data
->type
= smsc47m1
;
570 if (superio_inb(SUPERIO_REG_DEVREV
) & 0x80) {
571 pr_debug("Found SMSC LPC47M233, unsupported\n");
576 pr_info("Found SMSC LPC47M292\n");
577 sio_data
->type
= smsc47m2
;
585 addr
= (superio_inb(SUPERIO_REG_BASE
) << 8)
586 | superio_inb(SUPERIO_REG_BASE
+ 1);
588 pr_info("Device address not set, will not use\n");
594 * Enable only if address is set (needed at least on the
595 * Compaq Presario S4000NX)
597 sio_data
->activate
= superio_inb(SUPERIO_REG_ACT
);
598 if ((sio_data
->activate
& 0x01) == 0) {
599 pr_info("Enabling device\n");
600 superio_outb(SUPERIO_REG_ACT
, sio_data
->activate
| 0x01);
607 /* Restore device to its initial state */
608 static void smsc47m1_restore(const struct smsc47m1_sio_data
*sio_data
)
610 if ((sio_data
->activate
& 0x01) == 0) {
614 pr_info("Disabling device\n");
615 superio_outb(SUPERIO_REG_ACT
, sio_data
->activate
);
625 * This function can be used to:
626 * - test for resource conflicts with ACPI
627 * - request the resources
628 * We only allocate the I/O ports we really need, to minimize the risk of
629 * conflicts with ACPI or with other drivers.
631 static int __init
smsc47m1_handle_resources(unsigned short address
,
632 enum chips type
, int action
,
635 static const u8 ports_m1
[] = {
636 /* register, region length */
642 static const u8 ports_m2
[] = {
643 /* register, region length */
652 int i
, ports_size
, err
;
659 ports_size
= ARRAY_SIZE(ports_m1
);
663 ports_size
= ARRAY_SIZE(ports_m2
);
667 for (i
= 0; i
+ 1 < ports_size
; i
+= 2) {
668 unsigned short start
= address
+ ports
[i
];
669 unsigned short len
= ports
[i
+ 1];
673 /* Only check for conflicts */
674 err
= acpi_check_region(start
, len
, DRVNAME
);
679 /* Request the resources */
680 if (!devm_request_region(dev
, start
, len
, DRVNAME
)) {
682 "Region 0x%hx-0x%hx already in use!\n",
693 static void smsc47m1_remove_files(struct device
*dev
)
695 sysfs_remove_group(&dev
->kobj
, &smsc47m1_group
);
696 sysfs_remove_group(&dev
->kobj
, &smsc47m1_group_fan1
);
697 sysfs_remove_group(&dev
->kobj
, &smsc47m1_group_fan2
);
698 sysfs_remove_group(&dev
->kobj
, &smsc47m1_group_fan3
);
699 sysfs_remove_group(&dev
->kobj
, &smsc47m1_group_pwm1
);
700 sysfs_remove_group(&dev
->kobj
, &smsc47m1_group_pwm2
);
701 sysfs_remove_group(&dev
->kobj
, &smsc47m1_group_pwm3
);
704 static int __init
smsc47m1_probe(struct platform_device
*pdev
)
706 struct device
*dev
= &pdev
->dev
;
707 struct smsc47m1_sio_data
*sio_data
= dev_get_platdata(dev
);
708 struct smsc47m1_data
*data
;
709 struct resource
*res
;
711 int fan1
, fan2
, fan3
, pwm1
, pwm2
, pwm3
;
713 static const char * const names
[] = {
718 res
= platform_get_resource(pdev
, IORESOURCE_IO
, 0);
719 err
= smsc47m1_handle_resources(res
->start
, sio_data
->type
,
724 data
= devm_kzalloc(dev
, sizeof(struct smsc47m1_data
), GFP_KERNEL
);
728 data
->addr
= res
->start
;
729 data
->type
= sio_data
->type
;
730 data
->name
= names
[sio_data
->type
];
731 mutex_init(&data
->update_lock
);
732 platform_set_drvdata(pdev
, data
);
735 * If no function is properly configured, there's no point in
736 * actually registering the chip.
738 pwm1
= (smsc47m1_read_value(data
, SMSC47M1_REG_PPIN(0)) & 0x05)
740 pwm2
= (smsc47m1_read_value(data
, SMSC47M1_REG_PPIN(1)) & 0x05)
742 if (data
->type
== smsc47m2
) {
743 fan1
= (smsc47m1_read_value(data
, SMSC47M2_REG_TPIN1
)
745 fan2
= (smsc47m1_read_value(data
, SMSC47M2_REG_TPIN2
)
747 fan3
= (smsc47m1_read_value(data
, SMSC47M2_REG_TPIN3
)
749 pwm3
= (smsc47m1_read_value(data
, SMSC47M2_REG_PPIN3
)
752 fan1
= (smsc47m1_read_value(data
, SMSC47M1_REG_TPIN(0))
754 fan2
= (smsc47m1_read_value(data
, SMSC47M1_REG_TPIN(1))
759 if (!(fan1
|| fan2
|| fan3
|| pwm1
|| pwm2
|| pwm3
)) {
760 dev_warn(dev
, "Device not configured, will not use\n");
765 * Some values (fan min, clock dividers, pwm registers) may be
766 * needed before any update is triggered, so we better read them
767 * at least once here. We don't usually do it that way, but in
768 * this particular case, manually reading 5 registers out of 8
769 * doesn't make much sense and we're better using the existing
772 smsc47m1_update_device(dev
, 1);
774 /* Register sysfs hooks */
776 err
= sysfs_create_group(&dev
->kobj
,
777 &smsc47m1_group_fan1
);
779 goto error_remove_files
;
781 dev_dbg(dev
, "Fan 1 not enabled by hardware, skipping\n");
784 err
= sysfs_create_group(&dev
->kobj
,
785 &smsc47m1_group_fan2
);
787 goto error_remove_files
;
789 dev_dbg(dev
, "Fan 2 not enabled by hardware, skipping\n");
792 err
= sysfs_create_group(&dev
->kobj
,
793 &smsc47m1_group_fan3
);
795 goto error_remove_files
;
796 } else if (data
->type
== smsc47m2
)
797 dev_dbg(dev
, "Fan 3 not enabled by hardware, skipping\n");
800 err
= sysfs_create_group(&dev
->kobj
,
801 &smsc47m1_group_pwm1
);
803 goto error_remove_files
;
805 dev_dbg(dev
, "PWM 1 not enabled by hardware, skipping\n");
808 err
= sysfs_create_group(&dev
->kobj
,
809 &smsc47m1_group_pwm2
);
811 goto error_remove_files
;
813 dev_dbg(dev
, "PWM 2 not enabled by hardware, skipping\n");
816 err
= sysfs_create_group(&dev
->kobj
,
817 &smsc47m1_group_pwm3
);
819 goto error_remove_files
;
820 } else if (data
->type
== smsc47m2
)
821 dev_dbg(dev
, "PWM 3 not enabled by hardware, skipping\n");
823 err
= sysfs_create_group(&dev
->kobj
, &smsc47m1_group
);
825 goto error_remove_files
;
827 data
->hwmon_dev
= hwmon_device_register(dev
);
828 if (IS_ERR(data
->hwmon_dev
)) {
829 err
= PTR_ERR(data
->hwmon_dev
);
830 goto error_remove_files
;
836 smsc47m1_remove_files(dev
);
840 static int __exit
smsc47m1_remove(struct platform_device
*pdev
)
842 struct smsc47m1_data
*data
= platform_get_drvdata(pdev
);
844 hwmon_device_unregister(data
->hwmon_dev
);
845 smsc47m1_remove_files(&pdev
->dev
);
850 static struct platform_driver smsc47m1_driver
= {
854 .remove
= __exit_p(smsc47m1_remove
),
857 static int __init
smsc47m1_device_add(unsigned short address
,
858 const struct smsc47m1_sio_data
*sio_data
)
860 struct resource res
= {
862 .end
= address
+ SMSC_EXTENT
- 1,
864 .flags
= IORESOURCE_IO
,
868 err
= smsc47m1_handle_resources(address
, sio_data
->type
, CHECK
, NULL
);
872 pdev
= platform_device_alloc(DRVNAME
, address
);
875 pr_err("Device allocation failed\n");
879 err
= platform_device_add_resources(pdev
, &res
, 1);
881 pr_err("Device resource addition failed (%d)\n", err
);
882 goto exit_device_put
;
885 err
= platform_device_add_data(pdev
, sio_data
,
886 sizeof(struct smsc47m1_sio_data
));
888 pr_err("Platform data allocation failed\n");
889 goto exit_device_put
;
892 err
= platform_device_add(pdev
);
894 pr_err("Device addition failed (%d)\n", err
);
895 goto exit_device_put
;
901 platform_device_put(pdev
);
906 static int __init
sm_smsc47m1_init(void)
909 unsigned short address
;
910 struct smsc47m1_sio_data sio_data
;
912 err
= smsc47m1_find(&sio_data
);
917 /* Sets global pdev as a side effect */
918 err
= smsc47m1_device_add(address
, &sio_data
);
922 err
= platform_driver_probe(&smsc47m1_driver
, smsc47m1_probe
);
929 platform_device_unregister(pdev
);
930 smsc47m1_restore(&sio_data
);
934 static void __exit
sm_smsc47m1_exit(void)
936 platform_driver_unregister(&smsc47m1_driver
);
937 smsc47m1_restore(dev_get_platdata(&pdev
->dev
));
938 platform_device_unregister(pdev
);
941 MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>");
942 MODULE_DESCRIPTION("SMSC LPC47M1xx fan sensors driver");
943 MODULE_LICENSE("GPL");
945 module_init(sm_smsc47m1_init
);
946 module_exit(sm_smsc47m1_exit
);