zpa2326.txt 1019 B

1234567891011121314151617181920212223242526272829303132
  1. Murata ZPA2326 pressure sensor
  2. Pressure sensor from Murata with SPI and I2C bus interfaces.
  3. Required properties:
  4. - compatible: "murata,zpa2326"
  5. - reg: the I2C address or SPI chip select the device will respond to
  6. Recommended properties for SPI bus usage:
  7. - spi-max-frequency: maximum SPI bus frequency as documented in
  8. Documentation/devicetree/bindings/spi/spi-bus.txt
  9. Optional properties:
  10. - vref-supply: an optional regulator that needs to be on to provide VREF
  11. power to the sensor
  12. - vdd-supply: an optional regulator that needs to be on to provide VDD
  13. power to the sensor
  14. - interrupt-parent: phandle to the parent interrupt controller as documented in
  15. Documentation/devicetree/bindings/interrupt-controller/interrupts.txt
  16. - interrupts: interrupt mapping for IRQ as documented in
  17. Documentation/devicetree/bindings/interrupt-controller/interrupts.txt
  18. Example:
  19. zpa2326@5c {
  20. compatible = "murata,zpa2326";
  21. reg = <0x5c>;
  22. interrupt-parent = <&gpio>;
  23. interrupts = <12>;
  24. vdd-supply = <&ldo_1v8_gnss>;
  25. };