88pm800.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Marvell 88PM800 regulator
  2. Required properties:
  3. - compatible: "marvell,88pm800"
  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 node's name (or the deprecated
  7. regulator-compatible property if present), with valid values listed below.
  8. The content of each sub-node is defined by the standard binding for
  9. regulators; see regulator.txt.
  10. The valid names for regulators are:
  11. buck1, buck2, buck3, buck4, buck5, ldo1, ldo2, ldo3, ldo4, ldo5, ldo6, ldo7,
  12. ldo8, ldo9, ldo10, ldo11, ldo12, ldo13, ldo14, ldo15, ldo16, ldo17, ldo18, ldo19
  13. Example:
  14. pmic: 88pm800@31 {
  15. compatible = "marvell,88pm800";
  16. reg = <0x31>;
  17. regulators {
  18. buck1 {
  19. regulator-min-microvolt = <600000>;
  20. regulator-max-microvolt = <3950000>;
  21. regulator-boot-on;
  22. regulator-always-on;
  23. };
  24. ldo1 {
  25. regulator-min-microvolt = <600000>;
  26. regulator-max-microvolt = <15000000>;
  27. regulator-boot-on;
  28. regulator-always-on;
  29. };
  30. ...
  31. };
  32. };