blob: 7e3ef134f1d2ec0f0132e705cce2f8b586bf487d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Shubhrajyoti Dcaaa0f32010-10-28 20:31:44 +02002 * lm75.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
4 * Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/init.h>
23#include <linux/slab.h>
24#include <linux/jiffies.h>
25#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040026#include <linux/hwmon.h>
Jean Delvare9ca8e40c82007-05-08 17:22:01 +020027#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040028#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010029#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "lm75.h"
31
32
David Brownell01a52392008-04-21 12:10:53 -070033/*
34 * This driver handles the LM75 and compatible digital temperature sensors.
David Brownell01a52392008-04-21 12:10:53 -070035 */
36
David Brownell9ebd3d82008-05-03 19:33:15 -070037enum lm75_type { /* keep sorted in alphabetical order */
Michael Henneriche96f9d82011-10-13 04:43:31 -040038 adt75,
Jean Delvare1f86df42009-12-14 21:17:26 +010039 ds1775,
David Brownell9ebd3d82008-05-03 19:33:15 -070040 ds75,
Jean Delvare3fbc81e2013-05-04 14:49:36 +020041 ds7505,
Arnaud Ebalardc98d6c62013-11-09 18:39:14 +010042 g751,
Jean Delvare1f86df42009-12-14 21:17:26 +010043 lm75,
David Brownell9ebd3d82008-05-03 19:33:15 -070044 lm75a,
45 max6625,
46 max6626,
47 mcp980x,
48 stds75,
49 tcn75,
50 tmp100,
51 tmp101,
Shubhrajyoti Datta6d034052010-05-27 19:59:03 +020052 tmp105,
David Brownell9ebd3d82008-05-03 19:33:15 -070053 tmp175,
54 tmp275,
55 tmp75,
56};
57
Jean Delvare8ff69ee2008-08-10 22:56:16 +020058/* Addresses scanned */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050059static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c,
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* The LM75 registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define LM75_REG_CONF 0x01
Jean Delvare9ca8e40c82007-05-08 17:22:01 +020065static const u8 LM75_REG_TEMP[3] = {
66 0x00, /* input */
67 0x03, /* max */
68 0x02, /* hyst */
69};
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71/* Each client has this additional data */
72struct lm75_data {
David Brownell01a52392008-04-21 12:10:53 -070073 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +010074 struct mutex update_lock;
David Brownell9ebd3d82008-05-03 19:33:15 -070075 u8 orig_conf;
Jean Delvare87d06212013-05-04 14:49:36 +020076 u8 resolution; /* In bits, between 9 and 12 */
77 u8 resolution_limits;
David Brownell01a52392008-04-21 12:10:53 -070078 char valid; /* !=0 if registers are valid */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 unsigned long last_updated; /* In jiffies */
Jean Delvare87d06212013-05-04 14:49:36 +020080 unsigned long sample_time; /* In jiffies */
81 s16 temp[3]; /* Register values,
Jean Delvare9ca8e40c82007-05-08 17:22:01 +020082 0 = input
83 1 = max
84 2 = hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static int lm75_read_value(struct i2c_client *client, u8 reg);
88static int lm75_write_value(struct i2c_client *client, u8 reg, u16 value);
89static struct lm75_data *lm75_update_device(struct device *dev);
90
91
David Brownell01a52392008-04-21 12:10:53 -070092/*-----------------------------------------------------------------------*/
93
94/* sysfs attributes for hwmon */
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Jean Delvare9ca8e40c82007-05-08 17:22:01 +020096static ssize_t show_temp(struct device *dev, struct device_attribute *da,
97 char *buf)
98{
99 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
100 struct lm75_data *data = lm75_update_device(dev);
Jean Delvare87d06212013-05-04 14:49:36 +0200101 long temp;
Frans Meulenbroeks1f962f32012-01-03 12:02:40 +0100102
103 if (IS_ERR(data))
104 return PTR_ERR(data);
105
Jean Delvare87d06212013-05-04 14:49:36 +0200106 temp = ((data->temp[attr->index] >> (16 - data->resolution)) * 1000)
107 >> (data->resolution - 8);
108
109 return sprintf(buf, "%ld\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Jean Delvare9ca8e40c82007-05-08 17:22:01 +0200112static ssize_t set_temp(struct device *dev, struct device_attribute *da,
113 const char *buf, size_t count)
114{
115 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
116 struct i2c_client *client = to_i2c_client(dev);
117 struct lm75_data *data = i2c_get_clientdata(client);
118 int nr = attr->index;
Shubhrajyoti De3cd9522010-10-28 20:31:44 +0200119 long temp;
120 int error;
Jean Delvare87d06212013-05-04 14:49:36 +0200121 u8 resolution;
Shubhrajyoti De3cd9522010-10-28 20:31:44 +0200122
Frans Meulenbroeks24edc0a2012-01-03 12:02:41 +0100123 error = kstrtol(buf, 10, &temp);
Shubhrajyoti De3cd9522010-10-28 20:31:44 +0200124 if (error)
125 return error;
Jean Delvare9ca8e40c82007-05-08 17:22:01 +0200126
Jean Delvare87d06212013-05-04 14:49:36 +0200127 /*
128 * Resolution of limit registers is assumed to be the same as the
129 * temperature input register resolution unless given explicitly.
130 */
131 if (attr->index && data->resolution_limits)
132 resolution = data->resolution_limits;
133 else
134 resolution = data->resolution;
135
Jean Delvare9ca8e40c82007-05-08 17:22:01 +0200136 mutex_lock(&data->update_lock);
Jean Delvare87d06212013-05-04 14:49:36 +0200137 temp = clamp_val(temp, LM75_TEMP_MIN, LM75_TEMP_MAX);
138 data->temp[nr] = DIV_ROUND_CLOSEST(temp << (resolution - 8),
139 1000) << (16 - resolution);
Jean Delvare9ca8e40c82007-05-08 17:22:01 +0200140 lm75_write_value(client, LM75_REG_TEMP[nr], data->temp[nr]);
141 mutex_unlock(&data->update_lock);
142 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Jean Delvare9ca8e40c82007-05-08 17:22:01 +0200145static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO,
146 show_temp, set_temp, 1);
147static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IWUSR | S_IRUGO,
148 show_temp, set_temp, 2);
149static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200151static struct attribute *lm75_attributes[] = {
Jean Delvare9ca8e40c82007-05-08 17:22:01 +0200152 &sensor_dev_attr_temp1_input.dev_attr.attr,
153 &sensor_dev_attr_temp1_max.dev_attr.attr,
154 &sensor_dev_attr_temp1_max_hyst.dev_attr.attr,
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200155
156 NULL
157};
158
159static const struct attribute_group lm75_group = {
160 .attrs = lm75_attributes,
161};
162
David Brownell01a52392008-04-21 12:10:53 -0700163/*-----------------------------------------------------------------------*/
164
Jean Delvare8ff69ee2008-08-10 22:56:16 +0200165/* device probe and removal */
David Brownell9ebd3d82008-05-03 19:33:15 -0700166
167static int
168lm75_probe(struct i2c_client *client, const struct i2c_device_id *id)
169{
170 struct lm75_data *data;
171 int status;
172 u8 set_mask, clr_mask;
173 int new;
Jean Delvare0cd2c722013-05-04 14:49:36 +0200174 enum lm75_type kind = id->driver_data;
David Brownell9ebd3d82008-05-03 19:33:15 -0700175
176 if (!i2c_check_functionality(client->adapter,
177 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA))
178 return -EIO;
179
Guenter Roeck13ac7a02012-06-02 09:58:08 -0700180 data = devm_kzalloc(&client->dev, sizeof(struct lm75_data), GFP_KERNEL);
David Brownell9ebd3d82008-05-03 19:33:15 -0700181 if (!data)
182 return -ENOMEM;
183
184 i2c_set_clientdata(client, data);
David Brownell9ebd3d82008-05-03 19:33:15 -0700185 mutex_init(&data->update_lock);
186
187 /* Set to LM75 resolution (9 bits, 1/2 degree C) and range.
188 * Then tweak to be more precise when appropriate.
189 */
190 set_mask = 0;
Jean Delvare8a5c5cc2013-05-04 14:49:36 +0200191 clr_mask = LM75_SHUTDOWN; /* continuous conversions */
192
Jean Delvare0cd2c722013-05-04 14:49:36 +0200193 switch (kind) {
Jean Delvare8a5c5cc2013-05-04 14:49:36 +0200194 case adt75:
195 clr_mask |= 1 << 5; /* not one-shot mode */
Jean Delvare0cd2c722013-05-04 14:49:36 +0200196 data->resolution = 12;
197 data->sample_time = HZ / 8;
Jean Delvare8a5c5cc2013-05-04 14:49:36 +0200198 break;
199 case ds1775:
200 case ds75:
201 case stds75:
Jean Delvare0cd2c722013-05-04 14:49:36 +0200202 clr_mask |= 3 << 5;
203 set_mask |= 2 << 5; /* 11-bit mode */
204 data->resolution = 11;
205 data->sample_time = HZ;
206 break;
Jean Delvare3fbc81e2013-05-04 14:49:36 +0200207 case ds7505:
208 set_mask |= 3 << 5; /* 12-bit mode */
209 data->resolution = 12;
210 data->sample_time = HZ / 4;
211 break;
Arnaud Ebalardc98d6c62013-11-09 18:39:14 +0100212 case g751:
Jean Delvare0cd2c722013-05-04 14:49:36 +0200213 case lm75:
214 case lm75a:
215 data->resolution = 9;
216 data->sample_time = HZ / 2;
217 break;
218 case max6625:
219 data->resolution = 9;
220 data->sample_time = HZ / 4;
221 break;
222 case max6626:
223 data->resolution = 12;
224 data->resolution_limits = 9;
225 data->sample_time = HZ / 4;
226 break;
227 case tcn75:
228 data->resolution = 9;
229 data->sample_time = HZ / 8;
Jean Delvare8a5c5cc2013-05-04 14:49:36 +0200230 break;
231 case mcp980x:
Jean Delvare0cd2c722013-05-04 14:49:36 +0200232 data->resolution_limits = 9;
233 /* fall through */
Jean Delvare8a5c5cc2013-05-04 14:49:36 +0200234 case tmp100:
235 case tmp101:
Jean Delvare0cd2c722013-05-04 14:49:36 +0200236 set_mask |= 3 << 5; /* 12-bit mode */
237 data->resolution = 12;
238 data->sample_time = HZ;
239 clr_mask |= 1 << 7; /* not one-shot mode */
240 break;
Jean Delvare8a5c5cc2013-05-04 14:49:36 +0200241 case tmp105:
242 case tmp175:
243 case tmp275:
244 case tmp75:
Jean Delvare0cd2c722013-05-04 14:49:36 +0200245 set_mask |= 3 << 5; /* 12-bit mode */
Jean Delvare8a5c5cc2013-05-04 14:49:36 +0200246 clr_mask |= 1 << 7; /* not one-shot mode */
Jean Delvare0cd2c722013-05-04 14:49:36 +0200247 data->resolution = 12;
248 data->sample_time = HZ / 2;
Jean Delvare8a5c5cc2013-05-04 14:49:36 +0200249 break;
250 }
David Brownell9ebd3d82008-05-03 19:33:15 -0700251
252 /* configure as specified */
253 status = lm75_read_value(client, LM75_REG_CONF);
254 if (status < 0) {
255 dev_dbg(&client->dev, "Can't read config? %d\n", status);
Guenter Roeck13ac7a02012-06-02 09:58:08 -0700256 return status;
David Brownell9ebd3d82008-05-03 19:33:15 -0700257 }
258 data->orig_conf = status;
259 new = status & ~clr_mask;
260 new |= set_mask;
261 if (status != new)
262 lm75_write_value(client, LM75_REG_CONF, new);
263 dev_dbg(&client->dev, "Config %02x\n", new);
264
265 /* Register sysfs hooks */
266 status = sysfs_create_group(&client->dev.kobj, &lm75_group);
267 if (status)
Guenter Roeck13ac7a02012-06-02 09:58:08 -0700268 return status;
David Brownell9ebd3d82008-05-03 19:33:15 -0700269
270 data->hwmon_dev = hwmon_device_register(&client->dev);
271 if (IS_ERR(data->hwmon_dev)) {
272 status = PTR_ERR(data->hwmon_dev);
273 goto exit_remove;
274 }
275
276 dev_info(&client->dev, "%s: sensor '%s'\n",
Kay Sievers739cf3a2009-01-06 10:44:41 -0800277 dev_name(data->hwmon_dev), client->name);
David Brownell9ebd3d82008-05-03 19:33:15 -0700278
279 return 0;
280
281exit_remove:
282 sysfs_remove_group(&client->dev.kobj, &lm75_group);
David Brownell9ebd3d82008-05-03 19:33:15 -0700283 return status;
284}
285
286static int lm75_remove(struct i2c_client *client)
287{
288 struct lm75_data *data = i2c_get_clientdata(client);
289
290 hwmon_device_unregister(data->hwmon_dev);
291 sysfs_remove_group(&client->dev.kobj, &lm75_group);
292 lm75_write_value(client, LM75_REG_CONF, data->orig_conf);
David Brownell9ebd3d82008-05-03 19:33:15 -0700293 return 0;
294}
295
296static const struct i2c_device_id lm75_ids[] = {
Michael Henneriche96f9d82011-10-13 04:43:31 -0400297 { "adt75", adt75, },
David Brownell9ebd3d82008-05-03 19:33:15 -0700298 { "ds1775", ds1775, },
299 { "ds75", ds75, },
Jean Delvare3fbc81e2013-05-04 14:49:36 +0200300 { "ds7505", ds7505, },
Arnaud Ebalardc98d6c62013-11-09 18:39:14 +0100301 { "g751", g751, },
David Brownell9ebd3d82008-05-03 19:33:15 -0700302 { "lm75", lm75, },
303 { "lm75a", lm75a, },
304 { "max6625", max6625, },
305 { "max6626", max6626, },
306 { "mcp980x", mcp980x, },
307 { "stds75", stds75, },
308 { "tcn75", tcn75, },
309 { "tmp100", tmp100, },
310 { "tmp101", tmp101, },
Shubhrajyoti Datta6d034052010-05-27 19:59:03 +0200311 { "tmp105", tmp105, },
David Brownell9ebd3d82008-05-03 19:33:15 -0700312 { "tmp175", tmp175, },
313 { "tmp275", tmp275, },
314 { "tmp75", tmp75, },
315 { /* LIST END */ }
316};
317MODULE_DEVICE_TABLE(i2c, lm75_ids);
318
Len Sorensen05e82fe2011-03-21 17:59:36 +0100319#define LM75A_ID 0xA1
320
Jean Delvare8ff69ee2008-08-10 22:56:16 +0200321/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +0100322static int lm75_detect(struct i2c_client *new_client,
Jean Delvare8ff69ee2008-08-10 22:56:16 +0200323 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Jean Delvare8ff69ee2008-08-10 22:56:16 +0200325 struct i2c_adapter *adapter = new_client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 int i;
Jean Delvaree76f67b2011-03-21 17:59:36 +0100327 int conf, hyst, os;
Len Sorensen05e82fe2011-03-21 17:59:36 +0100328 bool is_lm75a = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
331 I2C_FUNC_SMBUS_WORD_DATA))
Jean Delvare8ff69ee2008-08-10 22:56:16 +0200332 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Jean Delvare426343e2011-10-13 17:15:11 -0400334 /*
335 * Now, we do the remaining detection. There is no identification-
336 * dedicated register so we have to rely on several tricks:
337 * unused bits, registers cycling over 8-address boundaries,
338 * addresses 0x04-0x07 returning the last read value.
339 * The cycling+unused addresses combination is not tested,
340 * since it would significantly slow the detection down and would
341 * hardly add any value.
342 *
343 * The National Semiconductor LM75A is different than earlier
344 * LM75s. It has an ID byte of 0xaX (where X is the chip
345 * revision, with 1 being the only revision in existence) in
346 * register 7, and unused registers return 0xff rather than the
347 * last read value.
348 *
349 * Note that this function only detects the original National
350 * Semiconductor LM75 and the LM75A. Clones from other vendors
351 * aren't detected, on purpose, because they are typically never
352 * found on PC hardware. They are found on embedded designs where
353 * they can be instantiated explicitly so detection is not needed.
354 * The absence of identification registers on all these clones
355 * would make their exhaustive detection very difficult and weak,
356 * and odds are that the driver would bind to unsupported devices.
357 */
Len Sorensen05e82fe2011-03-21 17:59:36 +0100358
Jean Delvaree76f67b2011-03-21 17:59:36 +0100359 /* Unused bits */
Jean Delvare52df6442009-12-09 20:35:57 +0100360 conf = i2c_smbus_read_byte_data(new_client, 1);
Jean Delvaree76f67b2011-03-21 17:59:36 +0100361 if (conf & 0xe0)
362 return -ENODEV;
Len Sorensen05e82fe2011-03-21 17:59:36 +0100363
364 /* First check for LM75A */
365 if (i2c_smbus_read_byte_data(new_client, 7) == LM75A_ID) {
366 /* LM75A returns 0xff on unused registers so
367 just to be sure we check for that too. */
368 if (i2c_smbus_read_byte_data(new_client, 4) != 0xff
369 || i2c_smbus_read_byte_data(new_client, 5) != 0xff
370 || i2c_smbus_read_byte_data(new_client, 6) != 0xff)
371 return -ENODEV;
372 is_lm75a = 1;
Jean Delvaree76f67b2011-03-21 17:59:36 +0100373 hyst = i2c_smbus_read_byte_data(new_client, 2);
374 os = i2c_smbus_read_byte_data(new_client, 3);
Len Sorensen05e82fe2011-03-21 17:59:36 +0100375 } else { /* Traditional style LM75 detection */
376 /* Unused addresses */
Jean Delvaree76f67b2011-03-21 17:59:36 +0100377 hyst = i2c_smbus_read_byte_data(new_client, 2);
378 if (i2c_smbus_read_byte_data(new_client, 4) != hyst
379 || i2c_smbus_read_byte_data(new_client, 5) != hyst
380 || i2c_smbus_read_byte_data(new_client, 6) != hyst
381 || i2c_smbus_read_byte_data(new_client, 7) != hyst)
Len Sorensen05e82fe2011-03-21 17:59:36 +0100382 return -ENODEV;
Jean Delvaree76f67b2011-03-21 17:59:36 +0100383 os = i2c_smbus_read_byte_data(new_client, 3);
384 if (i2c_smbus_read_byte_data(new_client, 4) != os
385 || i2c_smbus_read_byte_data(new_client, 5) != os
386 || i2c_smbus_read_byte_data(new_client, 6) != os
387 || i2c_smbus_read_byte_data(new_client, 7) != os)
Len Sorensen05e82fe2011-03-21 17:59:36 +0100388 return -ENODEV;
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Jean Delvare52df6442009-12-09 20:35:57 +0100391 /* Addresses cycling */
Jean Delvaree76f67b2011-03-21 17:59:36 +0100392 for (i = 8; i <= 248; i += 40) {
Jean Delvare52df6442009-12-09 20:35:57 +0100393 if (i2c_smbus_read_byte_data(new_client, i + 1) != conf
Jean Delvaree76f67b2011-03-21 17:59:36 +0100394 || i2c_smbus_read_byte_data(new_client, i + 2) != hyst
395 || i2c_smbus_read_byte_data(new_client, i + 3) != os)
Jean Delvare52df6442009-12-09 20:35:57 +0100396 return -ENODEV;
Len Sorensen05e82fe2011-03-21 17:59:36 +0100397 if (is_lm75a && i2c_smbus_read_byte_data(new_client, i + 7)
398 != LM75A_ID)
399 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
Len Sorensen05e82fe2011-03-21 17:59:36 +0100402 strlcpy(info->type, is_lm75a ? "lm75a" : "lm75", I2C_NAME_SIZE);
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +0200403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Shubhrajyoti Datta99145182010-08-14 21:08:50 +0200407#ifdef CONFIG_PM
408static int lm75_suspend(struct device *dev)
409{
410 int status;
411 struct i2c_client *client = to_i2c_client(dev);
412 status = lm75_read_value(client, LM75_REG_CONF);
413 if (status < 0) {
414 dev_dbg(&client->dev, "Can't read config? %d\n", status);
415 return status;
416 }
417 status = status | LM75_SHUTDOWN;
418 lm75_write_value(client, LM75_REG_CONF, status);
419 return 0;
420}
421
422static int lm75_resume(struct device *dev)
423{
424 int status;
425 struct i2c_client *client = to_i2c_client(dev);
426 status = lm75_read_value(client, LM75_REG_CONF);
427 if (status < 0) {
428 dev_dbg(&client->dev, "Can't read config? %d\n", status);
429 return status;
430 }
431 status = status & ~LM75_SHUTDOWN;
432 lm75_write_value(client, LM75_REG_CONF, status);
433 return 0;
434}
435
436static const struct dev_pm_ops lm75_dev_pm_ops = {
437 .suspend = lm75_suspend,
438 .resume = lm75_resume,
439};
440#define LM75_DEV_PM_OPS (&lm75_dev_pm_ops)
441#else
442#define LM75_DEV_PM_OPS NULL
443#endif /* CONFIG_PM */
444
Jean Delvare8ff69ee2008-08-10 22:56:16 +0200445static struct i2c_driver lm75_driver = {
446 .class = I2C_CLASS_HWMON,
David Brownell01a52392008-04-21 12:10:53 -0700447 .driver = {
Jean Delvare8ff69ee2008-08-10 22:56:16 +0200448 .name = "lm75",
Shubhrajyoti Datta99145182010-08-14 21:08:50 +0200449 .pm = LM75_DEV_PM_OPS,
David Brownell01a52392008-04-21 12:10:53 -0700450 },
Jean Delvare8ff69ee2008-08-10 22:56:16 +0200451 .probe = lm75_probe,
452 .remove = lm75_remove,
453 .id_table = lm75_ids,
454 .detect = lm75_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100455 .address_list = normal_i2c,
David Brownell01a52392008-04-21 12:10:53 -0700456};
457
458/*-----------------------------------------------------------------------*/
459
460/* register access */
461
Shubhrajyoti Dcaaa0f32010-10-28 20:31:44 +0200462/*
463 * All registers are word-sized, except for the configuration register.
464 * LM75 uses a high-byte first convention, which is exactly opposite to
465 * the SMBus standard.
466 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467static int lm75_read_value(struct i2c_client *client, u8 reg)
468{
469 if (reg == LM75_REG_CONF)
470 return i2c_smbus_read_byte_data(client, reg);
Jean Delvare90f41022011-11-04 12:00:47 +0100471 else
472 return i2c_smbus_read_word_swapped(client, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475static int lm75_write_value(struct i2c_client *client, u8 reg, u16 value)
476{
477 if (reg == LM75_REG_CONF)
478 return i2c_smbus_write_byte_data(client, reg, value);
479 else
Jean Delvare90f41022011-11-04 12:00:47 +0100480 return i2c_smbus_write_word_swapped(client, reg, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483static struct lm75_data *lm75_update_device(struct device *dev)
484{
485 struct i2c_client *client = to_i2c_client(dev);
486 struct lm75_data *data = i2c_get_clientdata(client);
Frans Meulenbroeks1f962f32012-01-03 12:02:40 +0100487 struct lm75_data *ret = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100489 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Jean Delvare87d06212013-05-04 14:49:36 +0200491 if (time_after(jiffies, data->last_updated + data->sample_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 || !data->valid) {
Jean Delvare9ca8e40c82007-05-08 17:22:01 +0200493 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 dev_dbg(&client->dev, "Starting lm75 update\n");
495
David Brownellbcccc3a2008-05-03 19:19:16 -0700496 for (i = 0; i < ARRAY_SIZE(data->temp); i++) {
497 int status;
498
499 status = lm75_read_value(client, LM75_REG_TEMP[i]);
Frans Meulenbroeks1f962f32012-01-03 12:02:40 +0100500 if (unlikely(status < 0)) {
501 dev_dbg(dev,
502 "LM75: Failed to read value: reg %d, error %d\n",
503 LM75_REG_TEMP[i], status);
504 ret = ERR_PTR(status);
505 data->valid = 0;
506 goto abort;
507 }
508 data->temp[i] = status;
David Brownellbcccc3a2008-05-03 19:19:16 -0700509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 data->last_updated = jiffies;
511 data->valid = 1;
512 }
513
Frans Meulenbroeks1f962f32012-01-03 12:02:40 +0100514abort:
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100515 mutex_unlock(&data->update_lock);
Frans Meulenbroeks1f962f32012-01-03 12:02:40 +0100516 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Axel Linf0967ee2012-01-20 15:38:18 +0800519module_i2c_driver(lm75_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>");
522MODULE_DESCRIPTION("LM75 driver");
523MODULE_LICENSE("GPL");