blob: 1d7ffebd679d0cce6f25c9e1946d7e9739c1b4b5 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27/* Addresses to scan */
Jean Delvare2cdddeb2008-01-27 18:14:47 +010028static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c,
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/* Insmod parameters */
Jean Delvaref4b50262005-07-31 21:49:03 +020032I2C_CLIENT_INSMOD_1(pcf8591);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34static int input_mode;
35module_param(input_mode, int, 0);
36MODULE_PARM_DESC(input_mode,
37 "Analog input mode:\n"
38 " 0 = four single ended inputs\n"
39 " 1 = three differential inputs\n"
40 " 2 = single ended and differential mixed\n"
41 " 3 = two differential inputs\n");
42
43/* The PCF8591 control byte
Jean Delvarefb4504f2009-03-30 21:46:43 +020044 7 6 5 4 3 2 1 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 | 0 |AOEF| AIP | 0 |AINC| AICH | */
46
47/* Analog Output Enable Flag (analog output active if 1) */
48#define PCF8591_CONTROL_AOEF 0x40
Jean Delvarefb4504f2009-03-30 21:46:43 +020049
50/* Analog Input Programming
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 0x00 = four single ended inputs
52 0x10 = three differential inputs
53 0x20 = single ended and differential mixed
54 0x30 = two differential inputs */
55#define PCF8591_CONTROL_AIP_MASK 0x30
56
57/* Autoincrement Flag (switch on if 1) */
58#define PCF8591_CONTROL_AINC 0x04
59
60/* Channel selection
Jean Delvarefb4504f2009-03-30 21:46:43 +020061 0x00 = channel 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 0x01 = channel 1
63 0x02 = channel 2
64 0x03 = channel 3 */
65#define PCF8591_CONTROL_AICH_MASK 0x03
66
67/* Initial values */
68#define PCF8591_INIT_CONTROL ((input_mode << 4) | PCF8591_CONTROL_AOEF)
69#define PCF8591_INIT_AOUT 0 /* DAC out = 0 */
70
71/* Conversions */
72#define REG_TO_SIGNED(reg) (((reg) & 0x80)?((reg) - 256):(reg))
73
74struct pcf8591_data {
Ingo Molnar5c085d32006-01-18 23:16:04 +010075 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77 u8 control;
78 u8 aout;
79};
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static void pcf8591_init_client(struct i2c_client *client);
82static int pcf8591_read_channel(struct device *dev, int channel);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/* following are the sysfs callback functions */
85#define show_in_channel(channel) \
Yani Ioannoua5099cf2005-05-17 06:42:25 -040086static ssize_t show_in##channel##_input(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{ \
88 return sprintf(buf, "%d\n", pcf8591_read_channel(dev, channel));\
89} \
90static DEVICE_ATTR(in##channel##_input, S_IRUGO, \
91 show_in##channel##_input, NULL);
92
93show_in_channel(0);
94show_in_channel(1);
95show_in_channel(2);
96show_in_channel(3);
97
Yani Ioannoua5099cf2005-05-17 06:42:25 -040098static ssize_t show_out0_ouput(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev));
101 return sprintf(buf, "%d\n", data->aout * 10);
102}
103
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400104static 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 -0700105{
106 unsigned int value;
107 struct i2c_client *client = to_i2c_client(dev);
108 struct pcf8591_data *data = i2c_get_clientdata(client);
109 if ((value = (simple_strtoul(buf, NULL, 10) + 5) / 10) <= 255) {
110 data->aout = value;
111 i2c_smbus_write_byte_data(client, data->control, data->aout);
112 return count;
113 }
114 return -EINVAL;
115}
116
Jean Delvarefb4504f2009-03-30 21:46:43 +0200117static DEVICE_ATTR(out0_output, S_IWUSR | S_IRUGO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 show_out0_ouput, set_out0_output);
119
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400120static ssize_t show_out0_enable(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev));
123 return sprintf(buf, "%u\n", !(!(data->control & PCF8591_CONTROL_AOEF)));
124}
125
Yani Ioannoua5099cf2005-05-17 06:42:25 -0400126static 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 -0700127{
128 struct i2c_client *client = to_i2c_client(dev);
129 struct pcf8591_data *data = i2c_get_clientdata(client);
130 unsigned long val = simple_strtoul(buf, NULL, 10);
131
Ingo Molnar5c085d32006-01-18 23:16:04 +0100132 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (val)
134 data->control |= PCF8591_CONTROL_AOEF;
135 else
136 data->control &= ~PCF8591_CONTROL_AOEF;
137 i2c_smbus_write_byte(client, data->control);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100138 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return count;
140}
141
Jean Delvarefb4504f2009-03-30 21:46:43 +0200142static DEVICE_ATTR(out0_enable, S_IWUSR | S_IRUGO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 show_out0_enable, set_out0_enable);
144
Jean Delvare7d9db672006-09-03 22:20:24 +0200145static struct attribute *pcf8591_attributes[] = {
146 &dev_attr_out0_enable.attr,
147 &dev_attr_out0_output.attr,
148 &dev_attr_in0_input.attr,
149 &dev_attr_in1_input.attr,
150 NULL
151};
152
153static const struct attribute_group pcf8591_attr_group = {
154 .attrs = pcf8591_attributes,
155};
156
157static struct attribute *pcf8591_attributes_opt[] = {
158 &dev_attr_in2_input.attr,
159 &dev_attr_in3_input.attr,
160 NULL
161};
162
163static const struct attribute_group pcf8591_attr_group_opt = {
164 .attrs = pcf8591_attributes_opt,
165};
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/*
168 * Real code
169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200171/* Return 0 if detection is successful, -ENODEV otherwise */
172static int pcf8591_detect(struct i2c_client *client, int kind,
173 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200175 struct i2c_adapter *adapter = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE
178 | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200179 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200181 /* Now, we would do the remaining detection. But the PCF8591 is plainly
182 impossible to detect! Stupid chip. */
183
184 strlcpy(info->type, "pcf8591", I2C_NAME_SIZE);
185
186 return 0;
187}
188
189static int pcf8591_probe(struct i2c_client *client,
190 const struct i2c_device_id *id)
191{
192 struct pcf8591_data *data;
193 int err;
194
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200195 if (!(data = kzalloc(sizeof(struct pcf8591_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 err = -ENOMEM;
197 goto exit;
198 }
Jean Delvarefb4504f2009-03-30 21:46:43 +0200199
Jean Delvaref741f672008-07-14 22:38:36 +0200200 i2c_set_clientdata(client, data);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100201 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /* Initialize the PCF8591 chip */
Jean Delvaref741f672008-07-14 22:38:36 +0200204 pcf8591_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* Register sysfs hooks */
Jean Delvaref741f672008-07-14 22:38:36 +0200207 err = sysfs_create_group(&client->dev.kobj, &pcf8591_attr_group);
Jean Delvare7d9db672006-09-03 22:20:24 +0200208 if (err)
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200209 goto exit_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 /* Register input2 if not in "two differential inputs" mode */
Jean Delvare7d9db672006-09-03 22:20:24 +0200212 if (input_mode != 3) {
Jean Delvaref741f672008-07-14 22:38:36 +0200213 if ((err = device_create_file(&client->dev,
Jean Delvare7d9db672006-09-03 22:20:24 +0200214 &dev_attr_in2_input)))
215 goto exit_sysfs_remove;
216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Jean Delvare7d9db672006-09-03 22:20:24 +0200218 /* Register input3 only in "four single ended inputs" mode */
219 if (input_mode == 0) {
Jean Delvaref741f672008-07-14 22:38:36 +0200220 if ((err = device_create_file(&client->dev,
Jean Delvare7d9db672006-09-03 22:20:24 +0200221 &dev_attr_in3_input)))
222 goto exit_sysfs_remove;
223 }
224
225 return 0;
226
227exit_sysfs_remove:
Jean Delvaref741f672008-07-14 22:38:36 +0200228 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt);
229 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230exit_kfree:
231 kfree(data);
232exit:
233 return err;
234}
235
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200236static int pcf8591_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Jean Delvare7d9db672006-09-03 22:20:24 +0200238 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt);
239 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 kfree(i2c_get_clientdata(client));
241 return 0;
242}
243
244/* Called when we have found a new PCF8591. */
245static void pcf8591_init_client(struct i2c_client *client)
246{
247 struct pcf8591_data *data = i2c_get_clientdata(client);
248 data->control = PCF8591_INIT_CONTROL;
249 data->aout = PCF8591_INIT_AOUT;
250
251 i2c_smbus_write_byte_data(client, data->control, data->aout);
Jean Delvarefb4504f2009-03-30 21:46:43 +0200252
253 /* The first byte transmitted contains the conversion code of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 previous read cycle. FLUSH IT! */
255 i2c_smbus_read_byte(client);
256}
257
258static int pcf8591_read_channel(struct device *dev, int channel)
259{
260 u8 value;
261 struct i2c_client *client = to_i2c_client(dev);
262 struct pcf8591_data *data = i2c_get_clientdata(client);
263
Ingo Molnar5c085d32006-01-18 23:16:04 +0100264 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if ((data->control & PCF8591_CONTROL_AICH_MASK) != channel) {
267 data->control = (data->control & ~PCF8591_CONTROL_AICH_MASK)
268 | channel;
269 i2c_smbus_write_byte(client, data->control);
Jean Delvarefb4504f2009-03-30 21:46:43 +0200270
271 /* The first byte transmitted contains the conversion code of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 the previous read cycle. FLUSH IT! */
273 i2c_smbus_read_byte(client);
274 }
275 value = i2c_smbus_read_byte(client);
276
Ingo Molnar5c085d32006-01-18 23:16:04 +0100277 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 if ((channel == 2 && input_mode == 2) ||
280 (channel != 3 && (input_mode == 1 || input_mode == 3)))
281 return (10 * REG_TO_SIGNED(value));
282 else
283 return (10 * value);
284}
285
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200286static const struct i2c_device_id pcf8591_id[] = {
287 { "pcf8591", 0 },
288 { }
289};
290MODULE_DEVICE_TABLE(i2c, pcf8591_id);
291
292static struct i2c_driver pcf8591_driver = {
293 .driver = {
294 .name = "pcf8591",
295 },
296 .probe = pcf8591_probe,
297 .remove = pcf8591_remove,
298 .id_table = pcf8591_id,
299
300 .class = I2C_CLASS_HWMON, /* Nearest choice */
301 .detect = pcf8591_detect,
302 .address_data = &addr_data,
303};
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305static int __init pcf8591_init(void)
306{
307 if (input_mode < 0 || input_mode > 3) {
308 printk(KERN_WARNING "pcf8591: invalid input_mode (%d)\n",
309 input_mode);
310 input_mode = 0;
311 }
312 return i2c_add_driver(&pcf8591_driver);
313}
314
315static void __exit pcf8591_exit(void)
316{
317 i2c_del_driver(&pcf8591_driver);
318}
319
320MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>");
321MODULE_DESCRIPTION("PCF8591 driver");
322MODULE_LICENSE("GPL");
323
324module_init(pcf8591_init);
325module_exit(pcf8591_exit);