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