aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpiolib.c
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 /drivers/gpio/gpiolib.c
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>
Diffstat (limited to 'drivers/gpio/gpiolib.c')
-rw-r--r--drivers/gpio/gpiolib.c4
1 files changed, 3 insertions, 1 deletions
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;