From patchwork Thu Jan 3 15:12:56 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot,v3,2/3] EXYNOS5: Add device node for USB. Date: Thu, 03 Jan 2013 05:12:56 -0000 From: Vivek Gautam X-Patchwork-Id: 209304 Message-Id: <1357225977-13346-2-git-send-email-gautam.vivek@samsung.com> To: u-boot@lists.denx.de Cc: marex@denx.de, Rajeshwari Shinde , patches@linaro.org From: Rajeshwari Shinde This patch adds the device node required for USB Signed-off-by: Vivek Gautam --- Changes in v3: - Using a sub-node under ehci node for phy which provides "compatible" and "reg" information. Changes in v2: - None. arch/arm/dts/exynos5250.dtsi | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/arch/arm/dts/exynos5250.dtsi b/arch/arm/dts/exynos5250.dtsi index fa4d498..9179fc9 100644 --- a/arch/arm/dts/exynos5250.dtsi +++ b/arch/arm/dts/exynos5250.dtsi @@ -28,4 +28,17 @@ #address-cells = <1>; #size-cells = <0>; }; + + ehci@12110000 { + compatible = "samsung,exynos-ehci"; + reg = <0x12110000 0x100>; + #address-cells = <1>; + #size-cells = <1>; + + phy { + compatible = "samsung,exynos-usb-phy"; + reg = <0x12130000 0x100>; + }; + }; + };