1Binding for TI bq25700 Li-Ion Charger 2 3Required properties: 4- compatible: Should contain one of the following: 5 * "ti,bq25700" 6- reg: integer, smbus 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,minimum-sys-voltage: integer, when battery is charging and it is below 10 minimum system voltage, the system will be regulated above 11 minimum-sys-voltage setting (in uV); 12 13Optional properties: 14 15Example: 16 17bq25700 { 18 compatible = "ti,bq25700"; 19 reg = <0x09>; 20 21 ti,charge-current = <1000000>; 22 ti,termination-current = <50000>; 23 ti,minimum-sys-voltage = <3600000>; 24}; 25