bcm-ns-usb2-phy.txt 674 B

12345678910111213141516171819202122
  1. Driver for Broadcom Northstar USB 2.0 PHY
  2. Required properties:
  3. - compatible: brcm,ns-usb2-phy
  4. - reg: iomem address range of DMU (Device Management Unit)
  5. - reg-names: "dmu", the only needed & supported reg right now
  6. - clocks: USB PHY reference clock
  7. - clock-names: "phy-ref-clk", the only needed & supported clock right now
  8. To initialize USB 2.0 PHY driver needs to setup PLL correctly. To do this it
  9. requires passing phandle to the USB PHY reference clock.
  10. Example:
  11. usb2-phy {
  12. compatible = "brcm,ns-usb2-phy";
  13. reg = <0x1800c000 0x1000>;
  14. reg-names = "dmu";
  15. #phy-cells = <0>;
  16. clocks = <&genpll BCM_NSP_GENPLL_USB_PHY_REF_CLK>;
  17. clock-names = "phy-ref-clk";
  18. };