blob: 37531b5c82547c6d79eb2df07ea08c4d5d0312a6 [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 Delvare7c81c60f2014-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;
Masahiro Yamada5fe625c2019-06-06 17:52:42 +0900354 default:
355 BUG();
Jean Delvare8eccbb62007-05-08 17:21:59 +0200356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 /* Preserve fan min */
359 tmp = 192 - (old_div * (192 - data->fan_preload[nr])
360 + new_div / 2) / new_div;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800361 data->fan_preload[nr] = clamp_val(tmp, 0, 191);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200362 smsc47m1_write_value(data, SMSC47M1_REG_FAN_PRELOAD[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 data->fan_preload[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100364 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 return count;
367}
368
Guenter Roeck96c6f812019-01-22 15:13:02 -0800369static ssize_t pwm_store(struct device *dev, struct device_attribute *devattr,
370 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200372 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200373 struct smsc47m1_data *data = dev_get_drvdata(dev);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200374 int nr = attr->index;
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800375 long val;
376 int err;
377
378 err = kstrtol(buf, 10, &val);
379 if (err)
380 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 if (val < 0 || val > 255)
383 return -EINVAL;
384
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100385 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 data->pwm[nr] &= 0x81; /* Preserve additional bits */
387 data->pwm[nr] |= PWM_TO_REG(val);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200388 smsc47m1_write_value(data, SMSC47M1_REG_PWM[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100390 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 return count;
393}
394
Guenter Roeck96c6f812019-01-22 15:13:02 -0800395static ssize_t pwm_en_store(struct device *dev,
396 struct device_attribute *devattr, const char *buf,
397 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200399 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200400 struct smsc47m1_data *data = dev_get_drvdata(dev);
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200401 int nr = attr->index;
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800402 unsigned long val;
403 int err;
404
405 err = kstrtoul(buf, 10, &val);
406 if (err)
407 return err;
408
409 if (val > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return -EINVAL;
411
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100412 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 data->pwm[nr] &= 0xFE; /* preserve the other bits */
414 data->pwm[nr] |= !val;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200415 smsc47m1_write_value(data, SMSC47M1_REG_PWM[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100417 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 return count;
420}
421
Guenter Roeck96c6f812019-01-22 15:13:02 -0800422static SENSOR_DEVICE_ATTR_RO(fan1_input, fan, 0);
423static SENSOR_DEVICE_ATTR_RW(fan1_min, fan_min, 0);
424static SENSOR_DEVICE_ATTR_RW(fan1_div, fan_div, 0);
425static SENSOR_DEVICE_ATTR_RO(fan1_alarm, fan_alarm, 0);
426static SENSOR_DEVICE_ATTR_RW(pwm1, pwm, 0);
427static SENSOR_DEVICE_ATTR_RW(pwm1_enable, pwm_en, 0);
428static SENSOR_DEVICE_ATTR_RO(fan2_input, fan, 1);
429static SENSOR_DEVICE_ATTR_RW(fan2_min, fan_min, 1);
430static SENSOR_DEVICE_ATTR_RW(fan2_div, fan_div, 1);
431static SENSOR_DEVICE_ATTR_RO(fan2_alarm, fan_alarm, 1);
432static SENSOR_DEVICE_ATTR_RW(pwm2, pwm, 1);
433static SENSOR_DEVICE_ATTR_RW(pwm2_enable, pwm_en, 1);
434static SENSOR_DEVICE_ATTR_RO(fan3_input, fan, 2);
435static SENSOR_DEVICE_ATTR_RW(fan3_min, fan_min, 2);
436static SENSOR_DEVICE_ATTR_RW(fan3_div, fan_div, 2);
437static SENSOR_DEVICE_ATTR_RO(fan3_alarm, fan_alarm, 2);
438static SENSOR_DEVICE_ATTR_RW(pwm3, pwm, 2);
439static SENSOR_DEVICE_ATTR_RW(pwm3_enable, pwm_en, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Julia Lawall83aa233e5dc2016-12-22 13:05:06 +0100441static DEVICE_ATTR_RO(alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Julia Lawall83aa233e5dc2016-12-22 13:05:06 +0100443static ssize_t name_show(struct device *dev, struct device_attribute
Jean Delvare51f2cca2007-05-08 17:22:00 +0200444 *devattr, char *buf)
445{
446 struct smsc47m1_data *data = dev_get_drvdata(dev);
447
448 return sprintf(buf, "%s\n", data->name);
449}
Julia Lawall83aa233e5dc2016-12-22 13:05:06 +0100450static DEVICE_ATTR_RO(name);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200451
Guenter Roeck7e6126852012-01-16 17:15:02 -0800452static struct attribute *smsc47m1_attributes_fan1[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200453 &sensor_dev_attr_fan1_input.dev_attr.attr,
454 &sensor_dev_attr_fan1_min.dev_attr.attr,
455 &sensor_dev_attr_fan1_div.dev_attr.attr,
Jean Delvare1f08af72008-01-06 15:36:13 +0100456 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Guenter Roeck7e6126852012-01-16 17:15:02 -0800457 NULL
458};
459
460static const struct attribute_group smsc47m1_group_fan1 = {
461 .attrs = smsc47m1_attributes_fan1,
462};
463
464static struct attribute *smsc47m1_attributes_fan2[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200465 &sensor_dev_attr_fan2_input.dev_attr.attr,
466 &sensor_dev_attr_fan2_min.dev_attr.attr,
467 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvare1f08af72008-01-06 15:36:13 +0100468 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Guenter Roeck7e6126852012-01-16 17:15:02 -0800469 NULL
470};
471
472static const struct attribute_group smsc47m1_group_fan2 = {
473 .attrs = smsc47m1_attributes_fan2,
474};
475
476static struct attribute *smsc47m1_attributes_fan3[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200477 &sensor_dev_attr_fan3_input.dev_attr.attr,
478 &sensor_dev_attr_fan3_min.dev_attr.attr,
479 &sensor_dev_attr_fan3_div.dev_attr.attr,
Jean Delvare1f08af72008-01-06 15:36:13 +0100480 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Guenter Roeck7e6126852012-01-16 17:15:02 -0800481 NULL
482};
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200483
Guenter Roeck7e6126852012-01-16 17:15:02 -0800484static const struct attribute_group smsc47m1_group_fan3 = {
485 .attrs = smsc47m1_attributes_fan3,
486};
487
488static struct attribute *smsc47m1_attributes_pwm1[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200489 &sensor_dev_attr_pwm1.dev_attr.attr,
490 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
Guenter Roeck7e6126852012-01-16 17:15:02 -0800491 NULL
492};
493
494static const struct attribute_group smsc47m1_group_pwm1 = {
495 .attrs = smsc47m1_attributes_pwm1,
496};
497
498static struct attribute *smsc47m1_attributes_pwm2[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200499 &sensor_dev_attr_pwm2.dev_attr.attr,
500 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
Guenter Roeck7e6126852012-01-16 17:15:02 -0800501 NULL
502};
503
504static const struct attribute_group smsc47m1_group_pwm2 = {
505 .attrs = smsc47m1_attributes_pwm2,
506};
507
508static struct attribute *smsc47m1_attributes_pwm3[] = {
Jean Delvaree84cfbc2007-05-08 17:22:00 +0200509 &sensor_dev_attr_pwm3.dev_attr.attr,
510 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
Guenter Roeck7e6126852012-01-16 17:15:02 -0800511 NULL
512};
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200513
Guenter Roeck7e6126852012-01-16 17:15:02 -0800514static const struct attribute_group smsc47m1_group_pwm3 = {
515 .attrs = smsc47m1_attributes_pwm3,
516};
517
518static struct attribute *smsc47m1_attributes[] = {
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200519 &dev_attr_alarms.attr,
Jean Delvare51f2cca2007-05-08 17:22:00 +0200520 &dev_attr_name.attr,
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200521 NULL
522};
523
524static const struct attribute_group smsc47m1_group = {
525 .attrs = smsc47m1_attributes,
526};
527
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700528static int __init smsc47m1_find(struct smsc47m1_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
530 u8 val;
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700531 unsigned short addr;
Guenter Roeckd6410402019-04-04 11:28:37 -0700532 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Guenter Roeckd6410402019-04-04 11:28:37 -0700534 err = superio_enter();
535 if (err)
536 return err;
537
Jean Delvare67b671b2007-12-06 23:13:42 +0100538 val = force_id ? force_id : superio_inb(SUPERIO_REG_DEVID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /*
Jean Delvare60917802006-10-08 22:00:44 +0200541 * SMSC LPC47M10x/LPC47M112/LPC47M13x (device id 0x59), LPC47M14x
542 * (device id 0x5F) and LPC47B27x (device id 0x51) have fan control.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 * The LPC47M15x and LPC47M192 chips "with hardware monitoring block"
Jean Delvareec5ce552005-04-26 22:09:43 +0200544 * can do much more besides (device id 0x60).
Jean Delvareb890a072005-10-26 22:21:24 +0200545 * The LPC47M997 is undocumented, but seems to be compatible with
546 * the LPC47M192, and has the same device id.
Jean Delvare8eccbb62007-05-08 17:21:59 +0200547 * The LPC47M292 (device id 0x6B) is somewhat compatible, but it
548 * supports a 3rd fan, and the pin configuration registers are
549 * unfortunately different.
Jean Delvare1b54ab42009-07-28 16:31:39 +0200550 * The LPC47M233 has the same device id (0x6B) but is not compatible.
551 * We check the high bit of the device revision register to
552 * differentiate them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 */
Jean Delvare51f2cca2007-05-08 17:22:00 +0200554 switch (val) {
Jean Delvare8eccbb62007-05-08 17:21:59 +0200555 case 0x51:
Joe Perches512504e2010-10-20 06:51:49 +0000556 pr_info("Found SMSC LPC47B27x\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200557 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200558 break;
559 case 0x59:
Joe Perches512504e2010-10-20 06:51:49 +0000560 pr_info("Found SMSC LPC47M10x/LPC47M112/LPC47M13x\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200561 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200562 break;
563 case 0x5F:
Joe Perches512504e2010-10-20 06:51:49 +0000564 pr_info("Found SMSC LPC47M14x\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200565 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200566 break;
567 case 0x60:
Joe Perches512504e2010-10-20 06:51:49 +0000568 pr_info("Found SMSC LPC47M15x/LPC47M192/LPC47M997\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200569 sio_data->type = smsc47m1;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200570 break;
571 case 0x6B:
Jean Delvare1b54ab42009-07-28 16:31:39 +0200572 if (superio_inb(SUPERIO_REG_DEVREV) & 0x80) {
Joe Perches512504e2010-10-20 06:51:49 +0000573 pr_debug("Found SMSC LPC47M233, unsupported\n");
Jean Delvare1b54ab42009-07-28 16:31:39 +0200574 superio_exit();
575 return -ENODEV;
576 }
577
Joe Perches512504e2010-10-20 06:51:49 +0000578 pr_info("Found SMSC LPC47M292\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200579 sio_data->type = smsc47m2;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200580 break;
581 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 superio_exit();
583 return -ENODEV;
584 }
585
586 superio_select();
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700587 addr = (superio_inb(SUPERIO_REG_BASE) << 8)
Jean Delvare2d8672c2005-07-19 23:56:35 +0200588 | superio_inb(SUPERIO_REG_BASE + 1);
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700589 if (addr == 0) {
Joe Perches512504e2010-10-20 06:51:49 +0000590 pr_info("Device address not set, will not use\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 superio_exit();
592 return -ENODEV;
593 }
594
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800595 /*
596 * Enable only if address is set (needed at least on the
597 * Compaq Presario S4000NX)
598 */
Jean Delvarefa0bff02009-12-16 21:38:27 +0100599 sio_data->activate = superio_inb(SUPERIO_REG_ACT);
600 if ((sio_data->activate & 0x01) == 0) {
Joe Perches512504e2010-10-20 06:51:49 +0000601 pr_info("Enabling device\n");
Jean Delvarefa0bff02009-12-16 21:38:27 +0100602 superio_outb(SUPERIO_REG_ACT, sio_data->activate | 0x01);
603 }
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 superio_exit();
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700606 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Jean Delvarefa0bff02009-12-16 21:38:27 +0100609/* Restore device to its initial state */
Jeff Mahoneya00d6432010-01-25 15:00:48 +0100610static void smsc47m1_restore(const struct smsc47m1_sio_data *sio_data)
Jean Delvarefa0bff02009-12-16 21:38:27 +0100611{
612 if ((sio_data->activate & 0x01) == 0) {
Guenter Roeckd6410402019-04-04 11:28:37 -0700613 if (!superio_enter()) {
614 superio_select();
615 pr_info("Disabling device\n");
616 superio_outb(SUPERIO_REG_ACT, sio_data->activate);
617 superio_exit();
618 } else {
619 pr_warn("Failed to disable device\n");
620 }
Jean Delvarefa0bff02009-12-16 21:38:27 +0100621 }
622}
623
Jean Delvarea0e92d72009-12-16 21:38:26 +0100624#define CHECK 1
625#define REQUEST 2
Jean Delvarea0e92d72009-12-16 21:38:26 +0100626
627/*
628 * This function can be used to:
629 * - test for resource conflicts with ACPI
630 * - request the resources
Jean Delvarea0e92d72009-12-16 21:38:26 +0100631 * We only allocate the I/O ports we really need, to minimize the risk of
632 * conflicts with ACPI or with other drivers.
633 */
Guenter Roeck08ad7c92012-06-02 12:04:07 -0700634static int __init smsc47m1_handle_resources(unsigned short address,
635 enum chips type, int action,
636 struct device *dev)
Jean Delvarea0e92d72009-12-16 21:38:26 +0100637{
638 static const u8 ports_m1[] = {
639 /* register, region length */
640 0x04, 1,
641 0x33, 4,
642 0x56, 7,
643 };
644
645 static const u8 ports_m2[] = {
646 /* register, region length */
647 0x04, 1,
648 0x09, 1,
649 0x2c, 2,
650 0x35, 4,
651 0x56, 7,
652 0x69, 4,
653 };
654
655 int i, ports_size, err;
656 const u8 *ports;
657
658 switch (type) {
659 case smsc47m1:
660 default:
661 ports = ports_m1;
662 ports_size = ARRAY_SIZE(ports_m1);
663 break;
664 case smsc47m2:
665 ports = ports_m2;
666 ports_size = ARRAY_SIZE(ports_m2);
667 break;
668 }
669
670 for (i = 0; i + 1 < ports_size; i += 2) {
671 unsigned short start = address + ports[i];
672 unsigned short len = ports[i + 1];
673
674 switch (action) {
675 case CHECK:
676 /* Only check for conflicts */
677 err = acpi_check_region(start, len, DRVNAME);
678 if (err)
679 return err;
680 break;
681 case REQUEST:
682 /* Request the resources */
Guenter Roeck08ad7c92012-06-02 12:04:07 -0700683 if (!devm_request_region(dev, start, len, DRVNAME)) {
684 dev_err(dev,
Tom Rix87da1ed2020-12-15 10:32:37 -0800685 "Region 0x%x-0x%x already in use!\n",
Guenter Roeck08ad7c92012-06-02 12:04:07 -0700686 start, start + len);
Jean Delvarea0e92d72009-12-16 21:38:26 +0100687 return -EBUSY;
688 }
689 break;
Jean Delvarea0e92d72009-12-16 21:38:26 +0100690 }
691 }
692
693 return 0;
694}
695
Guenter Roeck7e6126852012-01-16 17:15:02 -0800696static void smsc47m1_remove_files(struct device *dev)
697{
698 sysfs_remove_group(&dev->kobj, &smsc47m1_group);
699 sysfs_remove_group(&dev->kobj, &smsc47m1_group_fan1);
700 sysfs_remove_group(&dev->kobj, &smsc47m1_group_fan2);
701 sysfs_remove_group(&dev->kobj, &smsc47m1_group_fan3);
702 sysfs_remove_group(&dev->kobj, &smsc47m1_group_pwm1);
703 sysfs_remove_group(&dev->kobj, &smsc47m1_group_pwm2);
704 sysfs_remove_group(&dev->kobj, &smsc47m1_group_pwm3);
705}
706
Jean Delvare3ecf44b2009-12-16 21:38:26 +0100707static int __init smsc47m1_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200709 struct device *dev = &pdev->dev;
Jingoo Hana8b3a3a2013-07-30 17:13:06 +0900710 struct smsc47m1_sio_data *sio_data = dev_get_platdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 struct smsc47m1_data *data;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200712 struct resource *res;
Jean Delvarea0e92d72009-12-16 21:38:26 +0100713 int err;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200714 int fan1, fan2, fan3, pwm1, pwm2, pwm3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800716 static const char * const names[] = {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200717 "smsc47m1",
718 "smsc47m2",
719 };
720
721 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Jean Delvarea0e92d72009-12-16 21:38:26 +0100722 err = smsc47m1_handle_resources(res->start, sio_data->type,
723 REQUEST, dev);
724 if (err < 0)
725 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Guenter Roeck08ad7c92012-06-02 12:04:07 -0700727 data = devm_kzalloc(dev, sizeof(struct smsc47m1_data), GFP_KERNEL);
728 if (!data)
729 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Jean Delvare51f2cca2007-05-08 17:22:00 +0200731 data->addr = res->start;
732 data->type = sio_data->type;
733 data->name = names[sio_data->type];
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100734 mutex_init(&data->update_lock);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200735 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800737 /*
738 * If no function is properly configured, there's no point in
739 * actually registering the chip.
740 */
Jean Delvare51f2cca2007-05-08 17:22:00 +0200741 pwm1 = (smsc47m1_read_value(data, SMSC47M1_REG_PPIN(0)) & 0x05)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 == 0x04;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200743 pwm2 = (smsc47m1_read_value(data, SMSC47M1_REG_PPIN(1)) & 0x05)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 == 0x04;
Jean Delvare8eccbb62007-05-08 17:21:59 +0200745 if (data->type == smsc47m2) {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200746 fan1 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN1)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200747 & 0x0d) == 0x09;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200748 fan2 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN2)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200749 & 0x0d) == 0x09;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200750 fan3 = (smsc47m1_read_value(data, SMSC47M2_REG_TPIN3)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200751 & 0x0d) == 0x0d;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200752 pwm3 = (smsc47m1_read_value(data, SMSC47M2_REG_PPIN3)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200753 & 0x0d) == 0x08;
754 } else {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200755 fan1 = (smsc47m1_read_value(data, SMSC47M1_REG_TPIN(0))
Jean Delvare8eccbb62007-05-08 17:21:59 +0200756 & 0x05) == 0x05;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200757 fan2 = (smsc47m1_read_value(data, SMSC47M1_REG_TPIN(1))
Jean Delvare8eccbb62007-05-08 17:21:59 +0200758 & 0x05) == 0x05;
759 fan3 = 0;
760 pwm3 = 0;
761 }
762 if (!(fan1 || fan2 || fan3 || pwm1 || pwm2 || pwm3)) {
Jean Delvare51f2cca2007-05-08 17:22:00 +0200763 dev_warn(dev, "Device not configured, will not use\n");
Guenter Roeck08ad7c92012-06-02 12:04:07 -0700764 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
766
Guenter Roeck85a0c0d2012-01-14 22:27:00 -0800767 /*
768 * Some values (fan min, clock dividers, pwm registers) may be
769 * needed before any update is triggered, so we better read them
770 * at least once here. We don't usually do it that way, but in
771 * this particular case, manually reading 5 registers out of 8
772 * doesn't make much sense and we're better using the existing
773 * function.
774 */
Jean Delvare51f2cca2007-05-08 17:22:00 +0200775 smsc47m1_update_device(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400777 /* Register sysfs hooks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (fan1) {
Guenter Roeck7e6126852012-01-16 17:15:02 -0800779 err = sysfs_create_group(&dev->kobj,
780 &smsc47m1_group_fan1);
781 if (err)
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200782 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200784 dev_dbg(dev, "Fan 1 not enabled by hardware, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 if (fan2) {
Guenter Roeck7e6126852012-01-16 17:15:02 -0800787 err = sysfs_create_group(&dev->kobj,
788 &smsc47m1_group_fan2);
789 if (err)
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200790 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200792 dev_dbg(dev, "Fan 2 not enabled by hardware, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Jean Delvare8eccbb62007-05-08 17:21:59 +0200794 if (fan3) {
Guenter Roeck7e6126852012-01-16 17:15:02 -0800795 err = sysfs_create_group(&dev->kobj,
796 &smsc47m1_group_fan3);
797 if (err)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200798 goto error_remove_files;
Jean Delvare8477d022007-08-16 14:33:37 +0200799 } else if (data->type == smsc47m2)
Jean Delvare51f2cca2007-05-08 17:22:00 +0200800 dev_dbg(dev, "Fan 3 not enabled by hardware, skipping\n");
Jean Delvare8eccbb62007-05-08 17:21:59 +0200801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (pwm1) {
Guenter Roeck7e6126852012-01-16 17:15:02 -0800803 err = sysfs_create_group(&dev->kobj,
804 &smsc47m1_group_pwm1);
805 if (err)
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200806 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200808 dev_dbg(dev, "PWM 1 not enabled by hardware, skipping\n");
Jean Delvare8eccbb62007-05-08 17:21:59 +0200809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (pwm2) {
Guenter Roeck7e6126852012-01-16 17:15:02 -0800811 err = sysfs_create_group(&dev->kobj,
812 &smsc47m1_group_pwm2);
813 if (err)
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200814 goto error_remove_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 } else
Jean Delvare51f2cca2007-05-08 17:22:00 +0200816 dev_dbg(dev, "PWM 2 not enabled by hardware, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Jean Delvare8eccbb62007-05-08 17:21:59 +0200818 if (pwm3) {
Guenter Roeck7e6126852012-01-16 17:15:02 -0800819 err = sysfs_create_group(&dev->kobj,
820 &smsc47m1_group_pwm3);
821 if (err)
Jean Delvare8eccbb62007-05-08 17:21:59 +0200822 goto error_remove_files;
Jean Delvare8477d022007-08-16 14:33:37 +0200823 } else if (data->type == smsc47m2)
Jean Delvare51f2cca2007-05-08 17:22:00 +0200824 dev_dbg(dev, "PWM 3 not enabled by hardware, skipping\n");
Jean Delvare8eccbb62007-05-08 17:21:59 +0200825
Guenter Roeck7e6126852012-01-16 17:15:02 -0800826 err = sysfs_create_group(&dev->kobj, &smsc47m1_group);
827 if (err)
Jean Delvare68a50b52007-08-12 13:58:50 +0200828 goto error_remove_files;
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200829
Tony Jones1beeffe2007-08-20 13:46:20 -0700830 data->hwmon_dev = hwmon_device_register(dev);
831 if (IS_ERR(data->hwmon_dev)) {
832 err = PTR_ERR(data->hwmon_dev);
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200833 goto error_remove_files;
834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 return 0;
837
Jean Delvarece8c6ce12006-09-24 21:25:12 +0200838error_remove_files:
Guenter Roeck7e6126852012-01-16 17:15:02 -0800839 smsc47m1_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return err;
841}
842
Jean Delvare3ecf44b2009-12-16 21:38:26 +0100843static int __exit smsc47m1_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200845 struct smsc47m1_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Tony Jones1beeffe2007-08-20 13:46:20 -0700847 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeck7e6126852012-01-16 17:15:02 -0800848 smsc47m1_remove_files(&pdev->dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return 0;
851}
852
Axel Line70198a2014-07-17 19:15:36 +0800853static struct platform_driver smsc47m1_driver = {
854 .driver = {
Axel Line70198a2014-07-17 19:15:36 +0800855 .name = DRVNAME,
856 },
857 .remove = __exit_p(smsc47m1_remove),
858};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Jean Delvare51f2cca2007-05-08 17:22:00 +0200860static int __init smsc47m1_device_add(unsigned short address,
861 const struct smsc47m1_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200863 struct resource res = {
864 .start = address,
865 .end = address + SMSC_EXTENT - 1,
866 .name = DRVNAME,
867 .flags = IORESOURCE_IO,
868 };
869 int err;
870
Jean Delvarea0e92d72009-12-16 21:38:26 +0100871 err = smsc47m1_handle_resources(address, sio_data->type, CHECK, NULL);
Jean Delvareb9acb642009-01-07 16:37:35 +0100872 if (err)
873 goto exit;
874
Jean Delvare51f2cca2007-05-08 17:22:00 +0200875 pdev = platform_device_alloc(DRVNAME, address);
876 if (!pdev) {
877 err = -ENOMEM;
Joe Perches512504e2010-10-20 06:51:49 +0000878 pr_err("Device allocation failed\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200879 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
881
Jean Delvare51f2cca2007-05-08 17:22:00 +0200882 err = platform_device_add_resources(pdev, &res, 1);
883 if (err) {
Joe Perches512504e2010-10-20 06:51:49 +0000884 pr_err("Device resource addition failed (%d)\n", err);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200885 goto exit_device_put;
886 }
887
Jean Delvare2df6d812007-06-09 10:11:16 -0400888 err = platform_device_add_data(pdev, sio_data,
889 sizeof(struct smsc47m1_sio_data));
890 if (err) {
Joe Perches512504e2010-10-20 06:51:49 +0000891 pr_err("Platform data allocation failed\n");
Jean Delvare51f2cca2007-05-08 17:22:00 +0200892 goto exit_device_put;
893 }
Jean Delvare51f2cca2007-05-08 17:22:00 +0200894
895 err = platform_device_add(pdev);
896 if (err) {
Joe Perches512504e2010-10-20 06:51:49 +0000897 pr_err("Device addition failed (%d)\n", err);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200898 goto exit_device_put;
899 }
900
901 return 0;
902
903exit_device_put:
904 platform_device_put(pdev);
905exit:
906 return err;
907}
908
909static int __init sm_smsc47m1_init(void)
910{
911 int err;
912 unsigned short address;
913 struct smsc47m1_sio_data sio_data;
914
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700915 err = smsc47m1_find(&sio_data);
916 if (err < 0)
917 return err;
918 address = err;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200919
Jean Delvare51f2cca2007-05-08 17:22:00 +0200920 /* Sets global pdev as a side effect */
921 err = smsc47m1_device_add(address, &sio_data);
922 if (err)
Guenter Roeck1d0045e2012-03-28 08:55:12 -0700923 return err;
Jean Delvare3ecf44b2009-12-16 21:38:26 +0100924
925 err = platform_driver_probe(&smsc47m1_driver, smsc47m1_probe);
926 if (err)
927 goto exit_device;
Jean Delvare51f2cca2007-05-08 17:22:00 +0200928
929 return 0;
930
Jean Delvare3ecf44b2009-12-16 21:38:26 +0100931exit_device:
932 platform_device_unregister(pdev);
Jean Delvarefa0bff02009-12-16 21:38:27 +0100933 smsc47m1_restore(&sio_data);
Jean Delvare51f2cca2007-05-08 17:22:00 +0200934 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
937static void __exit sm_smsc47m1_exit(void)
938{
Jean Delvare51f2cca2007-05-08 17:22:00 +0200939 platform_driver_unregister(&smsc47m1_driver);
Jingoo Hana8b3a3a2013-07-30 17:13:06 +0900940 smsc47m1_restore(dev_get_platdata(&pdev->dev));
Jean Delvare3ecf44b2009-12-16 21:38:26 +0100941 platform_device_unregister(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
944MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>");
945MODULE_DESCRIPTION("SMSC LPC47M1xx fan sensors driver");
946MODULE_LICENSE("GPL");
947
948module_init(sm_smsc47m1_init);
949module_exit(sm_smsc47m1_exit);