Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

regulator: Add regulator-output binding

This describes a power output supplied by a regulator, such as a
power outlet on a power distribution unit (PDU).

Signed-off-by: Zev Weiss <zev@bewilderbeest.net>
Reviewed-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20221031233704.22575-3-zev@bewilderbeest.net
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Zev Weiss and committed by
Mark Brown
14b8ad4c fd184506

+39
+39
Documentation/devicetree/bindings/regulator/regulator-output.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + 5 + $id: http://devicetree.org/schemas/regulator/regulator-output.yaml# 6 + $schema: http://devicetree.org/meta-schemas/core.yaml# 7 + 8 + title: Regulator output connector 9 + 10 + maintainers: 11 + - Zev Weiss <zev@bewilderbeest.net> 12 + 13 + description: | 14 + This describes a power output connector supplied by a regulator, 15 + such as a power outlet on a power distribution unit (PDU). The 16 + connector may be standalone or merely one channel or set of pins 17 + within a ganged physical connector carrying multiple independent 18 + power outputs. 19 + 20 + properties: 21 + compatible: 22 + const: regulator-output 23 + 24 + vout-supply: 25 + description: 26 + Phandle of the regulator supplying the output. 27 + 28 + required: 29 + - compatible 30 + - vout-supply 31 + 32 + additionalProperties: false 33 + 34 + examples: 35 + - | 36 + output { 37 + compatible = "regulator-output"; 38 + vout-supply = <&output_reg>; 39 + };