phy-lpc18xx-usb-otg.txt 759 B

123456789101112131415161718192021222324252627
  1. NXP LPC18xx/43xx internal USB OTG PHY binding
  2. ---------------------------------------------
  3. This file contains documentation for the internal USB OTG PHY found
  4. in NXP LPC18xx and LPC43xx SoCs.
  5. Required properties:
  6. - compatible : must be "nxp,lpc1850-usb-otg-phy"
  7. - clocks : must be exactly one entry
  8. See: Documentation/devicetree/bindings/clock/clock-bindings.txt
  9. - #phy-cells : must be 0 for this phy
  10. See: Documentation/devicetree/bindings/phy/phy-bindings.txt
  11. The phy node must be a child of the creg syscon node.
  12. Example:
  13. creg: syscon@40043000 {
  14. compatible = "nxp,lpc1850-creg", "syscon", "simple-mfd";
  15. reg = <0x40043000 0x1000>;
  16. usb0_otg_phy: phy {
  17. compatible = "nxp,lpc1850-usb-otg-phy";
  18. clocks = <&ccu1 CLK_USB0>;
  19. #phy-cells = <0>;
  20. };
  21. };