anatop-regulator.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. - vin-supply: The supply for this regulator
  15. Any property defined as part of the core regulator
  16. binding, defined in regulator.txt, can also be used.
  17. Example:
  18. regulator-vddpu {
  19. compatible = "fsl,anatop-regulator";
  20. regulator-name = "vddpu";
  21. regulator-min-microvolt = <725000>;
  22. regulator-max-microvolt = <1300000>;
  23. regulator-always-on;
  24. anatop-reg-offset = <0x140>;
  25. anatop-vol-bit-shift = <9>;
  26. anatop-vol-bit-width = <5>;
  27. anatop-delay-reg-offset = <0x170>;
  28. anatop-delay-bit-shift = <24>;
  29. anatop-delay-bit-width = <2>;
  30. anatop-min-bit-val = <1>;
  31. anatop-min-voltage = <725000>;
  32. anatop-max-voltage = <1300000>;
  33. };