pistachio-usb-phy.txt 897 B

1234567891011121314151617181920212223242526272829
  1. IMG Pistachio USB PHY
  2. =====================
  3. Required properties:
  4. --------------------
  5. - compatible: Must be "img,pistachio-usb-phy".
  6. - #phy-cells: Must be 0. See ./phy-bindings.txt for details.
  7. - clocks: Must contain an entry for each entry in clock-names.
  8. See ../clock/clock-bindings.txt for details.
  9. - clock-names: Must include "usb_phy".
  10. - img,cr-top: Must constain a phandle to the CR_TOP syscon node.
  11. - img,refclk: Indicates the reference clock source for the USB PHY.
  12. See <dt-bindings/phy/phy-pistachio-usb.h> for a list of valid values.
  13. Optional properties:
  14. --------------------
  15. - phy-supply: USB VBUS supply. Must supply 5.0V.
  16. Example:
  17. --------
  18. usb_phy: usb-phy {
  19. compatible = "img,pistachio-usb-phy";
  20. clocks = <&clk_core CLK_USB_PHY>;
  21. clock-names = "usb_phy";
  22. phy-supply = <&usb_vbus>;
  23. img,refclk = <REFCLK_CLK_CORE>;
  24. img,cr-top = <&cr_top>;
  25. #phy-cells = <0>;
  26. };