Skip to content

Commit 978c281

Browse files
geertugregkh
authored andcommitted
spi: sh-msiof: Fix timeout failures for TX-only DMA transfers
[ Upstream commit 89434c3 ] When using RX (with or without TX), the DMA interrupt triggers completion when the RX FIFO has been emptied, i.e. after the full transfer has finished. However, when using TX without RX, the DMA interrupt triggers completion as soon as the DMA engine has filled the TX FIFO, i.e. before the full transfer has finished. Then sh_msiof_modify_ctr_wait() will spin until the transfer has really finished and the TFSE bit is cleared, for at most 1 ms. For slow speeds and/or large transfers, this may cause timeouts and transfer failures: spi_sh_msiof e6e10000.spi: failed to shut down hardware 74x164 spi2.0: SPI transfer failed: -110 spi_master spi2: failed to transfer one message from queue 74x164 spi2.0: Failed writing: -110 Fix this by waiting explicitly until the TX FIFO has been emptied. Based on a patch in the BSP by Hiromitsu Yamasaki. Signed-off-by: Geert Uytterhoeven <[email protected]> Signed-off-by: Mark Brown <[email protected]> Signed-off-by: Sasha Levin <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 1d65600 commit 978c281

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

drivers/spi/spi-sh-msiof.c

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,11 +797,21 @@ static int sh_msiof_dma_once(struct sh_msiof_spi_priv *p, const void *tx,
797797
goto stop_dma;
798798
}
799799

800-
/* wait for tx fifo to be emptied / rx fifo to be filled */
800+
/* wait for tx/rx DMA completion */
801801
ret = sh_msiof_wait_for_completion(p);
802802
if (ret)
803803
goto stop_reset;
804804

805+
if (!rx) {
806+
reinit_completion(&p->done);
807+
sh_msiof_write(p, IER, IER_TEOFE);
808+
809+
/* wait for tx fifo to be emptied */
810+
ret = sh_msiof_wait_for_completion(p);
811+
if (ret)
812+
goto stop_reset;
813+
}
814+
805815
/* clear status bits */
806816
sh_msiof_reset_str(p);
807817

0 commit comments

Comments
 (0)