axp20x_usb_power.txt 648 B

12345678910111213141516171819202122232425262728293031323334
  1. AXP20x USB power supply
  2. Required Properties:
  3. -compatible: "x-powers,axp202-usb-power-supply"
  4. This node is a subnode of the axp20x PMIC.
  5. Example:
  6. axp209: pmic@34 {
  7. compatible = "x-powers,axp209";
  8. reg = <0x34>;
  9. interrupt-parent = <&nmi_intc>;
  10. interrupts = <0 IRQ_TYPE_LEVEL_LOW>;
  11. interrupt-controller;
  12. #interrupt-cells = <1>;
  13. regulators {
  14. x-powers,dcdc-freq = <1500>;
  15. vdd_cpu: dcdc2 {
  16. regulator-always-on;
  17. regulator-min-microvolt = <1000000>;
  18. regulator-max-microvolt = <1450000>;
  19. regulator-name = "vdd-cpu";
  20. };
  21. ...
  22. };
  23. usb-power-supply: usb-power-supply {
  24. compatible = "x-powers,axp202-usb-power-supply";
  25. };
  26. };