blob: 90489b8f5c8b5da4165ab2652aaf996f3c434fed [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 Delvare6388a382008-10-17 17:51:09 +02004 * Copyright (C) 2003-2008 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:
Jean Delvare90209b42005-10-26 22:20:21 +020034 * http://www.analog.com/en/prod/0,2877,ADM1032,00.html
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * 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
Jean Delvare69f2f962007-09-05 14:15:37 +020044 * supported by this driver. These chips lack the remote temperature
45 * offset feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 *
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040047 * This driver also supports the MAX6680 and MAX6681, two other sensor
48 * chips made by Maxim. These are quite similar to the other Maxim
49 * chips. Complete datasheet can be obtained at:
50 * http://www.maxim-ic.com/quick_view2.cfm/qv_pk/3370
51 * The MAX6680 and MAX6681 only differ in the pinout so they can be
52 * treated identically.
53 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * This driver also supports the ADT7461 chip from Analog Devices but
55 * only in its "compatability mode". If an ADT7461 chip is found but
56 * is configured in non-compatible mode (where its temperature
57 * register values are decoded differently) it is ignored by this
58 * driver. Complete datasheet can be obtained from Analog's website
59 * at:
Jean Delvare90209b42005-10-26 22:20:21 +020060 * http://www.analog.com/en/prod/0,2877,ADT7461,00.html
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 *
62 * Since the LM90 was the first chipset supported by this driver, most
63 * comments will refer to this chipset, but are actually general and
64 * concern all supported chipsets, unless mentioned otherwise.
65 *
66 * This program is free software; you can redistribute it and/or modify
67 * it under the terms of the GNU General Public License as published by
68 * the Free Software Foundation; either version 2 of the License, or
69 * (at your option) any later version.
70 *
71 * This program is distributed in the hope that it will be useful,
72 * but WITHOUT ANY WARRANTY; without even the implied warranty of
73 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
74 * GNU General Public License for more details.
75 *
76 * You should have received a copy of the GNU General Public License
77 * along with this program; if not, write to the Free Software
78 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
79 */
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/module.h>
82#include <linux/init.h>
83#include <linux/slab.h>
84#include <linux/jiffies.h>
85#include <linux/i2c.h>
Jean Delvare10c08f82005-06-06 19:34:45 +020086#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040087#include <linux/hwmon.h>
88#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010089#include <linux/mutex.h>
Jean Delvare0e39e012006-09-24 21:16:40 +020090#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/*
93 * Addresses to scan
94 * Address is fully defined internally and cannot be changed except for
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040095 * MAX6659, MAX6680 and MAX6681.
Jean Delvare90209b42005-10-26 22:20:21 +020096 * LM86, LM89, LM90, LM99, ADM1032, ADM1032-1, ADT7461, MAX6657 and MAX6658
97 * have address 0x4c.
98 * ADM1032-2, ADT7461-2, LM89-1, and LM99-1 have address 0x4d.
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * MAX6659 can have address 0x4c, 0x4d or 0x4e (unsupported).
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400100 * MAX6680 and MAX6681 can have address 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b,
101 * 0x4c, 0x4d or 0x4e.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
103
Mark M. Hoffman25e9c862008-02-17 22:28:03 -0500104static const unsigned short normal_i2c[] = {
105 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x4c, 0x4d, 0x4e, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107/*
108 * Insmod parameters
109 */
110
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400111I2C_CLIENT_INSMOD_7(lm90, adm1032, lm99, lm86, max6657, adt7461, max6680);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113/*
114 * The LM90 registers
115 */
116
117#define LM90_REG_R_MAN_ID 0xFE
118#define LM90_REG_R_CHIP_ID 0xFF
119#define LM90_REG_R_CONFIG1 0x03
120#define LM90_REG_W_CONFIG1 0x09
121#define LM90_REG_R_CONFIG2 0xBF
122#define LM90_REG_W_CONFIG2 0xBF
123#define LM90_REG_R_CONVRATE 0x04
124#define LM90_REG_W_CONVRATE 0x0A
125#define LM90_REG_R_STATUS 0x02
126#define LM90_REG_R_LOCAL_TEMP 0x00
127#define LM90_REG_R_LOCAL_HIGH 0x05
128#define LM90_REG_W_LOCAL_HIGH 0x0B
129#define LM90_REG_R_LOCAL_LOW 0x06
130#define LM90_REG_W_LOCAL_LOW 0x0C
131#define LM90_REG_R_LOCAL_CRIT 0x20
132#define LM90_REG_W_LOCAL_CRIT 0x20
133#define LM90_REG_R_REMOTE_TEMPH 0x01
134#define LM90_REG_R_REMOTE_TEMPL 0x10
135#define LM90_REG_R_REMOTE_OFFSH 0x11
136#define LM90_REG_W_REMOTE_OFFSH 0x11
137#define LM90_REG_R_REMOTE_OFFSL 0x12
138#define LM90_REG_W_REMOTE_OFFSL 0x12
139#define LM90_REG_R_REMOTE_HIGHH 0x07
140#define LM90_REG_W_REMOTE_HIGHH 0x0D
141#define LM90_REG_R_REMOTE_HIGHL 0x13
142#define LM90_REG_W_REMOTE_HIGHL 0x13
143#define LM90_REG_R_REMOTE_LOWH 0x08
144#define LM90_REG_W_REMOTE_LOWH 0x0E
145#define LM90_REG_R_REMOTE_LOWL 0x14
146#define LM90_REG_W_REMOTE_LOWL 0x14
147#define LM90_REG_R_REMOTE_CRIT 0x19
148#define LM90_REG_W_REMOTE_CRIT 0x19
149#define LM90_REG_R_TCRIT_HYST 0x21
150#define LM90_REG_W_TCRIT_HYST 0x21
151
Jean Delvaref65e1702008-10-17 17:51:09 +0200152/* MAX6657-specific registers */
153
154#define MAX6657_REG_R_LOCAL_TEMPL 0x11
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*
157 * Conversions and various macros
158 * For local temperatures and limits, critical limits and the hysteresis
Steven Cole44bbe872005-05-03 18:21:25 -0600159 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 * For remote temperatures and limits, it uses signed 11-bit values with
Steven Cole44bbe872005-05-03 18:21:25 -0600161 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 */
163
164#define TEMP1_FROM_REG(val) ((val) * 1000)
165#define TEMP1_TO_REG(val) ((val) <= -128000 ? -128 : \
166 (val) >= 127000 ? 127 : \
167 (val) < 0 ? ((val) - 500) / 1000 : \
168 ((val) + 500) / 1000)
169#define TEMP2_FROM_REG(val) ((val) / 32 * 125)
170#define TEMP2_TO_REG(val) ((val) <= -128000 ? 0x8000 : \
171 (val) >= 127875 ? 0x7FE0 : \
172 (val) < 0 ? ((val) - 62) / 125 * 32 : \
173 ((val) + 62) / 125 * 32)
174#define HYST_TO_REG(val) ((val) <= 0 ? 0 : (val) >= 30500 ? 31 : \
175 ((val) + 500) / 1000)
176
177/*
178 * ADT7461 is almost identical to LM90 except that attempts to write
179 * values that are outside the range 0 < temp < 127 are treated as
180 * the boundary value.
181 */
182
183#define TEMP1_TO_REG_ADT7461(val) ((val) <= 0 ? 0 : \
184 (val) >= 127000 ? 127 : \
185 ((val) + 500) / 1000)
186#define TEMP2_TO_REG_ADT7461(val) ((val) <= 0 ? 0 : \
187 (val) >= 127750 ? 0x7FC0 : \
188 ((val) + 125) / 250 * 64)
189
190/*
191 * Functions declaration
192 */
193
Jean Delvare9b0e8522008-07-16 19:30:15 +0200194static int lm90_detect(struct i2c_client *client, int kind,
195 struct i2c_board_info *info);
196static int lm90_probe(struct i2c_client *client,
197 const struct i2c_device_id *id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198static void lm90_init_client(struct i2c_client *client);
Jean Delvare9b0e8522008-07-16 19:30:15 +0200199static int lm90_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200static struct lm90_data *lm90_update_device(struct device *dev);
201
202/*
203 * Driver data (common to all clients)
204 */
205
Jean Delvare9b0e8522008-07-16 19:30:15 +0200206static const struct i2c_device_id lm90_id[] = {
207 { "adm1032", adm1032 },
208 { "adt7461", adt7461 },
209 { "lm90", lm90 },
210 { "lm86", lm86 },
211 { "lm89", lm99 },
212 { "lm99", lm99 }, /* Missing temperature offset */
213 { "max6657", max6657 },
214 { "max6658", max6657 },
215 { "max6659", max6657 },
216 { "max6680", max6680 },
217 { "max6681", max6680 },
218 { }
219};
220MODULE_DEVICE_TABLE(i2c, lm90_id);
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222static struct i2c_driver lm90_driver = {
Jean Delvare9b0e8522008-07-16 19:30:15 +0200223 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100224 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100225 .name = "lm90",
226 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200227 .probe = lm90_probe,
228 .remove = lm90_remove,
229 .id_table = lm90_id,
230 .detect = lm90_detect,
231 .address_data = &addr_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232};
233
234/*
235 * Client data (each client gets its own)
236 */
237
238struct lm90_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700239 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100240 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 char valid; /* zero until following fields are valid */
242 unsigned long last_updated; /* in jiffies */
243 int kind;
244
245 /* registers values */
Jean Delvaref65e1702008-10-17 17:51:09 +0200246 s8 temp8[4]; /* 0: local low limit
247 1: local high limit
248 2: local critical limit
249 3: remote critical limit */
250 s16 temp11[5]; /* 0: remote input
Jean Delvare30d73942005-06-05 21:27:28 +0200251 1: remote low limit
Jean Delvare69f2f962007-09-05 14:15:37 +0200252 2: remote high limit
Jean Delvaref65e1702008-10-17 17:51:09 +0200253 3: remote offset (except max6657)
254 4: local input */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 u8 temp_hyst;
256 u8 alarms; /* bitvector */
257};
258
259/*
260 * Sysfs stuff
261 */
262
Jean Delvare30d73942005-06-05 21:27:28 +0200263static ssize_t show_temp8(struct device *dev, struct device_attribute *devattr,
264 char *buf)
265{
266 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
267 struct lm90_data *data = lm90_update_device(dev);
268 return sprintf(buf, "%d\n", TEMP1_FROM_REG(data->temp8[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Jean Delvare30d73942005-06-05 21:27:28 +0200271static ssize_t set_temp8(struct device *dev, struct device_attribute *devattr,
272 const char *buf, size_t count)
273{
274 static const u8 reg[4] = {
275 LM90_REG_W_LOCAL_LOW,
276 LM90_REG_W_LOCAL_HIGH,
277 LM90_REG_W_LOCAL_CRIT,
278 LM90_REG_W_REMOTE_CRIT,
279 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Jean Delvare30d73942005-06-05 21:27:28 +0200281 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
282 struct i2c_client *client = to_i2c_client(dev);
283 struct lm90_data *data = i2c_get_clientdata(client);
284 long val = simple_strtol(buf, NULL, 10);
285 int nr = attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100287 mutex_lock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200288 if (data->kind == adt7461)
289 data->temp8[nr] = TEMP1_TO_REG_ADT7461(val);
290 else
291 data->temp8[nr] = TEMP1_TO_REG(val);
Jean Delvaref65e1702008-10-17 17:51:09 +0200292 i2c_smbus_write_byte_data(client, reg[nr], data->temp8[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100293 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200294 return count;
295}
296
297static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
298 char *buf)
299{
300 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
301 struct lm90_data *data = lm90_update_device(dev);
302 return sprintf(buf, "%d\n", TEMP2_FROM_REG(data->temp11[attr->index]));
303}
304
305static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
306 const char *buf, size_t count)
307{
Jean Delvare69f2f962007-09-05 14:15:37 +0200308 static const u8 reg[6] = {
Jean Delvare30d73942005-06-05 21:27:28 +0200309 LM90_REG_W_REMOTE_LOWH,
310 LM90_REG_W_REMOTE_LOWL,
311 LM90_REG_W_REMOTE_HIGHH,
312 LM90_REG_W_REMOTE_HIGHL,
Jean Delvare69f2f962007-09-05 14:15:37 +0200313 LM90_REG_W_REMOTE_OFFSH,
314 LM90_REG_W_REMOTE_OFFSL,
Jean Delvare30d73942005-06-05 21:27:28 +0200315 };
316
317 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
318 struct i2c_client *client = to_i2c_client(dev);
319 struct lm90_data *data = i2c_get_clientdata(client);
320 long val = simple_strtol(buf, NULL, 10);
321 int nr = attr->index;
322
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100323 mutex_lock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200324 if (data->kind == adt7461)
325 data->temp11[nr] = TEMP2_TO_REG_ADT7461(val);
Jean Delvare5f502a82008-10-17 17:51:09 +0200326 else if (data->kind == max6657 || data->kind == max6680)
327 data->temp11[nr] = TEMP1_TO_REG(val) << 8;
Jean Delvare30d73942005-06-05 21:27:28 +0200328 else
329 data->temp11[nr] = TEMP2_TO_REG(val);
Jean Delvare5f502a82008-10-17 17:51:09 +0200330
Jean Delvare30d73942005-06-05 21:27:28 +0200331 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2],
332 data->temp11[nr] >> 8);
Jean Delvare5f502a82008-10-17 17:51:09 +0200333 if (data->kind != max6657 && data->kind != max6680)
334 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2 + 1],
335 data->temp11[nr] & 0xff);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100336 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200337 return count;
338}
339
340static ssize_t show_temphyst(struct device *dev, struct device_attribute *devattr,
341 char *buf)
342{
343 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
344 struct lm90_data *data = lm90_update_device(dev);
345 return sprintf(buf, "%d\n", TEMP1_FROM_REG(data->temp8[attr->index])
346 - TEMP1_FROM_REG(data->temp_hyst));
347}
348
349static ssize_t set_temphyst(struct device *dev, struct device_attribute *dummy,
350 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 struct i2c_client *client = to_i2c_client(dev);
353 struct lm90_data *data = i2c_get_clientdata(client);
354 long val = simple_strtol(buf, NULL, 10);
355 long hyst;
356
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100357 mutex_lock(&data->update_lock);
Jean Delvaref65e1702008-10-17 17:51:09 +0200358 hyst = TEMP1_FROM_REG(data->temp8[2]) - val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 i2c_smbus_write_byte_data(client, LM90_REG_W_TCRIT_HYST,
360 HYST_TO_REG(hyst));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100361 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return count;
363}
364
Jean Delvare30d73942005-06-05 21:27:28 +0200365static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
366 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 struct lm90_data *data = lm90_update_device(dev);
369 return sprintf(buf, "%d\n", data->alarms);
370}
371
Jean Delvare2d457712006-09-24 20:52:15 +0200372static ssize_t show_alarm(struct device *dev, struct device_attribute
373 *devattr, char *buf)
374{
375 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
376 struct lm90_data *data = lm90_update_device(dev);
377 int bitnr = attr->index;
378
379 return sprintf(buf, "%d\n", (data->alarms >> bitnr) & 1);
380}
381
Jean Delvaref65e1702008-10-17 17:51:09 +0200382static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp11, NULL, 4);
Jean Delvare30d73942005-06-05 21:27:28 +0200383static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp11, NULL, 0);
384static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp8,
Jean Delvaref65e1702008-10-17 17:51:09 +0200385 set_temp8, 0);
Jean Delvare30d73942005-06-05 21:27:28 +0200386static SENSOR_DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
387 set_temp11, 1);
388static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp8,
Jean Delvaref65e1702008-10-17 17:51:09 +0200389 set_temp8, 1);
Jean Delvare30d73942005-06-05 21:27:28 +0200390static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
391 set_temp11, 2);
392static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp8,
Jean Delvaref65e1702008-10-17 17:51:09 +0200393 set_temp8, 2);
Jean Delvare30d73942005-06-05 21:27:28 +0200394static SENSOR_DEVICE_ATTR(temp2_crit, S_IWUSR | S_IRUGO, show_temp8,
Jean Delvaref65e1702008-10-17 17:51:09 +0200395 set_temp8, 3);
Jean Delvare30d73942005-06-05 21:27:28 +0200396static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temphyst,
Jean Delvaref65e1702008-10-17 17:51:09 +0200397 set_temphyst, 2);
398static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, show_temphyst, NULL, 3);
Jean Delvare69f2f962007-09-05 14:15:37 +0200399static SENSOR_DEVICE_ATTR(temp2_offset, S_IWUSR | S_IRUGO, show_temp11,
400 set_temp11, 3);
Jean Delvare2d457712006-09-24 20:52:15 +0200401
402/* Individual alarm files */
403static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 0);
404static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 1);
Jean Delvare7817a392007-06-09 10:11:16 -0400405static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);
Jean Delvare2d457712006-09-24 20:52:15 +0200406static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
407static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
408static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 5);
409static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
410/* Raw alarm file for compatibility */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
412
Jean Delvare0e39e012006-09-24 21:16:40 +0200413static struct attribute *lm90_attributes[] = {
414 &sensor_dev_attr_temp1_input.dev_attr.attr,
415 &sensor_dev_attr_temp2_input.dev_attr.attr,
416 &sensor_dev_attr_temp1_min.dev_attr.attr,
417 &sensor_dev_attr_temp2_min.dev_attr.attr,
418 &sensor_dev_attr_temp1_max.dev_attr.attr,
419 &sensor_dev_attr_temp2_max.dev_attr.attr,
420 &sensor_dev_attr_temp1_crit.dev_attr.attr,
421 &sensor_dev_attr_temp2_crit.dev_attr.attr,
422 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
423 &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
424
425 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
426 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
Jean Delvare7817a392007-06-09 10:11:16 -0400427 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200428 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
429 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
430 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
431 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
432 &dev_attr_alarms.attr,
433 NULL
434};
435
436static const struct attribute_group lm90_group = {
437 .attrs = lm90_attributes,
438};
439
Jean Delvarec3df5802005-10-26 21:39:40 +0200440/* pec used for ADM1032 only */
441static ssize_t show_pec(struct device *dev, struct device_attribute *dummy,
442 char *buf)
443{
444 struct i2c_client *client = to_i2c_client(dev);
445 return sprintf(buf, "%d\n", !!(client->flags & I2C_CLIENT_PEC));
446}
447
448static ssize_t set_pec(struct device *dev, struct device_attribute *dummy,
449 const char *buf, size_t count)
450{
451 struct i2c_client *client = to_i2c_client(dev);
452 long val = simple_strtol(buf, NULL, 10);
453
454 switch (val) {
455 case 0:
456 client->flags &= ~I2C_CLIENT_PEC;
457 break;
458 case 1:
459 client->flags |= I2C_CLIENT_PEC;
460 break;
461 default:
462 return -EINVAL;
463 }
464
465 return count;
466}
467
468static DEVICE_ATTR(pec, S_IWUSR | S_IRUGO, show_pec, set_pec);
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470/*
471 * Real code
472 */
473
Jean Delvarec3df5802005-10-26 21:39:40 +0200474/* The ADM1032 supports PEC but not on write byte transactions, so we need
Jean Delvare09664152007-06-09 10:11:15 -0400475 to explicitly ask for a transaction without PEC. */
Jean Delvarec3df5802005-10-26 21:39:40 +0200476static inline s32 adm1032_write_byte(struct i2c_client *client, u8 value)
477{
478 return i2c_smbus_xfer(client->adapter, client->addr,
479 client->flags & ~I2C_CLIENT_PEC,
480 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
481}
482
483/* It is assumed that client->update_lock is held (unless we are in
484 detection or initialization steps). This matters when PEC is enabled,
485 because we don't want the address pointer to change between the write
486 byte and the read byte transactions. */
Jean Delvare8256fe02005-10-26 21:37:52 +0200487static int lm90_read_reg(struct i2c_client* client, u8 reg, u8 *value)
488{
489 int err;
490
Jean Delvarec3df5802005-10-26 21:39:40 +0200491 if (client->flags & I2C_CLIENT_PEC) {
492 err = adm1032_write_byte(client, reg);
493 if (err >= 0)
494 err = i2c_smbus_read_byte(client);
495 } else
496 err = i2c_smbus_read_byte_data(client, reg);
Jean Delvare8256fe02005-10-26 21:37:52 +0200497
498 if (err < 0) {
499 dev_warn(&client->dev, "Register %#02x read failed (%d)\n",
500 reg, err);
501 return err;
502 }
503 *value = err;
504
505 return 0;
506}
507
Jean Delvare9b0e8522008-07-16 19:30:15 +0200508/* Return 0 if detection is successful, -ENODEV otherwise */
509static int lm90_detect(struct i2c_client *new_client, int kind,
510 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Jean Delvare9b0e8522008-07-16 19:30:15 +0200512 struct i2c_adapter *adapter = new_client->adapter;
513 int address = new_client->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 const char *name = "";
515
516 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvare9b0e8522008-07-16 19:30:15 +0200517 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 /*
520 * Now we do the remaining detection. A negative kind means that
521 * the driver was loaded with no force parameter (default), so we
522 * must both detect and identify the chip. A zero kind means that
523 * the driver was loaded with the force parameter, the detection
524 * step shall be skipped. A positive kind means that the driver
525 * was loaded with the force parameter and a given kind of chip is
526 * requested, so both the detection and the identification steps
527 * are skipped.
528 */
529
530 /* Default to an LM90 if forced */
531 if (kind == 0)
532 kind = lm90;
533
534 if (kind < 0) { /* detection and identification */
Jean Delvaree0ae87a2007-11-25 21:58:21 +0100535 int man_id, chip_id, reg_config1, reg_convrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Jean Delvaree0ae87a2007-11-25 21:58:21 +0100537 if ((man_id = i2c_smbus_read_byte_data(new_client,
538 LM90_REG_R_MAN_ID)) < 0
539 || (chip_id = i2c_smbus_read_byte_data(new_client,
540 LM90_REG_R_CHIP_ID)) < 0
541 || (reg_config1 = i2c_smbus_read_byte_data(new_client,
542 LM90_REG_R_CONFIG1)) < 0
543 || (reg_convrate = i2c_smbus_read_byte_data(new_client,
544 LM90_REG_R_CONVRATE)) < 0)
Jean Delvare9b0e8522008-07-16 19:30:15 +0200545 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400547 if ((address == 0x4C || address == 0x4D)
548 && man_id == 0x01) { /* National Semiconductor */
Jean Delvaree0ae87a2007-11-25 21:58:21 +0100549 int reg_config2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Jean Delvaree0ae87a2007-11-25 21:58:21 +0100551 if ((reg_config2 = i2c_smbus_read_byte_data(new_client,
552 LM90_REG_R_CONFIG2)) < 0)
Jean Delvare9b0e8522008-07-16 19:30:15 +0200553 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 if ((reg_config1 & 0x2A) == 0x00
556 && (reg_config2 & 0xF8) == 0x00
557 && reg_convrate <= 0x09) {
558 if (address == 0x4C
559 && (chip_id & 0xF0) == 0x20) { /* LM90 */
560 kind = lm90;
561 } else
562 if ((chip_id & 0xF0) == 0x30) { /* LM89/LM99 */
563 kind = lm99;
564 } else
565 if (address == 0x4C
566 && (chip_id & 0xF0) == 0x10) { /* LM86 */
567 kind = lm86;
568 }
569 }
570 } else
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400571 if ((address == 0x4C || address == 0x4D)
572 && man_id == 0x41) { /* Analog Devices */
Jean Delvare90209b42005-10-26 22:20:21 +0200573 if ((chip_id & 0xF0) == 0x40 /* ADM1032 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 && (reg_config1 & 0x3F) == 0x00
575 && reg_convrate <= 0x0A) {
576 kind = adm1032;
577 } else
Jean Delvare90209b42005-10-26 22:20:21 +0200578 if (chip_id == 0x51 /* ADT7461 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 && (reg_config1 & 0x1F) == 0x00 /* check compat mode */
580 && reg_convrate <= 0x0A) {
581 kind = adt7461;
582 }
583 } else
584 if (man_id == 0x4D) { /* Maxim */
585 /*
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400586 * The MAX6657, MAX6658 and MAX6659 do NOT have a
587 * chip_id register. Reading from that address will
588 * return the last read value, which in our case is
589 * those of the man_id register. Likewise, the config1
590 * register seems to lack a low nibble, so the value
591 * will be those of the previous read, so in our case
592 * those of the man_id register.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 */
594 if (chip_id == man_id
Guillaume Chazarainf5744e32007-07-27 01:04:22 +0200595 && (address == 0x4C || address == 0x4D)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 && (reg_config1 & 0x1F) == (man_id & 0x0F)
597 && reg_convrate <= 0x09) {
598 kind = max6657;
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400599 } else
600 /* The chip_id register of the MAX6680 and MAX6681
601 * holds the revision of the chip.
602 * the lowest bit of the config1 register is unused
603 * and should return zero when read, so should the
604 * second to last bit of config1 (software reset)
605 */
606 if (chip_id == 0x01
607 && (reg_config1 & 0x03) == 0x00
608 && reg_convrate <= 0x07) {
609 kind = max6680;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611 }
612
613 if (kind <= 0) { /* identification failed */
614 dev_info(&adapter->dev,
615 "Unsupported chip (man_id=0x%02X, "
616 "chip_id=0x%02X).\n", man_id, chip_id);
Jean Delvare9b0e8522008-07-16 19:30:15 +0200617 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619 }
620
Jean Delvare9b0e8522008-07-16 19:30:15 +0200621 /* Fill the i2c board info */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (kind == lm90) {
623 name = "lm90";
624 } else if (kind == adm1032) {
625 name = "adm1032";
Jean Delvarec3df5802005-10-26 21:39:40 +0200626 /* The ADM1032 supports PEC, but only if combined
627 transactions are not used. */
628 if (i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
Jean Delvare9b0e8522008-07-16 19:30:15 +0200629 info->flags |= I2C_CLIENT_PEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 } else if (kind == lm99) {
631 name = "lm99";
632 } else if (kind == lm86) {
633 name = "lm86";
634 } else if (kind == max6657) {
635 name = "max6657";
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400636 } else if (kind == max6680) {
637 name = "max6680";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 } else if (kind == adt7461) {
639 name = "adt7461";
640 }
Jean Delvare9b0e8522008-07-16 19:30:15 +0200641 strlcpy(info->type, name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Jean Delvare9b0e8522008-07-16 19:30:15 +0200643 return 0;
644}
645
646static int lm90_probe(struct i2c_client *new_client,
647 const struct i2c_device_id *id)
648{
649 struct i2c_adapter *adapter = to_i2c_adapter(new_client->dev.parent);
650 struct lm90_data *data;
651 int err;
652
653 data = kzalloc(sizeof(struct lm90_data), GFP_KERNEL);
654 if (!data) {
655 err = -ENOMEM;
656 goto exit;
657 }
658 i2c_set_clientdata(new_client, data);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100659 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Jean Delvare9b0e8522008-07-16 19:30:15 +0200661 /* Set the device type */
662 data->kind = id->driver_data;
663 if (data->kind == adm1032) {
664 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
665 new_client->flags &= ~I2C_CLIENT_PEC;
666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 /* Initialize the LM90 chip */
669 lm90_init_client(new_client);
670
671 /* Register sysfs hooks */
Jean Delvare0e39e012006-09-24 21:16:40 +0200672 if ((err = sysfs_create_group(&new_client->dev.kobj, &lm90_group)))
Jean Delvare9b0e8522008-07-16 19:30:15 +0200673 goto exit_free;
Jean Delvare0e39e012006-09-24 21:16:40 +0200674 if (new_client->flags & I2C_CLIENT_PEC) {
675 if ((err = device_create_file(&new_client->dev,
676 &dev_attr_pec)))
677 goto exit_remove_files;
678 }
Jean Delvare69f2f962007-09-05 14:15:37 +0200679 if (data->kind != max6657) {
680 if ((err = device_create_file(&new_client->dev,
681 &sensor_dev_attr_temp2_offset.dev_attr)))
682 goto exit_remove_files;
683 }
Jean Delvare0e39e012006-09-24 21:16:40 +0200684
Tony Jones1beeffe2007-08-20 13:46:20 -0700685 data->hwmon_dev = hwmon_device_register(&new_client->dev);
686 if (IS_ERR(data->hwmon_dev)) {
687 err = PTR_ERR(data->hwmon_dev);
Jean Delvare0e39e012006-09-24 21:16:40 +0200688 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400689 }
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return 0;
692
Jean Delvare0e39e012006-09-24 21:16:40 +0200693exit_remove_files:
694 sysfs_remove_group(&new_client->dev.kobj, &lm90_group);
695 device_remove_file(&new_client->dev, &dev_attr_pec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696exit_free:
697 kfree(data);
698exit:
699 return err;
700}
701
702static void lm90_init_client(struct i2c_client *client)
703{
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400704 u8 config, config_orig;
705 struct lm90_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 /*
708 * Start the conversions.
709 */
710 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE,
711 5); /* 2 Hz */
Jean Delvare8256fe02005-10-26 21:37:52 +0200712 if (lm90_read_reg(client, LM90_REG_R_CONFIG1, &config) < 0) {
713 dev_warn(&client->dev, "Initialization failed!\n");
714 return;
715 }
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400716 config_orig = config;
717
718 /*
719 * Put MAX6680/MAX8881 into extended resolution (bit 0x10,
720 * 0.125 degree resolution) and range (0x08, extend range
721 * to -64 degree) mode for the remote temperature sensor.
722 */
723 if (data->kind == max6680) {
724 config |= 0x18;
725 }
726
727 config &= 0xBF; /* run */
728 if (config != config_orig) /* Only write if changed */
729 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1, config);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
Jean Delvare9b0e8522008-07-16 19:30:15 +0200732static int lm90_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400734 struct lm90_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Tony Jones1beeffe2007-08-20 13:46:20 -0700736 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare0e39e012006-09-24 21:16:40 +0200737 sysfs_remove_group(&client->dev.kobj, &lm90_group);
738 device_remove_file(&client->dev, &dev_attr_pec);
Jean Delvare69f2f962007-09-05 14:15:37 +0200739 if (data->kind != max6657)
740 device_remove_file(&client->dev,
741 &sensor_dev_attr_temp2_offset.dev_attr);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400742
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400743 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return 0;
745}
746
Jean Delvare6388a382008-10-17 17:51:09 +0200747static int lm90_read16(struct i2c_client *client, u8 regh, u8 regl, u16 *value)
748{
749 int err;
750 u8 oldh, newh, l;
751
752 /*
753 * There is a trick here. We have to read two registers to have the
754 * sensor temperature, but we have to beware a conversion could occur
755 * inbetween the readings. The datasheet says we should either use
756 * the one-shot conversion register, which we don't want to do
757 * (disables hardware monitoring) or monitor the busy bit, which is
758 * impossible (we can't read the values and monitor that bit at the
759 * exact same time). So the solution used here is to read the high
760 * byte once, then the low byte, then the high byte again. If the new
761 * high byte matches the old one, then we have a valid reading. Else
762 * we have to read the low byte again, and now we believe we have a
763 * correct reading.
764 */
765 if ((err = lm90_read_reg(client, regh, &oldh))
766 || (err = lm90_read_reg(client, regl, &l))
767 || (err = lm90_read_reg(client, regh, &newh)))
768 return err;
769 if (oldh != newh) {
770 err = lm90_read_reg(client, regl, &l);
771 if (err)
772 return err;
773 }
774 *value = (newh << 8) | l;
775
776 return 0;
777}
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779static struct lm90_data *lm90_update_device(struct device *dev)
780{
781 struct i2c_client *client = to_i2c_client(dev);
782 struct lm90_data *data = i2c_get_clientdata(client);
783
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100784 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 if (time_after(jiffies, data->last_updated + HZ * 2) || !data->valid) {
Jean Delvare6388a382008-10-17 17:51:09 +0200787 u8 h, l;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 dev_dbg(&client->dev, "Updating lm90 data.\n");
Jean Delvaref65e1702008-10-17 17:51:09 +0200790 lm90_read_reg(client, LM90_REG_R_LOCAL_LOW, &data->temp8[0]);
791 lm90_read_reg(client, LM90_REG_R_LOCAL_HIGH, &data->temp8[1]);
792 lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT, &data->temp8[2]);
793 lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT, &data->temp8[3]);
Jean Delvare8256fe02005-10-26 21:37:52 +0200794 lm90_read_reg(client, LM90_REG_R_TCRIT_HYST, &data->temp_hyst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Jean Delvaref65e1702008-10-17 17:51:09 +0200796 if (data->kind == max6657) {
797 lm90_read16(client, LM90_REG_R_LOCAL_TEMP,
798 MAX6657_REG_R_LOCAL_TEMPL,
799 &data->temp11[4]);
800 } else {
801 if (lm90_read_reg(client, LM90_REG_R_LOCAL_TEMP,
802 &h) == 0)
803 data->temp11[4] = h << 8;
804 }
Jean Delvare6388a382008-10-17 17:51:09 +0200805 lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
806 LM90_REG_R_REMOTE_TEMPL, &data->temp11[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Jean Delvare5f502a82008-10-17 17:51:09 +0200808 if (lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH, &h) == 0) {
809 data->temp11[1] = h << 8;
810 if (data->kind != max6657 && data->kind != max6680
811 && lm90_read_reg(client, LM90_REG_R_REMOTE_LOWL,
812 &l) == 0)
813 data->temp11[1] |= l;
814 }
815 if (lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH, &h) == 0) {
816 data->temp11[2] = h << 8;
817 if (data->kind != max6657 && data->kind != max6680
818 && lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHL,
819 &l) == 0)
820 data->temp11[2] |= l;
821 }
822
Jean Delvare69f2f962007-09-05 14:15:37 +0200823 if (data->kind != max6657) {
824 if (lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSH,
Jean Delvare6388a382008-10-17 17:51:09 +0200825 &h) == 0
Jean Delvare69f2f962007-09-05 14:15:37 +0200826 && lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSL,
827 &l) == 0)
Jean Delvare6388a382008-10-17 17:51:09 +0200828 data->temp11[3] = (h << 8) | l;
Jean Delvare69f2f962007-09-05 14:15:37 +0200829 }
Jean Delvare8256fe02005-10-26 21:37:52 +0200830 lm90_read_reg(client, LM90_REG_R_STATUS, &data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 data->last_updated = jiffies;
833 data->valid = 1;
834 }
835
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100836 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 return data;
839}
840
841static int __init sensors_lm90_init(void)
842{
843 return i2c_add_driver(&lm90_driver);
844}
845
846static void __exit sensors_lm90_exit(void)
847{
848 i2c_del_driver(&lm90_driver);
849}
850
851MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
852MODULE_DESCRIPTION("LM90/ADM1032 driver");
853MODULE_LICENSE("GPL");
854
855module_init(sensors_lm90_init);
856module_exit(sensors_lm90_exit);