2013-08-05 18:09:42

by Dongjin Kim

[permalink] [raw]
Subject: [PATCH RESEND] ARM: dts: Add USB host node for Exynos4

This patch adds EHCI and OHCI host device nodes for Exynos4.

CC: Jingoo Han <[email protected]>
Signed-off-by: Dongjin Kim <[email protected]>
---
arch/arm/boot/dts/exynos4.dtsi | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)

diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi
index 3f94fe8..cbe5219 100644
--- a/arch/arm/boot/dts/exynos4.dtsi
+++ b/arch/arm/boot/dts/exynos4.dtsi
@@ -155,6 +155,24 @@
status = "disabled";
};

+ ehci@12580000 {
+ compatible = "samsung,exynos4210-ehci";
+ reg = <0x12580000 0x100>;
+ interrupts = <0 70 0>;
+ clocks = <&clock 304>;
+ clock-names = "usbhost";
+ status = "disabled";
+ };
+
+ ohci@12590000 {
+ compatible = "samsung,exynos4210-ohci";
+ reg = <0x12590000 0x100>;
+ interrupts = <0 70 0>;
+ clocks = <&clock 304>;
+ clock-names = "usbhost";
+ status = "disabled";
+ };
+
mfc: codec@13400000 {
compatible = "samsung,mfc-v5";
reg = <0x13400000 0x10000>;
--
1.7.9.5


2013-08-06 01:16:36

by Jingoo Han

[permalink] [raw]
Subject: Re: [PATCH RESEND] ARM: dts: Add USB host node for Exynos4

On Tuesday, August 06, 2013 3:09 AM, Dongjin Kim wrote:
>
> This patch adds EHCI and OHCI host device nodes for Exynos4.
>
> CC: Jingoo Han <[email protected]>

Acked-by: Jingoo Han <[email protected]>


> Signed-off-by: Dongjin Kim <[email protected]>
> ---
> arch/arm/boot/dts/exynos4.dtsi | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)

2013-08-06 07:51:34

by Tomasz Figa

[permalink] [raw]
Subject: Re: [PATCH RESEND] ARM: dts: Add USB host node for Exynos4

Hi Dongjin,

On Tuesday 06 of August 2013 03:09:19 Dongjin Kim wrote:
> This patch adds EHCI and OHCI host device nodes for Exynos4.
>
> CC: Jingoo Han <[email protected]>
> Signed-off-by: Dongjin Kim <[email protected]>
> ---
> arch/arm/boot/dts/exynos4.dtsi | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/arch/arm/boot/dts/exynos4.dtsi
> b/arch/arm/boot/dts/exynos4.dtsi index 3f94fe8..cbe5219 100644
> --- a/arch/arm/boot/dts/exynos4.dtsi
> +++ b/arch/arm/boot/dts/exynos4.dtsi
> @@ -155,6 +155,24 @@
> status = "disabled";
> };
>
> + ehci@12580000 {
> + compatible = "samsung,exynos4210-ehci";
> + reg = <0x12580000 0x100>;
> + interrupts = <0 70 0>;
> + clocks = <&clock 304>;
> + clock-names = "usbhost";
> + status = "disabled";
> + };
> +
> + ohci@12590000 {
> + compatible = "samsung,exynos4210-ohci";
> + reg = <0x12590000 0x100>;
> + interrupts = <0 70 0>;
> + clocks = <&clock 304>;
> + clock-names = "usbhost";
> + status = "disabled";
> + };
> +
> mfc: codec@13400000 {
> compatible = "samsung,mfc-v5";
> reg = <0x13400000 0x10000>;

Reviewed-by: Tomasz Figa <[email protected]>

Best regards,
Tomasz

2013-08-18 20:08:13

by Kukjin Kim

[permalink] [raw]
Subject: Re: [PATCH RESEND] ARM: dts: Add USB host node for Exynos4

On 08/06/13 03:09, Dongjin Kim wrote:
> This patch adds EHCI and OHCI host device nodes for Exynos4.
>
> CC: Jingoo Han<[email protected]>
> Signed-off-by: Dongjin Kim<[email protected]>
> ---
> arch/arm/boot/dts/exynos4.dtsi | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi
> index 3f94fe8..cbe5219 100644
> --- a/arch/arm/boot/dts/exynos4.dtsi
> +++ b/arch/arm/boot/dts/exynos4.dtsi
> @@ -155,6 +155,24 @@
> status = "disabled";
> };
>
> + ehci@12580000 {
> + compatible = "samsung,exynos4210-ehci";
> + reg =<0x12580000 0x100>;
> + interrupts =<0 70 0>;
> + clocks =<&clock 304>;
> + clock-names = "usbhost";
> + status = "disabled";
> + };
> +
> + ohci@12590000 {
> + compatible = "samsung,exynos4210-ohci";
> + reg =<0x12590000 0x100>;
> + interrupts =<0 70 0>;
> + clocks =<&clock 304>;
> + clock-names = "usbhost";
> + status = "disabled";
> + };
> +
> mfc: codec@13400000 {
> compatible = "samsung,mfc-v5";
> reg =<0x13400000 0x10000>;

Applied, thanks.

- Kukjin