diff options
| author | Vignesh R <[email protected]> | 2015-11-10 11:52:10 +0530 |
|---|---|---|
| committer | Jagan Teki <[email protected]> | 2015-11-17 23:43:29 +0530 |
| commit | 857db48e5f6372eead8a32469d981801e775ee48 (patch) | |
| tree | 1682f31b381f2664756faec99620366601bffb47 | |
| parent | 3d4825446e4258192e1f2302d691a8c0c82a0975 (diff) | |
spi: ti_qspi: Add dummy readl for bus sync
Add dummy readl after invalidating cmd field of QSPI_CMD_REG to ensure
bus sync. Without this device's CS is not deactivated reliably leading
to failure to enumerate flash or failure to set quad enable bit on
Macronix flash present on am437x-sk and am437x-idk evms.
Signed-off-by: Vignesh R <[email protected]>
Reviewed-by: Mugunthan V N <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
| -rw-r--r-- | drivers/spi/ti_qspi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/spi/ti_qspi.c b/drivers/spi/ti_qspi.c index ecd9d78ae38..646dd899d3e 100644 --- a/drivers/spi/ti_qspi.c +++ b/drivers/spi/ti_qspi.c @@ -170,6 +170,8 @@ void spi_cs_deactivate(struct spi_slave *slave) debug("spi_cs_deactivate: 0x%08x\n", (u32)slave); writel(qslave->cmd | QSPI_INVAL, &qslave->base->cmd); + /* dummy readl to ensure bus sync */ + readl(&qslave->base->cmd); } void spi_init(void) |
