From: Neil Armstrong <neil.armstrong@linaro.org>
To: Luke Lu <luke.lu@libre.computer>,
linux-usb@vger.kernel.org, linux-amlogic@lists.infradead.org
Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Kevin Hilman <khilman@baylibre.com>,
Jerome Brunet <jbrunet@baylibre.com>,
Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
Da Xue <da@libre.computer>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH v2] usb: dwc3: meson-g12a: do post init to fix broken usb after resumption
Date: Mon, 14 Aug 2023 09:41:53 +0200 [thread overview]
Message-ID: <4de07b08-5eda-86d7-8925-f2fadbfca407@linaro.org> (raw)
In-Reply-To: <20230809212911.18903-1-luke.lu@libre.computer>
On 09/08/2023 23:29, Luke Lu wrote:
> Device connected to usb otg port of GXL-based boards can not be
> recognised after resumption, doesn't recover even if disconnect and
> reconnect the device. dmesg shows it disconnects during resumption.
>
> [ 41.492911] usb 1-2: USB disconnect, device number 3
> [ 41.499346] usb 1-2: unregistering device
> [ 41.511939] usb 1-2: unregistering interface 1-2:1.0
>
> Calling usb_post_init() will fix this issue, and it's tested and
> verified on libretech's aml-s905x-cc board.
>
> Cc: stable@vger.kernel.org # v5.8+
> Fixes: c99993376f72 ("usb: dwc3: Add Amlogic G12A DWC3 glue")
> Signed-off-by: Luke Lu <luke.lu@libre.computer>
>
> ---
> Note here, the commmit of Fixes tag is the first patch which bring
> suspend/resume function, so let's use it as the fix tag.
>
> As commit 5b0ba0caaf3a: (usb: dwc3: meson-g12a: refactor usb init)"
> introduced the use_post_init() function, and this patch will explicitly
> depend on it, so let's set kernel version higher or equal to v5.8.
>
> Changes since v1:
> - add Fixes tag and Cc stable tree
> ---
> drivers/usb/dwc3/dwc3-meson-g12a.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/usb/dwc3/dwc3-meson-g12a.c b/drivers/usb/dwc3/dwc3-meson-g12a.c
> index e99c7489dba0..2c07c038b584 100644
> --- a/drivers/usb/dwc3/dwc3-meson-g12a.c
> +++ b/drivers/usb/dwc3/dwc3-meson-g12a.c
> @@ -926,6 +926,12 @@ static int __maybe_unused dwc3_meson_g12a_resume(struct device *dev)
> return ret;
> }
>
> + if (priv->drvdata->usb_post_init) {
> + ret = priv->drvdata->usb_post_init(priv);
> + if (ret)
> + return ret;
> + }
> +
> return 0;
> }
>
Acked-by: Neil Armstrong <neil.armstrong@linaro.org>
prev parent reply other threads:[~2023-08-14 7:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-09 21:29 [PATCH v2] usb: dwc3: meson-g12a: do post init to fix broken usb after resumption Luke Lu
2023-08-14 7:41 ` Neil Armstrong [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4de07b08-5eda-86d7-8925-f2fadbfca407@linaro.org \
--to=neil.armstrong@linaro.org \
--cc=Thinh.Nguyen@synopsys.com \
--cc=da@libre.computer \
--cc=gregkh@linuxfoundation.org \
--cc=jbrunet@baylibre.com \
--cc=khilman@baylibre.com \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=luke.lu@libre.computer \
--cc=martin.blumenstingl@googlemail.com \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox