Path: blob/master/Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/iio/pressure/asc,dlhl60d.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: All Sensors DLH series low voltage digital pressure sensors78maintainers:9- Jonathan Cameron <jic23@kernel.org>1011description: |12Bindings for the All Sensors DLH series pressure sensors.1314Specifications about the sensors can be found at:15https://www.allsensors.com/cad/DS-0355_Rev_B.PDF1617properties:18compatible:19enum:20- asc,dlhl60d21- asc,dlhl60g2223reg:24description: I2C device address25maxItems: 12627interrupts:28description: interrupt mapping for EOC(data ready) pin29maxItems: 13031required:32- compatible33- reg3435additionalProperties: false3637examples:38- |39#include <dt-bindings/interrupt-controller/irq.h>4041i2c {42#address-cells = <1>;43#size-cells = <0>;4445pressure@29 {46compatible = "asc,dlhl60d";47reg = <0x29>;48interrupt-parent = <&gpio0>;49interrupts = <10 IRQ_TYPE_EDGE_RISING>;50};51};52...535455