blob: b68b292c00d4a81fea7e553e8f21da5522ed46e7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * adm1025.c
3 *
4 * Copyright (C) 2000 Chen-Yuan Wu <gwu@esoft.com>
5 * Copyright (C) 2003-2004 Jean Delvare <khali@linux-fr.org>
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:
15 * http://www.analog.com/Analog_Root/productPage/productHome/0,2121,ADM1025,00.html
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 Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/module.h>
49#include <linux/init.h>
50#include <linux/slab.h>
51#include <linux/jiffies.h>
52#include <linux/i2c.h>
53#include <linux/i2c-sensor.h>
54#include <linux/i2c-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040055#include <linux/hwmon.h>
56#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*
59 * Addresses to scan
60 * ADM1025 and ADM1025A have three possible addresses: 0x2c, 0x2d and 0x2e.
61 * NE1619 has two possible addresses: 0x2c and 0x2d.
62 */
63
64static unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END };
65static unsigned int normal_isa[] = { I2C_CLIENT_ISA_END };
66
67/*
68 * Insmod parameters
69 */
70
71SENSORS_INSMOD_2(adm1025, ne1619);
72
73/*
74 * The ADM1025 registers
75 */
76
77#define ADM1025_REG_MAN_ID 0x3E
78#define ADM1025_REG_CHIP_ID 0x3F
79#define ADM1025_REG_CONFIG 0x40
80#define ADM1025_REG_STATUS1 0x41
81#define ADM1025_REG_STATUS2 0x42
82#define ADM1025_REG_IN(nr) (0x20 + (nr))
83#define ADM1025_REG_IN_MAX(nr) (0x2B + (nr) * 2)
84#define ADM1025_REG_IN_MIN(nr) (0x2C + (nr) * 2)
85#define ADM1025_REG_TEMP(nr) (0x26 + (nr))
86#define ADM1025_REG_TEMP_HIGH(nr) (0x37 + (nr) * 2)
87#define ADM1025_REG_TEMP_LOW(nr) (0x38 + (nr) * 2)
88#define ADM1025_REG_VID 0x47
89#define ADM1025_REG_VID4 0x49
90
91/*
92 * Conversions and various macros
93 * The ADM1025 uses signed 8-bit values for temperatures.
94 */
95
96static int in_scale[6] = { 2500, 2250, 3300, 5000, 12000, 3300 };
97
98#define IN_FROM_REG(reg,scale) (((reg) * (scale) + 96) / 192)
99#define IN_TO_REG(val,scale) ((val) <= 0 ? 0 : \
100 (val) * 192 >= (scale) * 255 ? 255 : \
101 ((val) * 192 + (scale)/2) / (scale))
102
103#define TEMP_FROM_REG(reg) ((reg) * 1000)
104#define TEMP_TO_REG(val) ((val) <= -127500 ? -128 : \
105 (val) >= 126500 ? 127 : \
106 (((val) < 0 ? (val)-500 : (val)+500) / 1000))
107
108/*
109 * Functions declaration
110 */
111
112static int adm1025_attach_adapter(struct i2c_adapter *adapter);
113static int adm1025_detect(struct i2c_adapter *adapter, int address, int kind);
114static void adm1025_init_client(struct i2c_client *client);
115static int adm1025_detach_client(struct i2c_client *client);
116static struct adm1025_data *adm1025_update_device(struct device *dev);
117
118/*
119 * Driver data (common to all clients)
120 */
121
122static struct i2c_driver adm1025_driver = {
123 .owner = THIS_MODULE,
124 .name = "adm1025",
125 .id = I2C_DRIVERID_ADM1025,
126 .flags = I2C_DF_NOTIFY,
127 .attach_adapter = adm1025_attach_adapter,
128 .detach_client = adm1025_detach_client,
129};
130
131/*
132 * Client data (each client gets its own)
133 */
134
135struct adm1025_data {
136 struct i2c_client client;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400137 struct class_device *class_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 struct semaphore update_lock;
139 char valid; /* zero until following fields are valid */
140 unsigned long last_updated; /* in jiffies */
141
142 u8 in[6]; /* register value */
143 u8 in_max[6]; /* register value */
144 u8 in_min[6]; /* register value */
145 s8 temp[2]; /* register value */
146 s8 temp_min[2]; /* register value */
147 s8 temp_max[2]; /* register value */
148 u16 alarms; /* register values, combined */
149 u8 vid; /* register values, combined */
150 u8 vrm;
151};
152
153/*
154 * Sysfs stuff
155 */
156
157#define show_in(offset) \
Yani Ioannou74880c02005-05-17 06:41:12 -0400158static ssize_t show_in##offset(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{ \
160 struct adm1025_data *data = adm1025_update_device(dev); \
161 return sprintf(buf, "%u\n", IN_FROM_REG(data->in[offset], \
162 in_scale[offset])); \
163} \
Yani Ioannou74880c02005-05-17 06:41:12 -0400164static ssize_t show_in##offset##_min(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{ \
166 struct adm1025_data *data = adm1025_update_device(dev); \
167 return sprintf(buf, "%u\n", IN_FROM_REG(data->in_min[offset], \
168 in_scale[offset])); \
169} \
Yani Ioannou74880c02005-05-17 06:41:12 -0400170static ssize_t show_in##offset##_max(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{ \
172 struct adm1025_data *data = adm1025_update_device(dev); \
173 return sprintf(buf, "%u\n", IN_FROM_REG(data->in_max[offset], \
174 in_scale[offset])); \
175} \
176static DEVICE_ATTR(in##offset##_input, S_IRUGO, show_in##offset, NULL);
177show_in(0);
178show_in(1);
179show_in(2);
180show_in(3);
181show_in(4);
182show_in(5);
183
184#define show_temp(offset) \
Yani Ioannou74880c02005-05-17 06:41:12 -0400185static ssize_t show_temp##offset(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{ \
187 struct adm1025_data *data = adm1025_update_device(dev); \
188 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[offset-1])); \
189} \
Yani Ioannou74880c02005-05-17 06:41:12 -0400190static ssize_t show_temp##offset##_min(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{ \
192 struct adm1025_data *data = adm1025_update_device(dev); \
193 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_min[offset-1])); \
194} \
Yani Ioannou74880c02005-05-17 06:41:12 -0400195static ssize_t show_temp##offset##_max(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{ \
197 struct adm1025_data *data = adm1025_update_device(dev); \
198 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[offset-1])); \
199}\
200static DEVICE_ATTR(temp##offset##_input, S_IRUGO, show_temp##offset, NULL);
201show_temp(1);
202show_temp(2);
203
204#define set_in(offset) \
Yani Ioannou74880c02005-05-17 06:41:12 -0400205static ssize_t set_in##offset##_min(struct device *dev, struct device_attribute *attr, const char *buf, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 size_t count) \
207{ \
208 struct i2c_client *client = to_i2c_client(dev); \
209 struct adm1025_data *data = i2c_get_clientdata(client); \
210 long val = simple_strtol(buf, NULL, 10); \
211 \
212 down(&data->update_lock); \
213 data->in_min[offset] = IN_TO_REG(val, in_scale[offset]); \
214 i2c_smbus_write_byte_data(client, ADM1025_REG_IN_MIN(offset), \
215 data->in_min[offset]); \
216 up(&data->update_lock); \
217 return count; \
218} \
Yani Ioannou74880c02005-05-17 06:41:12 -0400219static ssize_t set_in##offset##_max(struct device *dev, struct device_attribute *attr, const char *buf, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 size_t count) \
221{ \
222 struct i2c_client *client = to_i2c_client(dev); \
223 struct adm1025_data *data = i2c_get_clientdata(client); \
224 long val = simple_strtol(buf, NULL, 10); \
225 \
226 down(&data->update_lock); \
227 data->in_max[offset] = IN_TO_REG(val, in_scale[offset]); \
228 i2c_smbus_write_byte_data(client, ADM1025_REG_IN_MAX(offset), \
229 data->in_max[offset]); \
230 up(&data->update_lock); \
231 return count; \
232} \
233static DEVICE_ATTR(in##offset##_min, S_IWUSR | S_IRUGO, \
234 show_in##offset##_min, set_in##offset##_min); \
235static DEVICE_ATTR(in##offset##_max, S_IWUSR | S_IRUGO, \
236 show_in##offset##_max, set_in##offset##_max);
237set_in(0);
238set_in(1);
239set_in(2);
240set_in(3);
241set_in(4);
242set_in(5);
243
244#define set_temp(offset) \
Yani Ioannou74880c02005-05-17 06:41:12 -0400245static ssize_t set_temp##offset##_min(struct device *dev, struct device_attribute *attr, const char *buf, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 size_t count) \
247{ \
248 struct i2c_client *client = to_i2c_client(dev); \
249 struct adm1025_data *data = i2c_get_clientdata(client); \
250 long val = simple_strtol(buf, NULL, 10); \
251 \
252 down(&data->update_lock); \
253 data->temp_min[offset-1] = TEMP_TO_REG(val); \
254 i2c_smbus_write_byte_data(client, ADM1025_REG_TEMP_LOW(offset-1), \
255 data->temp_min[offset-1]); \
256 up(&data->update_lock); \
257 return count; \
258} \
Yani Ioannou74880c02005-05-17 06:41:12 -0400259static ssize_t set_temp##offset##_max(struct device *dev, struct device_attribute *attr, const char *buf, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 size_t count) \
261{ \
262 struct i2c_client *client = to_i2c_client(dev); \
263 struct adm1025_data *data = i2c_get_clientdata(client); \
264 long val = simple_strtol(buf, NULL, 10); \
265 \
266 down(&data->update_lock); \
267 data->temp_max[offset-1] = TEMP_TO_REG(val); \
268 i2c_smbus_write_byte_data(client, ADM1025_REG_TEMP_HIGH(offset-1), \
269 data->temp_max[offset-1]); \
270 up(&data->update_lock); \
271 return count; \
272} \
273static DEVICE_ATTR(temp##offset##_min, S_IWUSR | S_IRUGO, \
274 show_temp##offset##_min, set_temp##offset##_min); \
275static DEVICE_ATTR(temp##offset##_max, S_IWUSR | S_IRUGO, \
276 show_temp##offset##_max, set_temp##offset##_max);
277set_temp(1);
278set_temp(2);
279
Yani Ioannou74880c02005-05-17 06:41:12 -0400280static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 struct adm1025_data *data = adm1025_update_device(dev);
283 return sprintf(buf, "%u\n", data->alarms);
284}
285static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
286
Yani Ioannou74880c02005-05-17 06:41:12 -0400287static ssize_t show_vid(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 struct adm1025_data *data = adm1025_update_device(dev);
290 return sprintf(buf, "%u\n", vid_from_reg(data->vid, data->vrm));
291}
Grant Coady937df8d2005-05-12 11:59:29 +1000292/* in1_ref is deprecated in favour of cpu0_vid, remove after 2005-11-11 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293static DEVICE_ATTR(in1_ref, S_IRUGO, show_vid, NULL);
Grant Coady937df8d2005-05-12 11:59:29 +1000294static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Yani Ioannou74880c02005-05-17 06:41:12 -0400296static ssize_t show_vrm(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 struct adm1025_data *data = adm1025_update_device(dev);
299 return sprintf(buf, "%u\n", data->vrm);
300}
Yani Ioannou74880c02005-05-17 06:41:12 -0400301static ssize_t set_vrm(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
303 struct i2c_client *client = to_i2c_client(dev);
304 struct adm1025_data *data = i2c_get_clientdata(client);
305 data->vrm = simple_strtoul(buf, NULL, 10);
306 return count;
307}
308static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm, set_vrm);
309
310/*
311 * Real code
312 */
313
314static int adm1025_attach_adapter(struct i2c_adapter *adapter)
315{
316 if (!(adapter->class & I2C_CLASS_HWMON))
317 return 0;
318 return i2c_detect(adapter, &addr_data, adm1025_detect);
319}
320
321/*
322 * The following function does more than just detection. If detection
323 * succeeds, it also registers the new chip.
324 */
325static int adm1025_detect(struct i2c_adapter *adapter, int address, int kind)
326{
327 struct i2c_client *new_client;
328 struct adm1025_data *data;
329 int err = 0;
330 const char *name = "";
331 u8 config;
332
333 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
334 goto exit;
335
336 if (!(data = kmalloc(sizeof(struct adm1025_data), GFP_KERNEL))) {
337 err = -ENOMEM;
338 goto exit;
339 }
340 memset(data, 0, sizeof(struct adm1025_data));
341
342 /* The common I2C client data is placed right before the
343 ADM1025-specific data. */
344 new_client = &data->client;
345 i2c_set_clientdata(new_client, data);
346 new_client->addr = address;
347 new_client->adapter = adapter;
348 new_client->driver = &adm1025_driver;
349 new_client->flags = 0;
350
351 /*
352 * Now we do the remaining detection. A negative kind means that
353 * the driver was loaded with no force parameter (default), so we
354 * must both detect and identify the chip. A zero kind means that
355 * the driver was loaded with the force parameter, the detection
356 * step shall be skipped. A positive kind means that the driver
357 * was loaded with the force parameter and a given kind of chip is
358 * requested, so both the detection and the identification steps
359 * are skipped.
360 */
361 config = i2c_smbus_read_byte_data(new_client, ADM1025_REG_CONFIG);
362 if (kind < 0) { /* detection */
363 if ((config & 0x80) != 0x00
364 || (i2c_smbus_read_byte_data(new_client,
365 ADM1025_REG_STATUS1) & 0xC0) != 0x00
366 || (i2c_smbus_read_byte_data(new_client,
367 ADM1025_REG_STATUS2) & 0xBC) != 0x00) {
368 dev_dbg(&adapter->dev,
369 "ADM1025 detection failed at 0x%02x.\n",
370 address);
371 goto exit_free;
372 }
373 }
374
375 if (kind <= 0) { /* identification */
376 u8 man_id, chip_id;
377
378 man_id = i2c_smbus_read_byte_data(new_client,
379 ADM1025_REG_MAN_ID);
380 chip_id = i2c_smbus_read_byte_data(new_client,
381 ADM1025_REG_CHIP_ID);
382
383 if (man_id == 0x41) { /* Analog Devices */
384 if ((chip_id & 0xF0) == 0x20) { /* ADM1025/ADM1025A */
385 kind = adm1025;
386 }
387 } else
388 if (man_id == 0xA1) { /* Philips */
389 if (address != 0x2E
390 && (chip_id & 0xF0) == 0x20) { /* NE1619 */
391 kind = ne1619;
392 }
393 }
394
395 if (kind <= 0) { /* identification failed */
396 dev_info(&adapter->dev,
397 "Unsupported chip (man_id=0x%02X, "
398 "chip_id=0x%02X).\n", man_id, chip_id);
399 goto exit_free;
400 }
401 }
402
403 if (kind == adm1025) {
404 name = "adm1025";
405 } else if (kind == ne1619) {
406 name = "ne1619";
407 }
408
409 /* We can fill in the remaining client fields */
410 strlcpy(new_client->name, name, I2C_NAME_SIZE);
411 data->valid = 0;
412 init_MUTEX(&data->update_lock);
413
414 /* Tell the I2C layer a new client has arrived */
415 if ((err = i2c_attach_client(new_client)))
416 goto exit_free;
417
418 /* Initialize the ADM1025 chip */
419 adm1025_init_client(new_client);
420
421 /* Register sysfs hooks */
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400422 data->class_dev = hwmon_device_register(&new_client->dev);
423 if (IS_ERR(data->class_dev)) {
424 err = PTR_ERR(data->class_dev);
425 goto exit_detach;
426 }
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 device_create_file(&new_client->dev, &dev_attr_in0_input);
429 device_create_file(&new_client->dev, &dev_attr_in1_input);
430 device_create_file(&new_client->dev, &dev_attr_in2_input);
431 device_create_file(&new_client->dev, &dev_attr_in3_input);
432 device_create_file(&new_client->dev, &dev_attr_in5_input);
433 device_create_file(&new_client->dev, &dev_attr_in0_min);
434 device_create_file(&new_client->dev, &dev_attr_in1_min);
435 device_create_file(&new_client->dev, &dev_attr_in2_min);
436 device_create_file(&new_client->dev, &dev_attr_in3_min);
437 device_create_file(&new_client->dev, &dev_attr_in5_min);
438 device_create_file(&new_client->dev, &dev_attr_in0_max);
439 device_create_file(&new_client->dev, &dev_attr_in1_max);
440 device_create_file(&new_client->dev, &dev_attr_in2_max);
441 device_create_file(&new_client->dev, &dev_attr_in3_max);
442 device_create_file(&new_client->dev, &dev_attr_in5_max);
443 device_create_file(&new_client->dev, &dev_attr_temp1_input);
444 device_create_file(&new_client->dev, &dev_attr_temp2_input);
445 device_create_file(&new_client->dev, &dev_attr_temp1_min);
446 device_create_file(&new_client->dev, &dev_attr_temp2_min);
447 device_create_file(&new_client->dev, &dev_attr_temp1_max);
448 device_create_file(&new_client->dev, &dev_attr_temp2_max);
449 device_create_file(&new_client->dev, &dev_attr_alarms);
Grant Coady937df8d2005-05-12 11:59:29 +1000450 /* in1_ref is deprecated, remove after 2005-11-11 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 device_create_file(&new_client->dev, &dev_attr_in1_ref);
Grant Coady937df8d2005-05-12 11:59:29 +1000452 device_create_file(&new_client->dev, &dev_attr_cpu0_vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 device_create_file(&new_client->dev, &dev_attr_vrm);
454
455 /* Pin 11 is either in4 (+12V) or VID4 */
456 if (!(config & 0x20)) {
457 device_create_file(&new_client->dev, &dev_attr_in4_input);
458 device_create_file(&new_client->dev, &dev_attr_in4_min);
459 device_create_file(&new_client->dev, &dev_attr_in4_max);
460 }
461
462 return 0;
463
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400464exit_detach:
465 i2c_detach_client(new_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466exit_free:
467 kfree(data);
468exit:
469 return err;
470}
471
472static void adm1025_init_client(struct i2c_client *client)
473{
474 u8 reg;
475 struct adm1025_data *data = i2c_get_clientdata(client);
476 int i;
477
478 data->vrm = i2c_which_vrm();
479
480 /*
481 * Set high limits
482 * Usually we avoid setting limits on driver init, but it happens
483 * that the ADM1025 comes with stupid default limits (all registers
484 * set to 0). In case the chip has not gone through any limit
485 * setting yet, we better set the high limits to the max so that
486 * no alarm triggers.
487 */
488 for (i=0; i<6; i++) {
489 reg = i2c_smbus_read_byte_data(client,
490 ADM1025_REG_IN_MAX(i));
491 if (reg == 0)
492 i2c_smbus_write_byte_data(client,
493 ADM1025_REG_IN_MAX(i),
494 0xFF);
495 }
496 for (i=0; i<2; i++) {
497 reg = i2c_smbus_read_byte_data(client,
498 ADM1025_REG_TEMP_HIGH(i));
499 if (reg == 0)
500 i2c_smbus_write_byte_data(client,
501 ADM1025_REG_TEMP_HIGH(i),
502 0x7F);
503 }
504
505 /*
506 * Start the conversions
507 */
508 reg = i2c_smbus_read_byte_data(client, ADM1025_REG_CONFIG);
509 if (!(reg & 0x01))
510 i2c_smbus_write_byte_data(client, ADM1025_REG_CONFIG,
511 (reg&0x7E)|0x01);
512}
513
514static int adm1025_detach_client(struct i2c_client *client)
515{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400516 struct adm1025_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 int err;
518
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400519 hwmon_device_unregister(data->class_dev);
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if ((err = i2c_detach_client(client))) {
522 dev_err(&client->dev, "Client deregistration failed, "
523 "client not detached.\n");
524 return err;
525 }
526
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400527 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return 0;
529}
530
531static struct adm1025_data *adm1025_update_device(struct device *dev)
532{
533 struct i2c_client *client = to_i2c_client(dev);
534 struct adm1025_data *data = i2c_get_clientdata(client);
535
536 down(&data->update_lock);
537
538 if (time_after(jiffies, data->last_updated + HZ * 2) || !data->valid) {
539 int i;
540
541 dev_dbg(&client->dev, "Updating data.\n");
542 for (i=0; i<6; i++) {
543 data->in[i] = i2c_smbus_read_byte_data(client,
544 ADM1025_REG_IN(i));
545 data->in_min[i] = i2c_smbus_read_byte_data(client,
546 ADM1025_REG_IN_MIN(i));
547 data->in_max[i] = i2c_smbus_read_byte_data(client,
548 ADM1025_REG_IN_MAX(i));
549 }
550 for (i=0; i<2; i++) {
551 data->temp[i] = i2c_smbus_read_byte_data(client,
552 ADM1025_REG_TEMP(i));
553 data->temp_min[i] = i2c_smbus_read_byte_data(client,
554 ADM1025_REG_TEMP_LOW(i));
555 data->temp_max[i] = i2c_smbus_read_byte_data(client,
556 ADM1025_REG_TEMP_HIGH(i));
557 }
558 data->alarms = i2c_smbus_read_byte_data(client,
559 ADM1025_REG_STATUS1)
560 | (i2c_smbus_read_byte_data(client,
561 ADM1025_REG_STATUS2) << 8);
562 data->vid = (i2c_smbus_read_byte_data(client,
563 ADM1025_REG_VID) & 0x0f)
564 | ((i2c_smbus_read_byte_data(client,
565 ADM1025_REG_VID4) & 0x01) << 4);
566
567 data->last_updated = jiffies;
568 data->valid = 1;
569 }
570
571 up(&data->update_lock);
572
573 return data;
574}
575
576static int __init sensors_adm1025_init(void)
577{
578 return i2c_add_driver(&adm1025_driver);
579}
580
581static void __exit sensors_adm1025_exit(void)
582{
583 i2c_del_driver(&adm1025_driver);
584}
585
586MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
587MODULE_DESCRIPTION("ADM1025 driver");
588MODULE_LICENSE("GPL");
589
590module_init(sensors_adm1025_init);
591module_exit(sensors_adm1025_exit);