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