blob: 0fca8613e7d8cceaed333347c7a443ad0d491e96 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Guenter Roeck02fe2fd2012-01-14 13:42:20 -08002 * lm77.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
4 *
5 * Copyright (c) 2004 Andras BALI <drewie@freemail.hu>
6 *
7 * Heavily based on lm75.c by Frodo Looijaard <frodol@dds.nl>. The LM77
8 * is a temperature sensor and thermal window comparator with 0.5 deg
9 * resolution made by National Semiconductor. Complete datasheet can be
10 * obtained at their site:
11 * http://www.national.com/pf/LM/LM77.html
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/slab.h>
31#include <linux/jiffies.h>
32#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040033#include <linux/hwmon.h>
Jean Delvare1f52af02008-01-03 23:35:33 +010034#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040035#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010036#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* Addresses to scan */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050039static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b,
40 I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/* The LM77 registers */
43#define LM77_REG_TEMP 0x00
44#define LM77_REG_CONF 0x01
45#define LM77_REG_TEMP_HYST 0x02
46#define LM77_REG_TEMP_CRIT 0x03
47#define LM77_REG_TEMP_MIN 0x04
48#define LM77_REG_TEMP_MAX 0x05
49
50/* Each client has this additional data */
51struct lm77_data {
Guenter Roeck02fe2fd2012-01-14 13:42:20 -080052 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +010053 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 char valid;
55 unsigned long last_updated; /* In jiffies */
56 int temp_input; /* Temperatures */
57 int temp_crit;
58 int temp_min;
59 int temp_max;
60 int temp_hyst;
61 u8 alarms;
62};
63
Jean Delvarea189dd62008-07-16 19:30:13 +020064static int lm77_probe(struct i2c_client *client,
65 const struct i2c_device_id *id);
Jean Delvare310ec792009-12-14 21:17:23 +010066static int lm77_detect(struct i2c_client *client, struct i2c_board_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static void lm77_init_client(struct i2c_client *client);
Jean Delvarea189dd62008-07-16 19:30:13 +020068static int lm77_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static u16 lm77_read_value(struct i2c_client *client, u8 reg);
70static int lm77_write_value(struct i2c_client *client, u8 reg, u16 value);
71
72static struct lm77_data *lm77_update_device(struct device *dev);
73
74
Jean Delvarea189dd62008-07-16 19:30:13 +020075static const struct i2c_device_id lm77_id[] = {
Jean Delvare1f86df42009-12-14 21:17:26 +010076 { "lm77", 0 },
Jean Delvarea189dd62008-07-16 19:30:13 +020077 { }
78};
79MODULE_DEVICE_TABLE(i2c, lm77_id);
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* This is the driver that will be inserted */
82static struct i2c_driver lm77_driver = {
Jean Delvarea189dd62008-07-16 19:30:13 +020083 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +010084 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +010085 .name = "lm77",
86 },
Jean Delvarea189dd62008-07-16 19:30:13 +020087 .probe = lm77_probe,
88 .remove = lm77_remove,
89 .id_table = lm77_id,
90 .detect = lm77_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +010091 .address_list = normal_i2c,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
94/* straight from the datasheet */
95#define LM77_TEMP_MIN (-55000)
96#define LM77_TEMP_MAX 125000
97
Guenter Roeck02fe2fd2012-01-14 13:42:20 -080098/*
99 * In the temperature registers, the low 3 bits are not part of the
100 * temperature values; they are the status bits.
101 */
Jean Delvare413b6452006-01-09 22:43:08 +0100102static inline s16 LM77_TEMP_TO_REG(int temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 int ntemp = SENSORS_LIMIT(temp, LM77_TEMP_MIN, LM77_TEMP_MAX);
Jean Delvare413b6452006-01-09 22:43:08 +0100105 return (ntemp / 500) * 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Jean Delvare413b6452006-01-09 22:43:08 +0100108static inline int LM77_TEMP_FROM_REG(s16 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Jean Delvare413b6452006-01-09 22:43:08 +0100110 return (reg / 8) * 500;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113/* sysfs stuff */
114
115/* read routines for temperature limits */
116#define show(value) \
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800117static ssize_t show_##value(struct device *dev, \
118 struct device_attribute *attr, \
119 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{ \
121 struct lm77_data *data = lm77_update_device(dev); \
122 return sprintf(buf, "%d\n", data->value); \
123}
124
125show(temp_input);
126show(temp_crit);
127show(temp_min);
128show(temp_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/* read routines for hysteresis values */
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800131static ssize_t show_temp_crit_hyst(struct device *dev,
132 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 struct lm77_data *data = lm77_update_device(dev);
135 return sprintf(buf, "%d\n", data->temp_crit - data->temp_hyst);
136}
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800137static ssize_t show_temp_min_hyst(struct device *dev,
138 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 struct lm77_data *data = lm77_update_device(dev);
141 return sprintf(buf, "%d\n", data->temp_min + data->temp_hyst);
142}
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800143static ssize_t show_temp_max_hyst(struct device *dev,
144 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct lm77_data *data = lm77_update_device(dev);
147 return sprintf(buf, "%d\n", data->temp_max - data->temp_hyst);
148}
149
150/* write routines */
151#define set(value, reg) \
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800152static ssize_t set_##value(struct device *dev, struct device_attribute *attr, \
153 const char *buf, size_t count) \
154{ \
155 struct i2c_client *client = to_i2c_client(dev); \
156 struct lm77_data *data = i2c_get_clientdata(client); \
157 long val; \
158 int err = kstrtol(buf, 10, &val); \
159 if (err) \
160 return err; \
161 \
162 mutex_lock(&data->update_lock); \
163 data->value = val; \
164 lm77_write_value(client, reg, LM77_TEMP_TO_REG(data->value)); \
165 mutex_unlock(&data->update_lock); \
166 return count; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169set(temp_min, LM77_REG_TEMP_MIN);
170set(temp_max, LM77_REG_TEMP_MAX);
171
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800172/*
173 * hysteresis is stored as a relative value on the chip, so it has to be
174 * converted first
175 */
176static ssize_t set_temp_crit_hyst(struct device *dev,
177 struct device_attribute *attr,
178 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 struct i2c_client *client = to_i2c_client(dev);
181 struct lm77_data *data = i2c_get_clientdata(client);
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800182 unsigned long val;
183 int err;
184
185 err = kstrtoul(buf, 10, &val);
186 if (err)
187 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100189 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 data->temp_hyst = data->temp_crit - val;
191 lm77_write_value(client, LM77_REG_TEMP_HYST,
192 LM77_TEMP_TO_REG(data->temp_hyst));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100193 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return count;
195}
196
197/* preserve hysteresis when setting T_crit */
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800198static ssize_t set_temp_crit(struct device *dev, struct device_attribute *attr,
199 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 struct i2c_client *client = to_i2c_client(dev);
202 struct lm77_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int oldcrithyst;
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800204 unsigned long val;
205 int err;
206
207 err = kstrtoul(buf, 10, &val);
208 if (err)
209 return err;
210
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100211 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 oldcrithyst = data->temp_crit - data->temp_hyst;
213 data->temp_crit = val;
214 data->temp_hyst = data->temp_crit - oldcrithyst;
215 lm77_write_value(client, LM77_REG_TEMP_CRIT,
216 LM77_TEMP_TO_REG(data->temp_crit));
217 lm77_write_value(client, LM77_REG_TEMP_HYST,
218 LM77_TEMP_TO_REG(data->temp_hyst));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100219 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return count;
221}
222
Jean Delvare1f52af02008-01-03 23:35:33 +0100223static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
224 char *buf)
225{
226 int bitnr = to_sensor_dev_attr(attr)->index;
227 struct lm77_data *data = lm77_update_device(dev);
228 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
229}
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231static DEVICE_ATTR(temp1_input, S_IRUGO,
232 show_temp_input, NULL);
233static DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO,
234 show_temp_crit, set_temp_crit);
235static DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO,
236 show_temp_min, set_temp_min);
237static DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO,
238 show_temp_max, set_temp_max);
239
240static DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO,
241 show_temp_crit_hyst, set_temp_crit_hyst);
242static DEVICE_ATTR(temp1_min_hyst, S_IRUGO,
243 show_temp_min_hyst, NULL);
244static DEVICE_ATTR(temp1_max_hyst, S_IRUGO,
245 show_temp_max_hyst, NULL);
246
Jean Delvare1f52af02008-01-03 23:35:33 +0100247static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 2);
248static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 0);
249static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200251static struct attribute *lm77_attributes[] = {
252 &dev_attr_temp1_input.attr,
253 &dev_attr_temp1_crit.attr,
254 &dev_attr_temp1_min.attr,
255 &dev_attr_temp1_max.attr,
256 &dev_attr_temp1_crit_hyst.attr,
257 &dev_attr_temp1_min_hyst.attr,
258 &dev_attr_temp1_max_hyst.attr,
Jean Delvare1f52af02008-01-03 23:35:33 +0100259 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
260 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
261 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200262 NULL
263};
264
265static const struct attribute_group lm77_group = {
266 .attrs = lm77_attributes,
267};
268
Jean Delvarea189dd62008-07-16 19:30:13 +0200269/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +0100270static int lm77_detect(struct i2c_client *new_client,
Jean Delvarea189dd62008-07-16 19:30:13 +0200271 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Jean Delvarea189dd62008-07-16 19:30:13 +0200273 struct i2c_adapter *adapter = new_client->adapter;
Jean Delvare747d9be2009-12-09 20:35:52 +0100274 int i, cur, conf, hyst, crit, min, max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
277 I2C_FUNC_SMBUS_WORD_DATA))
Jean Delvarea189dd62008-07-16 19:30:13 +0200278 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800280 /*
281 * Here comes the remaining detection. Since the LM77 has no
282 * register dedicated to identification, we have to rely on the
283 * following tricks:
284 *
285 * 1. the high 4 bits represent the sign and thus they should
286 * always be the same
287 * 2. the high 3 bits are unused in the configuration register
288 * 3. addresses 0x06 and 0x07 return the last read value
289 * 4. registers cycling over 8-address boundaries
290 *
291 * Word-sized registers are high-byte first.
292 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Jean Delvare747d9be2009-12-09 20:35:52 +0100294 /* addresses cycling */
295 cur = i2c_smbus_read_word_data(new_client, 0);
296 conf = i2c_smbus_read_byte_data(new_client, 1);
297 hyst = i2c_smbus_read_word_data(new_client, 2);
298 crit = i2c_smbus_read_word_data(new_client, 3);
299 min = i2c_smbus_read_word_data(new_client, 4);
300 max = i2c_smbus_read_word_data(new_client, 5);
301 for (i = 8; i <= 0xff; i += 8) {
302 if (i2c_smbus_read_byte_data(new_client, i + 1) != conf
303 || i2c_smbus_read_word_data(new_client, i + 2) != hyst
304 || i2c_smbus_read_word_data(new_client, i + 3) != crit
305 || i2c_smbus_read_word_data(new_client, i + 4) != min
306 || i2c_smbus_read_word_data(new_client, i + 5) != max)
Jean Delvarea189dd62008-07-16 19:30:13 +0200307 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
309
Jean Delvare747d9be2009-12-09 20:35:52 +0100310 /* sign bits */
311 if (((cur & 0x00f0) != 0xf0 && (cur & 0x00f0) != 0x0)
312 || ((hyst & 0x00f0) != 0xf0 && (hyst & 0x00f0) != 0x0)
313 || ((crit & 0x00f0) != 0xf0 && (crit & 0x00f0) != 0x0)
314 || ((min & 0x00f0) != 0xf0 && (min & 0x00f0) != 0x0)
315 || ((max & 0x00f0) != 0xf0 && (max & 0x00f0) != 0x0))
316 return -ENODEV;
317
318 /* unused bits */
319 if (conf & 0xe0)
320 return -ENODEV;
321
322 /* 0x06 and 0x07 return the last read value */
323 cur = i2c_smbus_read_word_data(new_client, 0);
324 if (i2c_smbus_read_word_data(new_client, 6) != cur
325 || i2c_smbus_read_word_data(new_client, 7) != cur)
326 return -ENODEV;
327 hyst = i2c_smbus_read_word_data(new_client, 2);
328 if (i2c_smbus_read_word_data(new_client, 6) != hyst
329 || i2c_smbus_read_word_data(new_client, 7) != hyst)
330 return -ENODEV;
331 min = i2c_smbus_read_word_data(new_client, 4);
332 if (i2c_smbus_read_word_data(new_client, 6) != min
333 || i2c_smbus_read_word_data(new_client, 7) != min)
334 return -ENODEV;
335
Jean Delvarea189dd62008-07-16 19:30:13 +0200336 strlcpy(info->type, "lm77", I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Jean Delvarea189dd62008-07-16 19:30:13 +0200338 return 0;
339}
340
341static int lm77_probe(struct i2c_client *new_client,
342 const struct i2c_device_id *id)
343{
344 struct lm77_data *data;
345 int err;
346
347 data = kzalloc(sizeof(struct lm77_data), GFP_KERNEL);
348 if (!data) {
349 err = -ENOMEM;
350 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352
Jean Delvarea189dd62008-07-16 19:30:13 +0200353 i2c_set_clientdata(new_client, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 data->valid = 0;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100355 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 /* Initialize the LM77 chip */
358 lm77_init_client(new_client);
359
360 /* Register sysfs hooks */
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800361 err = sysfs_create_group(&new_client->dev.kobj, &lm77_group);
362 if (err)
Jean Delvarea189dd62008-07-16 19:30:13 +0200363 goto exit_free;
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200364
Tony Jones1beeffe2007-08-20 13:46:20 -0700365 data->hwmon_dev = hwmon_device_register(&new_client->dev);
366 if (IS_ERR(data->hwmon_dev)) {
367 err = PTR_ERR(data->hwmon_dev);
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200368 goto exit_remove;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400369 }
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return 0;
372
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200373exit_remove:
374 sysfs_remove_group(&new_client->dev.kobj, &lm77_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375exit_free:
376 kfree(data);
377exit:
378 return err;
379}
380
Jean Delvarea189dd62008-07-16 19:30:13 +0200381static int lm77_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400383 struct lm77_data *data = i2c_get_clientdata(client);
Tony Jones1beeffe2007-08-20 13:46:20 -0700384 hwmon_device_unregister(data->hwmon_dev);
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200385 sysfs_remove_group(&client->dev.kobj, &lm77_group);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400386 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return 0;
388}
389
Guenter Roeck02fe2fd2012-01-14 13:42:20 -0800390/*
391 * All registers are word-sized, except for the configuration register.
392 * The LM77 uses the high-byte first convention.
393 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394static u16 lm77_read_value(struct i2c_client *client, u8 reg)
395{
396 if (reg == LM77_REG_CONF)
397 return i2c_smbus_read_byte_data(client, reg);
398 else
Jean Delvare90f41022011-11-04 12:00:47 +0100399 return i2c_smbus_read_word_swapped(client, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
402static int lm77_write_value(struct i2c_client *client, u8 reg, u16 value)
403{
404 if (reg == LM77_REG_CONF)
405 return i2c_smbus_write_byte_data(client, reg, value);
406 else
Jean Delvare90f41022011-11-04 12:00:47 +0100407 return i2c_smbus_write_word_swapped(client, reg, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
410static void lm77_init_client(struct i2c_client *client)
411{
412 /* Initialize the LM77 chip - turn off shutdown mode */
413 int conf = lm77_read_value(client, LM77_REG_CONF);
414 if (conf & 1)
415 lm77_write_value(client, LM77_REG_CONF, conf & 0xfe);
416}
417
418static struct lm77_data *lm77_update_device(struct device *dev)
419{
420 struct i2c_client *client = to_i2c_client(dev);
421 struct lm77_data *data = i2c_get_clientdata(client);
422
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100423 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
426 || !data->valid) {
427 dev_dbg(&client->dev, "Starting lm77 update\n");
428 data->temp_input =
429 LM77_TEMP_FROM_REG(lm77_read_value(client,
430 LM77_REG_TEMP));
431 data->temp_hyst =
432 LM77_TEMP_FROM_REG(lm77_read_value(client,
433 LM77_REG_TEMP_HYST));
434 data->temp_crit =
435 LM77_TEMP_FROM_REG(lm77_read_value(client,
436 LM77_REG_TEMP_CRIT));
437 data->temp_min =
438 LM77_TEMP_FROM_REG(lm77_read_value(client,
439 LM77_REG_TEMP_MIN));
440 data->temp_max =
441 LM77_TEMP_FROM_REG(lm77_read_value(client,
442 LM77_REG_TEMP_MAX));
443 data->alarms =
444 lm77_read_value(client, LM77_REG_TEMP) & 0x0007;
445 data->last_updated = jiffies;
446 data->valid = 1;
447 }
448
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100449 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 return data;
452}
453
Axel Linf0967ee2012-01-20 15:38:18 +0800454module_i2c_driver(lm77_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456MODULE_AUTHOR("Andras BALI <drewie@freemail.hu>");
457MODULE_DESCRIPTION("LM77 driver");
458MODULE_LICENSE("GPL");