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 };
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.