aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/iio
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2013-11-01 05:35:00 +0000
committerJonathan Cameron <jic23@kernel.org>2013-11-24 21:07:15 +0000
commit27b832427e060d4e963c610d07860e5dbe1daafa (patch)
tree66fa105a1df489da2c9d6216b510961e726626cc /Documentation/devicetree/bindings/iio
parentiio:light:tsl2563: Add DT support (diff)
downloadlinux-dev-27b832427e060d4e963c610d07860e5dbe1daafa.tar.xz
linux-dev-27b832427e060d4e963c610d07860e5dbe1daafa.zip
iio:magnetometer:hmc5843 - add basic dt support
Compatible string, documenation and an optional gpio for the dataready pin. Signed-off-by: NeilBrown <neilb@suse.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/iio')
-rw-r--r--Documentation/devicetree/bindings/iio/magnetometer/hmc5843.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/iio/magnetometer/hmc5843.txt b/Documentation/devicetree/bindings/iio/magnetometer/hmc5843.txt
new file mode 100644
index 000000000000..90d5f34db04e
--- /dev/null
+++ b/Documentation/devicetree/bindings/iio/magnetometer/hmc5843.txt
@@ -0,0 +1,17 @@
+* Honeywell HMC5843 magnetometer sensor
+
+Required properties:
+
+ - compatible : should be "honeywell,hmc5843"
+ - reg : the I2C address of the magnetometer - typically 0x1e
+
+Optional properties:
+
+ - gpios : should be device tree identifier of the magnetometer DRDY pin
+
+Example:
+
+hmc5843@1e {
+ compatible = "honeywell,hmc5843"
+ reg = <0x1e>;
+};