From: Xu Yang <xu.yang_2@nxp.com>
To: Frank Li <Frank.li@nxp.com>
Cc: peter.chen@kernel.org, gregkh@linuxfoundation.org,
linux-usb@vger.kernel.org, imx@lists.linux.dev, jun.li@nxp.com
Subject: Re: [PATCH 2/3] usb: chipidea: udc: improve dTD link logic
Date: Fri, 13 Sep 2024 09:52:34 +0800 [thread overview]
Message-ID: <20240913015234.iucdnbvdlpri67p7@hippo> (raw)
In-Reply-To: <ZuJ0Hft97VA21utl@lizhi-Precision-Tower-5810>
On Thu, Sep 12, 2024 at 12:54:53AM -0400, Frank Li wrote:
> On Thu, Sep 12, 2024 at 11:35:50AM +0800, Xu Yang wrote:
> > Currently, ATDTW semaphore is used to safety link new dTD to dQH. But this
> > code has a bug when the endpoint is already in error before polling ATDTW
> > or just met error during polling ATDTW. In that cases, ATDTW will never
> > turn to 1 and the cpu will busy loop there.
>
> It should be bug fixes, add fixes tag and cc stable.
Okay.
>
> >
> > When the endpoint met error, ENDPTSTAT will be cleared by HW. Therefore,
> > ENDPTSTAT should also be considered during this process. In case of
> > endpoint error, the current dTD should not be pushed to the head of dQH
> > since some dTDs may be still not executed. Therefore, the link logic is
> > also improved accordingly.
> >
> > Signed-off-by: Xu Yang <xu.yang_2@nxp.com>
> > ---
> > drivers/usb/chipidea/udc.c | 9 ++++++++-
> > 1 file changed, 8 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/usb/chipidea/udc.c b/drivers/usb/chipidea/udc.c
> > index b9ccf62e0a50..0ab57b87b07b 100644
> > --- a/drivers/usb/chipidea/udc.c
> > +++ b/drivers/usb/chipidea/udc.c
> > @@ -612,10 +612,17 @@ static int _hardware_enqueue(struct ci_hw_ep *hwep, struct ci_hw_req *hwreq)
> > do {
> > hw_write(ci, OP_USBCMD, USBCMD_ATDTW, USBCMD_ATDTW);
> > tmp_stat = hw_read(ci, OP_ENDPTSTAT, BIT(n));
> > - } while (!hw_read(ci, OP_USBCMD, USBCMD_ATDTW));
> > + } while (!hw_read(ci, OP_USBCMD, USBCMD_ATDTW) && tmp_stat);
> > hw_write(ci, OP_USBCMD, USBCMD_ATDTW, 0);
> > if (tmp_stat)
> > goto done;
> > +
> > + /* In case of error, ENDPTSTAT will also turn into 0, then
> > + * don't push this dTD to dQH head if current dTD pointer
> > + * is not the last dTD in previous request.
> > + */
>
> OP_ENDPTSTAT will be clear by HW when the endpoint met err. This dTD don't
> push to dQH if current dTD point is not the last one in previous request.
Okay, will replace with it.
Thanks,
Xu Yang
next prev parent reply other threads:[~2024-09-13 1:54 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-12 3:35 [PATCH 1/3] usb: chipidea: udc: handle USB Error Interrupt if IOC not set Xu Yang
2024-09-12 3:35 ` [PATCH 2/3] usb: chipidea: udc: improve dTD link logic Xu Yang
2024-09-12 4:54 ` Frank Li
2024-09-13 1:52 ` Xu Yang [this message]
2024-09-13 8:51 ` kernel test robot
2024-09-12 3:35 ` [PATCH 3/3] usb: chipidea: udc: make isoc endpoint a bit error tolerant Xu Yang
2024-09-12 5:13 ` Frank Li
2024-09-13 1:55 ` Xu Yang
2024-09-13 1:49 ` Peter Chen
2024-09-13 3:12 ` Xu Yang
2024-09-12 5:26 ` [PATCH 1/3] usb: chipidea: udc: handle USB Error Interrupt if IOC not set Frank Li
2024-09-13 3:21 ` Xu Yang
2024-09-13 1:37 ` Peter Chen
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=20240913015234.iucdnbvdlpri67p7@hippo \
--to=xu.yang_2@nxp.com \
--cc=Frank.li@nxp.com \
--cc=gregkh@linuxfoundation.org \
--cc=imx@lists.linux.dev \
--cc=jun.li@nxp.com \
--cc=linux-usb@vger.kernel.org \
--cc=peter.chen@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