From: Felipe Balbi <balbi@kernel.org>
To: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Shuah Khan <shuah@kernel.org>,
Alan Stern <stern@rowland.harvard.edu>,
Johan Hovold <johan@kernel.org>,
Jaejoong Kim <climbbb.kim@gmail.com>,
Benjamin Herrenschmidt <benh@kernel.crashing.org>,
Roger Quadros <rogerq@ti.com>,
Manu Gautam <mgautam@codeaurora.org>,
martin.petersen@oracle.com, Bart Van Assche <bvanassche@acm.org>,
Mike Christie <mchristi@redhat.com>,
Matthew Wilcox <willy@infradead.org>,
Colin Ian King <colin.king@canonical.com>
Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
v.anuragkumar@gmail.com, Thinh Nguyen <thinhn@synopsys.com>,
Tejas Joglekar <tejas.joglekar@synopsys.com>,
Ajay Yugalkishore Pandey <APANDEY@xilinx.com>
Subject: [v7,09/10] usb: dwc3: Check for IOC/LST bit in both event->status and TRB->ctrl fields
Date: Wed, 05 Dec 2018 11:07:44 +0200 [thread overview]
Message-ID: <875zw82vfj.fsf@linux.intel.com> (raw)
Hi,
Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com> writes:
> The present code in dwc3_gadget_ep_reclaim_completed_trb() will check
> for IOC/LST bit in the event->status and returns if IOC/LST bit is
> set. This logic doesn't work if multiple TRBs are queued per
> request and the IOC/LST bit is set on the last TRB of that request.
> Consider an example where a queued request has multiple queued TRBs
> and IOC/LST bit is set only for the last TRB. In this case, the Core
> generates XferComplete/XferInProgress events only for the last TRB
> (since IOC/LST are set only for the last TRB). As per the logic in
> dwc3_gadget_ep_reclaim_completed_trb() event->status is checked for
> IOC/LST bit and returns on the first TRB. This makes the remaining
> TRBs left unhandled.
> To aviod this, changed the code to check for IOC/LST bits in both
> event->status & TRB->ctrl. This patch does the same.
>
> Signed-off-by: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
> Reviewed-by: Thinh Nguyen <thinhn@synopsys.com>
> Tested-by: Tejas Joglekar <tejas.joglekar@synopsys.com>
> ---
> Changes in v7:
> 1. None
>
> Changes in v6:
> 1. None
>
> Changes in v5:
> 1. None
>
> Changes in v4:
> 1. None
>
> Changes in v3:
> 1. None
>
> Changes in v2:
> 1. None
> ---
> drivers/usb/dwc3/gadget.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
> index 9ddc9fd..216179e 100644
> --- a/drivers/usb/dwc3/gadget.c
> +++ b/drivers/usb/dwc3/gadget.c
> @@ -2286,7 +2286,12 @@ static int dwc3_gadget_ep_reclaim_completed_trb(struct dwc3_ep *dep,
> if (event->status & DEPEVT_STATUS_SHORT && !chain)
> return 1;
>
> - if (event->status & (DEPEVT_STATUS_IOC | DEPEVT_STATUS_LST))
> + if ((event->status & DEPEVT_STATUS_IOC) &&
> + (trb->ctrl & DWC3_TRB_CTRL_IOC))
> + return 1;
this shouldn't be necessary. According to databook, event->status
contains the bits from the completed TRB. Which means that
event->status & IOC will always be equal to trb->ctrl & IOC.
Can you further describe the situation here? Perhaps share tracepoints
exposing the problem?
WARNING: multiple messages have this Message-ID (diff)
From: Felipe Balbi <balbi@kernel.org>
To: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Shuah Khan <shuah@kernel.org>,
Alan Stern <stern@rowland.harvard.edu>,
Johan Hovold <johan@kernel.org>,
Jaejoong Kim <climbbb.kim@gmail.com>,
Benjamin Herrenschmidt <benh@kernel.crashing.org>,
Roger Quadros <rogerq@ti.com>,
Manu Gautam <mgautam@codeaurora.org>,
martin.petersen@oracle.com, Bart Van Assche <bvanassche@acm.org>,
Mike Christie <mchristi@redhat.com>,
Matthew Wilcox <willy@infradead.org>,
Colin Ian King <colin.king@canonical.com>
Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
v.anuragkumar@gmail.com, Thinh Nguyen <thinhn@synopsys.com>,
Tejas Joglekar <tejas.joglekar@synopsys.com>,
Ajay Yugalkishore Pandey <APANDEY@xilinx.com>,
Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
Subject: Re: [PATCH v7 09/10] usb: dwc3: Check for IOC/LST bit in both event->status and TRB->ctrl fields
Date: Wed, 05 Dec 2018 11:07:44 +0200 [thread overview]
Message-ID: <875zw82vfj.fsf@linux.intel.com> (raw)
In-Reply-To: <1543662811-5194-10-git-send-email-anurag.kumar.vulisha@xilinx.com>
[-- Attachment #1: Type: text/plain, Size: 2241 bytes --]
Hi,
Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com> writes:
> The present code in dwc3_gadget_ep_reclaim_completed_trb() will check
> for IOC/LST bit in the event->status and returns if IOC/LST bit is
> set. This logic doesn't work if multiple TRBs are queued per
> request and the IOC/LST bit is set on the last TRB of that request.
> Consider an example where a queued request has multiple queued TRBs
> and IOC/LST bit is set only for the last TRB. In this case, the Core
> generates XferComplete/XferInProgress events only for the last TRB
> (since IOC/LST are set only for the last TRB). As per the logic in
> dwc3_gadget_ep_reclaim_completed_trb() event->status is checked for
> IOC/LST bit and returns on the first TRB. This makes the remaining
> TRBs left unhandled.
> To aviod this, changed the code to check for IOC/LST bits in both
> event->status & TRB->ctrl. This patch does the same.
>
> Signed-off-by: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
> Reviewed-by: Thinh Nguyen <thinhn@synopsys.com>
> Tested-by: Tejas Joglekar <tejas.joglekar@synopsys.com>
> ---
> Changes in v7:
> 1. None
>
> Changes in v6:
> 1. None
>
> Changes in v5:
> 1. None
>
> Changes in v4:
> 1. None
>
> Changes in v3:
> 1. None
>
> Changes in v2:
> 1. None
> ---
> drivers/usb/dwc3/gadget.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
> index 9ddc9fd..216179e 100644
> --- a/drivers/usb/dwc3/gadget.c
> +++ b/drivers/usb/dwc3/gadget.c
> @@ -2286,7 +2286,12 @@ static int dwc3_gadget_ep_reclaim_completed_trb(struct dwc3_ep *dep,
> if (event->status & DEPEVT_STATUS_SHORT && !chain)
> return 1;
>
> - if (event->status & (DEPEVT_STATUS_IOC | DEPEVT_STATUS_LST))
> + if ((event->status & DEPEVT_STATUS_IOC) &&
> + (trb->ctrl & DWC3_TRB_CTRL_IOC))
> + return 1;
this shouldn't be necessary. According to databook, event->status
contains the bits from the completed TRB. Which means that
event->status & IOC will always be equal to trb->ctrl & IOC.
Can you further describe the situation here? Perhaps share tracepoints
exposing the problem?
--
balbi
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
next reply other threads:[~2018-12-05 9:07 UTC|newest]
Thread overview: 67+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-05 9:07 Felipe Balbi [this message]
2018-12-05 9:07 ` [PATCH v7 09/10] usb: dwc3: Check for IOC/LST bit in both event->status and TRB->ctrl fields Felipe Balbi
-- strict thread matches above, loose matches on Subject: below --
2019-01-04 14:17 [v7,01/10] usb: gadget: udc: Add timer support for usb requests Anurag Kumar Vulisha
2019-01-04 14:17 ` [PATCH v7 01/10] " Anurag Kumar Vulisha
2018-12-12 15:11 [v7,01/10] " Anurag Kumar Vulisha
2018-12-12 15:11 ` [PATCH v7 01/10] " Anurag Kumar Vulisha
2018-12-10 9:03 [v7,09/10] usb: dwc3: Check for IOC/LST bit in both event->status and TRB->ctrl fields Felipe Balbi
2018-12-10 9:03 ` [PATCH v7 09/10] " Felipe Balbi
2018-12-10 8:56 [v7,09/10] " Anurag Kumar Vulisha
2018-12-10 8:56 ` [PATCH v7 09/10] " Anurag Kumar Vulisha
2018-12-10 6:54 [v7,09/10] " Felipe Balbi
2018-12-10 6:54 ` [PATCH v7 09/10] " Felipe Balbi
2018-12-08 19:03 [v7,09/10] " Anurag Kumar Vulisha
2018-12-08 19:03 ` [PATCH v7 09/10] " Anurag Kumar Vulisha
2018-12-07 17:09 [v7,01/10] usb: gadget: udc: Add timer support for usb requests Alan Stern
2018-12-07 17:09 ` [PATCH v7 01/10] " Alan Stern
2018-12-07 6:11 [v7,09/10] usb: dwc3: Check for IOC/LST bit in both event->status and TRB->ctrl fields Felipe Balbi
2018-12-07 6:11 ` [PATCH v7 09/10] " Felipe Balbi
2018-12-07 6:05 [v7,01/10] usb: gadget: udc: Add timer support for usb requests Felipe Balbi
2018-12-07 6:05 ` [PATCH v7 01/10] " Felipe Balbi
2018-12-05 19:05 [v7,05/10] usb: dwc3: make controller clear transfer resources after complete Anurag Kumar Vulisha
2018-12-05 19:05 ` [PATCH v7 05/10] " Anurag Kumar Vulisha
2018-12-05 19:01 [v7,09/10] usb: dwc3: Check for IOC/LST bit in both event->status and TRB->ctrl fields Anurag Kumar Vulisha
2018-12-05 19:01 ` [PATCH v7 09/10] " Anurag Kumar Vulisha
2018-12-05 15:43 [v7,01/10] usb: gadget: udc: Add timer support for usb requests Anurag Kumar Vulisha
2018-12-05 15:43 ` [PATCH v7 01/10] " Anurag Kumar Vulisha
2018-12-05 9:01 [v7,05/10] usb: dwc3: make controller clear transfer resources after complete Felipe Balbi
2018-12-05 9:01 ` [PATCH v7 05/10] " Felipe Balbi
2018-12-04 19:28 [v7,01/10] usb: gadget: udc: Add timer support for usb requests Alan Stern
2018-12-04 19:28 ` [PATCH v7 01/10] " Alan Stern
2018-12-04 19:07 [v7,01/10] " Anurag Kumar Vulisha
2018-12-04 19:07 ` [PATCH v7 01/10] " Anurag Kumar Vulisha
2018-12-04 16:46 [v7,01/10] " Alan Stern
2018-12-04 16:46 ` [PATCH v7 01/10] " Alan Stern
2018-12-04 16:18 [v7,01/10] " Anurag Kumar Vulisha
2018-12-04 16:18 ` [PATCH v7 01/10] " Anurag Kumar Vulisha
2018-12-03 23:08 [v7,01/10] " Alan Stern
2018-12-03 23:08 ` [PATCH v7 01/10] " Alan Stern
2018-12-03 16:05 [v7,01/10] " Anurag Kumar Vulisha
2018-12-03 16:05 ` [PATCH v7 01/10] " Anurag Kumar Vulisha
2018-12-03 14:51 [v7,01/10] " Alan Stern
2018-12-03 14:51 ` [PATCH v7 01/10] " Alan Stern
2018-12-03 10:23 [v7,01/10] " Anurag Kumar Vulisha
2018-12-03 10:23 ` [PATCH v7 01/10] " Anurag Kumar Vulisha
2018-12-02 16:36 [v7,01/10] " Alan Stern
2018-12-02 16:36 ` [PATCH v7 01/10] " Alan Stern
2018-12-01 11:13 [v7,10/10] usb: dwc3: Check MISSED ISOC bit only for ISOC endpoints Anurag Kumar Vulisha
2018-12-01 11:13 ` [PATCH v7 10/10] " Anurag Kumar Vulisha
2018-12-01 11:13 [v7,09/10] usb: dwc3: Check for IOC/LST bit in both event->status and TRB->ctrl fields Anurag Kumar Vulisha
2018-12-01 11:13 ` [PATCH v7 09/10] " Anurag Kumar Vulisha
2018-12-01 11:13 [v7,08/10] usb: dwc3: Correct the logic for checking TRB full in __dwc3_prepare_one_trb() Anurag Kumar Vulisha
2018-12-01 11:13 ` [PATCH v7 08/10] " Anurag Kumar Vulisha
2018-12-01 11:13 [v7,07/10] usb: dwc3: check for requests in started list for stream capable endpoints Anurag Kumar Vulisha
2018-12-01 11:13 ` [PATCH v7 07/10] " Anurag Kumar Vulisha
2018-12-01 11:13 [v7,06/10] usb: dwc3: don't issue no-op trb " Anurag Kumar Vulisha
2018-12-01 11:13 ` [PATCH v7 06/10] " Anurag Kumar Vulisha
2018-12-01 11:13 [v7,05/10] usb: dwc3: make controller clear transfer resources after complete Anurag Kumar Vulisha
2018-12-01 11:13 ` [PATCH v7 05/10] " Anurag Kumar Vulisha
2018-12-01 11:13 [v7,04/10] usb: dwc3: update stream id in depcmd Anurag Kumar Vulisha
2018-12-01 11:13 ` [PATCH v7 04/10] " Anurag Kumar Vulisha
2018-12-01 11:13 [v7,03/10] usb: dwc3: gadget: handle stream events Anurag Kumar Vulisha
2018-12-01 11:13 ` [PATCH v7 03/10] " Anurag Kumar Vulisha
2018-12-01 11:13 [v7,02/10] usb: gadget: function: tcm: Add timeout for stream capable endpoints Anurag Kumar Vulisha
2018-12-01 11:13 ` [PATCH v7 02/10] " Anurag Kumar Vulisha
2018-12-01 11:13 [v7,01/10] usb: gadget: udc: Add timer support for usb requests Anurag Kumar Vulisha
2018-12-01 11:13 ` [PATCH v7 01/10] " Anurag Kumar Vulisha
2018-12-01 11:13 [PATCH v7 00/10] usb: dwc3: Fix broken BULK stream support to dwc3 gadget driver Anurag Kumar Vulisha
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=875zw82vfj.fsf@linux.intel.com \
--to=balbi@kernel.org \
--cc=APANDEY@xilinx.com \
--cc=anurag.kumar.vulisha@xilinx.com \
--cc=benh@kernel.crashing.org \
--cc=bvanassche@acm.org \
--cc=climbbb.kim@gmail.com \
--cc=colin.king@canonical.com \
--cc=gregkh@linuxfoundation.org \
--cc=johan@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=mchristi@redhat.com \
--cc=mgautam@codeaurora.org \
--cc=rogerq@ti.com \
--cc=shuah@kernel.org \
--cc=stern@rowland.harvard.edu \
--cc=tejas.joglekar@synopsys.com \
--cc=thinhn@synopsys.com \
--cc=v.anuragkumar@gmail.com \
--cc=willy@infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.