mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] usb: dwc2: Uninitialize host and device on remove
@ 2020-10-08 15:11 Jules Maselbas
  2020-10-09  7:21 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Jules Maselbas @ 2020-10-08 15:11 UTC (permalink / raw)
  To: barebox; +Cc: Jules Maselbas

Device gadget must be properly uninitialized on poweroff however host
system might not detect barebox's usb gadget has beeing disconnected.

Signed-off-by: Jules Maselbas <jmaselbas@kalray.eu>
---
 drivers/usb/dwc2/dwc2.c   | 16 ++--------------
 drivers/usb/dwc2/dwc2.h   |  4 ++++
 drivers/usb/dwc2/gadget.c |  6 ++++++
 drivers/usb/dwc2/host.c   | 13 +++++++++++++
 4 files changed, 25 insertions(+), 14 deletions(-)

diff --git a/drivers/usb/dwc2/dwc2.c b/drivers/usb/dwc2/dwc2.c
index 7a8ba6c4f..894307bd4 100644
--- a/drivers/usb/dwc2/dwc2.c
+++ b/drivers/usb/dwc2/dwc2.c
@@ -15,19 +15,6 @@
 
 #include "dwc2.h"
 
-static void dwc2_uninit_common(struct dwc2 *dwc2)
-{
-	uint32_t hprt0;
-
-	hprt0 = dwc2_readl(dwc2, HPRT0);
-
-	/* Put everything in reset. */
-	hprt0 &= ~(HPRT0_ENA | HPRT0_ENACHG | HPRT0_CONNDET | HPRT0_OVRCURRCHG);
-	hprt0 |= HPRT0_RST;
-
-	dwc2_writel(dwc2, hprt0, HPRT0);
-}
-
 static int dwc2_set_mode(void *ctx, enum usb_dr_mode mode)
 {
 	struct dwc2 *dwc2 = ctx;
@@ -98,7 +85,8 @@ static void dwc2_remove(struct device_d *dev)
 {
 	struct dwc2 *dwc2 = dev->priv;
 
-	dwc2_uninit_common(dwc2);
+	dwc2_host_uninit(dwc2);
+	dwc2_gadget_uninit(dwc2);
 }
 
 static const struct of_device_id dwc2_platform_dt_ids[] = {
diff --git a/drivers/usb/dwc2/dwc2.h b/drivers/usb/dwc2/dwc2.h
index 2475fd005..01a4ec2ca 100644
--- a/drivers/usb/dwc2/dwc2.h
+++ b/drivers/usb/dwc2/dwc2.h
@@ -37,13 +37,17 @@ int dwc2_submit_roothub(struct dwc2 *dwc2, struct usb_device *dev,
 		unsigned long pipe, void *buf, int len,
 		struct devrequest *setup);
 int dwc2_register_host(struct dwc2 *dwc2);
+void dwc2_host_uninit(struct dwc2 *dwc2);
 #else
 static inline int dwc2_register_host(struct dwc2 *dwc2) { return -ENODEV; }
+static inline void dwc2_host_uninit(struct dwc2 *dwc2) {};
 #endif
 
 /* Gadget functions */
 #ifdef CONFIG_USB_DWC2_GADGET
 int dwc2_gadget_init(struct dwc2 *dwc2);
+void dwc2_gadget_uninit(struct dwc2 *dwc2);
 #else
 static inline int dwc2_gadget_init(struct dwc2 *dwc2) { return -ENODEV; }
+static inline void dwc2_gadget_uninit(struct dwc2 *dwc2) {};
 #endif
diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c
index 6a65b9b11..aa7447c9b 100644
--- a/drivers/usb/dwc2/gadget.c
+++ b/drivers/usb/dwc2/gadget.c
@@ -2734,3 +2734,9 @@ int dwc2_gadget_init(struct dwc2 *dwc2)
 
 	return 0;
 }
+
+void dwc2_gadget_uninit(struct dwc2 *dwc2)
+{
+	dwc2_core_disconnect(dwc2);
+	dwc2_gadget_disconnect(dwc2);
+}
diff --git a/drivers/usb/dwc2/host.c b/drivers/usb/dwc2/host.c
index 59a2aac47..f95ec4e56 100644
--- a/drivers/usb/dwc2/host.c
+++ b/drivers/usb/dwc2/host.c
@@ -779,3 +779,16 @@ int dwc2_register_host(struct dwc2 *dwc2)
 
 	return usb_register_host(host);
 }
+
+void dwc2_host_uninit(struct dwc2 *dwc2)
+{
+	uint32_t hprt0;
+
+	hprt0 = dwc2_readl(dwc2, HPRT0);
+
+	/* Put everything in reset. */
+	hprt0 &= ~(HPRT0_ENA | HPRT0_ENACHG | HPRT0_CONNDET | HPRT0_OVRCURRCHG);
+	hprt0 |= HPRT0_RST;
+
+	dwc2_writel(dwc2, hprt0, HPRT0);
+}
-- 
2.17.1



_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH] usb: dwc2: Uninitialize host and device on remove
  2020-10-08 15:11 [PATCH] usb: dwc2: Uninitialize host and device on remove Jules Maselbas
@ 2020-10-09  7:21 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2020-10-09  7:21 UTC (permalink / raw)
  To: Jules Maselbas; +Cc: barebox

