max8660.txt 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Maxim MAX8660 voltage regulator
  2. Required properties:
  3. - compatible: must be one of "maxim,max8660", "maxim,max8661"
  4. - reg: I2C slave address, usually 0x34
  5. - any required generic properties defined in regulator.txt
  6. Example:
  7. i2c_master {
  8. max8660@34 {
  9. compatible = "maxim,max8660";
  10. reg = <0x34>;
  11. regulators {
  12. regulator@0 {
  13. regulator-compatible= "V3(DCDC)";
  14. regulator-min-microvolt = <725000>;
  15. regulator-max-microvolt = <1800000>;
  16. };
  17. regulator@1 {
  18. regulator-compatible= "V4(DCDC)";
  19. regulator-min-microvolt = <725000>;
  20. regulator-max-microvolt = <1800000>;
  21. };
  22. regulator@2 {
  23. regulator-compatible= "V5(LDO)";
  24. regulator-min-microvolt = <1700000>;
  25. regulator-max-microvolt = <2000000>;
  26. };
  27. regulator@3 {
  28. regulator-compatible= "V6(LDO)";
  29. regulator-min-microvolt = <1800000>;
  30. regulator-max-microvolt = <3300000>;
  31. };
  32. regulator@4 {
  33. regulator-compatible= "V7(LDO)";
  34. regulator-min-microvolt = <1800000>;
  35. regulator-max-microvolt = <3300000>;
  36. };
  37. };
  38. };
  39. };