From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
To: joswang <joswang1221@gmail.com>
Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>,
"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"stable@vger.kernel.org" <stable@vger.kernel.org>,
Jos Wang <joswang@lenovo.com>
Subject: Re: [PATCH v5] usb: dwc3: core: Workaround for CSR read timeout
Date: Tue, 18 Jun 2024 21:31:59 +0000 [thread overview]
Message-ID: <20240618213156.s5r7z7zg7q2dilre@synopsys.com> (raw)
In-Reply-To: <20240618124235.5093-1-joswang1221@gmail.com>
On Tue, Jun 18, 2024, joswang wrote:
> From: Jos Wang <joswang@lenovo.com>
>
> This is a workaround for STAR 4846132, which only affects
> DWC_usb31 version2.00a operating in host mode.
>
> There is a problem in DWC_usb31 version 2.00a operating
> in host mode that would cause a CSR read timeout When CSR
> read coincides with RAM Clock Gating Entry. By disable
> Clock Gating, sacrificing power consumption for normal
> operation.
>
> Cc: stable@vger.kernel.org
> Signed-off-by: Jos Wang <joswang@lenovo.com>
> ---
> v4 -> v5: no change
> v3 -> v4: modify commit message, add Cc: stable@vger.kernel.org
> v2 -> v3:
> - code refactor
> - modify comment, add STAR number, workaround applied in host mode
> - modify commit message, add STAR number, workaround applied in host mode
> - modify Author Jos Wang
> v1 -> v2: no change
>
> drivers/usb/dwc3/core.c | 20 +++++++++++++++++++-
> 1 file changed, 19 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
> index 7ee61a89520b..2a3adc80fe0f 100644
> --- a/drivers/usb/dwc3/core.c
> +++ b/drivers/usb/dwc3/core.c
> @@ -957,12 +957,16 @@ static bool dwc3_core_is_valid(struct dwc3 *dwc)
>
> static void dwc3_core_setup_global_control(struct dwc3 *dwc)
> {
> + unsigned int power_opt;
> + unsigned int hw_mode;
> u32 reg;
>
> reg = dwc3_readl(dwc->regs, DWC3_GCTL);
> reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
> + hw_mode = DWC3_GHWPARAMS0_MODE(dwc->hwparams.hwparams0);
> + power_opt = DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1);
>
> - switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) {
> + switch (power_opt) {
> case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
> /**
> * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an
> @@ -995,6 +999,20 @@ static void dwc3_core_setup_global_control(struct dwc3 *dwc)
> break;
> }
>
> + /*
> + * This is a workaround for STAR#4846132, which only affects
> + * DWC_usb31 version2.00a operating in host mode.
> + *
> + * There is a problem in DWC_usb31 version 2.00a operating
> + * in host mode that would cause a CSR read timeout When CSR
> + * read coincides with RAM Clock Gating Entry. By disable
> + * Clock Gating, sacrificing power consumption for normal
> + * operation.
> + */
> + if (power_opt != DWC3_GHWPARAMS1_EN_PWROPT_NO &&
> + hw_mode != DWC3_GHWPARAMS0_MODE_GADGET && DWC3_VER_IS(DWC31, 200A))
> + reg |= DWC3_GCTL_DSBLCLKGTNG;
> +
> /* check if current dwc3 is on simulation board */
> if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) {
> dev_info(dwc->dev, "Running with FPGA optimizations\n");
> --
> 2.17.1
>
Why are there two v5 patches? This will confuse reviewers. Please create
a new version on every new submission however small the change is.
Please send v6.
Thanks,
Thinh
next prev parent reply other threads:[~2024-06-18 21:40 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-18 12:42 [PATCH v5] usb: dwc3: core: Workaround for CSR read timeout joswang
2024-06-18 21:31 ` Thinh Nguyen [this message]
2024-06-19 4:47 ` joswang
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=20240618213156.s5r7z7zg7q2dilre@synopsys.com \
--to=thinh.nguyen@synopsys.com \
--cc=gregkh@linuxfoundation.org \
--cc=joswang1221@gmail.com \
--cc=joswang@lenovo.com \
--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