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
7title: TPS65090 Frontend PMU with Switchmode Charger
8
9maintainers:
10  - Sebastian Reichel <sre@kernel.org>
11
12allOf:
13  - $ref: power-supply.yaml#
14
15properties:
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
24required:
25  - compatible
26
27additionalProperties: false
28
29examples:
30  - |
31    pmic {
32      charger {
33        compatible = "ti,tps65090-charger";
34        ti,enable-low-current-chrg;
35      };
36    };
37