meson-usb2-phy.txt 775 B

12345678910111213141516171819202122232425262728
  1. * Amlogic USB2 PHY
  2. Required properties:
  3. - compatible: Depending on the platform this should be one of:
  4. "amlogic,meson8b-usb2-phy"
  5. "amlogic,meson-gxbb-usb2-phy"
  6. - reg: The base address and length of the registers
  7. - #phys-cells: should be 0 (see phy-bindings.txt in this directory)
  8. - clocks: phandle and clock identifier for the phy clocks
  9. - clock-names: "usb_general" and "usb"
  10. Optional properties:
  11. - resets: reference to the reset controller
  12. - phy-supply: see phy-bindings.txt in this directory
  13. Example:
  14. usb0_phy: usb_phy@0 {
  15. compatible = "amlogic,meson-gxbb-usb2-phy";
  16. #phy-cells = <0>;
  17. reg = <0x0 0x0 0x0 0x20>;
  18. resets = <&reset RESET_USB_OTG>;
  19. clocks = <&clkc CLKID_USB>, <&clkc CLKID_USB0>;
  20. clock-names = "usb_general", "usb";
  21. phy-supply = <&usb_vbus>;
  22. };