gpio: core: Decouple open drain/source flag with active low/high
authorLaxman Dewangan <ldewangan@nvidia.com>
Thu, 6 Apr 2017 13:35:52 +0000 (19:05 +0530)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 7 Apr 2017 10:23:29 +0000 (12:23 +0200)
commit4c0facddb7d88c78c8bd977c16faa647f079ccda
treed7bbe718888ae2348a7b315c69bf6c4eebb33d9c
parent11598d1740500e3c1848122f3e77ab017aa38b77
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>
drivers/gpio/gpiolib-of.c
drivers/gpio/gpiolib.c
include/dt-bindings/gpio/gpio.h
include/linux/of_gpio.h