[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200629174421.25784-1-yamane07ynct@gmail.com>
Date: Tue, 30 Jun 2020 02:44:21 +0900
From: Daisuke Yamane <yamane07ynct@...il.com>
To: unlisted-recipients:; (no To-header on input)
Cc: Daisuke Yamane <yamane07ynct@...il.com>,
Mark Brown <broonie@...nel.org>, linux-spi@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] spi: a3700: fix hang caused by a3700_spi_transfer_one_fifo()
transfer_one() must call spi_finalize_current_transfer() before
returning to inform current transfer has finished. Otherwise spi driver
doesn't issue next transfer, and hang.
However a3700_spi_transfer_one_fifo() doesn't call it if waiting for
"wfifo empty" or "xfer ready" has timed out.
Thus, this patch corrects error handling of them.
Signed-off-by: Daisuke Yamane <yamane07ynct@...il.com>
---
drivers/spi/spi-armada-3700.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/spi/spi-armada-3700.c b/drivers/spi/spi-armada-3700.c
index fcde419e480c..1eb2c64386c3 100644
--- a/drivers/spi/spi-armada-3700.c
+++ b/drivers/spi/spi-armada-3700.c
@@ -698,13 +698,15 @@ static int a3700_spi_transfer_one_fifo(struct spi_master *master,
if (!a3700_spi_transfer_wait(spi,
A3700_SPI_WFIFO_EMPTY)) {
dev_err(&spi->dev, "wait wfifo empty timed out\n");
- return -ETIMEDOUT;
+ ret = -ETIMEDOUT;
+ goto error;
}
}
if (!a3700_spi_transfer_wait(spi, A3700_SPI_XFER_RDY)) {
dev_err(&spi->dev, "wait xfer ready timed out\n");
- return -ETIMEDOUT;
+ ret = -ETIMEDOUT;
+ goto error;
}
val = spireg_read(a3700_spi, A3700_SPI_IF_CFG_REG);
--
2.17.1
Powered by blists - more mailing lists