blob: 155da957a92b2516d6c36e62876aa15359ed1374 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* ------------------------------------------------------------------------ *
2 * i2c-parport.c I2C bus over parallel port *
3 * ------------------------------------------------------------------------ *
Jean Delvare7c81c602014-01-29 20:40:08 +01004 Copyright (C) 2003-2011 Jean Delvare <jdelvare@suse.de>
Jean Delvare07da0372011-05-24 20:58:49 +02005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 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>
Jean Delvare07da0372011-05-24 20:58:49 +020011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * ------------------------------------------------------------------------ */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/init.h>
Jean Delvare6d376fc2010-03-02 12:23:41 +010026#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/parport.h>
28#include <linux/i2c.h>
29#include <linux/i2c-algo-bit.h>
Jean Delvare35859252010-03-02 12:23:44 +010030#include <linux/i2c-smbus.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Jean Delvare56acc7a2011-05-01 18:18:49 +020032#include <linux/list.h>
33#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#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;
Jean Delvare35859252010-03-02 12:23:44 +010042 struct i2c_smbus_alert_setup alert_data;
43 struct i2c_client *ara;
Jean Delvare56acc7a2011-05-01 18:18:49 +020044 struct list_head node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045};
46
Jean Delvare56acc7a2011-05-01 18:18:49 +020047static LIST_HEAD(adapter_list);
48static DEFINE_MUTEX(adapter_list_lock);
Sudip Mukherjee19a4fb22015-05-20 20:56:59 +053049#define MAX_DEVICE 4
50static int parport[MAX_DEVICE] = {0, -1, -1, -1};
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/* ----- Low-level parallel port access ----------------------------------- */
54
55static void port_write_data(struct parport *p, unsigned char d)
56{
57 parport_write_data(p, d);
58}
59
60static void port_write_control(struct parport *p, unsigned char d)
61{
62 parport_write_control(p, d);
63}
64
65static unsigned char port_read_data(struct parport *p)
66{
67 return parport_read_data(p);
68}
69
70static unsigned char port_read_status(struct parport *p)
71{
72 return parport_read_status(p);
73}
74
75static unsigned char port_read_control(struct parport *p)
76{
77 return parport_read_control(p);
78}
79
Jean Delvare07da0372011-05-24 20:58:49 +020080static void (* const port_write[])(struct parport *, unsigned char) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 port_write_data,
82 NULL,
83 port_write_control,
84};
85
Jean Delvare07da0372011-05-24 20:58:49 +020086static unsigned char (* const port_read[])(struct parport *) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 port_read_data,
88 port_read_status,
89 port_read_control,
90};
91
92/* ----- Unified line operation functions --------------------------------- */
93
94static inline void line_set(struct parport *data, int state,
95 const struct lineop *op)
96{
97 u8 oldval = port_read[op->port](data);
98
99 /* Touch only the bit(s) needed */
100 if ((op->inverted && !state) || (!op->inverted && state))
101 port_write[op->port](data, oldval | op->val);
102 else
103 port_write[op->port](data, oldval & ~op->val);
104}
105
106static inline int line_get(struct parport *data,
107 const struct lineop *op)
108{
109 u8 oldval = port_read[op->port](data);
110
111 return ((op->inverted && (oldval & op->val) != op->val)
112 || (!op->inverted && (oldval & op->val) == op->val));
113}
114
115/* ----- I2C algorithm call-back functions and structures ----------------- */
116
117static void parport_setscl(void *data, int state)
118{
119 line_set((struct parport *) data, state, &adapter_parm[type].setscl);
120}
121
122static void parport_setsda(void *data, int state)
123{
124 line_set((struct parport *) data, state, &adapter_parm[type].setsda);
125}
126
127static int parport_getscl(void *data)
128{
129 return line_get((struct parport *) data, &adapter_parm[type].getscl);
130}
131
132static int parport_getsda(void *data)
133{
134 return line_get((struct parport *) data, &adapter_parm[type].getsda);
135}
136
137/* Encapsulate the functions above in the correct structure.
138 Note that this is only a template, from which the real structures are
139 copied. The attaching code will set getscl to NULL for adapters that
Tobias Klauser614e24b2005-05-19 21:39:06 +0200140 cannot read SCL back, and will also make the data field point to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 the parallel port structure. */
Jean Delvarebfdcad92010-05-21 18:40:57 +0200142static const struct i2c_algo_bit_data parport_algo_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 .setsda = parport_setsda,
144 .setscl = parport_setscl,
145 .getsda = parport_getsda,
146 .getscl = parport_getscl,
Jean Delvare3af07bd2007-05-01 23:26:30 +0200147 .udelay = 10, /* ~50 kbps */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 .timeout = HZ,
Jean Delvare07da0372011-05-24 20:58:49 +0200149};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151/* ----- I2c and parallel port call-back functions and structures --------- */
152
Jean Delvare7fe442a2012-10-05 22:23:53 +0200153static void i2c_parport_irq(void *data)
Jean Delvare35859252010-03-02 12:23:44 +0100154{
155 struct i2c_par *adapter = data;
156 struct i2c_client *ara = adapter->ara;
157
158 if (ara) {
159 dev_dbg(&ara->dev, "SMBus alert received\n");
160 i2c_handle_smbus_alert(ara);
161 } else
162 dev_dbg(&adapter->adapter.dev,
163 "SMBus alert received but no ARA client!\n");
164}
165
Jean Delvare07da0372011-05-24 20:58:49 +0200166static void i2c_parport_attach(struct parport *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 struct i2c_par *adapter;
Sudip Mukherjee19a4fb22015-05-20 20:56:59 +0530169 int i;
170 struct pardev_cb i2c_parport_cb;
171
172 for (i = 0; i < MAX_DEVICE; i++) {
173 if (parport[i] == -1)
174 continue;
175 if (port->number == parport[i])
176 break;
177 }
178 if (i == MAX_DEVICE) {
179 pr_debug("i2c-parport: Not using parport%d.\n", port->number);
180 return;
181 }
Jean Delvare07da0372011-05-24 20:58:49 +0200182
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200183 adapter = kzalloc(sizeof(struct i2c_par), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (adapter == NULL) {
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200185 printk(KERN_ERR "i2c-parport: Failed to kzalloc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return;
187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 pr_debug("i2c-parport: attaching to %s\n", port->name);
Jean Delvare35859252010-03-02 12:23:44 +0100190 parport_disable_irq(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 adapter->pdev = parport_register_device(port, "i2c-parport",
Jean Delvare35859252010-03-02 12:23:44 +0100192 NULL, NULL, i2c_parport_irq, PARPORT_FLAG_EXCL, adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (!adapter->pdev) {
194 printk(KERN_ERR "i2c-parport: Unable to register with parport\n");
Jean Delvare07da0372011-05-24 20:58:49 +0200195 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197
198 /* Fill the rest of the structure */
Jean Delvarecacf2262007-05-01 23:26:29 +0200199 adapter->adapter.owner = THIS_MODULE;
200 adapter->adapter.class = I2C_CLASS_HWMON;
Jean Delvarecacf2262007-05-01 23:26:29 +0200201 strlcpy(adapter->adapter.name, "Parallel port adapter",
202 sizeof(adapter->adapter.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 adapter->algo_data = parport_algo_data;
Jean Delvare3af07bd2007-05-01 23:26:30 +0200204 /* Slow down if we can't sense SCL */
205 if (!adapter_parm[type].getscl.val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 adapter->algo_data.getscl = NULL;
Jean Delvare3af07bd2007-05-01 23:26:30 +0200207 adapter->algo_data.udelay = 50; /* ~10 kbps */
208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 adapter->algo_data.data = port;
210 adapter->adapter.algo_data = &adapter->algo_data;
David Brownellda675292007-05-08 00:27:42 -0700211 adapter->adapter.dev.parent = port->physport->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 if (parport_claim_or_block(adapter->pdev) < 0) {
214 printk(KERN_ERR "i2c-parport: Could not claim parallel port\n");
Jean Delvare07da0372011-05-24 20:58:49 +0200215 goto err_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217
218 /* Reset hardware to a sane state (SCL and SDA high) */
219 parport_setsda(port, 1);
220 parport_setscl(port, 1);
221 /* Other init if needed (power on...) */
Jean Delvare6d376fc2010-03-02 12:23:41 +0100222 if (adapter_parm[type].init.val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 line_set(port, 1, &adapter_parm[type].init);
Jean Delvare6d376fc2010-03-02 12:23:41 +0100224 /* Give powered devices some time to settle */
225 msleep(100);
226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (i2c_bit_add_bus(&adapter->adapter) < 0) {
229 printk(KERN_ERR "i2c-parport: Unable to register with I2C\n");
Jean Delvare07da0372011-05-24 20:58:49 +0200230 goto err_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
Jean Delvare35859252010-03-02 12:23:44 +0100233 /* Setup SMBus alert if supported */
234 if (adapter_parm[type].smbus_alert) {
235 adapter->alert_data.alert_edge_triggered = 1;
236 adapter->ara = i2c_setup_smbus_alert(&adapter->adapter,
237 &adapter->alert_data);
238 if (adapter->ara)
239 parport_enable_irq(port);
240 else
241 printk(KERN_WARNING "i2c-parport: Failed to register "
242 "ARA client\n");
243 }
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* Add the new adapter to the list */
Jean Delvare56acc7a2011-05-01 18:18:49 +0200246 mutex_lock(&adapter_list_lock);
247 list_add_tail(&adapter->node, &adapter_list);
248 mutex_unlock(&adapter_list_lock);
Jean Delvare07da0372011-05-24 20:58:49 +0200249 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Jean Delvare07da0372011-05-24 20:58:49 +0200251 err_unregister:
Jean Delvare7b964f7332008-11-28 15:24:39 +0100252 parport_release(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 parport_unregister_device(adapter->pdev);
Jean Delvare07da0372011-05-24 20:58:49 +0200254 err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 kfree(adapter);
256}
257
Jean Delvare07da0372011-05-24 20:58:49 +0200258static void i2c_parport_detach(struct parport *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Jean Delvare56acc7a2011-05-01 18:18:49 +0200260 struct i2c_par *adapter, *_n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 /* Walk the list */
Jean Delvare56acc7a2011-05-01 18:18:49 +0200263 mutex_lock(&adapter_list_lock);
264 list_for_each_entry_safe(adapter, _n, &adapter_list, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (adapter->pdev->port == port) {
Jean Delvare35859252010-03-02 12:23:44 +0100266 if (adapter->ara) {
267 parport_disable_irq(port);
268 i2c_unregister_device(adapter->ara);
269 }
Jean Delvare3af07bd2007-05-01 23:26:30 +0200270 i2c_del_adapter(&adapter->adapter);
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /* Un-init if needed (power off...) */
273 if (adapter_parm[type].init.val)
274 line_set(port, 0, &adapter_parm[type].init);
Jean Delvare07da0372011-05-24 20:58:49 +0200275
Jean Delvare7b964f7332008-11-28 15:24:39 +0100276 parport_release(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 parport_unregister_device(adapter->pdev);
Jean Delvare56acc7a2011-05-01 18:18:49 +0200278 list_del(&adapter->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 kfree(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281 }
Jean Delvare56acc7a2011-05-01 18:18:49 +0200282 mutex_unlock(&adapter_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Jean Delvare6c129be2005-10-08 00:17:35 +0200285static struct parport_driver i2c_parport_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 .name = "i2c-parport",
287 .attach = i2c_parport_attach,
288 .detach = i2c_parport_detach,
289};
290
291/* ----- Module loading, unloading and information ------------------------ */
292
293static int __init i2c_parport_init(void)
294{
Mark M. Hoffmane97b81d2006-03-23 16:50:25 +0100295 if (type < 0) {
296 printk(KERN_WARNING "i2c-parport: adapter type unspecified\n");
297 return -ENODEV;
298 }
299
300 if (type >= ARRAY_SIZE(adapter_parm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 printk(KERN_WARNING "i2c-parport: invalid type (%d)\n", type);
Mark M. Hoffmane97b81d2006-03-23 16:50:25 +0100302 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Tobias Klauser7e3d7db2006-01-09 23:19:51 +0100304
Jean Delvare6c129be2005-10-08 00:17:35 +0200305 return parport_register_driver(&i2c_parport_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308static void __exit i2c_parport_exit(void)
309{
Jean Delvare6c129be2005-10-08 00:17:35 +0200310 parport_unregister_driver(&i2c_parport_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Jean Delvare7c81c602014-01-29 20:40:08 +0100313MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314MODULE_DESCRIPTION("I2C bus over parallel port");
315MODULE_LICENSE("GPL");
316
Sudip Mukherjee19a4fb22015-05-20 20:56:59 +0530317module_param_array(parport, int, NULL, 0);
318MODULE_PARM_DESC(parport,
319 "List of parallel ports to bind to, by index.\n"
320 " Atmost " __stringify(MAX_DEVICE) " devices are supported.\n"
321 " Default is one device connected to parport0.\n"
322);
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324module_init(i2c_parport_init);
325module_exit(i2c_parport_exit);