da9210.txt 540 B

12345678910111213141516171819202122232425
  1. * Dialog Semiconductor DA9210 Voltage Regulator
  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. regulator-min-microvolt = <900000>;
  14. regulator-max-microvolt = <1000000>;
  15. regulator-boot-on;
  16. regulator-always-on;
  17. };