From: Felipe Balbi <balbi@kernel.org>
To: gustavo panizzo <gfa@zumbi.com.ar>,
Baolin Wang <baolin.wang@linaro.org>,
Greg KH <gregkh@linuxfoundation.org>,
USB <linux-usb@vger.kernel.org>,
LKML <linux-kernel@vger.kernel.org>,
stable@vger.kernel.org, Brian Kim <brian.kim@hardkernel.com>
Subject: Re: [PATCH] usb: dwc3: Fix the USB 3.0 hub detection bug after warm boot
Date: Mon, 18 Sep 2017 11:11:16 +0300 [thread overview]
Message-ID: <874ls0o28r.fsf@linux.intel.com> (raw)
In-Reply-To: <20170916042404.i2snvrpjigipdwhj@gpanizzo.laptop.office.chorus>
[-- Attachment #1: Type: text/plain, Size: 5887 bytes --]
Hi,
gustavo panizzo <gfa@zumbi.com.ar> writes:
>>>gustavo panizzo <gfa@zumbi.com.ar> writes:
>>>>>>>>>>>---
>>>>>>>>>>>drivers/usb/dwc3/core.c | 33 +++++++++++++++++++++++++++++++++
>>>>>>>>>>>1 file changed, 33 insertions(+)
>>>>>>>>>>>
>>>>>>>>>>>diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
>>>>>>>>>>>index 326b302fc440..f92dfe213d89 100644
>>>>>>>>>>>--- a/drivers/usb/dwc3/core.c
>>>>>>>>>>>+++ b/drivers/usb/dwc3/core.c
>>>>>>>>>>>@@ -1259,6 +1259,38 @@ static int dwc3_probe(struct platform_device
>>>>>>>>>>>*pdev)
>>>>>>>>>>> return ret;
>>>>>>>>>>>}
>>>>>>>>>>>
>>>>>>>>>>>+static void dwc3_shutdown(struct platform_device *pdev)
>>>>>>>>>>>+{
>>>>>>>>>>>+ struct dwc3 *dwc = platform_get_drvdata(pdev);
>>>>>>>>>>>+ struct resource *res = platform_get_resource(pdev,
>>>>>>>>>>>IORESOURCE_MEM, 0);
>>>>>>>>>>>+
>>>>>>>>>>>+ pm_runtime_get_sync(&pdev->dev);
>>>>>>>>>>>+ /*
>>>>>>>>>>>+ * restore res->start back to its original value so that, in case
>>>>>>>>>>>the
>>>>>>>>>>>+ * probe is deferred, we don't end up getting error in request
>>>>>>>>>>>the
>>>>>>>>>>>+ * memory region the next time probe is called.
>>>>>>>>>>>+ */
>>>>>>>>>>>+ res->start -= DWC3_GLOBALS_REGS_START;
>>>>>>>>>>>+
>>>>>>>>>>>+ dwc3_debugfs_exit(dwc);
>>>>>>>>>>>+ dwc3_core_exit_mode(dwc);
>>>>>>>>>>>+ dwc3_event_buffers_cleanup(dwc);
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>What about dwc3_event_buffers_cleanup? should I remove it from
>>>>>>>>>dwc3_shutdown()?
>>>>>>>>>It is already in dwc3_core_exit()
>>>>>>>>
>>>>>>>>I think so. We should avoid duplicate code.
>>>>>>>>
>>>>>>>>>>>+ dwc3_free_event_buffers(dwc);
>>>>>>>>>>>+
>>>>>>>>>>>+ usb_phy_set_suspend(dwc->usb2_phy, 1);
>>>>>>>>>>>+ usb_phy_set_suspend(dwc->usb3_phy, 1);
>>>>>>>>>>>+
>>>>>>>>>>>+ phy_power_off(dwc->usb2_generic_phy);
>>>>>>>>>>>+ phy_power_off(dwc->usb3_generic_phy);
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>We've done these in dwc3_core_exit().
>>>>>>>
>>>>>>>This is the patch after testing on a Odroid XU4, on top of linux-next
>>>>>>>964bcc1b4f57028d56dace7d9bc5924f2eb43f36 which translates to 4.13.0-rc1-next-20170717+
>>>>>>>I tested this patch for a week without problems with heavy USB and NIC usage.
>>>>>>>Please consider merging it
>>>>
>>>>Author: Brian Kim <brian.kim@hardkernel.com>
>>>>Date: Wed Jul 12 11:26:55 2017 +0800
>>>>
>>>> usb: dwc3: Fix the USB 3.0 hub detection bug after warm boot
>>>> The dwc3 could not release resources when the module is built-in
>>>> because this module does not have shutdown method. This causes the USB
>>>> 3.0 hub is not able to detect after warm boot.
>>>> Original patch by Brian Kim, updated and submitted upstream by gustavo
>>>> panizzo.
>>>> Also see https://bugs.debian.org/843448
>>>> Signed-off-by: Brian Kim <brian.kim@hardkernel.com>
>>>> Signed-off-by: gustavo panizzo <gfa@zumbi.com.ar>
>>>>
>>>>diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
>>>>index 326b302fc440..09de37d47ee7 100644
>>>>--- a/drivers/usb/dwc3/core.c
>>>>+++ b/drivers/usb/dwc3/core.c
>>>>@@ -1259,6 +1259,32 @@ static int dwc3_probe(struct platform_device *pdev)
>>>> return ret;
>>>>}
>>>>
>>>>+static void dwc3_shutdown(struct platform_device *pdev)
>>>>+{
>>>>+ struct dwc3 *dwc = platform_get_drvdata(pdev);
>>>>+ struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>>>>+
>>>>+ pm_runtime_get_sync(&pdev->dev);
>>>>+ /*
>>>>+ * restore res->start back to its original value so that, in case the
>>>>+ * probe is deferred, we don't end up getting error in request the
>>>>+ * memory region the next time probe is called.
>>>>+ */
>>>>+ res->start -= DWC3_GLOBALS_REGS_START;
>>>>+
>>>>+ dwc3_debugfs_exit(dwc);
>>>>+ dwc3_core_exit_mode(dwc);
>>>>+ dwc3_event_buffers_cleanup(dwc);
>>>>+ dwc3_free_event_buffers(dwc);
>>>>+
>>>>+ dwc3_core_exit(dwc);
>>>>+ dwc3_ulpi_exit(dwc);
>>>>+
>>>>+ pm_runtime_put_sync(&pdev->dev);
>>>>+ pm_runtime_allow(&pdev->dev);
>>>>+ pm_runtime_disable(&pdev->dev);
>>>>+}
>>>>+
>>>>static int dwc3_remove(struct platform_device *pdev)
>>>>{
>>>> struct dwc3 *dwc = platform_get_drvdata(pdev);
>>>>@@ -1488,6 +1514,7 @@ MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
>>>>static struct platform_driver dwc3_driver = {
>>>> .probe = dwc3_probe,
>>>> .remove = dwc3_remove,
>>>>+ .shutdown = dwc3_shutdown,
>>>> .driver = {
>>>> .name = "dwc3",
>>>> .of_match_table = of_match_ptr(of_dwc3_match),
>>>>
>>>>Patch applies cleanly on top of c6be5a0e3cebc145127d46a58350e05d2bcf6323 from linux-next
>>>>Can you _please_ merge it?
>>>
>>>why are you upset? You didn't do the changes I requested until now. It's
>>
>>I'm not upset
>>
>>>too late for v4.14 merge window and you didn't even send this as a
>>>proper patch. I also have no evidence that you've been testing mainline
>>>kernel, the commits you pointed me to are against a v4.9 vendor kernel.
>>
>>the commit i sent was tested, and is still running, on top linux-next
>>964bcc1b4f57028d56dace7d9bc5924f2eb43f36, which gives an uname -r
>>4.13.0-rc1-next-20170717+
>>
>>
>>>
>>>Test this against a vanilla tree (v4.13 was tagged days ago) and give me
>>>logs showing the problem without your commit.
>
> the patch does not work on top of 4.13.0 :(
>
> could you draft a patch i can test?
why me? I don't have this platform. I have no idea what you need. You
(or the patch author) should be the one fixing comments to the patch.
Good luck
--
balbi
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
prev parent reply other threads:[~2017-09-18 8:11 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-12 3:52 [PATCH] usb: dwc3: Fix the USB 3.0 hub detection bug after warm boot gustavo panizzo
2017-07-12 6:08 ` Baolin Wang
2017-07-12 23:20 ` gustavo panizzo
2017-07-13 5:58 ` Baolin Wang
2017-07-21 14:05 ` gustavo panizzo
2017-07-24 9:53 ` Felipe Balbi
2017-07-29 23:53 ` gustavo panizzo
2017-09-07 6:51 ` gustavo panizzo
2017-09-07 10:51 ` Felipe Balbi
2017-09-15 9:01 ` gustavo panizzo
2017-09-16 4:24 ` gustavo panizzo
2017-09-18 8:11 ` Felipe Balbi [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=874ls0o28r.fsf@linux.intel.com \
--to=balbi@kernel.org \
--cc=baolin.wang@linaro.org \
--cc=brian.kim@hardkernel.com \
--cc=gfa@zumbi.com.ar \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--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;
as well as URLs for NNTP newsgroup(s).