Hi,

John Youn <[email protected]> writes:
> From: Vahram Aharonyan <[email protected]>
>
> In DDMA mode of operation IN status phase of control write transfer
> should start after getting StsPhseRcvd interrupt. This interrupt is
> issued by HW once host starts to send IN tokens after data stage.
>
> Signed-off-by: Vahram Aharonyan <[email protected]>
> Signed-off-by: John Youn <[email protected]>
> ---
>  drivers/usb/dwc2/gadget.c | 11 +++++++++--
>  1 file changed, 9 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c
> index e866edc..4e84862 100644
> --- a/drivers/usb/dwc2/gadget.c
> +++ b/drivers/usb/dwc2/gadget.c
> @@ -1993,7 +1993,9 @@ static void dwc2_hsotg_handle_outdone(struct dwc2_hsotg 
> *hsotg, int epnum)
>                */
>       }
>  
> -     if (epnum == 0 && hsotg->ep0_state == DWC2_EP0_DATA_OUT) {
> +     /* DDMA IN status phase will start from StsPhseRcvd interrupt */
> +     if (!using_desc_dma(hsotg) && epnum == 0 &&
> +         hsotg->ep0_state == DWC2_EP0_DATA_OUT) {
>               /* Move to STATUS IN */
>               dwc2_hsotg_ep0_zlp(hsotg, true);
>               return;
> @@ -2616,9 +2618,14 @@ static void dwc2_hsotg_epint(struct dwc2_hsotg *hsotg, 
> unsigned int idx,
>               }
>       }
>  
> -     if (ints & DXEPINT_STSPHSERCVD)
> +     if (ints & DXEPINT_STSPHSERCVD) {
>               dev_dbg(hsotg->dev, "%s: StsPhseRcvd\n", __func__);
>  
> +             /* Move to STATUS IN for DDMA */
> +             if (using_desc_dma(hsotg))
> +                     dwc2_hsotg_ep0_zlp(hsotg, true);

oh, so *now* the interrupt is needed. Why was it enabled so far back?
Why couldn't enabling this interrupt be deferred all the way here?

Also, someone needs to get rid of dev_dbg() and switch to tracepoints in
this driver :-)

-- 
balbi

Attachment: signature.asc
Description: PGP signature

Reply via email to