Documentation / devicetree / bindings / iio / proximity / rfdigital,rfd77402.yaml


Based on kernel version 7.0. Page generated on 2026-04-23 09:48 EST.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/iio/proximity/rfdigital,rfd77402.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: RF Digital RFD77402 ToF sensor

maintainers:
  - Shrikant Raskar <raskar.shree97@gmail.com>

description:
  The RF Digital RFD77402 is a Time-of-Flight (ToF) proximity and distance
  sensor providing up to 200 mm range measurement over an I2C interface.

properties:
  compatible:
    const: rfdigital,rfd77402

  reg:
    maxItems: 1

  interrupts:
    maxItems: 1
    description:
      Interrupt asserted when a new distance measurement is available.

  vdd-supply:
    description: Regulator that provides power to the sensor.

required:
  - compatible
  - reg
  - vdd-supply

additionalProperties: false

examples:
  - |
    #include <dt-bindings/interrupt-controller/irq.h>
    i2c {
        #address-cells = <1>;
        #size-cells = <0>;
 
        proximity@4c {
            compatible = "rfdigital,rfd77402";
            reg = <0x4c>;
            vdd-supply = <&vdd_3v3>;
            interrupt-parent = <&gpio>;
            interrupts = <4 IRQ_TYPE_EDGE_FALLING>;
        };
    };
...