regulator-output.yaml 918 B

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