blob: a92dbb97ee999255e1ad3d79da106894e83282ef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 smsc47m1.c - Part of lm_sensors, Linux kernel modules
3 for hardware monitoring
4
Jean Delvare60917802006-10-08 22:00:44 +02005 Supports the SMSC LPC47B27x, LPC47M10x, LPC47M112, LPC47M13x,
Jean Delvare8eccbb62007-05-08 17:21:59 +02006 LPC47M14x, LPC47M15x, LPC47M192, LPC47M292 and LPC47M997
7 Super-I/O chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9 Copyright (C) 2002 Mark D. Studebaker <mdsxyz123@yahoo.com>
Jean Delvare8eccbb62007-05-08 17:21:59 +020010 Copyright (C) 2004-2007 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 Ported to Linux 2.6 by Gabriele Gorla <gorlik@yahoo.com>
12 and Jean Delvare
13
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.
18
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.
23
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.
27*/
28
29#include <linux/module.h>
30#include <linux/slab.h>
31#include <linux/ioport.h>
32#include <linux/jiffies.h>
Jean Delvare51f2cca2007-05-08 17:22:00 +020033#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040034#include <linux/hwmon.h>
Jean Delvaree84cfbc2007-05-08 17:22:00 +020035#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040036#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/init.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010038#include <linux/mutex.h>
Jean Delvarece8c6ce12006-09-24 21:25:12 +020039#include <linux/sysfs.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010040#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/io.h>
42
Jean Delvare67b671b2007-12-06 23:13:42 +010043static unsigned short force_id;
44module_param(force_id, ushort, 0);
45MODULE_PARM_DESC(force_id, "Override the detected device ID");
46
Jean Delvare51f2cca2007-05-08 17:22:00 +020047static struct platform_device *pdev;
48
49#define DRVNAME "smsc47m1"
Jean Delvare8eccbb62007-05-08 17:21:59 +020050enum chips { smsc47m1, smsc47m2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/* Super-I/0 registers and commands */
53
54#define REG 0x2e /* The register to read/write */
55#define VAL 0x2f /* The value to read/write */
56
57static inline void
58superio_outb(int reg, int val)
59{
60 outb(reg, REG);
61 outb(val, VAL);
62}
63
64static inline int
65superio_inb(int reg)
66{
67 outb(reg, REG);
68 return inb(VAL);
69}
70
71/* logical device for fans is 0x0A */
72#define superio_select() superio_outb(0x07, 0x0A)
73
74static inline void
75superio_enter(void)
76{
77 outb(0x55, REG);
78}
79
80static inline void
81superio_exit(void)
82{
83 outb(0xAA, REG);
84}
85
86#define SUPERIO_REG_ACT 0x30
87#define SUPERIO_REG_BASE 0x60
88#define SUPERIO_REG_DEVID 0x20
89
90/* Logical device registers */
91
92#define SMSC_EXTENT 0x80
93
94/* nr is 0 or 1 in the macros below */
95#define SMSC47M1_REG_ALARM 0x04
96#define SMSC47M1_REG_TPIN(nr) (0x34 - (nr))
97#define SMSC47M1_REG_PPIN(nr) (0x36 - (nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#define SMSC47M1_REG_FANDIV 0x58
Jean Delvare8eccbb62007-05-08 17:21:59 +020099
100static const u8 SMSC47M1_REG_FAN[3] = { 0x59, 0x5a, 0x6b };
101static const u8 SMSC47M1_REG_FAN_PRELOAD[3] = { 0x5b, 0x5c, 0x6c };
102static const u8 SMSC47M1_REG_PWM[3] = { 0x56, 0x57, 0x69 };
103
104#define SMSC47M2_REG_ALARM6 0x09
105#define SMSC47M2_REG_TPIN1 0x38
106#define SMSC47M2_REG_TPIN2 0x37
107#define SMSC47M2_REG_TPIN3 0x2d
108#define SMSC47M2_REG_PPIN3 0x2c
109#define SMSC47M2_REG_FANDIV3 0x6a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111#define MIN_FROM_REG(reg,div) ((reg)>=192 ? 0 : \
112 983040/((192-(reg))*(div)))
113#define FAN_FROM_REG(reg,div,preload) ((reg)<=(preload) || (reg)==255 ? 0 : \
114 983040/(((reg)-(preload))*(div)))
115#define DIV_FROM_REG(reg) (1 << (reg))
116#define PWM_FROM_REG(reg) (((reg) & 0x7E) << 1)
117#define PWM_EN_FROM_REG(reg) ((~(reg)) & 0x01)
118#define PWM_TO_REG(reg) (((reg) >> 1) & 0x7E)
119
120struct smsc47m1_data {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200121 unsigned short addr;
122 const char *name;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200123 enum chips type;
Tony Jones1beeffe2007-08-20 13:46:20 -0700124 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100126 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 unsigned long last_updated; /* In jiffies */
128
Jean Delvare8eccbb62007-05-08 17:21:59 +0200129 u8 fan[3]; /* Register value */
130 u8 fan_preload[3]; /* Register value */
131 u8 fan_div[3]; /* Register encoding, shifted right */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 u8 alarms; /* Register encoding */
Jean Delvare8eccbb62007-05-08 17:21:59 +0200133 u8 pwm[3]; /* Register value (bit 0 is disable) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134};
135
Jean Delvare51f2cca2007-05-08 17:22:00 +0200136struct smsc47m1_sio_data {
137 enum chips type;
138};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Jean Delvare51f2cca2007-05-08 17:22:00 +0200140
141static int smsc47m1_probe(struct platform_device *pdev);
Jean Delvared0546122007-07-22 12:09:48 +0200142static int __devexit smsc47m1_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static struct smsc47m1_data *smsc47m1_update_device(struct device *dev,
144 int init);
145
Jean Delvare51f2cca2007-05-08 17:22:00 +0200146static inline int smsc47m1_read_value(struct smsc47m1_data *data, u8 reg)
Jean Delvare94e183f2007-05-08 17:21:59 +0200147{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200148 return inb_p(data->addr + reg);
Jean Delvare94e183f2007-05-08 17:21:59 +0200149}
150
Jean Delvare51f2cca2007-05-08 17:22:00 +0200151static inline void smsc47m1_write_value(struct smsc47m1_data *data, u8 reg,
Jean Delvare94e183f2007-05-08 17:21:59 +0200152 u8 value)
153{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200154 outb_p(value, data->addr + reg);
Jean Delvare94e183f2007-05-08 17:21:59 +0200155}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Jean Delvare51f2cca2007-05-08 17:22:00 +0200157static struct platform_driver smsc47m1_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100158 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +0200159 .owner = THIS_MODULE,
Jean Delvare51f2cca2007-05-08 17:22:00 +0200160 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100161 },
Jean Delvare51f2cca2007-05-08 17:22:00 +0200162 .probe = smsc47m1_probe,
163 .remove = __devexit_p(smsc47m1_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164};
165
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200166static ssize_t get_fan(struct device *dev, struct device_attribute
167 *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200169 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200171 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* This chip (stupidly) stops monitoring fan speed if PWM is
173 enabled and duty cycle is 0%. This is fine if the monitoring
174 and control concern the same fan, but troublesome if they are
175 not (which could as well happen). */
176 int rpm = (data->pwm[nr] & 0x7F) == 0x00 ? 0 :
177 FAN_FROM_REG(data->fan[nr],
178 DIV_FROM_REG(data->fan_div[nr]),
179 data->fan_preload[nr]);
180 return sprintf(buf, "%d\n", rpm);
181}
182
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200183static ssize_t get_fan_min(struct device *dev, struct device_attribute
184 *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200186 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200188 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 int rpm = MIN_FROM_REG(data->fan_preload[nr],
190 DIV_FROM_REG(data->fan_div[nr]));
191 return sprintf(buf, "%d\n", rpm);
192}
193
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200194static ssize_t get_fan_div(struct device *dev, struct device_attribute
195 *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200197 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200199 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Jean Delvare1f08af72008-01-06 15:36:13 +0100202static ssize_t get_fan_alarm(struct device *dev, struct device_attribute
203 *devattr, char *buf)
204{
205 int bitnr = to_sensor_dev_attr(devattr)->index;
206 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
207 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
208}
209
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200210static ssize_t get_pwm(struct device *dev, struct device_attribute
211 *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200213 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200215 return sprintf(buf, "%d\n", PWM_FROM_REG(data->pwm[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200218static ssize_t get_pwm_en(struct device *dev, struct device_attribute
219 *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200221 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200223 return sprintf(buf, "%d\n", PWM_EN_FROM_REG(data->pwm[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200226static ssize_t get_alarms(struct device *dev, struct device_attribute
227 *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
230 return sprintf(buf, "%d\n", data->alarms);
231}
232
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200233static ssize_t set_fan_min(struct device *dev, struct device_attribute
234 *devattr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200236 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200237 struct smsc47m1_data *data = dev_get_drvdata(dev);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200238 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 long rpmdiv, val = simple_strtol(buf, NULL, 10);
240
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100241 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 rpmdiv = val * DIV_FROM_REG(data->fan_div[nr]);
243
244 if (983040 > 192 * rpmdiv || 2 * rpmdiv > 983040) {
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100245 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return -EINVAL;
247 }
248
249 data->fan_preload[nr] = 192 - ((983040 + rpmdiv / 2) / rpmdiv);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200250 smsc47m1_write_value(data, SMSC47M1_REG_FAN_PRELOAD[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 data->fan_preload[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100252 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 return count;
255}
256
257/* Note: we save and restore the fan minimum here, because its value is
258 determined in part by the fan clock divider. This follows the principle
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200259 of least surprise; the user doesn't expect the fan minimum to change just
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 because the divider changed. */
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200261static ssize_t set_fan_div(struct device *dev, struct device_attribute
262 *devattr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200264 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200265 struct smsc47m1_data *data = dev_get_drvdata(dev);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200266 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 long new_div = simple_strtol(buf, NULL, 10), tmp;
268 u8 old_div = DIV_FROM_REG(data->fan_div[nr]);
269
270 if (new_div == old_div) /* No change */
271 return count;
272
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100273 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 switch (new_div) {
275 case 1: data->fan_div[nr] = 0; break;
276 case 2: data->fan_div[nr] = 1; break;
277 case 4: data->fan_div[nr] = 2; break;
278 case 8: data->fan_div[nr] = 3; break;
279 default:
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100280 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return -EINVAL;
282 }
283
Jean Delvare8eccbb62007-05-08 17:21:59 +0200284 switch (nr) {
285 case 0:
286 case 1:
Jean Delvare51f2cca2007-05-08 17:22:00 +0200287 tmp = smsc47m1_read_value(data, SMSC47M1_REG_FANDIV)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200288 & ~(0x03 << (4 + 2 * nr));
289 tmp |= data->fan_div[nr] << (4 + 2 * nr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200290 smsc47m1_write_value(data, SMSC47M1_REG_FANDIV, tmp);
Jean Delvare8eccbb62007-05-08 17:21:59 +0200291 break;
292 case 2:
Jean Delvare51f2cca2007-05-08 17:22:00 +0200293 tmp = smsc47m1_read_value(data, SMSC47M2_REG_FANDIV3) & 0xCF;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200294 tmp |= data->fan_div[2] << 4;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200295 smsc47m1_write_value(data, SMSC47M2_REG_FANDIV3, tmp);
Jean Delvare8eccbb62007-05-08 17:21:59 +0200296 break;
297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 /* Preserve fan min */
300 tmp = 192 - (old_div * (192 - data->fan_preload[nr])
301 + new_div / 2) / new_div;
302 data->fan_preload[nr] = SENSORS_LIMIT(tmp, 0, 191);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200303 smsc47m1_write_value(data, SMSC47M1_REG_FAN_PRELOAD[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 data->fan_preload[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100305 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 return count;
308}
309
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200310static ssize_t set_pwm(struct device *dev, struct device_attribute
311 *devattr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200313 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200314 struct smsc47m1_data *data = dev_get_drvdata(dev);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200315 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 long val = simple_strtol(buf, NULL, 10);
317
318 if (val < 0 || val > 255)
319 return -EINVAL;
320
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100321 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 data->pwm[nr] &= 0x81; /* Preserve additional bits */
323 data->pwm[nr] |= PWM_TO_REG(val);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200324 smsc47m1_write_value(data, SMSC47M1_REG_PWM[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100326 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 return count;
329}
330
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200331static ssize_t set_pwm_en(struct device *dev, struct device_attribute
332 *devattr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200334 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200335 struct smsc47m1_data *data = dev_get_drvdata(dev);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200336 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 long val = simple_strtol(buf, NULL, 10);
338
339 if (val != 0 && val != 1)
340 return -EINVAL;
341
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100342 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 data->pwm[nr] &= 0xFE; /* preserve the other bits */
344 data->pwm[nr] |= !val;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200345 smsc47m1_write_value(data, SMSC47M1_REG_PWM[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100347 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 return count;
350}
351
352#define fan_present(offset) \
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200353static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, get_fan, \
354 NULL, offset - 1); \
355static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
356 get_fan_min, set_fan_min, offset - 1); \
357static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
358 get_fan_div, set_fan_div, offset - 1); \
Jean Delvare1f08af72008-01-06 15:36:13 +0100359static SENSOR_DEVICE_ATTR(fan##offset##_alarm, S_IRUGO, get_fan_alarm, \
360 NULL, offset - 1); \
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200361static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
362 get_pwm, set_pwm, offset - 1); \
363static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
364 get_pwm_en, set_pwm_en, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366fan_present(1);
367fan_present(2);
Jean Delvare8eccbb62007-05-08 17:21:59 +0200368fan_present(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370static DEVICE_ATTR(alarms, S_IRUGO, get_alarms, NULL);
371
Jean Delvare51f2cca2007-05-08 17:22:00 +0200372static ssize_t show_name(struct device *dev, struct device_attribute
373 *devattr, char *buf)
374{
375 struct smsc47m1_data *data = dev_get_drvdata(dev);
376
377 return sprintf(buf, "%s\n", data->name);
378}
379static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
380
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200381/* Almost all sysfs files may or may not be created depending on the chip
382 setup so we create them individually. It is still convenient to define a
383 group to remove them all at once. */
384static struct attribute *smsc47m1_attributes[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200385 &sensor_dev_attr_fan1_input.dev_attr.attr,
386 &sensor_dev_attr_fan1_min.dev_attr.attr,
387 &sensor_dev_attr_fan1_div.dev_attr.attr,
Jean Delvare1f08af72008-01-06 15:36:13 +0100388 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200389 &sensor_dev_attr_fan2_input.dev_attr.attr,
390 &sensor_dev_attr_fan2_min.dev_attr.attr,
391 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvare1f08af72008-01-06 15:36:13 +0100392 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200393 &sensor_dev_attr_fan3_input.dev_attr.attr,
394 &sensor_dev_attr_fan3_min.dev_attr.attr,
395 &sensor_dev_attr_fan3_div.dev_attr.attr,
Jean Delvare1f08af72008-01-06 15:36:13 +0100396 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200397
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200398 &sensor_dev_attr_pwm1.dev_attr.attr,
399 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
400 &sensor_dev_attr_pwm2.dev_attr.attr,
401 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
402 &sensor_dev_attr_pwm3.dev_attr.attr,
403 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200404
405 &dev_attr_alarms.attr,
Jean Delvare51f2cca2007-05-08 17:22:00 +0200406 &dev_attr_name.attr,
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200407 NULL
408};
409
410static const struct attribute_group smsc47m1_group = {
411 .attrs = smsc47m1_attributes,
412};
413
Jean Delvare51f2cca2007-05-08 17:22:00 +0200414static int __init smsc47m1_find(unsigned short *addr,
415 struct smsc47m1_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 u8 val;
418
419 superio_enter();
Jean Delvare67b671b2007-12-06 23:13:42 +0100420 val = force_id ? force_id : superio_inb(SUPERIO_REG_DEVID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /*
Jean Delvare60917802006-10-08 22:00:44 +0200423 * SMSC LPC47M10x/LPC47M112/LPC47M13x (device id 0x59), LPC47M14x
424 * (device id 0x5F) and LPC47B27x (device id 0x51) have fan control.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 * The LPC47M15x and LPC47M192 chips "with hardware monitoring block"
Jean Delvareec5ce552005-04-26 22:09:43 +0200426 * can do much more besides (device id 0x60).
Jean Delvareb890a072005-10-26 22:21:24 +0200427 * The LPC47M997 is undocumented, but seems to be compatible with
428 * the LPC47M192, and has the same device id.
Jean Delvare8eccbb62007-05-08 17:21:59 +0200429 * The LPC47M292 (device id 0x6B) is somewhat compatible, but it
430 * supports a 3rd fan, and the pin configuration registers are
431 * unfortunately different.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 */
Jean Delvare51f2cca2007-05-08 17:22:00 +0200433 switch (val) {
Jean Delvare8eccbb62007-05-08 17:21:59 +0200434 case 0x51:
Jean Delvare620100c2007-05-08 17:22:00 +0200435 pr_info(DRVNAME ": Found SMSC LPC47B27x\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200436 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200437 break;
438 case 0x59:
Jean Delvare620100c2007-05-08 17:22:00 +0200439 pr_info(DRVNAME ": Found SMSC LPC47M10x/LPC47M112/LPC47M13x\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200440 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200441 break;
442 case 0x5F:
Jean Delvare620100c2007-05-08 17:22:00 +0200443 pr_info(DRVNAME ": Found SMSC LPC47M14x\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200444 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200445 break;
446 case 0x60:
Jean Delvare620100c2007-05-08 17:22:00 +0200447 pr_info(DRVNAME ": Found SMSC LPC47M15x/LPC47M192/LPC47M997\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200448 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200449 break;
450 case 0x6B:
Jean Delvare620100c2007-05-08 17:22:00 +0200451 pr_info(DRVNAME ": Found SMSC LPC47M292\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200452 sio_data->type = smsc47m2;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200453 break;
454 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 superio_exit();
456 return -ENODEV;
457 }
458
459 superio_select();
Jean Delvare2d8672c2005-07-19 23:56:35 +0200460 *addr = (superio_inb(SUPERIO_REG_BASE) << 8)
461 | superio_inb(SUPERIO_REG_BASE + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 val = superio_inb(SUPERIO_REG_ACT);
Jean Delvare2d8672c2005-07-19 23:56:35 +0200463 if (*addr == 0 || (val & 0x01) == 0) {
Jean Delvare620100c2007-05-08 17:22:00 +0200464 pr_info(DRVNAME ": Device is disabled, will not use\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 superio_exit();
466 return -ENODEV;
467 }
468
469 superio_exit();
470 return 0;
471}
472
Jean Delvare51f2cca2007-05-08 17:22:00 +0200473static int __devinit smsc47m1_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200475 struct device *dev = &pdev->dev;
476 struct smsc47m1_sio_data *sio_data = dev->platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct smsc47m1_data *data;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200478 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 int err = 0;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200480 int fan1, fan2, fan3, pwm1, pwm2, pwm3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Jean Delvare51f2cca2007-05-08 17:22:00 +0200482 static const char *names[] = {
483 "smsc47m1",
484 "smsc47m2",
485 };
486
487 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
488 if (!request_region(res->start, SMSC_EXTENT, DRVNAME)) {
489 dev_err(dev, "Region 0x%lx-0x%lx already in use!\n",
490 (unsigned long)res->start,
491 (unsigned long)res->end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return -EBUSY;
493 }
494
Deepak Saxenaba9c2e82005-10-17 23:08:32 +0200495 if (!(data = kzalloc(sizeof(struct smsc47m1_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 err = -ENOMEM;
497 goto error_release;
498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Jean Delvare51f2cca2007-05-08 17:22:00 +0200500 data->addr = res->start;
501 data->type = sio_data->type;
502 data->name = names[sio_data->type];
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100503 mutex_init(&data->update_lock);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200504 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 /* If no function is properly configured, there's no point in
507 actually registering the chip. */
Jean Delvare51f2cca2007-05-08 17:22:00 +0200508 pwm1 = (smsc47m1_read_value(data, SMSC47M1_REG_PPIN(0)) & 0x05)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 == 0x04;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200510 pwm2 = (smsc47m1_read_value(data, SMSC47M1_REG_PPIN(1)) & 0x05)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 == 0x04;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200512 if (data->type == smsc47m2) {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200513 fan1 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN1)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200514 & 0x0d) == 0x09;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200515 fan2 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN2)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200516 & 0x0d) == 0x09;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200517 fan3 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN3)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200518 & 0x0d) == 0x0d;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200519 pwm3 = (smsc47m1_read_value(data, SMSC47M2_REG_PPIN3)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200520 & 0x0d) == 0x08;
521 } else {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200522 fan1 = (smsc47m1_read_value(data, SMSC47M1_REG_TPIN(0))
Jean Delvare8eccbb62007-05-08 17:21:59 +0200523 & 0x05) == 0x05;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200524 fan2 = (smsc47m1_read_value(data, SMSC47M1_REG_TPIN(1))
Jean Delvare8eccbb62007-05-08 17:21:59 +0200525 & 0x05) == 0x05;
526 fan3 = 0;
527 pwm3 = 0;
528 }
529 if (!(fan1 || fan2 || fan3 || pwm1 || pwm2 || pwm3)) {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200530 dev_warn(dev, "Device not configured, will not use\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 err = -ENODEV;
532 goto error_free;
533 }
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /* Some values (fan min, clock dividers, pwm registers) may be
536 needed before any update is triggered, so we better read them
537 at least once here. We don't usually do it that way, but in
538 this particular case, manually reading 5 registers out of 8
539 doesn't make much sense and we're better using the existing
540 function. */
Jean Delvare51f2cca2007-05-08 17:22:00 +0200541 smsc47m1_update_device(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400543 /* Register sysfs hooks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (fan1) {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200545 if ((err = device_create_file(dev,
546 &sensor_dev_attr_fan1_input.dev_attr))
547 || (err = device_create_file(dev,
548 &sensor_dev_attr_fan1_min.dev_attr))
549 || (err = device_create_file(dev,
Jean Delvare1f08af72008-01-06 15:36:13 +0100550 &sensor_dev_attr_fan1_div.dev_attr))
551 || (err = device_create_file(dev,
552 &sensor_dev_attr_fan1_alarm.dev_attr)))
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200553 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200555 dev_dbg(dev, "Fan 1 not enabled by hardware, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 if (fan2) {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200558 if ((err = device_create_file(dev,
559 &sensor_dev_attr_fan2_input.dev_attr))
560 || (err = device_create_file(dev,
561 &sensor_dev_attr_fan2_min.dev_attr))
562 || (err = device_create_file(dev,
Jean Delvare1f08af72008-01-06 15:36:13 +0100563 &sensor_dev_attr_fan2_div.dev_attr))
564 || (err = device_create_file(dev,
565 &sensor_dev_attr_fan2_alarm.dev_attr)))
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200566 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200568 dev_dbg(dev, "Fan 2 not enabled by hardware, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Jean Delvare8eccbb62007-05-08 17:21:59 +0200570 if (fan3) {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200571 if ((err = device_create_file(dev,
572 &sensor_dev_attr_fan3_input.dev_attr))
573 || (err = device_create_file(dev,
574 &sensor_dev_attr_fan3_min.dev_attr))
575 || (err = device_create_file(dev,
Jean Delvare1f08af72008-01-06 15:36:13 +0100576 &sensor_dev_attr_fan3_div.dev_attr))
577 || (err = device_create_file(dev,
578 &sensor_dev_attr_fan3_alarm.dev_attr)))
Jean Delvare8eccbb62007-05-08 17:21:59 +0200579 goto error_remove_files;
Jean Delvare8477d022007-08-16 14:33:37 +0200580 } else if (data->type == smsc47m2)
Jean Delvare51f2cca2007-05-08 17:22:00 +0200581 dev_dbg(dev, "Fan 3 not enabled by hardware, skipping\n");
Jean Delvare8eccbb62007-05-08 17:21:59 +0200582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (pwm1) {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200584 if ((err = device_create_file(dev,
585 &sensor_dev_attr_pwm1.dev_attr))
586 || (err = device_create_file(dev,
587 &sensor_dev_attr_pwm1_enable.dev_attr)))
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200588 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200590 dev_dbg(dev, "PWM 1 not enabled by hardware, skipping\n");
Jean Delvare8eccbb62007-05-08 17:21:59 +0200591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (pwm2) {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200593 if ((err = device_create_file(dev,
594 &sensor_dev_attr_pwm2.dev_attr))
595 || (err = device_create_file(dev,
596 &sensor_dev_attr_pwm2_enable.dev_attr)))
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200597 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200599 dev_dbg(dev, "PWM 2 not enabled by hardware, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Jean Delvare8eccbb62007-05-08 17:21:59 +0200601 if (pwm3) {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200602 if ((err = device_create_file(dev,
603 &sensor_dev_attr_pwm3.dev_attr))
604 || (err = device_create_file(dev,
605 &sensor_dev_attr_pwm3_enable.dev_attr)))
Jean Delvare8eccbb62007-05-08 17:21:59 +0200606 goto error_remove_files;
Jean Delvare8477d022007-08-16 14:33:37 +0200607 } else if (data->type == smsc47m2)
Jean Delvare51f2cca2007-05-08 17:22:00 +0200608 dev_dbg(dev, "PWM 3 not enabled by hardware, skipping\n");
Jean Delvare8eccbb62007-05-08 17:21:59 +0200609
Jean Delvare51f2cca2007-05-08 17:22:00 +0200610 if ((err = device_create_file(dev, &dev_attr_alarms)))
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200611 goto error_remove_files;
Jean Delvare68a50b52007-08-12 13:58:50 +0200612 if ((err = device_create_file(dev, &dev_attr_name)))
613 goto error_remove_files;
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200614
Tony Jones1beeffe2007-08-20 13:46:20 -0700615 data->hwmon_dev = hwmon_device_register(dev);
616 if (IS_ERR(data->hwmon_dev)) {
617 err = PTR_ERR(data->hwmon_dev);
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200618 goto error_remove_files;
619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 return 0;
622
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200623error_remove_files:
Jean Delvare51f2cca2007-05-08 17:22:00 +0200624 sysfs_remove_group(&dev->kobj, &smsc47m1_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625error_free:
Jean Delvare04a62172007-06-12 13:57:19 +0200626 platform_set_drvdata(pdev, NULL);
Alexey Dobriyan1f57ff82005-08-26 01:49:14 +0400627 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628error_release:
Jean Delvare51f2cca2007-05-08 17:22:00 +0200629 release_region(res->start, SMSC_EXTENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return err;
631}
632
Jean Delvare51f2cca2007-05-08 17:22:00 +0200633static int __devexit smsc47m1_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200635 struct smsc47m1_data *data = platform_get_drvdata(pdev);
636 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Tony Jones1beeffe2007-08-20 13:46:20 -0700638 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200639 sysfs_remove_group(&pdev->dev.kobj, &smsc47m1_group);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400640
Jean Delvare51f2cca2007-05-08 17:22:00 +0200641 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
642 release_region(res->start, SMSC_EXTENT);
Jean Delvare04a62172007-06-12 13:57:19 +0200643 platform_set_drvdata(pdev, NULL);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400644 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 return 0;
647}
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649static struct smsc47m1_data *smsc47m1_update_device(struct device *dev,
650 int init)
651{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200652 struct smsc47m1_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100654 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 if (time_after(jiffies, data->last_updated + HZ + HZ / 2) || init) {
Jean Delvare8eccbb62007-05-08 17:21:59 +0200657 int i, fan_nr;
658 fan_nr = data->type == smsc47m2 ? 3 : 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Jean Delvare8eccbb62007-05-08 17:21:59 +0200660 for (i = 0; i < fan_nr; i++) {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200661 data->fan[i] = smsc47m1_read_value(data,
Jean Delvare8eccbb62007-05-08 17:21:59 +0200662 SMSC47M1_REG_FAN[i]);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200663 data->fan_preload[i] = smsc47m1_read_value(data,
Jean Delvare8eccbb62007-05-08 17:21:59 +0200664 SMSC47M1_REG_FAN_PRELOAD[i]);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200665 data->pwm[i] = smsc47m1_read_value(data,
Jean Delvare8eccbb62007-05-08 17:21:59 +0200666 SMSC47M1_REG_PWM[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668
Jean Delvare51f2cca2007-05-08 17:22:00 +0200669 i = smsc47m1_read_value(data, SMSC47M1_REG_FANDIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 data->fan_div[0] = (i >> 4) & 0x03;
671 data->fan_div[1] = i >> 6;
672
Jean Delvare51f2cca2007-05-08 17:22:00 +0200673 data->alarms = smsc47m1_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 SMSC47M1_REG_ALARM) >> 6;
675 /* Clear alarms if needed */
676 if (data->alarms)
Jean Delvare51f2cca2007-05-08 17:22:00 +0200677 smsc47m1_write_value(data, SMSC47M1_REG_ALARM, 0xC0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Jean Delvare8eccbb62007-05-08 17:21:59 +0200679 if (fan_nr >= 3) {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200680 data->fan_div[2] = (smsc47m1_read_value(data,
Jean Delvare8eccbb62007-05-08 17:21:59 +0200681 SMSC47M2_REG_FANDIV3) >> 4) & 0x03;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200682 data->alarms |= (smsc47m1_read_value(data,
Jean Delvare8eccbb62007-05-08 17:21:59 +0200683 SMSC47M2_REG_ALARM6) & 0x40) >> 4;
684 /* Clear alarm if needed */
685 if (data->alarms & 0x04)
Jean Delvare51f2cca2007-05-08 17:22:00 +0200686 smsc47m1_write_value(data,
Jean Delvare8eccbb62007-05-08 17:21:59 +0200687 SMSC47M2_REG_ALARM6,
688 0x40);
689 }
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 data->last_updated = jiffies;
692 }
693
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100694 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return data;
696}
697
Jean Delvare51f2cca2007-05-08 17:22:00 +0200698static int __init smsc47m1_device_add(unsigned short address,
699 const struct smsc47m1_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200701 struct resource res = {
702 .start = address,
703 .end = address + SMSC_EXTENT - 1,
704 .name = DRVNAME,
705 .flags = IORESOURCE_IO,
706 };
707 int err;
708
Jean Delvareb9acb642009-01-07 16:37:35 +0100709 err = acpi_check_resource_conflict(&res);
710 if (err)
711 goto exit;
712
Jean Delvare51f2cca2007-05-08 17:22:00 +0200713 pdev = platform_device_alloc(DRVNAME, address);
714 if (!pdev) {
715 err = -ENOMEM;
716 printk(KERN_ERR DRVNAME ": Device allocation failed\n");
717 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
719
Jean Delvare51f2cca2007-05-08 17:22:00 +0200720 err = platform_device_add_resources(pdev, &res, 1);
721 if (err) {
722 printk(KERN_ERR DRVNAME ": Device resource addition failed "
723 "(%d)\n", err);
724 goto exit_device_put;
725 }
726
Jean Delvare2df6d812007-06-09 10:11:16 -0400727 err = platform_device_add_data(pdev, sio_data,
728 sizeof(struct smsc47m1_sio_data));
729 if (err) {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200730 printk(KERN_ERR DRVNAME ": Platform data allocation failed\n");
731 goto exit_device_put;
732 }
Jean Delvare51f2cca2007-05-08 17:22:00 +0200733
734 err = platform_device_add(pdev);
735 if (err) {
736 printk(KERN_ERR DRVNAME ": Device addition failed (%d)\n",
737 err);
738 goto exit_device_put;
739 }
740
741 return 0;
742
743exit_device_put:
744 platform_device_put(pdev);
745exit:
746 return err;
747}
748
749static int __init sm_smsc47m1_init(void)
750{
751 int err;
752 unsigned short address;
753 struct smsc47m1_sio_data sio_data;
754
755 if (smsc47m1_find(&address, &sio_data))
756 return -ENODEV;
757
758 err = platform_driver_register(&smsc47m1_driver);
759 if (err)
760 goto exit;
761
762 /* Sets global pdev as a side effect */
763 err = smsc47m1_device_add(address, &sio_data);
764 if (err)
765 goto exit_driver;
766
767 return 0;
768
769exit_driver:
770 platform_driver_unregister(&smsc47m1_driver);
771exit:
772 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
775static void __exit sm_smsc47m1_exit(void)
776{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200777 platform_device_unregister(pdev);
778 platform_driver_unregister(&smsc47m1_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
781MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>");
782MODULE_DESCRIPTION("SMSC LPC47M1xx fan sensors driver");
783MODULE_LICENSE("GPL");
784
785module_init(sm_smsc47m1_init);
786module_exit(sm_smsc47m1_exit);