blob: a8e54df4aed6f962f1153d8fe7f97f76aa185c55 [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
Sudip Mukherjee20226112015-06-18 18:33:47 +053023#define pr_fmt(fmt) "i2c-parport: " fmt
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/init.h>
Jean Delvare6d376fc2010-03-02 12:23:41 +010028#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/parport.h>
30#include <linux/i2c.h>
31#include <linux/i2c-algo-bit.h>
Jean Delvare35859252010-03-02 12:23:44 +010032#include <linux/i2c-smbus.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Jean Delvare56acc7a2011-05-01 18:18:49 +020034#include <linux/list.h>
35#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "i2c-parport.h"
37
38/* ----- Device list ------------------------------------------------------ */
39
40struct i2c_par {
41 struct pardevice *pdev;
42 struct i2c_adapter adapter;
43 struct i2c_algo_bit_data algo_data;
Jean Delvare35859252010-03-02 12:23:44 +010044 struct i2c_smbus_alert_setup alert_data;
45 struct i2c_client *ara;
Jean Delvare56acc7a2011-05-01 18:18:49 +020046 struct list_head node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
48
Jean Delvare56acc7a2011-05-01 18:18:49 +020049static LIST_HEAD(adapter_list);
50static DEFINE_MUTEX(adapter_list_lock);
Sudip Mukherjee19a4fb22015-05-20 20:56:59 +053051#define MAX_DEVICE 4
52static int parport[MAX_DEVICE] = {0, -1, -1, -1};
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/* ----- Low-level parallel port access ----------------------------------- */
56
57static void port_write_data(struct parport *p, unsigned char d)
58{
59 parport_write_data(p, d);
60}
61
62static void port_write_control(struct parport *p, unsigned char d)
63{
64 parport_write_control(p, d);
65}
66
67static unsigned char port_read_data(struct parport *p)
68{
69 return parport_read_data(p);
70}
71
72static unsigned char port_read_status(struct parport *p)
73{
74 return parport_read_status(p);
75}
76
77static unsigned char port_read_control(struct parport *p)
78{
79 return parport_read_control(p);
80}
81
Jean Delvare07da0372011-05-24 20:58:49 +020082static void (* const port_write[])(struct parport *, unsigned char) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 port_write_data,
84 NULL,
85 port_write_control,
86};
87
Jean Delvare07da0372011-05-24 20:58:49 +020088static unsigned char (* const port_read[])(struct parport *) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 port_read_data,
90 port_read_status,
91 port_read_control,
92};
93
94/* ----- Unified line operation functions --------------------------------- */
95
96static inline void line_set(struct parport *data, int state,
97 const struct lineop *op)
98{
99 u8 oldval = port_read[op->port](data);
100
101 /* Touch only the bit(s) needed */
102 if ((op->inverted && !state) || (!op->inverted && state))
103 port_write[op->port](data, oldval | op->val);
104 else
105 port_write[op->port](data, oldval & ~op->val);
106}
107
108static inline int line_get(struct parport *data,
109 const struct lineop *op)
110{
111 u8 oldval = port_read[op->port](data);
112
113 return ((op->inverted && (oldval & op->val) != op->val)
114 || (!op->inverted && (oldval & op->val) == op->val));
115}
116
117/* ----- I2C algorithm call-back functions and structures ----------------- */
118
119static void parport_setscl(void *data, int state)
120{
121 line_set((struct parport *) data, state, &adapter_parm[type].setscl);
122}
123
124static void parport_setsda(void *data, int state)
125{
126 line_set((struct parport *) data, state, &adapter_parm[type].setsda);
127}
128
129static int parport_getscl(void *data)
130{
131 return line_get((struct parport *) data, &adapter_parm[type].getscl);
132}
133
134static int parport_getsda(void *data)
135{
136 return line_get((struct parport *) data, &adapter_parm[type].getsda);
137}
138
139/* Encapsulate the functions above in the correct structure.
140 Note that this is only a template, from which the real structures are
141 copied. The attaching code will set getscl to NULL for adapters that
Tobias Klauser614e24b2005-05-19 21:39:06 +0200142 cannot read SCL back, and will also make the data field point to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 the parallel port structure. */
Jean Delvarebfdcad92010-05-21 18:40:57 +0200144static const struct i2c_algo_bit_data parport_algo_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .setsda = parport_setsda,
146 .setscl = parport_setscl,
147 .getsda = parport_getsda,
148 .getscl = parport_getscl,
Jean Delvare3af07bd2007-05-01 23:26:30 +0200149 .udelay = 10, /* ~50 kbps */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 .timeout = HZ,
Jean Delvare07da0372011-05-24 20:58:49 +0200151};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153/* ----- I2c and parallel port call-back functions and structures --------- */
154
Jean Delvare7fe442a2012-10-05 22:23:53 +0200155static void i2c_parport_irq(void *data)
Jean Delvare35859252010-03-02 12:23:44 +0100156{
157 struct i2c_par *adapter = data;
158 struct i2c_client *ara = adapter->ara;
159
160 if (ara) {
161 dev_dbg(&ara->dev, "SMBus alert received\n");
162 i2c_handle_smbus_alert(ara);
163 } else
164 dev_dbg(&adapter->adapter.dev,
165 "SMBus alert received but no ARA client!\n");
166}
167
Jean Delvare07da0372011-05-24 20:58:49 +0200168static void i2c_parport_attach(struct parport *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 struct i2c_par *adapter;
Sudip Mukherjee19a4fb22015-05-20 20:56:59 +0530171 int i;
172 struct pardev_cb i2c_parport_cb;
173
174 for (i = 0; i < MAX_DEVICE; i++) {
175 if (parport[i] == -1)
176 continue;
177 if (port->number == parport[i])
178 break;
179 }
180 if (i == MAX_DEVICE) {
Sudip Mukherjee20226112015-06-18 18:33:47 +0530181 pr_debug("Not using parport%d.\n", port->number);
Sudip Mukherjee19a4fb22015-05-20 20:56:59 +0530182 return;
183 }
Jean Delvare07da0372011-05-24 20:58:49 +0200184
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200185 adapter = kzalloc(sizeof(struct i2c_par), GFP_KERNEL);
Sudip Mukherjee20226112015-06-18 18:33:47 +0530186 if (!adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return;
Sudip Mukherjee8891f412015-05-21 11:46:31 +0530188 memset(&i2c_parport_cb, 0, sizeof(i2c_parport_cb));
189 i2c_parport_cb.flags = PARPORT_FLAG_EXCL;
190 i2c_parport_cb.irq_func = i2c_parport_irq;
191 i2c_parport_cb.private = adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Sudip Mukherjee20226112015-06-18 18:33:47 +0530193 pr_debug("attaching to %s\n", port->name);
Jean Delvare35859252010-03-02 12:23:44 +0100194 parport_disable_irq(port);
Sudip Mukherjee8891f412015-05-21 11:46:31 +0530195 adapter->pdev = parport_register_dev_model(port, "i2c-parport",
196 &i2c_parport_cb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (!adapter->pdev) {
Sudip Mukherjee20226112015-06-18 18:33:47 +0530198 pr_err("Unable to register with parport\n");
Jean Delvare07da0372011-05-24 20:58:49 +0200199 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 /* Fill the rest of the structure */
Jean Delvarecacf2262007-05-01 23:26:29 +0200203 adapter->adapter.owner = THIS_MODULE;
204 adapter->adapter.class = I2C_CLASS_HWMON;
Jean Delvarecacf2262007-05-01 23:26:29 +0200205 strlcpy(adapter->adapter.name, "Parallel port adapter",
206 sizeof(adapter->adapter.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 adapter->algo_data = parport_algo_data;
Jean Delvare3af07bd2007-05-01 23:26:30 +0200208 /* Slow down if we can't sense SCL */
209 if (!adapter_parm[type].getscl.val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 adapter->algo_data.getscl = NULL;
Jean Delvare3af07bd2007-05-01 23:26:30 +0200211 adapter->algo_data.udelay = 50; /* ~10 kbps */
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 adapter->algo_data.data = port;
214 adapter->adapter.algo_data = &adapter->algo_data;
David Brownellda675292007-05-08 00:27:42 -0700215 adapter->adapter.dev.parent = port->physport->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 if (parport_claim_or_block(adapter->pdev) < 0) {
Sudip Mukherjeec5f3d542015-06-18 18:33:46 +0530218 dev_err(&adapter->pdev->dev,
219 "Could not claim parallel port\n");
Jean Delvare07da0372011-05-24 20:58:49 +0200220 goto err_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222
223 /* Reset hardware to a sane state (SCL and SDA high) */
224 parport_setsda(port, 1);
225 parport_setscl(port, 1);
226 /* Other init if needed (power on...) */
Jean Delvare6d376fc2010-03-02 12:23:41 +0100227 if (adapter_parm[type].init.val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 line_set(port, 1, &adapter_parm[type].init);
Jean Delvare6d376fc2010-03-02 12:23:41 +0100229 /* Give powered devices some time to settle */
230 msleep(100);
231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (i2c_bit_add_bus(&adapter->adapter) < 0) {
Sudip Mukherjeec5f3d542015-06-18 18:33:46 +0530234 dev_err(&adapter->pdev->dev, "Unable to register with I2C\n");
Jean Delvare07da0372011-05-24 20:58:49 +0200235 goto err_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
Jean Delvare35859252010-03-02 12:23:44 +0100238 /* Setup SMBus alert if supported */
239 if (adapter_parm[type].smbus_alert) {
240 adapter->alert_data.alert_edge_triggered = 1;
241 adapter->ara = i2c_setup_smbus_alert(&adapter->adapter,
242 &adapter->alert_data);
243 if (adapter->ara)
244 parport_enable_irq(port);
245 else
Sudip Mukherjeec5f3d542015-06-18 18:33:46 +0530246 dev_warn(&adapter->pdev->dev,
247 "Failed to register ARA client\n");
Jean Delvare35859252010-03-02 12:23:44 +0100248 }
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* Add the new adapter to the list */
Jean Delvare56acc7a2011-05-01 18:18:49 +0200251 mutex_lock(&adapter_list_lock);
252 list_add_tail(&adapter->node, &adapter_list);
253 mutex_unlock(&adapter_list_lock);
Jean Delvare07da0372011-05-24 20:58:49 +0200254 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Jean Delvare07da0372011-05-24 20:58:49 +0200256 err_unregister:
Jean Delvare7b964f7332008-11-28 15:24:39 +0100257 parport_release(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 parport_unregister_device(adapter->pdev);
Jean Delvare07da0372011-05-24 20:58:49 +0200259 err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 kfree(adapter);
261}
262
Jean Delvare07da0372011-05-24 20:58:49 +0200263static void i2c_parport_detach(struct parport *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Jean Delvare56acc7a2011-05-01 18:18:49 +0200265 struct i2c_par *adapter, *_n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 /* Walk the list */
Jean Delvare56acc7a2011-05-01 18:18:49 +0200268 mutex_lock(&adapter_list_lock);
269 list_for_each_entry_safe(adapter, _n, &adapter_list, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (adapter->pdev->port == port) {
Jean Delvare35859252010-03-02 12:23:44 +0100271 if (adapter->ara) {
272 parport_disable_irq(port);
273 i2c_unregister_device(adapter->ara);
274 }
Jean Delvare3af07bd2007-05-01 23:26:30 +0200275 i2c_del_adapter(&adapter->adapter);
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /* Un-init if needed (power off...) */
278 if (adapter_parm[type].init.val)
279 line_set(port, 0, &adapter_parm[type].init);
Jean Delvare07da0372011-05-24 20:58:49 +0200280
Jean Delvare7b964f7332008-11-28 15:24:39 +0100281 parport_release(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 parport_unregister_device(adapter->pdev);
Jean Delvare56acc7a2011-05-01 18:18:49 +0200283 list_del(&adapter->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 kfree(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286 }
Jean Delvare56acc7a2011-05-01 18:18:49 +0200287 mutex_unlock(&adapter_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Jean Delvare6c129be2005-10-08 00:17:35 +0200290static struct parport_driver i2c_parport_driver = {
Sudip Mukherjee8891f412015-05-21 11:46:31 +0530291 .name = "i2c-parport",
292 .match_port = i2c_parport_attach,
293 .detach = i2c_parport_detach,
294 .devmodel = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295};
296
297/* ----- Module loading, unloading and information ------------------------ */
298
299static int __init i2c_parport_init(void)
300{
Mark M. Hoffmane97b81d2006-03-23 16:50:25 +0100301 if (type < 0) {
Sudip Mukherjee20226112015-06-18 18:33:47 +0530302 pr_warn("adapter type unspecified\n");
Mark M. Hoffmane97b81d2006-03-23 16:50:25 +0100303 return -ENODEV;
304 }
305
306 if (type >= ARRAY_SIZE(adapter_parm)) {
Sudip Mukherjee20226112015-06-18 18:33:47 +0530307 pr_warn("invalid type (%d)\n", type);
Mark M. Hoffmane97b81d2006-03-23 16:50:25 +0100308 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
Tobias Klauser7e3d7db2006-01-09 23:19:51 +0100310
Jean Delvare6c129be2005-10-08 00:17:35 +0200311 return parport_register_driver(&i2c_parport_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314static void __exit i2c_parport_exit(void)
315{
Jean Delvare6c129be2005-10-08 00:17:35 +0200316 parport_unregister_driver(&i2c_parport_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Jean Delvare7c81c602014-01-29 20:40:08 +0100319MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320MODULE_DESCRIPTION("I2C bus over parallel port");
321MODULE_LICENSE("GPL");
322
Sudip Mukherjee19a4fb22015-05-20 20:56:59 +0530323module_param_array(parport, int, NULL, 0);
324MODULE_PARM_DESC(parport,
325 "List of parallel ports to bind to, by index.\n"
326 " Atmost " __stringify(MAX_DEVICE) " devices are supported.\n"
327 " Default is one device connected to parport0.\n"
328);
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330module_init(i2c_parport_init);
331module_exit(i2c_parport_exit);