0001 Broadcom Stingray USB PHY
0002
0003 Required properties:
0004 - compatible : should be one of the listed compatibles
0005 - "brcm,sr-usb-combo-phy" is combo PHY has two PHYs, one SS and one HS.
0006 - "brcm,sr-usb-hs-phy" is a single HS PHY.
0007 - reg: offset and length of the PHY blocks registers
0008 - #phy-cells:
0009 - Must be 1 for brcm,sr-usb-combo-phy as it expects one argument to indicate
0010 the PHY number of two PHYs. 0 for HS PHY and 1 for SS PHY.
0011 - Must be 0 for brcm,sr-usb-hs-phy.
0012
0013 Refer to phy/phy-bindings.txt for the generic PHY binding properties
0014
0015 Example:
0016 usbphy0: usb-phy@0 {
0017 compatible = "brcm,sr-usb-combo-phy";
0018 reg = <0x00000000 0x100>;
0019 #phy-cells = <1>;
0020 };
0021
0022 usbphy1: usb-phy@10000 {
0023 compatible = "brcm,sr-usb-combo-phy";
0024 reg = <0x00010000 0x100>,
0025 #phy-cells = <1>;
0026 };
0027
0028 usbphy2: usb-phy@20000 {
0029 compatible = "brcm,sr-usb-hs-phy";
0030 reg = <0x00020000 0x100>,
0031 #phy-cells = <0>;
0032 };