blob: e17651083b0922ba734d86f26621bcb1ea7d25b7 [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>
Jean Delvare95606722009-12-09 20:35:51 +01005 * Copyright (C) 2003-2009 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
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>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040053#include <linux/hwmon.h>
Jean Delvared8543e72007-10-10 21:11:01 +020054#include <linux/hwmon-sysfs.h>
Jean Delvare303760b2005-07-31 21:52:01 +020055#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040056#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010057#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
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. Hoffman25e9c862008-02-17 22:28:03 -050065static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/*
68 * Insmod parameters
69 */
70
Jean Delvaref4b50262005-07-31 21:49:03 +020071I2C_CLIENT_INSMOD_2(adm1025, ne1619);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*
74 * The ADM1025 registers
75 */
76
77#define ADM1025_REG_MAN_ID 0x3E
Jean Delvare4e952792007-10-10 21:14:11 +020078#define ADM1025_REG_CHIP_ID 0x3F
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#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
Jean Delvare4e952792007-10-10 21:14:11 +020096static const int in_scale[6] = { 2500, 2250, 3300, 5000, 12000, 3300 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
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
Jean Delvare7dbafe02008-07-16 19:30:08 +0200112static int adm1025_probe(struct i2c_client *client,
113 const struct i2c_device_id *id);
Jean Delvare310ec792009-12-14 21:17:23 +0100114static int adm1025_detect(struct i2c_client *client,
Jean Delvare7dbafe02008-07-16 19:30:08 +0200115 struct i2c_board_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116static void adm1025_init_client(struct i2c_client *client);
Jean Delvare7dbafe02008-07-16 19:30:08 +0200117static int adm1025_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static struct adm1025_data *adm1025_update_device(struct device *dev);
119
120/*
121 * Driver data (common to all clients)
122 */
123
Jean Delvare7dbafe02008-07-16 19:30:08 +0200124static const struct i2c_device_id adm1025_id[] = {
125 { "adm1025", adm1025 },
126 { "ne1619", ne1619 },
127 { }
128};
129MODULE_DEVICE_TABLE(i2c, adm1025_id);
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static struct i2c_driver adm1025_driver = {
Jean Delvare7dbafe02008-07-16 19:30:08 +0200132 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100133 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100134 .name = "adm1025",
135 },
Jean Delvare7dbafe02008-07-16 19:30:08 +0200136 .probe = adm1025_probe,
137 .remove = adm1025_remove,
138 .id_table = adm1025_id,
139 .detect = adm1025_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100140 .address_list = normal_i2c,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
143/*
144 * Client data (each client gets its own)
145 */
146
147struct adm1025_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700148 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100149 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 char valid; /* zero until following fields are valid */
151 unsigned long last_updated; /* in jiffies */
152
153 u8 in[6]; /* register value */
154 u8 in_max[6]; /* register value */
155 u8 in_min[6]; /* register value */
156 s8 temp[2]; /* register value */
157 s8 temp_min[2]; /* register value */
158 s8 temp_max[2]; /* register value */
159 u16 alarms; /* register values, combined */
160 u8 vid; /* register values, combined */
161 u8 vrm;
162};
163
164/*
165 * Sysfs stuff
166 */
167
Jean Delvared8543e72007-10-10 21:11:01 +0200168static ssize_t
169show_in(struct device *dev, struct device_attribute *attr, char *buf)
170{
171 int index = to_sensor_dev_attr(attr)->index;
172 struct adm1025_data *data = adm1025_update_device(dev);
173 return sprintf(buf, "%u\n", IN_FROM_REG(data->in[index],
174 in_scale[index]));
175}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Jean Delvared8543e72007-10-10 21:11:01 +0200177static ssize_t
178show_in_min(struct device *dev, struct device_attribute *attr, char *buf)
179{
180 int index = to_sensor_dev_attr(attr)->index;
181 struct adm1025_data *data = adm1025_update_device(dev);
182 return sprintf(buf, "%u\n", IN_FROM_REG(data->in_min[index],
183 in_scale[index]));
184}
185
186static ssize_t
187show_in_max(struct device *dev, struct device_attribute *attr, char *buf)
188{
189 int index = to_sensor_dev_attr(attr)->index;
190 struct adm1025_data *data = adm1025_update_device(dev);
191 return sprintf(buf, "%u\n", IN_FROM_REG(data->in_max[index],
192 in_scale[index]));
193}
194
195static ssize_t
196show_temp(struct device *dev, struct device_attribute *attr, char *buf)
197{
198 int index = to_sensor_dev_attr(attr)->index;
199 struct adm1025_data *data = adm1025_update_device(dev);
200 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[index]));
201}
202
203static ssize_t
204show_temp_min(struct device *dev, struct device_attribute *attr, char *buf)
205{
206 int index = to_sensor_dev_attr(attr)->index;
207 struct adm1025_data *data = adm1025_update_device(dev);
208 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_min[index]));
209}
210
211static ssize_t
212show_temp_max(struct device *dev, struct device_attribute *attr, char *buf)
213{
214 int index = to_sensor_dev_attr(attr)->index;
215 struct adm1025_data *data = adm1025_update_device(dev);
216 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[index]));
217}
218
219static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
220 const char *buf, size_t count)
221{
222 int index = to_sensor_dev_attr(attr)->index;
223 struct i2c_client *client = to_i2c_client(dev);
224 struct adm1025_data *data = i2c_get_clientdata(client);
225 long val = simple_strtol(buf, NULL, 10);
226
227 mutex_lock(&data->update_lock);
228 data->in_min[index] = IN_TO_REG(val, in_scale[index]);
229 i2c_smbus_write_byte_data(client, ADM1025_REG_IN_MIN(index),
230 data->in_min[index]);
231 mutex_unlock(&data->update_lock);
232 return count;
233}
234
235static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
236 const char *buf, size_t count)
237{
238 int index = to_sensor_dev_attr(attr)->index;
239 struct i2c_client *client = to_i2c_client(dev);
240 struct adm1025_data *data = i2c_get_clientdata(client);
241 long val = simple_strtol(buf, NULL, 10);
242
243 mutex_lock(&data->update_lock);
244 data->in_max[index] = IN_TO_REG(val, in_scale[index]);
245 i2c_smbus_write_byte_data(client, ADM1025_REG_IN_MAX(index),
246 data->in_max[index]);
247 mutex_unlock(&data->update_lock);
248 return count;
249}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251#define set_in(offset) \
Jean Delvared8543e72007-10-10 21:11:01 +0200252static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
253 show_in, NULL, offset); \
254static SENSOR_DEVICE_ATTR(in##offset##_min, S_IWUSR | S_IRUGO, \
255 show_in_min, set_in_min, offset); \
256static SENSOR_DEVICE_ATTR(in##offset##_max, S_IWUSR | S_IRUGO, \
257 show_in_max, set_in_max, offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258set_in(0);
259set_in(1);
260set_in(2);
261set_in(3);
262set_in(4);
263set_in(5);
264
Jean Delvared8543e72007-10-10 21:11:01 +0200265static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,
266 const char *buf, size_t count)
267{
268 int index = to_sensor_dev_attr(attr)->index;
269 struct i2c_client *client = to_i2c_client(dev);
270 struct adm1025_data *data = i2c_get_clientdata(client);
271 long val = simple_strtol(buf, NULL, 10);
272
273 mutex_lock(&data->update_lock);
274 data->temp_min[index] = TEMP_TO_REG(val);
275 i2c_smbus_write_byte_data(client, ADM1025_REG_TEMP_LOW(index),
276 data->temp_min[index]);
277 mutex_unlock(&data->update_lock);
278 return count;
279}
280
281static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
282 const char *buf, size_t count)
283{
284 int index = to_sensor_dev_attr(attr)->index;
285 struct i2c_client *client = to_i2c_client(dev);
286 struct adm1025_data *data = i2c_get_clientdata(client);
287 long val = simple_strtol(buf, NULL, 10);
288
289 mutex_lock(&data->update_lock);
290 data->temp_max[index] = TEMP_TO_REG(val);
291 i2c_smbus_write_byte_data(client, ADM1025_REG_TEMP_HIGH(index),
292 data->temp_max[index]);
293 mutex_unlock(&data->update_lock);
294 return count;
295}
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297#define set_temp(offset) \
Jean Delvared8543e72007-10-10 21:11:01 +0200298static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
299 show_temp, NULL, offset - 1); \
300static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IWUSR | S_IRUGO, \
301 show_temp_min, set_temp_min, offset - 1); \
302static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IWUSR | S_IRUGO, \
303 show_temp_max, set_temp_max, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304set_temp(1);
305set_temp(2);
306
Jean Delvare4e952792007-10-10 21:14:11 +0200307static ssize_t
308show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 struct adm1025_data *data = adm1025_update_device(dev);
311 return sprintf(buf, "%u\n", data->alarms);
312}
313static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
314
Jean Delvarebb081302007-10-10 21:11:52 +0200315static ssize_t
316show_alarm(struct device *dev, struct device_attribute *attr, char *buf)
317{
318 int bitnr = to_sensor_dev_attr(attr)->index;
319 struct adm1025_data *data = adm1025_update_device(dev);
320 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
321}
322static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
323static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
324static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
325static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
326static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
327static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9);
328static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 5);
329static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 4);
330static SENSOR_DEVICE_ATTR(temp1_fault, S_IRUGO, show_alarm, NULL, 14);
331
Jean Delvare4e952792007-10-10 21:14:11 +0200332static ssize_t
333show_vid(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 struct adm1025_data *data = adm1025_update_device(dev);
336 return sprintf(buf, "%u\n", vid_from_reg(data->vid, data->vrm));
337}
Grant Coady937df8d2005-05-12 11:59:29 +1000338static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Jean Delvare4e952792007-10-10 21:14:11 +0200340static ssize_t
341show_vrm(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Jean Delvare90d66192007-10-08 18:24:35 +0200343 struct adm1025_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return sprintf(buf, "%u\n", data->vrm);
345}
Jean Delvare4e952792007-10-10 21:14:11 +0200346static ssize_t set_vrm(struct device *dev, struct device_attribute *attr,
347 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Jean Delvare8f74efe2007-12-01 11:25:33 +0100349 struct adm1025_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 data->vrm = simple_strtoul(buf, NULL, 10);
351 return count;
352}
353static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm, set_vrm);
354
355/*
356 * Real code
357 */
358
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200359static struct attribute *adm1025_attributes[] = {
Jean Delvared8543e72007-10-10 21:11:01 +0200360 &sensor_dev_attr_in0_input.dev_attr.attr,
361 &sensor_dev_attr_in1_input.dev_attr.attr,
362 &sensor_dev_attr_in2_input.dev_attr.attr,
363 &sensor_dev_attr_in3_input.dev_attr.attr,
364 &sensor_dev_attr_in5_input.dev_attr.attr,
365 &sensor_dev_attr_in0_min.dev_attr.attr,
366 &sensor_dev_attr_in1_min.dev_attr.attr,
367 &sensor_dev_attr_in2_min.dev_attr.attr,
368 &sensor_dev_attr_in3_min.dev_attr.attr,
369 &sensor_dev_attr_in5_min.dev_attr.attr,
370 &sensor_dev_attr_in0_max.dev_attr.attr,
371 &sensor_dev_attr_in1_max.dev_attr.attr,
372 &sensor_dev_attr_in2_max.dev_attr.attr,
373 &sensor_dev_attr_in3_max.dev_attr.attr,
374 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvarebb081302007-10-10 21:11:52 +0200375 &sensor_dev_attr_in0_alarm.dev_attr.attr,
376 &sensor_dev_attr_in1_alarm.dev_attr.attr,
377 &sensor_dev_attr_in2_alarm.dev_attr.attr,
378 &sensor_dev_attr_in3_alarm.dev_attr.attr,
379 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Jean Delvared8543e72007-10-10 21:11:01 +0200380 &sensor_dev_attr_temp1_input.dev_attr.attr,
381 &sensor_dev_attr_temp2_input.dev_attr.attr,
382 &sensor_dev_attr_temp1_min.dev_attr.attr,
383 &sensor_dev_attr_temp2_min.dev_attr.attr,
384 &sensor_dev_attr_temp1_max.dev_attr.attr,
385 &sensor_dev_attr_temp2_max.dev_attr.attr,
Jean Delvarebb081302007-10-10 21:11:52 +0200386 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
387 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
388 &sensor_dev_attr_temp1_fault.dev_attr.attr,
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200389 &dev_attr_alarms.attr,
390 &dev_attr_cpu0_vid.attr,
391 &dev_attr_vrm.attr,
392 NULL
393};
394
395static const struct attribute_group adm1025_group = {
396 .attrs = adm1025_attributes,
397};
398
Jean Delvare4e952792007-10-10 21:14:11 +0200399static struct attribute *adm1025_attributes_in4[] = {
Jean Delvared8543e72007-10-10 21:11:01 +0200400 &sensor_dev_attr_in4_input.dev_attr.attr,
401 &sensor_dev_attr_in4_min.dev_attr.attr,
402 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvarebb081302007-10-10 21:11:52 +0200403 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200404 NULL
405};
406
Jean Delvare4e952792007-10-10 21:14:11 +0200407static const struct attribute_group adm1025_group_in4 = {
408 .attrs = adm1025_attributes_in4,
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200409};
410
Jean Delvare7dbafe02008-07-16 19:30:08 +0200411/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +0100412static int adm1025_detect(struct i2c_client *client,
Jean Delvare7dbafe02008-07-16 19:30:08 +0200413 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Jean Delvare7dbafe02008-07-16 19:30:08 +0200415 struct i2c_adapter *adapter = client->adapter;
Jean Delvare95606722009-12-09 20:35:51 +0100416 const char *name;
417 u8 man_id, chip_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvare7dbafe02008-07-16 19:30:08 +0200420 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Jean Delvare95606722009-12-09 20:35:51 +0100422 /* Check for unused bits */
423 if ((i2c_smbus_read_byte_data(client, ADM1025_REG_CONFIG) & 0x80)
424 || (i2c_smbus_read_byte_data(client, ADM1025_REG_STATUS1) & 0xC0)
425 || (i2c_smbus_read_byte_data(client, ADM1025_REG_STATUS2) & 0xBC)) {
426 dev_dbg(&adapter->dev, "ADM1025 detection failed at 0x%02x\n",
427 client->addr);
428 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430
Jean Delvare95606722009-12-09 20:35:51 +0100431 /* Identification */
432 chip_id = i2c_smbus_read_byte_data(client, ADM1025_REG_CHIP_ID);
433 if ((chip_id & 0xF0) != 0x20)
434 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Jean Delvare95606722009-12-09 20:35:51 +0100436 man_id = i2c_smbus_read_byte_data(client, ADM1025_REG_MAN_ID);
437 if (man_id == 0x41)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 name = "adm1025";
Jean Delvare95606722009-12-09 20:35:51 +0100439 else if (man_id == 0xA1 && client->addr != 0x2E)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 name = "ne1619";
Jean Delvare95606722009-12-09 20:35:51 +0100441 else
442 return -ENODEV;
443
Jean Delvare7dbafe02008-07-16 19:30:08 +0200444 strlcpy(info->type, name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Jean Delvare7dbafe02008-07-16 19:30:08 +0200446 return 0;
447}
448
449static int adm1025_probe(struct i2c_client *client,
450 const struct i2c_device_id *id)
451{
452 struct adm1025_data *data;
453 int err;
454 u8 config;
455
456 data = kzalloc(sizeof(struct adm1025_data), GFP_KERNEL);
457 if (!data) {
458 err = -ENOMEM;
459 goto exit;
460 }
461
462 i2c_set_clientdata(client, data);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100463 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /* Initialize the ADM1025 chip */
Jean Delvare4e952792007-10-10 21:14:11 +0200466 adm1025_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /* Register sysfs hooks */
Jean Delvare4e952792007-10-10 21:14:11 +0200469 if ((err = sysfs_create_group(&client->dev.kobj, &adm1025_group)))
Jean Delvare7dbafe02008-07-16 19:30:08 +0200470 goto exit_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 /* Pin 11 is either in4 (+12V) or VID4 */
Jean Delvare7dbafe02008-07-16 19:30:08 +0200473 config = i2c_smbus_read_byte_data(client, ADM1025_REG_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (!(config & 0x20)) {
Jean Delvare4e952792007-10-10 21:14:11 +0200475 if ((err = sysfs_create_group(&client->dev.kobj,
476 &adm1025_group_in4)))
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200477 goto exit_remove;
478 }
479
Jean Delvare4e952792007-10-10 21:14:11 +0200480 data->hwmon_dev = hwmon_device_register(&client->dev);
Tony Jones1beeffe2007-08-20 13:46:20 -0700481 if (IS_ERR(data->hwmon_dev)) {
482 err = PTR_ERR(data->hwmon_dev);
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200483 goto exit_remove;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485
486 return 0;
487
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200488exit_remove:
Jean Delvare4e952792007-10-10 21:14:11 +0200489 sysfs_remove_group(&client->dev.kobj, &adm1025_group);
490 sysfs_remove_group(&client->dev.kobj, &adm1025_group_in4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491exit_free:
492 kfree(data);
493exit:
494 return err;
495}
496
497static void adm1025_init_client(struct i2c_client *client)
498{
499 u8 reg;
500 struct adm1025_data *data = i2c_get_clientdata(client);
501 int i;
502
Jean Delvare303760b2005-07-31 21:52:01 +0200503 data->vrm = vid_which_vrm();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /*
506 * Set high limits
507 * Usually we avoid setting limits on driver init, but it happens
508 * that the ADM1025 comes with stupid default limits (all registers
509 * set to 0). In case the chip has not gone through any limit
510 * setting yet, we better set the high limits to the max so that
511 * no alarm triggers.
512 */
513 for (i=0; i<6; i++) {
514 reg = i2c_smbus_read_byte_data(client,
515 ADM1025_REG_IN_MAX(i));
516 if (reg == 0)
517 i2c_smbus_write_byte_data(client,
518 ADM1025_REG_IN_MAX(i),
519 0xFF);
520 }
521 for (i=0; i<2; i++) {
522 reg = i2c_smbus_read_byte_data(client,
523 ADM1025_REG_TEMP_HIGH(i));
524 if (reg == 0)
525 i2c_smbus_write_byte_data(client,
526 ADM1025_REG_TEMP_HIGH(i),
527 0x7F);
528 }
529
530 /*
531 * Start the conversions
532 */
533 reg = i2c_smbus_read_byte_data(client, ADM1025_REG_CONFIG);
534 if (!(reg & 0x01))
535 i2c_smbus_write_byte_data(client, ADM1025_REG_CONFIG,
536 (reg&0x7E)|0x01);
537}
538
Jean Delvare7dbafe02008-07-16 19:30:08 +0200539static int adm1025_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400541 struct adm1025_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Tony Jones1beeffe2007-08-20 13:46:20 -0700543 hwmon_device_unregister(data->hwmon_dev);
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200544 sysfs_remove_group(&client->dev.kobj, &adm1025_group);
Jean Delvare4e952792007-10-10 21:14:11 +0200545 sysfs_remove_group(&client->dev.kobj, &adm1025_group_in4);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400546
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400547 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return 0;
549}
550
551static struct adm1025_data *adm1025_update_device(struct device *dev)
552{
553 struct i2c_client *client = to_i2c_client(dev);
554 struct adm1025_data *data = i2c_get_clientdata(client);
555
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100556 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 if (time_after(jiffies, data->last_updated + HZ * 2) || !data->valid) {
559 int i;
560
561 dev_dbg(&client->dev, "Updating data.\n");
562 for (i=0; i<6; i++) {
563 data->in[i] = i2c_smbus_read_byte_data(client,
564 ADM1025_REG_IN(i));
565 data->in_min[i] = i2c_smbus_read_byte_data(client,
566 ADM1025_REG_IN_MIN(i));
567 data->in_max[i] = i2c_smbus_read_byte_data(client,
568 ADM1025_REG_IN_MAX(i));
569 }
570 for (i=0; i<2; i++) {
571 data->temp[i] = i2c_smbus_read_byte_data(client,
572 ADM1025_REG_TEMP(i));
573 data->temp_min[i] = i2c_smbus_read_byte_data(client,
574 ADM1025_REG_TEMP_LOW(i));
575 data->temp_max[i] = i2c_smbus_read_byte_data(client,
576 ADM1025_REG_TEMP_HIGH(i));
577 }
578 data->alarms = i2c_smbus_read_byte_data(client,
579 ADM1025_REG_STATUS1)
580 | (i2c_smbus_read_byte_data(client,
581 ADM1025_REG_STATUS2) << 8);
582 data->vid = (i2c_smbus_read_byte_data(client,
583 ADM1025_REG_VID) & 0x0f)
584 | ((i2c_smbus_read_byte_data(client,
585 ADM1025_REG_VID4) & 0x01) << 4);
586
587 data->last_updated = jiffies;
588 data->valid = 1;
589 }
590
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100591 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 return data;
594}
595
596static int __init sensors_adm1025_init(void)
597{
598 return i2c_add_driver(&adm1025_driver);
599}
600
601static void __exit sensors_adm1025_exit(void)
602{
603 i2c_del_driver(&adm1025_driver);
604}
605
606MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
607MODULE_DESCRIPTION("ADM1025 driver");
608MODULE_LICENSE("GPL");
609
610module_init(sensors_adm1025_init);
611module_exit(sensors_adm1025_exit);