summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/iio/light/maxim,max44009.yaml
blob: 5911bd93bcb1a55481ba532aa3d14e1f1bffcfbc (plain)
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
# 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>;
        };
    };
...