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