diff options
author | Radu Pirea <radu.pirea@microchip.com> | 2017-12-15 10:40:17 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-12-19 04:35:35 -0500 |
commit | 66e900a3d225575c8b48b59ae1fe74bb6e5a65cc (patch) | |
tree | b24e6cba0fb30059102ea9d7b79ec8af8bacd0c2 | |
parent | 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff) |
spi: atmel: fixed spin_lock usage inside atmel_spi_remove
The only part of atmel_spi_remove which needs to be atomic is hardware
reset.
atmel_spi_stop_dma calls dma_terminate_all and this needs interrupts
enabled.
atmel_spi_release_dma calls dma_release_channel and dma_release_channel
locks a mutex inside of spin_lock.
So the call of these functions can't be inside a spin_lock.
Reported-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Signed-off-by: Radu Pirea <radu.pirea@microchip.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-atmel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-atmel.c b/drivers/spi/spi-atmel.c index f95da364c283..669470971023 100644 --- a/drivers/spi/spi-atmel.c +++ b/drivers/spi/spi-atmel.c | |||
@@ -1661,12 +1661,12 @@ static int atmel_spi_remove(struct platform_device *pdev) | |||
1661 | pm_runtime_get_sync(&pdev->dev); | 1661 | pm_runtime_get_sync(&pdev->dev); |
1662 | 1662 | ||
1663 | /* reset the hardware and block queue progress */ | 1663 | /* reset the hardware and block queue progress */ |
1664 | spin_lock_irq(&as->lock); | ||
1665 | if (as->use_dma) { | 1664 | if (as->use_dma) { |
1666 | atmel_spi_stop_dma(master); | 1665 | atmel_spi_stop_dma(master); |
1667 | atmel_spi_release_dma(master); | 1666 | atmel_spi_release_dma(master); |
1668 | } | 1667 | } |
1669 | 1668 | ||
1669 | spin_lock_irq(&as->lock); | ||
1670 | spi_writel(as, CR, SPI_BIT(SWRST)); | 1670 | spi_writel(as, CR, SPI_BIT(SWRST)); |
1671 | spi_writel(as, CR, SPI_BIT(SWRST)); /* AT91SAM9263 Rev B workaround */ | 1671 | spi_writel(as, CR, SPI_BIT(SWRST)); /* AT91SAM9263 Rev B workaround */ |
1672 | spi_readl(as, SR); | 1672 | spi_readl(as, SR); |