blob: cc6aca6e436c8de4907110b707a83bc69f82780b [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Guenter Roeck85a0c0d2012-01-14 22:27:00 -08003 * smsc47m1.c - Part of lm_sensors, Linux kernel modules
4 * for hardware monitoring
5 *
6 * Supports the SMSC LPC47B27x, LPC47M10x, LPC47M112, LPC47M13x,
7 * LPC47M14x, LPC47M15x, LPC47M192, LPC47M292 and LPC47M997
8 * Super-I/O chips.
9 *
10 * Copyright (C) 2002 Mark D. Studebaker <mdsxyz123@yahoo.com>
Jean Delvare7c81c602014-01-29 20:40:08 +010011 * Copyright (C) 2004-2007 Jean Delvare <jdelvare@suse.de>
Guenter Roeck85a0c0d2012-01-14 22:27:00 -080012 * Ported to Linux 2.6 by Gabriele Gorla <gorlik@yahoo.com>
13 * and Jean Delvare
Guenter Roeck85a0c0d2012-01-14 22:27:00 -080014 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Joe Perches512504e2010-10-20 06:51:49 +000016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/ioport.h>
21#include <linux/jiffies.h>
Jean Delvare51f2cca2007-05-08 17:22:00 +020022#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040023#include <linux/hwmon.h>
Jean Delvaree84cfbc2007-05-08 17:22:00 +020024#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040025#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010027#include <linux/mutex.h>
Jean Delvarece8c6ce12006-09-24 21:25:12 +020028#include <linux/sysfs.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010029#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020030#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Jean Delvare67b671b2007-12-06 23:13:42 +010032static unsigned short force_id;
33module_param(force_id, ushort, 0);
34MODULE_PARM_DESC(force_id, "Override the detected device ID");
35
Jean Delvare51f2cca2007-05-08 17:22:00 +020036static struct platform_device *pdev;
37
38#define DRVNAME "smsc47m1"
Jean Delvare8eccbb62007-05-08 17:21:59 +020039enum chips { smsc47m1, smsc47m2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* Super-I/0 registers and commands */
42
Guenter Roeck85a0c0d2012-01-14 22:27:00 -080043#define REG 0x2e /* The register to read/write */
44#define VAL 0x2f /* The value to read/write */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46static inline void
47superio_outb(int reg, int val)
48{
49 outb(reg, REG);
50 outb(val, VAL);
51}
52
53static inline int
54superio_inb(int reg)
55{
56 outb(reg, REG);
57 return inb(VAL);
58}
59
60/* logical device for fans is 0x0A */
61#define superio_select() superio_outb(0x07, 0x0A)
62
Guenter Roeckd6410402019-04-04 11:28:37 -070063static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -070064superio_enter(void)
65{
Guenter Roeckd6410402019-04-04 11:28:37 -070066 if (!request_muxed_region(REG, 2, DRVNAME))
67 return -EBUSY;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 outb(0x55, REG);
Guenter Roeckd6410402019-04-04 11:28:37 -070070 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
73static inline void
74superio_exit(void)
75{
76 outb(0xAA, REG);
Guenter Roeckd6410402019-04-04 11:28:37 -070077 release_region(REG, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
80#define SUPERIO_REG_ACT 0x30
81#define SUPERIO_REG_BASE 0x60
82#define SUPERIO_REG_DEVID 0x20
Jean Delvare1b54ab42009-07-28 16:31:39 +020083#define SUPERIO_REG_DEVREV 0x21
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/* Logical device registers */
86
87#define SMSC_EXTENT 0x80
88
89/* nr is 0 or 1 in the macros below */
90#define SMSC47M1_REG_ALARM 0x04
91#define SMSC47M1_REG_TPIN(nr) (0x34 - (nr))
92#define SMSC47M1_REG_PPIN(nr) (0x36 - (nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#define SMSC47M1_REG_FANDIV 0x58
Jean Delvare8eccbb62007-05-08 17:21:59 +020094
95static const u8 SMSC47M1_REG_FAN[3] = { 0x59, 0x5a, 0x6b };
96static const u8 SMSC47M1_REG_FAN_PRELOAD[3] = { 0x5b, 0x5c, 0x6c };
97static const u8 SMSC47M1_REG_PWM[3] = { 0x56, 0x57, 0x69 };
98
99#define SMSC47M2_REG_ALARM6 0x09
100#define SMSC47M2_REG_TPIN1 0x38
101#define SMSC47M2_REG_TPIN2 0x37
102#define SMSC47M2_REG_TPIN3 0x2d
103#define SMSC47M2_REG_PPIN3 0x2c
104#define SMSC47M2_REG_FANDIV3 0x6a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800106#define MIN_FROM_REG(reg, div) ((reg) >= 192 ? 0 : \
107 983040 / ((192 - (reg)) * (div)))
108#define FAN_FROM_REG(reg, div, preload) ((reg) <= (preload) || (reg) == 255 ? \
109 0 : \
110 983040 / (((reg) - (preload)) * (div)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define DIV_FROM_REG(reg) (1 << (reg))
112#define PWM_FROM_REG(reg) (((reg) & 0x7E) << 1)
113#define PWM_EN_FROM_REG(reg) ((~(reg)) & 0x01)
114#define PWM_TO_REG(reg) (((reg) >> 1) & 0x7E)
115
116struct smsc47m1_data {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200117 unsigned short addr;
118 const char *name;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200119 enum chips type;
Tony Jones1beeffe2007-08-20 13:46:20 -0700120 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100122 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 unsigned long last_updated; /* In jiffies */
124
Jean Delvare8eccbb62007-05-08 17:21:59 +0200125 u8 fan[3]; /* Register value */
126 u8 fan_preload[3]; /* Register value */
127 u8 fan_div[3]; /* Register encoding, shifted right */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 u8 alarms; /* Register encoding */
Jean Delvare8eccbb62007-05-08 17:21:59 +0200129 u8 pwm[3]; /* Register value (bit 0 is disable) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Jean Delvare51f2cca2007-05-08 17:22:00 +0200132struct smsc47m1_sio_data {
133 enum chips type;
Jean Delvarefa0bff02009-12-16 21:38:27 +0100134 u8 activate; /* Remember initial device state */
Jean Delvare51f2cca2007-05-08 17:22:00 +0200135};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Jean Delvare51f2cca2007-05-08 17:22:00 +0200137static inline int smsc47m1_read_value(struct smsc47m1_data *data, u8 reg)
Jean Delvare94e183f2007-05-08 17:21:59 +0200138{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200139 return inb_p(data->addr + reg);
Jean Delvare94e183f2007-05-08 17:21:59 +0200140}
141
Jean Delvare51f2cca2007-05-08 17:22:00 +0200142static inline void smsc47m1_write_value(struct smsc47m1_data *data, u8 reg,
Jean Delvare94e183f2007-05-08 17:21:59 +0200143 u8 value)
144{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200145 outb_p(value, data->addr + reg);
Jean Delvare94e183f2007-05-08 17:21:59 +0200146}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Axel Line70198a2014-07-17 19:15:36 +0800148static struct smsc47m1_data *smsc47m1_update_device(struct device *dev,
149 int init)
150{
151 struct smsc47m1_data *data = dev_get_drvdata(dev);
152
153 mutex_lock(&data->update_lock);
154
155 if (time_after(jiffies, data->last_updated + HZ + HZ / 2) || init) {
156 int i, fan_nr;
157 fan_nr = data->type == smsc47m2 ? 3 : 2;
158
159 for (i = 0; i < fan_nr; i++) {
160 data->fan[i] = smsc47m1_read_value(data,
161 SMSC47M1_REG_FAN[i]);
162 data->fan_preload[i] = smsc47m1_read_value(data,
163 SMSC47M1_REG_FAN_PRELOAD[i]);
164 data->pwm[i] = smsc47m1_read_value(data,
165 SMSC47M1_REG_PWM[i]);
166 }
167
168 i = smsc47m1_read_value(data, SMSC47M1_REG_FANDIV);
169 data->fan_div[0] = (i >> 4) & 0x03;
170 data->fan_div[1] = i >> 6;
171
172 data->alarms = smsc47m1_read_value(data,
173 SMSC47M1_REG_ALARM) >> 6;
174 /* Clear alarms if needed */
175 if (data->alarms)
176 smsc47m1_write_value(data, SMSC47M1_REG_ALARM, 0xC0);
177
178 if (fan_nr >= 3) {
179 data->fan_div[2] = (smsc47m1_read_value(data,
180 SMSC47M2_REG_FANDIV3) >> 4) & 0x03;
181 data->alarms |= (smsc47m1_read_value(data,
182 SMSC47M2_REG_ALARM6) & 0x40) >> 4;
183 /* Clear alarm if needed */
184 if (data->alarms & 0x04)
185 smsc47m1_write_value(data,
186 SMSC47M2_REG_ALARM6,
187 0x40);
188 }
189
190 data->last_updated = jiffies;
191 }
192
193 mutex_unlock(&data->update_lock);
194 return data;
195}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Guenter Roeck96c6f812019-01-22 15:13:02 -0800197static ssize_t fan_show(struct device *dev, struct device_attribute *devattr,
198 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200200 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200202 int nr = attr->index;
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800203 /*
204 * This chip (stupidly) stops monitoring fan speed if PWM is
205 * enabled and duty cycle is 0%. This is fine if the monitoring
206 * and control concern the same fan, but troublesome if they are
207 * not (which could as well happen).
208 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 int rpm = (data->pwm[nr] & 0x7F) == 0x00 ? 0 :
210 FAN_FROM_REG(data->fan[nr],
211 DIV_FROM_REG(data->fan_div[nr]),
212 data->fan_preload[nr]);
213 return sprintf(buf, "%d\n", rpm);
214}
215
Guenter Roeck96c6f812019-01-22 15:13:02 -0800216static ssize_t fan_min_show(struct device *dev,
217 struct device_attribute *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200219 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200221 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 int rpm = MIN_FROM_REG(data->fan_preload[nr],
223 DIV_FROM_REG(data->fan_div[nr]));
224 return sprintf(buf, "%d\n", rpm);
225}
226
Guenter Roeck96c6f812019-01-22 15:13:02 -0800227static ssize_t fan_div_show(struct device *dev,
228 struct device_attribute *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200230 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200232 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Guenter Roeck96c6f812019-01-22 15:13:02 -0800235static ssize_t fan_alarm_show(struct device *dev,
236 struct device_attribute *devattr, char *buf)
Jean Delvare1f08af72008-01-06 15:36:13 +0100237{
238 int bitnr = to_sensor_dev_attr(devattr)->index;
239 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
240 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
241}
242
Guenter Roeck96c6f812019-01-22 15:13:02 -0800243static ssize_t pwm_show(struct device *dev, struct device_attribute *devattr,
244 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200246 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200248 return sprintf(buf, "%d\n", PWM_FROM_REG(data->pwm[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Guenter Roeck96c6f812019-01-22 15:13:02 -0800251static ssize_t pwm_en_show(struct device *dev,
252 struct device_attribute *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200254 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200256 return sprintf(buf, "%d\n", PWM_EN_FROM_REG(data->pwm[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Julia Lawall83aa233e5dc2016-12-22 13:05:06 +0100259static ssize_t alarms_show(struct device *dev,
260 struct device_attribute *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 struct smsc47m1_data *data = smsc47m1_update_device(dev, 0);
263 return sprintf(buf, "%d\n", data->alarms);
264}
265
Guenter Roeck96c6f812019-01-22 15:13:02 -0800266static ssize_t fan_min_store(struct device *dev,
267 struct device_attribute *devattr,
268 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200270 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200271 struct smsc47m1_data *data = dev_get_drvdata(dev);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200272 int nr = attr->index;
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800273 long rpmdiv;
274 long val;
275 int err;
276
277 err = kstrtol(buf, 10, &val);
278 if (err)
279 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100281 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 rpmdiv = val * DIV_FROM_REG(data->fan_div[nr]);
283
284 if (983040 > 192 * rpmdiv || 2 * rpmdiv > 983040) {
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100285 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return -EINVAL;
287 }
288
289 data->fan_preload[nr] = 192 - ((983040 + rpmdiv / 2) / rpmdiv);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200290 smsc47m1_write_value(data, SMSC47M1_REG_FAN_PRELOAD[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 data->fan_preload[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100292 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 return count;
295}
296
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800297/*
298 * Note: we save and restore the fan minimum here, because its value is
299 * determined in part by the fan clock divider. This follows the principle
300 * of least surprise; the user doesn't expect the fan minimum to change just
301 * because the divider changed.
302 */
Guenter Roeck96c6f812019-01-22 15:13:02 -0800303static ssize_t fan_div_store(struct device *dev,
304 struct device_attribute *devattr,
305 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200307 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200308 struct smsc47m1_data *data = dev_get_drvdata(dev);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200309 int nr = attr->index;
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800310 long new_div;
311 int err;
312 long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 u8 old_div = DIV_FROM_REG(data->fan_div[nr]);
314
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800315 err = kstrtol(buf, 10, &new_div);
316 if (err)
317 return err;
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (new_div == old_div) /* No change */
320 return count;
321
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100322 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 switch (new_div) {
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800324 case 1:
325 data->fan_div[nr] = 0;
326 break;
327 case 2:
328 data->fan_div[nr] = 1;
329 break;
330 case 4:
331 data->fan_div[nr] = 2;
332 break;
333 case 8:
334 data->fan_div[nr] = 3;
335 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 default:
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100337 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return -EINVAL;
339 }
340
Jean Delvare8eccbb62007-05-08 17:21:59 +0200341 switch (nr) {
342 case 0:
343 case 1:
Jean Delvare51f2cca2007-05-08 17:22:00 +0200344 tmp = smsc47m1_read_value(data, SMSC47M1_REG_FANDIV)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200345 & ~(0x03 << (4 + 2 * nr));
346 tmp |= data->fan_div[nr] << (4 + 2 * nr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200347 smsc47m1_write_value(data, SMSC47M1_REG_FANDIV, tmp);
Jean Delvare8eccbb62007-05-08 17:21:59 +0200348 break;
349 case 2:
Jean Delvare51f2cca2007-05-08 17:22:00 +0200350 tmp = smsc47m1_read_value(data, SMSC47M2_REG_FANDIV3) & 0xCF;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200351 tmp |= data->fan_div[2] << 4;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200352 smsc47m1_write_value(data, SMSC47M2_REG_FANDIV3, tmp);
Jean Delvare8eccbb62007-05-08 17:21:59 +0200353 break;
354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 /* Preserve fan min */
357 tmp = 192 - (old_div * (192 - data->fan_preload[nr])
358 + new_div / 2) / new_div;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800359 data->fan_preload[nr] = clamp_val(tmp, 0, 191);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200360 smsc47m1_write_value(data, SMSC47M1_REG_FAN_PRELOAD[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 data->fan_preload[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100362 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 return count;
365}
366
Guenter Roeck96c6f812019-01-22 15:13:02 -0800367static ssize_t pwm_store(struct device *dev, struct device_attribute *devattr,
368 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200370 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200371 struct smsc47m1_data *data = dev_get_drvdata(dev);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200372 int nr = attr->index;
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800373 long val;
374 int err;
375
376 err = kstrtol(buf, 10, &val);
377 if (err)
378 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 if (val < 0 || val > 255)
381 return -EINVAL;
382
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100383 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 data->pwm[nr] &= 0x81; /* Preserve additional bits */
385 data->pwm[nr] |= PWM_TO_REG(val);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200386 smsc47m1_write_value(data, SMSC47M1_REG_PWM[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100388 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 return count;
391}
392
Guenter Roeck96c6f812019-01-22 15:13:02 -0800393static ssize_t pwm_en_store(struct device *dev,
394 struct device_attribute *devattr, const char *buf,
395 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200397 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200398 struct smsc47m1_data *data = dev_get_drvdata(dev);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200399 int nr = attr->index;
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800400 unsigned long val;
401 int err;
402
403 err = kstrtoul(buf, 10, &val);
404 if (err)
405 return err;
406
407 if (val > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return -EINVAL;
409
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100410 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 data->pwm[nr] &= 0xFE; /* preserve the other bits */
412 data->pwm[nr] |= !val;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200413 smsc47m1_write_value(data, SMSC47M1_REG_PWM[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100415 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 return count;
418}
419
Guenter Roeck96c6f812019-01-22 15:13:02 -0800420static SENSOR_DEVICE_ATTR_RO(fan1_input, fan, 0);
421static SENSOR_DEVICE_ATTR_RW(fan1_min, fan_min, 0);
422static SENSOR_DEVICE_ATTR_RW(fan1_div, fan_div, 0);
423static SENSOR_DEVICE_ATTR_RO(fan1_alarm, fan_alarm, 0);
424static SENSOR_DEVICE_ATTR_RW(pwm1, pwm, 0);
425static SENSOR_DEVICE_ATTR_RW(pwm1_enable, pwm_en, 0);
426static SENSOR_DEVICE_ATTR_RO(fan2_input, fan, 1);
427static SENSOR_DEVICE_ATTR_RW(fan2_min, fan_min, 1);
428static SENSOR_DEVICE_ATTR_RW(fan2_div, fan_div, 1);
429static SENSOR_DEVICE_ATTR_RO(fan2_alarm, fan_alarm, 1);
430static SENSOR_DEVICE_ATTR_RW(pwm2, pwm, 1);
431static SENSOR_DEVICE_ATTR_RW(pwm2_enable, pwm_en, 1);
432static SENSOR_DEVICE_ATTR_RO(fan3_input, fan, 2);
433static SENSOR_DEVICE_ATTR_RW(fan3_min, fan_min, 2);
434static SENSOR_DEVICE_ATTR_RW(fan3_div, fan_div, 2);
435static SENSOR_DEVICE_ATTR_RO(fan3_alarm, fan_alarm, 2);
436static SENSOR_DEVICE_ATTR_RW(pwm3, pwm, 2);
437static SENSOR_DEVICE_ATTR_RW(pwm3_enable, pwm_en, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Julia Lawall83aa233e5dc2016-12-22 13:05:06 +0100439static DEVICE_ATTR_RO(alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Julia Lawall83aa233e5dc2016-12-22 13:05:06 +0100441static ssize_t name_show(struct device *dev, struct device_attribute
Jean Delvare51f2cca2007-05-08 17:22:00 +0200442 *devattr, char *buf)
443{
444 struct smsc47m1_data *data = dev_get_drvdata(dev);
445
446 return sprintf(buf, "%s\n", data->name);
447}
Julia Lawall83aa233e5dc2016-12-22 13:05:06 +0100448static DEVICE_ATTR_RO(name);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200449
Guenter Roeck7e612682012-01-16 17:15:02 -0800450static struct attribute *smsc47m1_attributes_fan1[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200451 &sensor_dev_attr_fan1_input.dev_attr.attr,
452 &sensor_dev_attr_fan1_min.dev_attr.attr,
453 &sensor_dev_attr_fan1_div.dev_attr.attr,
Jean Delvare1f08af72008-01-06 15:36:13 +0100454 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Guenter Roeck7e612682012-01-16 17:15:02 -0800455 NULL
456};
457
458static const struct attribute_group smsc47m1_group_fan1 = {
459 .attrs = smsc47m1_attributes_fan1,
460};
461
462static struct attribute *smsc47m1_attributes_fan2[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200463 &sensor_dev_attr_fan2_input.dev_attr.attr,
464 &sensor_dev_attr_fan2_min.dev_attr.attr,
465 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvare1f08af72008-01-06 15:36:13 +0100466 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Guenter Roeck7e612682012-01-16 17:15:02 -0800467 NULL
468};
469
470static const struct attribute_group smsc47m1_group_fan2 = {
471 .attrs = smsc47m1_attributes_fan2,
472};
473
474static struct attribute *smsc47m1_attributes_fan3[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200475 &sensor_dev_attr_fan3_input.dev_attr.attr,
476 &sensor_dev_attr_fan3_min.dev_attr.attr,
477 &sensor_dev_attr_fan3_div.dev_attr.attr,
Jean Delvare1f08af72008-01-06 15:36:13 +0100478 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Guenter Roeck7e612682012-01-16 17:15:02 -0800479 NULL
480};
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200481
Guenter Roeck7e612682012-01-16 17:15:02 -0800482static const struct attribute_group smsc47m1_group_fan3 = {
483 .attrs = smsc47m1_attributes_fan3,
484};
485
486static struct attribute *smsc47m1_attributes_pwm1[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200487 &sensor_dev_attr_pwm1.dev_attr.attr,
488 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
Guenter Roeck7e612682012-01-16 17:15:02 -0800489 NULL
490};
491
492static const struct attribute_group smsc47m1_group_pwm1 = {
493 .attrs = smsc47m1_attributes_pwm1,
494};
495
496static struct attribute *smsc47m1_attributes_pwm2[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200497 &sensor_dev_attr_pwm2.dev_attr.attr,
498 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
Guenter Roeck7e612682012-01-16 17:15:02 -0800499 NULL
500};
501
502static const struct attribute_group smsc47m1_group_pwm2 = {
503 .attrs = smsc47m1_attributes_pwm2,
504};
505
506static struct attribute *smsc47m1_attributes_pwm3[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200507 &sensor_dev_attr_pwm3.dev_attr.attr,
508 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
Guenter Roeck7e612682012-01-16 17:15:02 -0800509 NULL
510};
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200511
Guenter Roeck7e612682012-01-16 17:15:02 -0800512static const struct attribute_group smsc47m1_group_pwm3 = {
513 .attrs = smsc47m1_attributes_pwm3,
514};
515
516static struct attribute *smsc47m1_attributes[] = {
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200517 &dev_attr_alarms.attr,
Jean Delvare51f2cca2007-05-08 17:22:00 +0200518 &dev_attr_name.attr,
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200519 NULL
520};
521
522static const struct attribute_group smsc47m1_group = {
523 .attrs = smsc47m1_attributes,
524};
525
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700526static int __init smsc47m1_find(struct smsc47m1_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 u8 val;
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700529 unsigned short addr;
Guenter Roeckd6410402019-04-04 11:28:37 -0700530 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Guenter Roeckd6410402019-04-04 11:28:37 -0700532 err = superio_enter();
533 if (err)
534 return err;
535
Jean Delvare67b671b2007-12-06 23:13:42 +0100536 val = force_id ? force_id : superio_inb(SUPERIO_REG_DEVID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 /*
Jean Delvare60917802006-10-08 22:00:44 +0200539 * SMSC LPC47M10x/LPC47M112/LPC47M13x (device id 0x59), LPC47M14x
540 * (device id 0x5F) and LPC47B27x (device id 0x51) have fan control.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 * The LPC47M15x and LPC47M192 chips "with hardware monitoring block"
Jean Delvareec5ce552005-04-26 22:09:43 +0200542 * can do much more besides (device id 0x60).
Jean Delvareb890a072005-10-26 22:21:24 +0200543 * The LPC47M997 is undocumented, but seems to be compatible with
544 * the LPC47M192, and has the same device id.
Jean Delvare8eccbb62007-05-08 17:21:59 +0200545 * The LPC47M292 (device id 0x6B) is somewhat compatible, but it
546 * supports a 3rd fan, and the pin configuration registers are
547 * unfortunately different.
Jean Delvare1b54ab42009-07-28 16:31:39 +0200548 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 */
Jean Delvare51f2cca2007-05-08 17:22:00 +0200552 switch (val) {
Jean Delvare8eccbb62007-05-08 17:21:59 +0200553 case 0x51:
Joe Perches512504e2010-10-20 06:51:49 +0000554 pr_info("Found SMSC LPC47B27x\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200555 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200556 break;
557 case 0x59:
Joe Perches512504e2010-10-20 06:51:49 +0000558 pr_info("Found SMSC LPC47M10x/LPC47M112/LPC47M13x\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200559 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200560 break;
561 case 0x5F:
Joe Perches512504e2010-10-20 06:51:49 +0000562 pr_info("Found SMSC LPC47M14x\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200563 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200564 break;
565 case 0x60:
Joe Perches512504e2010-10-20 06:51:49 +0000566 pr_info("Found SMSC LPC47M15x/LPC47M192/LPC47M997\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200567 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200568 break;
569 case 0x6B:
Jean Delvare1b54ab42009-07-28 16:31:39 +0200570 if (superio_inb(SUPERIO_REG_DEVREV) & 0x80) {
Joe Perches512504e2010-10-20 06:51:49 +0000571 pr_debug("Found SMSC LPC47M233, unsupported\n");
Jean Delvare1b54ab42009-07-28 16:31:39 +0200572 superio_exit();
573 return -ENODEV;
574 }
575
Joe Perches512504e2010-10-20 06:51:49 +0000576 pr_info("Found SMSC LPC47M292\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200577 sio_data->type = smsc47m2;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200578 break;
579 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 superio_exit();
581 return -ENODEV;
582 }
583
584 superio_select();
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700585 addr = (superio_inb(SUPERIO_REG_BASE) << 8)
Jean Delvare2d8672c2005-07-19 23:56:35 +0200586 | superio_inb(SUPERIO_REG_BASE + 1);
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700587 if (addr == 0) {
Joe Perches512504e2010-10-20 06:51:49 +0000588 pr_info("Device address not set, will not use\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 superio_exit();
590 return -ENODEV;
591 }
592
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800593 /*
594 * Enable only if address is set (needed at least on the
595 * Compaq Presario S4000NX)
596 */
Jean Delvarefa0bff02009-12-16 21:38:27 +0100597 sio_data->activate = superio_inb(SUPERIO_REG_ACT);
598 if ((sio_data->activate & 0x01) == 0) {
Joe Perches512504e2010-10-20 06:51:49 +0000599 pr_info("Enabling device\n");
Jean Delvarefa0bff02009-12-16 21:38:27 +0100600 superio_outb(SUPERIO_REG_ACT, sio_data->activate | 0x01);
601 }
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 superio_exit();
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700604 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Jean Delvarefa0bff02009-12-16 21:38:27 +0100607/* Restore device to its initial state */
Jeff Mahoneya00d6432010-01-25 15:00:48 +0100608static void smsc47m1_restore(const struct smsc47m1_sio_data *sio_data)
Jean Delvarefa0bff02009-12-16 21:38:27 +0100609{
610 if ((sio_data->activate & 0x01) == 0) {
Guenter Roeckd6410402019-04-04 11:28:37 -0700611 if (!superio_enter()) {
612 superio_select();
613 pr_info("Disabling device\n");
614 superio_outb(SUPERIO_REG_ACT, sio_data->activate);
615 superio_exit();
616 } else {
617 pr_warn("Failed to disable device\n");
618 }
Jean Delvarefa0bff02009-12-16 21:38:27 +0100619 }
620}
621
Jean Delvarea0e92d72009-12-16 21:38:26 +0100622#define CHECK 1
623#define REQUEST 2
Jean Delvarea0e92d72009-12-16 21:38:26 +0100624
625/*
626 * This function can be used to:
627 * - test for resource conflicts with ACPI
628 * - request the resources
Jean Delvarea0e92d72009-12-16 21:38:26 +0100629 * We only allocate the I/O ports we really need, to minimize the risk of
630 * conflicts with ACPI or with other drivers.
631 */
Guenter Roeck08ad7c92012-06-02 12:04:07 -0700632static int __init smsc47m1_handle_resources(unsigned short address,
633 enum chips type, int action,
634 struct device *dev)
Jean Delvarea0e92d72009-12-16 21:38:26 +0100635{
636 static const u8 ports_m1[] = {
637 /* register, region length */
638 0x04, 1,
639 0x33, 4,
640 0x56, 7,
641 };
642
643 static const u8 ports_m2[] = {
644 /* register, region length */
645 0x04, 1,
646 0x09, 1,
647 0x2c, 2,
648 0x35, 4,
649 0x56, 7,
650 0x69, 4,
651 };
652
653 int i, ports_size, err;
654 const u8 *ports;
655
656 switch (type) {
657 case smsc47m1:
658 default:
659 ports = ports_m1;
660 ports_size = ARRAY_SIZE(ports_m1);
661 break;
662 case smsc47m2:
663 ports = ports_m2;
664 ports_size = ARRAY_SIZE(ports_m2);
665 break;
666 }
667
668 for (i = 0; i + 1 < ports_size; i += 2) {
669 unsigned short start = address + ports[i];
670 unsigned short len = ports[i + 1];
671
672 switch (action) {
673 case CHECK:
674 /* Only check for conflicts */
675 err = acpi_check_region(start, len, DRVNAME);
676 if (err)
677 return err;
678 break;
679 case REQUEST:
680 /* Request the resources */
Guenter Roeck08ad7c92012-06-02 12:04:07 -0700681 if (!devm_request_region(dev, start, len, DRVNAME)) {
682 dev_err(dev,
683 "Region 0x%hx-0x%hx already in use!\n",
684 start, start + len);
Jean Delvarea0e92d72009-12-16 21:38:26 +0100685 return -EBUSY;
686 }
687 break;
Jean Delvarea0e92d72009-12-16 21:38:26 +0100688 }
689 }
690
691 return 0;
692}
693
Guenter Roeck7e612682012-01-16 17:15:02 -0800694static void smsc47m1_remove_files(struct device *dev)
695{
696 sysfs_remove_group(&dev->kobj, &smsc47m1_group);
697 sysfs_remove_group(&dev->kobj, &smsc47m1_group_fan1);
698 sysfs_remove_group(&dev->kobj, &smsc47m1_group_fan2);
699 sysfs_remove_group(&dev->kobj, &smsc47m1_group_fan3);
700 sysfs_remove_group(&dev->kobj, &smsc47m1_group_pwm1);
701 sysfs_remove_group(&dev->kobj, &smsc47m1_group_pwm2);
702 sysfs_remove_group(&dev->kobj, &smsc47m1_group_pwm3);
703}
704
Jean Delvare3ecf44b2009-12-16 21:38:26 +0100705static int __init smsc47m1_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200707 struct device *dev = &pdev->dev;
Jingoo Hana8b3a3a2013-07-30 17:13:06 +0900708 struct smsc47m1_sio_data *sio_data = dev_get_platdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 struct smsc47m1_data *data;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200710 struct resource *res;
Jean Delvarea0e92d72009-12-16 21:38:26 +0100711 int err;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200712 int fan1, fan2, fan3, pwm1, pwm2, pwm3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800714 static const char * const names[] = {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200715 "smsc47m1",
716 "smsc47m2",
717 };
718
719 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Jean Delvarea0e92d72009-12-16 21:38:26 +0100720 err = smsc47m1_handle_resources(res->start, sio_data->type,
721 REQUEST, dev);
722 if (err < 0)
723 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Guenter Roeck08ad7c92012-06-02 12:04:07 -0700725 data = devm_kzalloc(dev, sizeof(struct smsc47m1_data), GFP_KERNEL);
726 if (!data)
727 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Jean Delvare51f2cca2007-05-08 17:22:00 +0200729 data->addr = res->start;
730 data->type = sio_data->type;
731 data->name = names[sio_data->type];
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100732 mutex_init(&data->update_lock);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200733 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800735 /*
736 * If no function is properly configured, there's no point in
737 * actually registering the chip.
738 */
Jean Delvare51f2cca2007-05-08 17:22:00 +0200739 pwm1 = (smsc47m1_read_value(data, SMSC47M1_REG_PPIN(0)) & 0x05)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 == 0x04;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200741 pwm2 = (smsc47m1_read_value(data, SMSC47M1_REG_PPIN(1)) & 0x05)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 == 0x04;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200743 if (data->type == smsc47m2) {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200744 fan1 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN1)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200745 & 0x0d) == 0x09;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200746 fan2 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN2)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200747 & 0x0d) == 0x09;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200748 fan3 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN3)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200749 & 0x0d) == 0x0d;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200750 pwm3 = (smsc47m1_read_value(data, SMSC47M2_REG_PPIN3)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200751 & 0x0d) == 0x08;
752 } else {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200753 fan1 = (smsc47m1_read_value(data, SMSC47M1_REG_TPIN(0))
Jean Delvare8eccbb62007-05-08 17:21:59 +0200754 & 0x05) == 0x05;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200755 fan2 = (smsc47m1_read_value(data, SMSC47M1_REG_TPIN(1))
Jean Delvare8eccbb62007-05-08 17:21:59 +0200756 & 0x05) == 0x05;
757 fan3 = 0;
758 pwm3 = 0;
759 }
760 if (!(fan1 || fan2 || fan3 || pwm1 || pwm2 || pwm3)) {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200761 dev_warn(dev, "Device not configured, will not use\n");
Guenter Roeck08ad7c92012-06-02 12:04:07 -0700762 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800765 /*
766 * Some values (fan min, clock dividers, pwm registers) may be
767 * needed before any update is triggered, so we better read them
768 * at least once here. We don't usually do it that way, but in
769 * this particular case, manually reading 5 registers out of 8
770 * doesn't make much sense and we're better using the existing
771 * function.
772 */
Jean Delvare51f2cca2007-05-08 17:22:00 +0200773 smsc47m1_update_device(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400775 /* Register sysfs hooks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (fan1) {
Guenter Roeck7e612682012-01-16 17:15:02 -0800777 err = sysfs_create_group(&dev->kobj,
778 &smsc47m1_group_fan1);
779 if (err)
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200780 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200782 dev_dbg(dev, "Fan 1 not enabled by hardware, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 if (fan2) {
Guenter Roeck7e612682012-01-16 17:15:02 -0800785 err = sysfs_create_group(&dev->kobj,
786 &smsc47m1_group_fan2);
787 if (err)
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200788 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200790 dev_dbg(dev, "Fan 2 not enabled by hardware, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Jean Delvare8eccbb62007-05-08 17:21:59 +0200792 if (fan3) {
Guenter Roeck7e612682012-01-16 17:15:02 -0800793 err = sysfs_create_group(&dev->kobj,
794 &smsc47m1_group_fan3);
795 if (err)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200796 goto error_remove_files;
Jean Delvare8477d022007-08-16 14:33:37 +0200797 } else if (data->type == smsc47m2)
Jean Delvare51f2cca2007-05-08 17:22:00 +0200798 dev_dbg(dev, "Fan 3 not enabled by hardware, skipping\n");
Jean Delvare8eccbb62007-05-08 17:21:59 +0200799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (pwm1) {
Guenter Roeck7e612682012-01-16 17:15:02 -0800801 err = sysfs_create_group(&dev->kobj,
802 &smsc47m1_group_pwm1);
803 if (err)
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200804 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200806 dev_dbg(dev, "PWM 1 not enabled by hardware, skipping\n");
Jean Delvare8eccbb62007-05-08 17:21:59 +0200807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (pwm2) {
Guenter Roeck7e612682012-01-16 17:15:02 -0800809 err = sysfs_create_group(&dev->kobj,
810 &smsc47m1_group_pwm2);
811 if (err)
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200812 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200814 dev_dbg(dev, "PWM 2 not enabled by hardware, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Jean Delvare8eccbb62007-05-08 17:21:59 +0200816 if (pwm3) {
Guenter Roeck7e612682012-01-16 17:15:02 -0800817 err = sysfs_create_group(&dev->kobj,
818 &smsc47m1_group_pwm3);
819 if (err)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200820 goto error_remove_files;
Jean Delvare8477d022007-08-16 14:33:37 +0200821 } else if (data->type == smsc47m2)
Jean Delvare51f2cca2007-05-08 17:22:00 +0200822 dev_dbg(dev, "PWM 3 not enabled by hardware, skipping\n");
Jean Delvare8eccbb62007-05-08 17:21:59 +0200823
Guenter Roeck7e612682012-01-16 17:15:02 -0800824 err = sysfs_create_group(&dev->kobj, &smsc47m1_group);
825 if (err)
Jean Delvare68a50b52007-08-12 13:58:50 +0200826 goto error_remove_files;
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200827
Tony Jones1beeffe2007-08-20 13:46:20 -0700828 data->hwmon_dev = hwmon_device_register(dev);
829 if (IS_ERR(data->hwmon_dev)) {
830 err = PTR_ERR(data->hwmon_dev);
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200831 goto error_remove_files;
832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 return 0;
835
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200836error_remove_files:
Guenter Roeck7e612682012-01-16 17:15:02 -0800837 smsc47m1_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return err;
839}
840
Jean Delvare3ecf44b2009-12-16 21:38:26 +0100841static int __exit smsc47m1_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200843 struct smsc47m1_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Tony Jones1beeffe2007-08-20 13:46:20 -0700845 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeck7e612682012-01-16 17:15:02 -0800846 smsc47m1_remove_files(&pdev->dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return 0;
849}
850
Axel Line70198a2014-07-17 19:15:36 +0800851static struct platform_driver smsc47m1_driver = {
852 .driver = {
Axel Line70198a2014-07-17 19:15:36 +0800853 .name = DRVNAME,
854 },
855 .remove = __exit_p(smsc47m1_remove),
856};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Jean Delvare51f2cca2007-05-08 17:22:00 +0200858static int __init smsc47m1_device_add(unsigned short address,
859 const struct smsc47m1_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200861 struct resource res = {
862 .start = address,
863 .end = address + SMSC_EXTENT - 1,
864 .name = DRVNAME,
865 .flags = IORESOURCE_IO,
866 };
867 int err;
868
Jean Delvarea0e92d72009-12-16 21:38:26 +0100869 err = smsc47m1_handle_resources(address, sio_data->type, CHECK, NULL);
Jean Delvareb9acb642009-01-07 16:37:35 +0100870 if (err)
871 goto exit;
872
Jean Delvare51f2cca2007-05-08 17:22:00 +0200873 pdev = platform_device_alloc(DRVNAME, address);
874 if (!pdev) {
875 err = -ENOMEM;
Joe Perches512504e2010-10-20 06:51:49 +0000876 pr_err("Device allocation failed\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200877 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 }
879
Jean Delvare51f2cca2007-05-08 17:22:00 +0200880 err = platform_device_add_resources(pdev, &res, 1);
881 if (err) {
Joe Perches512504e2010-10-20 06:51:49 +0000882 pr_err("Device resource addition failed (%d)\n", err);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200883 goto exit_device_put;
884 }
885
Jean Delvare2df6d812007-06-09 10:11:16 -0400886 err = platform_device_add_data(pdev, sio_data,
887 sizeof(struct smsc47m1_sio_data));
888 if (err) {
Joe Perches512504e2010-10-20 06:51:49 +0000889 pr_err("Platform data allocation failed\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200890 goto exit_device_put;
891 }
Jean Delvare51f2cca2007-05-08 17:22:00 +0200892
893 err = platform_device_add(pdev);
894 if (err) {
Joe Perches512504e2010-10-20 06:51:49 +0000895 pr_err("Device addition failed (%d)\n", err);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200896 goto exit_device_put;
897 }
898
899 return 0;
900
901exit_device_put:
902 platform_device_put(pdev);
903exit:
904 return err;
905}
906
907static int __init sm_smsc47m1_init(void)
908{
909 int err;
910 unsigned short address;
911 struct smsc47m1_sio_data sio_data;
912
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700913 err = smsc47m1_find(&sio_data);
914 if (err < 0)
915 return err;
916 address = err;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200917
Jean Delvare51f2cca2007-05-08 17:22:00 +0200918 /* Sets global pdev as a side effect */
919 err = smsc47m1_device_add(address, &sio_data);
920 if (err)
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700921 return err;
Jean Delvare3ecf44b2009-12-16 21:38:26 +0100922
923 err = platform_driver_probe(&smsc47m1_driver, smsc47m1_probe);
924 if (err)
925 goto exit_device;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200926
927 return 0;
928
Jean Delvare3ecf44b2009-12-16 21:38:26 +0100929exit_device:
930 platform_device_unregister(pdev);
Jean Delvarefa0bff02009-12-16 21:38:27 +0100931 smsc47m1_restore(&sio_data);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200932 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
935static void __exit sm_smsc47m1_exit(void)
936{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200937 platform_driver_unregister(&smsc47m1_driver);
Jingoo Hana8b3a3a2013-07-30 17:13:06 +0900938 smsc47m1_restore(dev_get_platdata(&pdev->dev));
Jean Delvare3ecf44b2009-12-16 21:38:26 +0100939 platform_device_unregister(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
942MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>");
943MODULE_DESCRIPTION("SMSC LPC47M1xx fan sensors driver");
944MODULE_LICENSE("GPL");
945
946module_init(sm_smsc47m1_init);
947module_exit(sm_smsc47m1_exit);