This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / drivers / i2c / busses / i2c-ixp42x.c
1 /*
2  * drivers/i2c/i2c-adap-ixp42x.c
3  *
4  * Intel's IXP42x XScale NPU chipsets (IXP420, 421, 422, 425) do not have
5  * an on board I2C controller but provide 16 GPIO pins that are often
6  * used to create an I2C bus. This driver provides an i2c_adapter 
7  * interface that plugs in under algo_bit and drives the GPIO pins
8  * as instructed by the alogorithm driver.
9  *
10  * Author: Deepak Saxena <dsaxena@plexity.net>
11  *
12  * Copyright (c) 2003-2004 MontaVista Software Inc.
13  *
14  * This file is licensed under the terms of the GNU General Public 
15  * License version 2. This program is licensed "as is" without any 
16  * warranty of any kind, whether express or implied.
17  *
18  * NOTE: Since different platforms will use different GPIO pins for
19  *       I2C, this driver uses an IXP42x-specific platform_data
20  *       pointer to pass the GPIO numbers to the driver. This 
21  *       allows us to support all the different IXP42x platforms
22  *       w/o having to put #ifdefs in this driver.
23  *
24  *       See arch/arm/mach-ixp42x/ixdp425.c for an example of building a 
25  *       device list and filling in the ixp42x_i2c_pins data structure 
26  *       that is passed as the platform_data to this driver.
27  */
28
29 #include <linux/config.h>
30 #include <linux/kernel.h>
31 #include <linux/init.h>
32 #include <linux/device.h>
33 #include <linux/module.h>
34 #include <linux/i2c.h>
35
36 #include <asm/hardware.h>       /* Pick up IXP42x-specific bits */
37
38 static inline int ixp42x_scl_pin(void *data)
39 {
40         return ((struct ixp42x_i2c_pins*)data)->scl_pin;
41 }
42
43 static inline int ixp42x_sda_pin(void *data)
44 {
45         return ((struct ixp42x_i2c_pins*)data)->sda_pin;
46 }
47
48 static void ixp42x_bit_setscl(void *data, int val)
49 {
50         gpio_line_set(ixp42x_scl_pin(data), 0);
51         gpio_line_config(ixp42x_scl_pin(data),
52                 val ? IXP425_GPIO_IN : IXP425_GPIO_OUT );
53 }
54
55 static void ixp42x_bit_setsda(void *data, int val)
56 {
57         gpio_line_set(ixp42x_sda_pin(data), 0);
58         gpio_line_config(ixp42x_sda_pin(data),
59                 val ? IXP425_GPIO_IN : IXP425_GPIO_OUT );
60 }
61
62 static int ixp42x_bit_getscl(void *data)
63 {
64         int scl;
65
66         gpio_line_config(ixp42x_scl_pin(data), IXP425_GPIO_IN );
67         gpio_line_get(ixp42x_scl_pin(data), &scl);
68
69         return scl;
70 }       
71
72 static int ixp42x_bit_getsda(void *data)
73 {
74         int sda;
75
76         gpio_line_config(ixp42x_sda_pin(data), IXP425_GPIO_IN );
77         gpio_line_get(ixp42x_sda_pin(data), &sda);
78
79         return sda;
80 }       
81
82 struct ixp42x_i2c_data {
83         struct ixp42x_i2c_pins *gpio_pins;
84         struct i2c_adapter adapter;
85         struct i2c_algo_bit_data algo_data;
86 };
87
88 static int ixp42x_i2c_remove(struct device *dev)
89 {
90         struct platform_device *plat_dev = to_platform_device(dev);
91         struct ixp42x_i2c_data *drv_data = dev_get_drvdata(&plat_dev->dev);
92
93         dev_set_drvdata(&plat_dev->dev, NULL);
94
95         i2c_bit_del_bus(&drv_data->adapter);
96
97         kfree(drv_data);
98
99         return 0;
100 }
101
102 static int ixp42x_i2c_probe(struct device *dev)
103 {
104         int err;
105         struct platform_device *plat_dev = to_platform_device(dev);
106         struct ixp42x_i2c_pins *gpio = plat_dev->dev.platform_data;
107         struct ixp42x_i2c_data *drv_data = 
108                 kmalloc(sizeof(struct ixp42x_i2c_data), GFP_KERNEL);
109
110         if(!drv_data)
111                 return -ENOMEM;
112
113         memzero(drv_data, sizeof(struct ixp42x_i2c_data));
114         drv_data->gpio_pins = gpio;
115
116         /*
117          * We could make a lot of these structures static, but
118          * certain platforms may have multiple GPIO-based I2C
119          * buses for various device domains, so we need per-device
120          * algo_data->data. 
121          */
122         drv_data->algo_data.data = gpio;
123         drv_data->algo_data.setsda = ixp42x_bit_setsda;
124         drv_data->algo_data.setscl = ixp42x_bit_setscl;
125         drv_data->algo_data.getsda = ixp42x_bit_getsda;
126         drv_data->algo_data.getscl = ixp42x_bit_getscl;
127         drv_data->algo_data.udelay = 10;
128         drv_data->algo_data.mdelay = 10;
129         drv_data->algo_data.timeout = 100;
130
131         drv_data->adapter.id = I2C_HW_B_IXP425,
132         drv_data->adapter.algo_data = &drv_data->algo_data,
133
134         drv_data->adapter.dev.parent = &plat_dev->dev;
135
136         gpio_line_config(gpio->scl_pin, IXP425_GPIO_IN);
137         gpio_line_config(gpio->sda_pin, IXP425_GPIO_IN);
138         gpio_line_set(gpio->scl_pin, 0);
139         gpio_line_set(gpio->sda_pin, 0);
140
141         if ((err = i2c_bit_add_bus(&drv_data->adapter) != 0)) {
142                 printk(KERN_ERR "ERROR: Could not install %s\n", dev->bus_id);
143
144                 kfree(drv_data);
145                 return err;
146         }
147
148         dev_set_drvdata(&plat_dev->dev, drv_data);
149
150         return 0;
151 }
152
153 static struct device_driver ixp42x_i2c_driver = {
154         .name           = "IXP42X-I2C",
155         .bus            = &platform_bus_type,
156         .probe          = ixp42x_i2c_probe,
157         .remove         = ixp42x_i2c_remove,
158 };
159
160 static int __init ixp42x_i2c_init(void)
161 {
162         return driver_register(&ixp42x_i2c_driver);
163 }
164
165 static void __exit ixp42x_i2c_exit(void)
166 {
167         driver_unregister(&ixp42x_i2c_driver);
168 }
169
170 module_init(ixp42x_i2c_init);
171 module_exit(ixp42x_i2c_exit);
172
173 MODULE_DESCRIPTION("GPIO-based I2C driver for IXP42x systems");
174 MODULE_LICENSE("GPL");
175 MODULE_AUTHOR("Deepak Saxena <dsaxena@plexity.net>");
176