Commit 787f6145 authored by Jonathan Cameron's avatar Jonathan Cameron
Browse files

dt-bindings:iio:light:sharp,gp2ap020a00f: txt to yaml conversion.



Simple conversion.
Jacek's email bounced, by Kyungmin's still seems good so just dropped
Jacek from maintainer list.

Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: default avatarRob Herring <robh@kernel.org>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Link: https://lore.kernel.org/r/20201031184854.745828-17-jic23@kernel.org
parent b8a8dab1
Loading
Loading
Loading
Loading
+0 −21
Original line number Diff line number Diff line
* Sharp GP2AP020A00F I2C Proximity/ALS sensor

The proximity detector sensor requires power supply
for its built-in led. It is also defined by this binding.

Required properties:

  - compatible : should be "sharp,gp2ap020a00f"
  - reg : the I2C slave address of the light sensor
  - interrupts : interrupt specifier for the sole interrupt generated
		 by the device
  - vled-supply : VLED power supply, as covered in ../regulator/regulator.txt

Example:

gp2ap020a00f@39 {
	compatible = "sharp,gp2ap020a00f";
	reg = <0x39>;
	interrupts = <2 0>;
	vled-supply = <...>;
};
+48 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/iio/light/sharp,gp2ap020a00f.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Sharp GP2AP020A00F I2C Proximity/ALS sensor

maintainers:
  - Kyungmin Park <kyungmin.park@samsung.com>

description: |
  The proximity detector sensor requires power supply for its built-in led.

properties:
  compatible:
    const: sharp,gp2ap020a00f

  reg:
    maxItems: 1

  interrupts:
    maxItems: 1

  vled-supply: true

additionalProperties: false

required:
  - compatible
  - reg
  - interrupts
  - vled-supply

examples:
  - |
    i2c {
        #address-cells = <1>;
        #size-cells = <0>;

        light-sensor@39 {
            compatible = "sharp,gp2ap020a00f";
            reg = <0x39>;
            interrupts = <2 0>;
            vled-supply = <&als_reg>;
        };
    };
...