All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Avoid delay when inializing USB peripheral by dwc2.c
       [not found] <CAJMWnChnVRL1N24RHhs-eUF1niyEKGVAsuReovvnYvy8Xjw4sw@mail.gmail.com>
@ 2021-03-17 12:02 ` Marek Vasut
  2021-03-17 13:24 ` [PATCH] Avoid delay when initializing USB peripherals by dwc2 João Loureiro
  1 sibling, 0 replies; 3+ messages in thread
From: Marek Vasut @ 2021-03-17 12:02 UTC (permalink / raw)
  To: u-boot

On 3/17/21 12:51 PM, Jo?o Loureiro wrote:
> When `usb start` is called, the dwc2 driver will try to start every
> USB device as host first, even if it is explicitly configured as
> peripheral in the device tree, as the documentation explains (`dr_mode
> = "peripheral"`).
> 
> So to avoid an unwanted 15 seconds delay when initializing the usb
> (one second per channel = 1s x 15), this patch adds a check to the
> initialization, and will skip a host initialization of the device,
> when it is explicitly set as peripheral. The checking is already done
> similarly in the `drivers/usb/gadget/dwc2_udc_otg.c` driver.
> 
> An example device tree entry:
> &usb0 {
>    compatible = "snps,dwc2";
>    status = "okay";
>    dr_mode = "peripheral";
> };

+CC Lukasz.

The patch looks OK, except you need SoB line, see e.g.
https://www.kernel.org/doc/html/v5.10/process/submitting-patches.html

When in doubt, git format-patch -1 -o /tmp the patch and then run 
./scripts/checkpatch.pl /tmp/00*patch on it, this will tell you what to do.

> Proposed patch below:
> diff --git a/drivers/usb/host/dwc2.c b/drivers/usb/host/dwc2.c
> index ec643e9f45..c6ade25f53 100644
> --- a/drivers/usb/host/dwc2.c
> +++ b/drivers/usb/host/dwc2.c
> @@ -21,6 +21,7 @@
>   #include <asm/io.h>
>   #include <dm/device_compat.h>
>   #include <linux/delay.h>
> +#include <linux/usb/otg.h>
>   #include <power/regulator.h>
>   #include <reset.h>
> 
> @@ -1204,7 +1205,13 @@ static int dwc2_init_common(struct udevice
> *dev, struct dwc2_priv *priv)
>   #endif
> 
>       dwc_otg_core_init(dev);
> -    dwc_otg_core_host_init(dev, regs);
> +
> +    if (usb_get_dr_mode(dev_ofnode(dev)) == USB_DR_MODE_PERIPHERAL) {
> +        dev_dbg(dev, "USB device %s dr_mode set to %d. Skipping host_init.\n",\
> +            dev->name, usb_get_dr_mode(dev_ofnode(dev)));
> +    }
> +    else
> +        dwc_otg_core_host_init(dev, regs);
> 
>       clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
>               DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
> 
> ---
> Excuse me if I missed any detail; That's my first patch to u-boot.
> 


