* [U-Boot] [PATCH] usb: ehci: exynos: Enable non-dt path
@ 2013-01-11 9:24 Vivek Gautam
2013-01-11 9:32 ` Marek Vasut
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Vivek Gautam @ 2013-01-11 9:24 UTC (permalink / raw)
To: u-boot
Enabling the non-dt path for the driver so that
we don't get any build errors for non-dt configuration.
Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
---
Earlier we had moved to fdt support for ehci-exynos driver, but
missed out the non-dt path. Although this driver serves for exysno5
onward only but better to keep the non-dt path also available.
drivers/usb/host/ehci-exynos.c | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/drivers/usb/host/ehci-exynos.c b/drivers/usb/host/ehci-exynos.c
index 3ca4c5c..6f0c6c3 100644
--- a/drivers/usb/host/ehci-exynos.c
+++ b/drivers/usb/host/ehci-exynos.c
@@ -153,7 +153,12 @@ int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor)
return -ENOMEM;
}
+#ifdef CONFIG_OF_CONTROL
exynos_usb_parse_dt(gd->fdt_blob, exynos);
+#else
+ exynos->usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
+ exynos->hcd = samsung_get_base_usb_ehci();
+#endif
setup_usb_phy(exynos->usb);
@@ -185,7 +190,12 @@ int ehci_hcd_stop(int index)
return -ENOMEM;
}
+#ifdef CONFIG_OF_CONTROL
exynos_usb_parse_dt(gd->fdt_blob, exynos);
+#else
+ exynos->usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
+ exynos->hcd = samsung_get_base_usb_ehci();
+#endif
reset_usb_phy(exynos->usb);
--
1.7.6.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] usb: ehci: exynos: Enable non-dt path
2013-01-11 9:24 [U-Boot] [PATCH] usb: ehci: exynos: Enable non-dt path Vivek Gautam
@ 2013-01-11 9:32 ` Marek Vasut
2013-01-11 9:55 ` Vivek Gautam
2013-01-11 14:34 ` Simon Glass
2013-02-12 8:24 ` Minkyu Kang
2 siblings, 1 reply; 6+ messages in thread
From: Marek Vasut @ 2013-01-11 9:32 UTC (permalink / raw)
To: u-boot
Dear Vivek Gautam,
> Enabling the non-dt path for the driver so that
> we don't get any build errors for non-dt configuration.
>
> Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
Apply on the -samsung please
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] usb: ehci: exynos: Enable non-dt path
2013-01-11 9:32 ` Marek Vasut
@ 2013-01-11 9:55 ` Vivek Gautam
0 siblings, 0 replies; 6+ messages in thread
From: Vivek Gautam @ 2013-01-11 9:55 UTC (permalink / raw)
To: u-boot
Hi Marek,
CCing Simon Glass, Minkyu Kang.
On Fri, Jan 11, 2013 at 3:02 PM, Marek Vasut <marex@denx.de> wrote:
> Dear Vivek Gautam,
>
>> Enabling the non-dt path for the driver so that
>> we don't get any build errors for non-dt configuration.
>>
>> Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
>
> Apply on the -samsung please
>
Sorry !! missed to mention.
this patch is based and tested on u-boot-samsung.
--
Thanks & Regards
Vivek
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] usb: ehci: exynos: Enable non-dt path
2013-01-11 9:24 [U-Boot] [PATCH] usb: ehci: exynos: Enable non-dt path Vivek Gautam
2013-01-11 9:32 ` Marek Vasut
@ 2013-01-11 14:34 ` Simon Glass
2013-02-12 8:24 ` Minkyu Kang
2 siblings, 0 replies; 6+ messages in thread
From: Simon Glass @ 2013-01-11 14:34 UTC (permalink / raw)
To: u-boot
Hi Vivek,
On Fri, Jan 11, 2013 at 1:24 AM, Vivek Gautam <gautam.vivek@samsung.com> wrote:
> Enabling the non-dt path for the driver so that
> we don't get any build errors for non-dt configuration.
>
> Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
Acked-by: Simon Glass <sjg@chromium.org>
But this has thrown up the issue that the FDT decode is done each
time. Could you (in a future patch) change this so that the FDT decode
happens once, and the values are put in a structure which is then used
subsequently?
Regards,
Simon
> ---
>
> Earlier we had moved to fdt support for ehci-exynos driver, but
> missed out the non-dt path. Although this driver serves for exysno5
> onward only but better to keep the non-dt path also available.
>
> drivers/usb/host/ehci-exynos.c | 10 ++++++++++
> 1 files changed, 10 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/usb/host/ehci-exynos.c b/drivers/usb/host/ehci-exynos.c
> index 3ca4c5c..6f0c6c3 100644
> --- a/drivers/usb/host/ehci-exynos.c
> +++ b/drivers/usb/host/ehci-exynos.c
> @@ -153,7 +153,12 @@ int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor)
> return -ENOMEM;
> }
>
> +#ifdef CONFIG_OF_CONTROL
> exynos_usb_parse_dt(gd->fdt_blob, exynos);
> +#else
> + exynos->usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
> + exynos->hcd = samsung_get_base_usb_ehci();
> +#endif
>
> setup_usb_phy(exynos->usb);
>
> @@ -185,7 +190,12 @@ int ehci_hcd_stop(int index)
> return -ENOMEM;
> }
>
> +#ifdef CONFIG_OF_CONTROL
> exynos_usb_parse_dt(gd->fdt_blob, exynos);
> +#else
> + exynos->usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
> + exynos->hcd = samsung_get_base_usb_ehci();
> +#endif
>
> reset_usb_phy(exynos->usb);
>
> --
> 1.7.6.5
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] usb: ehci: exynos: Enable non-dt path
2013-01-11 9:24 [U-Boot] [PATCH] usb: ehci: exynos: Enable non-dt path Vivek Gautam
2013-01-11 9:32 ` Marek Vasut
2013-01-11 14:34 ` Simon Glass
@ 2013-02-12 8:24 ` Minkyu Kang
2013-02-12 9:26 ` Vivek Gautam
2 siblings, 1 reply; 6+ messages in thread
From: Minkyu Kang @ 2013-02-12 8:24 UTC (permalink / raw)
To: u-boot
Dear Vivek,
On 11/01/13 18:24, Vivek Gautam wrote:
> Enabling the non-dt path for the driver so that
> we don't get any build errors for non-dt configuration.
>
> Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
> ---
>
> Earlier we had moved to fdt support for ehci-exynos driver, but
> missed out the non-dt path. Although this driver serves for exysno5
> onward only but better to keep the non-dt path also available.
>
> drivers/usb/host/ehci-exynos.c | 10 ++++++++++
> 1 files changed, 10 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/usb/host/ehci-exynos.c b/drivers/usb/host/ehci-exynos.c
> index 3ca4c5c..6f0c6c3 100644
> --- a/drivers/usb/host/ehci-exynos.c
> +++ b/drivers/usb/host/ehci-exynos.c
> @@ -153,7 +153,12 @@ int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor)
> return -ENOMEM;
> }
>
> +#ifdef CONFIG_OF_CONTROL
> exynos_usb_parse_dt(gd->fdt_blob, exynos);
> +#else
> + exynos->usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
> + exynos->hcd = samsung_get_base_usb_ehci();
> +#endif
>
> setup_usb_phy(exynos->usb);
>
> @@ -185,7 +190,12 @@ int ehci_hcd_stop(int index)
> return -ENOMEM;
> }
>
> +#ifdef CONFIG_OF_CONTROL
> exynos_usb_parse_dt(gd->fdt_blob, exynos);
> +#else
> + exynos->usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
> + exynos->hcd = samsung_get_base_usb_ehci();
> +#endif
>
> reset_usb_phy(exynos->usb);
>
>
Patch looks good.
But I've got compiler warnings and errors when I disabled CONFIG_OF_CONTROL.
exynos_spi.c:391:12: warning: 'process_nodes' defined but not used [-Wunused-function]
ehci-exynos.c: In function 'ehci_hcd_init':
ehci-exynos.c:160:14: warning: assignment makes pointer from integer without a cast [enabled by default]
ehci-exynos.c: In function 'ehci_hcd_stop':
ehci-exynos.c:197:14: warning: assignment makes pointer from integer without a cast [enabled by default]
ehci-exynos.c: At top level:
ehci-exynos.c:48:12: warning: 'exynos_usb_parse_dt' defined but not used [-Wunused-function]
/opt/eldk-5.2/armv7a/sysroots/i686-eldk-linux/usr/bin/armv7a-vfp-neon-linux-gnueabi/arm-linux-gnueabi-ld.bfd:/home/share/Work/u-boot-samsung/spl/u-boot-spl.lds:1: ignoring invalid character `#' in expression
/opt/eldk-5.2/armv7a/sysroots/i686-eldk-linux/usr/bin/armv7a-vfp-neon-linux-gnueabi/arm-linux-gnueabi-ld.bfd:/home/share/Work/u-boot-samsung/spl/u-boot-spl.lds:1: syntax error
make[1]: *** [/home/share/Work/u-boot-samsung/spl/u-boot-spl] Error 1
make: *** [spl/u-boot-spl.bin] Error 2
make: *** Waiting for unfinished jobs....
smdk5250.c: In function 'board_eth_init':
smdk5250.c:152:6: warning: unused variable 'node' [-Wunused-variable]
Could you please check this issue also?
Thanks.
Minkyu Kang.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] usb: ehci: exynos: Enable non-dt path
2013-02-12 8:24 ` Minkyu Kang
@ 2013-02-12 9:26 ` Vivek Gautam
0 siblings, 0 replies; 6+ messages in thread
From: Vivek Gautam @ 2013-02-12 9:26 UTC (permalink / raw)
To: u-boot
Hi Minkyu,
On Tue, Feb 12, 2013 at 1:54 PM, Minkyu Kang <mk7.kang@samsung.com> wrote:
> Dear Vivek,
>
> On 11/01/13 18:24, Vivek Gautam wrote:
>> Enabling the non-dt path for the driver so that
>> we don't get any build errors for non-dt configuration.
>>
>> Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
>> ---
>>
>> Earlier we had moved to fdt support for ehci-exynos driver, but
>> missed out the non-dt path. Although this driver serves for exysno5
>> onward only but better to keep the non-dt path also available.
>>
>> drivers/usb/host/ehci-exynos.c | 10 ++++++++++
>> 1 files changed, 10 insertions(+), 0 deletions(-)
>>
>> diff --git a/drivers/usb/host/ehci-exynos.c b/drivers/usb/host/ehci-exynos.c
>> index 3ca4c5c..6f0c6c3 100644
>> --- a/drivers/usb/host/ehci-exynos.c
>> +++ b/drivers/usb/host/ehci-exynos.c
>> @@ -153,7 +153,12 @@ int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor)
>> return -ENOMEM;
>> }
>>
>> +#ifdef CONFIG_OF_CONTROL
>> exynos_usb_parse_dt(gd->fdt_blob, exynos);
>> +#else
>> + exynos->usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
>> + exynos->hcd = samsung_get_base_usb_ehci();
>> +#endif
>>
>> setup_usb_phy(exynos->usb);
>>
>> @@ -185,7 +190,12 @@ int ehci_hcd_stop(int index)
>> return -ENOMEM;
>> }
>>
>> +#ifdef CONFIG_OF_CONTROL
>> exynos_usb_parse_dt(gd->fdt_blob, exynos);
>> +#else
>> + exynos->usb = (struct exynos_usb_phy *)samsung_get_base_usb_phy();
>> + exynos->hcd = samsung_get_base_usb_ehci();
>> +#endif
>>
>> reset_usb_phy(exynos->usb);
>>
>>
>
> Patch looks good.
> But I've got compiler warnings and errors when I disabled CONFIG_OF_CONTROL.
>
> exynos_spi.c:391:12: warning: 'process_nodes' defined but not used [-Wunused-function]
> ehci-exynos.c: In function 'ehci_hcd_init':
> ehci-exynos.c:160:14: warning: assignment makes pointer from integer without a cast [enabled by default]
> ehci-exynos.c: In function 'ehci_hcd_stop':
> ehci-exynos.c:197:14: warning: assignment makes pointer from integer without a cast [enabled by default]
> ehci-exynos.c: At top level:
> ehci-exynos.c:48:12: warning: 'exynos_usb_parse_dt' defined but not used [-Wunused-function]
> /opt/eldk-5.2/armv7a/sysroots/i686-eldk-linux/usr/bin/armv7a-vfp-neon-linux-gnueabi/arm-linux-gnueabi-ld.bfd:/home/share/Work/u-boot-samsung/spl/u-boot-spl.lds:1: ignoring invalid character `#' in expression
> /opt/eldk-5.2/armv7a/sysroots/i686-eldk-linux/usr/bin/armv7a-vfp-neon-linux-gnueabi/arm-linux-gnueabi-ld.bfd:/home/share/Work/u-boot-samsung/spl/u-boot-spl.lds:1: syntax error
> make[1]: *** [/home/share/Work/u-boot-samsung/spl/u-boot-spl] Error 1
> make: *** [spl/u-boot-spl.bin] Error 2
> make: *** Waiting for unfinished jobs....
> smdk5250.c: In function 'board_eth_init':
> smdk5250.c:152:6: warning: unused variable 'node' [-Wunused-variable]
>
> Could you please check this issue also?
>
Sure, will check this, and resolve the underlying issue.
--
Thanks & Regards
Vivek
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-02-12 9:26 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-11 9:24 [U-Boot] [PATCH] usb: ehci: exynos: Enable non-dt path Vivek Gautam
2013-01-11 9:32 ` Marek Vasut
2013-01-11 9:55 ` Vivek Gautam
2013-01-11 14:34 ` Simon Glass
2013-02-12 8:24 ` Minkyu Kang
2013-02-12 9:26 ` Vivek Gautam
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.