blob: 6a524e92432e214e5ee40ebfc15d7f6ce9d2bfe2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 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*/
27
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>
34#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/* Addresses to scan */
37static unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/* Insmod parameters */
Jean Delvaref4b50262005-07-31 21:49:03 +020040I2C_CLIENT_INSMOD_1(lm77);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* 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 {
52 struct i2c_client client;
Mark M. Hoffman943b0832005-07-15 21:39:18 -040053 struct class_device *class_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 struct semaphore update_lock;
55 char valid;
56 unsigned long last_updated; /* In jiffies */
57 int temp_input; /* Temperatures */
58 int temp_crit;
59 int temp_min;
60 int temp_max;
61 int temp_hyst;
62 u8 alarms;
63};
64
65static int lm77_attach_adapter(struct i2c_adapter *adapter);
66static int lm77_detect(struct i2c_adapter *adapter, int address, int kind);
67static void lm77_init_client(struct i2c_client *client);
68static int lm77_detach_client(struct i2c_client *client);
69static 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
75/* This is the driver that will be inserted */
76static struct i2c_driver lm77_driver = {
77 .owner = THIS_MODULE,
78 .name = "lm77",
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 .attach_adapter = lm77_attach_adapter,
80 .detach_client = lm77_detach_client,
81};
82
83/* straight from the datasheet */
84#define LM77_TEMP_MIN (-55000)
85#define LM77_TEMP_MAX 125000
86
87/* In the temperature registers, the low 3 bits are not part of the
88 temperature values; they are the status bits. */
89static inline u16 LM77_TEMP_TO_REG(int temp)
90{
91 int ntemp = SENSORS_LIMIT(temp, LM77_TEMP_MIN, LM77_TEMP_MAX);
92 return (u16)((ntemp / 500) * 8);
93}
94
95static inline int LM77_TEMP_FROM_REG(u16 reg)
96{
97 return ((int)reg / 8) * 500;
98}
99
100/* sysfs stuff */
101
102/* read routines for temperature limits */
103#define show(value) \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400104static ssize_t show_##value(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{ \
106 struct lm77_data *data = lm77_update_device(dev); \
107 return sprintf(buf, "%d\n", data->value); \
108}
109
110show(temp_input);
111show(temp_crit);
112show(temp_min);
113show(temp_max);
114show(alarms);
115
116/* read routines for hysteresis values */
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400117static ssize_t show_temp_crit_hyst(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 struct lm77_data *data = lm77_update_device(dev);
120 return sprintf(buf, "%d\n", data->temp_crit - data->temp_hyst);
121}
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400122static ssize_t show_temp_min_hyst(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 struct lm77_data *data = lm77_update_device(dev);
125 return sprintf(buf, "%d\n", data->temp_min + data->temp_hyst);
126}
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400127static ssize_t show_temp_max_hyst(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 struct lm77_data *data = lm77_update_device(dev);
130 return sprintf(buf, "%d\n", data->temp_max - data->temp_hyst);
131}
132
133/* write routines */
134#define set(value, reg) \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400135static ssize_t set_##value(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{ \
137 struct i2c_client *client = to_i2c_client(dev); \
138 struct lm77_data *data = i2c_get_clientdata(client); \
139 long val = simple_strtoul(buf, NULL, 10); \
140 \
141 down(&data->update_lock); \
142 data->value = val; \
143 lm77_write_value(client, reg, LM77_TEMP_TO_REG(data->value)); \
144 up(&data->update_lock); \
145 return count; \
146}
147
148set(temp_min, LM77_REG_TEMP_MIN);
149set(temp_max, LM77_REG_TEMP_MAX);
150
151/* hysteresis is stored as a relative value on the chip, so it has to be
152 converted first */
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400153static ssize_t set_temp_crit_hyst(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 struct i2c_client *client = to_i2c_client(dev);
156 struct lm77_data *data = i2c_get_clientdata(client);
157 unsigned long val = simple_strtoul(buf, NULL, 10);
158
159 down(&data->update_lock);
160 data->temp_hyst = data->temp_crit - val;
161 lm77_write_value(client, LM77_REG_TEMP_HYST,
162 LM77_TEMP_TO_REG(data->temp_hyst));
163 up(&data->update_lock);
164 return count;
165}
166
167/* preserve hysteresis when setting T_crit */
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400168static ssize_t set_temp_crit(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 struct i2c_client *client = to_i2c_client(dev);
171 struct lm77_data *data = i2c_get_clientdata(client);
172 long val = simple_strtoul(buf, NULL, 10);
173 int oldcrithyst;
174
175 down(&data->update_lock);
176 oldcrithyst = data->temp_crit - data->temp_hyst;
177 data->temp_crit = val;
178 data->temp_hyst = data->temp_crit - oldcrithyst;
179 lm77_write_value(client, LM77_REG_TEMP_CRIT,
180 LM77_TEMP_TO_REG(data->temp_crit));
181 lm77_write_value(client, LM77_REG_TEMP_HYST,
182 LM77_TEMP_TO_REG(data->temp_hyst));
183 up(&data->update_lock);
184 return count;
185}
186
187static DEVICE_ATTR(temp1_input, S_IRUGO,
188 show_temp_input, NULL);
189static DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO,
190 show_temp_crit, set_temp_crit);
191static DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO,
192 show_temp_min, set_temp_min);
193static DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO,
194 show_temp_max, set_temp_max);
195
196static DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO,
197 show_temp_crit_hyst, set_temp_crit_hyst);
198static DEVICE_ATTR(temp1_min_hyst, S_IRUGO,
199 show_temp_min_hyst, NULL);
200static DEVICE_ATTR(temp1_max_hyst, S_IRUGO,
201 show_temp_max_hyst, NULL);
202
203static DEVICE_ATTR(alarms, S_IRUGO,
204 show_alarms, NULL);
205
206static int lm77_attach_adapter(struct i2c_adapter *adapter)
207{
208 if (!(adapter->class & I2C_CLASS_HWMON))
209 return 0;
Jean Delvare2ed2dc32005-07-31 21:42:02 +0200210 return i2c_probe(adapter, &addr_data, lm77_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Jean Delvare2ed2dc32005-07-31 21:42:02 +0200213/* This function is called by i2c_probe */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214static int lm77_detect(struct i2c_adapter *adapter, int address, int kind)
215{
216 struct i2c_client *new_client;
217 struct lm77_data *data;
218 int err = 0;
219 const char *name = "";
220
221 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
222 I2C_FUNC_SMBUS_WORD_DATA))
223 goto exit;
224
225 /* OK. For now, we presume we have a valid client. We now create the
226 client structure, even though we cannot fill it completely yet.
227 But it allows us to access lm77_{read,write}_value. */
Deepak Saxenaba9c2e82005-10-17 23:08:32 +0200228 if (!(data = kzalloc(sizeof(struct lm77_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 err = -ENOMEM;
230 goto exit;
231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 new_client = &data->client;
234 i2c_set_clientdata(new_client, data);
235 new_client->addr = address;
236 new_client->adapter = adapter;
237 new_client->driver = &lm77_driver;
238 new_client->flags = 0;
239
240 /* Here comes the remaining detection. Since the LM77 has no
241 register dedicated to identification, we have to rely on the
242 following tricks:
243
244 1. the high 4 bits represent the sign and thus they should
245 always be the same
246 2. the high 3 bits are unused in the configuration register
247 3. addresses 0x06 and 0x07 return the last read value
248 4. registers cycling over 8-address boundaries
249
250 Word-sized registers are high-byte first. */
251 if (kind < 0) {
252 int i, cur, conf, hyst, crit, min, max;
253
254 /* addresses cycling */
255 cur = i2c_smbus_read_word_data(new_client, 0);
256 conf = i2c_smbus_read_byte_data(new_client, 1);
257 hyst = i2c_smbus_read_word_data(new_client, 2);
258 crit = i2c_smbus_read_word_data(new_client, 3);
259 min = i2c_smbus_read_word_data(new_client, 4);
260 max = i2c_smbus_read_word_data(new_client, 5);
261 for (i = 8; i <= 0xff; i += 8)
262 if (i2c_smbus_read_byte_data(new_client, i + 1) != conf
263 || i2c_smbus_read_word_data(new_client, i + 2) != hyst
264 || i2c_smbus_read_word_data(new_client, i + 3) != crit
265 || i2c_smbus_read_word_data(new_client, i + 4) != min
266 || i2c_smbus_read_word_data(new_client, i + 5) != max)
267 goto exit_free;
268
269 /* sign bits */
270 if (((cur & 0x00f0) != 0xf0 && (cur & 0x00f0) != 0x0)
271 || ((hyst & 0x00f0) != 0xf0 && (hyst & 0x00f0) != 0x0)
272 || ((crit & 0x00f0) != 0xf0 && (crit & 0x00f0) != 0x0)
273 || ((min & 0x00f0) != 0xf0 && (min & 0x00f0) != 0x0)
274 || ((max & 0x00f0) != 0xf0 && (max & 0x00f0) != 0x0))
275 goto exit_free;
276
277 /* unused bits */
278 if (conf & 0xe0)
279 goto exit_free;
280
281 /* 0x06 and 0x07 return the last read value */
282 cur = i2c_smbus_read_word_data(new_client, 0);
283 if (i2c_smbus_read_word_data(new_client, 6) != cur
284 || i2c_smbus_read_word_data(new_client, 7) != cur)
285 goto exit_free;
286 hyst = i2c_smbus_read_word_data(new_client, 2);
287 if (i2c_smbus_read_word_data(new_client, 6) != hyst
288 || i2c_smbus_read_word_data(new_client, 7) != hyst)
289 goto exit_free;
290 min = i2c_smbus_read_word_data(new_client, 4);
291 if (i2c_smbus_read_word_data(new_client, 6) != min
292 || i2c_smbus_read_word_data(new_client, 7) != min)
293 goto exit_free;
294
295 }
296
297 /* Determine the chip type - only one kind supported! */
298 if (kind <= 0)
299 kind = lm77;
300
301 if (kind == lm77) {
302 name = "lm77";
303 }
304
305 /* Fill in the remaining client fields and put it into the global list */
306 strlcpy(new_client->name, name, I2C_NAME_SIZE);
307 data->valid = 0;
308 init_MUTEX(&data->update_lock);
309
310 /* Tell the I2C layer a new client has arrived */
311 if ((err = i2c_attach_client(new_client)))
312 goto exit_free;
313
314 /* Initialize the LM77 chip */
315 lm77_init_client(new_client);
316
317 /* Register sysfs hooks */
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400318 data->class_dev = hwmon_device_register(&new_client->dev);
319 if (IS_ERR(data->class_dev)) {
320 err = PTR_ERR(data->class_dev);
321 goto exit_detach;
322 }
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 device_create_file(&new_client->dev, &dev_attr_temp1_input);
325 device_create_file(&new_client->dev, &dev_attr_temp1_crit);
326 device_create_file(&new_client->dev, &dev_attr_temp1_min);
327 device_create_file(&new_client->dev, &dev_attr_temp1_max);
328 device_create_file(&new_client->dev, &dev_attr_temp1_crit_hyst);
329 device_create_file(&new_client->dev, &dev_attr_temp1_min_hyst);
330 device_create_file(&new_client->dev, &dev_attr_temp1_max_hyst);
331 device_create_file(&new_client->dev, &dev_attr_alarms);
332 return 0;
333
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400334exit_detach:
335 i2c_detach_client(new_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336exit_free:
337 kfree(data);
338exit:
339 return err;
340}
341
342static int lm77_detach_client(struct i2c_client *client)
343{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400344 struct lm77_data *data = i2c_get_clientdata(client);
345 hwmon_device_unregister(data->class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 i2c_detach_client(client);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400347 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return 0;
349}
350
351/* All registers are word-sized, except for the configuration register.
352 The LM77 uses the high-byte first convention. */
353static u16 lm77_read_value(struct i2c_client *client, u8 reg)
354{
355 if (reg == LM77_REG_CONF)
356 return i2c_smbus_read_byte_data(client, reg);
357 else
358 return swab16(i2c_smbus_read_word_data(client, reg));
359}
360
361static int lm77_write_value(struct i2c_client *client, u8 reg, u16 value)
362{
363 if (reg == LM77_REG_CONF)
364 return i2c_smbus_write_byte_data(client, reg, value);
365 else
366 return i2c_smbus_write_word_data(client, reg, swab16(value));
367}
368
369static void lm77_init_client(struct i2c_client *client)
370{
371 /* Initialize the LM77 chip - turn off shutdown mode */
372 int conf = lm77_read_value(client, LM77_REG_CONF);
373 if (conf & 1)
374 lm77_write_value(client, LM77_REG_CONF, conf & 0xfe);
375}
376
377static struct lm77_data *lm77_update_device(struct device *dev)
378{
379 struct i2c_client *client = to_i2c_client(dev);
380 struct lm77_data *data = i2c_get_clientdata(client);
381
382 down(&data->update_lock);
383
384 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
385 || !data->valid) {
386 dev_dbg(&client->dev, "Starting lm77 update\n");
387 data->temp_input =
388 LM77_TEMP_FROM_REG(lm77_read_value(client,
389 LM77_REG_TEMP));
390 data->temp_hyst =
391 LM77_TEMP_FROM_REG(lm77_read_value(client,
392 LM77_REG_TEMP_HYST));
393 data->temp_crit =
394 LM77_TEMP_FROM_REG(lm77_read_value(client,
395 LM77_REG_TEMP_CRIT));
396 data->temp_min =
397 LM77_TEMP_FROM_REG(lm77_read_value(client,
398 LM77_REG_TEMP_MIN));
399 data->temp_max =
400 LM77_TEMP_FROM_REG(lm77_read_value(client,
401 LM77_REG_TEMP_MAX));
402 data->alarms =
403 lm77_read_value(client, LM77_REG_TEMP) & 0x0007;
404 data->last_updated = jiffies;
405 data->valid = 1;
406 }
407
408 up(&data->update_lock);
409
410 return data;
411}
412
413static int __init sensors_lm77_init(void)
414{
415 return i2c_add_driver(&lm77_driver);
416}
417
418static void __exit sensors_lm77_exit(void)
419{
420 i2c_del_driver(&lm77_driver);
421}
422
423MODULE_AUTHOR("Andras BALI <drewie@freemail.hu>");
424MODULE_DESCRIPTION("LM77 driver");
425MODULE_LICENSE("GPL");
426
427module_init(sensors_lm77_init);
428module_exit(sensors_lm77_exit);