Skip to content

Commit

Permalink
usb: musb: musb_cppi41: Workaround DMA stall issue during teardown
Browse files Browse the repository at this point in the history
The DMA may hang up if a teardown is initiated while an endpoint is still
active (Advisory 2.3.27 of DA8xx errata).
To workaround this issue, add a delay before to initiate the teardown.

Signed-off-by: Alexandre Bailon <[email protected]>
Signed-off-by: Bin Liu <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
anobli authored and gregkh committed Apr 18, 2017
1 parent d6299b6 commit 593bc46
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/musb/da8xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ da8xx_dma_controller_create(struct musb *musb, void __iomem *base)

static const struct musb_platform_ops da8xx_ops = {
.quirks = MUSB_INDEXED_EP | MUSB_PRESERVE_SESSION |
MUSB_DMA_CPPI41,
MUSB_DMA_CPPI41 | MUSB_DA8XX,
.init = da8xx_musb_init,
.exit = da8xx_musb_exit,

Expand Down
1 change: 1 addition & 0 deletions drivers/usb/musb/musb_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ struct musb_io;
*/
struct musb_platform_ops {

#define MUSB_DA8XX BIT(8)
#define MUSB_PRESERVE_SESSION BIT(7)
#define MUSB_DMA_UX500 BIT(6)
#define MUSB_DMA_CPPI41 BIT(5)
Expand Down
4 changes: 4 additions & 0 deletions drivers/usb/musb/musb_cppi41.c
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,10 @@ static int cppi41_dma_channel_abort(struct dma_channel *channel)
}
}

/* DA8xx Advisory 2.3.27: wait 250 ms before to start the teardown */
if (musb->io.quirks & MUSB_DA8XX)
mdelay(250);

tdbit = 1 << cppi41_channel->port_num;
if (is_tx)
tdbit <<= 16;
Expand Down

0 comments on commit 593bc46

Please sign in to comment.