fsl,anatop-regulator.txt 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ANATOP REGULATOR
  2. Anatop is an integrated regulator inside i.MX6 SoC.
  3. Required properties:
  4. - compatible: Must be "fsl,anatop-regulator".
  5. - regulator-name: Name of the regulator
  6. - anatop-reg-offset: u32 value representing the anatop MFD register offset.
  7. - anatop-vol-bit-shift: u32 value representing the bit shift for the register.
  8. - anatop-vol-bit-width: u32 value representing the number of bits used in the
  9. register.
  10. - anatop-min-bit-val: u32 value representing the minimum value of this
  11. register.
  12. - anatop-min-voltage: u32 value representing the minimum voltage of this
  13. regulator.
  14. - anatop-max-voltage: u32 value representing the maximum voltage of this
  15. regulator.
  16. Optional properties:
  17. - anatop-delay-reg-offset: u32 value representing the anatop MFD step time
  18. register offset.
  19. - anatop-delay-bit-shift: u32 value representing the bit shift for the step
  20. time register.
  21. - anatop-delay-bit-width: u32 value representing the number of bits used in
  22. the step time register.
  23. - anatop-enable-bit: u32 value representing regulator enable bit offset.
  24. - vin-supply: input supply phandle.
  25. Example:
  26. regulator-vddpu {
  27. compatible = "fsl,anatop-regulator";
  28. regulator-name = "vddpu";
  29. regulator-min-microvolt = <725000>;
  30. regulator-max-microvolt = <1300000>;
  31. regulator-always-on;
  32. anatop-reg-offset = <0x140>;
  33. anatop-vol-bit-shift = <9>;
  34. anatop-vol-bit-width = <5>;
  35. anatop-delay-reg-offset = <0x170>;
  36. anatop-delay-bit-shift = <24>;
  37. anatop-delay-bit-width = <2>;
  38. anatop-min-bit-val = <1>;
  39. anatop-min-voltage = <725000>;
  40. anatop-max-voltage = <1300000>;
  41. };