brcm,stingray-usb-phy.txt 902 B

1234567891011121314151617181920212223242526272829303132
  1. Broadcom Stingray USB PHY
  2. Required properties:
  3. - compatible : should be one of the listed compatibles
  4. - "brcm,sr-usb-combo-phy" is combo PHY has two PHYs, one SS and one HS.
  5. - "brcm,sr-usb-hs-phy" is a single HS PHY.
  6. - reg: offset and length of the PHY blocks registers
  7. - #phy-cells:
  8. - Must be 1 for brcm,sr-usb-combo-phy as it expects one argument to indicate
  9. the PHY number of two PHYs. 0 for HS PHY and 1 for SS PHY.
  10. - Must be 0 for brcm,sr-usb-hs-phy.
  11. Refer to phy/phy-bindings.txt for the generic PHY binding properties
  12. Example:
  13. usbphy0: usb-phy@0 {
  14. compatible = "brcm,sr-usb-combo-phy";
  15. reg = <0x00000000 0x100>;
  16. #phy-cells = <1>;
  17. };
  18. usbphy1: usb-phy@10000 {
  19. compatible = "brcm,sr-usb-combo-phy";
  20. reg = <0x00010000 0x100>,
  21. #phy-cells = <1>;
  22. };
  23. usbphy2: usb-phy@20000 {
  24. compatible = "brcm,sr-usb-hs-phy";
  25. reg = <0x00020000 0x100>,
  26. #phy-cells = <0>;
  27. };