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