blob: c56bae3bd4c7e245edb3cdd660320b30800d19c5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 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*/
25
26/*
27 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*/
52
53#include <linux/module.h>
54#include <linux/slab.h>
55#include <linux/ioport.h>
56#include <linux/pci.h>
Jean Delvare17e7dc42007-06-09 10:11:16 -040057#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040058#include <linux/hwmon.h>
59#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/init.h>
Dominik Hacklff324092005-05-16 18:12:18 +020061#include <linux/jiffies.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010062#include <linux/mutex.h>
Jean Delvarea5ebe662006-09-24 21:24:46 +020063#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <asm/io.h>
65
66
67/* If force_addr is set to anything different from 0, we forcibly enable
68 the device at the given address. */
69static u16 force_addr;
70module_param(force_addr, ushort, 0);
71MODULE_PARM_DESC(force_addr,
72 "Initialize the base address of the sensors");
73
Jean Delvare17e7dc42007-06-09 10:11:16 -040074static struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/* Many SIS5595 constants specified below */
77
78/* Length of ISA address segment */
79#define SIS5595_EXTENT 8
80/* PCI Config Registers */
81#define SIS5595_REVISION_REG 0x08
82#define SIS5595_BASE_REG 0x68
83#define SIS5595_PIN_REG 0x7A
84#define SIS5595_ENABLE_REG 0x7B
85
86/* Where are the ISA address/data registers relative to the base address */
87#define SIS5595_ADDR_REG_OFFSET 5
88#define SIS5595_DATA_REG_OFFSET 6
89
90/* The SIS5595 registers */
91#define SIS5595_REG_IN_MAX(nr) (0x2b + (nr) * 2)
92#define SIS5595_REG_IN_MIN(nr) (0x2c + (nr) * 2)
93#define SIS5595_REG_IN(nr) (0x20 + (nr))
94
95#define SIS5595_REG_FAN_MIN(nr) (0x3b + (nr))
96#define SIS5595_REG_FAN(nr) (0x28 + (nr))
97
98/* On the first version of the chip, the temp registers are separate.
99 On the second version,
100 TEMP pin is shared with IN4, configured in PCI register 0x7A.
101 The registers are the same as well.
102 OVER and HYST are really MAX and MIN. */
103
104#define REV2MIN 0xb0
105#define SIS5595_REG_TEMP (( data->revision) >= REV2MIN) ? \
106 SIS5595_REG_IN(4) : 0x27
107#define SIS5595_REG_TEMP_OVER (( data->revision) >= REV2MIN) ? \
108 SIS5595_REG_IN_MAX(4) : 0x39
109#define SIS5595_REG_TEMP_HYST (( data->revision) >= REV2MIN) ? \
110 SIS5595_REG_IN_MIN(4) : 0x3a
111
112#define SIS5595_REG_CONFIG 0x40
113#define SIS5595_REG_ALARM1 0x41
114#define SIS5595_REG_ALARM2 0x42
115#define SIS5595_REG_FANDIV 0x47
116
117/* Conversions. Limit checking is only done on the TO_REG
118 variants. */
119
120/* IN: mV, (0V to 4.08V)
121 REG: 16mV/bit */
122static inline u8 IN_TO_REG(unsigned long val)
123{
124 unsigned long nval = SENSORS_LIMIT(val, 0, 4080);
125 return (nval + 8) / 16;
126}
127#define IN_FROM_REG(val) ((val) * 16)
128
129static inline u8 FAN_TO_REG(long rpm, int div)
130{
131 if (rpm <= 0)
132 return 255;
133 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
134}
135
136static inline int FAN_FROM_REG(u8 val, int div)
137{
138 return val==0 ? -1 : val==255 ? 0 : 1350000/(val*div);
139}
140
141/* TEMP: mC (-54.12C to +157.53C)
142 REG: 0.83C/bit + 52.12, two's complement */
143static inline int TEMP_FROM_REG(s8 val)
144{
145 return val * 830 + 52120;
146}
147static inline s8 TEMP_TO_REG(int val)
148{
149 int nval = SENSORS_LIMIT(val, -54120, 157530) ;
150 return nval<0 ? (nval-5212-415)/830 : (nval-5212+415)/830;
151}
152
153/* FAN DIV: 1, 2, 4, or 8 (defaults to 2)
154 REG: 0, 1, 2, or 3 (respectively) (defaults to 1) */
155static inline u8 DIV_TO_REG(int val)
156{
157 return val==8 ? 3 : val==4 ? 2 : val==1 ? 0 : 1;
158}
159#define DIV_FROM_REG(val) (1 << (val))
160
Jean Delvareed6bafb2007-02-14 21:15:03 +0100161/* For each registered chip, we need to keep some data in memory.
162 The structure is dynamically allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163struct sis5595_data {
Jean Delvare17e7dc42007-06-09 10:11:16 -0400164 unsigned short addr;
165 const char *name;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400166 struct class_device *class_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100167 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100169 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 char valid; /* !=0 if following fields are valid */
171 unsigned long last_updated; /* In jiffies */
172 char maxins; /* == 3 if temp enabled, otherwise == 4 */
173 u8 revision; /* Reg. value */
174
175 u8 in[5]; /* Register value */
176 u8 in_max[5]; /* Register value */
177 u8 in_min[5]; /* Register value */
178 u8 fan[2]; /* Register value */
179 u8 fan_min[2]; /* Register value */
180 s8 temp; /* Register value */
181 s8 temp_over; /* Register value */
182 s8 temp_hyst; /* Register value */
183 u8 fan_div[2]; /* Register encoding, shifted right */
184 u16 alarms; /* Register encoding, combined */
185};
186
187static struct pci_dev *s_bridge; /* pointer to the (only) sis5595 */
188
Jean Delvare17e7dc42007-06-09 10:11:16 -0400189static int sis5595_probe(struct platform_device *pdev);
190static int sis5595_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Jean Delvare17e7dc42007-06-09 10:11:16 -0400192static int sis5595_read_value(struct sis5595_data *data, u8 reg);
193static void sis5595_write_value(struct sis5595_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194static struct sis5595_data *sis5595_update_device(struct device *dev);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400195static void sis5595_init_device(struct sis5595_data *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Jean Delvare17e7dc42007-06-09 10:11:16 -0400197static struct platform_driver sis5595_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100198 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +0200199 .owner = THIS_MODULE,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100200 .name = "sis5595",
201 },
Jean Delvare17e7dc42007-06-09 10:11:16 -0400202 .probe = sis5595_probe,
203 .remove = __devexit_p(sis5595_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204};
205
206/* 4 Voltages */
207static ssize_t show_in(struct device *dev, char *buf, int nr)
208{
209 struct sis5595_data *data = sis5595_update_device(dev);
210 return sprintf(buf, "%d\n", IN_FROM_REG(data->in[nr]));
211}
212
213static ssize_t show_in_min(struct device *dev, char *buf, int nr)
214{
215 struct sis5595_data *data = sis5595_update_device(dev);
216 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_min[nr]));
217}
218
219static ssize_t show_in_max(struct device *dev, char *buf, int nr)
220{
221 struct sis5595_data *data = sis5595_update_device(dev);
222 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_max[nr]));
223}
224
225static ssize_t set_in_min(struct device *dev, const char *buf,
226 size_t count, int nr)
227{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400228 struct sis5595_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 unsigned long val = simple_strtoul(buf, NULL, 10);
230
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100231 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 data->in_min[nr] = IN_TO_REG(val);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400233 sis5595_write_value(data, SIS5595_REG_IN_MIN(nr), data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100234 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return count;
236}
237
238static ssize_t set_in_max(struct device *dev, const char *buf,
239 size_t count, int nr)
240{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400241 struct sis5595_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 unsigned long val = simple_strtoul(buf, NULL, 10);
243
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100244 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 data->in_max[nr] = IN_TO_REG(val);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400246 sis5595_write_value(data, SIS5595_REG_IN_MAX(nr), data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100247 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return count;
249}
250
251#define show_in_offset(offset) \
252static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400253 show_in##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{ \
255 return show_in(dev, buf, offset); \
256} \
257static DEVICE_ATTR(in##offset##_input, S_IRUGO, \
258 show_in##offset, NULL); \
259static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400260 show_in##offset##_min (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{ \
262 return show_in_min(dev, buf, offset); \
263} \
264static ssize_t \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400265 show_in##offset##_max (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{ \
267 return show_in_max(dev, buf, offset); \
268} \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400269static ssize_t set_in##offset##_min (struct device *dev, struct device_attribute *attr, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 const char *buf, size_t count) \
271{ \
272 return set_in_min(dev, buf, count, offset); \
273} \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400274static ssize_t set_in##offset##_max (struct device *dev, struct device_attribute *attr, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 const char *buf, size_t count) \
276{ \
277 return set_in_max(dev, buf, count, offset); \
278} \
279static DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
280 show_in##offset##_min, set_in##offset##_min); \
281static DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
282 show_in##offset##_max, set_in##offset##_max);
283
284show_in_offset(0);
285show_in_offset(1);
286show_in_offset(2);
287show_in_offset(3);
288show_in_offset(4);
289
290/* Temperature */
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400291static ssize_t show_temp(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 struct sis5595_data *data = sis5595_update_device(dev);
294 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp));
295}
296
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400297static ssize_t show_temp_over(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 struct sis5595_data *data = sis5595_update_device(dev);
300 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_over));
301}
302
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400303static ssize_t set_temp_over(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400305 struct sis5595_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 long val = simple_strtol(buf, NULL, 10);
307
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100308 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 data->temp_over = TEMP_TO_REG(val);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400310 sis5595_write_value(data, SIS5595_REG_TEMP_OVER, data->temp_over);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100311 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return count;
313}
314
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400315static ssize_t show_temp_hyst(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 struct sis5595_data *data = sis5595_update_device(dev);
318 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_hyst));
319}
320
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400321static ssize_t set_temp_hyst(struct device *dev, struct device_attribute *attr, 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 long val = simple_strtol(buf, NULL, 10);
325
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100326 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 data->temp_hyst = TEMP_TO_REG(val);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400328 sis5595_write_value(data, SIS5595_REG_TEMP_HYST, data->temp_hyst);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100329 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return count;
331}
332
333static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL);
334static DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR,
335 show_temp_over, set_temp_over);
336static DEVICE_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR,
337 show_temp_hyst, set_temp_hyst);
338
339/* 2 Fans */
340static ssize_t show_fan(struct device *dev, char *buf, int nr)
341{
342 struct sis5595_data *data = sis5595_update_device(dev);
343 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr],
344 DIV_FROM_REG(data->fan_div[nr])) );
345}
346
347static ssize_t show_fan_min(struct device *dev, char *buf, int nr)
348{
349 struct sis5595_data *data = sis5595_update_device(dev);
350 return sprintf(buf,"%d\n", FAN_FROM_REG(data->fan_min[nr],
351 DIV_FROM_REG(data->fan_div[nr])) );
352}
353
354static ssize_t set_fan_min(struct device *dev, const char *buf,
355 size_t count, int nr)
356{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400357 struct sis5595_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 unsigned long val = simple_strtoul(buf, NULL, 10);
359
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100360 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvare17e7dc42007-06-09 10:11:16 -0400362 sis5595_write_value(data, SIS5595_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100363 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return count;
365}
366
367static ssize_t show_fan_div(struct device *dev, char *buf, int nr)
368{
369 struct sis5595_data *data = sis5595_update_device(dev);
370 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]) );
371}
372
373/* Note: we save and restore the fan minimum here, because its value is
374 determined in part by the fan divisor. This follows the principle of
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200375 least surprise; the user doesn't expect the fan minimum to change just
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 because the divisor changed. */
377static ssize_t set_fan_div(struct device *dev, const char *buf,
378 size_t count, int nr)
379{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400380 struct sis5595_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 unsigned long min;
382 unsigned long val = simple_strtoul(buf, NULL, 10);
383 int reg;
384
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100385 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 min = FAN_FROM_REG(data->fan_min[nr],
387 DIV_FROM_REG(data->fan_div[nr]));
Jean Delvare17e7dc42007-06-09 10:11:16 -0400388 reg = sis5595_read_value(data, SIS5595_REG_FANDIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 switch (val) {
391 case 1: data->fan_div[nr] = 0; break;
392 case 2: data->fan_div[nr] = 1; break;
393 case 4: data->fan_div[nr] = 2; break;
394 case 8: data->fan_div[nr] = 3; break;
395 default:
Jean Delvare17e7dc42007-06-09 10:11:16 -0400396 dev_err(dev, "fan_div value %ld not "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 "supported. Choose one of 1, 2, 4 or 8!\n", val);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100398 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return -EINVAL;
400 }
401
402 switch (nr) {
403 case 0:
404 reg = (reg & 0xcf) | (data->fan_div[nr] << 4);
405 break;
406 case 1:
407 reg = (reg & 0x3f) | (data->fan_div[nr] << 6);
408 break;
409 }
Jean Delvare17e7dc42007-06-09 10:11:16 -0400410 sis5595_write_value(data, SIS5595_REG_FANDIV, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 data->fan_min[nr] =
412 FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvare17e7dc42007-06-09 10:11:16 -0400413 sis5595_write_value(data, SIS5595_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100414 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return count;
416}
417
418#define show_fan_offset(offset) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400419static ssize_t show_fan_##offset (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{ \
421 return show_fan(dev, buf, offset - 1); \
422} \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400423static ssize_t show_fan_##offset##_min (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{ \
425 return show_fan_min(dev, buf, offset - 1); \
426} \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400427static ssize_t show_fan_##offset##_div (struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{ \
429 return show_fan_div(dev, buf, offset - 1); \
430} \
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400431static ssize_t set_fan_##offset##_min (struct device *dev, struct device_attribute *attr, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 const char *buf, size_t count) \
433{ \
434 return set_fan_min(dev, buf, count, offset - 1); \
435} \
436static DEVICE_ATTR(fan##offset##_input, S_IRUGO, show_fan_##offset, NULL);\
437static DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
438 show_fan_##offset##_min, set_fan_##offset##_min);
439
440show_fan_offset(1);
441show_fan_offset(2);
442
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400443static ssize_t set_fan_1_div(struct device *dev, struct device_attribute *attr, const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 size_t count)
445{
446 return set_fan_div(dev, buf, count, 0) ;
447}
448
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400449static ssize_t set_fan_2_div(struct device *dev, struct device_attribute *attr, const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 size_t count)
451{
452 return set_fan_div(dev, buf, count, 1) ;
453}
454static DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR,
455 show_fan_1_div, set_fan_1_div);
456static DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR,
457 show_fan_2_div, set_fan_2_div);
458
459/* Alarms */
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400460static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 struct sis5595_data *data = sis5595_update_device(dev);
463 return sprintf(buf, "%d\n", data->alarms);
464}
465static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Jean Delvarea5ebe662006-09-24 21:24:46 +0200466
Jean Delvare17e7dc42007-06-09 10:11:16 -0400467static ssize_t show_name(struct device *dev, struct device_attribute *attr,
468 char *buf)
469{
470 struct sis5595_data *data = dev_get_drvdata(dev);
471 return sprintf(buf, "%s\n", data->name);
472}
473static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
474
Jean Delvarea5ebe662006-09-24 21:24:46 +0200475static struct attribute *sis5595_attributes[] = {
476 &dev_attr_in0_input.attr,
477 &dev_attr_in0_min.attr,
478 &dev_attr_in0_max.attr,
479 &dev_attr_in1_input.attr,
480 &dev_attr_in1_min.attr,
481 &dev_attr_in1_max.attr,
482 &dev_attr_in2_input.attr,
483 &dev_attr_in2_min.attr,
484 &dev_attr_in2_max.attr,
485 &dev_attr_in3_input.attr,
486 &dev_attr_in3_min.attr,
487 &dev_attr_in3_max.attr,
488
489 &dev_attr_fan1_input.attr,
490 &dev_attr_fan1_min.attr,
491 &dev_attr_fan1_div.attr,
492 &dev_attr_fan2_input.attr,
493 &dev_attr_fan2_min.attr,
494 &dev_attr_fan2_div.attr,
495
496 &dev_attr_alarms.attr,
Jean Delvare17e7dc42007-06-09 10:11:16 -0400497 &dev_attr_name.attr,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200498 NULL
499};
500
501static const struct attribute_group sis5595_group = {
502 .attrs = sis5595_attributes,
503};
504
505static struct attribute *sis5595_attributes_opt[] = {
506 &dev_attr_in4_input.attr,
507 &dev_attr_in4_min.attr,
508 &dev_attr_in4_max.attr,
509
510 &dev_attr_temp1_input.attr,
511 &dev_attr_temp1_max.attr,
512 &dev_attr_temp1_max_hyst.attr,
513 NULL
514};
515
516static const struct attribute_group sis5595_group_opt = {
517 .attrs = sis5595_attributes_opt,
518};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520/* This is called when the module is loaded */
Jean Delvare17e7dc42007-06-09 10:11:16 -0400521static int __devinit sis5595_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
523 int err = 0;
524 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 struct sis5595_data *data;
Jean Delvare17e7dc42007-06-09 10:11:16 -0400526 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 char val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /* Reserve the ISA region */
Jean Delvare17e7dc42007-06-09 10:11:16 -0400530 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
531 if (!request_region(res->start, SIS5595_EXTENT,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100532 sis5595_driver.driver.name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 err = -EBUSY;
534 goto exit;
535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Deepak Saxenaba9c2e82005-10-17 23:08:32 +0200537 if (!(data = kzalloc(sizeof(struct sis5595_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 err = -ENOMEM;
539 goto exit_release;
540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100542 mutex_init(&data->lock);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400543 mutex_init(&data->update_lock);
544 data->addr = res->start;
545 data->name = "sis5595";
546 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 /* Check revision and pin registers to determine whether 4 or 5 voltages */
549 pci_read_config_byte(s_bridge, SIS5595_REVISION_REG, &(data->revision));
550 /* 4 voltages, 1 temp */
551 data->maxins = 3;
552 if (data->revision >= REV2MIN) {
553 pci_read_config_byte(s_bridge, SIS5595_PIN_REG, &val);
554 if (!(val & 0x80))
555 /* 5 voltages, no temps */
556 data->maxins = 4;
557 }
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 /* Initialize the SIS5595 chip */
Jean Delvare17e7dc42007-06-09 10:11:16 -0400560 sis5595_init_device(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 /* A few vars need to be filled upon startup */
563 for (i = 0; i < 2; i++) {
Jean Delvare17e7dc42007-06-09 10:11:16 -0400564 data->fan_min[i] = sis5595_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 SIS5595_REG_FAN_MIN(i));
566 }
567
568 /* Register sysfs hooks */
Jean Delvare17e7dc42007-06-09 10:11:16 -0400569 if ((err = sysfs_create_group(&pdev->dev.kobj, &sis5595_group)))
570 goto exit_free;
Jean Delvarea5ebe662006-09-24 21:24:46 +0200571 if (data->maxins == 4) {
Jean Delvare17e7dc42007-06-09 10:11:16 -0400572 if ((err = device_create_file(&pdev->dev,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200573 &dev_attr_in4_input))
Jean Delvare17e7dc42007-06-09 10:11:16 -0400574 || (err = device_create_file(&pdev->dev,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200575 &dev_attr_in4_min))
Jean Delvare17e7dc42007-06-09 10:11:16 -0400576 || (err = device_create_file(&pdev->dev,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200577 &dev_attr_in4_max)))
578 goto exit_remove_files;
579 } else {
Jean Delvare17e7dc42007-06-09 10:11:16 -0400580 if ((err = device_create_file(&pdev->dev,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200581 &dev_attr_temp1_input))
Jean Delvare17e7dc42007-06-09 10:11:16 -0400582 || (err = device_create_file(&pdev->dev,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200583 &dev_attr_temp1_max))
Jean Delvare17e7dc42007-06-09 10:11:16 -0400584 || (err = device_create_file(&pdev->dev,
Jean Delvarea5ebe662006-09-24 21:24:46 +0200585 &dev_attr_temp1_max_hyst)))
586 goto exit_remove_files;
587 }
588
Jean Delvare17e7dc42007-06-09 10:11:16 -0400589 data->class_dev = hwmon_device_register(&pdev->dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400590 if (IS_ERR(data->class_dev)) {
591 err = PTR_ERR(data->class_dev);
Jean Delvarea5ebe662006-09-24 21:24:46 +0200592 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400593 }
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return 0;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400596
Jean Delvarea5ebe662006-09-24 21:24:46 +0200597exit_remove_files:
Jean Delvare17e7dc42007-06-09 10:11:16 -0400598 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group);
599 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600exit_free:
601 kfree(data);
602exit_release:
Jean Delvare17e7dc42007-06-09 10:11:16 -0400603 release_region(res->start, SIS5595_EXTENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604exit:
605 return err;
606}
607
Jean Delvare17e7dc42007-06-09 10:11:16 -0400608static int __devexit sis5595_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400610 struct sis5595_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400612 hwmon_device_unregister(data->class_dev);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400613 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group);
614 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_opt);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400615
Jean Delvare17e7dc42007-06-09 10:11:16 -0400616 release_region(data->addr, SIS5595_EXTENT);
617 platform_set_drvdata(pdev, NULL);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400618 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 return 0;
621}
622
623
624/* ISA access must be locked explicitly. */
Jean Delvare17e7dc42007-06-09 10:11:16 -0400625static int sis5595_read_value(struct sis5595_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 int res;
628
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100629 mutex_lock(&data->lock);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400630 outb_p(reg, data->addr + SIS5595_ADDR_REG_OFFSET);
631 res = inb_p(data->addr + SIS5595_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100632 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return res;
634}
635
Jean Delvare17e7dc42007-06-09 10:11:16 -0400636static void sis5595_write_value(struct sis5595_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100638 mutex_lock(&data->lock);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400639 outb_p(reg, data->addr + SIS5595_ADDR_REG_OFFSET);
640 outb_p(value, data->addr + SIS5595_DATA_REG_OFFSET);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100641 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
644/* Called when we have found a new SIS5595. */
Jean Delvare17e7dc42007-06-09 10:11:16 -0400645static void __devinit sis5595_init_device(struct sis5595_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400647 u8 config = sis5595_read_value(data, SIS5595_REG_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (!(config & 0x01))
Jean Delvare17e7dc42007-06-09 10:11:16 -0400649 sis5595_write_value(data, SIS5595_REG_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 (config & 0xf7) | 0x01);
651}
652
653static struct sis5595_data *sis5595_update_device(struct device *dev)
654{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400655 struct sis5595_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 int i;
657
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100658 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
661 || !data->valid) {
662
663 for (i = 0; i <= data->maxins; i++) {
664 data->in[i] =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400665 sis5595_read_value(data, SIS5595_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 data->in_min[i] =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400667 sis5595_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 SIS5595_REG_IN_MIN(i));
669 data->in_max[i] =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400670 sis5595_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 SIS5595_REG_IN_MAX(i));
672 }
673 for (i = 0; i < 2; i++) {
674 data->fan[i] =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400675 sis5595_read_value(data, SIS5595_REG_FAN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 data->fan_min[i] =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400677 sis5595_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 SIS5595_REG_FAN_MIN(i));
679 }
680 if (data->maxins == 3) {
681 data->temp =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400682 sis5595_read_value(data, SIS5595_REG_TEMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 data->temp_over =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400684 sis5595_read_value(data, SIS5595_REG_TEMP_OVER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 data->temp_hyst =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400686 sis5595_read_value(data, SIS5595_REG_TEMP_HYST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
Jean Delvare17e7dc42007-06-09 10:11:16 -0400688 i = sis5595_read_value(data, SIS5595_REG_FANDIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 data->fan_div[0] = (i >> 4) & 0x03;
690 data->fan_div[1] = i >> 6;
691 data->alarms =
Jean Delvare17e7dc42007-06-09 10:11:16 -0400692 sis5595_read_value(data, SIS5595_REG_ALARM1) |
693 (sis5595_read_value(data, SIS5595_REG_ALARM2) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 data->last_updated = jiffies;
695 data->valid = 1;
696 }
697
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100698 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 return data;
701}
702
703static struct pci_device_id sis5595_pci_ids[] = {
704 { PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_503) },
705 { 0, }
706};
707
708MODULE_DEVICE_TABLE(pci, sis5595_pci_ids);
709
710static int blacklist[] __devinitdata = {
711 PCI_DEVICE_ID_SI_540,
712 PCI_DEVICE_ID_SI_550,
713 PCI_DEVICE_ID_SI_630,
714 PCI_DEVICE_ID_SI_645,
715 PCI_DEVICE_ID_SI_730,
716 PCI_DEVICE_ID_SI_735,
717 PCI_DEVICE_ID_SI_5511, /* 5513 chip has the 0008 device but
718 that ID shows up in other chips so we
719 use the 5511 ID for recognition */
720 PCI_DEVICE_ID_SI_5597,
721 PCI_DEVICE_ID_SI_5598,
722 0 };
723
Jean Delvare17e7dc42007-06-09 10:11:16 -0400724static int __devinit sis5595_device_add(unsigned short address)
725{
726 struct resource res = {
727 .start = address,
728 .end = address + SIS5595_EXTENT - 1,
729 .name = "sis5595",
730 .flags = IORESOURCE_IO,
731 };
732 int err;
733
734 pdev = platform_device_alloc("sis5595", address);
735 if (!pdev) {
736 err = -ENOMEM;
737 printk(KERN_ERR "sis5595: Device allocation failed\n");
738 goto exit;
739 }
740
741 err = platform_device_add_resources(pdev, &res, 1);
742 if (err) {
743 printk(KERN_ERR "sis5595: Device resource addition failed "
744 "(%d)\n", err);
745 goto exit_device_put;
746 }
747
748 err = platform_device_add(pdev);
749 if (err) {
750 printk(KERN_ERR "sis5595: Device addition failed (%d)\n",
751 err);
752 goto exit_device_put;
753 }
754
755 return 0;
756
757exit_device_put:
758 platform_device_put(pdev);
759exit:
760 return err;
761}
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763static int __devinit sis5595_pci_probe(struct pci_dev *dev,
764 const struct pci_device_id *id)
765{
Jean Delvare17e7dc42007-06-09 10:11:16 -0400766 u16 address;
767 u8 enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 int *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 for (i = blacklist; *i != 0; i++) {
771 struct pci_dev *dev;
772 dev = pci_get_device(PCI_VENDOR_ID_SI, *i, NULL);
773 if (dev) {
774 dev_err(&dev->dev, "Looked for SIS5595 but found unsupported device %.4x\n", *i);
775 pci_dev_put(dev);
776 return -ENODEV;
777 }
778 }
779
Jean Delvare17e7dc42007-06-09 10:11:16 -0400780 force_addr &= ~(SIS5595_EXTENT - 1);
781 if (force_addr) {
782 dev_warn(&dev->dev, "Forcing ISA address 0x%x\n", force_addr);
783 pci_write_config_word(dev, SIS5595_BASE_REG, force_addr);
784 }
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (PCIBIOS_SUCCESSFUL !=
Jean Delvare17e7dc42007-06-09 10:11:16 -0400787 pci_read_config_word(dev, SIS5595_BASE_REG, &address)) {
788 dev_err(&dev->dev, "Failed to read ISA address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return -ENODEV;
Jean Delvare17e7dc42007-06-09 10:11:16 -0400790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Jean Delvare17e7dc42007-06-09 10:11:16 -0400792 address &= ~(SIS5595_EXTENT - 1);
793 if (!address) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 dev_err(&dev->dev, "Base address not set - upgrade BIOS or use force_addr=0xaddr\n");
795 return -ENODEV;
796 }
Jean Delvare17e7dc42007-06-09 10:11:16 -0400797 if (force_addr && address != force_addr) {
798 /* doesn't work for some chips? */
799 dev_err(&dev->dev, "Failed to force ISA address\n");
800 return -ENODEV;
801 }
802
803 if (PCIBIOS_SUCCESSFUL !=
804 pci_read_config_byte(dev, SIS5595_ENABLE_REG, &enable)) {
805 dev_err(&dev->dev, "Failed to read enable register\n");
806 return -ENODEV;
807 }
808 if (!(enable & 0x80)) {
809 if ((PCIBIOS_SUCCESSFUL !=
810 pci_write_config_byte(dev, SIS5595_ENABLE_REG,
811 enable | 0x80))
812 || (PCIBIOS_SUCCESSFUL !=
813 pci_read_config_byte(dev, SIS5595_ENABLE_REG, &enable))
814 || (!(enable & 0x80))) {
815 /* doesn't work for some chips! */
816 dev_err(&dev->dev, "Failed to enable HWM device\n");
817 return -ENODEV;
818 }
819 }
820
821 if (platform_driver_register(&sis5595_driver)) {
822 dev_dbg(&dev->dev, "Failed to register sis5595 driver\n");
823 goto exit;
824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 s_bridge = pci_dev_get(dev);
Jean Delvare17e7dc42007-06-09 10:11:16 -0400827 /* Sets global pdev as a side effect */
828 if (sis5595_device_add(address))
829 goto exit_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 /* Always return failure here. This is to allow other drivers to bind
832 * to this pci device. We don't really want to have control over the
833 * pci device, we only wanted to read as few register values from it.
834 */
835 return -ENODEV;
Jean Delvare17e7dc42007-06-09 10:11:16 -0400836
837exit_unregister:
838 pci_dev_put(dev);
839 platform_driver_unregister(&sis5595_driver);
840exit:
841 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
844static struct pci_driver sis5595_pci_driver = {
845 .name = "sis5595",
846 .id_table = sis5595_pci_ids,
847 .probe = sis5595_pci_probe,
848};
849
850static int __init sm_sis5595_init(void)
851{
852 return pci_register_driver(&sis5595_pci_driver);
853}
854
855static void __exit sm_sis5595_exit(void)
856{
857 pci_unregister_driver(&sis5595_pci_driver);
858 if (s_bridge != NULL) {
Jean Delvare17e7dc42007-06-09 10:11:16 -0400859 platform_device_unregister(pdev);
860 platform_driver_unregister(&sis5595_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 pci_dev_put(s_bridge);
862 s_bridge = NULL;
863 }
864}
865
866MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>");
867MODULE_DESCRIPTION("SiS 5595 Sensor device");
868MODULE_LICENSE("GPL");
869
870module_init(sm_sis5595_init);
871module_exit(sm_sis5595_exit);