xref: /freebsd/sys/contrib/device-tree/Bindings/power/supply/maxim,max77976.yaml (revision e67e85659c0de33e617e5fbf1028c6e8b49eee53)
1*e67e8565SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*e67e8565SEmmanuel Vadot%YAML 1.2
3*e67e8565SEmmanuel Vadot---
4*e67e8565SEmmanuel Vadot$id: http://devicetree.org/schemas/power/supply/maxim,max77976.yaml#
5*e67e8565SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*e67e8565SEmmanuel Vadot
7*e67e8565SEmmanuel Vadottitle: Maxim Integrated MAX77976 Battery charger
8*e67e8565SEmmanuel Vadot
9*e67e8565SEmmanuel Vadotmaintainers:
10*e67e8565SEmmanuel Vadot  - Luca Ceresoli <luca@lucaceresoli.net>
11*e67e8565SEmmanuel Vadot
12*e67e8565SEmmanuel Vadotdescription: |
13*e67e8565SEmmanuel Vadot  The Maxim MAX77976 is a 19Vin / 5.5A, 1-Cell Li+ battery charger
14*e67e8565SEmmanuel Vadot  configured via I2C.
15*e67e8565SEmmanuel Vadot
16*e67e8565SEmmanuel VadotallOf:
17*e67e8565SEmmanuel Vadot  - $ref: power-supply.yaml#
18*e67e8565SEmmanuel Vadot
19*e67e8565SEmmanuel Vadotproperties:
20*e67e8565SEmmanuel Vadot  compatible:
21*e67e8565SEmmanuel Vadot    const: maxim,max77976
22*e67e8565SEmmanuel Vadot
23*e67e8565SEmmanuel Vadot  reg:
24*e67e8565SEmmanuel Vadot    maxItems: 1
25*e67e8565SEmmanuel Vadot
26*e67e8565SEmmanuel Vadotrequired:
27*e67e8565SEmmanuel Vadot  - compatible
28*e67e8565SEmmanuel Vadot  - reg
29*e67e8565SEmmanuel Vadot
30*e67e8565SEmmanuel VadotunevaluatedProperties: false
31*e67e8565SEmmanuel Vadot
32*e67e8565SEmmanuel Vadotexamples:
33*e67e8565SEmmanuel Vadot  - |
34*e67e8565SEmmanuel Vadot    i2c {
35*e67e8565SEmmanuel Vadot      #address-cells = <1>;
36*e67e8565SEmmanuel Vadot      #size-cells = <0>;
37*e67e8565SEmmanuel Vadot
38*e67e8565SEmmanuel Vadot      charger@6b {
39*e67e8565SEmmanuel Vadot        compatible = "maxim,max77976";
40*e67e8565SEmmanuel Vadot        reg = <0x6b>;
41*e67e8565SEmmanuel Vadot      };
42*e67e8565SEmmanuel Vadot    };
43*e67e8565SEmmanuel Vadot
44*e67e8565SEmmanuel Vadot...
45