88pm860x.txt 752 B

123456789101112131415161718192021222324252627282930
  1. Marvell 88PM860x regulator
  2. Required properties:
  3. - compatible: "marvell,88pm860x"
  4. - reg: I2C slave address
  5. - regulators: A node that houses a sub-node for each regulator within the
  6. device. Each sub-node is identified using the regulator-compatible
  7. property, with valid values listed below.
  8. Example:
  9. pmic: 88pm860x@34 {
  10. compatible = "marvell,88pm860x";
  11. reg = <0x34>;
  12. regulators {
  13. BUCK1 {
  14. regulator-min-microvolt = <1000000>;
  15. regulator-max-microvolt = <1500000>;
  16. regulator-boot-on;
  17. regulator-always-on;
  18. };
  19. BUCK3 {
  20. regulator-min-microvolt = <1000000>;
  21. regulator-max-microvolt = <3000000>;
  22. regulator-boot-on;
  23. regulator-always-on;
  24. };
  25. };
  26. };