blob: 9ed21ac46e971eb694fa0f9bd9b38661470de1b9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 ds1621.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring
4 Christian W. Zuckschwerdt <zany@triq.net> 2000-11-23
5 based on lm75.c by Frodo Looijaard <frodol@dds.nl>
6 Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with
7 the help of Jean Delvare <khali@linux-fr.org>
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/slab.h>
27#include <linux/jiffies.h>
28#include <linux/i2c.h>
29#include <linux/i2c-sensor.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040030#include <linux/hwmon.h>
31#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "lm75.h"
33
34/* Addresses to scan */
35static unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c,
36 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
37static unsigned int normal_isa[] = { I2C_CLIENT_ISA_END };
38
39/* Insmod parameters */
40SENSORS_INSMOD_1(ds1621);
41static int polarity = -1;
42module_param(polarity, int, 0);
43MODULE_PARM_DESC(polarity, "Output's polarity: 0 = active high, 1 = active low");
44
45/* Many DS1621 constants specified below */
46/* Config register used for detection */
47/* 7 6 5 4 3 2 1 0 */
48/* |Done|THF |TLF |NVB | X | X |POL |1SHOT| */
49#define DS1621_REG_CONFIG_NVB 0x10
50#define DS1621_REG_CONFIG_POLARITY 0x02
51#define DS1621_REG_CONFIG_1SHOT 0x01
52#define DS1621_REG_CONFIG_DONE 0x80
53
54/* The DS1621 registers */
55#define DS1621_REG_TEMP 0xAA /* word, RO */
56#define DS1621_REG_TEMP_MIN 0xA1 /* word, RW */
57#define DS1621_REG_TEMP_MAX 0xA2 /* word, RW */
58#define DS1621_REG_CONF 0xAC /* byte, RW */
59#define DS1621_COM_START 0xEE /* no data */
60#define DS1621_COM_STOP 0x22 /* no data */
61
62/* The DS1621 configuration register */
63#define DS1621_ALARM_TEMP_HIGH 0x40
64#define DS1621_ALARM_TEMP_LOW 0x20
65
66/* Conversions. Rounding and limit checking is only done on the TO_REG
67 variants. Note that you should be a bit careful with which arguments
68 these macros are called: arguments may be evaluated more than once.
69 Fixing this is just not worth it. */
70#define ALARMS_FROM_REG(val) ((val) & \
71 (DS1621_ALARM_TEMP_HIGH | DS1621_ALARM_TEMP_LOW))
72
73/* Each client has this additional data */
74struct ds1621_data {
75 struct i2c_client client;
Mark M. Hoffman943b0832005-07-15 21:39:18 -040076 struct class_device *class_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct semaphore update_lock;
78 char valid; /* !=0 if following fields are valid */
79 unsigned long last_updated; /* In jiffies */
80
81 u16 temp, temp_min, temp_max; /* Register values, word */
82 u8 conf; /* Register encoding, combined */
83};
84
85static int ds1621_attach_adapter(struct i2c_adapter *adapter);
86static int ds1621_detect(struct i2c_adapter *adapter, int address,
87 int kind);
88static void ds1621_init_client(struct i2c_client *client);
89static int ds1621_detach_client(struct i2c_client *client);
90static struct ds1621_data *ds1621_update_client(struct device *dev);
91
92/* This is the driver that will be inserted */
93static struct i2c_driver ds1621_driver = {
94 .owner = THIS_MODULE,
95 .name = "ds1621",
96 .id = I2C_DRIVERID_DS1621,
97 .flags = I2C_DF_NOTIFY,
98 .attach_adapter = ds1621_attach_adapter,
99 .detach_client = ds1621_detach_client,
100};
101
102/* All registers are word-sized, except for the configuration register.
103 DS1621 uses a high-byte first convention, which is exactly opposite to
104 the usual practice. */
105static int ds1621_read_value(struct i2c_client *client, u8 reg)
106{
107 if (reg == DS1621_REG_CONF)
108 return i2c_smbus_read_byte_data(client, reg);
109 else
110 return swab16(i2c_smbus_read_word_data(client, reg));
111}
112
113/* All registers are word-sized, except for the configuration register.
114 DS1621 uses a high-byte first convention, which is exactly opposite to
115 the usual practice. */
116static int ds1621_write_value(struct i2c_client *client, u8 reg, u16 value)
117{
118 if (reg == DS1621_REG_CONF)
119 return i2c_smbus_write_byte_data(client, reg, value);
120 else
121 return i2c_smbus_write_word_data(client, reg, swab16(value));
122}
123
124static void ds1621_init_client(struct i2c_client *client)
125{
126 int reg = ds1621_read_value(client, DS1621_REG_CONF);
Steven Cole44bbe872005-05-03 18:21:25 -0600127 /* switch to continuous conversion mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 reg &= ~ DS1621_REG_CONFIG_1SHOT;
129
130 /* setup output polarity */
131 if (polarity == 0)
132 reg &= ~DS1621_REG_CONFIG_POLARITY;
133 else if (polarity == 1)
134 reg |= DS1621_REG_CONFIG_POLARITY;
135
136 ds1621_write_value(client, DS1621_REG_CONF, reg);
137
138 /* start conversion */
139 i2c_smbus_write_byte(client, DS1621_COM_START);
140}
141
142#define show(value) \
Yani Ioannou30f74292005-05-17 06:41:35 -0400143static ssize_t show_##value(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{ \
145 struct ds1621_data *data = ds1621_update_client(dev); \
146 return sprintf(buf, "%d\n", LM75_TEMP_FROM_REG(data->value)); \
147}
148
149show(temp);
150show(temp_min);
151show(temp_max);
152
153#define set_temp(suffix, value, reg) \
Yani Ioannou30f74292005-05-17 06:41:35 -0400154static ssize_t set_temp_##suffix(struct device *dev, struct device_attribute *attr, const char *buf, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 size_t count) \
156{ \
157 struct i2c_client *client = to_i2c_client(dev); \
158 struct ds1621_data *data = ds1621_update_client(dev); \
159 u16 val = LM75_TEMP_TO_REG(simple_strtoul(buf, NULL, 10)); \
160 \
161 down(&data->update_lock); \
162 data->value = val; \
163 ds1621_write_value(client, reg, data->value); \
164 up(&data->update_lock); \
165 return count; \
166}
167
168set_temp(min, temp_min, DS1621_REG_TEMP_MIN);
169set_temp(max, temp_max, DS1621_REG_TEMP_MAX);
170
Yani Ioannou30f74292005-05-17 06:41:35 -0400171static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 struct ds1621_data *data = ds1621_update_client(dev);
174 return sprintf(buf, "%d\n", ALARMS_FROM_REG(data->conf));
175}
176
177static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
178static DEVICE_ATTR(temp1_input, S_IRUGO , show_temp, NULL);
179static DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO , show_temp_min, set_temp_min);
180static DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp_max, set_temp_max);
181
182
183static int ds1621_attach_adapter(struct i2c_adapter *adapter)
184{
185 return i2c_detect(adapter, &addr_data, ds1621_detect);
186}
187
188/* This function is called by i2c_detect */
189int ds1621_detect(struct i2c_adapter *adapter, int address,
190 int kind)
191{
192 int conf, temp;
193 struct i2c_client *new_client;
194 struct ds1621_data *data;
195 int err = 0;
196
197 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA
198 | I2C_FUNC_SMBUS_WORD_DATA
199 | I2C_FUNC_SMBUS_WRITE_BYTE))
200 goto exit;
201
202 /* OK. For now, we presume we have a valid client. We now create the
203 client structure, even though we cannot fill it completely yet.
204 But it allows us to access ds1621_{read,write}_value. */
205 if (!(data = kmalloc(sizeof(struct ds1621_data), GFP_KERNEL))) {
206 err = -ENOMEM;
207 goto exit;
208 }
209 memset(data, 0, sizeof(struct ds1621_data));
210
211 new_client = &data->client;
212 i2c_set_clientdata(new_client, data);
213 new_client->addr = address;
214 new_client->adapter = adapter;
215 new_client->driver = &ds1621_driver;
216 new_client->flags = 0;
217
218
219 /* Now, we do the remaining detection. It is lousy. */
220 if (kind < 0) {
221 /* The NVB bit should be low if no EEPROM write has been
222 requested during the latest 10ms, which is highly
223 improbable in our case. */
224 conf = ds1621_read_value(new_client, DS1621_REG_CONF);
225 if (conf & DS1621_REG_CONFIG_NVB)
226 goto exit_free;
227 /* The 7 lowest bits of a temperature should always be 0. */
228 temp = ds1621_read_value(new_client, DS1621_REG_TEMP);
229 if (temp & 0x007f)
230 goto exit_free;
231 temp = ds1621_read_value(new_client, DS1621_REG_TEMP_MIN);
232 if (temp & 0x007f)
233 goto exit_free;
234 temp = ds1621_read_value(new_client, DS1621_REG_TEMP_MAX);
235 if (temp & 0x007f)
236 goto exit_free;
237 }
238
239 /* Determine the chip type - only one kind supported! */
240 if (kind <= 0)
241 kind = ds1621;
242
243 /* Fill in remaining client fields and put it into the global list */
244 strlcpy(new_client->name, "ds1621", I2C_NAME_SIZE);
245 data->valid = 0;
246 init_MUTEX(&data->update_lock);
247
248 /* Tell the I2C layer a new client has arrived */
249 if ((err = i2c_attach_client(new_client)))
250 goto exit_free;
251
252 /* Initialize the DS1621 chip */
253 ds1621_init_client(new_client);
254
255 /* Register sysfs hooks */
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400256 data->class_dev = hwmon_device_register(&new_client->dev);
257 if (IS_ERR(data->class_dev)) {
258 err = PTR_ERR(data->class_dev);
259 goto exit_detach;
260 }
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 device_create_file(&new_client->dev, &dev_attr_alarms);
263 device_create_file(&new_client->dev, &dev_attr_temp1_input);
264 device_create_file(&new_client->dev, &dev_attr_temp1_min);
265 device_create_file(&new_client->dev, &dev_attr_temp1_max);
266
267 return 0;
268
269/* OK, this is not exactly good programming practice, usually. But it is
270 very code-efficient in this case. */
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400271 exit_detach:
272 i2c_detach_client(new_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 exit_free:
274 kfree(data);
275 exit:
276 return err;
277}
278
279static int ds1621_detach_client(struct i2c_client *client)
280{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400281 struct ds1621_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 int err;
283
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400284 hwmon_device_unregister(data->class_dev);
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if ((err = i2c_detach_client(client))) {
287 dev_err(&client->dev, "Client deregistration failed, "
288 "client not detached.\n");
289 return err;
290 }
291
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400292 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 return 0;
295}
296
297
298static struct ds1621_data *ds1621_update_client(struct device *dev)
299{
300 struct i2c_client *client = to_i2c_client(dev);
301 struct ds1621_data *data = i2c_get_clientdata(client);
302 u8 new_conf;
303
304 down(&data->update_lock);
305
306 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
307 || !data->valid) {
308
309 dev_dbg(&client->dev, "Starting ds1621 update\n");
310
311 data->conf = ds1621_read_value(client, DS1621_REG_CONF);
312
313 data->temp = ds1621_read_value(client, DS1621_REG_TEMP);
314
315 data->temp_min = ds1621_read_value(client,
316 DS1621_REG_TEMP_MIN);
317 data->temp_max = ds1621_read_value(client,
318 DS1621_REG_TEMP_MAX);
319
Steven Cole44bbe872005-05-03 18:21:25 -0600320 /* reset alarms if necessary */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 new_conf = data->conf;
322 if (data->temp < data->temp_min)
323 new_conf &= ~DS1621_ALARM_TEMP_LOW;
324 if (data->temp > data->temp_max)
325 new_conf &= ~DS1621_ALARM_TEMP_HIGH;
326 if (data->conf != new_conf)
327 ds1621_write_value(client, DS1621_REG_CONF,
328 new_conf);
329
330 data->last_updated = jiffies;
331 data->valid = 1;
332 }
333
334 up(&data->update_lock);
335
336 return data;
337}
338
339static int __init ds1621_init(void)
340{
341 return i2c_add_driver(&ds1621_driver);
342}
343
344static void __exit ds1621_exit(void)
345{
346 i2c_del_driver(&ds1621_driver);
347}
348
349
350MODULE_AUTHOR("Christian W. Zuckschwerdt <zany@triq.net>");
351MODULE_DESCRIPTION("DS1621 driver");
352MODULE_LICENSE("GPL");
353
354module_init(ds1621_init);
355module_exit(ds1621_exit);