diff options
author | Andrew F. Davis <afd@ti.com> | 2015-11-04 18:12:12 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-11-19 09:24:36 +0100 |
commit | 615b8a969d0fb623a4067ad6afa9590ca5dcaf63 (patch) | |
tree | b5516e4780b7d2dae86462b4048bc0aad880ced7 /Documentation | |
parent | gpio: Add IRQ support to ACCES 104-IDIO-16 driver (diff) | |
download | linux-615b8a969d0fb623a4067ad6afa9590ca5dcaf63.tar.xz linux-615b8a969d0fb623a4067ad6afa9590ca5dcaf63.zip |
gpio: tps65086: Add DT bindings for the TPS65086 GPO controller
The TPS65086 PMIC contains several regulators and a GPO controller.
Add bindings for the TPS65086 GPO controller.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/gpio/gpio-tps65086.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/gpio/gpio-tps65086.txt b/Documentation/devicetree/bindings/gpio/gpio-tps65086.txt new file mode 100644 index 000000000000..ba051074bedc --- /dev/null +++ b/Documentation/devicetree/bindings/gpio/gpio-tps65086.txt @@ -0,0 +1,16 @@ +* TPS65086 GPO Controller bindings + +Required properties: + - compatible : Should be "ti,tps65086-gpio". + - gpio-controller : Marks the device node as a GPIO Controller. + - #gpio-cells : Should be two. The first cell is the pin number + and the second cell is used to specify flags. + See ../gpio/gpio.txt for possible values. + +Example: + + gpio4: gpio { + compatible = "ti,tps65086-gpio"; + gpio-controller; + #gpio-cells = <2>; + }; |