]> git.ipfire.org Git - thirdparty/u-boot.git/blob - Bindings/power/supply/tps65090-charger.yaml
Squashed 'dts/upstream/' content from commit aaba2d45dc2a
[thirdparty/u-boot.git] / Bindings / power / supply / tps65090-charger.yaml
1 # SPDX-License-Identifier: GPL-2.0
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/power/supply/tps65090-charger.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: TPS65090 Frontend PMU with Switchmode Charger
8
9 maintainers:
10 - Sebastian Reichel <sre@kernel.org>
11
12 allOf:
13 - $ref: power-supply.yaml#
14
15 properties:
16 compatible:
17 const: ti,tps65090-charger
18
19 ti,enable-low-current-chrg:
20 type: boolean
21 description: |
22 Enables charging when a low current is detected while the default logic is to stop charging.
23
24 required:
25 - compatible
26
27 additionalProperties: false
28
29 examples:
30 - |
31 pmic {
32 charger {
33 compatible = "ti,tps65090-charger";
34 ti,enable-low-current-chrg;
35 };
36 };