fixed-regulator.txt 1020 B

1234567891011121314151617181920212223242526272829303132333435
  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. - gpio-open-drain: GPIO is open drain type.
  10. If this property is missing then default assumption is false.
  11. -vin-supply: Input supply name.
  12. Any property defined as part of the core regulator
  13. binding, defined in regulator.txt, can also be used.
  14. However a fixed voltage regulator is expected to have the
  15. regulator-min-microvolt and regulator-max-microvolt
  16. to be the same.
  17. Example:
  18. abc: fixedregulator@0 {
  19. compatible = "regulator-fixed";
  20. regulator-name = "fixed-supply";
  21. regulator-min-microvolt = <1800000>;
  22. regulator-max-microvolt = <1800000>;
  23. gpio = <&gpio1 16 0>;
  24. startup-delay-us = <70000>;
  25. enable-active-high;
  26. regulator-boot-on;
  27. gpio-open-drain;
  28. vin-supply = <&parent_reg>;
  29. };