GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / i2c / busses / i2c-parport-light.c
blobfc5fbd1012c98af5a8b458a1b058ea5c2374e4e1
1 /* ------------------------------------------------------------------------ *
2 * i2c-parport-light.c I2C bus over parallel port *
3 * ------------------------------------------------------------------------ *
4 Copyright (C) 2003-2010 Jean Delvare <khali@linux-fr.org>
6 Based on older i2c-velleman.c driver
7 Copyright (C) 1995-2000 Simon G. Vogl
8 With some changes from:
9 Frodo Looijaard <frodol@dds.nl>
10 Kyösti Mälkki <kmalkki@cc.hut.fi>
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.
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.
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 * ------------------------------------------------------------------------ */
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/init.h>
30 #include <linux/delay.h>
31 #include <linux/platform_device.h>
32 #include <linux/ioport.h>
33 #include <linux/i2c.h>
34 #include <linux/i2c-algo-bit.h>
35 #include <linux/i2c-smbus.h>
36 #include <linux/io.h>
37 #include "i2c-parport.h"
39 #define DEFAULT_BASE 0x378
40 #define DRVNAME "i2c-parport-light"
42 static struct platform_device *pdev;
44 static u16 base;
45 module_param(base, ushort, 0);
46 MODULE_PARM_DESC(base, "Base I/O address");
48 static int irq;
49 module_param(irq, int, 0);
50 MODULE_PARM_DESC(irq, "IRQ (optional)");
52 /* ----- Low-level parallel port access ----------------------------------- */
54 static inline void port_write(unsigned char p, unsigned char d)
56 outb(d, base+p);
59 static inline unsigned char port_read(unsigned char p)
61 return inb(base+p);
64 /* ----- Unified line operation functions --------------------------------- */
66 static inline void line_set(int state, const struct lineop *op)
68 u8 oldval = port_read(op->port);
70 /* Touch only the bit(s) needed */
71 if ((op->inverted && !state) || (!op->inverted && state))
72 port_write(op->port, oldval | op->val);
73 else
74 port_write(op->port, oldval & ~op->val);
77 static inline int line_get(const struct lineop *op)
79 u8 oldval = port_read(op->port);
81 return ((op->inverted && (oldval & op->val) != op->val)
82 || (!op->inverted && (oldval & op->val) == op->val));
85 /* ----- I2C algorithm call-back functions and structures ----------------- */
87 static void parport_setscl(void *data, int state)
89 line_set(state, &adapter_parm[type].setscl);
92 static void parport_setsda(void *data, int state)
94 line_set(state, &adapter_parm[type].setsda);
97 static int parport_getscl(void *data)
99 return line_get(&adapter_parm[type].getscl);
102 static int parport_getsda(void *data)
104 return line_get(&adapter_parm[type].getsda);
107 /* Encapsulate the functions above in the correct structure
108 Note that getscl will be set to NULL by the attaching code for adapters
109 that cannot read SCL back */
110 static struct i2c_algo_bit_data parport_algo_data = {
111 .setsda = parport_setsda,
112 .setscl = parport_setscl,
113 .getsda = parport_getsda,
114 .getscl = parport_getscl,
115 .udelay = 50,
116 .timeout = HZ,
119 /* ----- Driver registration ---------------------------------------------- */
121 static struct i2c_adapter parport_adapter = {
122 .owner = THIS_MODULE,
123 .class = I2C_CLASS_HWMON,
124 .algo_data = &parport_algo_data,
125 .name = "Parallel port adapter (light)",
128 /* SMBus alert support */
129 static struct i2c_smbus_alert_setup alert_data = {
130 .alert_edge_triggered = 1,
132 static struct i2c_client *ara;
133 static struct lineop parport_ctrl_irq = {
134 .val = (1 << 4),
135 .port = CTRL,
138 static int __devinit i2c_parport_probe(struct platform_device *pdev)
140 int err;
142 /* Reset hardware to a sane state (SCL and SDA high) */
143 parport_setsda(NULL, 1);
144 parport_setscl(NULL, 1);
145 /* Other init if needed (power on...) */
146 if (adapter_parm[type].init.val) {
147 line_set(1, &adapter_parm[type].init);
148 /* Give powered devices some time to settle */
149 msleep(100);
152 parport_adapter.dev.parent = &pdev->dev;
153 err = i2c_bit_add_bus(&parport_adapter);
154 if (err) {
155 dev_err(&pdev->dev, "Unable to register with I2C\n");
156 return err;
159 /* Setup SMBus alert if supported */
160 if (adapter_parm[type].smbus_alert && irq) {
161 alert_data.irq = irq;
162 ara = i2c_setup_smbus_alert(&parport_adapter, &alert_data);
163 if (ara)
164 line_set(1, &parport_ctrl_irq);
165 else
166 dev_warn(&pdev->dev, "Failed to register ARA client\n");
169 return 0;
172 static int __devexit i2c_parport_remove(struct platform_device *pdev)
174 if (ara) {
175 line_set(0, &parport_ctrl_irq);
176 i2c_unregister_device(ara);
177 ara = NULL;
179 i2c_del_adapter(&parport_adapter);
181 /* Un-init if needed (power off...) */
182 if (adapter_parm[type].init.val)
183 line_set(0, &adapter_parm[type].init);
185 return 0;
188 static struct platform_driver i2c_parport_driver = {
189 .driver = {
190 .owner = THIS_MODULE,
191 .name = DRVNAME,
193 .probe = i2c_parport_probe,
194 .remove = __devexit_p(i2c_parport_remove),
197 static int __init i2c_parport_device_add(u16 address)
199 int err;
201 pdev = platform_device_alloc(DRVNAME, -1);
202 if (!pdev) {
203 err = -ENOMEM;
204 printk(KERN_ERR DRVNAME ": Device allocation failed\n");
205 goto exit;
208 err = platform_device_add(pdev);
209 if (err) {
210 printk(KERN_ERR DRVNAME ": Device addition failed (%d)\n",
211 err);
212 goto exit_device_put;
215 return 0;
217 exit_device_put:
218 platform_device_put(pdev);
219 exit:
220 return err;
223 static int __init i2c_parport_init(void)
225 int err;
227 if (type < 0) {
228 printk(KERN_ERR DRVNAME ": adapter type unspecified\n");
229 return -ENODEV;
232 if (type >= ARRAY_SIZE(adapter_parm)) {
233 printk(KERN_ERR DRVNAME ": invalid type (%d)\n", type);
234 return -ENODEV;
237 if (base == 0) {
238 pr_info(DRVNAME ": using default base 0x%x\n", DEFAULT_BASE);
239 base = DEFAULT_BASE;
242 if (!request_region(base, 3, DRVNAME))
243 return -EBUSY;
245 if (irq != 0)
246 pr_info(DRVNAME ": using irq %d\n", irq);
248 if (!adapter_parm[type].getscl.val)
249 parport_algo_data.getscl = NULL;
251 /* Sets global pdev as a side effect */
252 err = i2c_parport_device_add(base);
253 if (err)
254 goto exit_release;
256 err = platform_driver_register(&i2c_parport_driver);
257 if (err)
258 goto exit_device;
260 return 0;
262 exit_device:
263 platform_device_unregister(pdev);
264 exit_release:
265 release_region(base, 3);
266 return err;
269 static void __exit i2c_parport_exit(void)
271 platform_driver_unregister(&i2c_parport_driver);
272 platform_device_unregister(pdev);
273 release_region(base, 3);
276 MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
277 MODULE_DESCRIPTION("I2C bus over parallel port (light)");
278 MODULE_LICENSE("GPL");
280 module_init(i2c_parport_init);
281 module_exit(i2c_parport_exit);