]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Documentation: dt: iio: humidity: add hts221 sensor device binding
authorLorenzo Bianconi <lorenzo.bianconi83@gmail.com>
Thu, 13 Oct 2016 20:06:05 +0000 (22:06 +0200)
committerJonathan Cameron <jic23@kernel.org>
Sun, 23 Oct 2016 18:34:09 +0000 (19:34 +0100)
Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@st.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Documentation/devicetree/bindings/iio/humidity/hts221.txt [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/iio/humidity/hts221.txt b/Documentation/devicetree/bindings/iio/humidity/hts221.txt
new file mode 100644 (file)
index 0000000..b20ab9c
--- /dev/null
@@ -0,0 +1,22 @@
+* HTS221 STM humidity + temperature sensor
+
+Required properties:
+- compatible: should be "st,hts221"
+- reg: i2c address of the sensor / spi cs line
+
+Optional properties:
+- interrupt-parent: should be the phandle for the interrupt controller
+- interrupts: interrupt mapping for IRQ. It should be configured with
+  flags IRQ_TYPE_LEVEL_HIGH or IRQ_TYPE_EDGE_RISING.
+
+  Refer to interrupt-controller/interrupts.txt for generic interrupt
+  client node bindings.
+
+Example:
+
+hts221@5f {
+       compatible = "st,hts221";
+       reg = <0x5f>;
+       interrupt-parent = <&gpio0>;
+       interrupts = <0 IRQ_TYPE_EDGE_RISING>;
+};