]> git.baikalelectronics.ru Git - kernel.git/commit
spi: bcm2835: Synchronize with callback on DMA termination
authorLukas Wunner <lukas@wunner.de>
Thu, 29 Nov 2018 15:45:24 +0000 (16:45 +0100)
committerMark Brown <broonie@kernel.org>
Tue, 4 Dec 2018 16:51:55 +0000 (16:51 +0000)
commit25ee1f060a9802c3af8cff56758db42652fa0888
tree8214b5bc0e342dc11a046b41a5f06e74d2416833
parent3312ba5f7004121b86a20f5b1c83156ed3a40ad7
spi: bcm2835: Synchronize with callback on DMA termination

Commit be9f8439bfb9 ("dmaengine: Add transfer termination
synchronization support") deprecated dmaengine_terminate_all() in favor
of dmaengine_terminate_sync() and dmaengine_terminate_async() to avoid
freeing resources used by the DMA callback before its execution has
concluded.

Commit 711d09d3aea4 ("dmaengine: bcm2835-dma: Use vchan_terminate_vdesc()
instead of desc_free") amended the BCM2835 DMA driver with an
implementation of ->device_synchronize(), which is a prerequisite for
dmaengine_terminate_sync().  Thus, clients of the DMA driver (such as
the BCM2835 SPI driver) may now be converted to the new API.

It is generally desirable to use the _sync() variant except in atomic
context.  There is only a single occurrence where the BCM2835 SPI driver
calls dmaengine_terminate_all() in atomic context and that is in
bcm2835_spi_dma_done() (the RX DMA channel's callback) to terminate the
TX DMA channel.  The TX DMA channel doesn't have a callback (yet), hence
it is safe to use the _async() variant there.

Signed-off-by: Lukas Wunner <lukas@wunner.de>
Cc: Frank Pavlic <f.pavlic@kunbus.de>
Cc: Martin Sperl <kernel@martin.sperl.org>
Cc: Noralf Trønnes <noralf@tronnes.org>
Cc: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-bcm2835.c