[U-Boot] [PATCH 1/2] spi: ti_qspi: Fix failure on multiple READ_ID cmd
Jagan Teki
jagannadh.teki at gmail.com
Mon Jul 11 08:35:48 CEST 2016
On 11 July 2016 at 11:00, Vignesh R <vigneshr at ti.com> wrote:
> Populating QSPI_RD_SNGL bit(0x1) in priv->cmd means that value
> QSPI_INVAL (0x4) is not written to CMD field of QSPI_SPI_CMD_REG in
> ti_qspi_cs_deactivate(). Therefore CS is never deactivated between
> successive READ ID which results in sf probe to fail.
> Fix this by not populating priv->cmd with QSPI_RD_SNGL and OR it wih
> priv->cmd as required (similar to the convention followed in the
> driver).
>
> Signed-off-by: Vignesh R <vigneshr at ti.com>
> ---
> drivers/spi/ti_qspi.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/spi/ti_qspi.c b/drivers/spi/ti_qspi.c
> index 9a372ad31dae..376fe378ed63 100644
> --- a/drivers/spi/ti_qspi.c
> +++ b/drivers/spi/ti_qspi.c
> @@ -247,13 +247,12 @@ static int __ti_qspi_xfer(struct ti_qspi_priv *priv, unsigned int bitlen,
> debug("tx done, status %08x\n", status);
> }
> if (rxp) {
> - priv->cmd |= QSPI_RD_SNGL;
> debug("rx cmd %08x dc %08x\n",
> priv->cmd, priv->dc);
| QSPI_RD_SNGL on debug statement as well.
> #ifdef CONFIG_DRA7XX
> udelay(500);
> #endif
Can't we fix this delay, still need?
thanks!
--
Jagan.
More information about the U-Boot
mailing list