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