]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/i2c/chips/pcf8574.c
ad2f7901a8c96a154496af66d6136cfabc3eac92
[linux-2.6-omap-h63xx.git] / drivers / i2c / chips / pcf8574.c
1 /*
2     Copyright (c) 2000  Frodo Looijaard <frodol@dds.nl>, 
3                         Philip Edelbrock <phil@netroedge.com>,
4                         Dan Eaton <dan.eaton@rocketlogix.com>
5     Ported to Linux 2.6 by Aurelien Jarno <aurel32@debian.org> with 
6     the help of Jean Delvare <khali@linux-fr.org>
7
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12     
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License
19     along with this program; if not, write to the Free Software
20     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 /* A few notes about the PCF8574:
24
25 * The PCF8574 is an 8-bit I/O expander for the I2C bus produced by
26   Philips Semiconductors.  It is designed to provide a byte I2C
27   interface to up to 8 separate devices.
28   
29 * The PCF8574 appears as a very simple SMBus device which can be
30   read from or written to with SMBUS byte read/write accesses.
31
32   --Dan
33
34 */
35
36 #include <linux/module.h>
37 #include <linux/init.h>
38 #include <linux/slab.h>
39 #include <linux/i2c.h>
40
41 /* Addresses to scan */
42 static const unsigned short normal_i2c[] = {
43         0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
44         0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
45         I2C_CLIENT_END
46 };
47
48 /* Insmod parameters */
49 I2C_CLIENT_INSMOD_2(pcf8574, pcf8574a);
50
51 /* Each client has this additional data */
52 struct pcf8574_data {
53         struct i2c_client client;
54
55         int write;                      /* Remember last written value */
56 };
57
58 static int pcf8574_attach_adapter(struct i2c_adapter *adapter);
59 static int pcf8574_detect(struct i2c_adapter *adapter, int address, int kind);
60 static int pcf8574_detach_client(struct i2c_client *client);
61 static void pcf8574_init_client(struct i2c_client *client);
62
63 /* This is the driver that will be inserted */
64 static struct i2c_driver pcf8574_driver = {
65         .driver = {
66                 .name   = "pcf8574",
67         },
68         .attach_adapter = pcf8574_attach_adapter,
69         .detach_client  = pcf8574_detach_client,
70 };
71
72 /* following are the sysfs callback functions */
73 static ssize_t show_read(struct device *dev, struct device_attribute *attr, char *buf)
74 {
75         struct i2c_client *client = to_i2c_client(dev);
76         return sprintf(buf, "%u\n", i2c_smbus_read_byte(client));
77 }
78
79 static DEVICE_ATTR(read, S_IRUGO, show_read, NULL);
80
81 static ssize_t show_write(struct device *dev, struct device_attribute *attr, char *buf)
82 {
83         struct pcf8574_data *data = i2c_get_clientdata(to_i2c_client(dev));
84
85         if (data->write < 0)
86                 return data->write;
87
88         return sprintf(buf, "%d\n", data->write);
89 }
90
91 static ssize_t set_write(struct device *dev, struct device_attribute *attr, const char *buf,
92                          size_t count)
93 {
94         struct i2c_client *client = to_i2c_client(dev);
95         struct pcf8574_data *data = i2c_get_clientdata(client);
96         unsigned long val = simple_strtoul(buf, NULL, 10);
97
98         if (val > 0xff)
99                 return -EINVAL;
100
101         data->write = val;
102         i2c_smbus_write_byte(client, data->write);
103         return count;
104 }
105
106 static DEVICE_ATTR(write, S_IWUSR | S_IRUGO, show_write, set_write);
107
108 static struct attribute *pcf8574_attributes[] = {
109         &dev_attr_read.attr,
110         &dev_attr_write.attr,
111         NULL
112 };
113
114 static const struct attribute_group pcf8574_attr_group = {
115         .attrs = pcf8574_attributes,
116 };
117
118 /*
119  * Real code
120  */
121
122 static int pcf8574_attach_adapter(struct i2c_adapter *adapter)
123 {
124         return i2c_probe(adapter, &addr_data, pcf8574_detect);
125 }
126
127 /* This function is called by i2c_probe */
128 static int pcf8574_detect(struct i2c_adapter *adapter, int address, int kind)
129 {
130         struct i2c_client *new_client;
131         struct pcf8574_data *data;
132         int err = 0;
133         const char *client_name = "";
134
135         if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
136                 goto exit;
137
138         /* OK. For now, we presume we have a valid client. We now create the
139            client structure, even though we cannot fill it completely yet. */
140         if (!(data = kzalloc(sizeof(struct pcf8574_data), GFP_KERNEL))) {
141                 err = -ENOMEM;
142                 goto exit;
143         }
144
145         new_client = &data->client;
146         i2c_set_clientdata(new_client, data);
147         new_client->addr = address;
148         new_client->adapter = adapter;
149         new_client->driver = &pcf8574_driver;
150         new_client->flags = 0;
151
152         /* Now, we would do the remaining detection. But the PCF8574 is plainly
153            impossible to detect! Stupid chip. */
154
155         /* Determine the chip type */
156         if (kind <= 0) {
157                 if (address >= 0x38 && address <= 0x3f)
158                         kind = pcf8574a;
159                 else
160                         kind = pcf8574;
161         }
162
163         if (kind == pcf8574a)
164                 client_name = "pcf8574a";
165         else
166                 client_name = "pcf8574";
167
168         /* Fill in the remaining client fields and put it into the global list */
169         strlcpy(new_client->name, client_name, I2C_NAME_SIZE);
170
171         /* Tell the I2C layer a new client has arrived */
172         if ((err = i2c_attach_client(new_client)))
173                 goto exit_free;
174         
175         /* Initialize the PCF8574 chip */
176         pcf8574_init_client(new_client);
177
178         /* Register sysfs hooks */
179         err = sysfs_create_group(&new_client->dev.kobj, &pcf8574_attr_group);
180         if (err)
181                 goto exit_detach;
182         return 0;
183
184       exit_detach:
185         i2c_detach_client(new_client);
186       exit_free:
187         kfree(data);
188       exit:
189         return err;
190 }
191
192 static int pcf8574_detach_client(struct i2c_client *client)
193 {
194         int err;
195
196         sysfs_remove_group(&client->dev.kobj, &pcf8574_attr_group);
197
198         if ((err = i2c_detach_client(client)))
199                 return err;
200
201         kfree(i2c_get_clientdata(client));
202         return 0;
203 }
204
205 /* Called when we have found a new PCF8574. */
206 static void pcf8574_init_client(struct i2c_client *client)
207 {
208         struct pcf8574_data *data = i2c_get_clientdata(client);
209         data->write = -EAGAIN;
210 }
211
212 static int __init pcf8574_init(void)
213 {
214         return i2c_add_driver(&pcf8574_driver);
215 }
216
217 static void __exit pcf8574_exit(void)
218 {
219         i2c_del_driver(&pcf8574_driver);
220 }
221
222
223 MODULE_AUTHOR
224     ("Frodo Looijaard <frodol@dds.nl>, "
225      "Philip Edelbrock <phil@netroedge.com>, "
226      "Dan Eaton <dan.eaton@rocketlogix.com> "
227      "and Aurelien Jarno <aurelien@aurel32.net>");
228 MODULE_DESCRIPTION("PCF8574 driver");
229 MODULE_LICENSE("GPL");
230
231 module_init(pcf8574_init);
232 module_exit(pcf8574_exit);