Path: blob/master/Documentation/devicetree/bindings/iio/pressure/rohm,bm1390.yaml
26309 views
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause1%YAML 1.22---3$id: http://devicetree.org/schemas/iio/pressure/rohm,bm1390.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: ROHM BM1390 pressure sensor78maintainers:9- Matti Vaittinen <mazziesaccount@gmail.com>1011description:12BM1390GLV-Z is a pressure sensor which performs internal temperature13compensation for the MEMS. Pressure range is from 300 hPa to 1300 hPa14and sample averaging and IIR filtering is built in. Temperature15measurement is also supported.1617properties:18compatible:19const: rohm,bm1390glv-z2021reg:22maxItems: 12324interrupts:25maxItems: 12627vdd-supply: true2829required:30- compatible31- reg32- vdd-supply3334additionalProperties: false3536examples:37- |38#include <dt-bindings/interrupt-controller/irq.h>39i2c {40#address-cells = <1>;41#size-cells = <0>;42pressure-sensor@5d {43compatible = "rohm,bm1390glv-z";44reg = <0x5d>;4546interrupt-parent = <&gpio1>;47interrupts = <29 IRQ_TYPE_LEVEL_LOW>;4849vdd-supply = <&vdd>;50};51};525354