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
8title: Regulator output connector
9
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).  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
20properties:
21  compatible:
22    const: regulator-output
23
24  vout-supply:
25    description:
26      Phandle of the regulator supplying the output.
27
28required:
29  - compatible
30  - vout-supply
31
32additionalProperties: false
33
34examples:
35  - |
36      output {
37          compatible = "regulator-output";
38          vout-supply = <&output_reg>;
39      };
40