sun9i-usb-phy.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Allwinner sun9i USB PHY
  2. -----------------------
  3. Required properties:
  4. - compatible : should be one of
  5. * allwinner,sun9i-a80-usb-phy
  6. - reg : a list of offset + length pairs
  7. - #phy-cells : from the generic phy bindings, must be 0
  8. - phy_type : "hsic" for HSIC usage;
  9. other values or absence of this property indicates normal USB
  10. - clocks : phandle + clock specifier for the phy clocks
  11. - clock-names : depending on the "phy_type" property,
  12. * "phy" for normal USB
  13. * "hsic_480M", "hsic_12M" for HSIC
  14. - resets : a list of phandle + reset specifier pairs
  15. - reset-names : depending on the "phy_type" property,
  16. * "phy" for normal USB
  17. * "hsic" for HSIC
  18. Optional Properties:
  19. - phy-supply : from the generic phy bindings, a phandle to a regulator that
  20. provides power to VBUS.
  21. It is recommended to list all clocks and resets available.
  22. The driver will only use those matching the phy_type.
  23. Example:
  24. usbphy1: phy@00a01800 {
  25. compatible = "allwinner,sun9i-a80-usb-phy";
  26. reg = <0x00a01800 0x4>;
  27. clocks = <&usb_phy_clk 2>, <&usb_phy_clk 10>,
  28. <&usb_phy_clk 3>;
  29. clock-names = "hsic_480M", "hsic_12M", "phy";
  30. resets = <&usb_phy_clk 18>, <&usb_phy_clk 19>;
  31. reset-names = "hsic", "phy";
  32. status = "disabled";
  33. #phy-cells = <0>;
  34. };