-- 
Best regards,
Marek Vasut

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] Avoid delay when initializing USB peripherals by dwc2
       [not found] <CAJMWnChnVRL1N24RHhs-eUF1niyEKGVAsuReovvnYvy8Xjw4sw@mail.gmail.com>
  2021-03-17 12:02 ` [PATCH] Avoid delay when inializing USB peripheral by dwc2.c Marek Vasut
@ 2021-03-17 13:24 ` João Loureiro
  2021-03-17 13:30   ` Marek Vasut
  1 sibling, 1 reply; 3+ messages in thread
From: João Loureiro @ 2021-03-17 13:24 UTC (permalink / raw)
  To: u-boot

When `usb start` is called, the dwc2 driver will try to start every
USB device as host first, even if it is explicitly configured as
peripheral in the device tree, as the documentation explains (`dr_mode
= "peripheral"`).

So to avoid an unwanted 15 seconds delay when initializing the usb
(one second per channel = 1s x 15), this patch adds a check to the
initialization, and will skip a host initialization of the device,
when it is explicitly set as peripheral. The checking is already done
similarly in the `drivers/usb/gadget/dwc2_udc_otg.c` driver.

An example device tree entry:
&usb0 {
  compatible = "snps,dwc2";
  status = "okay";
  dr_mode = "peripheral";
};

Signed-off-by: Jo?o Loureiro <joaofl@gmail.com>
---
drivers/usb/host/dwc2.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/host/dwc2.c b/drivers/usb/host/dwc2.c
index ec643e9f45..7990060f3c 100644
--- a/drivers/usb/host/dwc2.c
+++ b/drivers/usb/host/dwc2.c
@@ -21,6 +21,7 @@
#include <asm/io.h>
#include <dm/device_compat.h>
#include <linux/delay.h>
+#include <linux/usb/otg.h>
#include <power/regulator.h>
#include <reset.h>
@@ -1204,7 +1205,13 @@ static int dwc2_init_common(struct udevice
*dev, struct dwc2_priv *priv)
#endif
dwc_otg_core_init(dev);
- dwc_otg_core_host_init(dev, regs);
+
+ if (usb_get_dr_mode(dev_ofnode(dev)) == USB_DR_MODE_PERIPHERAL) {
+ dev_dbg(dev, "USB device %s dr_mode set to %d. Skipping host_init.\n",\
+ dev->name, usb_get_dr_mode(dev_ofnode(dev)));
+ } else {
+ dwc_otg_core_host_init(dev, regs);
+ }
clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] Avoid delay when initializing USB peripherals by dwc2
  2021-03-17 13:24 ` [PATCH] Avoid delay when initializing USB peripherals by dwc2 João Loureiro
@ 2021-03-17 13:30   ` Marek Vasut
  0 siblings, 0 replies; 3+ messages in thread
From: Marek Vasut @ 2021-03-17 13:30 UTC (permalink / raw)
  To: u-boot

On 3/17/21 2:24 PM, Jo?o Loureiro wrote:
> When `usb start` is called, the dwc2 driver will try to start every
> USB device as host first, even if it is explicitly configured as
> peripheral in the device tree, as the documentation explains (`dr_mode
> = "peripheral"`).
> 
> So to avoid an unwanted 15 seconds delay when initializing the usb
> (one second per channel = 1s x 15), this patch adds a check to the
> initialization, and will skip a host initialization of the device,
> when it is explicitly set as peripheral. The checking is already done
> similarly in the `drivers/usb/gadget/dwc2_udc_otg.c` driver.
> 
> An example device tree entry:
> &usb0 {
>    compatible = "snps,dwc2";
>    status = "okay";
>    dr_mode = "peripheral";
> };
> 
> Signed-off-by: Jo?o Loureiro <joaofl@gmail.com>
> ---
> drivers/usb/host/dwc2.c | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/usb/host/dwc2.c b/drivers/usb/host/dwc2.c
> index ec643e9f45..7990060f3c 100644
> --- a/drivers/usb/host/dwc2.c
> +++ b/drivers/usb/host/dwc2.c
> @@ -21,6 +21,7 @@
> #include <asm/io.h>
> #include <dm/device_compat.h>
> #include <linux/delay.h>
> +#include <linux/usb/otg.h>
> #include <power/regulator.h>
> #include <reset.h>
> @@ -1204,7 +1205,13 @@ static int dwc2_init_common(struct udevice
> *dev, struct dwc2_priv *priv)
> #endif
> dwc_otg_core_init(dev);
> - dwc_otg_core_host_init(dev, regs);
> +
> + if (usb_get_dr_mode(dev_ofnode(dev)) == USB_DR_MODE_PERIPHERAL) {
> + dev_dbg(dev, "USB device %s dr_mode set to %d. Skipping host_init.\n",\
> + dev->name, usb_get_dr_mode(dev_ofnode(dev)));
> + } else {
> + dwc_otg_core_host_init(dev, regs);
> + }

The patch is corrupted, please use git send-email if possible.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-17 13:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CAJMWnChnVRL1N24RHhs-eUF1niyEKGVAsuReovvnYvy8Xjw4sw@mail.gmail.com>
2021-03-17 12:02 ` [PATCH] Avoid delay when inializing USB peripheral by dwc2.c Marek Vasut
2021-03-17 13:24 ` [PATCH] Avoid delay when initializing USB peripherals by dwc2 João Loureiro
2021-03-17 13:30   ` Marek Vasut

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.