da9210.txt 662 B

123456789101112131415161718192021222324252627282930
  1. * Dialog Semiconductor DA9210 Multi-phase 12A DCDC BUCK Converter
  2. Required properties:
  3. - compatible: must be "dlg,da9210"
  4. - reg: the i2c slave address of the regulator. It should be 0x68.
  5. Optional properties:
  6. - interrupts: a reference to the DA9210 interrupt, if available.
  7. Any standard regulator properties can be used to configure the single da9210
  8. DCDC.
  9. Example:
  10. da9210@68 {
  11. compatible = "dlg,da9210";
  12. reg = <0x68>;
  13. interrupt-parent = <...>;
  14. interrupts = <...>;
  15. regulator-min-microvolt = <300000>;
  16. regulator-max-microvolt = <1570000>;
  17. regulator-min-microamp = <1600000>;
  18. regulator-max-microamp = <4600000>;
  19. regulator-boot-on;
  20. };