blob: 056af18209933c7dc8c1938af57922d111fb75dc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* ------------------------------------------------------------------------ *
2 * i2c-parport.c I2C bus over parallel port *
3 * ------------------------------------------------------------------------ *
Jean Delvare3af07bd2007-05-01 23:26:30 +02004 Copyright (C) 2003-2007 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
6 Based on older i2c-philips-par.c driver
7 Copyright (C) 1995-2000 Simon G. Vogl
8 With some changes from:
9 Frodo Looijaard <frodol@dds.nl>
Jan Engelhardt96de0e22007-10-19 23:21:04 +020010 Kyösti Mälkki <kmalkki@cc.hut.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 * ------------------------------------------------------------------------ */
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
Jean Delvare6d376fc2010-03-02 12:23:41 +010030#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/parport.h>
32#include <linux/i2c.h>
33#include <linux/i2c-algo-bit.h>
34#include "i2c-parport.h"
35
36/* ----- Device list ------------------------------------------------------ */
37
38struct i2c_par {
39 struct pardevice *pdev;
40 struct i2c_adapter adapter;
41 struct i2c_algo_bit_data algo_data;
42 struct i2c_par *next;
43};
44
45static struct i2c_par *adapter_list;
46
47/* ----- Low-level parallel port access ----------------------------------- */
48
49static void port_write_data(struct parport *p, unsigned char d)
50{
51 parport_write_data(p, d);
52}
53
54static void port_write_control(struct parport *p, unsigned char d)
55{
56 parport_write_control(p, d);
57}
58
59static unsigned char port_read_data(struct parport *p)
60{
61 return parport_read_data(p);
62}
63
64static unsigned char port_read_status(struct parport *p)
65{
66 return parport_read_status(p);
67}
68
69static unsigned char port_read_control(struct parport *p)
70{
71 return parport_read_control(p);
72}
73
74static void (*port_write[])(struct parport *, unsigned char) = {
75 port_write_data,
76 NULL,
77 port_write_control,
78};
79
80static unsigned char (*port_read[])(struct parport *) = {
81 port_read_data,
82 port_read_status,
83 port_read_control,
84};
85
86/* ----- Unified line operation functions --------------------------------- */
87
88static inline void line_set(struct parport *data, int state,
89 const struct lineop *op)
90{
91 u8 oldval = port_read[op->port](data);
92
93 /* Touch only the bit(s) needed */
94 if ((op->inverted && !state) || (!op->inverted && state))
95 port_write[op->port](data, oldval | op->val);
96 else
97 port_write[op->port](data, oldval & ~op->val);
98}
99
100static inline int line_get(struct parport *data,
101 const struct lineop *op)
102{
103 u8 oldval = port_read[op->port](data);
104
105 return ((op->inverted && (oldval & op->val) != op->val)
106 || (!op->inverted && (oldval & op->val) == op->val));
107}
108
109/* ----- I2C algorithm call-back functions and structures ----------------- */
110
111static void parport_setscl(void *data, int state)
112{
113 line_set((struct parport *) data, state, &adapter_parm[type].setscl);
114}
115
116static void parport_setsda(void *data, int state)
117{
118 line_set((struct parport *) data, state, &adapter_parm[type].setsda);
119}
120
121static int parport_getscl(void *data)
122{
123 return line_get((struct parport *) data, &adapter_parm[type].getscl);
124}
125
126static int parport_getsda(void *data)
127{
128 return line_get((struct parport *) data, &adapter_parm[type].getsda);
129}
130
131/* Encapsulate the functions above in the correct structure.
132 Note that this is only a template, from which the real structures are
133 copied. The attaching code will set getscl to NULL for adapters that
Tobias Klauser614e24b2005-05-19 21:39:06 +0200134 cannot read SCL back, and will also make the data field point to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 the parallel port structure. */
136static struct i2c_algo_bit_data parport_algo_data = {
137 .setsda = parport_setsda,
138 .setscl = parport_setscl,
139 .getsda = parport_getsda,
140 .getscl = parport_getscl,
Jean Delvare3af07bd2007-05-01 23:26:30 +0200141 .udelay = 10, /* ~50 kbps */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 .timeout = HZ,
143};
144
145/* ----- I2c and parallel port call-back functions and structures --------- */
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static void i2c_parport_attach (struct parport *port)
148{
149 struct i2c_par *adapter;
150
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200151 adapter = kzalloc(sizeof(struct i2c_par), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (adapter == NULL) {
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200153 printk(KERN_ERR "i2c-parport: Failed to kzalloc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return;
155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 pr_debug("i2c-parport: attaching to %s\n", port->name);
158 adapter->pdev = parport_register_device(port, "i2c-parport",
159 NULL, NULL, NULL, PARPORT_FLAG_EXCL, NULL);
160 if (!adapter->pdev) {
161 printk(KERN_ERR "i2c-parport: Unable to register with parport\n");
162 goto ERROR0;
163 }
164
165 /* Fill the rest of the structure */
Jean Delvarecacf2262007-05-01 23:26:29 +0200166 adapter->adapter.owner = THIS_MODULE;
167 adapter->adapter.class = I2C_CLASS_HWMON;
Jean Delvarecacf2262007-05-01 23:26:29 +0200168 strlcpy(adapter->adapter.name, "Parallel port adapter",
169 sizeof(adapter->adapter.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 adapter->algo_data = parport_algo_data;
Jean Delvare3af07bd2007-05-01 23:26:30 +0200171 /* Slow down if we can't sense SCL */
172 if (!adapter_parm[type].getscl.val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 adapter->algo_data.getscl = NULL;
Jean Delvare3af07bd2007-05-01 23:26:30 +0200174 adapter->algo_data.udelay = 50; /* ~10 kbps */
175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 adapter->algo_data.data = port;
177 adapter->adapter.algo_data = &adapter->algo_data;
David Brownellda675292007-05-08 00:27:42 -0700178 adapter->adapter.dev.parent = port->physport->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 if (parport_claim_or_block(adapter->pdev) < 0) {
181 printk(KERN_ERR "i2c-parport: Could not claim parallel port\n");
182 goto ERROR1;
183 }
184
185 /* Reset hardware to a sane state (SCL and SDA high) */
186 parport_setsda(port, 1);
187 parport_setscl(port, 1);
188 /* Other init if needed (power on...) */
Jean Delvare6d376fc2010-03-02 12:23:41 +0100189 if (adapter_parm[type].init.val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 line_set(port, 1, &adapter_parm[type].init);
Jean Delvare6d376fc2010-03-02 12:23:41 +0100191 /* Give powered devices some time to settle */
192 msleep(100);
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (i2c_bit_add_bus(&adapter->adapter) < 0) {
196 printk(KERN_ERR "i2c-parport: Unable to register with I2C\n");
197 goto ERROR1;
198 }
199
200 /* Add the new adapter to the list */
201 adapter->next = adapter_list;
202 adapter_list = adapter;
203 return;
204
205ERROR1:
Jean Delvare7b964f7332008-11-28 15:24:39 +0100206 parport_release(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 parport_unregister_device(adapter->pdev);
208ERROR0:
209 kfree(adapter);
210}
211
212static void i2c_parport_detach (struct parport *port)
213{
214 struct i2c_par *adapter, *prev;
215
216 /* Walk the list */
217 for (prev = NULL, adapter = adapter_list; adapter;
218 prev = adapter, adapter = adapter->next) {
219 if (adapter->pdev->port == port) {
Jean Delvare3af07bd2007-05-01 23:26:30 +0200220 i2c_del_adapter(&adapter->adapter);
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 /* Un-init if needed (power off...) */
223 if (adapter_parm[type].init.val)
224 line_set(port, 0, &adapter_parm[type].init);
225
Jean Delvare7b964f7332008-11-28 15:24:39 +0100226 parport_release(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 parport_unregister_device(adapter->pdev);
228 if (prev)
229 prev->next = adapter->next;
230 else
231 adapter_list = adapter->next;
232 kfree(adapter);
233 return;
234 }
235 }
236}
237
Jean Delvare6c129be2005-10-08 00:17:35 +0200238static struct parport_driver i2c_parport_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 .name = "i2c-parport",
240 .attach = i2c_parport_attach,
241 .detach = i2c_parport_detach,
242};
243
244/* ----- Module loading, unloading and information ------------------------ */
245
246static int __init i2c_parport_init(void)
247{
Mark M. Hoffmane97b81d2006-03-23 16:50:25 +0100248 if (type < 0) {
249 printk(KERN_WARNING "i2c-parport: adapter type unspecified\n");
250 return -ENODEV;
251 }
252
253 if (type >= ARRAY_SIZE(adapter_parm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 printk(KERN_WARNING "i2c-parport: invalid type (%d)\n", type);
Mark M. Hoffmane97b81d2006-03-23 16:50:25 +0100255 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
Tobias Klauser7e3d7db2006-01-09 23:19:51 +0100257
Jean Delvare6c129be2005-10-08 00:17:35 +0200258 return parport_register_driver(&i2c_parport_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261static void __exit i2c_parport_exit(void)
262{
Jean Delvare6c129be2005-10-08 00:17:35 +0200263 parport_unregister_driver(&i2c_parport_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
267MODULE_DESCRIPTION("I2C bus over parallel port");
268MODULE_LICENSE("GPL");
269
270module_init(i2c_parport_init);
271module_exit(i2c_parport_exit);