1Binding for TI bq25703 Li-Ion Charger 2 3Required properties: 4- compatible: Should contain one of the following: 5 * "ti,bq25703" 6- reg: integer, i2c address of the device. 7- ti,max-charge-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 17 bq25703@6b { 18 compatible = "ti,bq25703"; 19 reg = <0x6b>; 20 21 ti,max-charge-voltage = <4200000>; 22 ti,charge-current = <1000000>; 23 ti,minimum-sys-voltage = <3600000>; 24 }; 25