aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot/dts
diff options
context:
space:
mode:
authorThomas Abraham <thomas.ab@samsung.com>2013-06-11 15:58:34 -0400
committerKukjin Kim <kgene.kim@samsung.com>2013-06-11 15:58:34 -0400
commita38089057fa450944f2e2d07885d76fd727c8d16 (patch)
treee8462911440ddec25e000549cb5bbc04079b91ec /arch/arm/boot/dts
parent82f73176fd8511b5c45493416b8f76ca0d102f5f (diff)
ARM: dts: add ohci and ehci controller nodes for EXYNOS5440
EXYNOS5440 includes both OHCI and EHCI usb host controllers. This patch adds device tree nodes for both of them. And the EHCI and OHCI controllers on exynos5440 do not need any explicit phy configuration. So need to assign a different compatible value for these controllers. Signed-off-by: Thomas Abraham <thomas.ab@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/boot/dts')
-rw-r--r--arch/arm/boot/dts/exynos5440.dtsi15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/exynos5440.dtsi b/arch/arm/boot/dts/exynos5440.dtsi
index 871ebad7bcbd..9fd78842e0e0 100644
--- a/arch/arm/boot/dts/exynos5440.dtsi
+++ b/arch/arm/boot/dts/exynos5440.dtsi
@@ -224,4 +224,19 @@
224 clock-names = "sata"; 224 clock-names = "sata";
225 }; 225 };
226 226
227 ohci@220000 {
228 compatible = "samsung,exynos5440-ohci";
229 reg = <0x220000 0x1000>;
230 interrupts = <0 29 0>;
231 clocks = <&clock 24>;
232 clock-names = "usbhost";
233 };
234
235 ehci@221000 {
236 compatible = "samsung,exynos5440-ehci";
237 reg = <0x221000 0x1000>;
238 interrupts = <0 29 0>;
239 clocks = <&clock 24>;
240 clock-names = "usbhost";
241 };
227}; 242};