blob: a1fac5aa9bae9b47e10fc6b723c66ac2ff2067b9 [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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/* ----- Low-level parallel port access ----------------------------------- */
51
52static void port_write_data(struct parport *p, unsigned char d)
53{
54 parport_write_data(p, d);
55}
56
57static void port_write_control(struct parport *p, unsigned char d)
58{
59 parport_write_control(p, d);
60}
61
62static unsigned char port_read_data(struct parport *p)
63{
64 return parport_read_data(p);
65}
66
67static unsigned char port_read_status(struct parport *p)
68{
69 return parport_read_status(p);
70}
71
72static unsigned char port_read_control(struct parport *p)
73{
74 return parport_read_control(p);
75}
76
Jean Delvare07da0372011-05-24 20:58:49 +020077static void (* const port_write[])(struct parport *, unsigned char) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 port_write_data,
79 NULL,
80 port_write_control,
81};
82
Jean Delvare07da0372011-05-24 20:58:49 +020083static unsigned char (* const port_read[])(struct parport *) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 port_read_data,
85 port_read_status,
86 port_read_control,
87};
88
89/* ----- Unified line operation functions --------------------------------- */
90
91static inline void line_set(struct parport *data, int state,
92 const struct lineop *op)
93{
94 u8 oldval = port_read[op->port](data);
95
96 /* Touch only the bit(s) needed */
97 if ((op->inverted && !state) || (!op->inverted && state))
98 port_write[op->port](data, oldval | op->val);
99 else
100 port_write[op->port](data, oldval & ~op->val);
101}
102
103static inline int line_get(struct parport *data,
104 const struct lineop *op)
105{
106 u8 oldval = port_read[op->port](data);
107
108 return ((op->inverted && (oldval & op->val) != op->val)
109 || (!op->inverted && (oldval & op->val) == op->val));
110}
111
112/* ----- I2C algorithm call-back functions and structures ----------------- */
113
114static void parport_setscl(void *data, int state)
115{
116 line_set((struct parport *) data, state, &adapter_parm[type].setscl);
117}
118
119static void parport_setsda(void *data, int state)
120{
121 line_set((struct parport *) data, state, &adapter_parm[type].setsda);
122}
123
124static int parport_getscl(void *data)
125{
126 return line_get((struct parport *) data, &adapter_parm[type].getscl);
127}
128
129static int parport_getsda(void *data)
130{
131 return line_get((struct parport *) data, &adapter_parm[type].getsda);
132}
133
134/* Encapsulate the functions above in the correct structure.
135 Note that this is only a template, from which the real structures are
136 copied. The attaching code will set getscl to NULL for adapters that
Tobias Klauser614e24b2005-05-19 21:39:06 +0200137 cannot read SCL back, and will also make the data field point to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 the parallel port structure. */
Jean Delvarebfdcad92010-05-21 18:40:57 +0200139static const struct i2c_algo_bit_data parport_algo_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 .setsda = parport_setsda,
141 .setscl = parport_setscl,
142 .getsda = parport_getsda,
143 .getscl = parport_getscl,
Jean Delvare3af07bd2007-05-01 23:26:30 +0200144 .udelay = 10, /* ~50 kbps */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .timeout = HZ,
Jean Delvare07da0372011-05-24 20:58:49 +0200146};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148/* ----- I2c and parallel port call-back functions and structures --------- */
149
Jean Delvare7fe442a2012-10-05 22:23:53 +0200150static void i2c_parport_irq(void *data)
Jean Delvare35859252010-03-02 12:23:44 +0100151{
152 struct i2c_par *adapter = data;
153 struct i2c_client *ara = adapter->ara;
154
155 if (ara) {
156 dev_dbg(&ara->dev, "SMBus alert received\n");
157 i2c_handle_smbus_alert(ara);
158 } else
159 dev_dbg(&adapter->adapter.dev,
160 "SMBus alert received but no ARA client!\n");
161}
162
Jean Delvare07da0372011-05-24 20:58:49 +0200163static void i2c_parport_attach(struct parport *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 struct i2c_par *adapter;
Jean Delvare07da0372011-05-24 20:58:49 +0200166
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200167 adapter = kzalloc(sizeof(struct i2c_par), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (adapter == NULL) {
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200169 printk(KERN_ERR "i2c-parport: Failed to kzalloc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return;
171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 pr_debug("i2c-parport: attaching to %s\n", port->name);
Jean Delvare35859252010-03-02 12:23:44 +0100174 parport_disable_irq(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 adapter->pdev = parport_register_device(port, "i2c-parport",
Jean Delvare35859252010-03-02 12:23:44 +0100176 NULL, NULL, i2c_parport_irq, PARPORT_FLAG_EXCL, adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (!adapter->pdev) {
178 printk(KERN_ERR "i2c-parport: Unable to register with parport\n");
Jean Delvare07da0372011-05-24 20:58:49 +0200179 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
182 /* Fill the rest of the structure */
Jean Delvarecacf2262007-05-01 23:26:29 +0200183 adapter->adapter.owner = THIS_MODULE;
184 adapter->adapter.class = I2C_CLASS_HWMON;
Jean Delvarecacf2262007-05-01 23:26:29 +0200185 strlcpy(adapter->adapter.name, "Parallel port adapter",
186 sizeof(adapter->adapter.name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 adapter->algo_data = parport_algo_data;
Jean Delvare3af07bd2007-05-01 23:26:30 +0200188 /* Slow down if we can't sense SCL */
189 if (!adapter_parm[type].getscl.val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 adapter->algo_data.getscl = NULL;
Jean Delvare3af07bd2007-05-01 23:26:30 +0200191 adapter->algo_data.udelay = 50; /* ~10 kbps */
192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 adapter->algo_data.data = port;
194 adapter->adapter.algo_data = &adapter->algo_data;
David Brownellda675292007-05-08 00:27:42 -0700195 adapter->adapter.dev.parent = port->physport->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 if (parport_claim_or_block(adapter->pdev) < 0) {
198 printk(KERN_ERR "i2c-parport: Could not claim parallel port\n");
Jean Delvare07da0372011-05-24 20:58:49 +0200199 goto err_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 /* Reset hardware to a sane state (SCL and SDA high) */
203 parport_setsda(port, 1);
204 parport_setscl(port, 1);
205 /* Other init if needed (power on...) */
Jean Delvare6d376fc2010-03-02 12:23:41 +0100206 if (adapter_parm[type].init.val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 line_set(port, 1, &adapter_parm[type].init);
Jean Delvare6d376fc2010-03-02 12:23:41 +0100208 /* Give powered devices some time to settle */
209 msleep(100);
210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (i2c_bit_add_bus(&adapter->adapter) < 0) {
213 printk(KERN_ERR "i2c-parport: Unable to register with I2C\n");
Jean Delvare07da0372011-05-24 20:58:49 +0200214 goto err_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
Jean Delvare35859252010-03-02 12:23:44 +0100217 /* Setup SMBus alert if supported */
218 if (adapter_parm[type].smbus_alert) {
219 adapter->alert_data.alert_edge_triggered = 1;
220 adapter->ara = i2c_setup_smbus_alert(&adapter->adapter,
221 &adapter->alert_data);
222 if (adapter->ara)
223 parport_enable_irq(port);
224 else
225 printk(KERN_WARNING "i2c-parport: Failed to register "
226 "ARA client\n");
227 }
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /* Add the new adapter to the list */
Jean Delvare56acc7a2011-05-01 18:18:49 +0200230 mutex_lock(&adapter_list_lock);
231 list_add_tail(&adapter->node, &adapter_list);
232 mutex_unlock(&adapter_list_lock);
Jean Delvare07da0372011-05-24 20:58:49 +0200233 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Jean Delvare07da0372011-05-24 20:58:49 +0200235 err_unregister:
Jean Delvare7b964f7332008-11-28 15:24:39 +0100236 parport_release(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 parport_unregister_device(adapter->pdev);
Jean Delvare07da0372011-05-24 20:58:49 +0200238 err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 kfree(adapter);
240}
241
Jean Delvare07da0372011-05-24 20:58:49 +0200242static void i2c_parport_detach(struct parport *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Jean Delvare56acc7a2011-05-01 18:18:49 +0200244 struct i2c_par *adapter, *_n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 /* Walk the list */
Jean Delvare56acc7a2011-05-01 18:18:49 +0200247 mutex_lock(&adapter_list_lock);
248 list_for_each_entry_safe(adapter, _n, &adapter_list, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (adapter->pdev->port == port) {
Jean Delvare35859252010-03-02 12:23:44 +0100250 if (adapter->ara) {
251 parport_disable_irq(port);
252 i2c_unregister_device(adapter->ara);
253 }
Jean Delvare3af07bd2007-05-01 23:26:30 +0200254 i2c_del_adapter(&adapter->adapter);
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* Un-init if needed (power off...) */
257 if (adapter_parm[type].init.val)
258 line_set(port, 0, &adapter_parm[type].init);
Jean Delvare07da0372011-05-24 20:58:49 +0200259
Jean Delvare7b964f7332008-11-28 15:24:39 +0100260 parport_release(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 parport_unregister_device(adapter->pdev);
Jean Delvare56acc7a2011-05-01 18:18:49 +0200262 list_del(&adapter->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 kfree(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265 }
Jean Delvare56acc7a2011-05-01 18:18:49 +0200266 mutex_unlock(&adapter_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Jean Delvare6c129be2005-10-08 00:17:35 +0200269static struct parport_driver i2c_parport_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 .name = "i2c-parport",
271 .attach = i2c_parport_attach,
272 .detach = i2c_parport_detach,
273};
274
275/* ----- Module loading, unloading and information ------------------------ */
276
277static int __init i2c_parport_init(void)
278{
Mark M. Hoffmane97b81d2006-03-23 16:50:25 +0100279 if (type < 0) {
280 printk(KERN_WARNING "i2c-parport: adapter type unspecified\n");
281 return -ENODEV;
282 }
283
284 if (type >= ARRAY_SIZE(adapter_parm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 printk(KERN_WARNING "i2c-parport: invalid type (%d)\n", type);
Mark M. Hoffmane97b81d2006-03-23 16:50:25 +0100286 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
Tobias Klauser7e3d7db2006-01-09 23:19:51 +0100288
Jean Delvare6c129be2005-10-08 00:17:35 +0200289 return parport_register_driver(&i2c_parport_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292static void __exit i2c_parport_exit(void)
293{
Jean Delvare6c129be2005-10-08 00:17:35 +0200294 parport_unregister_driver(&i2c_parport_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Jean Delvare7c81c602014-01-29 20:40:08 +0100297MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298MODULE_DESCRIPTION("I2C bus over parallel port");
299MODULE_LICENSE("GPL");
300
301module_init(i2c_parport_init);
302module_exit(i2c_parport_exit);