ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / i2c / busses / scx200_i2c.c
1 /* linux/drivers/i2c/scx200_i2c.c 
2
3    Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com>
4
5    National Semiconductor SCx200 I2C bus on GPIO pins
6
7    Based on i2c-velleman.c Copyright (C) 1995-96, 2000 Simon G. Vogl
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.                 
22 */
23
24 #include <linux/config.h>
25 #include <linux/config.h>
26 #include <linux/module.h>
27 #include <linux/errno.h>
28 #include <linux/kernel.h>
29 #include <linux/init.h>
30 #include <linux/i2c.h>
31 #include <linux/i2c-algo-bit.h>
32 #include <asm/io.h>
33
34 #include <linux/scx200_gpio.h>
35
36 #define NAME "scx200_i2c"
37
38 MODULE_AUTHOR("Christer Weinigel <wingel@nano-system.com>");
39 MODULE_DESCRIPTION("NatSemi SCx200 I2C Driver");
40 MODULE_LICENSE("GPL");
41
42 MODULE_PARM(scl, "i");
43 MODULE_PARM_DESC(scl, "GPIO line for SCL");
44 MODULE_PARM(sda, "i");
45 MODULE_PARM_DESC(sda, "GPIO line for SDA");
46
47 static int scl = CONFIG_SCx200_I2C_SCL;
48 static int sda = CONFIG_SCx200_I2C_SDA;
49
50 static void scx200_i2c_setscl(void *data, int state)
51 {
52         scx200_gpio_set(scl, state);
53 }
54
55 static void scx200_i2c_setsda(void *data, int state)
56 {
57         scx200_gpio_set(sda, state);
58
59
60 static int scx200_i2c_getscl(void *data)
61 {
62         return scx200_gpio_get(scl);
63 }
64
65 static int scx200_i2c_getsda(void *data)
66 {
67         return scx200_gpio_get(sda);
68 }
69
70 /* ------------------------------------------------------------------------
71  * Encapsulate the above functions in the correct operations structure.
72  * This is only done when more than one hardware adapter is supported.
73  */
74
75 static struct i2c_algo_bit_data scx200_i2c_data = {
76         NULL,
77         scx200_i2c_setsda,
78         scx200_i2c_setscl,
79         scx200_i2c_getsda,
80         scx200_i2c_getscl,
81         10, 10, 100,            /* waits, timeout */
82 };
83
84 static struct i2c_adapter scx200_i2c_ops = {
85         .owner             = THIS_MODULE,
86         .algo_data         = &scx200_i2c_data,
87         .name   = "NatSemi SCx200 I2C",
88 };
89
90 int scx200_i2c_init(void)
91 {
92         pr_debug(NAME ": NatSemi SCx200 I2C Driver\n");
93
94         if (!scx200_gpio_present()) {
95                 printk(KERN_ERR NAME ": no SCx200 gpio pins available\n");
96                 return -ENODEV;
97         }
98
99         pr_debug(NAME ": SCL=GPIO%02u, SDA=GPIO%02u\n", scl, sda);
100
101         if (scl == -1 || sda == -1 || scl == sda) {
102                 printk(KERN_ERR NAME ": scl and sda must be specified\n");
103                 return -EINVAL;
104         }
105
106         /* Configure GPIOs as open collector outputs */
107         scx200_gpio_configure(scl, ~2, 5);
108         scx200_gpio_configure(sda, ~2, 5);
109
110         if (i2c_bit_add_bus(&scx200_i2c_ops) < 0) {
111                 printk(KERN_ERR NAME ": adapter %s registration failed\n", 
112                        scx200_i2c_ops.name);
113                 return -ENODEV;
114         }
115         
116         return 0;
117 }
118
119 void scx200_i2c_cleanup(void)
120 {
121         i2c_bit_del_bus(&scx200_i2c_ops);
122 }
123
124 module_init(scx200_i2c_init);
125 module_exit(scx200_i2c_cleanup);
126
127 /*
128     Local variables:
129         compile-command: "make -k -C ../.. SUBDIRS=drivers/i2c modules"
130         c-basic-offset: 8
131     End:
132 */