blob: d7df0e6c1ef4afd3e096d7ac81f0492fbf28adc7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 Copyright (C) 2001-2004 Aurelien Jarno <aurelien@aurel32.net>
Jean Delvarefb4504f2009-03-30 21:46:43 +02003 Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 the help of Jean Delvare <khali@linux-fr.org>
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/i2c.h>
Ingo Molnar5c085d32006-01-18 23:16:04 +010025#include <linux/mutex.h>
Jean Delvare4275fcd2010-10-28 20:31:49 +020026#include <linux/err.h>
27#include <linux/hwmon.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/* Addresses to scan */
Jean Delvare2cdddeb2008-01-27 18:14:47 +010030static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/* Insmod parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35static int input_mode;
36module_param(input_mode, int, 0);
37MODULE_PARM_DESC(input_mode,
38 "Analog input mode:\n"
39 " 0 = four single ended inputs\n"
40 " 1 = three differential inputs\n"
41 " 2 = single ended and differential mixed\n"
42 " 3 = two differential inputs\n");
43
44/* The PCF8591 control byte
Jean Delvarefb4504f2009-03-30 21:46:43 +020045 7 6 5 4 3 2 1 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 | 0 |AOEF| AIP | 0 |AINC| AICH | */
47
48/* Analog Output Enable Flag (analog output active if 1) */
49#define PCF8591_CONTROL_AOEF 0x40
Jean Delvarefb4504f2009-03-30 21:46:43 +020050
51/* Analog Input Programming
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 0x00 = four single ended inputs
53 0x10 = three differential inputs
54 0x20 = single ended and differential mixed
55 0x30 = two differential inputs */
56#define PCF8591_CONTROL_AIP_MASK 0x30
57
58/* Autoincrement Flag (switch on if 1) */
59#define PCF8591_CONTROL_AINC 0x04
60
61/* Channel selection
Jean Delvarefb4504f2009-03-30 21:46:43 +020062 0x00 = channel 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 0x01 = channel 1
64 0x02 = channel 2
65 0x03 = channel 3 */
66#define PCF8591_CONTROL_AICH_MASK 0x03
67
68/* Initial values */
69#define PCF8591_INIT_CONTROL ((input_mode << 4) | PCF8591_CONTROL_AOEF)
70#define PCF8591_INIT_AOUT 0 /* DAC out = 0 */
71
72/* Conversions */
73#define REG_TO_SIGNED(reg) (((reg) & 0x80)?((reg) - 256):(reg))
74
75struct pcf8591_data {
Jean Delvare4275fcd2010-10-28 20:31:49 +020076 struct device *hwmon_dev;
Ingo Molnar5c085d32006-01-18 23:16:04 +010077 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 u8 control;
80 u8 aout;
81};
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static void pcf8591_init_client(struct i2c_client *client);
84static int pcf8591_read_channel(struct device *dev, int channel);
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/* following are the sysfs callback functions */
87#define show_in_channel(channel) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -040088static ssize_t show_in##channel##_input(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{ \
90 return sprintf(buf, "%d\n", pcf8591_read_channel(dev, channel));\
91} \
92static DEVICE_ATTR(in##channel##_input, S_IRUGO, \
93 show_in##channel##_input, NULL);
94
95show_in_channel(0);
96show_in_channel(1);
97show_in_channel(2);
98show_in_channel(3);
99
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400100static ssize_t show_out0_ouput(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev));
103 return sprintf(buf, "%d\n", data->aout * 10);
104}
105
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400106static ssize_t set_out0_output(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 unsigned int value;
109 struct i2c_client *client = to_i2c_client(dev);
110 struct pcf8591_data *data = i2c_get_clientdata(client);
111 if ((value = (simple_strtoul(buf, NULL, 10) + 5) / 10) <= 255) {
112 data->aout = value;
113 i2c_smbus_write_byte_data(client, data->control, data->aout);
114 return count;
115 }
116 return -EINVAL;
117}
118
Jean Delvarefb4504f2009-03-30 21:46:43 +0200119static DEVICE_ATTR(out0_output, S_IWUSR | S_IRUGO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 show_out0_ouput, set_out0_output);
121
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400122static ssize_t show_out0_enable(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev));
125 return sprintf(buf, "%u\n", !(!(data->control & PCF8591_CONTROL_AOEF)));
126}
127
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400128static ssize_t set_out0_enable(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct i2c_client *client = to_i2c_client(dev);
131 struct pcf8591_data *data = i2c_get_clientdata(client);
132 unsigned long val = simple_strtoul(buf, NULL, 10);
133
Ingo Molnar5c085d32006-01-18 23:16:04 +0100134 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (val)
136 data->control |= PCF8591_CONTROL_AOEF;
137 else
138 data->control &= ~PCF8591_CONTROL_AOEF;
139 i2c_smbus_write_byte(client, data->control);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100140 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return count;
142}
143
Jean Delvarefb4504f2009-03-30 21:46:43 +0200144static DEVICE_ATTR(out0_enable, S_IWUSR | S_IRUGO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 show_out0_enable, set_out0_enable);
146
Jean Delvare7d9db672006-09-03 22:20:24 +0200147static struct attribute *pcf8591_attributes[] = {
148 &dev_attr_out0_enable.attr,
149 &dev_attr_out0_output.attr,
150 &dev_attr_in0_input.attr,
151 &dev_attr_in1_input.attr,
152 NULL
153};
154
155static const struct attribute_group pcf8591_attr_group = {
156 .attrs = pcf8591_attributes,
157};
158
159static struct attribute *pcf8591_attributes_opt[] = {
160 &dev_attr_in2_input.attr,
161 &dev_attr_in3_input.attr,
162 NULL
163};
164
165static const struct attribute_group pcf8591_attr_group_opt = {
166 .attrs = pcf8591_attributes_opt,
167};
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/*
170 * Real code
171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200173/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +0100174static int pcf8591_detect(struct i2c_client *client,
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200175 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200177 struct i2c_adapter *adapter = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE
180 | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200181 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200183 /* Now, we would do the remaining detection. But the PCF8591 is plainly
184 impossible to detect! Stupid chip. */
185
186 strlcpy(info->type, "pcf8591", I2C_NAME_SIZE);
187
188 return 0;
189}
190
191static int pcf8591_probe(struct i2c_client *client,
192 const struct i2c_device_id *id)
193{
194 struct pcf8591_data *data;
195 int err;
196
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200197 if (!(data = kzalloc(sizeof(struct pcf8591_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 err = -ENOMEM;
199 goto exit;
200 }
Jean Delvarefb4504f2009-03-30 21:46:43 +0200201
Jean Delvaref741f672008-07-14 22:38:36 +0200202 i2c_set_clientdata(client, data);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100203 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 /* Initialize the PCF8591 chip */
Jean Delvaref741f672008-07-14 22:38:36 +0200206 pcf8591_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 /* Register sysfs hooks */
Jean Delvaref741f672008-07-14 22:38:36 +0200209 err = sysfs_create_group(&client->dev.kobj, &pcf8591_attr_group);
Jean Delvare7d9db672006-09-03 22:20:24 +0200210 if (err)
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200211 goto exit_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /* Register input2 if not in "two differential inputs" mode */
Jean Delvare7d9db672006-09-03 22:20:24 +0200214 if (input_mode != 3) {
Jean Delvaref741f672008-07-14 22:38:36 +0200215 if ((err = device_create_file(&client->dev,
Jean Delvare7d9db672006-09-03 22:20:24 +0200216 &dev_attr_in2_input)))
217 goto exit_sysfs_remove;
218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Jean Delvare7d9db672006-09-03 22:20:24 +0200220 /* Register input3 only in "four single ended inputs" mode */
221 if (input_mode == 0) {
Jean Delvaref741f672008-07-14 22:38:36 +0200222 if ((err = device_create_file(&client->dev,
Jean Delvare7d9db672006-09-03 22:20:24 +0200223 &dev_attr_in3_input)))
224 goto exit_sysfs_remove;
225 }
226
Jean Delvare4275fcd2010-10-28 20:31:49 +0200227 data->hwmon_dev = hwmon_device_register(&client->dev);
228 if (IS_ERR(data->hwmon_dev)) {
229 err = PTR_ERR(data->hwmon_dev);
230 goto exit_sysfs_remove;
231 }
232
Jean Delvare7d9db672006-09-03 22:20:24 +0200233 return 0;
234
235exit_sysfs_remove:
Jean Delvaref741f672008-07-14 22:38:36 +0200236 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt);
237 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238exit_kfree:
239 kfree(data);
240exit:
241 return err;
242}
243
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200244static int pcf8591_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Jean Delvare4275fcd2010-10-28 20:31:49 +0200246 struct pcf8591_data *data = i2c_get_clientdata(client);
247
248 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare7d9db672006-09-03 22:20:24 +0200249 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt);
250 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 kfree(i2c_get_clientdata(client));
252 return 0;
253}
254
255/* Called when we have found a new PCF8591. */
256static void pcf8591_init_client(struct i2c_client *client)
257{
258 struct pcf8591_data *data = i2c_get_clientdata(client);
259 data->control = PCF8591_INIT_CONTROL;
260 data->aout = PCF8591_INIT_AOUT;
261
262 i2c_smbus_write_byte_data(client, data->control, data->aout);
Jean Delvarefb4504f2009-03-30 21:46:43 +0200263
264 /* The first byte transmitted contains the conversion code of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 previous read cycle. FLUSH IT! */
266 i2c_smbus_read_byte(client);
267}
268
269static int pcf8591_read_channel(struct device *dev, int channel)
270{
271 u8 value;
272 struct i2c_client *client = to_i2c_client(dev);
273 struct pcf8591_data *data = i2c_get_clientdata(client);
274
Ingo Molnar5c085d32006-01-18 23:16:04 +0100275 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 if ((data->control & PCF8591_CONTROL_AICH_MASK) != channel) {
278 data->control = (data->control & ~PCF8591_CONTROL_AICH_MASK)
279 | channel;
280 i2c_smbus_write_byte(client, data->control);
Jean Delvarefb4504f2009-03-30 21:46:43 +0200281
282 /* The first byte transmitted contains the conversion code of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 the previous read cycle. FLUSH IT! */
284 i2c_smbus_read_byte(client);
285 }
286 value = i2c_smbus_read_byte(client);
287
Ingo Molnar5c085d32006-01-18 23:16:04 +0100288 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 if ((channel == 2 && input_mode == 2) ||
291 (channel != 3 && (input_mode == 1 || input_mode == 3)))
292 return (10 * REG_TO_SIGNED(value));
293 else
294 return (10 * value);
295}
296
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200297static const struct i2c_device_id pcf8591_id[] = {
298 { "pcf8591", 0 },
299 { }
300};
301MODULE_DEVICE_TABLE(i2c, pcf8591_id);
302
303static struct i2c_driver pcf8591_driver = {
304 .driver = {
305 .name = "pcf8591",
306 },
307 .probe = pcf8591_probe,
308 .remove = pcf8591_remove,
309 .id_table = pcf8591_id,
310
311 .class = I2C_CLASS_HWMON, /* Nearest choice */
312 .detect = pcf8591_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100313 .address_list = normal_i2c,
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200314};
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316static int __init pcf8591_init(void)
317{
318 if (input_mode < 0 || input_mode > 3) {
319 printk(KERN_WARNING "pcf8591: invalid input_mode (%d)\n",
320 input_mode);
321 input_mode = 0;
322 }
323 return i2c_add_driver(&pcf8591_driver);
324}
325
326static void __exit pcf8591_exit(void)
327{
328 i2c_del_driver(&pcf8591_driver);
329}
330
331MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>");
332MODULE_DESCRIPTION("PCF8591 driver");
333MODULE_LICENSE("GPL");
334
335module_init(pcf8591_init);
336module_exit(pcf8591_exit);