2 * sis5595.c - Part of lm_sensors, Linux kernel modules
3 * for hardware monitoring
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>
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.
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.
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.
27 * SiS southbridge has a LM78-like chip integrated on the same IC.
28 * This driver is a customized copy of lm78.c
30 * Supports following revisions:
31 * Version PCI ID PCI Revision
32 * 1 1039/0008 AF or less
33 * 2 1039/0008 B0 or greater
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.
39 * NOT SUPPORTED PCI ID BLACKLIST PCI ID
53 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
55 #include <linux/module.h>
56 #include <linux/slab.h>
57 #include <linux/ioport.h>
58 #include <linux/pci.h>
59 #include <linux/platform_device.h>
60 #include <linux/hwmon.h>
61 #include <linux/hwmon-sysfs.h>
62 #include <linux/err.h>
63 #include <linux/init.h>
64 #include <linux/jiffies.h>
65 #include <linux/mutex.h>
66 #include <linux/sysfs.h>
67 #include <linux/acpi.h>
72 * If force_addr is set to anything different from 0, we forcibly enable
73 * the device at the given address.
75 static u16 force_addr
;
76 module_param(force_addr
, ushort
, 0);
77 MODULE_PARM_DESC(force_addr
,
78 "Initialize the base address of the sensors");
80 static struct platform_device
*pdev
;
82 /* Many SIS5595 constants specified below */
84 /* Length of ISA address segment */
85 #define SIS5595_EXTENT 8
86 /* PCI Config Registers */
87 #define SIS5595_BASE_REG 0x68
88 #define SIS5595_PIN_REG 0x7A
89 #define SIS5595_ENABLE_REG 0x7B
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
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))
100 #define SIS5595_REG_FAN_MIN(nr) (0x3b + (nr))
101 #define SIS5595_REG_FAN(nr) (0x28 + (nr))
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.
112 #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)
119 #define SIS5595_REG_CONFIG 0x40
120 #define SIS5595_REG_ALARM1 0x41
121 #define SIS5595_REG_ALARM2 0x42
122 #define SIS5595_REG_FANDIV 0x47
125 * Conversions. Limit checking is only done on the TO_REG
130 * IN: mV, (0V to 4.08V)
133 static inline u8
IN_TO_REG(unsigned long val
)
135 unsigned long nval
= clamp_val(val
, 0, 4080);
136 return (nval
+ 8) / 16;
138 #define IN_FROM_REG(val) ((val) * 16)
140 static inline u8
FAN_TO_REG(long rpm
, int div
)
144 return clamp_val((1350000 + rpm
* div
/ 2) / (rpm
* div
), 1, 254);
147 static inline int FAN_FROM_REG(u8 val
, int div
)
149 return val
== 0 ? -1 : val
== 255 ? 0 : 1350000 / (val
* div
);
153 * TEMP: mC (-54.12C to +157.53C)
154 * REG: 0.83C/bit + 52.12, two's complement
156 static inline int TEMP_FROM_REG(s8 val
)
158 return val
* 830 + 52120;
160 static inline s8
TEMP_TO_REG(int val
)
162 int nval
= clamp_val(val
, -54120, 157530) ;
163 return nval
< 0 ? (nval
- 5212 - 415) / 830 : (nval
- 5212 + 415) / 830;
167 * FAN DIV: 1, 2, 4, or 8 (defaults to 2)
168 * REG: 0, 1, 2, or 3 (respectively) (defaults to 1)
170 static inline u8
DIV_TO_REG(int val
)
172 return val
== 8 ? 3 : val
== 4 ? 2 : val
== 1 ? 0 : 1;
174 #define DIV_FROM_REG(val) (1 << (val))
177 * For each registered chip, we need to keep some data in memory.
178 * The structure is dynamically allocated.
180 struct sis5595_data
{
183 struct device
*hwmon_dev
;
186 struct mutex update_lock
;
187 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 */
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 */
204 static struct pci_dev
*s_bridge
; /* pointer to the (only) sis5595 */
206 static int sis5595_probe(struct platform_device
*pdev
);
207 static int sis5595_remove(struct platform_device
*pdev
);
209 static int sis5595_read_value(struct sis5595_data
*data
, u8 reg
);
210 static void sis5595_write_value(struct sis5595_data
*data
, u8 reg
, u8 value
);
211 static struct sis5595_data
*sis5595_update_device(struct device
*dev
);
212 static void sis5595_init_device(struct sis5595_data
*data
);
214 static struct platform_driver sis5595_driver
= {
216 .owner
= THIS_MODULE
,
219 .probe
= sis5595_probe
,
220 .remove
= sis5595_remove
,
224 static ssize_t
show_in(struct device
*dev
, struct device_attribute
*da
,
227 struct sis5595_data
*data
= sis5595_update_device(dev
);
228 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
229 int nr
= attr
->index
;
230 return sprintf(buf
, "%d\n", IN_FROM_REG(data
->in
[nr
]));
233 static ssize_t
show_in_min(struct device
*dev
, struct device_attribute
*da
,
236 struct sis5595_data
*data
= sis5595_update_device(dev
);
237 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
238 int nr
= attr
->index
;
239 return sprintf(buf
, "%d\n", IN_FROM_REG(data
->in_min
[nr
]));
242 static ssize_t
show_in_max(struct device
*dev
, struct device_attribute
*da
,
245 struct sis5595_data
*data
= sis5595_update_device(dev
);
246 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
247 int nr
= attr
->index
;
248 return sprintf(buf
, "%d\n", IN_FROM_REG(data
->in_max
[nr
]));
251 static ssize_t
set_in_min(struct device
*dev
, struct device_attribute
*da
,
252 const char *buf
, size_t count
)
254 struct sis5595_data
*data
= dev_get_drvdata(dev
);
255 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
256 int nr
= attr
->index
;
260 err
= kstrtoul(buf
, 10, &val
);
264 mutex_lock(&data
->update_lock
);
265 data
->in_min
[nr
] = IN_TO_REG(val
);
266 sis5595_write_value(data
, SIS5595_REG_IN_MIN(nr
), data
->in_min
[nr
]);
267 mutex_unlock(&data
->update_lock
);
271 static ssize_t
set_in_max(struct device
*dev
, struct device_attribute
*da
,
272 const char *buf
, size_t count
)
274 struct sis5595_data
*data
= dev_get_drvdata(dev
);
275 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
276 int nr
= attr
->index
;
280 err
= kstrtoul(buf
, 10, &val
);
284 mutex_lock(&data
->update_lock
);
285 data
->in_max
[nr
] = IN_TO_REG(val
);
286 sis5595_write_value(data
, SIS5595_REG_IN_MAX(nr
), data
->in_max
[nr
]);
287 mutex_unlock(&data
->update_lock
);
291 #define show_in_offset(offset) \
292 static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
293 show_in, NULL, offset); \
294 static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
295 show_in_min, set_in_min, offset); \
296 static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
297 show_in_max, set_in_max, offset);
306 static ssize_t
show_temp(struct device
*dev
, struct device_attribute
*attr
,
309 struct sis5595_data
*data
= sis5595_update_device(dev
);
310 return sprintf(buf
, "%d\n", TEMP_FROM_REG(data
->temp
));
313 static ssize_t
show_temp_over(struct device
*dev
, struct device_attribute
*attr
,
316 struct sis5595_data
*data
= sis5595_update_device(dev
);
317 return sprintf(buf
, "%d\n", TEMP_FROM_REG(data
->temp_over
));
320 static ssize_t
set_temp_over(struct device
*dev
, struct device_attribute
*attr
,
321 const char *buf
, size_t count
)
323 struct sis5595_data
*data
= dev_get_drvdata(dev
);
327 err
= kstrtol(buf
, 10, &val
);
331 mutex_lock(&data
->update_lock
);
332 data
->temp_over
= TEMP_TO_REG(val
);
333 sis5595_write_value(data
, SIS5595_REG_TEMP_OVER
, data
->temp_over
);
334 mutex_unlock(&data
->update_lock
);
338 static ssize_t
show_temp_hyst(struct device
*dev
, struct device_attribute
*attr
,
341 struct sis5595_data
*data
= sis5595_update_device(dev
);
342 return sprintf(buf
, "%d\n", TEMP_FROM_REG(data
->temp_hyst
));
345 static ssize_t
set_temp_hyst(struct device
*dev
, struct device_attribute
*attr
,
346 const char *buf
, size_t count
)
348 struct sis5595_data
*data
= dev_get_drvdata(dev
);
352 err
= kstrtol(buf
, 10, &val
);
356 mutex_lock(&data
->update_lock
);
357 data
->temp_hyst
= TEMP_TO_REG(val
);
358 sis5595_write_value(data
, SIS5595_REG_TEMP_HYST
, data
->temp_hyst
);
359 mutex_unlock(&data
->update_lock
);
363 static DEVICE_ATTR(temp1_input
, S_IRUGO
, show_temp
, NULL
);
364 static DEVICE_ATTR(temp1_max
, S_IRUGO
| S_IWUSR
,
365 show_temp_over
, set_temp_over
);
366 static DEVICE_ATTR(temp1_max_hyst
, S_IRUGO
| S_IWUSR
,
367 show_temp_hyst
, set_temp_hyst
);
370 static ssize_t
show_fan(struct device
*dev
, struct device_attribute
*da
,
373 struct sis5595_data
*data
= sis5595_update_device(dev
);
374 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
375 int nr
= attr
->index
;
376 return sprintf(buf
, "%d\n", FAN_FROM_REG(data
->fan
[nr
],
377 DIV_FROM_REG(data
->fan_div
[nr
])));
380 static ssize_t
show_fan_min(struct device
*dev
, struct device_attribute
*da
,
383 struct sis5595_data
*data
= sis5595_update_device(dev
);
384 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
385 int nr
= attr
->index
;
386 return sprintf(buf
, "%d\n", FAN_FROM_REG(data
->fan_min
[nr
],
387 DIV_FROM_REG(data
->fan_div
[nr
])));
390 static ssize_t
set_fan_min(struct device
*dev
, struct device_attribute
*da
,
391 const char *buf
, size_t count
)
393 struct sis5595_data
*data
= dev_get_drvdata(dev
);
394 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
395 int nr
= attr
->index
;
399 err
= kstrtoul(buf
, 10, &val
);
403 mutex_lock(&data
->update_lock
);
404 data
->fan_min
[nr
] = FAN_TO_REG(val
, DIV_FROM_REG(data
->fan_div
[nr
]));
405 sis5595_write_value(data
, SIS5595_REG_FAN_MIN(nr
), data
->fan_min
[nr
]);
406 mutex_unlock(&data
->update_lock
);
410 static ssize_t
show_fan_div(struct device
*dev
, struct device_attribute
*da
,
413 struct sis5595_data
*data
= sis5595_update_device(dev
);
414 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
415 int nr
= attr
->index
;
416 return sprintf(buf
, "%d\n", DIV_FROM_REG(data
->fan_div
[nr
]));
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.
425 static ssize_t
set_fan_div(struct device
*dev
, struct device_attribute
*da
,
426 const char *buf
, size_t count
)
428 struct sis5595_data
*data
= dev_get_drvdata(dev
);
429 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
430 int nr
= attr
->index
;
436 err
= kstrtoul(buf
, 10, &val
);
440 mutex_lock(&data
->update_lock
);
441 min
= FAN_FROM_REG(data
->fan_min
[nr
],
442 DIV_FROM_REG(data
->fan_div
[nr
]));
443 reg
= sis5595_read_value(data
, SIS5595_REG_FANDIV
);
447 data
->fan_div
[nr
] = 0;
450 data
->fan_div
[nr
] = 1;
453 data
->fan_div
[nr
] = 2;
456 data
->fan_div
[nr
] = 3;
460 "fan_div value %ld not supported. Choose one of 1, 2, 4 or 8!\n",
462 mutex_unlock(&data
->update_lock
);
468 reg
= (reg
& 0xcf) | (data
->fan_div
[nr
] << 4);
471 reg
= (reg
& 0x3f) | (data
->fan_div
[nr
] << 6);
474 sis5595_write_value(data
, SIS5595_REG_FANDIV
, reg
);
476 FAN_TO_REG(min
, DIV_FROM_REG(data
->fan_div
[nr
]));
477 sis5595_write_value(data
, SIS5595_REG_FAN_MIN(nr
), data
->fan_min
[nr
]);
478 mutex_unlock(&data
->update_lock
);
482 #define show_fan_offset(offset) \
483 static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
484 show_fan, NULL, offset - 1); \
485 static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
486 show_fan_min, set_fan_min, offset - 1); \
487 static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
488 show_fan_div, set_fan_div, offset - 1);
494 static ssize_t
show_alarms(struct device
*dev
, struct device_attribute
*attr
,
497 struct sis5595_data
*data
= sis5595_update_device(dev
);
498 return sprintf(buf
, "%d\n", data
->alarms
);
500 static DEVICE_ATTR(alarms
, S_IRUGO
, show_alarms
, NULL
);
502 static ssize_t
show_alarm(struct device
*dev
, struct device_attribute
*da
,
505 struct sis5595_data
*data
= sis5595_update_device(dev
);
506 int nr
= to_sensor_dev_attr(da
)->index
;
507 return sprintf(buf
, "%u\n", (data
->alarms
>> nr
) & 1);
509 static SENSOR_DEVICE_ATTR(in0_alarm
, S_IRUGO
, show_alarm
, NULL
, 0);
510 static SENSOR_DEVICE_ATTR(in1_alarm
, S_IRUGO
, show_alarm
, NULL
, 1);
511 static SENSOR_DEVICE_ATTR(in2_alarm
, S_IRUGO
, show_alarm
, NULL
, 2);
512 static SENSOR_DEVICE_ATTR(in3_alarm
, S_IRUGO
, show_alarm
, NULL
, 3);
513 static SENSOR_DEVICE_ATTR(in4_alarm
, S_IRUGO
, show_alarm
, NULL
, 15);
514 static SENSOR_DEVICE_ATTR(fan1_alarm
, S_IRUGO
, show_alarm
, NULL
, 6);
515 static SENSOR_DEVICE_ATTR(fan2_alarm
, S_IRUGO
, show_alarm
, NULL
, 7);
516 static SENSOR_DEVICE_ATTR(temp1_alarm
, S_IRUGO
, show_alarm
, NULL
, 15);
518 static ssize_t
show_name(struct device
*dev
, struct device_attribute
*attr
,
521 struct sis5595_data
*data
= dev_get_drvdata(dev
);
522 return sprintf(buf
, "%s\n", data
->name
);
524 static DEVICE_ATTR(name
, S_IRUGO
, show_name
, NULL
);
526 static struct attribute
*sis5595_attributes
[] = {
527 &sensor_dev_attr_in0_input
.dev_attr
.attr
,
528 &sensor_dev_attr_in0_min
.dev_attr
.attr
,
529 &sensor_dev_attr_in0_max
.dev_attr
.attr
,
530 &sensor_dev_attr_in0_alarm
.dev_attr
.attr
,
531 &sensor_dev_attr_in1_input
.dev_attr
.attr
,
532 &sensor_dev_attr_in1_min
.dev_attr
.attr
,
533 &sensor_dev_attr_in1_max
.dev_attr
.attr
,
534 &sensor_dev_attr_in1_alarm
.dev_attr
.attr
,
535 &sensor_dev_attr_in2_input
.dev_attr
.attr
,
536 &sensor_dev_attr_in2_min
.dev_attr
.attr
,
537 &sensor_dev_attr_in2_max
.dev_attr
.attr
,
538 &sensor_dev_attr_in2_alarm
.dev_attr
.attr
,
539 &sensor_dev_attr_in3_input
.dev_attr
.attr
,
540 &sensor_dev_attr_in3_min
.dev_attr
.attr
,
541 &sensor_dev_attr_in3_max
.dev_attr
.attr
,
542 &sensor_dev_attr_in3_alarm
.dev_attr
.attr
,
544 &sensor_dev_attr_fan1_input
.dev_attr
.attr
,
545 &sensor_dev_attr_fan1_min
.dev_attr
.attr
,
546 &sensor_dev_attr_fan1_div
.dev_attr
.attr
,
547 &sensor_dev_attr_fan1_alarm
.dev_attr
.attr
,
548 &sensor_dev_attr_fan2_input
.dev_attr
.attr
,
549 &sensor_dev_attr_fan2_min
.dev_attr
.attr
,
550 &sensor_dev_attr_fan2_div
.dev_attr
.attr
,
551 &sensor_dev_attr_fan2_alarm
.dev_attr
.attr
,
553 &dev_attr_alarms
.attr
,
558 static const struct attribute_group sis5595_group
= {
559 .attrs
= sis5595_attributes
,
562 static struct attribute
*sis5595_attributes_in4
[] = {
563 &sensor_dev_attr_in4_input
.dev_attr
.attr
,
564 &sensor_dev_attr_in4_min
.dev_attr
.attr
,
565 &sensor_dev_attr_in4_max
.dev_attr
.attr
,
566 &sensor_dev_attr_in4_alarm
.dev_attr
.attr
,
570 static const struct attribute_group sis5595_group_in4
= {
571 .attrs
= sis5595_attributes_in4
,
574 static struct attribute
*sis5595_attributes_temp1
[] = {
575 &dev_attr_temp1_input
.attr
,
576 &dev_attr_temp1_max
.attr
,
577 &dev_attr_temp1_max_hyst
.attr
,
578 &sensor_dev_attr_temp1_alarm
.dev_attr
.attr
,
582 static const struct attribute_group sis5595_group_temp1
= {
583 .attrs
= sis5595_attributes_temp1
,
586 /* This is called when the module is loaded */
587 static int sis5595_probe(struct platform_device
*pdev
)
591 struct sis5595_data
*data
;
592 struct resource
*res
;
595 /* Reserve the ISA region */
596 res
= platform_get_resource(pdev
, IORESOURCE_IO
, 0);
597 if (!devm_request_region(&pdev
->dev
, res
->start
, SIS5595_EXTENT
,
598 sis5595_driver
.driver
.name
))
601 data
= devm_kzalloc(&pdev
->dev
, sizeof(struct sis5595_data
),
606 mutex_init(&data
->lock
);
607 mutex_init(&data
->update_lock
);
608 data
->addr
= res
->start
;
609 data
->name
= "sis5595";
610 platform_set_drvdata(pdev
, data
);
613 * Check revision and pin registers to determine whether 4 or 5 voltages
615 data
->revision
= s_bridge
->revision
;
616 /* 4 voltages, 1 temp */
618 if (data
->revision
>= REV2MIN
) {
619 pci_read_config_byte(s_bridge
, SIS5595_PIN_REG
, &val
);
621 /* 5 voltages, no temps */
625 /* Initialize the SIS5595 chip */
626 sis5595_init_device(data
);
628 /* A few vars need to be filled upon startup */
629 for (i
= 0; i
< 2; i
++) {
630 data
->fan_min
[i
] = sis5595_read_value(data
,
631 SIS5595_REG_FAN_MIN(i
));
634 /* Register sysfs hooks */
635 err
= sysfs_create_group(&pdev
->dev
.kobj
, &sis5595_group
);
638 if (data
->maxins
== 4) {
639 err
= sysfs_create_group(&pdev
->dev
.kobj
, &sis5595_group_in4
);
641 goto exit_remove_files
;
643 err
= sysfs_create_group(&pdev
->dev
.kobj
, &sis5595_group_temp1
);
645 goto exit_remove_files
;
648 data
->hwmon_dev
= hwmon_device_register(&pdev
->dev
);
649 if (IS_ERR(data
->hwmon_dev
)) {
650 err
= PTR_ERR(data
->hwmon_dev
);
651 goto exit_remove_files
;
657 sysfs_remove_group(&pdev
->dev
.kobj
, &sis5595_group
);
658 sysfs_remove_group(&pdev
->dev
.kobj
, &sis5595_group_in4
);
659 sysfs_remove_group(&pdev
->dev
.kobj
, &sis5595_group_temp1
);
663 static int sis5595_remove(struct platform_device
*pdev
)
665 struct sis5595_data
*data
= platform_get_drvdata(pdev
);
667 hwmon_device_unregister(data
->hwmon_dev
);
668 sysfs_remove_group(&pdev
->dev
.kobj
, &sis5595_group
);
669 sysfs_remove_group(&pdev
->dev
.kobj
, &sis5595_group_in4
);
670 sysfs_remove_group(&pdev
->dev
.kobj
, &sis5595_group_temp1
);
676 /* ISA access must be locked explicitly. */
677 static int sis5595_read_value(struct sis5595_data
*data
, u8 reg
)
681 mutex_lock(&data
->lock
);
682 outb_p(reg
, data
->addr
+ SIS5595_ADDR_REG_OFFSET
);
683 res
= inb_p(data
->addr
+ SIS5595_DATA_REG_OFFSET
);
684 mutex_unlock(&data
->lock
);
688 static void sis5595_write_value(struct sis5595_data
*data
, u8 reg
, u8 value
)
690 mutex_lock(&data
->lock
);
691 outb_p(reg
, data
->addr
+ SIS5595_ADDR_REG_OFFSET
);
692 outb_p(value
, data
->addr
+ SIS5595_DATA_REG_OFFSET
);
693 mutex_unlock(&data
->lock
);
696 /* Called when we have found a new SIS5595. */
697 static void sis5595_init_device(struct sis5595_data
*data
)
699 u8 config
= sis5595_read_value(data
, SIS5595_REG_CONFIG
);
700 if (!(config
& 0x01))
701 sis5595_write_value(data
, SIS5595_REG_CONFIG
,
702 (config
& 0xf7) | 0x01);
705 static struct sis5595_data
*sis5595_update_device(struct device
*dev
)
707 struct sis5595_data
*data
= dev_get_drvdata(dev
);
710 mutex_lock(&data
->update_lock
);
712 if (time_after(jiffies
, data
->last_updated
+ HZ
+ HZ
/ 2)
715 for (i
= 0; i
<= data
->maxins
; i
++) {
717 sis5595_read_value(data
, SIS5595_REG_IN(i
));
719 sis5595_read_value(data
,
720 SIS5595_REG_IN_MIN(i
));
722 sis5595_read_value(data
,
723 SIS5595_REG_IN_MAX(i
));
725 for (i
= 0; i
< 2; i
++) {
727 sis5595_read_value(data
, SIS5595_REG_FAN(i
));
729 sis5595_read_value(data
,
730 SIS5595_REG_FAN_MIN(i
));
732 if (data
->maxins
== 3) {
734 sis5595_read_value(data
, SIS5595_REG_TEMP
);
736 sis5595_read_value(data
, SIS5595_REG_TEMP_OVER
);
738 sis5595_read_value(data
, SIS5595_REG_TEMP_HYST
);
740 i
= sis5595_read_value(data
, SIS5595_REG_FANDIV
);
741 data
->fan_div
[0] = (i
>> 4) & 0x03;
742 data
->fan_div
[1] = i
>> 6;
744 sis5595_read_value(data
, SIS5595_REG_ALARM1
) |
745 (sis5595_read_value(data
, SIS5595_REG_ALARM2
) << 8);
746 data
->last_updated
= jiffies
;
750 mutex_unlock(&data
->update_lock
);
755 static DEFINE_PCI_DEVICE_TABLE(sis5595_pci_ids
) = {
756 { PCI_DEVICE(PCI_VENDOR_ID_SI
, PCI_DEVICE_ID_SI_503
) },
760 MODULE_DEVICE_TABLE(pci
, sis5595_pci_ids
);
762 static int blacklist
[] = {
763 PCI_DEVICE_ID_SI_540
,
764 PCI_DEVICE_ID_SI_550
,
765 PCI_DEVICE_ID_SI_630
,
766 PCI_DEVICE_ID_SI_645
,
767 PCI_DEVICE_ID_SI_730
,
768 PCI_DEVICE_ID_SI_735
,
769 PCI_DEVICE_ID_SI_5511
, /*
770 * 5513 chip has the 0008 device but
771 * that ID shows up in other chips so we
772 * use the 5511 ID for recognition
774 PCI_DEVICE_ID_SI_5597
,
775 PCI_DEVICE_ID_SI_5598
,
778 static int sis5595_device_add(unsigned short address
)
780 struct resource res
= {
782 .end
= address
+ SIS5595_EXTENT
- 1,
784 .flags
= IORESOURCE_IO
,
788 err
= acpi_check_resource_conflict(&res
);
792 pdev
= platform_device_alloc("sis5595", address
);
795 pr_err("Device allocation failed\n");
799 err
= platform_device_add_resources(pdev
, &res
, 1);
801 pr_err("Device resource addition failed (%d)\n", err
);
802 goto exit_device_put
;
805 err
= platform_device_add(pdev
);
807 pr_err("Device addition failed (%d)\n", err
);
808 goto exit_device_put
;
814 platform_device_put(pdev
);
819 static int sis5595_pci_probe(struct pci_dev
*dev
,
820 const struct pci_device_id
*id
)
826 for (i
= blacklist
; *i
!= 0; i
++) {
828 d
= pci_get_device(PCI_VENDOR_ID_SI
, *i
, NULL
);
831 "Looked for SIS5595 but found unsupported device %.4x\n",
838 force_addr
&= ~(SIS5595_EXTENT
- 1);
840 dev_warn(&dev
->dev
, "Forcing ISA address 0x%x\n", force_addr
);
841 pci_write_config_word(dev
, SIS5595_BASE_REG
, force_addr
);
844 if (PCIBIOS_SUCCESSFUL
!=
845 pci_read_config_word(dev
, SIS5595_BASE_REG
, &address
)) {
846 dev_err(&dev
->dev
, "Failed to read ISA address\n");
850 address
&= ~(SIS5595_EXTENT
- 1);
853 "Base address not set - upgrade BIOS or use force_addr=0xaddr\n");
856 if (force_addr
&& address
!= force_addr
) {
857 /* doesn't work for some chips? */
858 dev_err(&dev
->dev
, "Failed to force ISA address\n");
862 if (PCIBIOS_SUCCESSFUL
!=
863 pci_read_config_byte(dev
, SIS5595_ENABLE_REG
, &enable
)) {
864 dev_err(&dev
->dev
, "Failed to read enable register\n");
867 if (!(enable
& 0x80)) {
868 if ((PCIBIOS_SUCCESSFUL
!=
869 pci_write_config_byte(dev
, SIS5595_ENABLE_REG
,
871 || (PCIBIOS_SUCCESSFUL
!=
872 pci_read_config_byte(dev
, SIS5595_ENABLE_REG
, &enable
))
873 || (!(enable
& 0x80))) {
874 /* doesn't work for some chips! */
875 dev_err(&dev
->dev
, "Failed to enable HWM device\n");
880 if (platform_driver_register(&sis5595_driver
)) {
881 dev_dbg(&dev
->dev
, "Failed to register sis5595 driver\n");
885 s_bridge
= pci_dev_get(dev
);
886 /* Sets global pdev as a side effect */
887 if (sis5595_device_add(address
))
888 goto exit_unregister
;
891 * Always return failure here. This is to allow other drivers to bind
892 * to this pci device. We don't really want to have control over the
893 * pci device, we only wanted to read as few register values from it.
899 platform_driver_unregister(&sis5595_driver
);
904 static struct pci_driver sis5595_pci_driver
= {
906 .id_table
= sis5595_pci_ids
,
907 .probe
= sis5595_pci_probe
,
910 static int __init
sm_sis5595_init(void)
912 return pci_register_driver(&sis5595_pci_driver
);
915 static void __exit
sm_sis5595_exit(void)
917 pci_unregister_driver(&sis5595_pci_driver
);
918 if (s_bridge
!= NULL
) {
919 platform_device_unregister(pdev
);
920 platform_driver_unregister(&sis5595_driver
);
921 pci_dev_put(s_bridge
);
926 MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>");
927 MODULE_DESCRIPTION("SiS 5595 Sensor device");
928 MODULE_LICENSE("GPL");
930 module_init(sm_sis5595_init
);
931 module_exit(sm_sis5595_exit
);