| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * adm1025.c | 
|  | 3 | * | 
|  | 4 | * Copyright (C) 2000       Chen-Yuan Wu <gwu@esoft.com> | 
| Jean Delvare | 9560672 | 2009-12-09 20:35:51 +0100 | [diff] [blame] | 5 | * Copyright (C) 2003-2009  Jean Delvare <khali@linux-fr.org> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * | 
|  | 7 | * The ADM1025 is a sensor chip made by Analog Devices. It reports up to 6 | 
|  | 8 | * voltages (including its own power source) and up to two temperatures | 
|  | 9 | * (its own plus up to one external one). Voltages are scaled internally | 
|  | 10 | * (which is not the common way) with ratios such that the nominal value | 
|  | 11 | * of each voltage correspond to a register value of 192 (which means a | 
|  | 12 | * resolution of about 0.5% of the nominal value). Temperature values are | 
|  | 13 | * reported with a 1 deg resolution and a 3 deg accuracy. Complete | 
|  | 14 | * datasheet can be obtained from Analog's website at: | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 15 | *   http://www.onsemi.com/PowerSolutions/product.do?id=ADM1025 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * | 
|  | 17 | * This driver also supports the ADM1025A, which differs from the ADM1025 | 
|  | 18 | * only in that it has "open-drain VID inputs while the ADM1025 has | 
|  | 19 | * on-chip 100k pull-ups on the VID inputs". It doesn't make any | 
|  | 20 | * difference for us. | 
|  | 21 | * | 
|  | 22 | * This driver also supports the NE1619, a sensor chip made by Philips. | 
|  | 23 | * That chip is similar to the ADM1025A, with a few differences. The only | 
|  | 24 | * difference that matters to us is that the NE1619 has only two possible | 
|  | 25 | * addresses while the ADM1025A has a third one. Complete datasheet can be | 
|  | 26 | * obtained from Philips's website at: | 
|  | 27 | *   http://www.semiconductors.philips.com/pip/NE1619DS.html | 
|  | 28 | * | 
|  | 29 | * Since the ADM1025 was the first chipset supported by this driver, most | 
|  | 30 | * comments will refer to this chipset, but are actually general and | 
|  | 31 | * concern all supported chipsets, unless mentioned otherwise. | 
|  | 32 | * | 
|  | 33 | * This program is free software; you can redistribute it and/or modify | 
|  | 34 | * it under the terms of the GNU General Public License as published by | 
|  | 35 | * the Free Software Foundation; either version 2 of the License, or | 
|  | 36 | * (at your option) any later version. | 
|  | 37 | * | 
|  | 38 | * This program is distributed in the hope that it will be useful, | 
|  | 39 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 40 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 41 | * GNU General Public License for more details. | 
|  | 42 | * | 
|  | 43 | * You should have received a copy of the GNU General Public License | 
|  | 44 | * along with this program; if not, write to the Free Software | 
|  | 45 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 
|  | 46 | */ | 
|  | 47 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <linux/module.h> | 
|  | 49 | #include <linux/init.h> | 
|  | 50 | #include <linux/slab.h> | 
|  | 51 | #include <linux/jiffies.h> | 
|  | 52 | #include <linux/i2c.h> | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 53 | #include <linux/hwmon.h> | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 54 | #include <linux/hwmon-sysfs.h> | 
| Jean Delvare | 303760b | 2005-07-31 21:52:01 +0200 | [diff] [blame] | 55 | #include <linux/hwmon-vid.h> | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 56 | #include <linux/err.h> | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 57 | #include <linux/mutex.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 |  | 
|  | 59 | /* | 
|  | 60 | * Addresses to scan | 
|  | 61 | * ADM1025 and ADM1025A have three possible addresses: 0x2c, 0x2d and 0x2e. | 
|  | 62 | * NE1619 has two possible addresses: 0x2c and 0x2d. | 
|  | 63 | */ | 
|  | 64 |  | 
| Mark M. Hoffman | 25e9c86 | 2008-02-17 22:28:03 -0500 | [diff] [blame] | 65 | static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 |  | 
| Jean Delvare | e5e9f44 | 2009-12-14 21:17:27 +0100 | [diff] [blame] | 67 | enum chips { adm1025, ne1619 }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 |  | 
|  | 69 | /* | 
|  | 70 | * The ADM1025 registers | 
|  | 71 | */ | 
|  | 72 |  | 
|  | 73 | #define ADM1025_REG_MAN_ID		0x3E | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 74 | #define ADM1025_REG_CHIP_ID		0x3F | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | #define ADM1025_REG_CONFIG		0x40 | 
|  | 76 | #define ADM1025_REG_STATUS1		0x41 | 
|  | 77 | #define ADM1025_REG_STATUS2		0x42 | 
|  | 78 | #define ADM1025_REG_IN(nr)		(0x20 + (nr)) | 
|  | 79 | #define ADM1025_REG_IN_MAX(nr)		(0x2B + (nr) * 2) | 
|  | 80 | #define ADM1025_REG_IN_MIN(nr)		(0x2C + (nr) * 2) | 
|  | 81 | #define ADM1025_REG_TEMP(nr)		(0x26 + (nr)) | 
|  | 82 | #define ADM1025_REG_TEMP_HIGH(nr)	(0x37 + (nr) * 2) | 
|  | 83 | #define ADM1025_REG_TEMP_LOW(nr)	(0x38 + (nr) * 2) | 
|  | 84 | #define ADM1025_REG_VID			0x47 | 
|  | 85 | #define ADM1025_REG_VID4		0x49 | 
|  | 86 |  | 
|  | 87 | /* | 
|  | 88 | * Conversions and various macros | 
|  | 89 | * The ADM1025 uses signed 8-bit values for temperatures. | 
|  | 90 | */ | 
|  | 91 |  | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 92 | static const int in_scale[6] = { 2500, 2250, 3300, 5000, 12000, 3300 }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 |  | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 94 | #define IN_FROM_REG(reg, scale)	(((reg) * (scale) + 96) / 192) | 
|  | 95 | #define IN_TO_REG(val, scale)	((val) <= 0 ? 0 : \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | (val) * 192 >= (scale) * 255 ? 255 : \ | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 97 | ((val) * 192 + (scale) / 2) / (scale)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 |  | 
|  | 99 | #define TEMP_FROM_REG(reg)	((reg) * 1000) | 
|  | 100 | #define TEMP_TO_REG(val)	((val) <= -127500 ? -128 : \ | 
|  | 101 | (val) >= 126500 ? 127 : \ | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 102 | (((val) < 0 ? (val) - 500 : \ | 
|  | 103 | (val) + 500) / 1000)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 |  | 
|  | 105 | /* | 
|  | 106 | * Functions declaration | 
|  | 107 | */ | 
|  | 108 |  | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 109 | static int adm1025_probe(struct i2c_client *client, | 
|  | 110 | const struct i2c_device_id *id); | 
| Jean Delvare | 310ec79 | 2009-12-14 21:17:23 +0100 | [diff] [blame] | 111 | static int adm1025_detect(struct i2c_client *client, | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 112 | struct i2c_board_info *info); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | static void adm1025_init_client(struct i2c_client *client); | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 114 | static int adm1025_remove(struct i2c_client *client); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | static struct adm1025_data *adm1025_update_device(struct device *dev); | 
|  | 116 |  | 
|  | 117 | /* | 
|  | 118 | * Driver data (common to all clients) | 
|  | 119 | */ | 
|  | 120 |  | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 121 | static const struct i2c_device_id adm1025_id[] = { | 
|  | 122 | { "adm1025", adm1025 }, | 
|  | 123 | { "ne1619", ne1619 }, | 
|  | 124 | { } | 
|  | 125 | }; | 
|  | 126 | MODULE_DEVICE_TABLE(i2c, adm1025_id); | 
|  | 127 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | static struct i2c_driver adm1025_driver = { | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 129 | .class		= I2C_CLASS_HWMON, | 
| Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 130 | .driver = { | 
| Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 131 | .name	= "adm1025", | 
|  | 132 | }, | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 133 | .probe		= adm1025_probe, | 
|  | 134 | .remove		= adm1025_remove, | 
|  | 135 | .id_table	= adm1025_id, | 
|  | 136 | .detect		= adm1025_detect, | 
| Jean Delvare | c3813d6 | 2009-12-14 21:17:25 +0100 | [diff] [blame] | 137 | .address_list	= normal_i2c, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | }; | 
|  | 139 |  | 
|  | 140 | /* | 
|  | 141 | * Client data (each client gets its own) | 
|  | 142 | */ | 
|  | 143 |  | 
|  | 144 | struct adm1025_data { | 
| Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 145 | struct device *hwmon_dev; | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 146 | struct mutex update_lock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | char valid; /* zero until following fields are valid */ | 
|  | 148 | unsigned long last_updated; /* in jiffies */ | 
|  | 149 |  | 
|  | 150 | u8 in[6];		/* register value */ | 
|  | 151 | u8 in_max[6];		/* register value */ | 
|  | 152 | u8 in_min[6];		/* register value */ | 
|  | 153 | s8 temp[2];		/* register value */ | 
|  | 154 | s8 temp_min[2];		/* register value */ | 
|  | 155 | s8 temp_max[2];		/* register value */ | 
|  | 156 | u16 alarms;		/* register values, combined */ | 
|  | 157 | u8 vid;			/* register values, combined */ | 
|  | 158 | u8 vrm; | 
|  | 159 | }; | 
|  | 160 |  | 
|  | 161 | /* | 
|  | 162 | * Sysfs stuff | 
|  | 163 | */ | 
|  | 164 |  | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 165 | static ssize_t | 
|  | 166 | show_in(struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 167 | { | 
|  | 168 | int index = to_sensor_dev_attr(attr)->index; | 
|  | 169 | struct adm1025_data *data = adm1025_update_device(dev); | 
|  | 170 | return sprintf(buf, "%u\n", IN_FROM_REG(data->in[index], | 
|  | 171 | in_scale[index])); | 
|  | 172 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 |  | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 174 | static ssize_t | 
|  | 175 | show_in_min(struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 176 | { | 
|  | 177 | int index = to_sensor_dev_attr(attr)->index; | 
|  | 178 | struct adm1025_data *data = adm1025_update_device(dev); | 
|  | 179 | return sprintf(buf, "%u\n", IN_FROM_REG(data->in_min[index], | 
|  | 180 | in_scale[index])); | 
|  | 181 | } | 
|  | 182 |  | 
|  | 183 | static ssize_t | 
|  | 184 | show_in_max(struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 185 | { | 
|  | 186 | int index = to_sensor_dev_attr(attr)->index; | 
|  | 187 | struct adm1025_data *data = adm1025_update_device(dev); | 
|  | 188 | return sprintf(buf, "%u\n", IN_FROM_REG(data->in_max[index], | 
|  | 189 | in_scale[index])); | 
|  | 190 | } | 
|  | 191 |  | 
|  | 192 | static ssize_t | 
|  | 193 | show_temp(struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 194 | { | 
|  | 195 | int index = to_sensor_dev_attr(attr)->index; | 
|  | 196 | struct adm1025_data *data = adm1025_update_device(dev); | 
|  | 197 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[index])); | 
|  | 198 | } | 
|  | 199 |  | 
|  | 200 | static ssize_t | 
|  | 201 | show_temp_min(struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 202 | { | 
|  | 203 | int index = to_sensor_dev_attr(attr)->index; | 
|  | 204 | struct adm1025_data *data = adm1025_update_device(dev); | 
|  | 205 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_min[index])); | 
|  | 206 | } | 
|  | 207 |  | 
|  | 208 | static ssize_t | 
|  | 209 | show_temp_max(struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 210 | { | 
|  | 211 | int index = to_sensor_dev_attr(attr)->index; | 
|  | 212 | struct adm1025_data *data = adm1025_update_device(dev); | 
|  | 213 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[index])); | 
|  | 214 | } | 
|  | 215 |  | 
|  | 216 | static ssize_t set_in_min(struct device *dev, struct device_attribute *attr, | 
|  | 217 | const char *buf, size_t count) | 
|  | 218 | { | 
|  | 219 | int index = to_sensor_dev_attr(attr)->index; | 
|  | 220 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 221 | struct adm1025_data *data = i2c_get_clientdata(client); | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 222 | long val; | 
|  | 223 | int err; | 
|  | 224 |  | 
|  | 225 | err = kstrtol(buf, 10, &val); | 
|  | 226 | if (err) | 
|  | 227 | return err; | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 228 |  | 
|  | 229 | mutex_lock(&data->update_lock); | 
|  | 230 | data->in_min[index] = IN_TO_REG(val, in_scale[index]); | 
|  | 231 | i2c_smbus_write_byte_data(client, ADM1025_REG_IN_MIN(index), | 
|  | 232 | data->in_min[index]); | 
|  | 233 | mutex_unlock(&data->update_lock); | 
|  | 234 | return count; | 
|  | 235 | } | 
|  | 236 |  | 
|  | 237 | static ssize_t set_in_max(struct device *dev, struct device_attribute *attr, | 
|  | 238 | const char *buf, size_t count) | 
|  | 239 | { | 
|  | 240 | int index = to_sensor_dev_attr(attr)->index; | 
|  | 241 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 242 | struct adm1025_data *data = i2c_get_clientdata(client); | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 243 | long val; | 
|  | 244 | int err; | 
|  | 245 |  | 
|  | 246 | err = kstrtol(buf, 10, &val); | 
|  | 247 | if (err) | 
|  | 248 | return err; | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 249 |  | 
|  | 250 | mutex_lock(&data->update_lock); | 
|  | 251 | data->in_max[index] = IN_TO_REG(val, in_scale[index]); | 
|  | 252 | i2c_smbus_write_byte_data(client, ADM1025_REG_IN_MAX(index), | 
|  | 253 | data->in_max[index]); | 
|  | 254 | mutex_unlock(&data->update_lock); | 
|  | 255 | return count; | 
|  | 256 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 |  | 
|  | 258 | #define set_in(offset) \ | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 259 | static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \ | 
|  | 260 | show_in, NULL, offset); \ | 
|  | 261 | static SENSOR_DEVICE_ATTR(in##offset##_min, S_IWUSR | S_IRUGO, \ | 
|  | 262 | show_in_min, set_in_min, offset); \ | 
|  | 263 | static SENSOR_DEVICE_ATTR(in##offset##_max, S_IWUSR | S_IRUGO, \ | 
|  | 264 | show_in_max, set_in_max, offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | set_in(0); | 
|  | 266 | set_in(1); | 
|  | 267 | set_in(2); | 
|  | 268 | set_in(3); | 
|  | 269 | set_in(4); | 
|  | 270 | set_in(5); | 
|  | 271 |  | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 272 | static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr, | 
|  | 273 | const char *buf, size_t count) | 
|  | 274 | { | 
|  | 275 | int index = to_sensor_dev_attr(attr)->index; | 
|  | 276 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 277 | struct adm1025_data *data = i2c_get_clientdata(client); | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 278 | long val; | 
|  | 279 | int err; | 
|  | 280 |  | 
|  | 281 | err = kstrtol(buf, 10, &val); | 
|  | 282 | if (err) | 
|  | 283 | return err; | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 284 |  | 
|  | 285 | mutex_lock(&data->update_lock); | 
|  | 286 | data->temp_min[index] = TEMP_TO_REG(val); | 
|  | 287 | i2c_smbus_write_byte_data(client, ADM1025_REG_TEMP_LOW(index), | 
|  | 288 | data->temp_min[index]); | 
|  | 289 | mutex_unlock(&data->update_lock); | 
|  | 290 | return count; | 
|  | 291 | } | 
|  | 292 |  | 
|  | 293 | static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr, | 
|  | 294 | const char *buf, size_t count) | 
|  | 295 | { | 
|  | 296 | int index = to_sensor_dev_attr(attr)->index; | 
|  | 297 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 298 | struct adm1025_data *data = i2c_get_clientdata(client); | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 299 | long val; | 
|  | 300 | int err; | 
|  | 301 |  | 
|  | 302 | err = kstrtol(buf, 10, &val); | 
|  | 303 | if (err) | 
|  | 304 | return err; | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 305 |  | 
|  | 306 | mutex_lock(&data->update_lock); | 
|  | 307 | data->temp_max[index] = TEMP_TO_REG(val); | 
|  | 308 | i2c_smbus_write_byte_data(client, ADM1025_REG_TEMP_HIGH(index), | 
|  | 309 | data->temp_max[index]); | 
|  | 310 | mutex_unlock(&data->update_lock); | 
|  | 311 | return count; | 
|  | 312 | } | 
|  | 313 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | #define set_temp(offset) \ | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 315 | static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \ | 
|  | 316 | show_temp, NULL, offset - 1); \ | 
|  | 317 | static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IWUSR | S_IRUGO, \ | 
|  | 318 | show_temp_min, set_temp_min, offset - 1); \ | 
|  | 319 | static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IWUSR | S_IRUGO, \ | 
|  | 320 | show_temp_max, set_temp_max, offset - 1) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | set_temp(1); | 
|  | 322 | set_temp(2); | 
|  | 323 |  | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 324 | static ssize_t | 
|  | 325 | show_alarms(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | { | 
|  | 327 | struct adm1025_data *data = adm1025_update_device(dev); | 
|  | 328 | return sprintf(buf, "%u\n", data->alarms); | 
|  | 329 | } | 
|  | 330 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); | 
|  | 331 |  | 
| Jean Delvare | bb08130 | 2007-10-10 21:11:52 +0200 | [diff] [blame] | 332 | static ssize_t | 
|  | 333 | show_alarm(struct device *dev, struct device_attribute *attr, char *buf) | 
|  | 334 | { | 
|  | 335 | int bitnr = to_sensor_dev_attr(attr)->index; | 
|  | 336 | struct adm1025_data *data = adm1025_update_device(dev); | 
|  | 337 | return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1); | 
|  | 338 | } | 
|  | 339 | static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0); | 
|  | 340 | static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1); | 
|  | 341 | static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2); | 
|  | 342 | static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3); | 
|  | 343 | static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8); | 
|  | 344 | static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9); | 
|  | 345 | static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 5); | 
|  | 346 | static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 4); | 
|  | 347 | static SENSOR_DEVICE_ATTR(temp1_fault, S_IRUGO, show_alarm, NULL, 14); | 
|  | 348 |  | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 349 | static ssize_t | 
|  | 350 | show_vid(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | { | 
|  | 352 | struct adm1025_data *data = adm1025_update_device(dev); | 
|  | 353 | return sprintf(buf, "%u\n", vid_from_reg(data->vid, data->vrm)); | 
|  | 354 | } | 
| Grant Coady | 937df8d | 2005-05-12 11:59:29 +1000 | [diff] [blame] | 355 | static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 |  | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 357 | static ssize_t | 
|  | 358 | show_vrm(struct device *dev, struct device_attribute *attr, char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | { | 
| Jean Delvare | 90d6619 | 2007-10-08 18:24:35 +0200 | [diff] [blame] | 360 | struct adm1025_data *data = dev_get_drvdata(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | return sprintf(buf, "%u\n", data->vrm); | 
|  | 362 | } | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 363 | static ssize_t set_vrm(struct device *dev, struct device_attribute *attr, | 
|  | 364 | const char *buf, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | { | 
| Jean Delvare | 8f74efe | 2007-12-01 11:25:33 +0100 | [diff] [blame] | 366 | struct adm1025_data *data = dev_get_drvdata(dev); | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 367 | unsigned long val; | 
|  | 368 | int err; | 
|  | 369 |  | 
|  | 370 | err = kstrtoul(buf, 10, &val); | 
|  | 371 | if (err) | 
|  | 372 | return err; | 
|  | 373 |  | 
|  | 374 | data->vrm = val; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | return count; | 
|  | 376 | } | 
|  | 377 | static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm, set_vrm); | 
|  | 378 |  | 
|  | 379 | /* | 
|  | 380 | * Real code | 
|  | 381 | */ | 
|  | 382 |  | 
| Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 383 | static struct attribute *adm1025_attributes[] = { | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 384 | &sensor_dev_attr_in0_input.dev_attr.attr, | 
|  | 385 | &sensor_dev_attr_in1_input.dev_attr.attr, | 
|  | 386 | &sensor_dev_attr_in2_input.dev_attr.attr, | 
|  | 387 | &sensor_dev_attr_in3_input.dev_attr.attr, | 
|  | 388 | &sensor_dev_attr_in5_input.dev_attr.attr, | 
|  | 389 | &sensor_dev_attr_in0_min.dev_attr.attr, | 
|  | 390 | &sensor_dev_attr_in1_min.dev_attr.attr, | 
|  | 391 | &sensor_dev_attr_in2_min.dev_attr.attr, | 
|  | 392 | &sensor_dev_attr_in3_min.dev_attr.attr, | 
|  | 393 | &sensor_dev_attr_in5_min.dev_attr.attr, | 
|  | 394 | &sensor_dev_attr_in0_max.dev_attr.attr, | 
|  | 395 | &sensor_dev_attr_in1_max.dev_attr.attr, | 
|  | 396 | &sensor_dev_attr_in2_max.dev_attr.attr, | 
|  | 397 | &sensor_dev_attr_in3_max.dev_attr.attr, | 
|  | 398 | &sensor_dev_attr_in5_max.dev_attr.attr, | 
| Jean Delvare | bb08130 | 2007-10-10 21:11:52 +0200 | [diff] [blame] | 399 | &sensor_dev_attr_in0_alarm.dev_attr.attr, | 
|  | 400 | &sensor_dev_attr_in1_alarm.dev_attr.attr, | 
|  | 401 | &sensor_dev_attr_in2_alarm.dev_attr.attr, | 
|  | 402 | &sensor_dev_attr_in3_alarm.dev_attr.attr, | 
|  | 403 | &sensor_dev_attr_in5_alarm.dev_attr.attr, | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 404 | &sensor_dev_attr_temp1_input.dev_attr.attr, | 
|  | 405 | &sensor_dev_attr_temp2_input.dev_attr.attr, | 
|  | 406 | &sensor_dev_attr_temp1_min.dev_attr.attr, | 
|  | 407 | &sensor_dev_attr_temp2_min.dev_attr.attr, | 
|  | 408 | &sensor_dev_attr_temp1_max.dev_attr.attr, | 
|  | 409 | &sensor_dev_attr_temp2_max.dev_attr.attr, | 
| Jean Delvare | bb08130 | 2007-10-10 21:11:52 +0200 | [diff] [blame] | 410 | &sensor_dev_attr_temp1_alarm.dev_attr.attr, | 
|  | 411 | &sensor_dev_attr_temp2_alarm.dev_attr.attr, | 
|  | 412 | &sensor_dev_attr_temp1_fault.dev_attr.attr, | 
| Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 413 | &dev_attr_alarms.attr, | 
|  | 414 | &dev_attr_cpu0_vid.attr, | 
|  | 415 | &dev_attr_vrm.attr, | 
|  | 416 | NULL | 
|  | 417 | }; | 
|  | 418 |  | 
|  | 419 | static const struct attribute_group adm1025_group = { | 
|  | 420 | .attrs = adm1025_attributes, | 
|  | 421 | }; | 
|  | 422 |  | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 423 | static struct attribute *adm1025_attributes_in4[] = { | 
| Jean Delvare | d8543e7 | 2007-10-10 21:11:01 +0200 | [diff] [blame] | 424 | &sensor_dev_attr_in4_input.dev_attr.attr, | 
|  | 425 | &sensor_dev_attr_in4_min.dev_attr.attr, | 
|  | 426 | &sensor_dev_attr_in4_max.dev_attr.attr, | 
| Jean Delvare | bb08130 | 2007-10-10 21:11:52 +0200 | [diff] [blame] | 427 | &sensor_dev_attr_in4_alarm.dev_attr.attr, | 
| Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 428 | NULL | 
|  | 429 | }; | 
|  | 430 |  | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 431 | static const struct attribute_group adm1025_group_in4 = { | 
|  | 432 | .attrs = adm1025_attributes_in4, | 
| Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 433 | }; | 
|  | 434 |  | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 435 | /* Return 0 if detection is successful, -ENODEV otherwise */ | 
| Jean Delvare | 310ec79 | 2009-12-14 21:17:23 +0100 | [diff] [blame] | 436 | static int adm1025_detect(struct i2c_client *client, | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 437 | struct i2c_board_info *info) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | { | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 439 | struct i2c_adapter *adapter = client->adapter; | 
| Jean Delvare | 9560672 | 2009-12-09 20:35:51 +0100 | [diff] [blame] | 440 | const char *name; | 
|  | 441 | u8 man_id, chip_id; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 |  | 
|  | 443 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 444 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 |  | 
| Jean Delvare | 9560672 | 2009-12-09 20:35:51 +0100 | [diff] [blame] | 446 | /* Check for unused bits */ | 
|  | 447 | if ((i2c_smbus_read_byte_data(client, ADM1025_REG_CONFIG) & 0x80) | 
|  | 448 | || (i2c_smbus_read_byte_data(client, ADM1025_REG_STATUS1) & 0xC0) | 
|  | 449 | || (i2c_smbus_read_byte_data(client, ADM1025_REG_STATUS2) & 0xBC)) { | 
|  | 450 | dev_dbg(&adapter->dev, "ADM1025 detection failed at 0x%02x\n", | 
|  | 451 | client->addr); | 
|  | 452 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | } | 
|  | 454 |  | 
| Jean Delvare | 9560672 | 2009-12-09 20:35:51 +0100 | [diff] [blame] | 455 | /* Identification */ | 
|  | 456 | chip_id = i2c_smbus_read_byte_data(client, ADM1025_REG_CHIP_ID); | 
|  | 457 | if ((chip_id & 0xF0) != 0x20) | 
|  | 458 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 |  | 
| Jean Delvare | 9560672 | 2009-12-09 20:35:51 +0100 | [diff] [blame] | 460 | man_id = i2c_smbus_read_byte_data(client, ADM1025_REG_MAN_ID); | 
|  | 461 | if (man_id == 0x41) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | name = "adm1025"; | 
| Jean Delvare | 9560672 | 2009-12-09 20:35:51 +0100 | [diff] [blame] | 463 | else if (man_id == 0xA1 && client->addr != 0x2E) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | name = "ne1619"; | 
| Jean Delvare | 9560672 | 2009-12-09 20:35:51 +0100 | [diff] [blame] | 465 | else | 
|  | 466 | return -ENODEV; | 
|  | 467 |  | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 468 | strlcpy(info->type, name, I2C_NAME_SIZE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 |  | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 470 | return 0; | 
|  | 471 | } | 
|  | 472 |  | 
|  | 473 | static int adm1025_probe(struct i2c_client *client, | 
|  | 474 | const struct i2c_device_id *id) | 
|  | 475 | { | 
|  | 476 | struct adm1025_data *data; | 
|  | 477 | int err; | 
|  | 478 | u8 config; | 
|  | 479 |  | 
|  | 480 | data = kzalloc(sizeof(struct adm1025_data), GFP_KERNEL); | 
|  | 481 | if (!data) { | 
|  | 482 | err = -ENOMEM; | 
|  | 483 | goto exit; | 
|  | 484 | } | 
|  | 485 |  | 
|  | 486 | i2c_set_clientdata(client, data); | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 487 | mutex_init(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | /* Initialize the ADM1025 chip */ | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 490 | adm1025_init_client(client); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 |  | 
|  | 492 | /* Register sysfs hooks */ | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 493 | err = sysfs_create_group(&client->dev.kobj, &adm1025_group); | 
|  | 494 | if (err) | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 495 | goto exit_free; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 |  | 
|  | 497 | /* Pin 11 is either in4 (+12V) or VID4 */ | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 498 | config = i2c_smbus_read_byte_data(client, ADM1025_REG_CONFIG); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | if (!(config & 0x20)) { | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 500 | err = sysfs_create_group(&client->dev.kobj, &adm1025_group_in4); | 
|  | 501 | if (err) | 
| Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 502 | goto exit_remove; | 
|  | 503 | } | 
|  | 504 |  | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 505 | data->hwmon_dev = hwmon_device_register(&client->dev); | 
| Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 506 | if (IS_ERR(data->hwmon_dev)) { | 
|  | 507 | err = PTR_ERR(data->hwmon_dev); | 
| Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 508 | goto exit_remove; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | } | 
|  | 510 |  | 
|  | 511 | return 0; | 
|  | 512 |  | 
| Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 513 | exit_remove: | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 514 | sysfs_remove_group(&client->dev.kobj, &adm1025_group); | 
|  | 515 | sysfs_remove_group(&client->dev.kobj, &adm1025_group_in4); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | exit_free: | 
|  | 517 | kfree(data); | 
|  | 518 | exit: | 
|  | 519 | return err; | 
|  | 520 | } | 
|  | 521 |  | 
|  | 522 | static void adm1025_init_client(struct i2c_client *client) | 
|  | 523 | { | 
|  | 524 | u8 reg; | 
|  | 525 | struct adm1025_data *data = i2c_get_clientdata(client); | 
|  | 526 | int i; | 
|  | 527 |  | 
| Jean Delvare | 303760b | 2005-07-31 21:52:01 +0200 | [diff] [blame] | 528 | data->vrm = vid_which_vrm(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 |  | 
|  | 530 | /* | 
|  | 531 | * Set high limits | 
|  | 532 | * Usually we avoid setting limits on driver init, but it happens | 
|  | 533 | * that the ADM1025 comes with stupid default limits (all registers | 
|  | 534 | * set to 0). In case the chip has not gone through any limit | 
|  | 535 | * setting yet, we better set the high limits to the max so that | 
|  | 536 | * no alarm triggers. | 
|  | 537 | */ | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 538 | for (i = 0; i < 6; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | reg = i2c_smbus_read_byte_data(client, | 
|  | 540 | ADM1025_REG_IN_MAX(i)); | 
|  | 541 | if (reg == 0) | 
|  | 542 | i2c_smbus_write_byte_data(client, | 
|  | 543 | ADM1025_REG_IN_MAX(i), | 
|  | 544 | 0xFF); | 
|  | 545 | } | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 546 | for (i = 0; i < 2; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | reg = i2c_smbus_read_byte_data(client, | 
|  | 548 | ADM1025_REG_TEMP_HIGH(i)); | 
|  | 549 | if (reg == 0) | 
|  | 550 | i2c_smbus_write_byte_data(client, | 
|  | 551 | ADM1025_REG_TEMP_HIGH(i), | 
|  | 552 | 0x7F); | 
|  | 553 | } | 
|  | 554 |  | 
|  | 555 | /* | 
|  | 556 | * Start the conversions | 
|  | 557 | */ | 
|  | 558 | reg = i2c_smbus_read_byte_data(client, ADM1025_REG_CONFIG); | 
|  | 559 | if (!(reg & 0x01)) | 
|  | 560 | i2c_smbus_write_byte_data(client, ADM1025_REG_CONFIG, | 
|  | 561 | (reg&0x7E)|0x01); | 
|  | 562 | } | 
|  | 563 |  | 
| Jean Delvare | 7dbafe0 | 2008-07-16 19:30:08 +0200 | [diff] [blame] | 564 | static int adm1025_remove(struct i2c_client *client) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | { | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 566 | struct adm1025_data *data = i2c_get_clientdata(client); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 |  | 
| Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 568 | hwmon_device_unregister(data->hwmon_dev); | 
| Mark M. Hoffman | 681c6f7 | 2006-09-24 21:15:35 +0200 | [diff] [blame] | 569 | sysfs_remove_group(&client->dev.kobj, &adm1025_group); | 
| Jean Delvare | 4e95279 | 2007-10-10 21:14:11 +0200 | [diff] [blame] | 570 | sysfs_remove_group(&client->dev.kobj, &adm1025_group_in4); | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 571 |  | 
| Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 572 | kfree(data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | return 0; | 
|  | 574 | } | 
|  | 575 |  | 
|  | 576 | static struct adm1025_data *adm1025_update_device(struct device *dev) | 
|  | 577 | { | 
|  | 578 | struct i2c_client *client = to_i2c_client(dev); | 
|  | 579 | struct adm1025_data *data = i2c_get_clientdata(client); | 
|  | 580 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 581 | mutex_lock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 |  | 
|  | 583 | if (time_after(jiffies, data->last_updated + HZ * 2) || !data->valid) { | 
|  | 584 | int i; | 
|  | 585 |  | 
|  | 586 | dev_dbg(&client->dev, "Updating data.\n"); | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 587 | for (i = 0; i < 6; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | data->in[i] = i2c_smbus_read_byte_data(client, | 
|  | 589 | ADM1025_REG_IN(i)); | 
|  | 590 | data->in_min[i] = i2c_smbus_read_byte_data(client, | 
|  | 591 | ADM1025_REG_IN_MIN(i)); | 
|  | 592 | data->in_max[i] = i2c_smbus_read_byte_data(client, | 
|  | 593 | ADM1025_REG_IN_MAX(i)); | 
|  | 594 | } | 
| Guenter Roeck | 2b22de5 | 2012-01-14 12:49:22 -0800 | [diff] [blame] | 595 | for (i = 0; i < 2; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | data->temp[i] = i2c_smbus_read_byte_data(client, | 
|  | 597 | ADM1025_REG_TEMP(i)); | 
|  | 598 | data->temp_min[i] = i2c_smbus_read_byte_data(client, | 
|  | 599 | ADM1025_REG_TEMP_LOW(i)); | 
|  | 600 | data->temp_max[i] = i2c_smbus_read_byte_data(client, | 
|  | 601 | ADM1025_REG_TEMP_HIGH(i)); | 
|  | 602 | } | 
|  | 603 | data->alarms = i2c_smbus_read_byte_data(client, | 
|  | 604 | ADM1025_REG_STATUS1) | 
|  | 605 | | (i2c_smbus_read_byte_data(client, | 
|  | 606 | ADM1025_REG_STATUS2) << 8); | 
|  | 607 | data->vid = (i2c_smbus_read_byte_data(client, | 
|  | 608 | ADM1025_REG_VID) & 0x0f) | 
|  | 609 | | ((i2c_smbus_read_byte_data(client, | 
|  | 610 | ADM1025_REG_VID4) & 0x01) << 4); | 
|  | 611 |  | 
|  | 612 | data->last_updated = jiffies; | 
|  | 613 | data->valid = 1; | 
|  | 614 | } | 
|  | 615 |  | 
| Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 616 | mutex_unlock(&data->update_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 |  | 
|  | 618 | return data; | 
|  | 619 | } | 
|  | 620 |  | 
| Axel Lin | f0967ee | 2012-01-20 15:38:18 +0800 | [diff] [blame] | 621 | module_i2c_driver(adm1025_driver); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 |  | 
|  | 623 | MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>"); | 
|  | 624 | MODULE_DESCRIPTION("ADM1025 driver"); | 
|  | 625 | MODULE_LICENSE("GPL"); |