diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2016-08-16 15:33:27 +0200 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-08-21 20:41:05 +0100 |
commit | 87557ade38f3d465f4935d63d74a7590e7d69e1a (patch) | |
tree | 5e28cf4563d1c73780eb82ffce36bde7b4881c2d /Documentation/devicetree/bindings/iio | |
parent | 7f6cf7414538181f4091b06e905d19a23a451108 (diff) | |
download | blackbird-op-linux-87557ade38f3d465f4935d63d74a7590e7d69e1a.tar.gz blackbird-op-linux-87557ade38f3d465f4935d63d74a7590e7d69e1a.zip |
iio: accel: kxsd9: Add device tree bindings
This accelerometer can be probed from the device tree, so it needs
to have proper documentation of it's device tree bindings.
Cc: devicetree@vger.kernel.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/iio')
-rw-r--r-- | Documentation/devicetree/bindings/iio/accel/kionix,kxsd9.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/iio/accel/kionix,kxsd9.txt b/Documentation/devicetree/bindings/iio/accel/kionix,kxsd9.txt new file mode 100644 index 000000000000..b25bf3a77e0f --- /dev/null +++ b/Documentation/devicetree/bindings/iio/accel/kionix,kxsd9.txt @@ -0,0 +1,22 @@ +Kionix KXSD9 Accelerometer device tree bindings + +Required properties: + - compatible: should be set to "kionix,kxsd9" + - reg: i2c slave address + +Optional properties: + - vdd-supply: The input supply for VDD + - iovdd-supply: The input supply for IOVDD + - interrupts: The movement detection interrupt + - mount-matrix: See mount-matrix.txt + +Example: + +kxsd9@18 { + compatible = "kionix,kxsd9"; + reg = <0x18>; + interrupt-parent = <&foo>; + interrupts = <57 IRQ_TYPE_EDGE_FALLING>; + iovdd-supply = <&bar>; + vdd-supply = <&baz>; +}; |