phy-lantiq-rcu-usb2.txt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Lantiq XWAY SoC RCU USB 1.1/2.0 PHY binding
  2. ===========================================
  3. This binding describes the USB PHY hardware provided by the RCU module on the
  4. Lantiq XWAY SoCs.
  5. This node has to be a sub node of the Lantiq RCU block.
  6. -------------------------------------------------------------------------------
  7. Required properties (controller (parent) node):
  8. - compatible : Should be one of
  9. "lantiq,ase-usb2-phy"
  10. "lantiq,danube-usb2-phy"
  11. "lantiq,xrx100-usb2-phy"
  12. "lantiq,xrx200-usb2-phy"
  13. "lantiq,xrx300-usb2-phy"
  14. - reg : Defines the following sets of registers in the parent
  15. syscon device
  16. - Offset of the USB PHY configuration register
  17. - Offset of the USB Analog configuration
  18. register (only for xrx200 and xrx200)
  19. - clocks : References to the (PMU) "phy" clk gate.
  20. - clock-names : Must be "phy"
  21. - resets : References to the RCU USB configuration reset bits.
  22. - reset-names : Must be one of the following:
  23. "phy" (optional)
  24. "ctrl" (shared)
  25. -------------------------------------------------------------------------------
  26. Example for the USB PHYs on an xRX200 SoC:
  27. usb_phy0: usb2-phy@18 {
  28. compatible = "lantiq,xrx200-usb2-phy";
  29. reg = <0x18 4>, <0x38 4>;
  30. clocks = <&pmu PMU_GATE_USB0_PHY>;
  31. clock-names = "phy";
  32. resets = <&reset1 4 4>, <&reset0 4 4>;
  33. reset-names = "phy", "ctrl";
  34. #phy-cells = <0>;
  35. };