max1586-regulator.txt 647 B

12345678910111213141516171819202122232425262728
  1. Maxim MAX1586 voltage regulator
  2. Required properties:
  3. - compatible: must be "maxim,max1586"
  4. - reg: I2C slave address, usually 0x14
  5. - v3-gain: integer specifying the V3 gain as per datasheet
  6. (1 + R24/R25 + R24/185.5kOhm)
  7. - any required generic properties defined in regulator.txt
  8. Example:
  9. i2c_master {
  10. max1586@14 {
  11. compatible = "maxim,max1586";
  12. reg = <0x14>;
  13. v3-gain = <1000000>;
  14. regulators {
  15. vcc_core: v3 {
  16. regulator-name = "vcc_core";
  17. regulator-compatible = "Output_V3";
  18. regulator-min-microvolt = <1000000>;
  19. regulator-max-microvolt = <1705000>;
  20. regulator-always-on;
  21. };
  22. };
  23. };
  24. };