From: Michal Simek <michal.simek@amd.com>
To: Sean Anderson <sean.anderson@linux.dev>,
Mark Brown <broonie@kernel.org>,
linux-spi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, Jinjie Ruan <ruanjinjie@huawei.com>,
linux-arm-kernel@lists.infradead.org,
Amit Kumar Mahapatra <amit.kumar-mahapatra@amd.com>,
Miquel Raynal <miquel.raynal@bootlin.com>
Subject: Re: [PATCH 3/5] spi: zynqmp-gqspi: Abort operations on timeout
Date: Fri, 17 Jan 2025 08:15:19 +0100 [thread overview]
Message-ID: <93c9d615-b9c5-40eb-b206-443243dee01f@amd.com> (raw)
In-Reply-To: <20250116225521.2688224-4-sean.anderson@linux.dev>
On 1/16/25 23:55, Sean Anderson wrote:
> When an operation times out, we leave the device (and driver) in an
> inconsistent state. This generally results in all subsequent operations
> timing out. Attempt to address this by resetting/reinitializing the
> device when we have a timeout. This tends to be fairly robust.
>
> Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
> ---
>
> drivers/spi/spi-zynqmp-gqspi.c | 30 ++++++++++++++++++++----------
> 1 file changed, 20 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/spi/spi-zynqmp-gqspi.c b/drivers/spi/spi-zynqmp-gqspi.c
> index 7d138f45b692..cf47466ec982 100644
> --- a/drivers/spi/spi-zynqmp-gqspi.c
> +++ b/drivers/spi/spi-zynqmp-gqspi.c
> @@ -1057,6 +1057,21 @@ static unsigned long zynqmp_qspi_timeout(struct zynqmp_qspi *xqspi, u8 bits,
> return msecs_to_jiffies(timeout + 100);
> }
>
> +
unnecessary newline here.
> +static int zynqmp_qspi_wait(struct zynqmp_qspi *xqspi, unsigned long timeout)
> +{
> + int ret;
> +
> + ret = wait_for_completion_timeout(&xqspi->data_completion, timeout);
> + if (ret)
> + return 0;
newline here please
> + dev_err(xqspi->dev, "Operation timed out\n");
> +
> + /* Attempt to recover as best we can */
> + zynqmp_qspi_init_hw(xqspi);
> + return -ETIMEDOUT;
> +}
> +
> /**
> * zynqmp_qspi_exec_op() - Initiates the QSPI transfer
> * @mem: The SPI memory
> @@ -1104,11 +1119,9 @@ static int zynqmp_qspi_exec_op(struct spi_mem *mem,
> GQSPI_IER_TXNOT_FULL_MASK);
> timeout = zynqmp_qspi_timeout(xqspi, op->cmd.buswidth,
> op->cmd.nbytes);
> - if (!wait_for_completion_timeout(&xqspi->data_completion,
> - timeout)) {
> - err = -ETIMEDOUT;
> + err = zynqmp_qspi_wait(xqspi, timeout);
> + if (err)
> goto return_err;
> - }
> }
>
> if (op->addr.nbytes) {
> @@ -1133,11 +1146,9 @@ static int zynqmp_qspi_exec_op(struct spi_mem *mem,
> GQSPI_IER_TXNOT_FULL_MASK);
> timeout = zynqmp_qspi_timeout(xqspi, op->addr.buswidth,
> op->addr.nbytes);
> - if (!wait_for_completion_timeout(&xqspi->data_completion,
> - timeout)) {
> - err = -ETIMEDOUT;
> + err = zynqmp_qspi_wait(xqspi, timeout);
> + if (err)
> goto return_err;
> - }
> }
>
> if (op->dummy.nbytes) {
> @@ -1204,8 +1215,7 @@ static int zynqmp_qspi_exec_op(struct spi_mem *mem,
> }
> timeout = zynqmp_qspi_timeout(xqspi, op->data.buswidth,
> op->data.nbytes);
> - if (!wait_for_completion_timeout(&xqspi->data_completion, timeout))
> - err = -ETIMEDOUT;
> + err = zynqmp_qspi_wait(xqspi, timeout);
> }
>
> return_err:
M
next prev parent reply other threads:[~2025-01-17 7:15 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-16 22:55 [PATCH 0/5] spi: zynqmp-gqspi: Improve error recovery by resetting Sean Anderson
2025-01-16 22:55 ` [PATCH 1/5] dt-bindings: spi: zynqmp-qspi: Add reset Sean Anderson
2025-01-17 7:14 ` Michal Simek
2025-01-17 16:12 ` Sean Anderson
2025-01-23 22:45 ` Rob Herring
2025-01-23 22:57 ` Sean Anderson
2025-01-24 9:06 ` Michal Simek
2025-01-27 17:57 ` Rob Herring
2025-01-27 18:00 ` Sean Anderson
2025-01-16 22:55 ` [PATCH 2/5] spi: zynqmp-gqspi: Reset device in probe Sean Anderson
2025-01-16 22:55 ` [PATCH 3/5] spi: zynqmp-gqspi: Abort operations on timeout Sean Anderson
2025-01-17 7:15 ` Michal Simek [this message]
2025-01-16 22:55 ` [PATCH 4/5] spi: zynqmp-gqspi: Allow interrupting operations Sean Anderson
2025-01-17 8:41 ` Miquel Raynal
2025-01-17 16:12 ` Sean Anderson
2025-01-16 22:55 ` [PATCH 5/5] ARM64: xilinx: zynqmp: Add QSPI reset Sean Anderson
2025-01-17 13:21 ` [PATCH 0/5] spi: zynqmp-gqspi: Improve error recovery by resetting Mark Brown
2025-01-17 16:17 ` Sean Anderson
2025-01-17 16:48 ` Mark Brown
2025-01-17 16:50 ` Sean Anderson
2025-01-17 18:31 ` Miquel Raynal
2025-01-17 18:41 ` Mark Brown
2025-01-17 21:46 ` Sean Anderson
2025-01-20 13:49 ` Mark Brown
2025-01-21 16:51 ` Sean Anderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=93c9d615-b9c5-40eb-b206-443243dee01f@amd.com \
--to=michal.simek@amd.com \
--cc=amit.kumar-mahapatra@amd.com \
--cc=broonie@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=miquel.raynal@bootlin.com \
--cc=ruanjinjie@huawei.com \
--cc=sean.anderson@linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®