* [PATCH] spi: axi-spi-engine: don't emit XFER_BITS for empty xfer
@ 2024-07-23 18:36 David Lechner
2024-07-24 7:45 ` Nuno Sá
2024-07-29 15:40 ` Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: David Lechner @ 2024-07-23 18:36 UTC (permalink / raw)
To: Mark Brown
Cc: David Lechner, Michael Hennerich, Nuno Sá, linux-spi,
linux-kernel
This adds a check on xfer->len to avoid emitting an XFER_BITS
instruction for empty transfers in the AXI SPI Engine driver. This
avoids unnecessary delays caused by executing an instruction that has
no effect on the actual SPI transfer.
Signed-off-by: David Lechner <dlechner@baylibre.com>
---
drivers/spi/spi-axi-spi-engine.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/spi/spi-axi-spi-engine.c b/drivers/spi/spi-axi-spi-engine.c
index 447e5a962dee..cb3fdcbca2be 100644
--- a/drivers/spi/spi-axi-spi-engine.c
+++ b/drivers/spi/spi-axi-spi-engine.c
@@ -258,7 +258,7 @@ static void spi_engine_compile_message(struct spi_message *msg, bool dry,
clk_div - 1));
}
- if (bits_per_word != xfer->bits_per_word) {
+ if (bits_per_word != xfer->bits_per_word && xfer->len) {
bits_per_word = xfer->bits_per_word;
spi_engine_program_add_cmd(p, dry,
SPI_ENGINE_CMD_WRITE(SPI_ENGINE_CMD_REG_XFER_BITS,
---
base-commit: 67e899c7df7dd8507ab61a2e71fe6c8299afd427
change-id: 20240723-spi-axi-spi-engine-opt-bpw-e801253aa43a
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: axi-spi-engine: don't emit XFER_BITS for empty xfer
2024-07-23 18:36 [PATCH] spi: axi-spi-engine: don't emit XFER_BITS for empty xfer David Lechner
@ 2024-07-24 7:45 ` Nuno Sá
2024-07-29 15:40 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Nuno Sá @ 2024-07-24 7:45 UTC (permalink / raw)
To: David Lechner, Mark Brown
Cc: Michael Hennerich, Nuno Sá, linux-spi, linux-kernel
On Tue, 2024-07-23 at 13:36 -0500, David Lechner wrote:
> This adds a check on xfer->len to avoid emitting an XFER_BITS
> instruction for empty transfers in the AXI SPI Engine driver. This
> avoids unnecessary delays caused by executing an instruction that has
> no effect on the actual SPI transfer.
>
> Signed-off-by: David Lechner <dlechner@baylibre.com>
> ---
Reviewed-by: Nuno Sa <nuno.sa@analog.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: axi-spi-engine: don't emit XFER_BITS for empty xfer
2024-07-23 18:36 [PATCH] spi: axi-spi-engine: don't emit XFER_BITS for empty xfer David Lechner
2024-07-24 7:45 ` Nuno Sá
@ 2024-07-29 15:40 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2024-07-29 15:40 UTC (permalink / raw)
To: David Lechner; +Cc: Michael Hennerich, Nuno Sá, linux-spi, linux-kernel
On Tue, 23 Jul 2024 13:36:47 -0500, David Lechner wrote:
> This adds a check on xfer->len to avoid emitting an XFER_BITS
> instruction for empty transfers in the AXI SPI Engine driver. This
> avoids unnecessary delays caused by executing an instruction that has
> no effect on the actual SPI transfer.
>
>
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
Thanks!
[1/1] spi: axi-spi-engine: don't emit XFER_BITS for empty xfer
commit: f8918ef1267edab4d9b2154c22a912c87cc66f66
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-29 15:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-23 18:36 [PATCH] spi: axi-spi-engine: don't emit XFER_BITS for empty xfer David Lechner
2024-07-24 7:45 ` Nuno Sá
2024-07-29 15:40 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox