diff options
author | Andrew F. Davis <afd@ti.com> | 2016-08-23 14:45:15 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-08-24 14:20:32 +0200 |
commit | 54c928d335d6822bfe9a8b67850aaaa74d88a769 (patch) | |
tree | 7729df3b69a1a179e2672f60534e402be51f3309 | |
parent | adaaf63e24987d197aed8dc11493c4fd9c40f138 (diff) | |
download | linux-54c928d335d6822bfe9a8b67850aaaa74d88a769.tar.bz2 |
dt-bindings: GPIO: Add TPIC2810 binding
Add binding for TPIC2810 GPO device.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Signed-off-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | Documentation/devicetree/bindings/gpio/gpio-tpic2810.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/gpio/gpio-tpic2810.txt b/Documentation/devicetree/bindings/gpio/gpio-tpic2810.txt new file mode 100644 index 000000000000..1afc2de7a537 --- /dev/null +++ b/Documentation/devicetree/bindings/gpio/gpio-tpic2810.txt @@ -0,0 +1,16 @@ +TPIC2810 GPIO controller bindings + +Required properties: + - compatible : Should be "ti,tpic2810". + - reg : The I2C address of the device + - gpio-controller : Marks the device node as a GPIO controller. + - #gpio-cells : Should be two. For consumer use see gpio.txt. + +Example: + + gpio@60 { + compatible = "ti,tpic2810"; + reg = <0x60>; + gpio-controller; + #gpio-cells = <2>; + }; |