fixed-regulator.txt 906 B

12345678910111213141516171819202122232425262728293031
  1. Fixed Voltage regulators
  2. Required properties:
  3. - compatible: Must be "regulator-fixed";
  4. Optional properties:
  5. - gpio: gpio to use for enable control
  6. - startup-delay-us: startup time in microseconds
  7. - enable-active-high: Polarity of GPIO is Active high
  8. If this property is missing, the default assumed is Active low.
  9. - parent-supply: phandle to the parent supply/regulator node if one exists.
  10. Any property defined as part of the core regulator
  11. binding, defined in regulator.txt, can also be used.
  12. However a fixed voltage regulator is expected to have the
  13. regulator-min-microvolt and regulator-max-microvolt
  14. to be the same.
  15. Example:
  16. abc: fixedregulator@0 {
  17. compatible = "regulator-fixed";
  18. regulator-name = "fixed-supply";
  19. regulator-min-microvolt = <1800000>;
  20. regulator-max-microvolt = <1800000>;
  21. gpio = <&gpio1 16 0>;
  22. startup-delay-us = <70000>;
  23. enable-active-high;
  24. regulator-boot-on
  25. };