1
0
Fork 0
alistair23-linux/drivers/dma/ti
Bin Liu 59861547ec dmaengine: cppi41: delete channel from pending list when stop channel
The driver defines three states for a cppi channel.
- idle: .chan_busy == 0 && not in .pending list
- pending: .chan_busy == 0 && in .pending list
- busy: .chan_busy == 1 && not in .pending list

There are cases in which the cppi channel could be in the pending state
when cppi41_dma_issue_pending() is called after cppi41_runtime_suspend()
is called.

cppi41_stop_chan() has a bug for these cases to set channels to idle state.
It only checks the .chan_busy flag, but not the .pending list, then later
when cppi41_runtime_resume() is called the channels in .pending list will
be transitioned to busy state.

Removing channels from the .pending list solves the problem.

Fixes: 975faaeb99 ("dma: cppi41: start tear down only if channel is busy")
Cc: stable@vger.kernel.org # v3.15+
Signed-off-by: Bin Liu <b-liu@ti.com>
Reviewed-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
2018-12-05 14:01:59 +05:30
..
Kconfig
Makefile
cppi41.c dmaengine: cppi41: delete channel from pending list when stop channel 2018-12-05 14:01:59 +05:30
dma-crossbar.c
edma.c dmaengine updates for 4.18-rc1 2018-06-08 11:02:21 -07:00
omap-dma.c dmaengine: ti: omap-dma: Fix OMAP1510 incorrect residue_granularity 2018-06-19 09:59:13 +05:30