On Thu, Oct 08, 2020 at 05:11:43PM +0200, Jules Maselbas wrote:
> Device gadget must be properly uninitialized on poweroff however host
> system might not detect barebox's usb gadget has beeing disconnected.
> 
> Signed-off-by: Jules Maselbas <jmaselbas@kalray.eu>
> ---
>  drivers/usb/dwc2/dwc2.c   | 16 ++--------------
>  drivers/usb/dwc2/dwc2.h   |  4 ++++
>  drivers/usb/dwc2/gadget.c |  6 ++++++
>  drivers/usb/dwc2/host.c   | 13 +++++++++++++
>  4 files changed, 25 insertions(+), 14 deletions(-)

Applied, thanks

Sascha

> 
> diff --git a/drivers/usb/dwc2/dwc2.c b/drivers/usb/dwc2/dwc2.c
> index 7a8ba6c4f..894307bd4 100644
> --- a/drivers/usb/dwc2/dwc2.c
> +++ b/drivers/usb/dwc2/dwc2.c
> @@ -15,19 +15,6 @@
>  
>  #include "dwc2.h"
>  
> -static void dwc2_uninit_common(struct dwc2 *dwc2)
> -{
> -	uint32_t hprt0;
> -
> -	hprt0 = dwc2_readl(dwc2, HPRT0);
> -
> -	/* Put everything in reset. */
> -	hprt0 &= ~(HPRT0_ENA | HPRT0_ENACHG | HPRT0_CONNDET | HPRT0_OVRCURRCHG);
> -	hprt0 |= HPRT0_RST;
> -
> -	dwc2_writel(dwc2, hprt0, HPRT0);
> -}
> -
>  static int dwc2_set_mode(void *ctx, enum usb_dr_mode mode)
>  {
>  	struct dwc2 *dwc2 = ctx;
> @@ -98,7 +85,8 @@ static void dwc2_remove(struct device_d *dev)
>  {
>  	struct dwc2 *dwc2 = dev->priv;
>  
> -	dwc2_uninit_common(dwc2);
> +	dwc2_host_uninit(dwc2);
> +	dwc2_gadget_uninit(dwc2);
>  }
>  
>  static const struct of_device_id dwc2_platform_dt_ids[] = {
> diff --git a/drivers/usb/dwc2/dwc2.h b/drivers/usb/dwc2/dwc2.h
> index 2475fd005..01a4ec2ca 100644
> --- a/drivers/usb/dwc2/dwc2.h
> +++ b/drivers/usb/dwc2/dwc2.h
> @@ -37,13 +37,17 @@ int dwc2_submit_roothub(struct dwc2 *dwc2, struct usb_device *dev,
>  		unsigned long pipe, void *buf, int len,
>  		struct devrequest *setup);
>  int dwc2_register_host(struct dwc2 *dwc2);
> +void dwc2_host_uninit(struct dwc2 *dwc2);
>  #else
>  static inline int dwc2_register_host(struct dwc2 *dwc2) { return -ENODEV; }
> +static inline void dwc2_host_uninit(struct dwc2 *dwc2) {};
>  #endif
>  
>  /* Gadget functions */
>  #ifdef CONFIG_USB_DWC2_GADGET
>  int dwc2_gadget_init(struct dwc2 *dwc2);
> +void dwc2_gadget_uninit(struct dwc2 *dwc2);
>  #else
>  static inline int dwc2_gadget_init(struct dwc2 *dwc2) { return -ENODEV; }
> +static inline void dwc2_gadget_uninit(struct dwc2 *dwc2) {};
>  #endif
> diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c
> index 6a65b9b11..aa7447c9b 100644
> --- a/drivers/usb/dwc2/gadget.c
> +++ b/drivers/usb/dwc2/gadget.c
> @@ -2734,3 +2734,9 @@ int dwc2_gadget_init(struct dwc2 *dwc2)
>  
>  	return 0;
>  }
> +
> +void dwc2_gadget_uninit(struct dwc2 *dwc2)
> +{
> +	dwc2_core_disconnect(dwc2);
> +	dwc2_gadget_disconnect(dwc2);
> +}
> diff --git a/drivers/usb/dwc2/host.c b/drivers/usb/dwc2/host.c
> index 59a2aac47..f95ec4e56 100644
> --- a/drivers/usb/dwc2/host.c
> +++ b/drivers/usb/dwc2/host.c
> @@ -779,3 +779,16 @@ int dwc2_register_host(struct dwc2 *dwc2)
>  
>  	return usb_register_host(host);
>  }
> +
> +void dwc2_host_uninit(struct dwc2 *dwc2)
> +{
> +	uint32_t hprt0;
> +
> +	hprt0 = dwc2_readl(dwc2, HPRT0);
> +
> +	/* Put everything in reset. */
> +	hprt0 &= ~(HPRT0_ENA | HPRT0_ENACHG | HPRT0_CONNDET | HPRT0_OVRCURRCHG);
> +	hprt0 |= HPRT0_RST;
> +
> +	dwc2_writel(dwc2, hprt0, HPRT0);
> +}
> -- 
> 2.17.1
> 
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2020-10-09  7:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-08 15:11 [PATCH] usb: dwc2: Uninitialize host and device on remove Jules Maselbas
2020-10-09  7:21 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox