ARM: dts: add ohci and ehci controller nodes for EXYNOS5440
authorThomas Abraham <thomas.ab@samsung.com>
Tue, 11 Jun 2013 19:58:34 +0000 (04:58 +0900)
committerKukjin Kim <kgene.kim@samsung.com>
Tue, 11 Jun 2013 19:58:34 +0000 (04:58 +0900)
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>
arch/arm/boot/dts/exynos5440.dtsi

index 871ebad..9fd7884 100644 (file)
                clock-names = "sata";
        };
 
+       ohci@220000 {
+               compatible = "samsung,exynos5440-ohci";
+               reg = <0x220000 0x1000>;
+               interrupts = <0 29 0>;
+               clocks = <&clock 24>;
+               clock-names = "usbhost";
+       };
+
+       ehci@221000 {
+               compatible = "samsung,exynos5440-ehci";
+               reg = <0x221000 0x1000>;
+               interrupts = <0 29 0>;
+               clocks = <&clock 24>;
+               clock-names = "usbhost";
+       };
 };