Skip to content

Commit 1ab2c8c

Browse files
geertubroonie
authored andcommitted
spi: sh-msiof: Correct RX FIFO size for R-Car Gen2
According to Renesas Technical Updates TN-RCS-S068A/E, the MSIOF receive FIFOs on R-Car Gen2 SoCs have room for 128 words of 32 bits. Note that this change has no actual impact on the behavior of the driver, as SPI_CONTROLLER_MUST_TX is set, and transfer size is currenty limited to the minimum of the transmit and receive FIFO sizes. Signed-off-by: Geert Uytterhoeven <[email protected]> Link: https://patch.msgid.link/fd11933f932df81d84f417a21e2179bd4fdcfdc1.1747401908.git.geert+renesas@glider.be Signed-off-by: Mark Brown <[email protected]>
1 parent 955f7ce commit 1ab2c8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/spi/spi-sh-msiof.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,7 @@ static const struct sh_msiof_chipdata rcar_gen2_data = {
10991099
.bits_per_word_mask = SPI_BPW_MASK(8) | SPI_BPW_MASK(16) |
11001100
SPI_BPW_MASK(24) | SPI_BPW_MASK(32),
11011101
.tx_fifo_size = 64,
1102-
.rx_fifo_size = 64,
1102+
.rx_fifo_size = 128,
11031103
.ctlr_flags = SPI_CONTROLLER_MUST_TX,
11041104
.min_div_pow = 0,
11051105
};

0 commit comments

Comments
 (0)