w83792d: Fix unchecked return status
[deliverable/linux.git] / drivers / hwmon / ds1621.c
CommitLineData
1da177e4
LT
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/jiffies.h>
28#include <linux/i2c.h>
943b0830
MH
29#include <linux/hwmon.h>
30#include <linux/err.h>
9a61bf63 31#include <linux/mutex.h>
1da177e4
LT
32#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 };
1da177e4
LT
37
38/* Insmod parameters */
f4b50261 39I2C_CLIENT_INSMOD_1(ds1621);
1da177e4
LT
40static int polarity = -1;
41module_param(polarity, int, 0);
42MODULE_PARM_DESC(polarity, "Output's polarity: 0 = active high, 1 = active low");
43
44/* Many DS1621 constants specified below */
45/* Config register used for detection */
46/* 7 6 5 4 3 2 1 0 */
47/* |Done|THF |TLF |NVB | X | X |POL |1SHOT| */
48#define DS1621_REG_CONFIG_NVB 0x10
49#define DS1621_REG_CONFIG_POLARITY 0x02
50#define DS1621_REG_CONFIG_1SHOT 0x01
51#define DS1621_REG_CONFIG_DONE 0x80
52
53/* The DS1621 registers */
54#define DS1621_REG_TEMP 0xAA /* word, RO */
55#define DS1621_REG_TEMP_MIN 0xA1 /* word, RW */
56#define DS1621_REG_TEMP_MAX 0xA2 /* word, RW */
57#define DS1621_REG_CONF 0xAC /* byte, RW */
58#define DS1621_COM_START 0xEE /* no data */
59#define DS1621_COM_STOP 0x22 /* no data */
60
61/* The DS1621 configuration register */
62#define DS1621_ALARM_TEMP_HIGH 0x40
63#define DS1621_ALARM_TEMP_LOW 0x20
64
65/* Conversions. Rounding and limit checking is only done on the TO_REG
66 variants. Note that you should be a bit careful with which arguments
67 these macros are called: arguments may be evaluated more than once.
68 Fixing this is just not worth it. */
69#define ALARMS_FROM_REG(val) ((val) & \
70 (DS1621_ALARM_TEMP_HIGH | DS1621_ALARM_TEMP_LOW))
71
72/* Each client has this additional data */
73struct ds1621_data {
74 struct i2c_client client;
943b0830 75 struct class_device *class_dev;
9a61bf63 76 struct mutex update_lock;
1da177e4
LT
77 char valid; /* !=0 if following fields are valid */
78 unsigned long last_updated; /* In jiffies */
79
80 u16 temp, temp_min, temp_max; /* Register values, word */
81 u8 conf; /* Register encoding, combined */
82};
83
84static int ds1621_attach_adapter(struct i2c_adapter *adapter);
85static int ds1621_detect(struct i2c_adapter *adapter, int address,
86 int kind);
87static void ds1621_init_client(struct i2c_client *client);
88static int ds1621_detach_client(struct i2c_client *client);
89static struct ds1621_data *ds1621_update_client(struct device *dev);
90
91/* This is the driver that will be inserted */
92static struct i2c_driver ds1621_driver = {
cdaf7934 93 .driver = {
cdaf7934
LR
94 .name = "ds1621",
95 },
1da177e4 96 .id = I2C_DRIVERID_DS1621,
1da177e4
LT
97 .attach_adapter = ds1621_attach_adapter,
98 .detach_client = ds1621_detach_client,
99};
100
101/* All registers are word-sized, except for the configuration register.
102 DS1621 uses a high-byte first convention, which is exactly opposite to
103 the usual practice. */
104static int ds1621_read_value(struct i2c_client *client, u8 reg)
105{
106 if (reg == DS1621_REG_CONF)
107 return i2c_smbus_read_byte_data(client, reg);
108 else
109 return swab16(i2c_smbus_read_word_data(client, reg));
110}
111
112/* All registers are word-sized, except for the configuration register.
113 DS1621 uses a high-byte first convention, which is exactly opposite to
114 the usual practice. */
115static int ds1621_write_value(struct i2c_client *client, u8 reg, u16 value)
116{
117 if (reg == DS1621_REG_CONF)
118 return i2c_smbus_write_byte_data(client, reg, value);
119 else
120 return i2c_smbus_write_word_data(client, reg, swab16(value));
121}
122
123static void ds1621_init_client(struct i2c_client *client)
124{
125 int reg = ds1621_read_value(client, DS1621_REG_CONF);
44bbe87e 126 /* switch to continuous conversion mode */
1da177e4
LT
127 reg &= ~ DS1621_REG_CONFIG_1SHOT;
128
129 /* setup output polarity */
130 if (polarity == 0)
131 reg &= ~DS1621_REG_CONFIG_POLARITY;
132 else if (polarity == 1)
133 reg |= DS1621_REG_CONFIG_POLARITY;
134
135 ds1621_write_value(client, DS1621_REG_CONF, reg);
136
137 /* start conversion */
138 i2c_smbus_write_byte(client, DS1621_COM_START);
139}
140
141#define show(value) \
30f74292 142static ssize_t show_##value(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
143{ \
144 struct ds1621_data *data = ds1621_update_client(dev); \
145 return sprintf(buf, "%d\n", LM75_TEMP_FROM_REG(data->value)); \
146}
147
148show(temp);
149show(temp_min);
150show(temp_max);
151
152#define set_temp(suffix, value, reg) \
30f74292 153static ssize_t set_temp_##suffix(struct device *dev, struct device_attribute *attr, const char *buf, \
1da177e4
LT
154 size_t count) \
155{ \
156 struct i2c_client *client = to_i2c_client(dev); \
157 struct ds1621_data *data = ds1621_update_client(dev); \
158 u16 val = LM75_TEMP_TO_REG(simple_strtoul(buf, NULL, 10)); \
159 \
9a61bf63 160 mutex_lock(&data->update_lock); \
1da177e4
LT
161 data->value = val; \
162 ds1621_write_value(client, reg, data->value); \
9a61bf63 163 mutex_unlock(&data->update_lock); \
1da177e4
LT
164 return count; \
165}
166
167set_temp(min, temp_min, DS1621_REG_TEMP_MIN);
168set_temp(max, temp_max, DS1621_REG_TEMP_MAX);
169
30f74292 170static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
171{
172 struct ds1621_data *data = ds1621_update_client(dev);
173 return sprintf(buf, "%d\n", ALARMS_FROM_REG(data->conf));
174}
175
176static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
177static DEVICE_ATTR(temp1_input, S_IRUGO , show_temp, NULL);
178static DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO , show_temp_min, set_temp_min);
179static DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp_max, set_temp_max);
180
181
182static int ds1621_attach_adapter(struct i2c_adapter *adapter)
183{
ddec748f
JD
184 if (!(adapter->class & I2C_CLASS_HWMON))
185 return 0;
2ed2dc3c 186 return i2c_probe(adapter, &addr_data, ds1621_detect);
1da177e4
LT
187}
188
2ed2dc3c 189/* This function is called by i2c_probe */
c49efcef
BD
190static int ds1621_detect(struct i2c_adapter *adapter, int address,
191 int kind)
1da177e4
LT
192{
193 int conf, temp;
194 struct i2c_client *new_client;
195 struct ds1621_data *data;
196 int err = 0;
197
198 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA
199 | I2C_FUNC_SMBUS_WORD_DATA
200 | I2C_FUNC_SMBUS_WRITE_BYTE))
201 goto exit;
202
203 /* OK. For now, we presume we have a valid client. We now create the
204 client structure, even though we cannot fill it completely yet.
205 But it allows us to access ds1621_{read,write}_value. */
ba9c2e8d 206 if (!(data = kzalloc(sizeof(struct ds1621_data), GFP_KERNEL))) {
1da177e4
LT
207 err = -ENOMEM;
208 goto exit;
209 }
1da177e4
LT
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;
9a61bf63 246 mutex_init(&data->update_lock);
1da177e4
LT
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 */
943b0830
MH
256 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
1da177e4
LT
262 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. */
943b0830
MH
271 exit_detach:
272 i2c_detach_client(new_client);
1da177e4
LT
273 exit_free:
274 kfree(data);
275 exit:
276 return err;
277}
278
279static int ds1621_detach_client(struct i2c_client *client)
280{
943b0830 281 struct ds1621_data *data = i2c_get_clientdata(client);
1da177e4
LT
282 int err;
283
943b0830
MH
284 hwmon_device_unregister(data->class_dev);
285
7bef5594 286 if ((err = i2c_detach_client(client)))
1da177e4 287 return err;
1da177e4 288
943b0830 289 kfree(data);
1da177e4
LT
290
291 return 0;
292}
293
294
295static struct ds1621_data *ds1621_update_client(struct device *dev)
296{
297 struct i2c_client *client = to_i2c_client(dev);
298 struct ds1621_data *data = i2c_get_clientdata(client);
299 u8 new_conf;
300
9a61bf63 301 mutex_lock(&data->update_lock);
1da177e4
LT
302
303 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
304 || !data->valid) {
305
306 dev_dbg(&client->dev, "Starting ds1621 update\n");
307
308 data->conf = ds1621_read_value(client, DS1621_REG_CONF);
309
310 data->temp = ds1621_read_value(client, DS1621_REG_TEMP);
311
312 data->temp_min = ds1621_read_value(client,
313 DS1621_REG_TEMP_MIN);
314 data->temp_max = ds1621_read_value(client,
315 DS1621_REG_TEMP_MAX);
316
44bbe87e 317 /* reset alarms if necessary */
1da177e4
LT
318 new_conf = data->conf;
319 if (data->temp < data->temp_min)
320 new_conf &= ~DS1621_ALARM_TEMP_LOW;
321 if (data->temp > data->temp_max)
322 new_conf &= ~DS1621_ALARM_TEMP_HIGH;
323 if (data->conf != new_conf)
324 ds1621_write_value(client, DS1621_REG_CONF,
325 new_conf);
326
327 data->last_updated = jiffies;
328 data->valid = 1;
329 }
330
9a61bf63 331 mutex_unlock(&data->update_lock);
1da177e4
LT
332
333 return data;
334}
335
336static int __init ds1621_init(void)
337{
338 return i2c_add_driver(&ds1621_driver);
339}
340
341static void __exit ds1621_exit(void)
342{
343 i2c_del_driver(&ds1621_driver);
344}
345
346
347MODULE_AUTHOR("Christian W. Zuckschwerdt <zany@triq.net>");
348MODULE_DESCRIPTION("DS1621 driver");
349MODULE_LICENSE("GPL");
350
351module_init(ds1621_init);
352module_exit(ds1621_exit);
This page took 0.263691 seconds and 5 git commands to generate.