Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1646511

[PATCH linux-next 1/1] spi: imx: only allow dynamic burst in PIO mode

From Jiada Wang <jiada_wang@mentor.com>
Newsgroups linux.kernel
Subject [PATCH linux-next 1/1] spi: imx: only allow dynamic burst in PIO mode
Date 2017-05-22 07:00 +0200
Message-ID <tJNBM-Rs-19@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Currently only PIO mode supports dynamic burst length adjust,
in DMA mode, bpw (bytes per word) value still has to be used
as burst length, other wise transfer issue will be caused.

This patch avoid using dynamic burst in DMA mode by set
reset dynamic_burst when DMA mode is used.

Signed-off-by: Jiada Wang <jiada_wang@mentor.com>
Reported-and-tested-by: Fabio Estevam <fabio.estevam@nxp.com>
---
 drivers/spi/spi-imx.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/spi/spi-imx.c b/drivers/spi/spi-imx.c
index 19b30cf..2768e64 100644
--- a/drivers/spi/spi-imx.c
+++ b/drivers/spi/spi-imx.c
@@ -242,6 +242,7 @@ static bool spi_imx_can_dma(struct spi_master *master, struct spi_device *spi,
 		return false;
 
 	spi_imx->wml = i;
+	spi_imx->dynamic_burst = 0;
 
 	return true;
 }
-- 
2.9.3

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH linux-next 1/1] spi: imx: only allow dynamic burst in PIO mode Jiada Wang <jiada_wang@mentor.com> - 2017-05-22 07:00 +0200
  Applied "spi: imx: only allow dynamic burst in PIO mode" to the spi tree Mark Brown <broonie@kernel.org> - 2017-05-23 20:30 +0200

csiph-web