summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/mfd/maxim,max77759.yaml
blob: 525de9ab3c2b7b431e48497330640857540625b1 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/mfd/maxim,max77759.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Maxim Integrated MAX77759 PMIC for USB Type-C applications

maintainers:
  - André Draszik <andre.draszik@linaro.org>

description: |
  This is a part of device tree bindings for the MAX77759 companion Power
  Management IC for USB Type-C applications.

  The MAX77759 includes Battery Charger, Fuel Gauge, temperature sensors, USB
  Type-C Port Controller (TCPC), NVMEM, and a GPIO expander.

properties:
  compatible:
    const: maxim,max77759

  interrupts:
    maxItems: 1

  interrupt-controller: true

  "#interrupt-cells":
    const: 2

  reg:
    maxItems: 1

  gpio:
    $ref: /schemas/gpio/maxim,max77759-gpio.yaml

  nvmem-0:
    $ref: /schemas/nvmem/maxim,max77759-nvmem.yaml

required:
  - compatible
  - interrupts
  - reg

additionalProperties: false

examples:
  - |
    #include <dt-bindings/interrupt-controller/irq.h>

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

        pmic@66 {
            compatible = "maxim,max77759";
            reg = <0x66>;
            interrupts-extended = <&gpa8 3 IRQ_TYPE_LEVEL_LOW>;

            interrupt-controller;
            #interrupt-cells = <2>;

            gpio {
                compatible = "maxim,max77759-gpio";

                gpio-controller;
                #gpio-cells = <2>;

                interrupt-controller;
                #interrupt-cells = <2>;
            };

            nvmem-0 {
                compatible = "maxim,max77759-nvmem";

                nvmem-layout {
                    compatible = "fixed-layout";
                    #address-cells = <1>;
                    #size-cells = <1>;

                    reboot-mode@0 {
                        reg = <0x0 0x4>;
                    };

                    boot-reason@4 {
                        reg = <0x4 0x4>;
                    };

                    shutdown-user-flag@8 {
                        reg = <0x8 0x1>;
                    };

                    rsoc@10 {
                        reg = <0xa 0x2>;
                    };
                };
            };
        };
    };