diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-03-13 10:18:42 +0100 |
---|---|---|
committer | Shawn Guo <shawn.guo@freescale.com> | 2014-04-30 13:35:20 +0800 |
commit | f415153c0ecaae1f4515df35d2c6d055ed97909c (patch) | |
tree | 17fb72fea926c0f5869ca288956a23385ea0a3f0 /arch/arm/boot/dts/imx25.dtsi | |
parent | 056c5a598ffdf3812d026365b726b2bbdc28983a (diff) | |
download | linux-f415153c0ecaae1f4515df35d2c6d055ed97909c.tar.gz linux-f415153c0ecaae1f4515df35d2c6d055ed97909c.tar.bz2 linux-f415153c0ecaae1f4515df35d2c6d055ed97909c.zip |
ARM: dts: imx25.dtsi: Fix USB support.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Denis Carikli <denis@eukrea.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Diffstat (limited to 'arch/arm/boot/dts/imx25.dtsi')
-rw-r--r-- | arch/arm/boot/dts/imx25.dtsi | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/arch/arm/boot/dts/imx25.dtsi b/arch/arm/boot/dts/imx25.dtsi index cc441ec11818..9c092571d482 100644 --- a/arch/arm/boot/dts/imx25.dtsi +++ b/arch/arm/boot/dts/imx25.dtsi @@ -483,22 +483,13 @@ clocks = <&clks 99>; }; - usbphy1: usbphy@1 { - compatible = "nop-usbphy"; - status = "disabled"; - }; - - usbphy2: usbphy@2 { - compatible = "nop-usbphy"; - status = "disabled"; - }; - usbotg: usb@53ff4000 { compatible = "fsl,imx25-usb", "fsl,imx27-usb"; reg = <0x53ff4000 0x0200>; interrupts = <37>; clocks = <&clks 70>; fsl,usbmisc = <&usbmisc 0>; + fsl,usbphy = <&usbphy0>; status = "disabled"; }; @@ -508,6 +499,7 @@ interrupts = <35>; clocks = <&clks 70>; fsl,usbmisc = <&usbmisc 1>; + fsl,usbphy = <&usbphy1>; status = "disabled"; }; @@ -517,7 +509,6 @@ clocks = <&clks 9>, <&clks 70>, <&clks 8>; clock-names = "ipg", "ahb", "per"; reg = <0x53ff4600 0x00f>; - status = "disabled"; }; dryice@53ffc000 { @@ -549,4 +540,20 @@ }; }; }; + + usbphy { + compatible = "simple-bus"; + #address-cells = <1>; + #size-cells = <0>; + + usbphy0: usb-phy@0 { + reg = <0>; + compatible = "usb-nop-xceiv"; + }; + + usbphy1: usb-phy@1 { + reg = <1>; + compatible = "usb-nop-xceiv"; + }; + }; }; |