1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * sis5595.c - Part of lm_sensors, Linux kernel modules
4 * for hardware monitoring
6 * Copyright (C) 1998 - 2001 Frodo Looijaard <frodol@dds.nl>,
7 * Kyösti Mälkki <kmalkki@cc.hut.fi>, and
8 * Mark D. Studebaker <mdsxyz123@yahoo.com>
9 * Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with
10 * the help of Jean Delvare <jdelvare@suse.de>
14 * SiS southbridge has a LM78-like chip integrated on the same IC.
15 * This driver is a customized copy of lm78.c
17 * Supports following revisions:
18 * Version PCI ID PCI Revision
19 * 1 1039/0008 AF or less
20 * 2 1039/0008 B0 or greater
22 * Note: these chips contain a 0008 device which is incompatible with the
23 * 5595. We recognize these by the presence of the listed
24 * "blacklist" PCI ID and refuse to load.
26 * NOT SUPPORTED PCI ID BLACKLIST PCI ID
40 #define DRIVER_NAME "sis5595"
41 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
43 #include <linux/module.h>
44 #include <linux/slab.h>
45 #include <linux/ioport.h>
46 #include <linux/pci.h>
47 #include <linux/platform_device.h>
48 #include <linux/hwmon.h>
49 #include <linux/hwmon-sysfs.h>
50 #include <linux/err.h>
51 #include <linux/init.h>
52 #include <linux/jiffies.h>
53 #include <linux/mutex.h>
54 #include <linux/sysfs.h>
55 #include <linux/acpi.h>
59 * If force_addr is set to anything different from 0, we forcibly enable
60 * the device at the given address.
62 static u16 force_addr;
63 module_param(force_addr, ushort, 0);
64 MODULE_PARM_DESC(force_addr,
65 "Initialize the base address of the sensors");
67 static struct platform_device *pdev;
69 /* Many SIS5595 constants specified below */
71 /* Length of ISA address segment */
72 #define SIS5595_EXTENT 8
73 /* PCI Config Registers */
74 #define SIS5595_BASE_REG 0x68
75 #define SIS5595_PIN_REG 0x7A
76 #define SIS5595_ENABLE_REG 0x7B
78 /* Where are the ISA address/data registers relative to the base address */
79 #define SIS5595_ADDR_REG_OFFSET 5
80 #define SIS5595_DATA_REG_OFFSET 6
82 /* The SIS5595 registers */
83 #define SIS5595_REG_IN_MAX(nr) (0x2b + (nr) * 2)
84 #define SIS5595_REG_IN_MIN(nr) (0x2c + (nr) * 2)
85 #define SIS5595_REG_IN(nr) (0x20 + (nr))
87 #define SIS5595_REG_FAN_MIN(nr) (0x3b + (nr))
88 #define SIS5595_REG_FAN(nr) (0x28 + (nr))
91 * On the first version of the chip, the temp registers are separate.
92 * On the second version,
93 * TEMP pin is shared with IN4, configured in PCI register 0x7A.
94 * The registers are the same as well.
95 * OVER and HYST are really MAX and MIN.
99 #define SIS5595_REG_TEMP (((data->revision) >= REV2MIN) ? \
100 SIS5595_REG_IN(4) : 0x27)
101 #define SIS5595_REG_TEMP_OVER (((data->revision) >= REV2MIN) ? \
102 SIS5595_REG_IN_MAX(4) : 0x39)
103 #define SIS5595_REG_TEMP_HYST (((data->revision) >= REV2MIN) ? \
104 SIS5595_REG_IN_MIN(4) : 0x3a)
106 #define SIS5595_REG_CONFIG 0x40
107 #define SIS5595_REG_ALARM1 0x41
108 #define SIS5595_REG_ALARM2 0x42
109 #define SIS5595_REG_FANDIV 0x47
112 * Conversions. Limit checking is only done on the TO_REG
117 * IN: mV, (0V to 4.08V)
120 static inline u8 IN_TO_REG(unsigned long val)
122 unsigned long nval = clamp_val(val, 0, 4080);
123 return (nval + 8) / 16;
125 #define IN_FROM_REG(val) ((val) * 16)
127 static inline u8 FAN_TO_REG(long rpm, int div)
133 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
136 static inline int FAN_FROM_REG(u8 val, int div)
138 return val == 0 ? -1 : val == 255 ? 0 : 1350000 / (val * div);
142 * TEMP: mC (-54.12C to +157.53C)
143 * REG: 0.83C/bit + 52.12, two's complement
145 static inline int TEMP_FROM_REG(s8 val)
147 return val * 830 + 52120;
149 static inline s8 TEMP_TO_REG(long val)
151 int nval = clamp_val(val, -54120, 157530) ;
152 return nval < 0 ? (nval - 5212 - 415) / 830 : (nval - 5212 + 415) / 830;
156 * FAN DIV: 1, 2, 4, or 8 (defaults to 2)
157 * REG: 0, 1, 2, or 3 (respectively) (defaults to 1)
159 static inline u8 DIV_TO_REG(int val)
161 return val == 8 ? 3 : val == 4 ? 2 : val == 1 ? 0 : 1;
163 #define DIV_FROM_REG(val) (1 << (val))
166 * For each registered chip, we need to keep some data in memory.
167 * The structure is dynamically allocated.
169 struct sis5595_data {
172 struct device *hwmon_dev;
175 struct mutex update_lock;
176 bool valid; /* true if following fields are valid */
177 unsigned long last_updated; /* In jiffies */
178 char maxins; /* == 3 if temp enabled, otherwise == 4 */
179 u8 revision; /* Reg. value */
181 u8 in[5]; /* Register value */
182 u8 in_max[5]; /* Register value */
183 u8 in_min[5]; /* Register value */
184 u8 fan[2]; /* Register value */
185 u8 fan_min[2]; /* Register value */
186 s8 temp; /* Register value */
187 s8 temp_over; /* Register value */
188 s8 temp_hyst; /* Register value */
189 u8 fan_div[2]; /* Register encoding, shifted right */
190 u16 alarms; /* Register encoding, combined */
193 static struct pci_dev *s_bridge; /* pointer to the (only) sis5595 */
195 /* ISA access must be locked explicitly. */
196 static int sis5595_read_value(struct sis5595_data *data, u8 reg)
200 mutex_lock(&data->lock);
201 outb_p(reg, data->addr + SIS5595_ADDR_REG_OFFSET);
202 res = inb_p(data->addr + SIS5595_DATA_REG_OFFSET);
203 mutex_unlock(&data->lock);
207 static void sis5595_write_value(struct sis5595_data *data, u8 reg, u8 value)
209 mutex_lock(&data->lock);
210 outb_p(reg, data->addr + SIS5595_ADDR_REG_OFFSET);
211 outb_p(value, data->addr + SIS5595_DATA_REG_OFFSET);
212 mutex_unlock(&data->lock);
215 static struct sis5595_data *sis5595_update_device(struct device *dev)
217 struct sis5595_data *data = dev_get_drvdata(dev);
220 mutex_lock(&data->update_lock);
222 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
225 for (i = 0; i <= data->maxins; i++) {
227 sis5595_read_value(data, SIS5595_REG_IN(i));
229 sis5595_read_value(data,
230 SIS5595_REG_IN_MIN(i));
232 sis5595_read_value(data,
233 SIS5595_REG_IN_MAX(i));
235 for (i = 0; i < 2; i++) {
237 sis5595_read_value(data, SIS5595_REG_FAN(i));
239 sis5595_read_value(data,
240 SIS5595_REG_FAN_MIN(i));
242 if (data->maxins == 3) {
244 sis5595_read_value(data, SIS5595_REG_TEMP);
246 sis5595_read_value(data, SIS5595_REG_TEMP_OVER);
248 sis5595_read_value(data, SIS5595_REG_TEMP_HYST);
250 i = sis5595_read_value(data, SIS5595_REG_FANDIV);
251 data->fan_div[0] = (i >> 4) & 0x03;
252 data->fan_div[1] = i >> 6;
254 sis5595_read_value(data, SIS5595_REG_ALARM1) |
255 (sis5595_read_value(data, SIS5595_REG_ALARM2) << 8);
256 data->last_updated = jiffies;
260 mutex_unlock(&data->update_lock);
266 static ssize_t in_show(struct device *dev, struct device_attribute *da,
269 struct sis5595_data *data = sis5595_update_device(dev);
270 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
271 int nr = attr->index;
272 return sprintf(buf, "%d\n", IN_FROM_REG(data->in[nr]));
275 static ssize_t in_min_show(struct device *dev, struct device_attribute *da,
278 struct sis5595_data *data = sis5595_update_device(dev);
279 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
280 int nr = attr->index;
281 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_min[nr]));
284 static ssize_t in_max_show(struct device *dev, struct device_attribute *da,
287 struct sis5595_data *data = sis5595_update_device(dev);
288 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
289 int nr = attr->index;
290 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_max[nr]));
293 static ssize_t in_min_store(struct device *dev, struct device_attribute *da,
294 const char *buf, size_t count)
296 struct sis5595_data *data = dev_get_drvdata(dev);
297 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
298 int nr = attr->index;
302 err = kstrtoul(buf, 10, &val);
306 mutex_lock(&data->update_lock);
307 data->in_min[nr] = IN_TO_REG(val);
308 sis5595_write_value(data, SIS5595_REG_IN_MIN(nr), data->in_min[nr]);
309 mutex_unlock(&data->update_lock);
313 static ssize_t in_max_store(struct device *dev, struct device_attribute *da,
314 const char *buf, size_t count)
316 struct sis5595_data *data = dev_get_drvdata(dev);
317 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
318 int nr = attr->index;
322 err = kstrtoul(buf, 10, &val);
326 mutex_lock(&data->update_lock);
327 data->in_max[nr] = IN_TO_REG(val);
328 sis5595_write_value(data, SIS5595_REG_IN_MAX(nr), data->in_max[nr]);
329 mutex_unlock(&data->update_lock);
333 static SENSOR_DEVICE_ATTR_RO(in0_input, in, 0);
334 static SENSOR_DEVICE_ATTR_RW(in0_min, in_min, 0);
335 static SENSOR_DEVICE_ATTR_RW(in0_max, in_max, 0);
336 static SENSOR_DEVICE_ATTR_RO(in1_input, in, 1);
337 static SENSOR_DEVICE_ATTR_RW(in1_min, in_min, 1);
338 static SENSOR_DEVICE_ATTR_RW(in1_max, in_max, 1);
339 static SENSOR_DEVICE_ATTR_RO(in2_input, in, 2);
340 static SENSOR_DEVICE_ATTR_RW(in2_min, in_min, 2);
341 static SENSOR_DEVICE_ATTR_RW(in2_max, in_max, 2);
342 static SENSOR_DEVICE_ATTR_RO(in3_input, in, 3);
343 static SENSOR_DEVICE_ATTR_RW(in3_min, in_min, 3);
344 static SENSOR_DEVICE_ATTR_RW(in3_max, in_max, 3);
345 static SENSOR_DEVICE_ATTR_RO(in4_input, in, 4);
346 static SENSOR_DEVICE_ATTR_RW(in4_min, in_min, 4);
347 static SENSOR_DEVICE_ATTR_RW(in4_max, in_max, 4);
350 static ssize_t temp1_input_show(struct device *dev,
351 struct device_attribute *attr, char *buf)
353 struct sis5595_data *data = sis5595_update_device(dev);
354 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp));
357 static ssize_t temp1_max_show(struct device *dev, struct device_attribute *attr,
360 struct sis5595_data *data = sis5595_update_device(dev);
361 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_over));
364 static ssize_t temp1_max_store(struct device *dev,
365 struct device_attribute *attr, const char *buf,
368 struct sis5595_data *data = dev_get_drvdata(dev);
372 err = kstrtol(buf, 10, &val);
376 mutex_lock(&data->update_lock);
377 data->temp_over = TEMP_TO_REG(val);
378 sis5595_write_value(data, SIS5595_REG_TEMP_OVER, data->temp_over);
379 mutex_unlock(&data->update_lock);
383 static ssize_t temp1_max_hyst_show(struct device *dev,
384 struct device_attribute *attr, char *buf)
386 struct sis5595_data *data = sis5595_update_device(dev);
387 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_hyst));
390 static ssize_t temp1_max_hyst_store(struct device *dev,
391 struct device_attribute *attr,
392 const char *buf, size_t count)
394 struct sis5595_data *data = dev_get_drvdata(dev);
398 err = kstrtol(buf, 10, &val);
402 mutex_lock(&data->update_lock);
403 data->temp_hyst = TEMP_TO_REG(val);
404 sis5595_write_value(data, SIS5595_REG_TEMP_HYST, data->temp_hyst);
405 mutex_unlock(&data->update_lock);
409 static DEVICE_ATTR_RO(temp1_input);
410 static DEVICE_ATTR_RW(temp1_max);
411 static DEVICE_ATTR_RW(temp1_max_hyst);
414 static ssize_t fan_show(struct device *dev, struct device_attribute *da,
417 struct sis5595_data *data = sis5595_update_device(dev);
418 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
419 int nr = attr->index;
420 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr],
421 DIV_FROM_REG(data->fan_div[nr])));
424 static ssize_t fan_min_show(struct device *dev, struct device_attribute *da,
427 struct sis5595_data *data = sis5595_update_device(dev);
428 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
429 int nr = attr->index;
430 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr],
431 DIV_FROM_REG(data->fan_div[nr])));
434 static ssize_t fan_min_store(struct device *dev, struct device_attribute *da,
435 const char *buf, size_t count)
437 struct sis5595_data *data = dev_get_drvdata(dev);
438 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
439 int nr = attr->index;
443 err = kstrtoul(buf, 10, &val);
447 mutex_lock(&data->update_lock);
448 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
449 sis5595_write_value(data, SIS5595_REG_FAN_MIN(nr), data->fan_min[nr]);
450 mutex_unlock(&data->update_lock);
454 static ssize_t fan_div_show(struct device *dev, struct device_attribute *da,
457 struct sis5595_data *data = sis5595_update_device(dev);
458 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
459 int nr = attr->index;
460 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
464 * Note: we save and restore the fan minimum here, because its value is
465 * determined in part by the fan divisor. This follows the principle of
466 * least surprise; the user doesn't expect the fan minimum to change just
467 * because the divisor changed.
469 static ssize_t fan_div_store(struct device *dev, struct device_attribute *da,
470 const char *buf, size_t count)
472 struct sis5595_data *data = dev_get_drvdata(dev);
473 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
474 int nr = attr->index;
480 err = kstrtoul(buf, 10, &val);
484 mutex_lock(&data->update_lock);
485 min = FAN_FROM_REG(data->fan_min[nr],
486 DIV_FROM_REG(data->fan_div[nr]));
487 reg = sis5595_read_value(data, SIS5595_REG_FANDIV);
491 data->fan_div[nr] = 0;
494 data->fan_div[nr] = 1;
497 data->fan_div[nr] = 2;
500 data->fan_div[nr] = 3;
504 "fan_div value %ld not supported. Choose one of 1, 2, 4 or 8!\n",
506 mutex_unlock(&data->update_lock);
512 reg = (reg & 0xcf) | (data->fan_div[nr] << 4);
515 reg = (reg & 0x3f) | (data->fan_div[nr] << 6);
518 sis5595_write_value(data, SIS5595_REG_FANDIV, reg);
520 FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
521 sis5595_write_value(data, SIS5595_REG_FAN_MIN(nr), data->fan_min[nr]);
522 mutex_unlock(&data->update_lock);
526 static SENSOR_DEVICE_ATTR_RO(fan1_input, fan, 0);
527 static SENSOR_DEVICE_ATTR_RW(fan1_min, fan_min, 0);
528 static SENSOR_DEVICE_ATTR_RW(fan1_div, fan_div, 0);
529 static SENSOR_DEVICE_ATTR_RO(fan2_input, fan, 1);
530 static SENSOR_DEVICE_ATTR_RW(fan2_min, fan_min, 1);
531 static SENSOR_DEVICE_ATTR_RW(fan2_div, fan_div, 1);
534 static ssize_t alarms_show(struct device *dev, struct device_attribute *attr,
537 struct sis5595_data *data = sis5595_update_device(dev);
538 return sprintf(buf, "%d\n", data->alarms);
540 static DEVICE_ATTR_RO(alarms);
542 static ssize_t alarm_show(struct device *dev, struct device_attribute *da,
545 struct sis5595_data *data = sis5595_update_device(dev);
546 int nr = to_sensor_dev_attr(da)->index;
547 return sprintf(buf, "%u\n", (data->alarms >> nr) & 1);
549 static SENSOR_DEVICE_ATTR_RO(in0_alarm, alarm, 0);
550 static SENSOR_DEVICE_ATTR_RO(in1_alarm, alarm, 1);
551 static SENSOR_DEVICE_ATTR_RO(in2_alarm, alarm, 2);
552 static SENSOR_DEVICE_ATTR_RO(in3_alarm, alarm, 3);
553 static SENSOR_DEVICE_ATTR_RO(in4_alarm, alarm, 15);
554 static SENSOR_DEVICE_ATTR_RO(fan1_alarm, alarm, 6);
555 static SENSOR_DEVICE_ATTR_RO(fan2_alarm, alarm, 7);
556 static SENSOR_DEVICE_ATTR_RO(temp1_alarm, alarm, 15);
558 static ssize_t name_show(struct device *dev, struct device_attribute *attr,
561 struct sis5595_data *data = dev_get_drvdata(dev);
562 return sprintf(buf, "%s\n", data->name);
564 static DEVICE_ATTR_RO(name);
566 static struct attribute *sis5595_attributes[] = {
567 &sensor_dev_attr_in0_input.dev_attr.attr,
568 &sensor_dev_attr_in0_min.dev_attr.attr,
569 &sensor_dev_attr_in0_max.dev_attr.attr,
570 &sensor_dev_attr_in0_alarm.dev_attr.attr,
571 &sensor_dev_attr_in1_input.dev_attr.attr,
572 &sensor_dev_attr_in1_min.dev_attr.attr,
573 &sensor_dev_attr_in1_max.dev_attr.attr,
574 &sensor_dev_attr_in1_alarm.dev_attr.attr,
575 &sensor_dev_attr_in2_input.dev_attr.attr,
576 &sensor_dev_attr_in2_min.dev_attr.attr,
577 &sensor_dev_attr_in2_max.dev_attr.attr,
578 &sensor_dev_attr_in2_alarm.dev_attr.attr,
579 &sensor_dev_attr_in3_input.dev_attr.attr,
580 &sensor_dev_attr_in3_min.dev_attr.attr,
581 &sensor_dev_attr_in3_max.dev_attr.attr,
582 &sensor_dev_attr_in3_alarm.dev_attr.attr,
584 &sensor_dev_attr_fan1_input.dev_attr.attr,
585 &sensor_dev_attr_fan1_min.dev_attr.attr,
586 &sensor_dev_attr_fan1_div.dev_attr.attr,
587 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
588 &sensor_dev_attr_fan2_input.dev_attr.attr,
589 &sensor_dev_attr_fan2_min.dev_attr.attr,
590 &sensor_dev_attr_fan2_div.dev_attr.attr,
591 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
593 &dev_attr_alarms.attr,
598 static const struct attribute_group sis5595_group = {
599 .attrs = sis5595_attributes,
602 static struct attribute *sis5595_attributes_in4[] = {
603 &sensor_dev_attr_in4_input.dev_attr.attr,
604 &sensor_dev_attr_in4_min.dev_attr.attr,
605 &sensor_dev_attr_in4_max.dev_attr.attr,
606 &sensor_dev_attr_in4_alarm.dev_attr.attr,
610 static const struct attribute_group sis5595_group_in4 = {
611 .attrs = sis5595_attributes_in4,
614 static struct attribute *sis5595_attributes_temp1[] = {
615 &dev_attr_temp1_input.attr,
616 &dev_attr_temp1_max.attr,
617 &dev_attr_temp1_max_hyst.attr,
618 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
622 static const struct attribute_group sis5595_group_temp1 = {
623 .attrs = sis5595_attributes_temp1,
626 /* Called when we have found a new SIS5595. */
627 static void sis5595_init_device(struct sis5595_data *data)
629 u8 config = sis5595_read_value(data, SIS5595_REG_CONFIG);
630 if (!(config & 0x01))
631 sis5595_write_value(data, SIS5595_REG_CONFIG,
632 (config & 0xf7) | 0x01);
635 /* This is called when the module is loaded */
636 static int sis5595_probe(struct platform_device *pdev)
640 struct sis5595_data *data;
641 struct resource *res;
644 /* Reserve the ISA region */
645 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
646 if (!devm_request_region(&pdev->dev, res->start, SIS5595_EXTENT,
650 data = devm_kzalloc(&pdev->dev, sizeof(struct sis5595_data),
655 mutex_init(&data->lock);
656 mutex_init(&data->update_lock);
657 data->addr = res->start;
658 data->name = DRIVER_NAME;
659 platform_set_drvdata(pdev, data);
662 * Check revision and pin registers to determine whether 4 or 5 voltages
664 data->revision = s_bridge->revision;
665 /* 4 voltages, 1 temp */
667 if (data->revision >= REV2MIN) {
668 pci_read_config_byte(s_bridge, SIS5595_PIN_REG, &val);
670 /* 5 voltages, no temps */
674 /* Initialize the SIS5595 chip */
675 sis5595_init_device(data);
677 /* A few vars need to be filled upon startup */
678 for (i = 0; i < 2; i++) {
679 data->fan_min[i] = sis5595_read_value(data,
680 SIS5595_REG_FAN_MIN(i));
683 /* Register sysfs hooks */
684 err = sysfs_create_group(&pdev->dev.kobj, &sis5595_group);
687 if (data->maxins == 4) {
688 err = sysfs_create_group(&pdev->dev.kobj, &sis5595_group_in4);
690 goto exit_remove_files;
692 err = sysfs_create_group(&pdev->dev.kobj, &sis5595_group_temp1);
694 goto exit_remove_files;
697 data->hwmon_dev = hwmon_device_register(&pdev->dev);
698 if (IS_ERR(data->hwmon_dev)) {
699 err = PTR_ERR(data->hwmon_dev);
700 goto exit_remove_files;
706 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group);
707 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_in4);
708 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_temp1);
712 static int sis5595_remove(struct platform_device *pdev)
714 struct sis5595_data *data = platform_get_drvdata(pdev);
716 hwmon_device_unregister(data->hwmon_dev);
717 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group);
718 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_in4);
719 sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_temp1);
724 static const struct pci_device_id sis5595_pci_ids[] = {
725 { PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_503) },
729 MODULE_DEVICE_TABLE(pci, sis5595_pci_ids);
731 static int blacklist[] = {
732 PCI_DEVICE_ID_SI_540,
733 PCI_DEVICE_ID_SI_550,
734 PCI_DEVICE_ID_SI_630,
735 PCI_DEVICE_ID_SI_645,
736 PCI_DEVICE_ID_SI_730,
737 PCI_DEVICE_ID_SI_735,
738 PCI_DEVICE_ID_SI_5511, /*
739 * 5513 chip has the 0008 device but
740 * that ID shows up in other chips so we
741 * use the 5511 ID for recognition
743 PCI_DEVICE_ID_SI_5597,
744 PCI_DEVICE_ID_SI_5598,
747 static int sis5595_device_add(unsigned short address)
749 struct resource res = {
751 .end = address + SIS5595_EXTENT - 1,
753 .flags = IORESOURCE_IO,
757 err = acpi_check_resource_conflict(&res);
761 pdev = platform_device_alloc(DRIVER_NAME, address);
764 pr_err("Device allocation failed\n");
768 err = platform_device_add_resources(pdev, &res, 1);
770 pr_err("Device resource addition failed (%d)\n", err);
771 goto exit_device_put;
774 err = platform_device_add(pdev);
776 pr_err("Device addition failed (%d)\n", err);
777 goto exit_device_put;
783 platform_device_put(pdev);
788 static struct platform_driver sis5595_driver = {
792 .probe = sis5595_probe,
793 .remove = sis5595_remove,
796 static int sis5595_pci_probe(struct pci_dev *dev,
797 const struct pci_device_id *id)
803 for (i = blacklist; *i != 0; i++) {
805 d = pci_get_device(PCI_VENDOR_ID_SI, *i, NULL);
808 "Looked for SIS5595 but found unsupported device %.4x\n",
815 force_addr &= ~(SIS5595_EXTENT - 1);
817 dev_warn(&dev->dev, "Forcing ISA address 0x%x\n", force_addr);
818 pci_write_config_word(dev, SIS5595_BASE_REG, force_addr);
821 err = pci_read_config_word(dev, SIS5595_BASE_REG, &address);
822 if (err != PCIBIOS_SUCCESSFUL) {
823 dev_err(&dev->dev, "Failed to read ISA address\n");
827 address &= ~(SIS5595_EXTENT - 1);
830 "Base address not set - upgrade BIOS or use force_addr=0xaddr\n");
833 if (force_addr && address != force_addr) {
834 /* doesn't work for some chips? */
835 dev_err(&dev->dev, "Failed to force ISA address\n");
839 err = pci_read_config_byte(dev, SIS5595_ENABLE_REG, &enable);
840 if (err != PCIBIOS_SUCCESSFUL) {
841 dev_err(&dev->dev, "Failed to read enable register\n");
844 if (!(enable & 0x80)) {
845 err = pci_write_config_byte(dev, SIS5595_ENABLE_REG, enable | 0x80);
846 if (err != PCIBIOS_SUCCESSFUL)
849 err = pci_read_config_byte(dev, SIS5595_ENABLE_REG, &enable);
850 if (err != PCIBIOS_SUCCESSFUL)
853 /* doesn't work for some chips! */
854 if (!(enable & 0x80))
858 if (platform_driver_register(&sis5595_driver)) {
859 dev_dbg(&dev->dev, "Failed to register sis5595 driver\n");
863 s_bridge = pci_dev_get(dev);
864 /* Sets global pdev as a side effect */
865 if (sis5595_device_add(address))
866 goto exit_unregister;
869 * Always return failure here. This is to allow other drivers to bind
870 * to this pci device. We don't really want to have control over the
871 * pci device, we only wanted to read as few register values from it.
876 dev_err(&dev->dev, "Failed to enable HWM device\n");
881 platform_driver_unregister(&sis5595_driver);
886 static struct pci_driver sis5595_pci_driver = {
888 .id_table = sis5595_pci_ids,
889 .probe = sis5595_pci_probe,
892 static int __init sm_sis5595_init(void)
894 return pci_register_driver(&sis5595_pci_driver);
897 static void __exit sm_sis5595_exit(void)
899 pci_unregister_driver(&sis5595_pci_driver);
900 if (s_bridge != NULL) {
901 platform_device_unregister(pdev);
902 platform_driver_unregister(&sis5595_driver);
903 pci_dev_put(s_bridge);
908 MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>");
909 MODULE_DESCRIPTION("SiS 5595 Sensor device");
910 MODULE_LICENSE("GPL");
912 module_init(sm_sis5595_init);
913 module_exit(sm_sis5595_exit);