-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
iio:pressure: initial zpa2326 barometer support
Introduce driver for Murata ZPA2326 pressure and temperature sensor: http://www.murata.com/en-us/products/productdetail?partno=ZPA2326-0311A-R Signed-off-by: Gregor Boirie <gregor.boirie@parrot.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
- Loading branch information
Gregor Boirie
authored and
Jonathan Cameron
committed
Sep 18, 2016
1 parent
063e330
commit 03b262f
Showing
7 changed files
with
2,082 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
Documentation/devicetree/bindings/iio/pressure/zpa2326.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Murata ZPA2326 pressure sensor | ||
|
||
Pressure sensor from Murata with SPI and I2C bus interfaces. | ||
|
||
Required properties: | ||
- compatible: "murata,zpa2326" | ||
- reg: the I2C address or SPI chip select the device will respond to | ||
|
||
Recommended properties for SPI bus usage: | ||
- spi-max-frequency: maximum SPI bus frequency as documented in | ||
Documentation/devicetree/bindings/spi/spi-bus.txt | ||
|
||
Optional properties: | ||
- vref-supply: an optional regulator that needs to be on to provide VREF | ||
power to the sensor | ||
- vdd-supply: an optional regulator that needs to be on to provide VDD | ||
power to the sensor | ||
- interrupt-parent: phandle to the parent interrupt controller as documented in | ||
Documentation/devicetree/bindings/interrupt-controller/interrupts.txt | ||
- interrupts: interrupt mapping for IRQ as documented in | ||
Documentation/devicetree/bindings/interrupt-controller/interrupts.txt | ||
|
||
Example: | ||
|
||
zpa2326@5c { | ||
compatible = "murata,zpa2326"; | ||
reg = <0x5c>; | ||
interrupt-parent = <&gpio>; | ||
interrupts = <12>; | ||
vdd-supply = <&ldo_1v8_gnss>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.