diff options
Diffstat (limited to 'kernel/Documentation/devicetree/bindings/iio/magnetometer')
-rw-r--r-- | kernel/Documentation/devicetree/bindings/iio/magnetometer/bmc150_magn.txt | 22 | ||||
-rw-r--r-- | kernel/Documentation/devicetree/bindings/iio/magnetometer/mmc35240.txt | 13 |
2 files changed, 35 insertions, 0 deletions
diff --git a/kernel/Documentation/devicetree/bindings/iio/magnetometer/bmc150_magn.txt b/kernel/Documentation/devicetree/bindings/iio/magnetometer/bmc150_magn.txt new file mode 100644 index 000000000..9f263b7df --- /dev/null +++ b/kernel/Documentation/devicetree/bindings/iio/magnetometer/bmc150_magn.txt @@ -0,0 +1,22 @@ +* Bosch BMC150 magnetometer sensor + +http://ae-bst.resource.bosch.com/media/products/dokumente/bmc150/BST-BMC150-DS000-04.pdf + +Required properties: + + - compatible : should be "bosch,bmc150_magn" + - reg : the I2C address of the magnetometer + +Optional properties: + + - interrupt-parent : phandle to the parent interrupt controller + - interrupts : interrupt mapping for GPIO IRQ + +Example: + +bmc150_magn@12 { + compatible = "bosch,bmc150_magn"; + reg = <0x12>; + interrupt-parent = <&gpio1>; + interrupts = <0 1>; +}; diff --git a/kernel/Documentation/devicetree/bindings/iio/magnetometer/mmc35240.txt b/kernel/Documentation/devicetree/bindings/iio/magnetometer/mmc35240.txt new file mode 100644 index 000000000..a01235c7f --- /dev/null +++ b/kernel/Documentation/devicetree/bindings/iio/magnetometer/mmc35240.txt @@ -0,0 +1,13 @@ +* MEMSIC MMC35240 magnetometer sensor + +Required properties: + + - compatible : should be "memsic,mmc35240" + - reg : the I2C address of the magnetometer + +Example: + +mmc35240@30 { + compatible = "memsic,mmc35240"; + reg = <0x30>; +}; |