Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa7eee8a authored by Vignesh R's avatar Vignesh R Committed by Boris Brezillon
Browse files

mtd: spi-nor: cadence-quadspi: Fix direct mode write timeouts



Sometimes when writing large size files to flash in direct/memory mapped
mode, it is seen that flash write enable command times out with error:
[  503.146293] cadence-qspi 47040000.ospi: Flash command execution timed out.

This is because, we need to make sure previous direct write operation
is complete by polling for IDLE bit in CONFIG_REG before starting the
next operation.

Fix this by polling for IDLE bit after memory mapped write.

Fixes: a27f2eaf ("mtd: spi-nor: cadence-quadspi: Add support for direct access mode")
Cc: stable@vger.kernel.org
Signed-off-by: default avatarVignesh R <vigneshr@ti.com>
Reviewed-by: default avatarMarek Vasut <marek.vasut@gmail.com>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@bootlin.com>
parent 021c9179
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -926,10 +926,12 @@ static ssize_t cqspi_write(struct spi_nor *nor, loff_t to,
	if (ret)
	if (ret)
		return ret;
		return ret;


	if (f_pdata->use_direct_mode)
	if (f_pdata->use_direct_mode) {
		memcpy_toio(cqspi->ahb_base + to, buf, len);
		memcpy_toio(cqspi->ahb_base + to, buf, len);
	else
		ret = cqspi_wait_idle(cqspi);
	} else {
		ret = cqspi_indirect_write_execute(nor, to, buf, len);
		ret = cqspi_indirect_write_execute(nor, to, buf, len);
	}
	if (ret)
	if (ret)
		return ret;
		return ret;