Commit 8b38b180 authored by Jonathan Cameron's avatar Jonathan Cameron
Browse files

dt-bindings:iio:light:maxim,max44009: txt to yaml conversion.



Straight forward format conversion.

Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: default avatarRob Herring <robh@kernel.org>
Cc: Robert Eshleman <bobbyeshleman@gmail.com>
Link: https://lore.kernel.org/r/20201031184854.745828-18-jic23@kernel.org
parent 787f6145
Loading
Loading
Loading
Loading
+0 −24
Original line number Diff line number Diff line
* MAX44009 Ambient Light Sensor

Required properties:

- compatible: should be "maxim,max44009"
- reg: the I2C address of the device (default is <0x4a>)

Optional properties:

- interrupts: interrupt mapping for GPIO IRQ. Should be configured with
  IRQ_TYPE_EDGE_FALLING.

Refer to interrupt-controller/interrupts.txt for generic interrupt client
node bindings.

Example:

light-sensor@4a {
	compatible = "maxim,max44009";
	reg = <0x4a>;

	interrupt-parent = <&gpio1>;
	interrupts = <17 IRQ_TYPE_EDGE_FALLING>;
};
+45 −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/maxim,max44009.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: MAX44009 Ambient Light Sensor

maintainers:
  - Robert Eshleman <bobbyeshleman@gmail.com>

properties:
  compatible:
    const: maxim,max44009

  reg:
    maxItems: 1
    description: Default address is 0x4a

  interrupts:
    maxItems: 1
    description: Should be configured with type IRQ_TYPE_EDGE_FALLING

additionalProperties: false

required:
  - compatible
  - reg

examples:
  - |
    #include <dt-bindings/interrupt-controller/irq.h>
    i2c {
        #address-cells = <1>;
        #size-cells = <0>;

        light-sensor@4a {
            compatible = "maxim,max44009";
            reg = <0x4a>;

            interrupt-parent = <&gpio1>;
            interrupts = <17 IRQ_TYPE_EDGE_FALLING>;
        };
    };
...