devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] of/gpio: Define OF_GPIO_OPEN_DRAIN flag for Open Drain outputs.
@ 2014-02-10 22:05 David Daney
  2014-02-11  4:31 ` Alexandre Courbot
       [not found] ` <1392069908-22017-1-git-send-email-ddaney.cavm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 2 replies; 4+ messages in thread
From: David Daney @ 2014-02-10 22:05 UTC (permalink / raw)
  To: Grant Likely, Rob Herring, devicetree, Linus Walleij,
	Alexandre Courbot, linux-gpio
  Cc: linux-kernel, David Daney

From: David Daney <david.daney@cavium.com>

When we have a GPIO pin connected to an open-drain network, we want a
standard way of specifying this in the device tree.  So we choose bit
1 of the flag field to indicate open drain.

A typical use case would be something like:

	enum of_gpio_flags f;
	.
	.
	.
	reset_gpio = of_get_named_gpio_flags(node, "reset", 0, &f);
	.
	.
	.
	ret = gpio_request_one(reset_gpio,
		(f & OF_GPIO_OPEN_DRAIN) ? GPIOF_OPEN_DRAIN : 0,
		 "reset");
	.
	.
	.
	gpio_direction_output(reset_gpio, 1);
	gpio_set_value(reset_gpio, 0);
	msleep(20);
	gpio_set_value(reset_gpio, 1);
	.
	.
	.

Signed-off-by: David Daney <david.daney@cavium.com>
---
 include/linux/of_gpio.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/linux/of_gpio.h b/include/linux/of_gpio.h
index f14123a..0e374774 100644
--- a/include/linux/of_gpio.h
+++ b/include/linux/of_gpio.h
@@ -30,6 +30,7 @@ struct device_node;
  */
 enum of_gpio_flags {
 	OF_GPIO_ACTIVE_LOW = 0x1,
+	OF_GPIO_OPEN_DRAIN = 0x2,
 };
 
 #ifdef CONFIG_OF_GPIO
-- 
1.7.11.7


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-02-24 12:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-10 22:05 [PATCH] of/gpio: Define OF_GPIO_OPEN_DRAIN flag for Open Drain outputs David Daney
2014-02-11  4:31 ` Alexandre Courbot
2014-02-11 18:51   ` David Daney
     [not found] ` <1392069908-22017-1-git-send-email-ddaney.cavm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-02-24 12:08   ` Linus Walleij

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).