hwmon: (lm90) Introduce function to delete sysfs files
[deliverable/linux.git] / drivers / hwmon / lm90.c
CommitLineData
1da177e4
LT
1/*
2 * lm90.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
95238364 4 * Copyright (C) 2003-2010 Jean Delvare <khali@linux-fr.org>
1da177e4
LT
5 *
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
a874a10c 9 * temperature) and a 3-4 deg accuracy.
1da177e4
LT
10 *
11 * This driver also supports the LM89 and LM99, two other sensor chips
12 * made by National Semiconductor. Both have an increased remote
13 * temperature measurement accuracy (1 degree), and the LM99
14 * additionally shifts remote temperatures (measured and limits) by 16
97ae60bb 15 * degrees, which allows for higher temperatures measurement.
44bbe87e 16 * Note that there is no way to differentiate between both chips.
97ae60bb 17 * When device is auto-detected, the driver will assume an LM99.
1da177e4
LT
18 *
19 * This driver also supports the LM86, another sensor chip made by
20 * National Semiconductor. It is exactly similar to the LM90 except it
21 * has a higher accuracy.
1da177e4
LT
22 *
23 * This driver also supports the ADM1032, a sensor chip made by Analog
24 * Devices. That chip is similar to the LM90, with a few differences
a874a10c
JD
25 * that are not handled by this driver. Among others, it has a higher
26 * accuracy than the LM90, much like the LM86 does.
1da177e4
LT
27 *
28 * This driver also supports the MAX6657, MAX6658 and MAX6659 sensor
a874a10c 29 * chips made by Maxim. These chips are similar to the LM86.
44bbe87e 30 * Note that there is no easy way to differentiate between the three
1da177e4 31 * variants. The extra address and features of the MAX6659 are not
69f2f96d
JD
32 * supported by this driver. These chips lack the remote temperature
33 * offset feature.
1da177e4 34 *
1a51e068
DW
35 * This driver also supports the MAX6646, MAX6647, MAX6648, MAX6649 and
36 * MAX6692 chips made by Maxim. These are again similar to the LM86,
37 * but they use unsigned temperature values and can report temperatures
38 * from 0 to 145 degrees.
271dabf5 39 *
32c82a93
RB
40 * This driver also supports the MAX6680 and MAX6681, two other sensor
41 * chips made by Maxim. These are quite similar to the other Maxim
a874a10c
JD
42 * chips. The MAX6680 and MAX6681 only differ in the pinout so they can
43 * be treated identically.
32c82a93 44 *
23b2d477
NC
45 * This driver also supports the ADT7461 chip from Analog Devices.
46 * It's supported in both compatibility and extended mode. It is mostly
47 * compatible with LM90 except for a data format difference for the
48 * temperature value registers.
1da177e4
LT
49 *
50 * Since the LM90 was the first chipset supported by this driver, most
51 * comments will refer to this chipset, but are actually general and
52 * concern all supported chipsets, unless mentioned otherwise.
53 *
54 * This program is free software; you can redistribute it and/or modify
55 * it under the terms of the GNU General Public License as published by
56 * the Free Software Foundation; either version 2 of the License, or
57 * (at your option) any later version.
58 *
59 * This program is distributed in the hope that it will be useful,
60 * but WITHOUT ANY WARRANTY; without even the implied warranty of
61 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
62 * GNU General Public License for more details.
63 *
64 * You should have received a copy of the GNU General Public License
65 * along with this program; if not, write to the Free Software
66 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
67 */
68
1da177e4
LT
69#include <linux/module.h>
70#include <linux/init.h>
71#include <linux/slab.h>
72#include <linux/jiffies.h>
73#include <linux/i2c.h>
10c08f81 74#include <linux/hwmon-sysfs.h>
943b0830
MH
75#include <linux/hwmon.h>
76#include <linux/err.h>
9a61bf63 77#include <linux/mutex.h>
0e39e01c 78#include <linux/sysfs.h>
1da177e4
LT
79
80/*
81 * Addresses to scan
82 * Address is fully defined internally and cannot be changed except for
32c82a93 83 * MAX6659, MAX6680 and MAX6681.
271dabf5
BH
84 * LM86, LM89, LM90, LM99, ADM1032, ADM1032-1, ADT7461, MAX6649, MAX6657
85 * and MAX6658 have address 0x4c.
86 * ADM1032-2, ADT7461-2, LM89-1, LM99-1 and MAX6646 have address 0x4d.
87 * MAX6647 has address 0x4e.
1da177e4 88 * MAX6659 can have address 0x4c, 0x4d or 0x4e (unsupported).
32c82a93
RB
89 * MAX6680 and MAX6681 can have address 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b,
90 * 0x4c, 0x4d or 0x4e.
1da177e4
LT
91 */
92
25e9c86d
MH
93static const unsigned short normal_i2c[] = {
94 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x4c, 0x4d, 0x4e, I2C_CLIENT_END };
1da177e4 95
6771ea1f
JD
96enum chips { lm90, adm1032, lm99, lm86, max6657, adt7461, max6680, max6646,
97 w83l771 };
1da177e4
LT
98
99/*
100 * The LM90 registers
101 */
102
103#define LM90_REG_R_MAN_ID 0xFE
104#define LM90_REG_R_CHIP_ID 0xFF
105#define LM90_REG_R_CONFIG1 0x03
106#define LM90_REG_W_CONFIG1 0x09
107#define LM90_REG_R_CONFIG2 0xBF
108#define LM90_REG_W_CONFIG2 0xBF
109#define LM90_REG_R_CONVRATE 0x04
110#define LM90_REG_W_CONVRATE 0x0A
111#define LM90_REG_R_STATUS 0x02
112#define LM90_REG_R_LOCAL_TEMP 0x00
113#define LM90_REG_R_LOCAL_HIGH 0x05
114#define LM90_REG_W_LOCAL_HIGH 0x0B
115#define LM90_REG_R_LOCAL_LOW 0x06
116#define LM90_REG_W_LOCAL_LOW 0x0C
117#define LM90_REG_R_LOCAL_CRIT 0x20
118#define LM90_REG_W_LOCAL_CRIT 0x20
119#define LM90_REG_R_REMOTE_TEMPH 0x01
120#define LM90_REG_R_REMOTE_TEMPL 0x10
121#define LM90_REG_R_REMOTE_OFFSH 0x11
122#define LM90_REG_W_REMOTE_OFFSH 0x11
123#define LM90_REG_R_REMOTE_OFFSL 0x12
124#define LM90_REG_W_REMOTE_OFFSL 0x12
125#define LM90_REG_R_REMOTE_HIGHH 0x07
126#define LM90_REG_W_REMOTE_HIGHH 0x0D
127#define LM90_REG_R_REMOTE_HIGHL 0x13
128#define LM90_REG_W_REMOTE_HIGHL 0x13
129#define LM90_REG_R_REMOTE_LOWH 0x08
130#define LM90_REG_W_REMOTE_LOWH 0x0E
131#define LM90_REG_R_REMOTE_LOWL 0x14
132#define LM90_REG_W_REMOTE_LOWL 0x14
133#define LM90_REG_R_REMOTE_CRIT 0x19
134#define LM90_REG_W_REMOTE_CRIT 0x19
135#define LM90_REG_R_TCRIT_HYST 0x21
136#define LM90_REG_W_TCRIT_HYST 0x21
137
271dabf5 138/* MAX6646/6647/6649/6657/6658/6659 registers */
f65e1708
JD
139
140#define MAX6657_REG_R_LOCAL_TEMPL 0x11
141
23b2d477
NC
142/*
143 * Device flags
144 */
88073bb1
GR
145#define LM90_FLAG_ADT7461_EXT (1 << 0) /* ADT7461 extended mode */
146/* Device features */
147#define LM90_HAVE_OFFSET (1 << 1) /* temperature offset register */
148#define LM90_HAVE_LOCAL_EXT (1 << 2) /* extended local temperature */
149#define LM90_HAVE_REM_LIMIT_EXT (1 << 3) /* extended remote limit */
23b2d477 150
1da177e4
LT
151/*
152 * Functions declaration
153 */
154
310ec792 155static int lm90_detect(struct i2c_client *client, struct i2c_board_info *info);
9b0e8526
JD
156static int lm90_probe(struct i2c_client *client,
157 const struct i2c_device_id *id);
1da177e4 158static void lm90_init_client(struct i2c_client *client);
53de3342 159static void lm90_alert(struct i2c_client *client, unsigned int flag);
9b0e8526 160static int lm90_remove(struct i2c_client *client);
1da177e4
LT
161static struct lm90_data *lm90_update_device(struct device *dev);
162
163/*
164 * Driver data (common to all clients)
165 */
166
9b0e8526
JD
167static const struct i2c_device_id lm90_id[] = {
168 { "adm1032", adm1032 },
169 { "adt7461", adt7461 },
170 { "lm90", lm90 },
171 { "lm86", lm86 },
97ae60bb
JD
172 { "lm89", lm86 },
173 { "lm99", lm99 },
271dabf5
BH
174 { "max6646", max6646 },
175 { "max6647", max6646 },
176 { "max6649", max6646 },
9b0e8526
JD
177 { "max6657", max6657 },
178 { "max6658", max6657 },
179 { "max6659", max6657 },
180 { "max6680", max6680 },
181 { "max6681", max6680 },
6771ea1f 182 { "w83l771", w83l771 },
9b0e8526
JD
183 { }
184};
185MODULE_DEVICE_TABLE(i2c, lm90_id);
186
1da177e4 187static struct i2c_driver lm90_driver = {
9b0e8526 188 .class = I2C_CLASS_HWMON,
cdaf7934 189 .driver = {
cdaf7934
LR
190 .name = "lm90",
191 },
9b0e8526
JD
192 .probe = lm90_probe,
193 .remove = lm90_remove,
53de3342 194 .alert = lm90_alert,
9b0e8526
JD
195 .id_table = lm90_id,
196 .detect = lm90_detect,
c3813d6a 197 .address_list = normal_i2c,
1da177e4
LT
198};
199
200/*
201 * Client data (each client gets its own)
202 */
203
204struct lm90_data {
1beeffe4 205 struct device *hwmon_dev;
9a61bf63 206 struct mutex update_lock;
1da177e4
LT
207 char valid; /* zero until following fields are valid */
208 unsigned long last_updated; /* in jiffies */
209 int kind;
23b2d477 210 int flags;
1da177e4 211
95238364 212 u8 config_orig; /* Original configuration register value */
53de3342 213 u8 alert_alarms; /* Which alarm bits trigger ALERT# */
95238364 214
1da177e4 215 /* registers values */
f65e1708
JD
216 s8 temp8[4]; /* 0: local low limit
217 1: local high limit
218 2: local critical limit
219 3: remote critical limit */
220 s16 temp11[5]; /* 0: remote input
30d7394b 221 1: remote low limit
69f2f96d 222 2: remote high limit
271dabf5 223 3: remote offset (except max6646 and max6657)
f65e1708 224 4: local input */
1da177e4
LT
225 u8 temp_hyst;
226 u8 alarms; /* bitvector */
227};
228
cea50fe2
NC
229/*
230 * Conversions
231 * For local temperatures and limits, critical limits and the hysteresis
232 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
233 * For remote temperatures and limits, it uses signed 11-bit values with
271dabf5
BH
234 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers. Some
235 * Maxim chips use unsigned values.
cea50fe2
NC
236 */
237
9d4d3834 238static inline int temp_from_s8(s8 val)
cea50fe2
NC
239{
240 return val * 1000;
241}
242
271dabf5
BH
243static inline int temp_from_u8(u8 val)
244{
245 return val * 1000;
246}
247
9d4d3834 248static inline int temp_from_s16(s16 val)
cea50fe2
NC
249{
250 return val / 32 * 125;
251}
252
271dabf5
BH
253static inline int temp_from_u16(u16 val)
254{
255 return val / 32 * 125;
256}
257
9d4d3834 258static s8 temp_to_s8(long val)
cea50fe2
NC
259{
260 if (val <= -128000)
261 return -128;
262 if (val >= 127000)
263 return 127;
264 if (val < 0)
265 return (val - 500) / 1000;
266 return (val + 500) / 1000;
267}
268
271dabf5
BH
269static u8 temp_to_u8(long val)
270{
271 if (val <= 0)
272 return 0;
273 if (val >= 255000)
274 return 255;
275 return (val + 500) / 1000;
276}
277
9d4d3834 278static s16 temp_to_s16(long val)
cea50fe2
NC
279{
280 if (val <= -128000)
281 return 0x8000;
282 if (val >= 127875)
283 return 0x7FE0;
284 if (val < 0)
285 return (val - 62) / 125 * 32;
286 return (val + 62) / 125 * 32;
287}
288
289static u8 hyst_to_reg(long val)
290{
291 if (val <= 0)
292 return 0;
293 if (val >= 30500)
294 return 31;
295 return (val + 500) / 1000;
296}
297
298/*
23b2d477
NC
299 * ADT7461 in compatibility mode is almost identical to LM90 except that
300 * attempts to write values that are outside the range 0 < temp < 127 are
301 * treated as the boundary value.
302 *
303 * ADT7461 in "extended mode" operation uses unsigned integers offset by
304 * 64 (e.g., 0 -> -64 degC). The range is restricted to -64..191 degC.
cea50fe2 305 */
9d4d3834 306static inline int temp_from_u8_adt7461(struct lm90_data *data, u8 val)
cea50fe2 307{
23b2d477
NC
308 if (data->flags & LM90_FLAG_ADT7461_EXT)
309 return (val - 64) * 1000;
310 else
9d4d3834 311 return temp_from_s8(val);
cea50fe2
NC
312}
313
9d4d3834 314static inline int temp_from_u16_adt7461(struct lm90_data *data, u16 val)
cea50fe2 315{
23b2d477
NC
316 if (data->flags & LM90_FLAG_ADT7461_EXT)
317 return (val - 0x4000) / 64 * 250;
318 else
9d4d3834 319 return temp_from_s16(val);
23b2d477
NC
320}
321
9d4d3834 322static u8 temp_to_u8_adt7461(struct lm90_data *data, long val)
23b2d477
NC
323{
324 if (data->flags & LM90_FLAG_ADT7461_EXT) {
325 if (val <= -64000)
326 return 0;
327 if (val >= 191000)
328 return 0xFF;
329 return (val + 500 + 64000) / 1000;
330 } else {
331 if (val <= 0)
332 return 0;
333 if (val >= 127000)
334 return 127;
335 return (val + 500) / 1000;
336 }
337}
338
9d4d3834 339static u16 temp_to_u16_adt7461(struct lm90_data *data, long val)
23b2d477
NC
340{
341 if (data->flags & LM90_FLAG_ADT7461_EXT) {
342 if (val <= -64000)
343 return 0;
344 if (val >= 191750)
345 return 0xFFC0;
346 return (val + 64000 + 125) / 250 * 64;
347 } else {
348 if (val <= 0)
349 return 0;
350 if (val >= 127750)
351 return 0x7FC0;
352 return (val + 125) / 250 * 64;
353 }
cea50fe2
NC
354}
355
1da177e4
LT
356/*
357 * Sysfs stuff
358 */
359
30d7394b
JD
360static ssize_t show_temp8(struct device *dev, struct device_attribute *devattr,
361 char *buf)
362{
363 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
364 struct lm90_data *data = lm90_update_device(dev);
23b2d477
NC
365 int temp;
366
367 if (data->kind == adt7461)
9d4d3834 368 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
271dabf5
BH
369 else if (data->kind == max6646)
370 temp = temp_from_u8(data->temp8[attr->index]);
23b2d477 371 else
9d4d3834 372 temp = temp_from_s8(data->temp8[attr->index]);
23b2d477 373
97ae60bb
JD
374 /* +16 degrees offset for temp2 for the LM99 */
375 if (data->kind == lm99 && attr->index == 3)
376 temp += 16000;
377
23b2d477 378 return sprintf(buf, "%d\n", temp);
30d7394b
JD
379}
380
381static ssize_t set_temp8(struct device *dev, struct device_attribute *devattr,
382 const char *buf, size_t count)
383{
384 static const u8 reg[4] = {
385 LM90_REG_W_LOCAL_LOW,
386 LM90_REG_W_LOCAL_HIGH,
387 LM90_REG_W_LOCAL_CRIT,
388 LM90_REG_W_REMOTE_CRIT,
389 };
390
391 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
392 struct i2c_client *client = to_i2c_client(dev);
393 struct lm90_data *data = i2c_get_clientdata(client);
30d7394b 394 int nr = attr->index;
11e57812
GR
395 long val;
396 int err;
397
398 err = strict_strtol(buf, 10, &val);
399 if (err < 0)
400 return err;
30d7394b 401
97ae60bb
JD
402 /* +16 degrees offset for temp2 for the LM99 */
403 if (data->kind == lm99 && attr->index == 3)
404 val -= 16000;
405
9a61bf63 406 mutex_lock(&data->update_lock);
30d7394b 407 if (data->kind == adt7461)
9d4d3834 408 data->temp8[nr] = temp_to_u8_adt7461(data, val);
271dabf5
BH
409 else if (data->kind == max6646)
410 data->temp8[nr] = temp_to_u8(val);
30d7394b 411 else
9d4d3834 412 data->temp8[nr] = temp_to_s8(val);
f65e1708 413 i2c_smbus_write_byte_data(client, reg[nr], data->temp8[nr]);
9a61bf63 414 mutex_unlock(&data->update_lock);
30d7394b 415 return count;
1da177e4 416}
30d7394b
JD
417
418static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
419 char *buf)
420{
421 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
422 struct lm90_data *data = lm90_update_device(dev);
23b2d477
NC
423 int temp;
424
425 if (data->kind == adt7461)
9d4d3834 426 temp = temp_from_u16_adt7461(data, data->temp11[attr->index]);
271dabf5
BH
427 else if (data->kind == max6646)
428 temp = temp_from_u16(data->temp11[attr->index]);
23b2d477 429 else
9d4d3834 430 temp = temp_from_s16(data->temp11[attr->index]);
23b2d477 431
97ae60bb
JD
432 /* +16 degrees offset for temp2 for the LM99 */
433 if (data->kind == lm99 && attr->index <= 2)
434 temp += 16000;
435
23b2d477 436 return sprintf(buf, "%d\n", temp);
1da177e4 437}
30d7394b
JD
438
439static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
440 const char *buf, size_t count)
441{
69f2f96d 442 static const u8 reg[6] = {
30d7394b
JD
443 LM90_REG_W_REMOTE_LOWH,
444 LM90_REG_W_REMOTE_LOWL,
445 LM90_REG_W_REMOTE_HIGHH,
446 LM90_REG_W_REMOTE_HIGHL,
69f2f96d
JD
447 LM90_REG_W_REMOTE_OFFSH,
448 LM90_REG_W_REMOTE_OFFSL,
30d7394b
JD
449 };
450
451 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
452 struct i2c_client *client = to_i2c_client(dev);
453 struct lm90_data *data = i2c_get_clientdata(client);
30d7394b 454 int nr = attr->index;
11e57812
GR
455 long val;
456 int err;
457
458 err = strict_strtol(buf, 10, &val);
459 if (err < 0)
460 return err;
30d7394b 461
97ae60bb
JD
462 /* +16 degrees offset for temp2 for the LM99 */
463 if (data->kind == lm99 && attr->index <= 2)
464 val -= 16000;
465
9a61bf63 466 mutex_lock(&data->update_lock);
30d7394b 467 if (data->kind == adt7461)
9d4d3834 468 data->temp11[nr] = temp_to_u16_adt7461(data, val);
271dabf5
BH
469 else if (data->kind == max6646)
470 data->temp11[nr] = temp_to_u8(val) << 8;
88073bb1 471 else if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
9d4d3834 472 data->temp11[nr] = temp_to_s16(val);
88073bb1
GR
473 else
474 data->temp11[nr] = temp_to_s8(val) << 8;
5f502a83 475
30d7394b
JD
476 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2],
477 data->temp11[nr] >> 8);
88073bb1 478 if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
5f502a83
JD
479 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2 + 1],
480 data->temp11[nr] & 0xff);
9a61bf63 481 mutex_unlock(&data->update_lock);
30d7394b 482 return count;
1da177e4 483}
30d7394b 484
11e57812
GR
485static ssize_t show_temphyst(struct device *dev,
486 struct device_attribute *devattr,
30d7394b
JD
487 char *buf)
488{
489 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
490 struct lm90_data *data = lm90_update_device(dev);
23b2d477
NC
491 int temp;
492
493 if (data->kind == adt7461)
9d4d3834 494 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
ec38fa2b
JD
495 else if (data->kind == max6646)
496 temp = temp_from_u8(data->temp8[attr->index]);
23b2d477 497 else
9d4d3834 498 temp = temp_from_s8(data->temp8[attr->index]);
23b2d477 499
97ae60bb
JD
500 /* +16 degrees offset for temp2 for the LM99 */
501 if (data->kind == lm99 && attr->index == 3)
502 temp += 16000;
503
9d4d3834 504 return sprintf(buf, "%d\n", temp - temp_from_s8(data->temp_hyst));
1da177e4 505}
1da177e4 506
30d7394b
JD
507static ssize_t set_temphyst(struct device *dev, struct device_attribute *dummy,
508 const char *buf, size_t count)
1da177e4
LT
509{
510 struct i2c_client *client = to_i2c_client(dev);
511 struct lm90_data *data = i2c_get_clientdata(client);
11e57812
GR
512 long val;
513 int err;
ec38fa2b 514 int temp;
1da177e4 515
11e57812
GR
516 err = strict_strtol(buf, 10, &val);
517 if (err < 0)
518 return err;
519
9a61bf63 520 mutex_lock(&data->update_lock);
ec38fa2b
JD
521 if (data->kind == adt7461)
522 temp = temp_from_u8_adt7461(data, data->temp8[2]);
523 else if (data->kind == max6646)
524 temp = temp_from_u8(data->temp8[2]);
525 else
526 temp = temp_from_s8(data->temp8[2]);
527
528 data->temp_hyst = hyst_to_reg(temp - val);
1da177e4 529 i2c_smbus_write_byte_data(client, LM90_REG_W_TCRIT_HYST,
ec38fa2b 530 data->temp_hyst);
9a61bf63 531 mutex_unlock(&data->update_lock);
1da177e4
LT
532 return count;
533}
534
30d7394b
JD
535static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
536 char *buf)
1da177e4
LT
537{
538 struct lm90_data *data = lm90_update_device(dev);
539 return sprintf(buf, "%d\n", data->alarms);
540}
541
2d45771e
JD
542static ssize_t show_alarm(struct device *dev, struct device_attribute
543 *devattr, char *buf)
544{
545 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
546 struct lm90_data *data = lm90_update_device(dev);
547 int bitnr = attr->index;
548
549 return sprintf(buf, "%d\n", (data->alarms >> bitnr) & 1);
550}
551
f65e1708 552static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp11, NULL, 4);
30d7394b
JD
553static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp11, NULL, 0);
554static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp8,
f65e1708 555 set_temp8, 0);
30d7394b
JD
556static SENSOR_DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
557 set_temp11, 1);
558static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp8,
f65e1708 559 set_temp8, 1);
30d7394b
JD
560static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
561 set_temp11, 2);
562static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp8,
f65e1708 563 set_temp8, 2);
30d7394b 564static SENSOR_DEVICE_ATTR(temp2_crit, S_IWUSR | S_IRUGO, show_temp8,
f65e1708 565 set_temp8, 3);
30d7394b 566static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temphyst,
f65e1708
JD
567 set_temphyst, 2);
568static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, show_temphyst, NULL, 3);
69f2f96d
JD
569static SENSOR_DEVICE_ATTR(temp2_offset, S_IWUSR | S_IRUGO, show_temp11,
570 set_temp11, 3);
2d45771e
JD
571
572/* Individual alarm files */
573static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 0);
574static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 1);
7817a39e 575static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);
2d45771e
JD
576static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
577static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
578static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 5);
579static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
580/* Raw alarm file for compatibility */
1da177e4
LT
581static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
582
0e39e01c
JD
583static struct attribute *lm90_attributes[] = {
584 &sensor_dev_attr_temp1_input.dev_attr.attr,
585 &sensor_dev_attr_temp2_input.dev_attr.attr,
586 &sensor_dev_attr_temp1_min.dev_attr.attr,
587 &sensor_dev_attr_temp2_min.dev_attr.attr,
588 &sensor_dev_attr_temp1_max.dev_attr.attr,
589 &sensor_dev_attr_temp2_max.dev_attr.attr,
590 &sensor_dev_attr_temp1_crit.dev_attr.attr,
591 &sensor_dev_attr_temp2_crit.dev_attr.attr,
592 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
593 &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
594
595 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
596 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
7817a39e 597 &sensor_dev_attr_temp2_fault.dev_attr.attr,
0e39e01c
JD
598 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
599 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
600 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
601 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
602 &dev_attr_alarms.attr,
603 NULL
604};
605
606static const struct attribute_group lm90_group = {
607 .attrs = lm90_attributes,
608};
609
c3df5806
JD
610/* pec used for ADM1032 only */
611static ssize_t show_pec(struct device *dev, struct device_attribute *dummy,
612 char *buf)
613{
614 struct i2c_client *client = to_i2c_client(dev);
615 return sprintf(buf, "%d\n", !!(client->flags & I2C_CLIENT_PEC));
616}
617
618static ssize_t set_pec(struct device *dev, struct device_attribute *dummy,
619 const char *buf, size_t count)
620{
621 struct i2c_client *client = to_i2c_client(dev);
11e57812
GR
622 long val;
623 int err;
624
625 err = strict_strtol(buf, 10, &val);
626 if (err < 0)
627 return err;
c3df5806
JD
628
629 switch (val) {
630 case 0:
631 client->flags &= ~I2C_CLIENT_PEC;
632 break;
633 case 1:
634 client->flags |= I2C_CLIENT_PEC;
635 break;
636 default:
637 return -EINVAL;
638 }
639
640 return count;
641}
642
643static DEVICE_ATTR(pec, S_IWUSR | S_IRUGO, show_pec, set_pec);
644
1da177e4
LT
645/*
646 * Real code
647 */
648
11e57812
GR
649/*
650 * The ADM1032 supports PEC but not on write byte transactions, so we need
651 * to explicitly ask for a transaction without PEC.
652 */
c3df5806
JD
653static inline s32 adm1032_write_byte(struct i2c_client *client, u8 value)
654{
655 return i2c_smbus_xfer(client->adapter, client->addr,
656 client->flags & ~I2C_CLIENT_PEC,
657 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
658}
659
11e57812
GR
660/*
661 * It is assumed that client->update_lock is held (unless we are in
662 * detection or initialization steps). This matters when PEC is enabled,
663 * because we don't want the address pointer to change between the write
664 * byte and the read byte transactions.
665 */
666static int lm90_read_reg(struct i2c_client *client, u8 reg, u8 *value)
8256fe0f
JD
667{
668 int err;
669
11e57812
GR
670 if (client->flags & I2C_CLIENT_PEC) {
671 err = adm1032_write_byte(client, reg);
672 if (err >= 0)
673 err = i2c_smbus_read_byte(client);
674 } else
675 err = i2c_smbus_read_byte_data(client, reg);
8256fe0f
JD
676
677 if (err < 0) {
678 dev_warn(&client->dev, "Register %#02x read failed (%d)\n",
679 reg, err);
680 return err;
681 }
682 *value = err;
683
684 return 0;
685}
686
9b0e8526 687/* Return 0 if detection is successful, -ENODEV otherwise */
310ec792 688static int lm90_detect(struct i2c_client *new_client,
9b0e8526 689 struct i2c_board_info *info)
1da177e4 690{
9b0e8526
JD
691 struct i2c_adapter *adapter = new_client->adapter;
692 int address = new_client->addr;
8f2fa77c
JD
693 const char *name = NULL;
694 int man_id, chip_id, reg_config1, reg_convrate;
1da177e4
LT
695
696 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
9b0e8526 697 return -ENODEV;
1da177e4 698
8f2fa77c
JD
699 /* detection and identification */
700 if ((man_id = i2c_smbus_read_byte_data(new_client,
e0ae87a4 701 LM90_REG_R_MAN_ID)) < 0
8f2fa77c 702 || (chip_id = i2c_smbus_read_byte_data(new_client,
e0ae87a4 703 LM90_REG_R_CHIP_ID)) < 0
8f2fa77c 704 || (reg_config1 = i2c_smbus_read_byte_data(new_client,
e0ae87a4 705 LM90_REG_R_CONFIG1)) < 0
8f2fa77c 706 || (reg_convrate = i2c_smbus_read_byte_data(new_client,
e0ae87a4 707 LM90_REG_R_CONVRATE)) < 0)
8f2fa77c
JD
708 return -ENODEV;
709
710 if ((address == 0x4C || address == 0x4D)
711 && man_id == 0x01) { /* National Semiconductor */
712 int reg_config2;
713
714 reg_config2 = i2c_smbus_read_byte_data(new_client,
715 LM90_REG_R_CONFIG2);
716 if (reg_config2 < 0)
9b0e8526 717 return -ENODEV;
8f2fa77c
JD
718
719 if ((reg_config1 & 0x2A) == 0x00
720 && (reg_config2 & 0xF8) == 0x00
721 && reg_convrate <= 0x09) {
722 if (address == 0x4C
723 && (chip_id & 0xF0) == 0x20) { /* LM90 */
724 name = "lm90";
32c82a93 725 } else
8f2fa77c
JD
726 if ((chip_id & 0xF0) == 0x30) { /* LM89/LM99 */
727 name = "lm99";
728 dev_info(&adapter->dev,
729 "Assuming LM99 chip at 0x%02x\n",
730 address);
731 dev_info(&adapter->dev,
732 "If it is an LM89, instantiate it "
733 "with the new_device sysfs "
734 "interface\n");
271dabf5 735 } else
8f2fa77c
JD
736 if (address == 0x4C
737 && (chip_id & 0xF0) == 0x10) { /* LM86 */
738 name = "lm86";
1da177e4
LT
739 }
740 }
8f2fa77c
JD
741 } else
742 if ((address == 0x4C || address == 0x4D)
743 && man_id == 0x41) { /* Analog Devices */
744 if ((chip_id & 0xF0) == 0x40 /* ADM1032 */
745 && (reg_config1 & 0x3F) == 0x00
746 && reg_convrate <= 0x0A) {
747 name = "adm1032";
748 /* The ADM1032 supports PEC, but only if combined
749 transactions are not used. */
750 if (i2c_check_functionality(adapter,
751 I2C_FUNC_SMBUS_BYTE))
752 info->flags |= I2C_CLIENT_PEC;
753 } else
754 if (chip_id == 0x51 /* ADT7461 */
755 && (reg_config1 & 0x1B) == 0x00
756 && reg_convrate <= 0x0A) {
757 name = "adt7461";
758 }
759 } else
760 if (man_id == 0x4D) { /* Maxim */
761 /*
762 * The MAX6657, MAX6658 and MAX6659 do NOT have a chip_id
763 * register. Reading from that address will return the last
764 * read value, which in our case is those of the man_id
765 * register. Likewise, the config1 register seems to lack a
766 * low nibble, so the value will be those of the previous
767 * read, so in our case those of the man_id register.
768 */
769 if (chip_id == man_id
770 && (address == 0x4C || address == 0x4D)
771 && (reg_config1 & 0x1F) == (man_id & 0x0F)
772 && reg_convrate <= 0x09) {
773 name = "max6657";
774 } else
775 /*
776 * The chip_id register of the MAX6680 and MAX6681 holds the
777 * revision of the chip. The lowest bit of the config1 register
778 * is unused and should return zero when read, so should the
779 * second to last bit of config1 (software reset).
780 */
781 if (chip_id == 0x01
782 && (reg_config1 & 0x03) == 0x00
783 && reg_convrate <= 0x07) {
784 name = "max6680";
785 } else
786 /*
787 * The chip_id register of the MAX6646/6647/6649 holds the
788 * revision of the chip. The lowest 6 bits of the config1
789 * register are unused and should return zero when read.
790 */
791 if (chip_id == 0x59
792 && (reg_config1 & 0x3f) == 0x00
793 && reg_convrate <= 0x07) {
794 name = "max6646";
1da177e4 795 }
6771ea1f
JD
796 } else
797 if (address == 0x4C
798 && man_id == 0x5C) { /* Winbond/Nuvoton */
799 if ((chip_id & 0xFE) == 0x10 /* W83L771AWG/ASG */
800 && (reg_config1 & 0x2A) == 0x00
801 && reg_convrate <= 0x08) {
802 name = "w83l771";
803 }
1da177e4
LT
804 }
805
8f2fa77c
JD
806 if (!name) { /* identification failed */
807 dev_dbg(&adapter->dev,
808 "Unsupported chip at 0x%02x (man_id=0x%02X, "
809 "chip_id=0x%02X)\n", address, man_id, chip_id);
810 return -ENODEV;
1da177e4 811 }
8f2fa77c 812
9b0e8526
JD
813 strlcpy(info->type, name, I2C_NAME_SIZE);
814
815 return 0;
816}
817
b6fc1bac
GR
818static void lm90_remove_files(struct i2c_client *client, struct lm90_data *data)
819{
820 if (data->flags & LM90_HAVE_OFFSET)
821 device_remove_file(&client->dev,
822 &sensor_dev_attr_temp2_offset.dev_attr);
823 device_remove_file(&client->dev, &dev_attr_pec);
824 sysfs_remove_group(&client->dev.kobj, &lm90_group);
825}
826
9b0e8526
JD
827static int lm90_probe(struct i2c_client *new_client,
828 const struct i2c_device_id *id)
829{
830 struct i2c_adapter *adapter = to_i2c_adapter(new_client->dev.parent);
831 struct lm90_data *data;
832 int err;
1da177e4 833
9b0e8526
JD
834 data = kzalloc(sizeof(struct lm90_data), GFP_KERNEL);
835 if (!data) {
836 err = -ENOMEM;
837 goto exit;
838 }
839 i2c_set_clientdata(new_client, data);
9a61bf63 840 mutex_init(&data->update_lock);
1da177e4 841
9b0e8526
JD
842 /* Set the device type */
843 data->kind = id->driver_data;
844 if (data->kind == adm1032) {
845 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
846 new_client->flags &= ~I2C_CLIENT_PEC;
847 }
1da177e4 848
53de3342
JD
849 /* Different devices have different alarm bits triggering the
850 * ALERT# output */
851 switch (data->kind) {
852 case lm90:
853 case lm99:
854 case lm86:
855 data->alert_alarms = 0x7b;
856 break;
857 default:
858 data->alert_alarms = 0x7c;
859 break;
860 }
861
88073bb1
GR
862 /* Set chip capabilities */
863 if (data->kind != max6657 && data->kind != max6646)
864 data->flags |= LM90_HAVE_OFFSET;
865
866 if (data->kind == max6657 || data->kind == max6646)
867 data->flags |= LM90_HAVE_LOCAL_EXT;
868
869 if (data->kind != max6657 && data->kind != max6646
870 && data->kind != max6680)
871 data->flags |= LM90_HAVE_REM_LIMIT_EXT;
872
1da177e4
LT
873 /* Initialize the LM90 chip */
874 lm90_init_client(new_client);
875
876 /* Register sysfs hooks */
11e57812
GR
877 err = sysfs_create_group(&new_client->dev.kobj, &lm90_group);
878 if (err)
9b0e8526 879 goto exit_free;
0e39e01c 880 if (new_client->flags & I2C_CLIENT_PEC) {
11e57812
GR
881 err = device_create_file(&new_client->dev, &dev_attr_pec);
882 if (err)
0e39e01c
JD
883 goto exit_remove_files;
884 }
88073bb1 885 if (data->flags & LM90_HAVE_OFFSET) {
11e57812
GR
886 err = device_create_file(&new_client->dev,
887 &sensor_dev_attr_temp2_offset.dev_attr);
888 if (err)
69f2f96d
JD
889 goto exit_remove_files;
890 }
0e39e01c 891
1beeffe4
TJ
892 data->hwmon_dev = hwmon_device_register(&new_client->dev);
893 if (IS_ERR(data->hwmon_dev)) {
894 err = PTR_ERR(data->hwmon_dev);
0e39e01c 895 goto exit_remove_files;
943b0830
MH
896 }
897
1da177e4
LT
898 return 0;
899
0e39e01c 900exit_remove_files:
b6fc1bac 901 lm90_remove_files(new_client, data);
1da177e4
LT
902exit_free:
903 kfree(data);
904exit:
905 return err;
906}
907
908static void lm90_init_client(struct i2c_client *client)
909{
95238364 910 u8 config;
32c82a93 911 struct lm90_data *data = i2c_get_clientdata(client);
1da177e4
LT
912
913 /*
914 * Start the conversions.
915 */
916 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE,
917 5); /* 2 Hz */
8256fe0f
JD
918 if (lm90_read_reg(client, LM90_REG_R_CONFIG1, &config) < 0) {
919 dev_warn(&client->dev, "Initialization failed!\n");
920 return;
921 }
95238364 922 data->config_orig = config;
32c82a93 923
23b2d477
NC
924 /* Check Temperature Range Select */
925 if (data->kind == adt7461) {
926 if (config & 0x04)
927 data->flags |= LM90_FLAG_ADT7461_EXT;
928 }
929
32c82a93
RB
930 /*
931 * Put MAX6680/MAX8881 into extended resolution (bit 0x10,
932 * 0.125 degree resolution) and range (0x08, extend range
933 * to -64 degree) mode for the remote temperature sensor.
934 */
11e57812 935 if (data->kind == max6680)
32c82a93 936 config |= 0x18;
32c82a93
RB
937
938 config &= 0xBF; /* run */
95238364 939 if (config != data->config_orig) /* Only write if changed */
32c82a93 940 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1, config);
1da177e4
LT
941}
942
9b0e8526 943static int lm90_remove(struct i2c_client *client)
1da177e4 944{
943b0830 945 struct lm90_data *data = i2c_get_clientdata(client);
1da177e4 946
1beeffe4 947 hwmon_device_unregister(data->hwmon_dev);
b6fc1bac 948 lm90_remove_files(client, data);
943b0830 949
95238364
JD
950 /* Restore initial configuration */
951 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
952 data->config_orig);
953
943b0830 954 kfree(data);
1da177e4
LT
955 return 0;
956}
957
53de3342
JD
958static void lm90_alert(struct i2c_client *client, unsigned int flag)
959{
960 struct lm90_data *data = i2c_get_clientdata(client);
961 u8 config, alarms;
962
963 lm90_read_reg(client, LM90_REG_R_STATUS, &alarms);
964 if ((alarms & 0x7f) == 0) {
965 dev_info(&client->dev, "Everything OK\n");
966 } else {
967 if (alarms & 0x61)
968 dev_warn(&client->dev,
969 "temp%d out of range, please check!\n", 1);
970 if (alarms & 0x1a)
971 dev_warn(&client->dev,
972 "temp%d out of range, please check!\n", 2);
973 if (alarms & 0x04)
974 dev_warn(&client->dev,
975 "temp%d diode open, please check!\n", 2);
976
977 /* Disable ALERT# output, because these chips don't implement
978 SMBus alert correctly; they should only hold the alert line
979 low briefly. */
980 if ((data->kind == adm1032 || data->kind == adt7461)
981 && (alarms & data->alert_alarms)) {
982 dev_dbg(&client->dev, "Disabling ALERT#\n");
983 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
984 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
985 config | 0x80);
986 }
987 }
988}
989
6388a388
JD
990static int lm90_read16(struct i2c_client *client, u8 regh, u8 regl, u16 *value)
991{
992 int err;
993 u8 oldh, newh, l;
994
995 /*
996 * There is a trick here. We have to read two registers to have the
997 * sensor temperature, but we have to beware a conversion could occur
998 * inbetween the readings. The datasheet says we should either use
999 * the one-shot conversion register, which we don't want to do
1000 * (disables hardware monitoring) or monitor the busy bit, which is
1001 * impossible (we can't read the values and monitor that bit at the
1002 * exact same time). So the solution used here is to read the high
1003 * byte once, then the low byte, then the high byte again. If the new
1004 * high byte matches the old one, then we have a valid reading. Else
1005 * we have to read the low byte again, and now we believe we have a
1006 * correct reading.
1007 */
1008 if ((err = lm90_read_reg(client, regh, &oldh))
1009 || (err = lm90_read_reg(client, regl, &l))
1010 || (err = lm90_read_reg(client, regh, &newh)))
1011 return err;
1012 if (oldh != newh) {
1013 err = lm90_read_reg(client, regl, &l);
1014 if (err)
1015 return err;
1016 }
1017 *value = (newh << 8) | l;
1018
1019 return 0;
1020}
1021
1da177e4
LT
1022static struct lm90_data *lm90_update_device(struct device *dev)
1023{
1024 struct i2c_client *client = to_i2c_client(dev);
1025 struct lm90_data *data = i2c_get_clientdata(client);
1026
9a61bf63 1027 mutex_lock(&data->update_lock);
1da177e4 1028
8c3c7a25
IS
1029 if (time_after(jiffies, data->last_updated + HZ / 2 + HZ / 10)
1030 || !data->valid) {
6388a388 1031 u8 h, l;
1da177e4
LT
1032
1033 dev_dbg(&client->dev, "Updating lm90 data.\n");
f65e1708
JD
1034 lm90_read_reg(client, LM90_REG_R_LOCAL_LOW, &data->temp8[0]);
1035 lm90_read_reg(client, LM90_REG_R_LOCAL_HIGH, &data->temp8[1]);
1036 lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT, &data->temp8[2]);
1037 lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT, &data->temp8[3]);
8256fe0f 1038 lm90_read_reg(client, LM90_REG_R_TCRIT_HYST, &data->temp_hyst);
1da177e4 1039
88073bb1 1040 if (data->flags & LM90_HAVE_LOCAL_EXT) {
f65e1708
JD
1041 lm90_read16(client, LM90_REG_R_LOCAL_TEMP,
1042 MAX6657_REG_R_LOCAL_TEMPL,
1043 &data->temp11[4]);
1044 } else {
1045 if (lm90_read_reg(client, LM90_REG_R_LOCAL_TEMP,
1046 &h) == 0)
1047 data->temp11[4] = h << 8;
1048 }
6388a388
JD
1049 lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
1050 LM90_REG_R_REMOTE_TEMPL, &data->temp11[0]);
1051
5f502a83
JD
1052 if (lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH, &h) == 0) {
1053 data->temp11[1] = h << 8;
88073bb1 1054 if ((data->flags & LM90_HAVE_REM_LIMIT_EXT)
5f502a83
JD
1055 && lm90_read_reg(client, LM90_REG_R_REMOTE_LOWL,
1056 &l) == 0)
1057 data->temp11[1] |= l;
1058 }
1059 if (lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH, &h) == 0) {
1060 data->temp11[2] = h << 8;
88073bb1 1061 if ((data->flags & LM90_HAVE_REM_LIMIT_EXT)
5f502a83
JD
1062 && lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHL,
1063 &l) == 0)
1064 data->temp11[2] |= l;
1065 }
1066
88073bb1 1067 if (data->flags & LM90_HAVE_OFFSET) {
69f2f96d 1068 if (lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSH,
6388a388 1069 &h) == 0
69f2f96d
JD
1070 && lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSL,
1071 &l) == 0)
6388a388 1072 data->temp11[3] = (h << 8) | l;
69f2f96d 1073 }
8256fe0f 1074 lm90_read_reg(client, LM90_REG_R_STATUS, &data->alarms);
1da177e4 1075
53de3342
JD
1076 /* Re-enable ALERT# output if it was originally enabled and
1077 * relevant alarms are all clear */
1078 if ((data->config_orig & 0x80) == 0
1079 && (data->alarms & data->alert_alarms) == 0) {
1080 u8 config;
1081
1082 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
1083 if (config & 0x80) {
1084 dev_dbg(&client->dev, "Re-enabling ALERT#\n");
1085 i2c_smbus_write_byte_data(client,
1086 LM90_REG_W_CONFIG1,
1087 config & ~0x80);
1088 }
1089 }
1090
1da177e4
LT
1091 data->last_updated = jiffies;
1092 data->valid = 1;
1093 }
1094
9a61bf63 1095 mutex_unlock(&data->update_lock);
1da177e4
LT
1096
1097 return data;
1098}
1099
1100static int __init sensors_lm90_init(void)
1101{
1102 return i2c_add_driver(&lm90_driver);
1103}
1104
1105static void __exit sensors_lm90_exit(void)
1106{
1107 i2c_del_driver(&lm90_driver);
1108}
1109
1110MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
1111MODULE_DESCRIPTION("LM90/ADM1032 driver");
1112MODULE_LICENSE("GPL");
1113
1114module_init(sensors_lm90_init);
1115module_exit(sensors_lm90_exit);
This page took 0.555009 seconds and 5 git commands to generate.