]> git.baikalelectronics.ru Git - kernel.git/commit
spi: lpspi: Fix wrong transmission when don't use CONT
authorClark Wang <xiaoning.wang@nxp.com>
Mon, 7 Jan 2019 07:47:41 +0000 (07:47 +0000)
committerMark Brown <broonie@kernel.org>
Mon, 7 Jan 2019 15:17:43 +0000 (15:17 +0000)
commit4aab963272d52a7e5bd5905a3f6fd29ee1b0400f
treed8e816e1408103401717b5e1d73b23b35dbcbb67
parente6a74520f4e4d109495f336369847ed4d963a5c5
spi: lpspi: Fix wrong transmission when don't use CONT

Add judgment on SR_MBF and FSR_RXCOUNT.

In PIO mode, if don't use CONT to keep cs selected in one transfer, the
transfer will go wrong. FCIE will be set after one frame transfer
finish. If use CONT, the frame refer to the whole data in one transfer.
If don't use CONT, the frame refer to one byte of whole data. This will
cause the transfer ending early.

This patch add a register reading in isr function, it might lead to a
slight decrease in the max transmission speed in PIO mode.

Signed-off-by: Clark Wang <xiaoning.wang@nxp.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-fsl-lpspi.c