blob: b4664037eded8ca3d3000cee911096bd089e7991 [file] [log] [blame]
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02001/*
2 * Bitbanging I2C bus driver using the GPIO API
3 *
4 * Copyright (C) 2007 Atmel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include <linux/i2c.h>
11#include <linux/i2c-algo-bit.h>
12#include <linux/i2c-gpio.h>
13#include <linux/init.h>
14#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020016#include <linux/platform_device.h>
Linus Walleijb2e63552017-09-10 01:30:46 +020017#include <linux/gpio/consumer.h>
Sachin Kamat4edd65e2013-10-16 15:26:33 +053018#include <linux/of.h>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020019
Jean-Christophe PLAGNIOL-VILLARD8ffaa0f2012-02-05 18:22:34 +080020struct i2c_gpio_private_data {
Linus Walleijb2e63552017-09-10 01:30:46 +020021 struct gpio_desc *sda;
22 struct gpio_desc *scl;
Jean-Christophe PLAGNIOL-VILLARD8ffaa0f2012-02-05 18:22:34 +080023 struct i2c_adapter adap;
24 struct i2c_algo_bit_data bit_data;
25 struct i2c_gpio_platform_data pdata;
26};
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020027
28/* Toggle SDA by changing the direction of the pin */
29static void i2c_gpio_setsda_dir(void *data, int state)
30{
Linus Walleijb2e63552017-09-10 01:30:46 +020031 struct i2c_gpio_private_data *priv = data;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020032
Linus Walleijb2e63552017-09-10 01:30:46 +020033 /*
34 * This is a way of saying "do not drive
35 * me actively high" which means emulating open drain.
36 * The right way to do this is for gpiolib to
37 * handle this, by the function below.
38 */
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020039 if (state)
Linus Walleijb2e63552017-09-10 01:30:46 +020040 gpiod_direction_input(priv->sda);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020041 else
Linus Walleijb2e63552017-09-10 01:30:46 +020042 gpiod_direction_output(priv->sda, 0);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020043}
44
45/*
46 * Toggle SDA by changing the output value of the pin. This is only
47 * valid for pins configured as open drain (i.e. setting the value
48 * high effectively turns off the output driver.)
49 */
50static void i2c_gpio_setsda_val(void *data, int state)
51{
Linus Walleijb2e63552017-09-10 01:30:46 +020052 struct i2c_gpio_private_data *priv = data;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020053
Linus Walleijb2e63552017-09-10 01:30:46 +020054 gpiod_set_value(priv->sda, state);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020055}
56
57/* Toggle SCL by changing the direction of the pin. */
58static void i2c_gpio_setscl_dir(void *data, int state)
59{
Linus Walleijb2e63552017-09-10 01:30:46 +020060 struct i2c_gpio_private_data *priv = data;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020061
62 if (state)
Linus Walleijb2e63552017-09-10 01:30:46 +020063 gpiod_direction_input(priv->scl);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020064 else
Linus Walleijb2e63552017-09-10 01:30:46 +020065 gpiod_direction_output(priv->scl, 0);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020066}
67
68/*
69 * Toggle SCL by changing the output value of the pin. This is used
70 * for pins that are configured as open drain and for output-only
71 * pins. The latter case will break the i2c protocol, but it will
72 * often work in practice.
73 */
74static void i2c_gpio_setscl_val(void *data, int state)
75{
Linus Walleijb2e63552017-09-10 01:30:46 +020076 struct i2c_gpio_private_data *priv = data;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020077
Linus Walleijb2e63552017-09-10 01:30:46 +020078 gpiod_set_value(priv->scl, state);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020079}
80
Atsushi Nemoto4d6ceed2007-07-12 14:12:30 +020081static int i2c_gpio_getsda(void *data)
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020082{
Linus Walleijb2e63552017-09-10 01:30:46 +020083 struct i2c_gpio_private_data *priv = data;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020084
Linus Walleijb2e63552017-09-10 01:30:46 +020085 return gpiod_get_value(priv->sda);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020086}
87
Atsushi Nemoto4d6ceed2007-07-12 14:12:30 +020088static int i2c_gpio_getscl(void *data)
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020089{
Linus Walleijb2e63552017-09-10 01:30:46 +020090 struct i2c_gpio_private_data *priv = data;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +020091
Linus Walleijb2e63552017-09-10 01:30:46 +020092 return gpiod_get_value(priv->scl);
Jean Delvare1b295c82013-02-28 01:01:40 +000093}
94
95static void of_i2c_gpio_get_props(struct device_node *np,
96 struct i2c_gpio_platform_data *pdata)
97{
98 u32 reg;
99
Jean-Christophe PLAGNIOL-VILLARD8ffaa0f2012-02-05 18:22:34 +0800100 of_property_read_u32(np, "i2c-gpio,delay-us", &pdata->udelay);
101
102 if (!of_property_read_u32(np, "i2c-gpio,timeout-ms", &reg))
103 pdata->timeout = msecs_to_jiffies(reg);
104
105 pdata->sda_is_open_drain =
106 of_property_read_bool(np, "i2c-gpio,sda-open-drain");
107 pdata->scl_is_open_drain =
108 of_property_read_bool(np, "i2c-gpio,scl-open-drain");
109 pdata->scl_is_output_only =
110 of_property_read_bool(np, "i2c-gpio,scl-output-only");
Jean-Christophe PLAGNIOL-VILLARD8ffaa0f2012-02-05 18:22:34 +0800111}
112
Bill Pemberton0b255e92012-11-27 15:59:38 -0500113static int i2c_gpio_probe(struct platform_device *pdev)
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200114{
Jean-Christophe PLAGNIOL-VILLARD8ffaa0f2012-02-05 18:22:34 +0800115 struct i2c_gpio_private_data *priv;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200116 struct i2c_gpio_platform_data *pdata;
117 struct i2c_algo_bit_data *bit_data;
118 struct i2c_adapter *adap;
119 int ret;
120
Jean Delvare1b295c82013-02-28 01:01:40 +0000121 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
Jingoo Hana0682a32013-12-17 15:48:19 +0900122 if (!priv)
123 return -ENOMEM;
Linus Walleijb2e63552017-09-10 01:30:46 +0200124
125 /* First get the GPIO pins; if it fails, we'll defer the probe. */
126 priv->sda = devm_gpiod_get_index(&pdev->dev, NULL, 0, GPIOD_OUT_HIGH);
127 if (IS_ERR(priv->sda)) {
128 ret = PTR_ERR(priv->sda);
129 /* FIXME: hack in the old code, is this really necessary? */
130 if (ret == -EINVAL)
131 ret = -EPROBE_DEFER;
132 return ret;
133 }
134 priv->scl = devm_gpiod_get_index(&pdev->dev, NULL, 1, GPIOD_OUT_LOW);
135 if (IS_ERR(priv->scl)) {
136 ret = PTR_ERR(priv->scl);
137 /* FIXME: hack in the old code, is this really necessary? */
138 if (ret == -EINVAL)
139 ret = -EPROBE_DEFER;
140 return ret;
141 }
142
Jean Delvare1b295c82013-02-28 01:01:40 +0000143 adap = &priv->adap;
144 bit_data = &priv->bit_data;
145 pdata = &priv->pdata;
146
147 if (pdev->dev.of_node) {
Jean Delvare1b295c82013-02-28 01:01:40 +0000148 of_i2c_gpio_get_props(pdev->dev.of_node, pdata);
149 } else {
Linus Walleijb2e63552017-09-10 01:30:46 +0200150 /*
151 * If all platform data settings are zero it is OK
152 * to not provide any platform data from the board.
153 */
154 if (dev_get_platdata(&pdev->dev))
155 memcpy(pdata, dev_get_platdata(&pdev->dev),
156 sizeof(*pdata));
Jean Delvare1b295c82013-02-28 01:01:40 +0000157 }
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200158
Linus Walleijb2e63552017-09-10 01:30:46 +0200159 /*
160 * FIXME: this is a hack emulating the open drain emulation
161 * that gpiolib can already do for us. Make all clients properly
162 * flag their lines as open drain and get rid of this property
163 * and the special callback.
164 */
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200165 if (pdata->sda_is_open_drain) {
Linus Walleijb2e63552017-09-10 01:30:46 +0200166 gpiod_direction_output(priv->sda, 1);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200167 bit_data->setsda = i2c_gpio_setsda_val;
168 } else {
Linus Walleijb2e63552017-09-10 01:30:46 +0200169 gpiod_direction_input(priv->sda);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200170 bit_data->setsda = i2c_gpio_setsda_dir;
171 }
172
173 if (pdata->scl_is_open_drain || pdata->scl_is_output_only) {
Linus Walleijb2e63552017-09-10 01:30:46 +0200174 gpiod_direction_output(priv->scl, 1);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200175 bit_data->setscl = i2c_gpio_setscl_val;
176 } else {
Linus Walleijb2e63552017-09-10 01:30:46 +0200177 gpiod_direction_input(priv->scl);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200178 bit_data->setscl = i2c_gpio_setscl_dir;
179 }
180
181 if (!pdata->scl_is_output_only)
182 bit_data->getscl = i2c_gpio_getscl;
183 bit_data->getsda = i2c_gpio_getsda;
184
185 if (pdata->udelay)
186 bit_data->udelay = pdata->udelay;
187 else if (pdata->scl_is_output_only)
188 bit_data->udelay = 50; /* 10 kHz */
189 else
190 bit_data->udelay = 5; /* 100 kHz */
191
192 if (pdata->timeout)
193 bit_data->timeout = pdata->timeout;
194 else
195 bit_data->timeout = HZ / 10; /* 100 ms */
196
Linus Walleijb2e63552017-09-10 01:30:46 +0200197 bit_data->data = priv;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200198
199 adap->owner = THIS_MODULE;
Bo Shen58a73712012-10-15 15:51:17 +0800200 if (pdev->dev.of_node)
201 strlcpy(adap->name, dev_name(&pdev->dev), sizeof(adap->name));
202 else
203 snprintf(adap->name, sizeof(adap->name), "i2c-gpio%d", pdev->id);
204
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200205 adap->algo_data = bit_data;
Jean Delvare3401b2f2008-07-14 22:38:29 +0200206 adap->class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200207 adap->dev.parent = &pdev->dev;
Jean-Christophe PLAGNIOL-VILLARD8ffaa0f2012-02-05 18:22:34 +0800208 adap->dev.of_node = pdev->dev.of_node;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200209
Karol Lewandowski44454ba2012-03-27 11:10:28 +0200210 adap->nr = pdev->id;
Atsushi Nemoto7e69c3a2007-07-12 14:12:30 +0200211 ret = i2c_bit_add_numbered_bus(adap);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200212 if (ret)
Jingoo Hana0682a32013-12-17 15:48:19 +0900213 return ret;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200214
Jean-Christophe PLAGNIOL-VILLARD8ffaa0f2012-02-05 18:22:34 +0800215 platform_set_drvdata(pdev, priv);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200216
Linus Walleijb2e63552017-09-10 01:30:46 +0200217 /*
218 * FIXME: using global GPIO numbers is not helpful. If/when we
219 * get accessors to get the actual name of the GPIO line,
220 * from the descriptor, then provide that instead.
221 */
222 dev_info(&pdev->dev, "using lines %u (SDA) and %u (SCL%s)\n",
223 desc_to_gpio(priv->sda), desc_to_gpio(priv->scl),
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200224 pdata->scl_is_output_only
225 ? ", no clock stretching" : "");
226
227 return 0;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200228}
229
Bill Pemberton0b255e92012-11-27 15:59:38 -0500230static int i2c_gpio_remove(struct platform_device *pdev)
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200231{
Jean-Christophe PLAGNIOL-VILLARD8ffaa0f2012-02-05 18:22:34 +0800232 struct i2c_gpio_private_data *priv;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200233 struct i2c_adapter *adap;
234
Jean-Christophe PLAGNIOL-VILLARD8ffaa0f2012-02-05 18:22:34 +0800235 priv = platform_get_drvdata(pdev);
236 adap = &priv->adap;
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200237
238 i2c_del_adapter(adap);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200239
240 return 0;
241}
242
Jean-Christophe PLAGNIOL-VILLARD8ffaa0f2012-02-05 18:22:34 +0800243#if defined(CONFIG_OF)
244static const struct of_device_id i2c_gpio_dt_ids[] = {
245 { .compatible = "i2c-gpio", },
246 { /* sentinel */ }
247};
248
249MODULE_DEVICE_TABLE(of, i2c_gpio_dt_ids);
250#endif
251
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200252static struct platform_driver i2c_gpio_driver = {
253 .driver = {
254 .name = "i2c-gpio",
Jean-Christophe PLAGNIOL-VILLARD8ffaa0f2012-02-05 18:22:34 +0800255 .of_match_table = of_match_ptr(i2c_gpio_dt_ids),
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200256 },
Ben Dooks1efe7c52008-07-28 12:04:09 +0100257 .probe = i2c_gpio_probe,
Bill Pemberton0b255e92012-11-27 15:59:38 -0500258 .remove = i2c_gpio_remove,
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200259};
260
261static int __init i2c_gpio_init(void)
262{
263 int ret;
264
Ben Dooks1efe7c52008-07-28 12:04:09 +0100265 ret = platform_driver_register(&i2c_gpio_driver);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200266 if (ret)
267 printk(KERN_ERR "i2c-gpio: probe failed: %d\n", ret);
268
269 return ret;
270}
Marek Szyprowskib8680782010-05-21 18:40:58 +0200271subsys_initcall(i2c_gpio_init);
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200272
273static void __exit i2c_gpio_exit(void)
274{
275 platform_driver_unregister(&i2c_gpio_driver);
276}
277module_exit(i2c_gpio_exit);
278
Jean Delvaree05503e2011-05-18 16:49:24 +0200279MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200280MODULE_DESCRIPTION("Platform-independent bitbanging I2C driver");
281MODULE_LICENSE("GPL");
Kay Sieversadd8eda2008-04-22 22:16:49 +0200282MODULE_ALIAS("platform:i2c-gpio");