usb-phy.txt 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. USB PHY
  2. OMAP USB2 PHY
  3. Required properties:
  4. - compatible: Should be "ti,omap-usb2"
  5. - reg : Address and length of the register set for the device.
  6. Optional properties:
  7. - ctrl-module : phandle of the control module used by PHY driver to power on
  8. the PHY.
  9. This is usually a subnode of ocp2scp to which it is connected.
  10. usb2phy@4a0ad080 {
  11. compatible = "ti,omap-usb2";
  12. reg = <0x4a0ad080 0x58>;
  13. ctrl-module = <&omap_control_usb>;
  14. };
  15. OMAP USB3 PHY
  16. Required properties:
  17. - compatible: Should be "ti,omap-usb3"
  18. - reg : Address and length of the register set for the device.
  19. - reg-names: The names of the register addresses corresponding to the registers
  20. filled in "reg".
  21. Optional properties:
  22. - ctrl-module : phandle of the control module used by PHY driver to power on
  23. the PHY.
  24. This is usually a subnode of ocp2scp to which it is connected.
  25. usb3phy@4a084400 {
  26. compatible = "ti,omap-usb3";
  27. reg = <0x4a084400 0x80>,
  28. <0x4a084800 0x64>,
  29. <0x4a084c00 0x40>;
  30. reg-names = "phy_rx", "phy_tx", "pll_ctrl";
  31. ctrl-module = <&omap_control_usb>;
  32. };