anatop-regulator.txt 1.4 KB

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