]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
UBUNTU: SAUCE: Documentation: dt: iio: humidity: add hts221 sensor device binding
authorLorenzo Bianconi <lorenzo.bianconi83@gmail.com>
Thu, 15 Dec 2016 10:19:02 +0000 (18:19 +0800)
committerLuis Henriques <luis.henriques@canonical.com>
Mon, 19 Dec 2016 18:46:33 +0000 (18:46 +0000)
BugLink: http://bugs.launchpad.net/bugs/1650116
Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@st.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
(cherry picked from commit 0b0feb34175d57a342846a13d2072446fd3bcdde)
(source: git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git)
Signed-off-by: Shrirang Bagul <shrirang.bagul@canonical.com>
Acked-by: Tim Gardner <tim.gardner@canonical.com>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
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>;
+};