anatop-regulator.txt 909 B

123456789101112131415161718192021222324252627282930
  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. Any property defined as part of the core regulator
  11. binding, defined in regulator.txt, can also be used.
  12. Example:
  13. regulator-vddpu {
  14. compatible = "fsl,anatop-regulator";
  15. regulator-name = "vddpu";
  16. regulator-min-microvolt = <725000>;
  17. regulator-max-microvolt = <1300000>;
  18. regulator-always-on;
  19. anatop-reg-offset = <0x140>;
  20. anatop-vol-bit-shift = <9>;
  21. anatop-vol-bit-width = <5>;
  22. anatop-min-bit-val = <1>;
  23. anatop-min-voltage = <725000>;
  24. anatop-max-voltage = <1300000>;
  25. };