hwmon: (lm75) Drop lm75_read_value and lm75_write_value
[deliverable/linux.git] / drivers / hwmon / lm75.c
1 /*
2 * 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 */
20
21 #include <linux/module.h>
22 #include <linux/init.h>
23 #include <linux/slab.h>
24 #include <linux/jiffies.h>
25 #include <linux/i2c.h>
26 #include <linux/hwmon.h>
27 #include <linux/hwmon-sysfs.h>
28 #include <linux/err.h>
29 #include <linux/mutex.h>
30 #include <linux/of.h>
31 #include <linux/thermal.h>
32 #include "lm75.h"
33
34
35 /*
36 * This driver handles the LM75 and compatible digital temperature sensors.
37 */
38
39 enum lm75_type { /* keep sorted in alphabetical order */
40 adt75,
41 ds1775,
42 ds75,
43 ds7505,
44 g751,
45 lm75,
46 lm75a,
47 lm75b,
48 max6625,
49 max6626,
50 mcp980x,
51 stds75,
52 tcn75,
53 tmp100,
54 tmp101,
55 tmp105,
56 tmp112,
57 tmp175,
58 tmp275,
59 tmp75,
60 tmp75c,
61 };
62
63 /* Addresses scanned */
64 static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c,
65 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
66
67
68 /* The LM75 registers */
69 #define LM75_REG_CONF 0x01
70 static const u8 LM75_REG_TEMP[3] = {
71 0x00, /* input */
72 0x03, /* max */
73 0x02, /* hyst */
74 };
75
76 /* Each client has this additional data */
77 struct lm75_data {
78 struct i2c_client *client;
79 struct mutex update_lock;
80 u8 orig_conf;
81 u8 resolution; /* In bits, between 9 and 12 */
82 u8 resolution_limits;
83 char valid; /* !=0 if registers are valid */
84 unsigned long last_updated; /* In jiffies */
85 unsigned long sample_time; /* In jiffies */
86 s16 temp[3]; /* Register values,
87 0 = input
88 1 = max
89 2 = hyst */
90 };
91
92 static struct lm75_data *lm75_update_device(struct device *dev);
93
94
95 /*-----------------------------------------------------------------------*/
96
97 static inline long lm75_reg_to_mc(s16 temp, u8 resolution)
98 {
99 return ((temp >> (16 - resolution)) * 1000) >> (resolution - 8);
100 }
101
102 /* sysfs attributes for hwmon */
103
104 static int lm75_read_temp(void *dev, int *temp)
105 {
106 struct lm75_data *data = lm75_update_device(dev);
107
108 if (IS_ERR(data))
109 return PTR_ERR(data);
110
111 *temp = lm75_reg_to_mc(data->temp[0], data->resolution);
112
113 return 0;
114 }
115
116 static ssize_t show_temp(struct device *dev, struct device_attribute *da,
117 char *buf)
118 {
119 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
120 struct lm75_data *data = lm75_update_device(dev);
121
122 if (IS_ERR(data))
123 return PTR_ERR(data);
124
125 return sprintf(buf, "%ld\n", lm75_reg_to_mc(data->temp[attr->index],
126 data->resolution));
127 }
128
129 static ssize_t set_temp(struct device *dev, struct device_attribute *da,
130 const char *buf, size_t count)
131 {
132 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
133 struct lm75_data *data = dev_get_drvdata(dev);
134 struct i2c_client *client = data->client;
135 int nr = attr->index;
136 long temp;
137 int error;
138 u8 resolution;
139
140 error = kstrtol(buf, 10, &temp);
141 if (error)
142 return error;
143
144 /*
145 * Resolution of limit registers is assumed to be the same as the
146 * temperature input register resolution unless given explicitly.
147 */
148 if (attr->index && data->resolution_limits)
149 resolution = data->resolution_limits;
150 else
151 resolution = data->resolution;
152
153 mutex_lock(&data->update_lock);
154 temp = clamp_val(temp, LM75_TEMP_MIN, LM75_TEMP_MAX);
155 data->temp[nr] = DIV_ROUND_CLOSEST(temp << (resolution - 8),
156 1000) << (16 - resolution);
157 i2c_smbus_write_word_swapped(client, LM75_REG_TEMP[nr], data->temp[nr]);
158 mutex_unlock(&data->update_lock);
159 return count;
160 }
161
162 static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO,
163 show_temp, set_temp, 1);
164 static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IWUSR | S_IRUGO,
165 show_temp, set_temp, 2);
166 static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, 0);
167
168 static struct attribute *lm75_attrs[] = {
169 &sensor_dev_attr_temp1_input.dev_attr.attr,
170 &sensor_dev_attr_temp1_max.dev_attr.attr,
171 &sensor_dev_attr_temp1_max_hyst.dev_attr.attr,
172
173 NULL
174 };
175 ATTRIBUTE_GROUPS(lm75);
176
177 static const struct thermal_zone_of_device_ops lm75_of_thermal_ops = {
178 .get_temp = lm75_read_temp,
179 };
180
181 /*-----------------------------------------------------------------------*/
182
183 /* device probe and removal */
184
185 static void lm75_remove(void *data)
186 {
187 struct lm75_data *lm75 = data;
188 struct i2c_client *client = lm75->client;
189
190 i2c_smbus_write_byte_data(client, LM75_REG_CONF, lm75->orig_conf);
191 }
192
193 static int
194 lm75_probe(struct i2c_client *client, const struct i2c_device_id *id)
195 {
196 struct device *dev = &client->dev;
197 struct device *hwmon_dev;
198 struct lm75_data *data;
199 int status;
200 u8 set_mask, clr_mask;
201 int new;
202 enum lm75_type kind = id->driver_data;
203
204 if (!i2c_check_functionality(client->adapter,
205 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA))
206 return -EIO;
207
208 data = devm_kzalloc(dev, sizeof(struct lm75_data), GFP_KERNEL);
209 if (!data)
210 return -ENOMEM;
211
212 data->client = client;
213 i2c_set_clientdata(client, data);
214 mutex_init(&data->update_lock);
215
216 /* Set to LM75 resolution (9 bits, 1/2 degree C) and range.
217 * Then tweak to be more precise when appropriate.
218 */
219 set_mask = 0;
220 clr_mask = LM75_SHUTDOWN; /* continuous conversions */
221
222 switch (kind) {
223 case adt75:
224 clr_mask |= 1 << 5; /* not one-shot mode */
225 data->resolution = 12;
226 data->sample_time = HZ / 8;
227 break;
228 case ds1775:
229 case ds75:
230 case stds75:
231 clr_mask |= 3 << 5;
232 set_mask |= 2 << 5; /* 11-bit mode */
233 data->resolution = 11;
234 data->sample_time = HZ;
235 break;
236 case ds7505:
237 set_mask |= 3 << 5; /* 12-bit mode */
238 data->resolution = 12;
239 data->sample_time = HZ / 4;
240 break;
241 case g751:
242 case lm75:
243 case lm75a:
244 data->resolution = 9;
245 data->sample_time = HZ / 2;
246 break;
247 case lm75b:
248 data->resolution = 11;
249 data->sample_time = HZ / 4;
250 break;
251 case max6625:
252 data->resolution = 9;
253 data->sample_time = HZ / 4;
254 break;
255 case max6626:
256 data->resolution = 12;
257 data->resolution_limits = 9;
258 data->sample_time = HZ / 4;
259 break;
260 case tcn75:
261 data->resolution = 9;
262 data->sample_time = HZ / 8;
263 break;
264 case mcp980x:
265 data->resolution_limits = 9;
266 /* fall through */
267 case tmp100:
268 case tmp101:
269 set_mask |= 3 << 5; /* 12-bit mode */
270 data->resolution = 12;
271 data->sample_time = HZ;
272 clr_mask |= 1 << 7; /* not one-shot mode */
273 break;
274 case tmp112:
275 set_mask |= 3 << 5; /* 12-bit mode */
276 clr_mask |= 1 << 7; /* not one-shot mode */
277 data->resolution = 12;
278 data->sample_time = HZ / 4;
279 break;
280 case tmp105:
281 case tmp175:
282 case tmp275:
283 case tmp75:
284 set_mask |= 3 << 5; /* 12-bit mode */
285 clr_mask |= 1 << 7; /* not one-shot mode */
286 data->resolution = 12;
287 data->sample_time = HZ / 2;
288 break;
289 case tmp75c:
290 clr_mask |= 1 << 5; /* not one-shot mode */
291 data->resolution = 12;
292 data->sample_time = HZ / 4;
293 break;
294 }
295
296 /* configure as specified */
297 status = i2c_smbus_read_byte_data(client, LM75_REG_CONF);
298 if (status < 0) {
299 dev_dbg(dev, "Can't read config? %d\n", status);
300 return status;
301 }
302 data->orig_conf = status;
303 new = status & ~clr_mask;
304 new |= set_mask;
305 if (status != new)
306 i2c_smbus_write_byte_data(client, LM75_REG_CONF, new);
307
308 devm_add_action(dev, lm75_remove, data);
309
310 dev_dbg(dev, "Config %02x\n", new);
311
312 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
313 data, lm75_groups);
314 if (IS_ERR(hwmon_dev))
315 return PTR_ERR(hwmon_dev);
316
317 devm_thermal_zone_of_sensor_register(hwmon_dev, 0,
318 hwmon_dev,
319 &lm75_of_thermal_ops);
320
321 dev_info(dev, "%s: sensor '%s'\n", dev_name(hwmon_dev), client->name);
322
323 return 0;
324 }
325
326 static const struct i2c_device_id lm75_ids[] = {
327 { "adt75", adt75, },
328 { "ds1775", ds1775, },
329 { "ds75", ds75, },
330 { "ds7505", ds7505, },
331 { "g751", g751, },
332 { "lm75", lm75, },
333 { "lm75a", lm75a, },
334 { "lm75b", lm75b, },
335 { "max6625", max6625, },
336 { "max6626", max6626, },
337 { "mcp980x", mcp980x, },
338 { "stds75", stds75, },
339 { "tcn75", tcn75, },
340 { "tmp100", tmp100, },
341 { "tmp101", tmp101, },
342 { "tmp105", tmp105, },
343 { "tmp112", tmp112, },
344 { "tmp175", tmp175, },
345 { "tmp275", tmp275, },
346 { "tmp75", tmp75, },
347 { "tmp75c", tmp75c, },
348 { /* LIST END */ }
349 };
350 MODULE_DEVICE_TABLE(i2c, lm75_ids);
351
352 #define LM75A_ID 0xA1
353
354 /* Return 0 if detection is successful, -ENODEV otherwise */
355 static int lm75_detect(struct i2c_client *new_client,
356 struct i2c_board_info *info)
357 {
358 struct i2c_adapter *adapter = new_client->adapter;
359 int i;
360 int conf, hyst, os;
361 bool is_lm75a = 0;
362
363 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
364 I2C_FUNC_SMBUS_WORD_DATA))
365 return -ENODEV;
366
367 /*
368 * Now, we do the remaining detection. There is no identification-
369 * dedicated register so we have to rely on several tricks:
370 * unused bits, registers cycling over 8-address boundaries,
371 * addresses 0x04-0x07 returning the last read value.
372 * The cycling+unused addresses combination is not tested,
373 * since it would significantly slow the detection down and would
374 * hardly add any value.
375 *
376 * The National Semiconductor LM75A is different than earlier
377 * LM75s. It has an ID byte of 0xaX (where X is the chip
378 * revision, with 1 being the only revision in existence) in
379 * register 7, and unused registers return 0xff rather than the
380 * last read value.
381 *
382 * Note that this function only detects the original National
383 * Semiconductor LM75 and the LM75A. Clones from other vendors
384 * aren't detected, on purpose, because they are typically never
385 * found on PC hardware. They are found on embedded designs where
386 * they can be instantiated explicitly so detection is not needed.
387 * The absence of identification registers on all these clones
388 * would make their exhaustive detection very difficult and weak,
389 * and odds are that the driver would bind to unsupported devices.
390 */
391
392 /* Unused bits */
393 conf = i2c_smbus_read_byte_data(new_client, 1);
394 if (conf & 0xe0)
395 return -ENODEV;
396
397 /* First check for LM75A */
398 if (i2c_smbus_read_byte_data(new_client, 7) == LM75A_ID) {
399 /* LM75A returns 0xff on unused registers so
400 just to be sure we check for that too. */
401 if (i2c_smbus_read_byte_data(new_client, 4) != 0xff
402 || i2c_smbus_read_byte_data(new_client, 5) != 0xff
403 || i2c_smbus_read_byte_data(new_client, 6) != 0xff)
404 return -ENODEV;
405 is_lm75a = 1;
406 hyst = i2c_smbus_read_byte_data(new_client, 2);
407 os = i2c_smbus_read_byte_data(new_client, 3);
408 } else { /* Traditional style LM75 detection */
409 /* Unused addresses */
410 hyst = i2c_smbus_read_byte_data(new_client, 2);
411 if (i2c_smbus_read_byte_data(new_client, 4) != hyst
412 || i2c_smbus_read_byte_data(new_client, 5) != hyst
413 || i2c_smbus_read_byte_data(new_client, 6) != hyst
414 || i2c_smbus_read_byte_data(new_client, 7) != hyst)
415 return -ENODEV;
416 os = i2c_smbus_read_byte_data(new_client, 3);
417 if (i2c_smbus_read_byte_data(new_client, 4) != os
418 || i2c_smbus_read_byte_data(new_client, 5) != os
419 || i2c_smbus_read_byte_data(new_client, 6) != os
420 || i2c_smbus_read_byte_data(new_client, 7) != os)
421 return -ENODEV;
422 }
423 /*
424 * It is very unlikely that this is a LM75 if both
425 * hysteresis and temperature limit registers are 0.
426 */
427 if (hyst == 0 && os == 0)
428 return -ENODEV;
429
430 /* Addresses cycling */
431 for (i = 8; i <= 248; i += 40) {
432 if (i2c_smbus_read_byte_data(new_client, i + 1) != conf
433 || i2c_smbus_read_byte_data(new_client, i + 2) != hyst
434 || i2c_smbus_read_byte_data(new_client, i + 3) != os)
435 return -ENODEV;
436 if (is_lm75a && i2c_smbus_read_byte_data(new_client, i + 7)
437 != LM75A_ID)
438 return -ENODEV;
439 }
440
441 strlcpy(info->type, is_lm75a ? "lm75a" : "lm75", I2C_NAME_SIZE);
442
443 return 0;
444 }
445
446 #ifdef CONFIG_PM
447 static int lm75_suspend(struct device *dev)
448 {
449 int status;
450 struct i2c_client *client = to_i2c_client(dev);
451 status = i2c_smbus_read_byte_data(client, LM75_REG_CONF);
452 if (status < 0) {
453 dev_dbg(&client->dev, "Can't read config? %d\n", status);
454 return status;
455 }
456 status = status | LM75_SHUTDOWN;
457 i2c_smbus_write_byte_data(client, LM75_REG_CONF, status);
458 return 0;
459 }
460
461 static int lm75_resume(struct device *dev)
462 {
463 int status;
464 struct i2c_client *client = to_i2c_client(dev);
465 status = i2c_smbus_read_byte_data(client, LM75_REG_CONF);
466 if (status < 0) {
467 dev_dbg(&client->dev, "Can't read config? %d\n", status);
468 return status;
469 }
470 status = status & ~LM75_SHUTDOWN;
471 i2c_smbus_write_byte_data(client, LM75_REG_CONF, status);
472 return 0;
473 }
474
475 static const struct dev_pm_ops lm75_dev_pm_ops = {
476 .suspend = lm75_suspend,
477 .resume = lm75_resume,
478 };
479 #define LM75_DEV_PM_OPS (&lm75_dev_pm_ops)
480 #else
481 #define LM75_DEV_PM_OPS NULL
482 #endif /* CONFIG_PM */
483
484 static struct i2c_driver lm75_driver = {
485 .class = I2C_CLASS_HWMON,
486 .driver = {
487 .name = "lm75",
488 .pm = LM75_DEV_PM_OPS,
489 },
490 .probe = lm75_probe,
491 .id_table = lm75_ids,
492 .detect = lm75_detect,
493 .address_list = normal_i2c,
494 };
495
496 /*-----------------------------------------------------------------------*/
497
498 static struct lm75_data *lm75_update_device(struct device *dev)
499 {
500 struct lm75_data *data = dev_get_drvdata(dev);
501 struct i2c_client *client = data->client;
502 struct lm75_data *ret = data;
503
504 mutex_lock(&data->update_lock);
505
506 if (time_after(jiffies, data->last_updated + data->sample_time)
507 || !data->valid) {
508 int i;
509 dev_dbg(&client->dev, "Starting lm75 update\n");
510
511 for (i = 0; i < ARRAY_SIZE(data->temp); i++) {
512 int status;
513
514 status = i2c_smbus_read_word_swapped(client,
515 LM75_REG_TEMP[i]);
516 if (unlikely(status < 0)) {
517 dev_dbg(dev,
518 "LM75: Failed to read value: reg %d, error %d\n",
519 LM75_REG_TEMP[i], status);
520 ret = ERR_PTR(status);
521 data->valid = 0;
522 goto abort;
523 }
524 data->temp[i] = status;
525 }
526 data->last_updated = jiffies;
527 data->valid = 1;
528 }
529
530 abort:
531 mutex_unlock(&data->update_lock);
532 return ret;
533 }
534
535 module_i2c_driver(lm75_driver);
536
537 MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>");
538 MODULE_DESCRIPTION("LM75 driver");
539 MODULE_LICENSE("GPL");
This page took 0.042253 seconds and 6 git commands to generate.