1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2*5def4c47SEmmanuel Vadot%YAML 1.2 3*5def4c47SEmmanuel Vadot--- 4*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/iio/light/st,vl6180.yaml# 5*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*5def4c47SEmmanuel Vadot 7*5def4c47SEmmanuel Vadottitle: STMicro VL6180 ALS, range and proximity sensor 8*5def4c47SEmmanuel Vadot 9*5def4c47SEmmanuel Vadotmaintainers: 10*5def4c47SEmmanuel Vadot - Manivannan Sadhasivam <manivannanece23@gmail.com> 11*5def4c47SEmmanuel Vadot - Peter Meerwald-Stadler <pmeerw@pmeerw.net> 12*5def4c47SEmmanuel Vadot 13*5def4c47SEmmanuel Vadotdescription: | 14*5def4c47SEmmanuel Vadot Proximity sensing module incorporating time of flight sensor 15*5def4c47SEmmanuel Vadot Datasheet at https://www.st.com/resource/en/datasheet/vl6180x.pdf 16*5def4c47SEmmanuel Vadot 17*5def4c47SEmmanuel Vadotproperties: 18*5def4c47SEmmanuel Vadot compatible: 19*5def4c47SEmmanuel Vadot const: st,vl6180 20*5def4c47SEmmanuel Vadot 21*5def4c47SEmmanuel Vadot reg: 22*5def4c47SEmmanuel Vadot maxItems: 1 23*5def4c47SEmmanuel Vadot 24*5def4c47SEmmanuel Vadot interrupts: 25*5def4c47SEmmanuel Vadot maxItems: 1 26*5def4c47SEmmanuel Vadot 27*5def4c47SEmmanuel VadotadditionalProperties: false 28*5def4c47SEmmanuel Vadot 29*5def4c47SEmmanuel Vadotrequired: 30*5def4c47SEmmanuel Vadot - compatible 31*5def4c47SEmmanuel Vadot - reg 32*5def4c47SEmmanuel Vadot 33*5def4c47SEmmanuel Vadotexamples: 34*5def4c47SEmmanuel Vadot - | 35*5def4c47SEmmanuel Vadot #include <dt-bindings/interrupt-controller/irq.h> 36*5def4c47SEmmanuel Vadot i2c { 37*5def4c47SEmmanuel Vadot #address-cells = <1>; 38*5def4c47SEmmanuel Vadot #size-cells = <0>; 39*5def4c47SEmmanuel Vadot 40*5def4c47SEmmanuel Vadot proximity@29 { 41*5def4c47SEmmanuel Vadot compatible = "st,vl6180"; 42*5def4c47SEmmanuel Vadot reg = <0x29>; 43*5def4c47SEmmanuel Vadot }; 44*5def4c47SEmmanuel Vadot }; 45*5def4c47SEmmanuel Vadot... 46