rn5t618.txt 981 B

123456789101112131415161718192021222324252627282930313233343536
  1. * Ricoh RN5T618 PMIC
  2. Ricoh RN5T618 is a power management IC which integrates 3 step-down
  3. DCDC converters, 7 low-dropout regulators, a Li-ion battery charger,
  4. fuel gauge, ADC, GPIOs and a watchdog timer. It can be controlled
  5. through a I2C interface.
  6. Required properties:
  7. - compatible: should be "ricoh,rn5t618"
  8. - reg: the I2C slave address of the device
  9. Sub-nodes:
  10. - regulators: the node is required if the regulator functionality is
  11. needed. The valid regulator names are: DCDC1, DCDC2, DCDC3, LDO1,
  12. LDO2, LDO3, LDO4, LDO5, LDORTC1 and LDORTC2.
  13. The common bindings for each individual regulator can be found in:
  14. Documentation/devicetree/bindings/regulator/regulator.txt
  15. Example:
  16. pmic@32 {
  17. compatible = "ricoh,rn5t618";
  18. reg = <0x32>;
  19. regulators {
  20. DCDC1 {
  21. regulator-min-microvolt = <1050000>;
  22. regulator-max-microvolt = <1050000>;
  23. };
  24. DCDC2 {
  25. regulator-min-microvolt = <1175000>;
  26. regulator-max-microvolt = <1175000>;
  27. };
  28. };
  29. };