spi: sun6i: add dual and quad SPI modes support for R329/D1/R528/T113s
authorMaksim Kiselev <bigunclemax@gmail.com>
Sat, 24 Jun 2023 13:16:23 +0000 (16:16 +0300)
committerMark Brown <broonie@kernel.org>
Sun, 9 Jul 2023 21:51:27 +0000 (22:51 +0100)
Listed SoCs have SPI controllers that can operate in dual or quad modes.
This patch adds dual/quad mode bits for spi_master on these SoCS.

Signed-off-by: Maksim Kiselev <bigunclemax@gmail.com>
Link: https://lore.kernel.org/r/20230624131632.2972546-3-bigunclemax@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-sun6i.c

index cec2747..e9144d7 100644 (file)
@@ -761,6 +761,7 @@ static const struct sun6i_spi_cfg sun8i_h3_spi_cfg = {
 
 static const struct sun6i_spi_cfg sun50i_r329_spi_cfg = {
        .fifo_depth     = SUN8I_FIFO_DEPTH,
+       .mode_bits      = SPI_RX_DUAL | SPI_TX_DUAL | SPI_RX_QUAD | SPI_TX_QUAD,
 };
 
 static const struct of_device_id sun6i_spi_match[] = {