blob: 6c4d8eb9b7ca5414a2d7a9f8af94e45b638e0f9d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Guenter Roeck8fda79e2012-01-14 22:21:41 -08002 * sis5595.c - Part of lm_sensors, Linux kernel modules
3 * for hardware monitoring
4 *
5 * Copyright (C) 1998 - 2001 Frodo Looijaard <frodol@dds.nl>,
6 * Kyösti Mälkki <kmalkki@cc.hut.fi>, and
7 * Mark D. Studebaker <mdsxyz123@yahoo.com>
8 * Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with
9 * the help of Jean Delvare <khali@linux-fr.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/*
Guenter Roeck8fda79e2012-01-14 22:21:41 -080027 * SiS southbridge has a LM78-like chip integrated on the same IC.
28 * This driver is a customized copy of lm78.c
29 *
30 * Supports following revisions:
31 * Version PCI ID PCI Revision
32 * 1 1039/0008 AF or less
33 * 2 1039/0008 B0 or greater
34 *
35 * Note: these chips contain a 0008 device which is incompatible with the
36 * 5595. We recognize these by the presence of the listed
37 * "blacklist" PCI ID and refuse to load.
38 *
39 * NOT SUPPORTED PCI ID BLACKLIST PCI ID
40 * 540 0008 0540
41 * 550 0008 0550
42 * 5513 0008 5511
43 * 5581 0008 5597
44 * 5582 0008 5597
45 * 5597 0008 5597
46 * 5598 0008 5597/5598
47 * 630 0008 0630
48 * 645 0008 0645
49 * 730 0008 0730
50 * 735 0008 0735
51 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Joe Perches4b2515d2010-10-20 06:51:47 +000053#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/module.h>
56#include <linux/slab.h>
57#include <linux/ioport.h>
58#include <linux/pci.h>
Jean Delvare17e7dc42007-06-09 10:11:16 -040059#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040060#include <linux/hwmon.h>
Jean Delvare1f5f48d2007-06-09 10:11:16 -040061#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040062#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/init.h>
Dominik Hacklff324092005-05-16 18:12:18 +020064#include <linux/jiffies.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010065#include <linux/mutex.h>
Jean Delvarea5ebe662006-09-24 21:24:46 +020066#include <linux/sysfs.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010067#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020068#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70
Guenter Roeck8fda79e2012-01-14 22:21:41 -080071/*
72 * If force_addr is set to anything different from 0, we forcibly enable
73 * the device at the given address.
74 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static u16 force_addr;
76module_param(force_addr, ushort, 0);
77MODULE_PARM_DESC(force_addr,
78 "Initialize the base address of the sensors");
79
Jean Delvare17e7dc42007-06-09 10:11:16 -040080static struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/* Many SIS5595 constants specified below */
83
84/* Length of ISA address segment */
85#define SIS5595_EXTENT 8
86/* PCI Config Registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define SIS5595_BASE_REG 0x68
88#define SIS5595_PIN_REG 0x7A
89#define SIS5595_ENABLE_REG 0x7B
90
91/* Where are the ISA address/data registers relative to the base address */
92#define SIS5595_ADDR_REG_OFFSET 5
93#define SIS5595_DATA_REG_OFFSET 6
94
95/* The SIS5595 registers */
96#define SIS5595_REG_IN_MAX(nr) (0x2b + (nr) * 2)
97#define SIS5595_REG_IN_MIN(nr) (0x2c + (nr) * 2)
98#define SIS5595_REG_IN(nr) (0x20 + (nr))
99
100#define SIS5595_REG_FAN_MIN(nr) (0x3b + (nr))
101#define SIS5595_REG_FAN(nr) (0x28 + (nr))
102
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800103/*
104 * On the first version of the chip, the temp registers are separate.
105 * On the second version,
106 * TEMP pin is shared with IN4, configured in PCI register 0x7A.
107 * The registers are the same as well.
108 * OVER and HYST are really MAX and MIN.
109 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111#define REV2MIN 0xb0
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800112#define SIS5595_REG_TEMP (((data->revision) >= REV2MIN) ? \
113 SIS5595_REG_IN(4) : 0x27)
114#define SIS5595_REG_TEMP_OVER (((data->revision) >= REV2MIN) ? \
115 SIS5595_REG_IN_MAX(4) : 0x39)
116#define SIS5595_REG_TEMP_HYST (((data->revision) >= REV2MIN) ? \
117 SIS5595_REG_IN_MIN(4) : 0x3a)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119#define SIS5595_REG_CONFIG 0x40
120#define SIS5595_REG_ALARM1 0x41
121#define SIS5595_REG_ALARM2 0x42
122#define SIS5595_REG_FANDIV 0x47
123
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800124/*
125 * Conversions. Limit checking is only done on the TO_REG
126 * variants.
127 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800129/*
130 * IN: mV, (0V to 4.08V)
131 * REG: 16mV/bit
132 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static inline u8 IN_TO_REG(unsigned long val)
134{
135 unsigned long nval = SENSORS_LIMIT(val, 0, 4080);
136 return (nval + 8) / 16;
137}
138#define IN_FROM_REG(val) ((val) * 16)
139
140static inline u8 FAN_TO_REG(long rpm, int div)
141{
142 if (rpm <= 0)
143 return 255;
144 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
145}
146
147static inline int FAN_FROM_REG(u8 val, int div)
148{
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800149 return val == 0 ? -1 : val == 255 ? 0 : 1350000 / (val * div);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800152/*
153 * TEMP: mC (-54.12C to +157.53C)
154 * REG: 0.83C/bit + 52.12, two's complement
155 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static inline int TEMP_FROM_REG(s8 val)
157{
158 return val * 830 + 52120;
159}
160static inline s8 TEMP_TO_REG(int val)
161{
162 int nval = SENSORS_LIMIT(val, -54120, 157530) ;
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800163 return nval < 0 ? (nval - 5212 - 415) / 830 : (nval - 5212 + 415) / 830;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800166/*
167 * FAN DIV: 1, 2, 4, or 8 (defaults to 2)
168 * REG: 0, 1, 2, or 3 (respectively) (defaults to 1)
169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170static inline u8 DIV_TO_REG(int val)
171{
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800172 return val == 8 ? 3 : val == 4 ? 2 : val == 1 ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174#define DIV_FROM_REG(val) (1 << (val))
175
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800176/*
177 * For each registered chip, we need to keep some data in memory.
178 * The structure is dynamically allocated.
179 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180struct sis5595_data {
Jean Delvare17e7dc42007-06-09 10:11:16 -0400181 unsigned short addr;
182 const char *name;
Tony Jones1beeffe2007-08-20 13:46:20 -0700183 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100184 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100186 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 char valid; /* !=0 if following fields are valid */
188 unsigned long last_updated; /* In jiffies */
189 char maxins; /* == 3 if temp enabled, otherwise == 4 */
190 u8 revision; /* Reg. value */
191
192 u8 in[5]; /* Register value */
193 u8 in_max[5]; /* Register value */
194 u8 in_min[5]; /* Register value */
195 u8 fan[2]; /* Register value */
196 u8 fan_min[2]; /* Register value */
197 s8 temp; /* Register value */
198 s8 temp_over; /* Register value */
199 s8 temp_hyst; /* Register value */
200 u8 fan_div[2]; /* Register encoding, shifted right */
201 u16 alarms; /* Register encoding, combined */
202};
203
204static struct pci_dev *s_bridge; /* pointer to the (only) sis5595 */
205
Jean Delvare17e7dc42007-06-09 10:11:16 -0400206static int sis5595_probe(struct platform_device *pdev);
Jean Delvared0546122007-07-22 12:09:48 +0200207static int __devexit sis5595_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Jean Delvare17e7dc42007-06-09 10:11:16 -0400209static int sis5595_read_value(struct sis5595_data *data, u8 reg);
210static void sis5595_write_value(struct sis5595_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211static struct sis5595_data *sis5595_update_device(struct device *dev);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400212static void sis5595_init_device(struct sis5595_data *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Jean Delvare17e7dc42007-06-09 10:11:16 -0400214static struct platform_driver sis5595_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100215 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +0200216 .owner = THIS_MODULE,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100217 .name = "sis5595",
218 },
Jean Delvare17e7dc42007-06-09 10:11:16 -0400219 .probe = sis5595_probe,
220 .remove = __devexit_p(sis5595_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221};
222
223/* 4 Voltages */
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400224static ssize_t show_in(struct device *dev, struct device_attribute *da,
225 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 struct sis5595_data *data = sis5595_update_device(dev);
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400228 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
229 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return sprintf(buf, "%d\n", IN_FROM_REG(data->in[nr]));
231}
232
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400233static ssize_t show_in_min(struct device *dev, struct device_attribute *da,
234 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 struct sis5595_data *data = sis5595_update_device(dev);
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400237 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
238 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_min[nr]));
240}
241
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400242static ssize_t show_in_max(struct device *dev, struct device_attribute *da,
243 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct sis5595_data *data = sis5595_update_device(dev);
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400246 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
247 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_max[nr]));
249}
250
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400251static ssize_t set_in_min(struct device *dev, struct device_attribute *da,
252 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400254 struct sis5595_data *data = dev_get_drvdata(dev);
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400255 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
256 int nr = attr->index;
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800257 unsigned long val;
258 int err;
259
260 err = kstrtoul(buf, 10, &val);
261 if (err)
262 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100264 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 data->in_min[nr] = IN_TO_REG(val);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400266 sis5595_write_value(data, SIS5595_REG_IN_MIN(nr), data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100267 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return count;
269}
270
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400271static ssize_t set_in_max(struct device *dev, struct device_attribute *da,
272 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400274 struct sis5595_data *data = dev_get_drvdata(dev);
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400275 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
276 int nr = attr->index;
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800277 unsigned long val;
278 int err;
279
280 err = kstrtoul(buf, 10, &val);
281 if (err)
282 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100284 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 data->in_max[nr] = IN_TO_REG(val);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400286 sis5595_write_value(data, SIS5595_REG_IN_MAX(nr), data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100287 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return count;
289}
290
291#define show_in_offset(offset) \
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400292static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
293 show_in, NULL, offset); \
294static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
295 show_in_min, set_in_min, offset); \
296static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
297 show_in_max, set_in_max, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299show_in_offset(0);
300show_in_offset(1);
301show_in_offset(2);
302show_in_offset(3);
303show_in_offset(4);
304
305/* Temperature */
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800306static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
307 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 struct sis5595_data *data = sis5595_update_device(dev);
310 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp));
311}
312
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800313static ssize_t show_temp_over(struct device *dev, struct device_attribute *attr,
314 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 struct sis5595_data *data = sis5595_update_device(dev);
317 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_over));
318}
319
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800320static ssize_t set_temp_over(struct device *dev, struct device_attribute *attr,
321 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400323 struct sis5595_data *data = dev_get_drvdata(dev);
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800324 long val;
325 int err;
326
327 err = kstrtol(buf, 10, &val);
328 if (err)
329 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100331 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 data->temp_over = TEMP_TO_REG(val);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400333 sis5595_write_value(data, SIS5595_REG_TEMP_OVER, data->temp_over);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100334 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return count;
336}
337
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800338static ssize_t show_temp_hyst(struct device *dev, struct device_attribute *attr,
339 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 struct sis5595_data *data = sis5595_update_device(dev);
342 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_hyst));
343}
344
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800345static ssize_t set_temp_hyst(struct device *dev, struct device_attribute *attr,
346 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400348 struct sis5595_data *data = dev_get_drvdata(dev);
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800349 long val;
350 int err;
351
352 err = kstrtol(buf, 10, &val);
353 if (err)
354 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100356 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 data->temp_hyst = TEMP_TO_REG(val);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400358 sis5595_write_value(data, SIS5595_REG_TEMP_HYST, data->temp_hyst);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100359 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return count;
361}
362
363static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL);
364static DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR,
365 show_temp_over, set_temp_over);
366static DEVICE_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR,
367 show_temp_hyst, set_temp_hyst);
368
369/* 2 Fans */
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400370static ssize_t show_fan(struct device *dev, struct device_attribute *da,
371 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
373 struct sis5595_data *data = sis5595_update_device(dev);
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400374 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
375 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr],
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800377 DIV_FROM_REG(data->fan_div[nr])));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400380static ssize_t show_fan_min(struct device *dev, struct device_attribute *da,
381 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 struct sis5595_data *data = sis5595_update_device(dev);
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400384 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
385 int nr = attr->index;
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800386 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr],
387 DIV_FROM_REG(data->fan_div[nr])));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400390static ssize_t set_fan_min(struct device *dev, struct device_attribute *da,
391 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400393 struct sis5595_data *data = dev_get_drvdata(dev);
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400394 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
395 int nr = attr->index;
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800396 unsigned long val;
397 int err;
398
399 err = kstrtoul(buf, 10, &val);
400 if (err)
401 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100403 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvare17e7dc42007-06-09 10:11:16 -0400405 sis5595_write_value(data, SIS5595_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100406 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return count;
408}
409
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400410static ssize_t show_fan_div(struct device *dev, struct device_attribute *da,
411 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 struct sis5595_data *data = sis5595_update_device(dev);
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400414 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
415 int nr = attr->index;
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800416 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800419/*
420 * Note: we save and restore the fan minimum here, because its value is
421 * determined in part by the fan divisor. This follows the principle of
422 * least surprise; the user doesn't expect the fan minimum to change just
423 * because the divisor changed.
424 */
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400425static ssize_t set_fan_div(struct device *dev, struct device_attribute *da,
426 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400428 struct sis5595_data *data = dev_get_drvdata(dev);
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400429 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
430 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 unsigned long min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 int reg;
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800433 unsigned long val;
434 int err;
435
436 err = kstrtoul(buf, 10, &val);
437 if (err)
438 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100440 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 min = FAN_FROM_REG(data->fan_min[nr],
442 DIV_FROM_REG(data->fan_div[nr]));
Jean Delvare17e7dc42007-06-09 10:11:16 -0400443 reg = sis5595_read_value(data, SIS5595_REG_FANDIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 switch (val) {
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800446 case 1:
447 data->fan_div[nr] = 0;
448 break;
449 case 2:
450 data->fan_div[nr] = 1;
451 break;
452 case 4:
453 data->fan_div[nr] = 2;
454 break;
455 case 8:
456 data->fan_div[nr] = 3;
457 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 default:
Jean Delvare17e7dc42007-06-09 10:11:16 -0400459 dev_err(dev, "fan_div value %ld not "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 "supported. Choose one of 1, 2, 4 or 8!\n", val);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100461 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return -EINVAL;
463 }
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 switch (nr) {
466 case 0:
467 reg = (reg & 0xcf) | (data->fan_div[nr] << 4);
468 break;
469 case 1:
470 reg = (reg & 0x3f) | (data->fan_div[nr] << 6);
471 break;
472 }
Jean Delvare17e7dc42007-06-09 10:11:16 -0400473 sis5595_write_value(data, SIS5595_REG_FANDIV, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 data->fan_min[nr] =
475 FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvare17e7dc42007-06-09 10:11:16 -0400476 sis5595_write_value(data, SIS5595_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100477 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return count;
479}
480
481#define show_fan_offset(offset) \
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400482static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
483 show_fan, NULL, offset - 1); \
484static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
485 show_fan_min, set_fan_min, offset - 1); \
486static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
487 show_fan_div, set_fan_div, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489show_fan_offset(1);
490show_fan_offset(2);
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492/* Alarms */
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800493static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
494 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 struct sis5595_data *data = sis5595_update_device(dev);
497 return sprintf(buf, "%d\n", data->alarms);
498}
499static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Jean Delvarea5ebe662006-09-24 21:24:46 +0200500
Ivo Manca5c726b32007-10-15 20:50:53 +0200501static ssize_t show_alarm(struct device *dev, struct device_attribute *da,
502 char *buf)
503{
504 struct sis5595_data *data = sis5595_update_device(dev);
505 int nr = to_sensor_dev_attr(da)->index;
506 return sprintf(buf, "%u\n", (data->alarms >> nr) & 1);
507}
508static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
509static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
510static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
511static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
512static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 15);
513static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6);
514static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7);
515static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 15);
516
Jean Delvare17e7dc42007-06-09 10:11:16 -0400517static ssize_t show_name(struct device *dev, struct device_attribute *attr,
518 char *buf)
519{
520 struct sis5595_data *data = dev_get_drvdata(dev);
521 return sprintf(buf, "%s\n", data->name);
522}
523static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
524
Jean Delvarea5ebe662006-09-24 21:24:46 +0200525static struct attribute *sis5595_attributes[] = {
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400526 &sensor_dev_attr_in0_input.dev_attr.attr,
527 &sensor_dev_attr_in0_min.dev_attr.attr,
528 &sensor_dev_attr_in0_max.dev_attr.attr,
Ivo Manca5c726b32007-10-15 20:50:53 +0200529 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400530 &sensor_dev_attr_in1_input.dev_attr.attr,
531 &sensor_dev_attr_in1_min.dev_attr.attr,
532 &sensor_dev_attr_in1_max.dev_attr.attr,
Ivo Manca5c726b32007-10-15 20:50:53 +0200533 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400534 &sensor_dev_attr_in2_input.dev_attr.attr,
535 &sensor_dev_attr_in2_min.dev_attr.attr,
536 &sensor_dev_attr_in2_max.dev_attr.attr,
Ivo Manca5c726b32007-10-15 20:50:53 +0200537 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400538 &sensor_dev_attr_in3_input.dev_attr.attr,
539 &sensor_dev_attr_in3_min.dev_attr.attr,
540 &sensor_dev_attr_in3_max.dev_attr.attr,
Ivo Manca5c726b32007-10-15 20:50:53 +0200541 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200542
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400543 &sensor_dev_attr_fan1_input.dev_attr.attr,
544 &sensor_dev_attr_fan1_min.dev_attr.attr,
545 &sensor_dev_attr_fan1_div.dev_attr.attr,
Ivo Manca5c726b32007-10-15 20:50:53 +0200546 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400547 &sensor_dev_attr_fan2_input.dev_attr.attr,
548 &sensor_dev_attr_fan2_min.dev_attr.attr,
549 &sensor_dev_attr_fan2_div.dev_attr.attr,
Ivo Manca5c726b32007-10-15 20:50:53 +0200550 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200551
552 &dev_attr_alarms.attr,
Jean Delvare17e7dc42007-06-09 10:11:16 -0400553 &dev_attr_name.attr,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200554 NULL
555};
556
557static const struct attribute_group sis5595_group = {
558 .attrs = sis5595_attributes,
559};
560
Ivo Manca76e63862007-10-15 13:27:13 +0200561static struct attribute *sis5595_attributes_in4[] = {
Jean Delvare1f5f48d2007-06-09 10:11:16 -0400562 &sensor_dev_attr_in4_input.dev_attr.attr,
563 &sensor_dev_attr_in4_min.dev_attr.attr,
564 &sensor_dev_attr_in4_max.dev_attr.attr,
Ivo Manca5c726b32007-10-15 20:50:53 +0200565 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Ivo Manca76e63862007-10-15 13:27:13 +0200566 NULL
567};
Jean Delvarea5ebe662006-09-24 21:24:46 +0200568
Ivo Manca76e63862007-10-15 13:27:13 +0200569static const struct attribute_group sis5595_group_in4 = {
570 .attrs = sis5595_attributes_in4,
571};
572
573static struct attribute *sis5595_attributes_temp1[] = {
Jean Delvarea5ebe662006-09-24 21:24:46 +0200574 &dev_attr_temp1_input.attr,
575 &dev_attr_temp1_max.attr,
576 &dev_attr_temp1_max_hyst.attr,
Ivo Manca5c726b32007-10-15 20:50:53 +0200577 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200578 NULL
579};
580
Ivo Manca76e63862007-10-15 13:27:13 +0200581static const struct attribute_group sis5595_group_temp1 = {
582 .attrs = sis5595_attributes_temp1,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200583};
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585/* This is called when the module is loaded */
Jean Delvare17e7dc42007-06-09 10:11:16 -0400586static int __devinit sis5595_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 int err = 0;
589 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 struct sis5595_data *data;
Jean Delvare17e7dc42007-06-09 10:11:16 -0400591 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 char val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 /* Reserve the ISA region */
Jean Delvare17e7dc42007-06-09 10:11:16 -0400595 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
596 if (!request_region(res->start, SIS5595_EXTENT,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100597 sis5595_driver.driver.name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 err = -EBUSY;
599 goto exit;
600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800602 data = kzalloc(sizeof(struct sis5595_data), GFP_KERNEL);
603 if (!data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 err = -ENOMEM;
605 goto exit_release;
606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100608 mutex_init(&data->lock);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400609 mutex_init(&data->update_lock);
610 data->addr = res->start;
611 data->name = "sis5595";
612 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800614 /*
615 * Check revision and pin registers to determine whether 4 or 5 voltages
616 */
Auke Kok7b6d1f02007-08-27 16:17:01 -0700617 data->revision = s_bridge->revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /* 4 voltages, 1 temp */
619 data->maxins = 3;
620 if (data->revision >= REV2MIN) {
621 pci_read_config_byte(s_bridge, SIS5595_PIN_REG, &val);
622 if (!(val & 0x80))
623 /* 5 voltages, no temps */
624 data->maxins = 4;
625 }
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* Initialize the SIS5595 chip */
Jean Delvare17e7dc42007-06-09 10:11:16 -0400628 sis5595_init_device(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 /* A few vars need to be filled upon startup */
631 for (i = 0; i < 2; i++) {
Jean Delvare17e7dc42007-06-09 10:11:16 -0400632 data->fan_min[i] = sis5595_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 SIS5595_REG_FAN_MIN(i));
634 }
635
636 /* Register sysfs hooks */
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800637 err = sysfs_create_group(&pdev->dev.kobj, &sis5595_group);
638 if (err)
Jean Delvare17e7dc42007-06-09 10:11:16 -0400639 goto exit_free;
Jean Delvarea5ebe662006-09-24 21:24:46 +0200640 if (data->maxins == 4) {
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800641 err = sysfs_create_group(&pdev->dev.kobj, &sis5595_group_in4);
642 if (err)
Jean Delvarea5ebe662006-09-24 21:24:46 +0200643 goto exit_remove_files;
644 } else {
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800645 err = sysfs_create_group(&pdev->dev.kobj, &sis5595_group_temp1);
646 if (err)
Jean Delvarea5ebe662006-09-24 21:24:46 +0200647 goto exit_remove_files;
648 }
649
Tony Jones1beeffe2007-08-20 13:46:20 -0700650 data->hwmon_dev = hwmon_device_register(&pdev->dev);
651 if (IS_ERR(data->hwmon_dev)) {
652 err = PTR_ERR(data->hwmon_dev);
Jean Delvarea5ebe662006-09-24 21:24:46 +0200653 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400654 }
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return 0;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400657
Jean Delvarea5ebe662006-09-24 21:24:46 +0200658exit_remove_files:
Jean Delvare17e7dc42007-06-09 10:11:16 -0400659 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group);
Ivo Manca76e63862007-10-15 13:27:13 +0200660 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_in4);
661 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_temp1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662exit_free:
663 kfree(data);
664exit_release:
Jean Delvare17e7dc42007-06-09 10:11:16 -0400665 release_region(res->start, SIS5595_EXTENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666exit:
667 return err;
668}
669
Jean Delvare17e7dc42007-06-09 10:11:16 -0400670static int __devexit sis5595_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400672 struct sis5595_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Tony Jones1beeffe2007-08-20 13:46:20 -0700674 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400675 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group);
Ivo Manca76e63862007-10-15 13:27:13 +0200676 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_in4);
677 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_temp1);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400678
Jean Delvare17e7dc42007-06-09 10:11:16 -0400679 release_region(data->addr, SIS5595_EXTENT);
680 platform_set_drvdata(pdev, NULL);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400681 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 return 0;
684}
685
686
687/* ISA access must be locked explicitly. */
Jean Delvare17e7dc42007-06-09 10:11:16 -0400688static int sis5595_read_value(struct sis5595_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 int res;
691
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100692 mutex_lock(&data->lock);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400693 outb_p(reg, data->addr + SIS5595_ADDR_REG_OFFSET);
694 res = inb_p(data->addr + SIS5595_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100695 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return res;
697}
698
Jean Delvare17e7dc42007-06-09 10:11:16 -0400699static void sis5595_write_value(struct sis5595_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100701 mutex_lock(&data->lock);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400702 outb_p(reg, data->addr + SIS5595_ADDR_REG_OFFSET);
703 outb_p(value, data->addr + SIS5595_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100704 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
707/* Called when we have found a new SIS5595. */
Jean Delvare17e7dc42007-06-09 10:11:16 -0400708static void __devinit sis5595_init_device(struct sis5595_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400710 u8 config = sis5595_read_value(data, SIS5595_REG_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (!(config & 0x01))
Jean Delvare17e7dc42007-06-09 10:11:16 -0400712 sis5595_write_value(data, SIS5595_REG_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 (config & 0xf7) | 0x01);
714}
715
716static struct sis5595_data *sis5595_update_device(struct device *dev)
717{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400718 struct sis5595_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 int i;
720
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100721 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
724 || !data->valid) {
725
726 for (i = 0; i <= data->maxins; i++) {
727 data->in[i] =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400728 sis5595_read_value(data, SIS5595_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 data->in_min[i] =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400730 sis5595_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 SIS5595_REG_IN_MIN(i));
732 data->in_max[i] =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400733 sis5595_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 SIS5595_REG_IN_MAX(i));
735 }
736 for (i = 0; i < 2; i++) {
737 data->fan[i] =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400738 sis5595_read_value(data, SIS5595_REG_FAN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 data->fan_min[i] =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400740 sis5595_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 SIS5595_REG_FAN_MIN(i));
742 }
743 if (data->maxins == 3) {
744 data->temp =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400745 sis5595_read_value(data, SIS5595_REG_TEMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 data->temp_over =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400747 sis5595_read_value(data, SIS5595_REG_TEMP_OVER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 data->temp_hyst =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400749 sis5595_read_value(data, SIS5595_REG_TEMP_HYST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
Jean Delvare17e7dc42007-06-09 10:11:16 -0400751 i = sis5595_read_value(data, SIS5595_REG_FANDIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 data->fan_div[0] = (i >> 4) & 0x03;
753 data->fan_div[1] = i >> 6;
754 data->alarms =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400755 sis5595_read_value(data, SIS5595_REG_ALARM1) |
756 (sis5595_read_value(data, SIS5595_REG_ALARM2) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 data->last_updated = jiffies;
758 data->valid = 1;
759 }
760
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100761 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 return data;
764}
765
Frans Meulenbroeks600151b2012-01-05 19:50:17 +0100766static DEFINE_PCI_DEVICE_TABLE(sis5595_pci_ids) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 { PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_503) },
768 { 0, }
769};
770
771MODULE_DEVICE_TABLE(pci, sis5595_pci_ids);
772
773static int blacklist[] __devinitdata = {
774 PCI_DEVICE_ID_SI_540,
775 PCI_DEVICE_ID_SI_550,
776 PCI_DEVICE_ID_SI_630,
777 PCI_DEVICE_ID_SI_645,
778 PCI_DEVICE_ID_SI_730,
779 PCI_DEVICE_ID_SI_735,
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800780 PCI_DEVICE_ID_SI_5511, /*
781 * 5513 chip has the 0008 device but
782 * that ID shows up in other chips so we
783 * use the 5511 ID for recognition
784 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 PCI_DEVICE_ID_SI_5597,
786 PCI_DEVICE_ID_SI_5598,
787 0 };
788
Jean Delvare17e7dc42007-06-09 10:11:16 -0400789static int __devinit sis5595_device_add(unsigned short address)
790{
791 struct resource res = {
792 .start = address,
793 .end = address + SIS5595_EXTENT - 1,
794 .name = "sis5595",
795 .flags = IORESOURCE_IO,
796 };
797 int err;
798
Jean Delvareb9acb642009-01-07 16:37:35 +0100799 err = acpi_check_resource_conflict(&res);
800 if (err)
801 goto exit;
802
Jean Delvare17e7dc42007-06-09 10:11:16 -0400803 pdev = platform_device_alloc("sis5595", address);
804 if (!pdev) {
805 err = -ENOMEM;
Joe Perches4b2515d2010-10-20 06:51:47 +0000806 pr_err("Device allocation failed\n");
Jean Delvare17e7dc42007-06-09 10:11:16 -0400807 goto exit;
808 }
809
810 err = platform_device_add_resources(pdev, &res, 1);
811 if (err) {
Joe Perches4b2515d2010-10-20 06:51:47 +0000812 pr_err("Device resource addition failed (%d)\n", err);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400813 goto exit_device_put;
814 }
815
816 err = platform_device_add(pdev);
817 if (err) {
Joe Perches4b2515d2010-10-20 06:51:47 +0000818 pr_err("Device addition failed (%d)\n", err);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400819 goto exit_device_put;
820 }
821
822 return 0;
823
824exit_device_put:
825 platform_device_put(pdev);
826exit:
827 return err;
828}
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830static int __devinit sis5595_pci_probe(struct pci_dev *dev,
831 const struct pci_device_id *id)
832{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400833 u16 address;
834 u8 enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 int *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 for (i = blacklist; *i != 0; i++) {
Mark M. Hoffman5460a9d2007-10-14 14:57:35 -0400838 struct pci_dev *d;
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800839 d = pci_get_device(PCI_VENDOR_ID_SI, *i, NULL);
840 if (d) {
841 dev_err(&d->dev,
842 "Looked for SIS5595 but found unsupported device %.4x\n",
843 *i);
Mark M. Hoffman5460a9d2007-10-14 14:57:35 -0400844 pci_dev_put(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 return -ENODEV;
846 }
847 }
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800848
Jean Delvare17e7dc42007-06-09 10:11:16 -0400849 force_addr &= ~(SIS5595_EXTENT - 1);
850 if (force_addr) {
851 dev_warn(&dev->dev, "Forcing ISA address 0x%x\n", force_addr);
852 pci_write_config_word(dev, SIS5595_BASE_REG, force_addr);
853 }
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (PCIBIOS_SUCCESSFUL !=
Jean Delvare17e7dc42007-06-09 10:11:16 -0400856 pci_read_config_word(dev, SIS5595_BASE_REG, &address)) {
857 dev_err(&dev->dev, "Failed to read ISA address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return -ENODEV;
Jean Delvare17e7dc42007-06-09 10:11:16 -0400859 }
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800860
Jean Delvare17e7dc42007-06-09 10:11:16 -0400861 address &= ~(SIS5595_EXTENT - 1);
862 if (!address) {
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800863 dev_err(&dev->dev,
864 "Base address not set - upgrade BIOS or use force_addr=0xaddr\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return -ENODEV;
866 }
Jean Delvare17e7dc42007-06-09 10:11:16 -0400867 if (force_addr && address != force_addr) {
868 /* doesn't work for some chips? */
869 dev_err(&dev->dev, "Failed to force ISA address\n");
870 return -ENODEV;
871 }
872
873 if (PCIBIOS_SUCCESSFUL !=
874 pci_read_config_byte(dev, SIS5595_ENABLE_REG, &enable)) {
875 dev_err(&dev->dev, "Failed to read enable register\n");
876 return -ENODEV;
877 }
878 if (!(enable & 0x80)) {
879 if ((PCIBIOS_SUCCESSFUL !=
880 pci_write_config_byte(dev, SIS5595_ENABLE_REG,
881 enable | 0x80))
882 || (PCIBIOS_SUCCESSFUL !=
883 pci_read_config_byte(dev, SIS5595_ENABLE_REG, &enable))
884 || (!(enable & 0x80))) {
885 /* doesn't work for some chips! */
886 dev_err(&dev->dev, "Failed to enable HWM device\n");
887 return -ENODEV;
888 }
889 }
890
891 if (platform_driver_register(&sis5595_driver)) {
892 dev_dbg(&dev->dev, "Failed to register sis5595 driver\n");
893 goto exit;
894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 s_bridge = pci_dev_get(dev);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400897 /* Sets global pdev as a side effect */
898 if (sis5595_device_add(address))
899 goto exit_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Guenter Roeck8fda79e2012-01-14 22:21:41 -0800901 /*
902 * Always return failure here. This is to allow other drivers to bind
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 * to this pci device. We don't really want to have control over the
904 * pci device, we only wanted to read as few register values from it.
905 */
906 return -ENODEV;
Jean Delvare17e7dc42007-06-09 10:11:16 -0400907
908exit_unregister:
909 pci_dev_put(dev);
910 platform_driver_unregister(&sis5595_driver);
911exit:
912 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
915static struct pci_driver sis5595_pci_driver = {
916 .name = "sis5595",
917 .id_table = sis5595_pci_ids,
918 .probe = sis5595_pci_probe,
919};
920
921static int __init sm_sis5595_init(void)
922{
923 return pci_register_driver(&sis5595_pci_driver);
924}
925
926static void __exit sm_sis5595_exit(void)
927{
928 pci_unregister_driver(&sis5595_pci_driver);
929 if (s_bridge != NULL) {
Jean Delvare17e7dc42007-06-09 10:11:16 -0400930 platform_device_unregister(pdev);
931 platform_driver_unregister(&sis5595_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 pci_dev_put(s_bridge);
933 s_bridge = NULL;
934 }
935}
936
937MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>");
938MODULE_DESCRIPTION("SiS 5595 Sensor device");
939MODULE_LICENSE("GPL");
940
941module_init(sm_sis5595_init);
942module_exit(sm_sis5595_exit);