bcm-ns-usb3-phy.txt 794 B

12345678910111213141516171819202122232425262728293031323334
  1. Driver for Broadcom Northstar USB 3.0 PHY
  2. Required properties:
  3. - compatible: one of: "brcm,ns-ax-usb3-phy", "brcm,ns-bx-usb3-phy".
  4. - reg: address of MDIO bus device
  5. - usb3-dmp-syscon: phandle to syscon with DMP (Device Management Plugin)
  6. registers
  7. - #phy-cells: must be 0
  8. Initialization of USB 3.0 PHY depends on Northstar version. There are currently
  9. three known series: Ax, Bx and Cx.
  10. Known A0: BCM4707 rev 0
  11. Known B0: BCM4707 rev 4, BCM53573 rev 2
  12. Known B1: BCM4707 rev 6
  13. Known C0: BCM47094 rev 0
  14. Example:
  15. mdio: mdio@0 {
  16. reg = <0x0>;
  17. #size-cells = <1>;
  18. #address-cells = <0>;
  19. usb3-phy@10 {
  20. compatible = "brcm,ns-ax-usb3-phy";
  21. reg = <0x10>;
  22. usb3-dmp-syscon = <&usb3_dmp>;
  23. #phy-cells = <0>;
  24. };
  25. };
  26. usb3_dmp: syscon@18105000 {
  27. reg = <0x18105000 0x1000>;
  28. };