Back to home page

OSCL-LXR

 
 

    


0001 NXP LPC18xx/43xx internal USB OTG PHY binding
0002 ---------------------------------------------
0003 
0004 This file contains documentation for the internal USB OTG PHY found
0005 in NXP LPC18xx and LPC43xx SoCs.
0006 
0007 Required properties:
0008 - compatible    : must be "nxp,lpc1850-usb-otg-phy"
0009 - clocks        : must be exactly one entry
0010 See: Documentation/devicetree/bindings/clock/clock-bindings.txt
0011 - #phy-cells    : must be 0 for this phy
0012 See: Documentation/devicetree/bindings/phy/phy-bindings.txt
0013 
0014 The phy node must be a child of the creg syscon node.
0015 
0016 Example:
0017 creg: syscon@40043000 {
0018         compatible = "nxp,lpc1850-creg", "syscon", "simple-mfd";
0019         reg = <0x40043000 0x1000>;
0020 
0021         usb0_otg_phy: phy {
0022                 compatible = "nxp,lpc1850-usb-otg-phy";
0023                 clocks = <&ccu1 CLK_USB0>;
0024                 #phy-cells = <0>;
0025         };
0026 };