anatop-regulator.txt 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Anatop Voltage regulators
  2. Required properties:
  3. - compatible: Must be "fsl,anatop-regulator"
  4. - anatop-reg-offset: Anatop MFD register offset
  5. - anatop-vol-bit-shift: Bit shift for the register
  6. - anatop-vol-bit-width: Number of bits used in the register
  7. - anatop-min-bit-val: Minimum value of this register
  8. - anatop-min-voltage: Minimum voltage of this regulator
  9. - anatop-max-voltage: Maximum voltage of this regulator
  10. Optional properties:
  11. - anatop-delay-reg-offset: Anatop MFD step time register offset
  12. - anatop-delay-bit-shift: Bit shift for the step time register
  13. - anatop-delay-bit-width: Number of bits used in the step time register
  14. Any property defined as part of the core regulator
  15. binding, defined in regulator.txt, can also be used.
  16. Example:
  17. regulator-vddpu {
  18. compatible = "fsl,anatop-regulator";
  19. regulator-name = "vddpu";
  20. regulator-min-microvolt = <725000>;
  21. regulator-max-microvolt = <1300000>;
  22. regulator-always-on;
  23. anatop-reg-offset = <0x140>;
  24. anatop-vol-bit-shift = <9>;
  25. anatop-vol-bit-width = <5>;
  26. anatop-delay-reg-offset = <0x170>;
  27. anatop-delay-bit-shift = <24>;
  28. anatop-delay-bit-width = <2>;
  29. anatop-min-bit-val = <1>;
  30. anatop-min-voltage = <725000>;
  31. anatop-max-voltage = <1300000>;
  32. };