Thomas Gleixner | 74ba920 | 2019-05-20 09:19:02 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 3 | * sis5595.c - Part of lm_sensors, Linux kernel modules |
| 4 | * for hardware monitoring |
| 5 | * |
| 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 |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 10 | * the help of Jean Delvare <jdelvare@suse.de> |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 11 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
| 13 | /* |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 14 | * SiS southbridge has a LM78-like chip integrated on the same IC. |
| 15 | * This driver is a customized copy of lm78.c |
| 16 | * |
| 17 | * Supports following revisions: |
| 18 | * Version PCI ID PCI Revision |
| 19 | * 1 1039/0008 AF or less |
| 20 | * 2 1039/0008 B0 or greater |
| 21 | * |
| 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. |
| 25 | * |
| 26 | * NOT SUPPORTED PCI ID BLACKLIST PCI ID |
| 27 | * 540 0008 0540 |
| 28 | * 550 0008 0550 |
| 29 | * 5513 0008 5511 |
| 30 | * 5581 0008 5597 |
| 31 | * 5582 0008 5597 |
| 32 | * 5597 0008 5597 |
| 33 | * 5598 0008 5597/5598 |
| 34 | * 630 0008 0630 |
| 35 | * 645 0008 0645 |
| 36 | * 730 0008 0730 |
| 37 | * 735 0008 0735 |
| 38 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Joe Perches | 4b2515d | 2010-10-20 06:51:47 +0000 | [diff] [blame] | 40 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/module.h> |
| 43 | #include <linux/slab.h> |
| 44 | #include <linux/ioport.h> |
| 45 | #include <linux/pci.h> |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 46 | #include <linux/platform_device.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 47 | #include <linux/hwmon.h> |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 48 | #include <linux/hwmon-sysfs.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 49 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <linux/init.h> |
Dominik Hackl | ff32409 | 2005-05-16 18:12:18 +0200 | [diff] [blame] | 51 | #include <linux/jiffies.h> |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 52 | #include <linux/mutex.h> |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 53 | #include <linux/sysfs.h> |
Jean Delvare | b9acb64 | 2009-01-07 16:37:35 +0100 | [diff] [blame] | 54 | #include <linux/acpi.h> |
H Hartley Sweeten | 6055fae | 2009-09-15 17:18:13 +0200 | [diff] [blame] | 55 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 57 | /* |
| 58 | * If force_addr is set to anything different from 0, we forcibly enable |
| 59 | * the device at the given address. |
| 60 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | static u16 force_addr; |
| 62 | module_param(force_addr, ushort, 0); |
| 63 | MODULE_PARM_DESC(force_addr, |
| 64 | "Initialize the base address of the sensors"); |
| 65 | |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 66 | static struct platform_device *pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | /* Many SIS5595 constants specified below */ |
| 69 | |
| 70 | /* Length of ISA address segment */ |
| 71 | #define SIS5595_EXTENT 8 |
| 72 | /* PCI Config Registers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #define SIS5595_BASE_REG 0x68 |
| 74 | #define SIS5595_PIN_REG 0x7A |
| 75 | #define SIS5595_ENABLE_REG 0x7B |
| 76 | |
| 77 | /* Where are the ISA address/data registers relative to the base address */ |
| 78 | #define SIS5595_ADDR_REG_OFFSET 5 |
| 79 | #define SIS5595_DATA_REG_OFFSET 6 |
| 80 | |
| 81 | /* The SIS5595 registers */ |
| 82 | #define SIS5595_REG_IN_MAX(nr) (0x2b + (nr) * 2) |
| 83 | #define SIS5595_REG_IN_MIN(nr) (0x2c + (nr) * 2) |
| 84 | #define SIS5595_REG_IN(nr) (0x20 + (nr)) |
| 85 | |
| 86 | #define SIS5595_REG_FAN_MIN(nr) (0x3b + (nr)) |
| 87 | #define SIS5595_REG_FAN(nr) (0x28 + (nr)) |
| 88 | |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 89 | /* |
| 90 | * On the first version of the chip, the temp registers are separate. |
| 91 | * On the second version, |
| 92 | * TEMP pin is shared with IN4, configured in PCI register 0x7A. |
| 93 | * The registers are the same as well. |
| 94 | * OVER and HYST are really MAX and MIN. |
| 95 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
| 97 | #define REV2MIN 0xb0 |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 98 | #define SIS5595_REG_TEMP (((data->revision) >= REV2MIN) ? \ |
| 99 | SIS5595_REG_IN(4) : 0x27) |
| 100 | #define SIS5595_REG_TEMP_OVER (((data->revision) >= REV2MIN) ? \ |
| 101 | SIS5595_REG_IN_MAX(4) : 0x39) |
| 102 | #define SIS5595_REG_TEMP_HYST (((data->revision) >= REV2MIN) ? \ |
| 103 | SIS5595_REG_IN_MIN(4) : 0x3a) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
| 105 | #define SIS5595_REG_CONFIG 0x40 |
| 106 | #define SIS5595_REG_ALARM1 0x41 |
| 107 | #define SIS5595_REG_ALARM2 0x42 |
| 108 | #define SIS5595_REG_FANDIV 0x47 |
| 109 | |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 110 | /* |
| 111 | * Conversions. Limit checking is only done on the TO_REG |
| 112 | * variants. |
| 113 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 115 | /* |
| 116 | * IN: mV, (0V to 4.08V) |
| 117 | * REG: 16mV/bit |
| 118 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | static inline u8 IN_TO_REG(unsigned long val) |
| 120 | { |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 121 | unsigned long nval = clamp_val(val, 0, 4080); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | return (nval + 8) / 16; |
| 123 | } |
| 124 | #define IN_FROM_REG(val) ((val) * 16) |
| 125 | |
| 126 | static inline u8 FAN_TO_REG(long rpm, int div) |
| 127 | { |
| 128 | if (rpm <= 0) |
| 129 | return 255; |
Dan Carpenter | 3806b45 | 2013-12-12 08:05:33 +0100 | [diff] [blame] | 130 | if (rpm > 1350000) |
| 131 | return 1; |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 132 | return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | static inline int FAN_FROM_REG(u8 val, int div) |
| 136 | { |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 137 | return val == 0 ? -1 : val == 255 ? 0 : 1350000 / (val * div); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 140 | /* |
| 141 | * TEMP: mC (-54.12C to +157.53C) |
| 142 | * REG: 0.83C/bit + 52.12, two's complement |
| 143 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | static inline int TEMP_FROM_REG(s8 val) |
| 145 | { |
| 146 | return val * 830 + 52120; |
| 147 | } |
Axel Lin | cc33654 | 2014-07-31 22:27:04 +0800 | [diff] [blame] | 148 | static inline s8 TEMP_TO_REG(long val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 150 | int nval = clamp_val(val, -54120, 157530) ; |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 151 | return nval < 0 ? (nval - 5212 - 415) / 830 : (nval - 5212 + 415) / 830; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 154 | /* |
| 155 | * FAN DIV: 1, 2, 4, or 8 (defaults to 2) |
| 156 | * REG: 0, 1, 2, or 3 (respectively) (defaults to 1) |
| 157 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | static inline u8 DIV_TO_REG(int val) |
| 159 | { |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 160 | return val == 8 ? 3 : val == 4 ? 2 : val == 1 ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | } |
| 162 | #define DIV_FROM_REG(val) (1 << (val)) |
| 163 | |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 164 | /* |
| 165 | * For each registered chip, we need to keep some data in memory. |
| 166 | * The structure is dynamically allocated. |
| 167 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | struct sis5595_data { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 169 | unsigned short addr; |
| 170 | const char *name; |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 171 | struct device *hwmon_dev; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 172 | struct mutex lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 174 | struct mutex update_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | char valid; /* !=0 if following fields are valid */ |
| 176 | unsigned long last_updated; /* In jiffies */ |
| 177 | char maxins; /* == 3 if temp enabled, otherwise == 4 */ |
| 178 | u8 revision; /* Reg. value */ |
| 179 | |
| 180 | u8 in[5]; /* Register value */ |
| 181 | u8 in_max[5]; /* Register value */ |
| 182 | u8 in_min[5]; /* Register value */ |
| 183 | u8 fan[2]; /* Register value */ |
| 184 | u8 fan_min[2]; /* Register value */ |
| 185 | s8 temp; /* Register value */ |
| 186 | s8 temp_over; /* Register value */ |
| 187 | s8 temp_hyst; /* Register value */ |
| 188 | u8 fan_div[2]; /* Register encoding, shifted right */ |
| 189 | u16 alarms; /* Register encoding, combined */ |
| 190 | }; |
| 191 | |
| 192 | static struct pci_dev *s_bridge; /* pointer to the (only) sis5595 */ |
| 193 | |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 194 | static int sis5595_probe(struct platform_device *pdev); |
Bill Pemberton | 281dfd0 | 2012-11-19 13:25:51 -0500 | [diff] [blame] | 195 | static int sis5595_remove(struct platform_device *pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 197 | static int sis5595_read_value(struct sis5595_data *data, u8 reg); |
| 198 | static void sis5595_write_value(struct sis5595_data *data, u8 reg, u8 value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | static struct sis5595_data *sis5595_update_device(struct device *dev); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 200 | static void sis5595_init_device(struct sis5595_data *data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 202 | static struct platform_driver sis5595_driver = { |
Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 203 | .driver = { |
Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 204 | .name = "sis5595", |
| 205 | }, |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 206 | .probe = sis5595_probe, |
Bill Pemberton | 9e5e9b7 | 2012-11-19 13:21:20 -0500 | [diff] [blame] | 207 | .remove = sis5595_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | }; |
| 209 | |
| 210 | /* 4 Voltages */ |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 211 | static ssize_t in_show(struct device *dev, struct device_attribute *da, |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 212 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | { |
| 214 | struct sis5595_data *data = sis5595_update_device(dev); |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 215 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 216 | int nr = attr->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | return sprintf(buf, "%d\n", IN_FROM_REG(data->in[nr])); |
| 218 | } |
| 219 | |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 220 | static ssize_t in_min_show(struct device *dev, struct device_attribute *da, |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 221 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | { |
| 223 | struct sis5595_data *data = sis5595_update_device(dev); |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 224 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 225 | int nr = attr->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return sprintf(buf, "%d\n", IN_FROM_REG(data->in_min[nr])); |
| 227 | } |
| 228 | |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 229 | static ssize_t in_max_show(struct device *dev, struct device_attribute *da, |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 230 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
| 232 | struct sis5595_data *data = sis5595_update_device(dev); |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 233 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 234 | int nr = attr->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | return sprintf(buf, "%d\n", IN_FROM_REG(data->in_max[nr])); |
| 236 | } |
| 237 | |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 238 | static ssize_t in_min_store(struct device *dev, struct device_attribute *da, |
| 239 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 241 | struct sis5595_data *data = dev_get_drvdata(dev); |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 242 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 243 | int nr = attr->index; |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 244 | unsigned long val; |
| 245 | int err; |
| 246 | |
| 247 | err = kstrtoul(buf, 10, &val); |
| 248 | if (err) |
| 249 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 251 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | data->in_min[nr] = IN_TO_REG(val); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 253 | sis5595_write_value(data, SIS5595_REG_IN_MIN(nr), data->in_min[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 254 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | return count; |
| 256 | } |
| 257 | |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 258 | static ssize_t in_max_store(struct device *dev, struct device_attribute *da, |
| 259 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 261 | struct sis5595_data *data = dev_get_drvdata(dev); |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 262 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 263 | int nr = attr->index; |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 264 | unsigned long val; |
| 265 | int err; |
| 266 | |
| 267 | err = kstrtoul(buf, 10, &val); |
| 268 | if (err) |
| 269 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 271 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | data->in_max[nr] = IN_TO_REG(val); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 273 | sis5595_write_value(data, SIS5595_REG_IN_MAX(nr), data->in_max[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 274 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | return count; |
| 276 | } |
| 277 | |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 278 | static SENSOR_DEVICE_ATTR_RO(in0_input, in, 0); |
| 279 | static SENSOR_DEVICE_ATTR_RW(in0_min, in_min, 0); |
| 280 | static SENSOR_DEVICE_ATTR_RW(in0_max, in_max, 0); |
| 281 | static SENSOR_DEVICE_ATTR_RO(in1_input, in, 1); |
| 282 | static SENSOR_DEVICE_ATTR_RW(in1_min, in_min, 1); |
| 283 | static SENSOR_DEVICE_ATTR_RW(in1_max, in_max, 1); |
| 284 | static SENSOR_DEVICE_ATTR_RO(in2_input, in, 2); |
| 285 | static SENSOR_DEVICE_ATTR_RW(in2_min, in_min, 2); |
| 286 | static SENSOR_DEVICE_ATTR_RW(in2_max, in_max, 2); |
| 287 | static SENSOR_DEVICE_ATTR_RO(in3_input, in, 3); |
| 288 | static SENSOR_DEVICE_ATTR_RW(in3_min, in_min, 3); |
| 289 | static SENSOR_DEVICE_ATTR_RW(in3_max, in_max, 3); |
| 290 | static SENSOR_DEVICE_ATTR_RO(in4_input, in, 4); |
| 291 | static SENSOR_DEVICE_ATTR_RW(in4_min, in_min, 4); |
| 292 | static SENSOR_DEVICE_ATTR_RW(in4_max, in_max, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
| 294 | /* Temperature */ |
Julia Lawall | feaf8bd | 2016-12-22 13:05:05 +0100 | [diff] [blame] | 295 | static ssize_t temp1_input_show(struct device *dev, |
| 296 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | { |
| 298 | struct sis5595_data *data = sis5595_update_device(dev); |
| 299 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp)); |
| 300 | } |
| 301 | |
Julia Lawall | feaf8bd | 2016-12-22 13:05:05 +0100 | [diff] [blame] | 302 | static ssize_t temp1_max_show(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 303 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | { |
| 305 | struct sis5595_data *data = sis5595_update_device(dev); |
| 306 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_over)); |
| 307 | } |
| 308 | |
Julia Lawall | feaf8bd | 2016-12-22 13:05:05 +0100 | [diff] [blame] | 309 | static ssize_t temp1_max_store(struct device *dev, |
| 310 | struct device_attribute *attr, const char *buf, |
| 311 | size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 313 | struct sis5595_data *data = dev_get_drvdata(dev); |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 314 | long val; |
| 315 | int err; |
| 316 | |
| 317 | err = kstrtol(buf, 10, &val); |
| 318 | if (err) |
| 319 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 321 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | data->temp_over = TEMP_TO_REG(val); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 323 | sis5595_write_value(data, SIS5595_REG_TEMP_OVER, data->temp_over); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 324 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | return count; |
| 326 | } |
| 327 | |
Julia Lawall | feaf8bd | 2016-12-22 13:05:05 +0100 | [diff] [blame] | 328 | static ssize_t temp1_max_hyst_show(struct device *dev, |
| 329 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | { |
| 331 | struct sis5595_data *data = sis5595_update_device(dev); |
| 332 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_hyst)); |
| 333 | } |
| 334 | |
Julia Lawall | feaf8bd | 2016-12-22 13:05:05 +0100 | [diff] [blame] | 335 | static ssize_t temp1_max_hyst_store(struct device *dev, |
| 336 | struct device_attribute *attr, |
| 337 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 339 | struct sis5595_data *data = dev_get_drvdata(dev); |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 340 | long val; |
| 341 | int err; |
| 342 | |
| 343 | err = kstrtol(buf, 10, &val); |
| 344 | if (err) |
| 345 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 347 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | data->temp_hyst = TEMP_TO_REG(val); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 349 | sis5595_write_value(data, SIS5595_REG_TEMP_HYST, data->temp_hyst); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 350 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | return count; |
| 352 | } |
| 353 | |
Julia Lawall | feaf8bd | 2016-12-22 13:05:05 +0100 | [diff] [blame] | 354 | static DEVICE_ATTR_RO(temp1_input); |
| 355 | static DEVICE_ATTR_RW(temp1_max); |
| 356 | static DEVICE_ATTR_RW(temp1_max_hyst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | |
| 358 | /* 2 Fans */ |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 359 | static ssize_t fan_show(struct device *dev, struct device_attribute *da, |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 360 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | { |
| 362 | struct sis5595_data *data = sis5595_update_device(dev); |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 363 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 364 | int nr = attr->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr], |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 366 | DIV_FROM_REG(data->fan_div[nr]))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | } |
| 368 | |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 369 | static ssize_t fan_min_show(struct device *dev, struct device_attribute *da, |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 370 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | { |
| 372 | struct sis5595_data *data = sis5595_update_device(dev); |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 373 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 374 | int nr = attr->index; |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 375 | return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr], |
| 376 | DIV_FROM_REG(data->fan_div[nr]))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 379 | static ssize_t fan_min_store(struct device *dev, struct device_attribute *da, |
| 380 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 382 | struct sis5595_data *data = dev_get_drvdata(dev); |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 383 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 384 | int nr = attr->index; |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 385 | unsigned long val; |
| 386 | int err; |
| 387 | |
| 388 | err = kstrtoul(buf, 10, &val); |
| 389 | if (err) |
| 390 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 392 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr])); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 394 | sis5595_write_value(data, SIS5595_REG_FAN_MIN(nr), data->fan_min[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 395 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | return count; |
| 397 | } |
| 398 | |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 399 | static ssize_t fan_div_show(struct device *dev, struct device_attribute *da, |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 400 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | { |
| 402 | struct sis5595_data *data = sis5595_update_device(dev); |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 403 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 404 | int nr = attr->index; |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 405 | return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | } |
| 407 | |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 408 | /* |
| 409 | * Note: we save and restore the fan minimum here, because its value is |
| 410 | * determined in part by the fan divisor. This follows the principle of |
| 411 | * least surprise; the user doesn't expect the fan minimum to change just |
| 412 | * because the divisor changed. |
| 413 | */ |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 414 | static ssize_t fan_div_store(struct device *dev, struct device_attribute *da, |
| 415 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 417 | struct sis5595_data *data = dev_get_drvdata(dev); |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 418 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 419 | int nr = attr->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | unsigned long min; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | int reg; |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 422 | unsigned long val; |
| 423 | int err; |
| 424 | |
| 425 | err = kstrtoul(buf, 10, &val); |
| 426 | if (err) |
| 427 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 429 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | min = FAN_FROM_REG(data->fan_min[nr], |
| 431 | DIV_FROM_REG(data->fan_div[nr])); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 432 | reg = sis5595_read_value(data, SIS5595_REG_FANDIV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | |
| 434 | switch (val) { |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 435 | case 1: |
| 436 | data->fan_div[nr] = 0; |
| 437 | break; |
| 438 | case 2: |
| 439 | data->fan_div[nr] = 1; |
| 440 | break; |
| 441 | case 4: |
| 442 | data->fan_div[nr] = 2; |
| 443 | break; |
| 444 | case 8: |
| 445 | data->fan_div[nr] = 3; |
| 446 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | default: |
Guenter Roeck | b55f375 | 2013-01-10 10:01:24 -0800 | [diff] [blame] | 448 | dev_err(dev, |
| 449 | "fan_div value %ld not supported. Choose one of 1, 2, 4 or 8!\n", |
| 450 | val); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 451 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | return -EINVAL; |
| 453 | } |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 454 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | switch (nr) { |
| 456 | case 0: |
| 457 | reg = (reg & 0xcf) | (data->fan_div[nr] << 4); |
| 458 | break; |
| 459 | case 1: |
| 460 | reg = (reg & 0x3f) | (data->fan_div[nr] << 6); |
| 461 | break; |
| 462 | } |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 463 | sis5595_write_value(data, SIS5595_REG_FANDIV, reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | data->fan_min[nr] = |
| 465 | FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr])); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 466 | sis5595_write_value(data, SIS5595_REG_FAN_MIN(nr), data->fan_min[nr]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 467 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | return count; |
| 469 | } |
| 470 | |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 471 | static SENSOR_DEVICE_ATTR_RO(fan1_input, fan, 0); |
| 472 | static SENSOR_DEVICE_ATTR_RW(fan1_min, fan_min, 0); |
| 473 | static SENSOR_DEVICE_ATTR_RW(fan1_div, fan_div, 0); |
| 474 | static SENSOR_DEVICE_ATTR_RO(fan2_input, fan, 1); |
| 475 | static SENSOR_DEVICE_ATTR_RW(fan2_min, fan_min, 1); |
| 476 | static SENSOR_DEVICE_ATTR_RW(fan2_div, fan_div, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | /* Alarms */ |
Julia Lawall | feaf8bd | 2016-12-22 13:05:05 +0100 | [diff] [blame] | 479 | static ssize_t alarms_show(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 480 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | { |
| 482 | struct sis5595_data *data = sis5595_update_device(dev); |
| 483 | return sprintf(buf, "%d\n", data->alarms); |
| 484 | } |
Julia Lawall | feaf8bd | 2016-12-22 13:05:05 +0100 | [diff] [blame] | 485 | static DEVICE_ATTR_RO(alarms); |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 486 | |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 487 | static ssize_t alarm_show(struct device *dev, struct device_attribute *da, |
Ivo Manca | 5c726b3 | 2007-10-15 20:50:53 +0200 | [diff] [blame] | 488 | char *buf) |
| 489 | { |
| 490 | struct sis5595_data *data = sis5595_update_device(dev); |
| 491 | int nr = to_sensor_dev_attr(da)->index; |
| 492 | return sprintf(buf, "%u\n", (data->alarms >> nr) & 1); |
| 493 | } |
Guenter Roeck | 60a9c3f | 2019-01-22 14:28:50 -0800 | [diff] [blame] | 494 | static SENSOR_DEVICE_ATTR_RO(in0_alarm, alarm, 0); |
| 495 | static SENSOR_DEVICE_ATTR_RO(in1_alarm, alarm, 1); |
| 496 | static SENSOR_DEVICE_ATTR_RO(in2_alarm, alarm, 2); |
| 497 | static SENSOR_DEVICE_ATTR_RO(in3_alarm, alarm, 3); |
| 498 | static SENSOR_DEVICE_ATTR_RO(in4_alarm, alarm, 15); |
| 499 | static SENSOR_DEVICE_ATTR_RO(fan1_alarm, alarm, 6); |
| 500 | static SENSOR_DEVICE_ATTR_RO(fan2_alarm, alarm, 7); |
| 501 | static SENSOR_DEVICE_ATTR_RO(temp1_alarm, alarm, 15); |
Ivo Manca | 5c726b3 | 2007-10-15 20:50:53 +0200 | [diff] [blame] | 502 | |
Julia Lawall | feaf8bd | 2016-12-22 13:05:05 +0100 | [diff] [blame] | 503 | static ssize_t name_show(struct device *dev, struct device_attribute *attr, |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 504 | char *buf) |
| 505 | { |
| 506 | struct sis5595_data *data = dev_get_drvdata(dev); |
| 507 | return sprintf(buf, "%s\n", data->name); |
| 508 | } |
Julia Lawall | feaf8bd | 2016-12-22 13:05:05 +0100 | [diff] [blame] | 509 | static DEVICE_ATTR_RO(name); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 510 | |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 511 | static struct attribute *sis5595_attributes[] = { |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 512 | &sensor_dev_attr_in0_input.dev_attr.attr, |
| 513 | &sensor_dev_attr_in0_min.dev_attr.attr, |
| 514 | &sensor_dev_attr_in0_max.dev_attr.attr, |
Ivo Manca | 5c726b3 | 2007-10-15 20:50:53 +0200 | [diff] [blame] | 515 | &sensor_dev_attr_in0_alarm.dev_attr.attr, |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 516 | &sensor_dev_attr_in1_input.dev_attr.attr, |
| 517 | &sensor_dev_attr_in1_min.dev_attr.attr, |
| 518 | &sensor_dev_attr_in1_max.dev_attr.attr, |
Ivo Manca | 5c726b3 | 2007-10-15 20:50:53 +0200 | [diff] [blame] | 519 | &sensor_dev_attr_in1_alarm.dev_attr.attr, |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 520 | &sensor_dev_attr_in2_input.dev_attr.attr, |
| 521 | &sensor_dev_attr_in2_min.dev_attr.attr, |
| 522 | &sensor_dev_attr_in2_max.dev_attr.attr, |
Ivo Manca | 5c726b3 | 2007-10-15 20:50:53 +0200 | [diff] [blame] | 523 | &sensor_dev_attr_in2_alarm.dev_attr.attr, |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 524 | &sensor_dev_attr_in3_input.dev_attr.attr, |
| 525 | &sensor_dev_attr_in3_min.dev_attr.attr, |
| 526 | &sensor_dev_attr_in3_max.dev_attr.attr, |
Ivo Manca | 5c726b3 | 2007-10-15 20:50:53 +0200 | [diff] [blame] | 527 | &sensor_dev_attr_in3_alarm.dev_attr.attr, |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 528 | |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 529 | &sensor_dev_attr_fan1_input.dev_attr.attr, |
| 530 | &sensor_dev_attr_fan1_min.dev_attr.attr, |
| 531 | &sensor_dev_attr_fan1_div.dev_attr.attr, |
Ivo Manca | 5c726b3 | 2007-10-15 20:50:53 +0200 | [diff] [blame] | 532 | &sensor_dev_attr_fan1_alarm.dev_attr.attr, |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 533 | &sensor_dev_attr_fan2_input.dev_attr.attr, |
| 534 | &sensor_dev_attr_fan2_min.dev_attr.attr, |
| 535 | &sensor_dev_attr_fan2_div.dev_attr.attr, |
Ivo Manca | 5c726b3 | 2007-10-15 20:50:53 +0200 | [diff] [blame] | 536 | &sensor_dev_attr_fan2_alarm.dev_attr.attr, |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 537 | |
| 538 | &dev_attr_alarms.attr, |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 539 | &dev_attr_name.attr, |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 540 | NULL |
| 541 | }; |
| 542 | |
| 543 | static const struct attribute_group sis5595_group = { |
| 544 | .attrs = sis5595_attributes, |
| 545 | }; |
| 546 | |
Ivo Manca | 76e6386 | 2007-10-15 13:27:13 +0200 | [diff] [blame] | 547 | static struct attribute *sis5595_attributes_in4[] = { |
Jean Delvare | 1f5f48d | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 548 | &sensor_dev_attr_in4_input.dev_attr.attr, |
| 549 | &sensor_dev_attr_in4_min.dev_attr.attr, |
| 550 | &sensor_dev_attr_in4_max.dev_attr.attr, |
Ivo Manca | 5c726b3 | 2007-10-15 20:50:53 +0200 | [diff] [blame] | 551 | &sensor_dev_attr_in4_alarm.dev_attr.attr, |
Ivo Manca | 76e6386 | 2007-10-15 13:27:13 +0200 | [diff] [blame] | 552 | NULL |
| 553 | }; |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 554 | |
Ivo Manca | 76e6386 | 2007-10-15 13:27:13 +0200 | [diff] [blame] | 555 | static const struct attribute_group sis5595_group_in4 = { |
| 556 | .attrs = sis5595_attributes_in4, |
| 557 | }; |
| 558 | |
| 559 | static struct attribute *sis5595_attributes_temp1[] = { |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 560 | &dev_attr_temp1_input.attr, |
| 561 | &dev_attr_temp1_max.attr, |
| 562 | &dev_attr_temp1_max_hyst.attr, |
Ivo Manca | 5c726b3 | 2007-10-15 20:50:53 +0200 | [diff] [blame] | 563 | &sensor_dev_attr_temp1_alarm.dev_attr.attr, |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 564 | NULL |
| 565 | }; |
| 566 | |
Ivo Manca | 76e6386 | 2007-10-15 13:27:13 +0200 | [diff] [blame] | 567 | static const struct attribute_group sis5595_group_temp1 = { |
| 568 | .attrs = sis5595_attributes_temp1, |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 569 | }; |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | /* This is called when the module is loaded */ |
Bill Pemberton | 6c931ae | 2012-11-19 13:22:35 -0500 | [diff] [blame] | 572 | static int sis5595_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | { |
| 574 | int err = 0; |
| 575 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | struct sis5595_data *data; |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 577 | struct resource *res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | char val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | /* Reserve the ISA region */ |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 581 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); |
Guenter Roeck | 5d224ad | 2012-06-02 11:20:23 -0700 | [diff] [blame] | 582 | if (!devm_request_region(&pdev->dev, res->start, SIS5595_EXTENT, |
| 583 | sis5595_driver.driver.name)) |
| 584 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
Guenter Roeck | 5d224ad | 2012-06-02 11:20:23 -0700 | [diff] [blame] | 586 | data = devm_kzalloc(&pdev->dev, sizeof(struct sis5595_data), |
| 587 | GFP_KERNEL); |
| 588 | if (!data) |
| 589 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 591 | mutex_init(&data->lock); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 592 | mutex_init(&data->update_lock); |
| 593 | data->addr = res->start; |
| 594 | data->name = "sis5595"; |
| 595 | platform_set_drvdata(pdev, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 597 | /* |
| 598 | * Check revision and pin registers to determine whether 4 or 5 voltages |
| 599 | */ |
Auke Kok | 7b6d1f0 | 2007-08-27 16:17:01 -0700 | [diff] [blame] | 600 | data->revision = s_bridge->revision; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | /* 4 voltages, 1 temp */ |
| 602 | data->maxins = 3; |
| 603 | if (data->revision >= REV2MIN) { |
| 604 | pci_read_config_byte(s_bridge, SIS5595_PIN_REG, &val); |
| 605 | if (!(val & 0x80)) |
| 606 | /* 5 voltages, no temps */ |
| 607 | data->maxins = 4; |
| 608 | } |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | /* Initialize the SIS5595 chip */ |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 611 | sis5595_init_device(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | |
| 613 | /* A few vars need to be filled upon startup */ |
| 614 | for (i = 0; i < 2; i++) { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 615 | data->fan_min[i] = sis5595_read_value(data, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | SIS5595_REG_FAN_MIN(i)); |
| 617 | } |
| 618 | |
| 619 | /* Register sysfs hooks */ |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 620 | err = sysfs_create_group(&pdev->dev.kobj, &sis5595_group); |
| 621 | if (err) |
Guenter Roeck | 5d224ad | 2012-06-02 11:20:23 -0700 | [diff] [blame] | 622 | return err; |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 623 | if (data->maxins == 4) { |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 624 | err = sysfs_create_group(&pdev->dev.kobj, &sis5595_group_in4); |
| 625 | if (err) |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 626 | goto exit_remove_files; |
| 627 | } else { |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 628 | err = sysfs_create_group(&pdev->dev.kobj, &sis5595_group_temp1); |
| 629 | if (err) |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 630 | goto exit_remove_files; |
| 631 | } |
| 632 | |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 633 | data->hwmon_dev = hwmon_device_register(&pdev->dev); |
| 634 | if (IS_ERR(data->hwmon_dev)) { |
| 635 | err = PTR_ERR(data->hwmon_dev); |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 636 | goto exit_remove_files; |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 637 | } |
| 638 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | return 0; |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 640 | |
Jean Delvare | a5ebe66 | 2006-09-24 21:24:46 +0200 | [diff] [blame] | 641 | exit_remove_files: |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 642 | sysfs_remove_group(&pdev->dev.kobj, &sis5595_group); |
Ivo Manca | 76e6386 | 2007-10-15 13:27:13 +0200 | [diff] [blame] | 643 | sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_in4); |
| 644 | sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_temp1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | return err; |
| 646 | } |
| 647 | |
Bill Pemberton | 281dfd0 | 2012-11-19 13:25:51 -0500 | [diff] [blame] | 648 | static int sis5595_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 650 | struct sis5595_data *data = platform_get_drvdata(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 652 | hwmon_device_unregister(data->hwmon_dev); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 653 | sysfs_remove_group(&pdev->dev.kobj, &sis5595_group); |
Ivo Manca | 76e6386 | 2007-10-15 13:27:13 +0200 | [diff] [blame] | 654 | sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_in4); |
| 655 | sysfs_remove_group(&pdev->dev.kobj, &sis5595_group_temp1); |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | return 0; |
| 658 | } |
| 659 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | /* ISA access must be locked explicitly. */ |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 661 | static int sis5595_read_value(struct sis5595_data *data, u8 reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | { |
| 663 | int res; |
| 664 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 665 | mutex_lock(&data->lock); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 666 | outb_p(reg, data->addr + SIS5595_ADDR_REG_OFFSET); |
| 667 | res = inb_p(data->addr + SIS5595_DATA_REG_OFFSET); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 668 | mutex_unlock(&data->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | return res; |
| 670 | } |
| 671 | |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 672 | static void sis5595_write_value(struct sis5595_data *data, u8 reg, u8 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | { |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 674 | mutex_lock(&data->lock); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 675 | outb_p(reg, data->addr + SIS5595_ADDR_REG_OFFSET); |
| 676 | outb_p(value, data->addr + SIS5595_DATA_REG_OFFSET); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 677 | mutex_unlock(&data->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | /* Called when we have found a new SIS5595. */ |
Bill Pemberton | 6c931ae | 2012-11-19 13:22:35 -0500 | [diff] [blame] | 681 | static void sis5595_init_device(struct sis5595_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 683 | u8 config = sis5595_read_value(data, SIS5595_REG_CONFIG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | if (!(config & 0x01)) |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 685 | sis5595_write_value(data, SIS5595_REG_CONFIG, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | (config & 0xf7) | 0x01); |
| 687 | } |
| 688 | |
| 689 | static struct sis5595_data *sis5595_update_device(struct device *dev) |
| 690 | { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 691 | struct sis5595_data *data = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | int i; |
| 693 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 694 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | |
| 696 | if (time_after(jiffies, data->last_updated + HZ + HZ / 2) |
| 697 | || !data->valid) { |
| 698 | |
| 699 | for (i = 0; i <= data->maxins; i++) { |
| 700 | data->in[i] = |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 701 | sis5595_read_value(data, SIS5595_REG_IN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | data->in_min[i] = |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 703 | sis5595_read_value(data, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | SIS5595_REG_IN_MIN(i)); |
| 705 | data->in_max[i] = |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 706 | sis5595_read_value(data, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | SIS5595_REG_IN_MAX(i)); |
| 708 | } |
| 709 | for (i = 0; i < 2; i++) { |
| 710 | data->fan[i] = |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 711 | sis5595_read_value(data, SIS5595_REG_FAN(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | data->fan_min[i] = |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 713 | sis5595_read_value(data, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | SIS5595_REG_FAN_MIN(i)); |
| 715 | } |
| 716 | if (data->maxins == 3) { |
| 717 | data->temp = |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 718 | sis5595_read_value(data, SIS5595_REG_TEMP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | data->temp_over = |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 720 | sis5595_read_value(data, SIS5595_REG_TEMP_OVER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | data->temp_hyst = |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 722 | sis5595_read_value(data, SIS5595_REG_TEMP_HYST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | } |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 724 | i = sis5595_read_value(data, SIS5595_REG_FANDIV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | data->fan_div[0] = (i >> 4) & 0x03; |
| 726 | data->fan_div[1] = i >> 6; |
| 727 | data->alarms = |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 728 | sis5595_read_value(data, SIS5595_REG_ALARM1) | |
| 729 | (sis5595_read_value(data, SIS5595_REG_ALARM2) << 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | data->last_updated = jiffies; |
| 731 | data->valid = 1; |
| 732 | } |
| 733 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 734 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | |
| 736 | return data; |
| 737 | } |
| 738 | |
Jingoo Han | cd9bb05 | 2013-12-03 07:10:29 +0000 | [diff] [blame] | 739 | static const struct pci_device_id sis5595_pci_ids[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | { PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_503) }, |
| 741 | { 0, } |
| 742 | }; |
| 743 | |
| 744 | MODULE_DEVICE_TABLE(pci, sis5595_pci_ids); |
| 745 | |
Bill Pemberton | a597724 | 2012-11-19 13:24:37 -0500 | [diff] [blame] | 746 | static int blacklist[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | PCI_DEVICE_ID_SI_540, |
| 748 | PCI_DEVICE_ID_SI_550, |
| 749 | PCI_DEVICE_ID_SI_630, |
| 750 | PCI_DEVICE_ID_SI_645, |
| 751 | PCI_DEVICE_ID_SI_730, |
| 752 | PCI_DEVICE_ID_SI_735, |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 753 | PCI_DEVICE_ID_SI_5511, /* |
| 754 | * 5513 chip has the 0008 device but |
| 755 | * that ID shows up in other chips so we |
| 756 | * use the 5511 ID for recognition |
| 757 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | PCI_DEVICE_ID_SI_5597, |
| 759 | PCI_DEVICE_ID_SI_5598, |
| 760 | 0 }; |
| 761 | |
Bill Pemberton | 6c931ae | 2012-11-19 13:22:35 -0500 | [diff] [blame] | 762 | static int sis5595_device_add(unsigned short address) |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 763 | { |
| 764 | struct resource res = { |
| 765 | .start = address, |
| 766 | .end = address + SIS5595_EXTENT - 1, |
| 767 | .name = "sis5595", |
| 768 | .flags = IORESOURCE_IO, |
| 769 | }; |
| 770 | int err; |
| 771 | |
Jean Delvare | b9acb64 | 2009-01-07 16:37:35 +0100 | [diff] [blame] | 772 | err = acpi_check_resource_conflict(&res); |
| 773 | if (err) |
| 774 | goto exit; |
| 775 | |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 776 | pdev = platform_device_alloc("sis5595", address); |
| 777 | if (!pdev) { |
| 778 | err = -ENOMEM; |
Joe Perches | 4b2515d | 2010-10-20 06:51:47 +0000 | [diff] [blame] | 779 | pr_err("Device allocation failed\n"); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 780 | goto exit; |
| 781 | } |
| 782 | |
| 783 | err = platform_device_add_resources(pdev, &res, 1); |
| 784 | if (err) { |
Joe Perches | 4b2515d | 2010-10-20 06:51:47 +0000 | [diff] [blame] | 785 | pr_err("Device resource addition failed (%d)\n", err); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 786 | goto exit_device_put; |
| 787 | } |
| 788 | |
| 789 | err = platform_device_add(pdev); |
| 790 | if (err) { |
Joe Perches | 4b2515d | 2010-10-20 06:51:47 +0000 | [diff] [blame] | 791 | pr_err("Device addition failed (%d)\n", err); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 792 | goto exit_device_put; |
| 793 | } |
| 794 | |
| 795 | return 0; |
| 796 | |
| 797 | exit_device_put: |
| 798 | platform_device_put(pdev); |
| 799 | exit: |
| 800 | return err; |
| 801 | } |
| 802 | |
Bill Pemberton | 6c931ae | 2012-11-19 13:22:35 -0500 | [diff] [blame] | 803 | static int sis5595_pci_probe(struct pci_dev *dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | const struct pci_device_id *id) |
| 805 | { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 806 | u16 address; |
| 807 | u8 enable; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | int *i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | |
| 810 | for (i = blacklist; *i != 0; i++) { |
Mark M. Hoffman | 5460a9d | 2007-10-14 14:57:35 -0400 | [diff] [blame] | 811 | struct pci_dev *d; |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 812 | d = pci_get_device(PCI_VENDOR_ID_SI, *i, NULL); |
| 813 | if (d) { |
| 814 | dev_err(&d->dev, |
| 815 | "Looked for SIS5595 but found unsupported device %.4x\n", |
| 816 | *i); |
Mark M. Hoffman | 5460a9d | 2007-10-14 14:57:35 -0400 | [diff] [blame] | 817 | pci_dev_put(d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | return -ENODEV; |
| 819 | } |
| 820 | } |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 821 | |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 822 | force_addr &= ~(SIS5595_EXTENT - 1); |
| 823 | if (force_addr) { |
| 824 | dev_warn(&dev->dev, "Forcing ISA address 0x%x\n", force_addr); |
| 825 | pci_write_config_word(dev, SIS5595_BASE_REG, force_addr); |
| 826 | } |
| 827 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | if (PCIBIOS_SUCCESSFUL != |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 829 | pci_read_config_word(dev, SIS5595_BASE_REG, &address)) { |
| 830 | dev_err(&dev->dev, "Failed to read ISA address\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | return -ENODEV; |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 832 | } |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 833 | |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 834 | address &= ~(SIS5595_EXTENT - 1); |
| 835 | if (!address) { |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 836 | dev_err(&dev->dev, |
| 837 | "Base address not set - upgrade BIOS or use force_addr=0xaddr\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | return -ENODEV; |
| 839 | } |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 840 | if (force_addr && address != force_addr) { |
| 841 | /* doesn't work for some chips? */ |
| 842 | dev_err(&dev->dev, "Failed to force ISA address\n"); |
| 843 | return -ENODEV; |
| 844 | } |
| 845 | |
| 846 | if (PCIBIOS_SUCCESSFUL != |
| 847 | pci_read_config_byte(dev, SIS5595_ENABLE_REG, &enable)) { |
| 848 | dev_err(&dev->dev, "Failed to read enable register\n"); |
| 849 | return -ENODEV; |
| 850 | } |
| 851 | if (!(enable & 0x80)) { |
| 852 | if ((PCIBIOS_SUCCESSFUL != |
| 853 | pci_write_config_byte(dev, SIS5595_ENABLE_REG, |
| 854 | enable | 0x80)) |
| 855 | || (PCIBIOS_SUCCESSFUL != |
| 856 | pci_read_config_byte(dev, SIS5595_ENABLE_REG, &enable)) |
| 857 | || (!(enable & 0x80))) { |
| 858 | /* doesn't work for some chips! */ |
| 859 | dev_err(&dev->dev, "Failed to enable HWM device\n"); |
| 860 | return -ENODEV; |
| 861 | } |
| 862 | } |
| 863 | |
| 864 | if (platform_driver_register(&sis5595_driver)) { |
| 865 | dev_dbg(&dev->dev, "Failed to register sis5595 driver\n"); |
| 866 | goto exit; |
| 867 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | s_bridge = pci_dev_get(dev); |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 870 | /* Sets global pdev as a side effect */ |
| 871 | if (sis5595_device_add(address)) |
| 872 | goto exit_unregister; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | |
Guenter Roeck | 8fda79e | 2012-01-14 22:21:41 -0800 | [diff] [blame] | 874 | /* |
| 875 | * Always return failure here. This is to allow other drivers to bind |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | * to this pci device. We don't really want to have control over the |
| 877 | * pci device, we only wanted to read as few register values from it. |
| 878 | */ |
| 879 | return -ENODEV; |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 880 | |
| 881 | exit_unregister: |
| 882 | pci_dev_put(dev); |
| 883 | platform_driver_unregister(&sis5595_driver); |
| 884 | exit: |
| 885 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | static struct pci_driver sis5595_pci_driver = { |
| 889 | .name = "sis5595", |
| 890 | .id_table = sis5595_pci_ids, |
| 891 | .probe = sis5595_pci_probe, |
| 892 | }; |
| 893 | |
| 894 | static int __init sm_sis5595_init(void) |
| 895 | { |
| 896 | return pci_register_driver(&sis5595_pci_driver); |
| 897 | } |
| 898 | |
| 899 | static void __exit sm_sis5595_exit(void) |
| 900 | { |
| 901 | pci_unregister_driver(&sis5595_pci_driver); |
| 902 | if (s_bridge != NULL) { |
Jean Delvare | 17e7dc4 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 903 | platform_device_unregister(pdev); |
| 904 | platform_driver_unregister(&sis5595_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | pci_dev_put(s_bridge); |
| 906 | s_bridge = NULL; |
| 907 | } |
| 908 | } |
| 909 | |
| 910 | MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>"); |
| 911 | MODULE_DESCRIPTION("SiS 5595 Sensor device"); |
| 912 | MODULE_LICENSE("GPL"); |
| 913 | |
| 914 | module_init(sm_sis5595_init); |
| 915 | module_exit(sm_sis5595_exit); |