spi: bcm-qspi: Fix BSPI QUAD and DUAL mode support when using flex mode
Fix data transfer width settings based on DT field 'spi-rx-bus-width'
to configure BSPI in single, dual or quad mode by using data width
and not the command width.
Fixes: 5f195ee7d8
("spi: bcm-qspi: Implement the spi_mem interface")
Signed-off-by: Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com>
Link: https://lore.kernel.org/r/1565086070-28451-1-git-send-email-rayagonda.kokatanur@broadcom.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
a412795285
commit
79629d0f7c
|
@ -354,7 +354,7 @@ static int bcm_qspi_bspi_set_flex_mode(struct bcm_qspi *qspi,
|
|||
{
|
||||
int bpc = 0, bpp = 0;
|
||||
u8 command = op->cmd.opcode;
|
||||
int width = op->cmd.buswidth ? op->cmd.buswidth : SPI_NBITS_SINGLE;
|
||||
int width = op->data.buswidth ? op->data.buswidth : SPI_NBITS_SINGLE;
|
||||
int addrlen = op->addr.nbytes;
|
||||
int flex_mode = 1;
|
||||
|
||||
|
@ -992,7 +992,7 @@ static int bcm_qspi_exec_mem_op(struct spi_mem *mem,
|
|||
if (mspi_read)
|
||||
return bcm_qspi_mspi_exec_mem_op(spi, op);
|
||||
|
||||
ret = bcm_qspi_bspi_set_mode(qspi, op, -1);
|
||||
ret = bcm_qspi_bspi_set_mode(qspi, op, 0);
|
||||
|
||||
if (!ret)
|
||||
ret = bcm_qspi_bspi_exec_mem_op(spi, op);
|
||||
|
|
Loading…
Reference in New Issue