LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Thomas Chou <thomas@wytron.com.tw>
To: Haavard Skinnemoen <hskinnemoen@gmail.com>,
Grant Likely <grant.likely@secretlab.ca>,
Ben Dooks <ben-linux@fluff.org>
Cc: linux-kernel@vger.kernel.org, nios2-dev@sopc.et.ntust.edu.tw,
devicetree-discuss@lists.ozlabs.org, linux-i2c@vger.kernel.org,
Jean Delvare <khali@linux-fr.org>,
Albert Herranz <albert_herranz@yahoo.es>,
Thomas Chou <thomas@wytron.com.tw>
Subject: [PATCH] i2c-gpio: add devicetree support
Date: Sun, 30 Jan 2011 23:56:53 +0800 [thread overview]
Message-ID: <1296403013-6058-1-git-send-email-thomas@wytron.com.tw> (raw)
From: Albert Herranz <albert_herranz@yahoo.es>
This patch is based on an earlier patch from Albert Herranz,
http://git.infradead.org/users/herraa1/gc-linux-2.6.git/commit/
9854eb78607c641ab5ae85bcbe3c9d14ac113733
The dts binding is modified as Grant suggested. The of probing
is merged inline instead of a separate file. It uses the newer
of gpio probe.
Signed-off-by: Albert Herranz <albert_herranz@yahoo.es>
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
---
Documentation/devicetree/bindings/gpio/i2c.txt | 39 ++++++++++++++
drivers/i2c/busses/i2c-gpio.c | 67 ++++++++++++++++++++++-
2 files changed, 103 insertions(+), 3 deletions(-)
create mode 100644 Documentation/devicetree/bindings/gpio/i2c.txt
diff --git a/Documentation/devicetree/bindings/gpio/i2c.txt b/Documentation/devicetree/bindings/gpio/i2c.txt
new file mode 100644
index 0000000..402569e
--- /dev/null
+++ b/Documentation/devicetree/bindings/gpio/i2c.txt
@@ -0,0 +1,39 @@
+GPIO-based I2C
+
+Required properties:
+- compatible : should be "i2c-gpio".
+- gpios : should specify GPIOs used for SDA and SCL lines, in that order.
+Optional properties:
+- sda-is-open-drain : present if SDA gpio is open-drain.
+- scl-is-open-drain : present if SCL gpio is open-drain.
+- scl-is-output-only : present if SCL is an output gpio only.
+- udelay : signal toggle delay. SCL frequency is (500 / udelay) kHz
+- timeout : clock stretching timeout in milliseconds.
+
+Example:
+
+gpio0: starlet-gpio@0d8000c0 {
+ compatible = "nintendo,starlet-gpio";
+ reg = <0d8000c0 4>;
+ gpio-controller;
+ #gpio-cells = <2>;
+};
+
+i2c-video {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ compatible = "i2c-gpio";
+
+ gpios = <&gpio0 10 0 /* SDA line */
+ &gpio0 11 0 /* SCL line */
+ >;
+ sda-is-open-drain;
+ scl-is-open-drain;
+ scl-is-output-only;
+ udelay = <2>;
+
+ audio-video-encoder {
+ compatible = "nintendo,wii-ave-rvl";
+ reg = <70>;
+ };
+};
diff --git a/drivers/i2c/busses/i2c-gpio.c b/drivers/i2c/busses/i2c-gpio.c
index d9aa9a6..9648201 100644
--- a/drivers/i2c/busses/i2c-gpio.c
+++ b/drivers/i2c/busses/i2c-gpio.c
@@ -14,6 +14,9 @@
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/platform_device.h>
+#include <linux/of_platform.h>
+#include <linux/of_gpio.h>
+#include <linux/of_i2c.h>
#include <asm/gpio.h>
@@ -83,11 +86,52 @@ static int __devinit i2c_gpio_probe(struct platform_device *pdev)
struct i2c_gpio_platform_data *pdata;
struct i2c_algo_bit_data *bit_data;
struct i2c_adapter *adap;
+ struct device_node *np = pdev->dev.of_node;
int ret;
pdata = pdev->dev.platform_data;
- if (!pdata)
- return -ENXIO;
+ if (!pdata) {
+ if (np && of_gpio_count(np) >= 2) {
+ const __be32 *prop;
+ int sda_pin, scl_pin;
+
+ sda_pin = of_get_gpio_flags(np, 0, NULL);
+ scl_pin = of_get_gpio_flags(np, 1, NULL);
+ if (sda_pin < 0 || scl_pin < 0) {
+ pr_err("%s: invalid GPIO pins, sda=%d/scl=%d\n",
+ np->full_name, sda_pin, scl_pin);
+ ret = -EINVAL;
+ goto err_gpio_pin;
+ }
+ pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
+ if (!pdata) {
+ ret = -ENOMEM;
+ goto err_alloc_pdata;
+ }
+ pdata->sda_pin = sda_pin;
+ pdata->scl_pin = scl_pin;
+ prop = of_get_property(np, "sda-is-open-drain", NULL);
+ if (prop)
+ pdata->sda_is_open_drain = 1;
+ prop = of_get_property(np, "scl-is-open-drain", NULL);
+ if (prop)
+ pdata->scl_is_open_drain = 1;
+ prop = of_get_property(np, "scl-is-output-only", NULL);
+ if (prop)
+ pdata->scl_is_output_only = 1;
+ prop = of_get_property(np, "udelay", NULL);
+ if (prop)
+ pdata->udelay = be32_to_cpup(prop);
+ prop = of_get_property(np, "timeout", NULL);
+ if (prop) {
+ pdata->timeout =
+ msecs_to_jiffies(be32_to_cpup(prop));
+ }
+ } else {
+ ret = -ENXIO;
+ goto err_no_pdata;
+ }
+ }
ret = -ENOMEM;
adap = kzalloc(sizeof(struct i2c_adapter), GFP_KERNEL);
@@ -143,6 +187,7 @@ static int __devinit i2c_gpio_probe(struct platform_device *pdev)
adap->algo_data = bit_data;
adap->class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
adap->dev.parent = &pdev->dev;
+ adap->dev.of_node = np;
/*
* If "dev->id" is negative we consider it as zero.
@@ -161,6 +206,9 @@ static int __devinit i2c_gpio_probe(struct platform_device *pdev)
pdata->scl_is_output_only
? ", no clock stretching" : "");
+ /* Now register all the child nodes */
+ of_i2c_register_devices(adap);
+
return 0;
err_add_bus:
@@ -172,6 +220,9 @@ err_request_sda:
err_alloc_bit_data:
kfree(adap);
err_alloc_adap:
+err_no_pdata:
+err_alloc_pdata:
+err_gpio_pin:
return ret;
}
@@ -179,23 +230,33 @@ static int __devexit i2c_gpio_remove(struct platform_device *pdev)
{
struct i2c_gpio_platform_data *pdata;
struct i2c_adapter *adap;
+ struct i2c_algo_bit_data *bit_data;
adap = platform_get_drvdata(pdev);
- pdata = pdev->dev.platform_data;
+ bit_data = adap->algo_data;
+ pdata = bit_data->data;
i2c_del_adapter(adap);
gpio_free(pdata->scl_pin);
gpio_free(pdata->sda_pin);
kfree(adap->algo_data);
kfree(adap);
+ if (!pdev->dev.platform_data)
+ kfree(pdata);
return 0;
}
+static const struct of_device_id i2c_gpio_match[] = {
+ { .compatible = "i2c-gpio", },
+ {},
+};
+
static struct platform_driver i2c_gpio_driver = {
.driver = {
.name = "i2c-gpio",
.owner = THIS_MODULE,
+ .of_match_table = i2c_gpio_match,
},
.probe = i2c_gpio_probe,
.remove = __devexit_p(i2c_gpio_remove),
--
1.7.3.5
next reply other threads:[~2011-01-30 15:57 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-30 15:56 Thomas Chou [this message]
2011-01-31 3:26 ` Håvard Skinnemoen
2011-01-31 8:09 ` Grant Likely
2011-01-31 13:55 ` Jon Loeliger
2011-01-31 15:25 ` [PATCH 1/3] of: define dummy of_get_property if not CONFIG_OF Thomas Chou
2011-01-31 22:10 ` Grant Likely
2011-01-31 15:25 ` [PATCH 2/3] of: of_gpiochip_add is needed only for gpiolib Thomas Chou
2011-01-31 22:16 ` Grant Likely
2011-01-31 15:25 ` [PATCH 3/3 v2] i2c-gpio: add devicetree support Thomas Chou
2011-01-31 21:14 ` [3/3,v2] " Milton Miller
2011-01-31 21:29 ` Grant Likely
2011-02-03 2:26 ` [PATCH] " Thomas Chou
2011-02-03 4:24 ` Håvard Skinnemoen
2011-02-03 18:07 ` Grant Likely
2011-02-10 2:29 ` [PATCH v4] " Thomas Chou
2011-02-14 2:30 ` [PATCH v5] " Thomas Chou
2011-02-16 5:49 ` Grant Likely
2011-02-16 6:13 ` Thomas Chou
2011-02-23 1:12 ` Ben Dooks
2011-02-23 13:18 ` Thomas Chou
2011-02-24 4:00 ` [PATCH v6] " Thomas Chou
2011-02-24 16:22 ` Grant Likely
2011-02-25 2:04 ` Thomas Chou
2011-01-31 22:35 ` [PATCH] " Håvard Skinnemoen
2011-01-31 23:01 ` Grant Likely
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1296403013-6058-1-git-send-email-thomas@wytron.com.tw \
--to=thomas@wytron.com.tw \
--cc=albert_herranz@yahoo.es \
--cc=ben-linux@fluff.org \
--cc=devicetree-discuss@lists.ozlabs.org \
--cc=grant.likely@secretlab.ca \
--cc=hskinnemoen@gmail.com \
--cc=khali@linux-fr.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nios2-dev@sopc.et.ntust.edu.tw \
--subject='Re: [PATCH] i2c-gpio: add devicetree support' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).