summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorAleksei Mamlin <mamlinav@gmail.com>2016-07-25 15:21:18 (GMT)
committerJonathan Cameron <jic23@kernel.org>2016-08-21 09:52:02 (GMT)
commitb1b79f53278f2e2ec07fc8a899068fcc04ca439b (patch)
tree16d9d1ba634e63d10dfedc281dd5f90922ec7c94 /Documentation
parent0363dfc585c5c62659be48b6de4b0f8abef4c839 (diff)
downloadlinux-b1b79f53278f2e2ec07fc8a899068fcc04ca439b.tar.xz
iio: accel: Add support for Domintech DMARD06 accelerometer
This patch add support for Domintech DMARD05, DMARD06 and DMARD07 accelerometers. Signed-off-by: Aleksei Mamlin <mamlinav@gmail.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/devicetree/bindings/iio/accel/dmard06.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/iio/accel/dmard06.txt b/Documentation/devicetree/bindings/iio/accel/dmard06.txt
new file mode 100644
index 0000000..ce105a1
--- /dev/null
+++ b/Documentation/devicetree/bindings/iio/accel/dmard06.txt
@@ -0,0 +1,19 @@
+Device tree bindings for Domintech DMARD05, DMARD06, DMARD07 accelerometers
+
+Required properties:
+ - compatible : Should be "domintech,dmard05"
+ or "domintech,dmard06"
+ or "domintech,dmard07"
+ - reg : I2C address of the chip. Should be 0x1c
+
+Example:
+ &i2c1 {
+ /* ... */
+
+ accelerometer@1c {
+ compatible = "domintech,dmard06";
+ reg = <0x1c>;
+ };
+
+ /* ... */
+ };