Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | # SPDX-License-Identifier: GPL-2.0 %YAML 1.2 --- $id: http://devicetree.org/schemas/power/supply/lltc,lt3651-charger.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Analog Devices LT3651 Charger Power Supply maintainers: - Sebastian Reichel <sre@kernel.org> allOf: - $ref: power-supply.yaml# properties: compatible: enum: - lltc,lt3651-charger - lltc,ltc3651-charger # deprecated, use lltc,lt3651-charger lltc,acpr-gpios: maxItems: 1 lltc,fault-gpios: maxItems: 1 lltc,chrg-gpios: maxItems: 1 required: - compatible - lltc,acpr-gpios additionalProperties: false examples: - | #include <dt-bindings/gpio/gpio.h> charger { compatible = "lltc,lt3651-charger"; lltc,acpr-gpios = <&gpio0 68 GPIO_ACTIVE_LOW>; lltc,fault-gpios = <&gpio0 64 GPIO_ACTIVE_LOW>; lltc,chrg-gpios = <&gpio0 63 GPIO_ACTIVE_LOW>; }; |