diff options
author | Qii Wang <[email protected]> | 2023-05-23 19:26:08 +0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2023-05-25 10:55:45 +0100 |
commit | dcb2d27444baeba91701bcab38d60c219cb47463 (patch) | |
tree | 3ee3a61d0c2825ce1e4212f2765a6b9a7d495c10 | |
parent | 01bc4ac9da94f972aabc33fc658609e2732a26e2 (diff) |
spi: mediatek: advertise the availability of Dual and Quad mode
this patch advertise the availability of Dual and Quad SPI mode
for ipm design.
Signed-off-by: Qii Wang <[email protected]>
Signed-off-by: Tim.Kuo <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | drivers/spi/spi-mt65xx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/spi/spi-mt65xx.c b/drivers/spi/spi-mt65xx.c index 21c321f43766..1501ee8459ff 100644 --- a/drivers/spi/spi-mt65xx.c +++ b/drivers/spi/spi-mt65xx.c @@ -1144,7 +1144,8 @@ static int mtk_spi_probe(struct platform_device *pdev) if (mdata->dev_comp->must_tx) master->flags = SPI_MASTER_MUST_TX; if (mdata->dev_comp->ipm_design) - master->mode_bits |= SPI_LOOP; + master->mode_bits |= SPI_LOOP | SPI_RX_DUAL | SPI_TX_DUAL | + SPI_RX_QUAD | SPI_TX_QUAD; if (mdata->dev_comp->ipm_design) { mdata->dev = dev; |