diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2012-09-11 00:35:40 +0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2012-09-11 21:21:34 +0400 |
commit | a7ff477bb7e5ec9536e8aac02e8856a4bcc595a3 (patch) | |
tree | 743b4e7c5683b9a4eac1699f4272f7c4887bd6a5 | |
parent | 4485a12937c936a5973601bb9921d30a0630299d (diff) | |
download | linux-a7ff477bb7e5ec9536e8aac02e8856a4bcc595a3.tar.xz |
gpio: 74x164: dts: Add documentation for the dt binding
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | Documentation/devicetree/bindings/gpio/gpio-74x164.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/gpio/gpio-74x164.txt b/Documentation/devicetree/bindings/gpio/gpio-74x164.txt new file mode 100644 index 000000000000..cc2608021f26 --- /dev/null +++ b/Documentation/devicetree/bindings/gpio/gpio-74x164.txt @@ -0,0 +1,22 @@ +* Generic 8-bits shift register GPIO driver + +Required properties: +- compatible : Should be "fairchild,74hc595" +- reg : chip select number +- 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 the gpio polarity: + 0 = active high + 1 = active low +- registers-number: Number of daisy-chained shift registers + +Example: + +gpio5: gpio5@0 { + compatible = "fairchild,74hc595"; + reg = <0>; + gpio-controller; + #gpio-cells = <2>; + registers-number = <4>; + spi-max-frequency = <100000>; +}; |