Merge remote-tracking branches 'regulator/fix/88pm800', 'regulator/fix/max8973',...
[linux-drm-fsl-dcu.git] / Documentation / devicetree / bindings / power / bq24257.txt
1 Binding for TI bq24257 Li-Ion Charger
2
3 Required properties:
4 - compatible: Should contain one of the following:
5  * "ti,bq24257"
6 - reg:                     integer, i2c address of the device.
7 - ti,battery-regulation-voltage: integer, maximum charging voltage in uV.
8 - ti,charge-current:       integer, maximum charging current in uA.
9 - ti,termination-current:  integer, charge will be terminated when current in
10                            constant-voltage phase drops below this value (in uA).
11
12 Example:
13
14 bq24257 {
15         compatible = "ti,bq24257";
16         reg = <0x6a>;
17
18         ti,battery-regulation-voltage = <4200000>;
19         ti,charge-current = <1000000>;
20         ti,termination-current = <50000>;
21 };