blob: c1e8d0e965f7a9f25ff42e53ab160760b9889713 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * lm90.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
Jean Delvare30d73942005-06-05 21:27:28 +02004 * Copyright (C) 2003-2005 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Based on the lm83 driver. The LM90 is a sensor chip made by National
7 * Semiconductor. It reports up to two temperatures (its own plus up to
8 * one external one) with a 0.125 deg resolution (1 deg for local
9 * temperature) and a 3-4 deg accuracy. Complete datasheet can be
10 * obtained from National's website at:
11 * http://www.national.com/pf/LM/LM90.html
12 *
13 * This driver also supports the LM89 and LM99, two other sensor chips
14 * made by National Semiconductor. Both have an increased remote
15 * temperature measurement accuracy (1 degree), and the LM99
16 * additionally shifts remote temperatures (measured and limits) by 16
17 * degrees, which allows for higher temperatures measurement. The
18 * driver doesn't handle it since it can be done easily in user-space.
19 * Complete datasheets can be obtained from National's website at:
20 * http://www.national.com/pf/LM/LM89.html
21 * http://www.national.com/pf/LM/LM99.html
Steven Cole44bbe872005-05-03 18:21:25 -060022 * Note that there is no way to differentiate between both chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 *
24 * This driver also supports the LM86, another sensor chip made by
25 * National Semiconductor. It is exactly similar to the LM90 except it
26 * has a higher accuracy.
27 * Complete datasheet can be obtained from National's website at:
28 * http://www.national.com/pf/LM/LM86.html
29 *
30 * This driver also supports the ADM1032, a sensor chip made by Analog
31 * Devices. That chip is similar to the LM90, with a few differences
32 * that are not handled by this driver. Complete datasheet can be
33 * obtained from Analog's website at:
34 * http://products.analog.com/products/info.asp?product=ADM1032
35 * Among others, it has a higher accuracy than the LM90, much like the
36 * LM86 does.
37 *
38 * This driver also supports the MAX6657, MAX6658 and MAX6659 sensor
39 * chips made by Maxim. These chips are similar to the LM86. Complete
40 * datasheet can be obtained at Maxim's website at:
41 * http://www.maxim-ic.com/quick_view2.cfm/qv_pk/2578
Steven Cole44bbe872005-05-03 18:21:25 -060042 * Note that there is no easy way to differentiate between the three
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * variants. The extra address and features of the MAX6659 are not
44 * supported by this driver.
45 *
46 * This driver also supports the ADT7461 chip from Analog Devices but
47 * only in its "compatability mode". If an ADT7461 chip is found but
48 * is configured in non-compatible mode (where its temperature
49 * register values are decoded differently) it is ignored by this
50 * driver. Complete datasheet can be obtained from Analog's website
51 * at:
52 * http://products.analog.com/products/info.asp?product=ADT7461
53 *
54 * Since the LM90 was the first chipset supported by this driver, most
55 * comments will refer to this chipset, but are actually general and
56 * concern all supported chipsets, unless mentioned otherwise.
57 *
58 * This program is free software; you can redistribute it and/or modify
59 * it under the terms of the GNU General Public License as published by
60 * the Free Software Foundation; either version 2 of the License, or
61 * (at your option) any later version.
62 *
63 * This program is distributed in the hope that it will be useful,
64 * but WITHOUT ANY WARRANTY; without even the implied warranty of
65 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
66 * GNU General Public License for more details.
67 *
68 * You should have received a copy of the GNU General Public License
69 * along with this program; if not, write to the Free Software
70 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
71 */
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <linux/module.h>
74#include <linux/init.h>
75#include <linux/slab.h>
76#include <linux/jiffies.h>
77#include <linux/i2c.h>
78#include <linux/i2c-sensor.h>
Jean Delvare10c08f82005-06-06 19:34:45 +020079#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040080#include <linux/hwmon.h>
81#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83/*
84 * Addresses to scan
85 * Address is fully defined internally and cannot be changed except for
86 * MAX6659.
87 * LM86, LM89, LM90, LM99, ADM1032, MAX6657 and MAX6658 have address 0x4c.
88 * LM89-1, and LM99-1 have address 0x4d.
89 * MAX6659 can have address 0x4c, 0x4d or 0x4e (unsupported).
90 * ADT7461 always has address 0x4c.
91 */
92
93static unsigned short normal_i2c[] = { 0x4c, 0x4d, I2C_CLIENT_END };
94static unsigned int normal_isa[] = { I2C_CLIENT_ISA_END };
95
96/*
97 * Insmod parameters
98 */
99
100SENSORS_INSMOD_6(lm90, adm1032, lm99, lm86, max6657, adt7461);
101
102/*
103 * The LM90 registers
104 */
105
106#define LM90_REG_R_MAN_ID 0xFE
107#define LM90_REG_R_CHIP_ID 0xFF
108#define LM90_REG_R_CONFIG1 0x03
109#define LM90_REG_W_CONFIG1 0x09
110#define LM90_REG_R_CONFIG2 0xBF
111#define LM90_REG_W_CONFIG2 0xBF
112#define LM90_REG_R_CONVRATE 0x04
113#define LM90_REG_W_CONVRATE 0x0A
114#define LM90_REG_R_STATUS 0x02
115#define LM90_REG_R_LOCAL_TEMP 0x00
116#define LM90_REG_R_LOCAL_HIGH 0x05
117#define LM90_REG_W_LOCAL_HIGH 0x0B
118#define LM90_REG_R_LOCAL_LOW 0x06
119#define LM90_REG_W_LOCAL_LOW 0x0C
120#define LM90_REG_R_LOCAL_CRIT 0x20
121#define LM90_REG_W_LOCAL_CRIT 0x20
122#define LM90_REG_R_REMOTE_TEMPH 0x01
123#define LM90_REG_R_REMOTE_TEMPL 0x10
124#define LM90_REG_R_REMOTE_OFFSH 0x11
125#define LM90_REG_W_REMOTE_OFFSH 0x11
126#define LM90_REG_R_REMOTE_OFFSL 0x12
127#define LM90_REG_W_REMOTE_OFFSL 0x12
128#define LM90_REG_R_REMOTE_HIGHH 0x07
129#define LM90_REG_W_REMOTE_HIGHH 0x0D
130#define LM90_REG_R_REMOTE_HIGHL 0x13
131#define LM90_REG_W_REMOTE_HIGHL 0x13
132#define LM90_REG_R_REMOTE_LOWH 0x08
133#define LM90_REG_W_REMOTE_LOWH 0x0E
134#define LM90_REG_R_REMOTE_LOWL 0x14
135#define LM90_REG_W_REMOTE_LOWL 0x14
136#define LM90_REG_R_REMOTE_CRIT 0x19
137#define LM90_REG_W_REMOTE_CRIT 0x19
138#define LM90_REG_R_TCRIT_HYST 0x21
139#define LM90_REG_W_TCRIT_HYST 0x21
140
141/*
142 * Conversions and various macros
143 * For local temperatures and limits, critical limits and the hysteresis
Steven Cole44bbe872005-05-03 18:21:25 -0600144 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 * For remote temperatures and limits, it uses signed 11-bit values with
Steven Cole44bbe872005-05-03 18:21:25 -0600146 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 */
148
149#define TEMP1_FROM_REG(val) ((val) * 1000)
150#define TEMP1_TO_REG(val) ((val) <= -128000 ? -128 : \
151 (val) >= 127000 ? 127 : \
152 (val) < 0 ? ((val) - 500) / 1000 : \
153 ((val) + 500) / 1000)
154#define TEMP2_FROM_REG(val) ((val) / 32 * 125)
155#define TEMP2_TO_REG(val) ((val) <= -128000 ? 0x8000 : \
156 (val) >= 127875 ? 0x7FE0 : \
157 (val) < 0 ? ((val) - 62) / 125 * 32 : \
158 ((val) + 62) / 125 * 32)
159#define HYST_TO_REG(val) ((val) <= 0 ? 0 : (val) >= 30500 ? 31 : \
160 ((val) + 500) / 1000)
161
162/*
163 * ADT7461 is almost identical to LM90 except that attempts to write
164 * values that are outside the range 0 < temp < 127 are treated as
165 * the boundary value.
166 */
167
168#define TEMP1_TO_REG_ADT7461(val) ((val) <= 0 ? 0 : \
169 (val) >= 127000 ? 127 : \
170 ((val) + 500) / 1000)
171#define TEMP2_TO_REG_ADT7461(val) ((val) <= 0 ? 0 : \
172 (val) >= 127750 ? 0x7FC0 : \
173 ((val) + 125) / 250 * 64)
174
175/*
176 * Functions declaration
177 */
178
179static int lm90_attach_adapter(struct i2c_adapter *adapter);
180static int lm90_detect(struct i2c_adapter *adapter, int address,
181 int kind);
182static void lm90_init_client(struct i2c_client *client);
183static int lm90_detach_client(struct i2c_client *client);
184static struct lm90_data *lm90_update_device(struct device *dev);
185
186/*
187 * Driver data (common to all clients)
188 */
189
190static struct i2c_driver lm90_driver = {
191 .owner = THIS_MODULE,
192 .name = "lm90",
193 .id = I2C_DRIVERID_LM90,
194 .flags = I2C_DF_NOTIFY,
195 .attach_adapter = lm90_attach_adapter,
196 .detach_client = lm90_detach_client,
197};
198
199/*
200 * Client data (each client gets its own)
201 */
202
203struct lm90_data {
204 struct i2c_client client;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400205 struct class_device *class_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 struct semaphore update_lock;
207 char valid; /* zero until following fields are valid */
208 unsigned long last_updated; /* in jiffies */
209 int kind;
210
211 /* registers values */
Jean Delvare30d73942005-06-05 21:27:28 +0200212 s8 temp8[5]; /* 0: local input
213 1: local low limit
214 2: local high limit
215 3: local critical limit
216 4: remote critical limit */
217 s16 temp11[3]; /* 0: remote input
218 1: remote low limit
219 2: remote high limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 u8 temp_hyst;
221 u8 alarms; /* bitvector */
222};
223
224/*
225 * Sysfs stuff
226 */
227
Jean Delvare30d73942005-06-05 21:27:28 +0200228static ssize_t show_temp8(struct device *dev, struct device_attribute *devattr,
229 char *buf)
230{
231 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
232 struct lm90_data *data = lm90_update_device(dev);
233 return sprintf(buf, "%d\n", TEMP1_FROM_REG(data->temp8[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Jean Delvare30d73942005-06-05 21:27:28 +0200236static ssize_t set_temp8(struct device *dev, struct device_attribute *devattr,
237 const char *buf, size_t count)
238{
239 static const u8 reg[4] = {
240 LM90_REG_W_LOCAL_LOW,
241 LM90_REG_W_LOCAL_HIGH,
242 LM90_REG_W_LOCAL_CRIT,
243 LM90_REG_W_REMOTE_CRIT,
244 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Jean Delvare30d73942005-06-05 21:27:28 +0200246 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
247 struct i2c_client *client = to_i2c_client(dev);
248 struct lm90_data *data = i2c_get_clientdata(client);
249 long val = simple_strtol(buf, NULL, 10);
250 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Jean Delvare30d73942005-06-05 21:27:28 +0200252 down(&data->update_lock);
253 if (data->kind == adt7461)
254 data->temp8[nr] = TEMP1_TO_REG_ADT7461(val);
255 else
256 data->temp8[nr] = TEMP1_TO_REG(val);
257 i2c_smbus_write_byte_data(client, reg[nr - 1], data->temp8[nr]);
258 up(&data->update_lock);
259 return count;
260}
261
262static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
263 char *buf)
264{
265 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
266 struct lm90_data *data = lm90_update_device(dev);
267 return sprintf(buf, "%d\n", TEMP2_FROM_REG(data->temp11[attr->index]));
268}
269
270static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
271 const char *buf, size_t count)
272{
273 static const u8 reg[4] = {
274 LM90_REG_W_REMOTE_LOWH,
275 LM90_REG_W_REMOTE_LOWL,
276 LM90_REG_W_REMOTE_HIGHH,
277 LM90_REG_W_REMOTE_HIGHL,
278 };
279
280 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
281 struct i2c_client *client = to_i2c_client(dev);
282 struct lm90_data *data = i2c_get_clientdata(client);
283 long val = simple_strtol(buf, NULL, 10);
284 int nr = attr->index;
285
286 down(&data->update_lock);
287 if (data->kind == adt7461)
288 data->temp11[nr] = TEMP2_TO_REG_ADT7461(val);
289 else
290 data->temp11[nr] = TEMP2_TO_REG(val);
291 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2],
292 data->temp11[nr] >> 8);
293 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2 + 1],
294 data->temp11[nr] & 0xff);
295 up(&data->update_lock);
296 return count;
297}
298
299static ssize_t show_temphyst(struct device *dev, struct device_attribute *devattr,
300 char *buf)
301{
302 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
303 struct lm90_data *data = lm90_update_device(dev);
304 return sprintf(buf, "%d\n", TEMP1_FROM_REG(data->temp8[attr->index])
305 - TEMP1_FROM_REG(data->temp_hyst));
306}
307
308static ssize_t set_temphyst(struct device *dev, struct device_attribute *dummy,
309 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 struct i2c_client *client = to_i2c_client(dev);
312 struct lm90_data *data = i2c_get_clientdata(client);
313 long val = simple_strtol(buf, NULL, 10);
314 long hyst;
315
316 down(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200317 hyst = TEMP1_FROM_REG(data->temp8[3]) - val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 i2c_smbus_write_byte_data(client, LM90_REG_W_TCRIT_HYST,
319 HYST_TO_REG(hyst));
320 up(&data->update_lock);
321 return count;
322}
323
Jean Delvare30d73942005-06-05 21:27:28 +0200324static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
325 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct lm90_data *data = lm90_update_device(dev);
328 return sprintf(buf, "%d\n", data->alarms);
329}
330
Jean Delvare30d73942005-06-05 21:27:28 +0200331static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp8, NULL, 0);
332static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp11, NULL, 0);
333static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp8,
334 set_temp8, 1);
335static SENSOR_DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
336 set_temp11, 1);
337static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp8,
338 set_temp8, 2);
339static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
340 set_temp11, 2);
341static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp8,
342 set_temp8, 3);
343static SENSOR_DEVICE_ATTR(temp2_crit, S_IWUSR | S_IRUGO, show_temp8,
344 set_temp8, 4);
345static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temphyst,
346 set_temphyst, 3);
347static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, show_temphyst, NULL, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
349
350/*
351 * Real code
352 */
353
354static int lm90_attach_adapter(struct i2c_adapter *adapter)
355{
356 if (!(adapter->class & I2C_CLASS_HWMON))
357 return 0;
358 return i2c_detect(adapter, &addr_data, lm90_detect);
359}
360
361/*
362 * The following function does more than just detection. If detection
363 * succeeds, it also registers the new chip.
364 */
365static int lm90_detect(struct i2c_adapter *adapter, int address, int kind)
366{
367 struct i2c_client *new_client;
368 struct lm90_data *data;
369 int err = 0;
370 const char *name = "";
371
372 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
373 goto exit;
374
375 if (!(data = kmalloc(sizeof(struct lm90_data), GFP_KERNEL))) {
376 err = -ENOMEM;
377 goto exit;
378 }
379 memset(data, 0, sizeof(struct lm90_data));
380
381 /* The common I2C client data is placed right before the
382 LM90-specific data. */
383 new_client = &data->client;
384 i2c_set_clientdata(new_client, data);
385 new_client->addr = address;
386 new_client->adapter = adapter;
387 new_client->driver = &lm90_driver;
388 new_client->flags = 0;
389
390 /*
391 * Now we do the remaining detection. A negative kind means that
392 * the driver was loaded with no force parameter (default), so we
393 * must both detect and identify the chip. A zero kind means that
394 * the driver was loaded with the force parameter, the detection
395 * step shall be skipped. A positive kind means that the driver
396 * was loaded with the force parameter and a given kind of chip is
397 * requested, so both the detection and the identification steps
398 * are skipped.
399 */
400
401 /* Default to an LM90 if forced */
402 if (kind == 0)
403 kind = lm90;
404
405 if (kind < 0) { /* detection and identification */
406 u8 man_id, chip_id, reg_config1, reg_convrate;
407
408 man_id = i2c_smbus_read_byte_data(new_client,
409 LM90_REG_R_MAN_ID);
410 chip_id = i2c_smbus_read_byte_data(new_client,
411 LM90_REG_R_CHIP_ID);
412 reg_config1 = i2c_smbus_read_byte_data(new_client,
413 LM90_REG_R_CONFIG1);
414 reg_convrate = i2c_smbus_read_byte_data(new_client,
415 LM90_REG_R_CONVRATE);
416
417 if (man_id == 0x01) { /* National Semiconductor */
418 u8 reg_config2;
419
420 reg_config2 = i2c_smbus_read_byte_data(new_client,
421 LM90_REG_R_CONFIG2);
422
423 if ((reg_config1 & 0x2A) == 0x00
424 && (reg_config2 & 0xF8) == 0x00
425 && reg_convrate <= 0x09) {
426 if (address == 0x4C
427 && (chip_id & 0xF0) == 0x20) { /* LM90 */
428 kind = lm90;
429 } else
430 if ((chip_id & 0xF0) == 0x30) { /* LM89/LM99 */
431 kind = lm99;
432 } else
433 if (address == 0x4C
434 && (chip_id & 0xF0) == 0x10) { /* LM86 */
435 kind = lm86;
436 }
437 }
438 } else
439 if (man_id == 0x41) { /* Analog Devices */
440 if (address == 0x4C
441 && (chip_id & 0xF0) == 0x40 /* ADM1032 */
442 && (reg_config1 & 0x3F) == 0x00
443 && reg_convrate <= 0x0A) {
444 kind = adm1032;
445 } else
446 if (address == 0x4c
447 && chip_id == 0x51 /* ADT7461 */
448 && (reg_config1 & 0x1F) == 0x00 /* check compat mode */
449 && reg_convrate <= 0x0A) {
450 kind = adt7461;
451 }
452 } else
453 if (man_id == 0x4D) { /* Maxim */
454 /*
455 * The Maxim variants do NOT have a chip_id register.
456 * Reading from that address will return the last read
457 * value, which in our case is those of the man_id
458 * register. Likewise, the config1 register seems to
459 * lack a low nibble, so the value will be those of the
460 * previous read, so in our case those of the man_id
461 * register.
462 */
463 if (chip_id == man_id
464 && (reg_config1 & 0x1F) == (man_id & 0x0F)
465 && reg_convrate <= 0x09) {
466 kind = max6657;
467 }
468 }
469
470 if (kind <= 0) { /* identification failed */
471 dev_info(&adapter->dev,
472 "Unsupported chip (man_id=0x%02X, "
473 "chip_id=0x%02X).\n", man_id, chip_id);
474 goto exit_free;
475 }
476 }
477
478 if (kind == lm90) {
479 name = "lm90";
480 } else if (kind == adm1032) {
481 name = "adm1032";
482 } else if (kind == lm99) {
483 name = "lm99";
484 } else if (kind == lm86) {
485 name = "lm86";
486 } else if (kind == max6657) {
487 name = "max6657";
488 } else if (kind == adt7461) {
489 name = "adt7461";
490 }
491
492 /* We can fill in the remaining client fields */
493 strlcpy(new_client->name, name, I2C_NAME_SIZE);
494 data->valid = 0;
495 data->kind = kind;
496 init_MUTEX(&data->update_lock);
497
498 /* Tell the I2C layer a new client has arrived */
499 if ((err = i2c_attach_client(new_client)))
500 goto exit_free;
501
502 /* Initialize the LM90 chip */
503 lm90_init_client(new_client);
504
505 /* Register sysfs hooks */
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400506 data->class_dev = hwmon_device_register(&new_client->dev);
507 if (IS_ERR(data->class_dev)) {
508 err = PTR_ERR(data->class_dev);
509 goto exit_detach;
510 }
511
Jean Delvare30d73942005-06-05 21:27:28 +0200512 device_create_file(&new_client->dev,
513 &sensor_dev_attr_temp1_input.dev_attr);
514 device_create_file(&new_client->dev,
515 &sensor_dev_attr_temp2_input.dev_attr);
516 device_create_file(&new_client->dev,
517 &sensor_dev_attr_temp1_min.dev_attr);
518 device_create_file(&new_client->dev,
519 &sensor_dev_attr_temp2_min.dev_attr);
520 device_create_file(&new_client->dev,
521 &sensor_dev_attr_temp1_max.dev_attr);
522 device_create_file(&new_client->dev,
523 &sensor_dev_attr_temp2_max.dev_attr);
524 device_create_file(&new_client->dev,
525 &sensor_dev_attr_temp1_crit.dev_attr);
526 device_create_file(&new_client->dev,
527 &sensor_dev_attr_temp2_crit.dev_attr);
528 device_create_file(&new_client->dev,
529 &sensor_dev_attr_temp1_crit_hyst.dev_attr);
530 device_create_file(&new_client->dev,
531 &sensor_dev_attr_temp2_crit_hyst.dev_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 device_create_file(&new_client->dev, &dev_attr_alarms);
533
534 return 0;
535
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400536exit_detach:
537 i2c_detach_client(new_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538exit_free:
539 kfree(data);
540exit:
541 return err;
542}
543
544static void lm90_init_client(struct i2c_client *client)
545{
546 u8 config;
547
548 /*
549 * Start the conversions.
550 */
551 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE,
552 5); /* 2 Hz */
553 config = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG1);
554 if (config & 0x40)
555 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
556 config & 0xBF); /* run */
557}
558
559static int lm90_detach_client(struct i2c_client *client)
560{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400561 struct lm90_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 int err;
563
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400564 hwmon_device_unregister(data->class_dev);
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if ((err = i2c_detach_client(client))) {
567 dev_err(&client->dev, "Client deregistration failed, "
568 "client not detached.\n");
569 return err;
570 }
571
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400572 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return 0;
574}
575
576static struct lm90_data *lm90_update_device(struct device *dev)
577{
578 struct i2c_client *client = to_i2c_client(dev);
579 struct lm90_data *data = i2c_get_clientdata(client);
580
581 down(&data->update_lock);
582
583 if (time_after(jiffies, data->last_updated + HZ * 2) || !data->valid) {
584 u8 oldh, newh;
585
586 dev_dbg(&client->dev, "Updating lm90 data.\n");
Jean Delvare30d73942005-06-05 21:27:28 +0200587 data->temp8[0] = i2c_smbus_read_byte_data(client,
588 LM90_REG_R_LOCAL_TEMP);
589 data->temp8[1] = i2c_smbus_read_byte_data(client,
590 LM90_REG_R_LOCAL_LOW);
591 data->temp8[2] = i2c_smbus_read_byte_data(client,
592 LM90_REG_R_LOCAL_HIGH);
593 data->temp8[3] = i2c_smbus_read_byte_data(client,
594 LM90_REG_R_LOCAL_CRIT);
595 data->temp8[4] = i2c_smbus_read_byte_data(client,
596 LM90_REG_R_REMOTE_CRIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 data->temp_hyst = i2c_smbus_read_byte_data(client,
598 LM90_REG_R_TCRIT_HYST);
599
600 /*
601 * There is a trick here. We have to read two registers to
602 * have the remote sensor temperature, but we have to beware
603 * a conversion could occur inbetween the readings. The
604 * datasheet says we should either use the one-shot
605 * conversion register, which we don't want to do (disables
606 * hardware monitoring) or monitor the busy bit, which is
607 * impossible (we can't read the values and monitor that bit
608 * at the exact same time). So the solution used here is to
609 * read the high byte once, then the low byte, then the high
610 * byte again. If the new high byte matches the old one,
611 * then we have a valid reading. Else we have to read the low
612 * byte again, and now we believe we have a correct reading.
613 */
614 oldh = i2c_smbus_read_byte_data(client,
615 LM90_REG_R_REMOTE_TEMPH);
Jean Delvare30d73942005-06-05 21:27:28 +0200616 data->temp11[0] = i2c_smbus_read_byte_data(client,
617 LM90_REG_R_REMOTE_TEMPL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 newh = i2c_smbus_read_byte_data(client,
619 LM90_REG_R_REMOTE_TEMPH);
620 if (newh != oldh) {
Jean Delvare30d73942005-06-05 21:27:28 +0200621 data->temp11[0] = i2c_smbus_read_byte_data(client,
622 LM90_REG_R_REMOTE_TEMPL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623#ifdef DEBUG
624 oldh = i2c_smbus_read_byte_data(client,
625 LM90_REG_R_REMOTE_TEMPH);
626 /* oldh is actually newer */
627 if (newh != oldh)
628 dev_warn(&client->dev, "Remote temperature may be "
629 "wrong.\n");
630#endif
631 }
Jean Delvare30d73942005-06-05 21:27:28 +0200632 data->temp11[0] |= (newh << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Jean Delvare30d73942005-06-05 21:27:28 +0200634 data->temp11[1] = (i2c_smbus_read_byte_data(client,
635 LM90_REG_R_REMOTE_LOWH) << 8) +
636 i2c_smbus_read_byte_data(client,
637 LM90_REG_R_REMOTE_LOWL);
638 data->temp11[2] = (i2c_smbus_read_byte_data(client,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 LM90_REG_R_REMOTE_HIGHH) << 8) +
640 i2c_smbus_read_byte_data(client,
641 LM90_REG_R_REMOTE_HIGHL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 data->alarms = i2c_smbus_read_byte_data(client,
643 LM90_REG_R_STATUS);
644
645 data->last_updated = jiffies;
646 data->valid = 1;
647 }
648
649 up(&data->update_lock);
650
651 return data;
652}
653
654static int __init sensors_lm90_init(void)
655{
656 return i2c_add_driver(&lm90_driver);
657}
658
659static void __exit sensors_lm90_exit(void)
660{
661 i2c_del_driver(&lm90_driver);
662}
663
664MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
665MODULE_DESCRIPTION("LM90/ADM1032 driver");
666MODULE_LICENSE("GPL");
667
668module_init(sensors_lm90_init);
669module_exit(sensors_lm90_exit);