1 Binding for TI bq24250/bq24251/bq24257 Li-Ion Charger
4 - compatible: Should contain one of the following:
8 - reg: integer, i2c address of the device.
9 - interrupts: Interrupt mapping for GPIO IRQ (configure for both edges). Use in
10 conjunction with "interrupt-parent".
11 - ti,battery-regulation-voltage: integer, maximum charging voltage in uV.
12 - ti,charge-current: integer, maximum charging current in uA.
13 - ti,termination-current: integer, charge will be terminated when current in
14 constant-voltage phase drops below this value (in uA).
17 - pg-gpios: GPIO used for connecting the bq2425x device PG (Power Good) pin.
18 This pin is not available on all devices however it should be used if
19 possible as this is the recommended way to obtain the charger's input PG
20 state. If this pin is not specified a software-based approach for PG
22 - ti,current-limit: The maximum current to be drawn from the charger's input
23 (in uA). If this property is not specified, the input limit current is
24 set automatically using USB D+/D- signal based charger type detection.
25 If the hardware does not support the D+/D- based detection, a default
26 of 500,000 is used (=500mA) instead.
27 - ti,ovp-voltage: Configures the over voltage protection voltage (in uV). If
28 not specified a default of 6,5000,000 (=6.5V) is used.
29 - ti,in-dpm-voltage: Configures the threshold input voltage for the dynamic
30 power path management (in uV). If not specified a default of 4,360,000
36 compatible = "ti,bq24257";
38 interrupt-parent = <&gpio1>;
39 interrupts = <16 IRQ_TYPE_EDGE_BOTH>;
41 pg-gpios = <&gpio1 28 GPIO_ACTIVE_HIGH>;
43 ti,battery-regulation-voltage = <4200000>;
44 ti,charge-current = <1000000>;
45 ti,termination-current = <50000>;
51 compatible = "ti,bq24250";
53 interrupt-parent = <&gpio1>;
54 interrupts = <16 IRQ_TYPE_EDGE_BOTH>;
56 ti,battery-regulation-voltage = <4200000>;
57 ti,charge-current = <500000>;
58 ti,termination-current = <50000>;
59 ti,current-limit = <900000>;
60 ti,ovp-voltage = <9500000>;
61 ti,in-dpm-voltage = <4440000>;