* Re: make a confirm for [usb: dwc3: gadget: skip Set/Clear Halt when invalid]
@ 2018-06-25 9:37 liangshengjun
2018-06-25 9:43 ` Felipe Balbi
0 siblings, 1 reply; 6+ messages in thread
From: liangshengjun @ 2018-06-25 9:37 UTC (permalink / raw)
To: Felipe Balbi
Cc: stable@vger.kernel.org, linux-usb@vger.kernel.org, Alan Stern
Hi balbi,
Thanks for reponse. Now I fixed this case without check STALL status when clear-Halt request.
BDW, I have meet other case:
Run dwc3 for uvc function, the uvc video show video overlapping when windows 7 restart camera app.
I debug the dwc3 drivers ,found :
1. when camera app close, the dwc3 ep_dequeue is call. Then giveback request with status: -ECONNRESET to uvc function layer. dep->trb_dequeue keep stable
2.when camera app reopen ,the dwc3 ep_queue is call. Then kick a transfer, fetch a new trb to dwc3 core. dep->trb_enqueue increment.
3.when one trb tranfter complete, handle event process function fetch one frb by current dep->trb_dequeue, and uvc function would get one request complete giveback, which have been dequeue.
But in fact, current dep->trb_dequeue pointer buffer is "old", because stp1 have been dequeue it.
Current dwc3 drivers: the correct enqueue req process is " ep enqueue > fetch a new trb by trb_enqueue > increase trb_enqueue > pack trb to dwc3 core", Right?
For dequeue request process, now is " ep dequeue > stop started_list request > giveback request with -ECONNRESET status" Right ?
To avoid getting a older request which has been dequeued, I think dequeue process necessary sync the trb_dequeue to trb_enqueue. Right ?
Liang Shengjun
-----邮件原件-----
发件人: Felipe Balbi [mailto:felipe.balbi@linux.intel.com]
发送时间: 2018年6月25日 15:48
收件人: Alan Stern <stern@rowland.harvard.edu>
抄送: liangshengjun <liangshengjun@hisilicon.com>; stable@vger.kernel.org; linux-usb@vger.kernel.org
主题: Re: make a confirm for [usb: dwc3: gadget: skip Set/Clear Halt when invalid]
Hi,
Alan Stern <stern@rowland.harvard.edu> writes:
>> that patch is not 100% correct. You can revert it in your tree. I
>> added that because of a problem I found when running adb against macOS.
>>
>> It's actually okay to send Clear Halt at any time, but for some
>> reason
>> dwc3 was hanging when running adb against macOS.
>
> Note: According to the USB spec it's okay to send Clear-Halt at any
> time. But there are plenty of devices that get upset if they receive
> this message when the endpoint isn't actually halted.
right. The weird thing here is that dwc3 has never suffered from this until we ran ADB against macOS. That was the only way to get any problems.
Without clear halt, though, we have no means for syncing data toggle.
--
balbi
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: make a confirm for [usb: dwc3: gadget: skip Set/Clear Halt when invalid]
2018-06-25 9:37 make a confirm for [usb: dwc3: gadget: skip Set/Clear Halt when invalid] liangshengjun
@ 2018-06-25 9:43 ` Felipe Balbi
2018-06-26 10:09 ` 答复: " liangshengjun
0 siblings, 1 reply; 6+ messages in thread
From: Felipe Balbi @ 2018-06-25 9:43 UTC (permalink / raw)
To: liangshengjun
Cc: stable@vger.kernel.org, linux-usb@vger.kernel.org, Alan Stern
[-- Attachment #1: Type: text/plain, Size: 1872 bytes --]
Hi,
please don't top-post and break your emails at 80 columns
liangshengjun <liangshengjun@hisilicon.com> writes:
> Hi balbi,
>
> Thanks for reponse. Now I fixed this case without check STALL
> status when clear-Halt request.
>
> BDW, I have meet other case:
>
> Run dwc3 for uvc function, the uvc video show video overlapping when
> windows 7 restart camera app.
>
> I debug the dwc3 drivers ,found :
>
> 1. when camera app close, the dwc3 ep_dequeue is call. Then
> giveback request with status: -ECONNRESET to uvc function layer.
> dep->trb_dequeue keep stable
>
> 2.when camera app reopen ,the dwc3 ep_queue is call. Then kick a
> transfer, fetch a new trb to dwc3 core. dep->trb_enqueue
> increment.
>
> 3.when one trb tranfter complete, handle event process function
> fetch one frb by current dep->trb_dequeue, and uvc function
> would get one request complete giveback, which have been
> dequeue.
>
> But in fact, current dep->trb_dequeue pointer buffer is
> "old", because stp1 have been dequeue it.
>
> Current dwc3 drivers: the correct enqueue req process is " ep
> enqueue > fetch a new trb by trb_enqueue > increase
> trb_enqueue > pack trb to dwc3 core", Right?
>
> For dequeue request process, now is " ep dequeue > stop
> started_list request > giveback request with -ECONNRESET
> status" Right ?
>
> To avoid getting a older request which has been dequeued, I think
> dequeue process necessary sync the trb_dequeue to trb_enqueue. Right?
no, this is not the right fix. I think thkis has been fixed recently,
though. Check if current mainline still has the issue. If it doesn,
collect tracepoint data (see [1] below) and let me know how you
reproduce it.
[1] https://www.kernel.org/doc/html/latest/driver-api/usb/dwc3.html#reporting-bugs
--
balbi
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* 答复: make a confirm for [usb: dwc3: gadget: skip Set/Clear Halt when invalid]
2018-06-25 9:43 ` Felipe Balbi
@ 2018-06-26 10:09 ` liangshengjun
0 siblings, 0 replies; 6+ messages in thread
From: liangshengjun @ 2018-06-26 10:09 UTC (permalink / raw)
To: Felipe Balbi
Cc: stable@vger.kernel.org, linux-usb@vger.kernel.org, Alan Stern
After merge the patch
[PATCH] usb: dwc3: gadget: properly increment dequeue pointer on,
fixed the case.
Thank you so much.
Liang Shengjun
-----邮件原件-----
发件人: Felipe Balbi [mailto:felipe.balbi@linux.intel.com]
发送时间: 2018年6月25日 17:43
收件人: liangshengjun <liangshengjun@hisilicon.com>
抄送: stable@vger.kernel.org; linux-usb@vger.kernel.org; Alan Stern <stern@rowland.harvard.edu>
主题: Re: make a confirm for [usb: dwc3: gadget: skip Set/Clear Halt when invalid]
Hi,
please don't top-post and break your emails at 80 columns
liangshengjun <liangshengjun@hisilicon.com> writes:
> Hi balbi,
>
> Thanks for reponse. Now I fixed this case without check STALL
> status when clear-Halt request.
>
> BDW, I have meet other case:
>
> Run dwc3 for uvc function, the uvc video show video overlapping when
> windows 7 restart camera app.
>
> I debug the dwc3 drivers ,found :
>
> 1. when camera app close, the dwc3 ep_dequeue is call. Then
> giveback request with status: -ECONNRESET to uvc function layer.
> dep->trb_dequeue keep stable
>
> 2.when camera app reopen ,the dwc3 ep_queue is call. Then kick a
> transfer, fetch a new trb to dwc3 core. dep->trb_enqueue
> increment.
>
> 3.when one trb tranfter complete, handle event process function
> fetch one frb by current dep->trb_dequeue, and uvc function
> would get one request complete giveback, which have been
> dequeue.
>
> But in fact, current dep->trb_dequeue pointer buffer is
> "old", because stp1 have been dequeue it.
>
> Current dwc3 drivers: the correct enqueue req process is " ep
> enqueue > fetch a new trb by trb_enqueue > increase
> trb_enqueue > pack trb to dwc3 core", Right?
>
> For dequeue request process, now is " ep dequeue > stop
> started_list request > giveback request with -ECONNRESET
> status" Right ?
>
> To avoid getting a older request which has been dequeued, I think
> dequeue process necessary sync the trb_dequeue to trb_enqueue. Right?
no, this is not the right fix. I think thkis has been fixed recently, though. Check if current mainline still has the issue. If it doesn, collect tracepoint data (see [1] below) and let me know how you reproduce it.
[1] https://www.kernel.org/doc/html/latest/driver-api/usb/dwc3.html#reporting-bugs
--
balbi
^ permalink raw reply [flat|nested] 6+ messages in thread
[parent not found: <84923CA334DF85428B9ADCEC0F3CE864BA1492@dggemm510-mbx.china.huawei.com>]
* Re: make a confirm for [usb: dwc3: gadget: skip Set/Clear Halt when invalid]
[not found] <84923CA334DF85428B9ADCEC0F3CE864BA1492@dggemm510-mbx.china.huawei.com>
@ 2018-06-21 9:42 ` Felipe Balbi
2018-06-21 15:29 ` Alan Stern
0 siblings, 1 reply; 6+ messages in thread
From: Felipe Balbi @ 2018-06-21 9:42 UTC (permalink / raw)
To: liangshengjun; +Cc: stable@vger.kernel.org, linux-usb
[-- Attachment #1: Type: text/plain, Size: 2856 bytes --]
Hi,
that patch is not 100% correct. You can revert it in your tree. I added
that because of a problem I found when running adb against macOS.
It's actually okay to send Clear Halt at any time, but for some reason
dwc3 was hanging when running adb against macOS.
If you can revert the patch and make sure it works against all 3 major
OSes (linux, windows and mac) I'd be really glad.
liangshengjun <liangshengjun@hisilicon.com> writes:
> Hi felipe,
>
> I have met a case about set/clear Halt patch
> Version: linux v4.16,
> Case: usb uvc run with bulk-mode connect to Windows 7 PC. When PC stop camera application , it would send clearHalt request to uvc device to streaming-off video transfer.
> But with v4.16 dwc3 drivers, it would skip handling this clear Halt request , because dep->flags is not DWC3_EP_STALL status, then it causes PC restart camera application , uvc transfer fail.
> And I have confirmed v3.18 dwc3 drivers is OK.
>
> So how to balance for handling clear Halt without first setHalt ??
>
> PS:
> commit ffb80fc672c3a7b6afd0cefcb1524fb99917b2f3
> Author: Felipe Balbi <felipe.balbi@linux.intel.com>
> Date: Thu Jan 19 13:38:42 2017 +0200
>
> usb: dwc3: gadget: skip Set/Clear Halt when invalid
>
> At least macOS seems to be sending
> ClearFeature(ENDPOINT_HALT) to endpoints which
> aren't Halted. This makes DWC3's CLEARSTALL command
> time out which causes several issues for the driver.
>
> Instead, let's just return 0 and bail out early.
>
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
>
> diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
> index 6faf484..0a664d8 100644
> --- a/drivers/usb/dwc3/gadget.c
> +++ b/drivers/usb/dwc3/gadget.c
> @@ -1379,6 +1379,9 @@ int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol)
> unsigned transfer_in_flight;
> unsigned started;
>
> + if (dep->flags & DWC3_EP_STALL)
> + return 0;
> +
> if (dep->number > 1)
> trb = dwc3_ep_prev_trb(dep, dep->trb_enqueue);
> else
> @@ -1400,6 +1403,8 @@ int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol)
> else
> dep->flags |= DWC3_EP_STALL;
> } else {
> + if (!(dep->flags & DWC3_EP_STALL))
> + return 0;
>
> ret = dwc3_send_clear_stall_ep_cmd(dep);
> if (ret)
>
>
> Liang Shengjun
> [cid:image001.png@01D40971.9265B340]
> HISILICON TECHNOLOGIES CO., LTD.
> New R&D Center, Wuhe Road, Bantian,
> Longgang District, Shenzhen 518129 P.R. China
>
--
balbi
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: make a confirm for [usb: dwc3: gadget: skip Set/Clear Halt when invalid]
2018-06-21 9:42 ` Felipe Balbi
@ 2018-06-21 15:29 ` Alan Stern
2018-06-25 7:47 ` Felipe Balbi
0 siblings, 1 reply; 6+ messages in thread
From: Alan Stern @ 2018-06-21 15:29 UTC (permalink / raw)
To: Felipe Balbi; +Cc: liangshengjun, stable@vger.kernel.org, linux-usb
On Thu, 21 Jun 2018, Felipe Balbi wrote:
>
> Hi,
>
> that patch is not 100% correct. You can revert it in your tree. I added
> that because of a problem I found when running adb against macOS.
>
> It's actually okay to send Clear Halt at any time, but for some reason
> dwc3 was hanging when running adb against macOS.
Note: According to the USB spec it's okay to send Clear-Halt at any
time. But there are plenty of devices that get upset if they receive
this message when the endpoint isn't actually halted.
Alan stern
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-06-26 10:09 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-25 9:37 make a confirm for [usb: dwc3: gadget: skip Set/Clear Halt when invalid] liangshengjun
2018-06-25 9:43 ` Felipe Balbi
2018-06-26 10:09 ` 答复: " liangshengjun
[not found] <84923CA334DF85428B9ADCEC0F3CE864BA1492@dggemm510-mbx.china.huawei.com>
2018-06-21 9:42 ` Felipe Balbi
2018-06-21 15:29 ` Alan Stern
2018-06-25 7:47 ` Felipe Balbi
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).