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