usb: dwc2: Add safety check in setting of descriptor chain pointers
In some cases device sending ZLP IN on non EP0 which reassigning EP0 OUT descriptor pointer to that EP. Dedicated for EP0 OUT descriptor multiple time re-used by other EP while that descriptor already in use by EP0 OUT for SETUP transaction. As result when SETUP packet received BNA interrupt asserting. In dwc2_hsotg_program_zlp() function dwc2_gadget_set_ep0_desc_chain() must be called only for EP0. Acked-by: John Youn <johnyoun@synopsys.com> Signed-off-by: Minas Harutyunyan <hminas@synopsys.com> Signed-off-by: Grigor Tovmasyan <tovmasya@synopsys.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
This commit is contained in:
parent
20c63f4089
commit
201ec568c5
|
@ -1917,7 +1917,9 @@ static void dwc2_hsotg_program_zlp(struct dwc2_hsotg *hsotg,
|
||||||
/* Not specific buffer needed for ep0 ZLP */
|
/* Not specific buffer needed for ep0 ZLP */
|
||||||
dma_addr_t dma = hs_ep->desc_list_dma;
|
dma_addr_t dma = hs_ep->desc_list_dma;
|
||||||
|
|
||||||
|
if (!index)
|
||||||
dwc2_gadget_set_ep0_desc_chain(hsotg, hs_ep);
|
dwc2_gadget_set_ep0_desc_chain(hsotg, hs_ep);
|
||||||
|
|
||||||
dwc2_gadget_config_nonisoc_xfer_ddma(hs_ep, dma, 0);
|
dwc2_gadget_config_nonisoc_xfer_ddma(hs_ep, dma, 0);
|
||||||
} else {
|
} else {
|
||||||
dwc2_writel(DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) |
|
dwc2_writel(DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) |
|
||||||
|
|
Loading…
Reference in New Issue