bb0df88a9c00dbe934671bd2c7874dd1b05412e6
[linux-2.6.git] / drivers / i2c / chips / ds1621.c
1 /*
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/i2c.h>
28 #include <linux/i2c-sensor.h>
29 #include "lm75.h"
30
31 /* Addresses to scan */
32 static unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c,
33                                         0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
34 static unsigned int normal_isa[] = { I2C_CLIENT_ISA_END };
35
36 /* Insmod parameters */
37 SENSORS_INSMOD_1(ds1621);
38 static int polarity = -1;
39 module_param(polarity, int, 0);
40 MODULE_PARM_DESC(polarity, "Output's polarity: 0 = active high, 1 = active low");
41
42 /* Many DS1621 constants specified below */
43 /* Config register used for detection         */
44 /*  7    6    5    4    3    2    1    0      */
45 /* |Done|THF |TLF |NVB | 1  | 0  |POL |1SHOT| */
46 #define DS1621_REG_CONFIG_MASK          0x0C
47 #define DS1621_REG_CONFIG_VAL           0x08
48 #define DS1621_REG_CONFIG_POLARITY      0x02
49 #define DS1621_REG_CONFIG_1SHOT         0x01
50 #define DS1621_REG_CONFIG_DONE          0x80
51
52 /* The DS1621 registers */
53 #define DS1621_REG_TEMP                 0xAA /* word, RO */
54 #define DS1621_REG_TEMP_MIN             0xA1 /* word, RW */
55 #define DS1621_REG_TEMP_MAX             0xA2 /* word, RW */
56 #define DS1621_REG_CONF                 0xAC /* byte, RW */
57 #define DS1621_COM_START                0xEE /* no data */
58
59 /* The DS1621 configuration register */
60 #define DS1621_ALARM_TEMP_HIGH          0x40
61 #define DS1621_ALARM_TEMP_LOW           0x20
62
63 /* Conversions. Rounding and limit checking is only done on the TO_REG
64    variants. Note that you should be a bit careful with which arguments
65    these macros are called: arguments may be evaluated more than once.
66    Fixing this is just not worth it. */
67 #define ALARMS_FROM_REG(val) ((val) & \
68                               (DS1621_ALARM_TEMP_HIGH | DS1621_ALARM_TEMP_LOW))
69
70 /* Each client has this additional data */
71 struct ds1621_data {
72         struct i2c_client client;
73         struct semaphore update_lock;
74         char valid;                     /* !=0 if following fields are valid */
75         unsigned long last_updated;     /* In jiffies */
76
77         u16 temp, temp_min, temp_max;   /* Register values, word */
78         u8 conf;                        /* Register encoding, combined */
79 };
80
81 static int ds1621_attach_adapter(struct i2c_adapter *adapter);
82 static int ds1621_detect(struct i2c_adapter *adapter, int address,
83                          int kind);
84 static void ds1621_init_client(struct i2c_client *client);
85 static int ds1621_detach_client(struct i2c_client *client);
86 static struct ds1621_data *ds1621_update_client(struct device *dev);
87
88 /* This is the driver that will be inserted */
89 static struct i2c_driver ds1621_driver = {
90         .owner          = THIS_MODULE,
91         .name           = "ds1621",
92         .id             = I2C_DRIVERID_DS1621,
93         .flags          = I2C_DF_NOTIFY,
94         .attach_adapter = ds1621_attach_adapter,
95         .detach_client  = ds1621_detach_client,
96 };
97
98 static int ds1621_id;
99
100 /* All registers are word-sized, except for the configuration register.
101    DS1621 uses a high-byte first convention, which is exactly opposite to
102    the usual practice. */
103 static int ds1621_read_value(struct i2c_client *client, u8 reg)
104 {
105         if (reg == DS1621_REG_CONF)
106                 return i2c_smbus_read_byte_data(client, reg);
107         else
108                 return swab16(i2c_smbus_read_word_data(client, reg));
109 }
110
111 /* All registers are word-sized, except for the configuration register.
112    DS1621 uses a high-byte first convention, which is exactly opposite to
113    the usual practice. */
114 static int ds1621_write_value(struct i2c_client *client, u8 reg, u16 value)
115 {
116         if (reg == DS1621_REG_CONF)
117                 return i2c_smbus_write_byte_data(client, reg, value);
118         else
119                 return i2c_smbus_write_word_data(client, reg, swab16(value));
120 }
121
122 static void ds1621_init_client(struct i2c_client *client)
123 {
124         int reg = ds1621_read_value(client, DS1621_REG_CONF);
125         /* switch to continous conversion mode */
126         reg &= ~ DS1621_REG_CONFIG_1SHOT;
127
128         /* setup output polarity */
129         if (polarity == 0)
130                 reg &= ~DS1621_REG_CONFIG_POLARITY;
131         else if (polarity == 1)
132                 reg |= DS1621_REG_CONFIG_POLARITY;
133         
134         ds1621_write_value(client, DS1621_REG_CONF, reg);
135         
136         /* start conversion */
137         i2c_smbus_write_byte(client, DS1621_COM_START);
138 }
139
140 #define show(value)                                                     \
141 static ssize_t show_##value(struct device *dev, char *buf)              \
142 {                                                                       \
143         struct ds1621_data *data = ds1621_update_client(dev);           \
144         return sprintf(buf, "%d\n", LM75_TEMP_FROM_REG(data->value));   \
145 }
146
147 show(temp);
148 show(temp_min);
149 show(temp_max);
150
151 #define set_temp(suffix, value, reg)                                    \
152 static ssize_t set_temp_##suffix(struct device *dev, const char *buf,   \
153                                  size_t count)                          \
154 {                                                                       \
155         struct i2c_client *client = to_i2c_client(dev);                 \
156         struct ds1621_data *data = ds1621_update_client(dev);           \
157         data->value = LM75_TEMP_TO_REG(simple_strtoul(buf, NULL, 10));  \
158         ds1621_write_value(client, reg, data->value);                   \
159         return count;                                                   \
160 }
161
162 set_temp(min, temp_min, DS1621_REG_TEMP_MIN);
163 set_temp(max, temp_max, DS1621_REG_TEMP_MAX);
164
165 static ssize_t show_alarms(struct device *dev, char *buf)
166 {
167         struct ds1621_data *data = ds1621_update_client(dev);
168         return sprintf(buf, "%d\n", ALARMS_FROM_REG(data->conf));
169 }
170
171 static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
172 static DEVICE_ATTR(temp1_input, S_IRUGO , show_temp, NULL);
173 static DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO , show_temp_min, set_temp_min);
174 static DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp_max, set_temp_max);
175
176
177 static int ds1621_attach_adapter(struct i2c_adapter *adapter)
178 {
179         return i2c_detect(adapter, &addr_data, ds1621_detect);
180 }
181
182 /* This function is called by i2c_detect */
183 int ds1621_detect(struct i2c_adapter *adapter, int address,
184                   int kind)
185 {
186         int conf, temp;
187         struct i2c_client *new_client;
188         struct ds1621_data *data;
189         int err = 0;
190
191         if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA 
192                                      | I2C_FUNC_SMBUS_WORD_DATA 
193                                      | I2C_FUNC_SMBUS_WRITE_BYTE))
194                 goto exit;
195
196         /* OK. For now, we presume we have a valid client. We now create the
197            client structure, even though we cannot fill it completely yet.
198            But it allows us to access ds1621_{read,write}_value. */
199         if (!(data = kmalloc(sizeof(struct ds1621_data), GFP_KERNEL))) {
200                 err = -ENOMEM;
201                 goto exit;
202         }
203         memset(data, 0, sizeof(struct ds1621_data));
204         
205         new_client = &data->client;
206         i2c_set_clientdata(new_client, data);
207         new_client->addr = address;
208         new_client->adapter = adapter;
209         new_client->driver = &ds1621_driver;
210         new_client->flags = 0;
211
212
213         /* Now, we do the remaining detection. It is lousy. */
214         if (kind < 0) {
215                 conf = ds1621_read_value(new_client, DS1621_REG_CONF);
216                 if ((conf & DS1621_REG_CONFIG_MASK) != DS1621_REG_CONFIG_VAL)
217                         goto exit_free;
218                 temp = ds1621_read_value(new_client, DS1621_REG_TEMP);
219                 if (temp & 0x007f)
220                         goto exit_free;
221                 temp = ds1621_read_value(new_client, DS1621_REG_TEMP_MIN);
222                 if (temp & 0x007f)
223                         goto exit_free;
224                 temp = ds1621_read_value(new_client, DS1621_REG_TEMP_MAX);
225                 if (temp & 0x007f)
226                         goto exit_free;
227         }
228
229         /* Determine the chip type - only one kind supported! */
230         if (kind <= 0)
231                 kind = ds1621;
232
233         /* Fill in remaining client fields and put it into the global list */
234         strlcpy(new_client->name, "ds1621", I2C_NAME_SIZE);
235
236         new_client->id = ds1621_id++;
237         data->valid = 0;
238         init_MUTEX(&data->update_lock);
239
240         /* Tell the I2C layer a new client has arrived */
241         if ((err = i2c_attach_client(new_client)))
242                 goto exit_free;
243
244         /* Initialize the DS1621 chip */
245         ds1621_init_client(new_client);
246
247         /* Register sysfs hooks */
248         device_create_file(&new_client->dev, &dev_attr_alarms);
249         device_create_file(&new_client->dev, &dev_attr_temp1_input);
250         device_create_file(&new_client->dev, &dev_attr_temp1_min);
251         device_create_file(&new_client->dev, &dev_attr_temp1_max);
252         
253         return 0;
254
255 /* OK, this is not exactly good programming practice, usually. But it is
256    very code-efficient in this case. */
257       exit_free:
258         kfree(data);
259       exit:
260         return err;
261 }
262
263 static int ds1621_detach_client(struct i2c_client *client)
264 {
265         int err;
266
267         if ((err = i2c_detach_client(client))) {
268                 dev_err(&client->dev, "Client deregistration failed, "
269                         "client not detached.\n");
270                 return err;
271         }
272
273         kfree(i2c_get_clientdata(client));
274
275         return 0;
276 }
277
278
279 static struct ds1621_data *ds1621_update_client(struct device *dev)
280 {
281         struct i2c_client *client = to_i2c_client(dev);
282         struct ds1621_data *data = i2c_get_clientdata(client);
283         u8 new_conf;
284
285         down(&data->update_lock);
286
287         if ((jiffies - data->last_updated > HZ + HZ / 2) ||
288             (jiffies < data->last_updated) || !data->valid) {
289
290                 dev_dbg(&client->dev, "Starting ds1621 update\n");
291
292                 data->conf = ds1621_read_value(client, DS1621_REG_CONF);
293
294                 data->temp = ds1621_read_value(client, DS1621_REG_TEMP);
295                 
296                 data->temp_min = ds1621_read_value(client,
297                                                     DS1621_REG_TEMP_MIN);
298                 data->temp_max = ds1621_read_value(client,
299                                                     DS1621_REG_TEMP_MAX);
300
301                 /* reset alarms if neccessary */
302                 new_conf = data->conf;
303                 if (data->temp < data->temp_min)
304                         new_conf &= ~DS1621_ALARM_TEMP_LOW;
305                 if (data->temp > data->temp_max)
306                         new_conf &= ~DS1621_ALARM_TEMP_HIGH;
307                 if (data->conf != new_conf)
308                         ds1621_write_value(client, DS1621_REG_CONF,
309                                            new_conf);
310
311                 data->last_updated = jiffies;
312                 data->valid = 1;
313         }
314
315         up(&data->update_lock);
316
317         return data;
318 }
319
320 static int __init ds1621_init(void)
321 {
322         return i2c_add_driver(&ds1621_driver);
323 }
324
325 static void __exit ds1621_exit(void)
326 {
327         i2c_del_driver(&ds1621_driver);
328 }
329
330
331 MODULE_AUTHOR("Christian W. Zuckschwerdt <zany@triq.net>");
332 MODULE_DESCRIPTION("DS1621 driver");
333 MODULE_LICENSE("GPL");
334
335 module_init(ds1621_init);
336 module_exit(ds1621_exit);