aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaxman Dewangan <ldewangan@nvidia.com>2017-04-06 09:35:52 -0400
committerLinus Walleij <linus.walleij@linaro.org>2017-04-07 06:23:29 -0400
commit4c0facddb7d88c78c8bd977c16faa647f079ccda (patch)
treed7bbe718888ae2348a7b315c69bf6c4eebb33d9c
parent11598d1740500e3c1848122f3e77ab017aa38b77 (diff)
gpio: core: Decouple open drain/source flag with active low/high
Currently, the GPIO interface is said to Open Drain if it is Single Ended and active LOW. Similarly, it is said as Open Source if it is Single Ended and active HIGH. The active HIGH/LOW is used in the interface for setting the pin state to HIGH or LOW when enabling/disabling the interface. In Open Drain interface, pin is set to HIGH by putting pin in high impedance and LOW by driving to the LOW. In Open Source interface, pin is set to HIGH by driving pin to HIGH and set to LOW by putting pin in high impedance. With above, the Open Drain/Source is unrelated to the active LOW/HIGH in interface. There is interface where the enable/disable of interface is ether active LOW or HIGH but it is Open Drain type. Hence decouple the Open Drain with Single Ended + Active LOW and Open Source with Single Ended + Active HIGH. Adding different flag for the Open Drain/Open Source which is valid only when Single ended flag is enabled. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r--drivers/gpio/gpiolib-of.c2
-rw-r--r--drivers/gpio/gpiolib.c4
-rw-r--r--include/dt-bindings/gpio/gpio.h12
-rw-r--r--include/linux/of_gpio.h1
4 files changed, 13 insertions, 6 deletions
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c
index 975b9f6cf408..b13b7c7c335f 100644
--- a/drivers/gpio/gpiolib-of.c
+++ b/drivers/gpio/gpiolib-of.c
@@ -147,7 +147,7 @@ struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
147 *flags |= GPIO_ACTIVE_LOW; 147 *flags |= GPIO_ACTIVE_LOW;
148 148
149 if (of_flags & OF_GPIO_SINGLE_ENDED) { 149 if (of_flags & OF_GPIO_SINGLE_ENDED) {
150 if (of_flags & OF_GPIO_ACTIVE_LOW) 150 if (of_flags & OF_GPIO_OPEN_DRAIN)
151 *flags |= GPIO_OPEN_DRAIN; 151 *flags |= GPIO_OPEN_DRAIN;
152 else 152 else
153 *flags |= GPIO_OPEN_SOURCE; 153 *flags |= GPIO_OPEN_SOURCE;
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index c788b55dfe85..d11eb2abfced 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -3340,6 +3340,7 @@ struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
3340 unsigned long lflags = 0; 3340 unsigned long lflags = 0;
3341 bool active_low = false; 3341 bool active_low = false;
3342 bool single_ended = false; 3342 bool single_ended = false;
3343 bool open_drain = false;
3343 int ret; 3344 int ret;
3344 3345
3345 if (!fwnode) 3346 if (!fwnode)
@@ -3353,6 +3354,7 @@ struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
3353 if (!IS_ERR(desc)) { 3354 if (!IS_ERR(desc)) {
3354 active_low = flags & OF_GPIO_ACTIVE_LOW; 3355 active_low = flags & OF_GPIO_ACTIVE_LOW;
3355 single_ended = flags & OF_GPIO_SINGLE_ENDED; 3356 single_ended = flags & OF_GPIO_SINGLE_ENDED;
3357 open_drain = flags & OF_GPIO_OPEN_DRAIN;
3356 } 3358 }
3357 } else if (is_acpi_node(fwnode)) { 3359 } else if (is_acpi_node(fwnode)) {
3358 struct acpi_gpio_info info; 3360 struct acpi_gpio_info info;
@@ -3373,7 +3375,7 @@ struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
3373 lflags |= GPIO_ACTIVE_LOW; 3375 lflags |= GPIO_ACTIVE_LOW;
3374 3376
3375 if (single_ended) { 3377 if (single_ended) {
3376 if (active_low) 3378 if (open_drain)
3377 lflags |= GPIO_OPEN_DRAIN; 3379 lflags |= GPIO_OPEN_DRAIN;
3378 else 3380 else
3379 lflags |= GPIO_OPEN_SOURCE; 3381 lflags |= GPIO_OPEN_SOURCE;
diff --git a/include/dt-bindings/gpio/gpio.h b/include/dt-bindings/gpio/gpio.h
index c673d2c87c60..b4f54da694eb 100644
--- a/include/dt-bindings/gpio/gpio.h
+++ b/include/dt-bindings/gpio/gpio.h
@@ -17,11 +17,15 @@
17#define GPIO_PUSH_PULL 0 17#define GPIO_PUSH_PULL 0
18#define GPIO_SINGLE_ENDED 2 18#define GPIO_SINGLE_ENDED 2
19 19
20/* Bit 2 express Open drain or open source */
21#define GPIO_LINE_OPEN_SOURCE 0
22#define GPIO_LINE_OPEN_DRAIN 4
23
20/* 24/*
21 * Open Drain/Collector is the combination of single-ended active low, 25 * Open Drain/Collector is the combination of single-ended open drain interface.
22 * Open Source/Emitter is the combination of single-ended active high. 26 * Open Source/Emitter is the combination of single-ended open source interface.
23 */ 27 */
24#define GPIO_OPEN_DRAIN (GPIO_SINGLE_ENDED | GPIO_ACTIVE_LOW) 28#define GPIO_OPEN_DRAIN (GPIO_SINGLE_ENDED | GPIO_LINE_OPEN_DRAIN)
25#define GPIO_OPEN_SOURCE (GPIO_SINGLE_ENDED | GPIO_ACTIVE_HIGH) 29#define GPIO_OPEN_SOURCE (GPIO_SINGLE_ENDED | GPIO_LINE_OPEN_SOURCE)
26 30
27#endif 31#endif
diff --git a/include/linux/of_gpio.h b/include/linux/of_gpio.h
index 3f87ea5b8bee..1e089d5a182b 100644
--- a/include/linux/of_gpio.h
+++ b/include/linux/of_gpio.h
@@ -30,6 +30,7 @@ struct device_node;
30enum of_gpio_flags { 30enum of_gpio_flags {
31 OF_GPIO_ACTIVE_LOW = 0x1, 31 OF_GPIO_ACTIVE_LOW = 0x1,
32 OF_GPIO_SINGLE_ENDED = 0x2, 32 OF_GPIO_SINGLE_ENDED = 0x2,
33 OF_GPIO_OPEN_DRAIN = 0x4,
33}; 34};
34 35
35#ifdef CONFIG_OF_GPIO 36#ifdef CONFIG_OF_GPIO