brcm,bcm59056.txt 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. -------------------------------
  2. BCM590xx Power Management Units
  3. -------------------------------
  4. Required properties:
  5. - compatible: "brcm,bcm59056"
  6. - reg: I2C slave address
  7. - interrupts: interrupt for the PMU. Generic interrupt client node bindings
  8. are described in interrupt-controller/interrupts.txt
  9. ------------------
  10. Voltage Regulators
  11. ------------------
  12. Optional child nodes:
  13. - regulators: container node for regulators following the generic
  14. regulator binding in regulator/regulator.txt
  15. The valid regulator node names for BCM59056 are:
  16. rfldo, camldo1, camldo2, simldo1, simldo2, sdldo, sdxldo,
  17. mmcldo1, mmcldo2, audldo, micldo, usbldo, vibldo,
  18. csr, iosr1, iosr2, msr, sdsr1, sdsr2, vsr,
  19. gpldo1, gpldo2, gpldo3, gpldo4, gpldo5, gpldo6,
  20. vbus
  21. Example:
  22. pmu: bcm59056@8 {
  23. compatible = "brcm,bcm59056";
  24. reg = <0x08>;
  25. interrupts = <GIC_SPI 215 IRQ_TYPE_LEVEL_HIGH>;
  26. regulators {
  27. rfldo_reg: rfldo {
  28. regulator-min-microvolt = <1200000>;
  29. regulator-max-microvolt = <3300000>;
  30. };
  31. ...
  32. };
  33. };