mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 11:10:51 +07:00
usb: dwc2: Fix EP TxFIFO number setting
In case when some EP IN is frequently reused, i.e. enabled/disabled by function driver. It is required to clear TxFIFO number field in DIEPCTL register before setting new number. Otherwise there is probability to have same TxFIFO number for different EP's because of OR operator. Signed-off-by: Minas Harutyunyan <hminas@synopsys.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
This commit is contained in:
parent
836bcab506
commit
97311c8f8b
@ -4005,6 +4005,7 @@ static int dwc2_hsotg_ep_enable(struct usb_ep *ep,
|
||||
ret = -ENOMEM;
|
||||
goto error1;
|
||||
}
|
||||
epctrl &= ~(DXEPCTL_TXFNUM_LIMIT << DXEPCTL_TXFNUM_SHIFT);
|
||||
hsotg->fifo_map |= 1 << fifo_index;
|
||||
epctrl |= DXEPCTL_TXFNUM(fifo_index);
|
||||
hs_ep->fifo_index = fifo_index;
|
||||
|
Loading…
Reference in New Issue
Block a user