xref: /freebsd/sys/contrib/device-tree/Bindings/iio/pressure/murata,zpa2326.yaml (revision 8bab661a3316d8bd9b9fbd11a3b4371b91507bd2)
15def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
25def4c47SEmmanuel Vadot%YAML 1.2
35def4c47SEmmanuel Vadot---
45def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/iio/pressure/murata,zpa2326.yaml#
55def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
65def4c47SEmmanuel Vadot
75def4c47SEmmanuel Vadottitle: Murata ZPA2326 pressure sensor
85def4c47SEmmanuel Vadot
95def4c47SEmmanuel Vadotmaintainers:
105def4c47SEmmanuel Vadot  - Jonathan Cameron <jic23@kernel.org>
115def4c47SEmmanuel Vadot
125def4c47SEmmanuel Vadotdescription: |
135def4c47SEmmanuel Vadot  Pressure sensor from Murata with SPI and I2C bus interfaces.
145def4c47SEmmanuel Vadot
155def4c47SEmmanuel Vadot
165def4c47SEmmanuel Vadotproperties:
175def4c47SEmmanuel Vadot  compatible:
185def4c47SEmmanuel Vadot    const: murata,zpa2326
195def4c47SEmmanuel Vadot
205def4c47SEmmanuel Vadot  reg:
215def4c47SEmmanuel Vadot    maxItems: 1
225def4c47SEmmanuel Vadot
235def4c47SEmmanuel Vadot  vdd-supply: true
245def4c47SEmmanuel Vadot  vref-supply: true
255def4c47SEmmanuel Vadot
265def4c47SEmmanuel Vadot  interrupts:
275def4c47SEmmanuel Vadot    maxItems: 1
285def4c47SEmmanuel Vadot
295def4c47SEmmanuel Vadot  spi-max-frequency:
305def4c47SEmmanuel Vadot    maximum: 1000000
315def4c47SEmmanuel Vadot
325def4c47SEmmanuel Vadotrequired:
335def4c47SEmmanuel Vadot  - compatible
345def4c47SEmmanuel Vadot  - reg
355def4c47SEmmanuel Vadot
36*8bab661aSEmmanuel VadotallOf:
37*8bab661aSEmmanuel Vadot  - $ref: /schemas/spi/spi-peripheral-props.yaml#
38*8bab661aSEmmanuel Vadot
39*8bab661aSEmmanuel VadotunevaluatedProperties: false
405def4c47SEmmanuel Vadot
415def4c47SEmmanuel Vadotexamples:
425def4c47SEmmanuel Vadot  - |
435def4c47SEmmanuel Vadot    i2c {
445def4c47SEmmanuel Vadot        #address-cells = <1>;
455def4c47SEmmanuel Vadot        #size-cells = <0>;
465def4c47SEmmanuel Vadot
475def4c47SEmmanuel Vadot        pressure@5c {
485def4c47SEmmanuel Vadot            compatible = "murata,zpa2326";
495def4c47SEmmanuel Vadot            reg = <0x5c>;
505def4c47SEmmanuel Vadot            interrupt-parent = <&gpio>;
515def4c47SEmmanuel Vadot            interrupts = <12>;
525def4c47SEmmanuel Vadot            vdd-supply = <&ldo_1v8_gnss>;
535def4c47SEmmanuel Vadot        };
545def4c47SEmmanuel Vadot    };
555def4c47SEmmanuel Vadot  - |
565def4c47SEmmanuel Vadot    spi {
575def4c47SEmmanuel Vadot        #address-cells = <1>;
585def4c47SEmmanuel Vadot        #size-cells = <0>;
595def4c47SEmmanuel Vadot        pressure@0 {
605def4c47SEmmanuel Vadot            compatible = "murata,zpa2326";
615def4c47SEmmanuel Vadot            reg = <0>;
625def4c47SEmmanuel Vadot            spi-max-frequency = <500000>;
635def4c47SEmmanuel Vadot        };
645def4c47SEmmanuel Vadot    };
655def4c47SEmmanuel Vadot...
66