diff mbox series

[V3,1/2] spi: cadence_qspi: setup ADDR Bits in cmd reads

Message ID 20221125055932.398322-2-d-gole@ti.com
State Changes Requested
Delegated to: Jagannadha Sutradharudu Teki
Headers show
Series spi: cqspi: Fix register reads in STIG Mode | expand

Commit Message

Dhruva Gole Nov. 25, 2022, 5:59 a.m. UTC
Setup the Addr bit field while issuing register reads in STIG mode. This
is needed for example flashes like cypress define in their transaction
table that to read any register there is 1 cmd byte and a few more address
bytes trailing the cmd byte. Absence of addr bytes will obviously fail
to read correct data from flash register that maybe requested by flash
driver because the controller doesn't even specify which address of the
flash register the read is being requested from.

Signed-off-by: Dhruva Gole <d-gole@ti.com>
---
 drivers/spi/cadence_qspi_apb.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

Comments

Pratyush Yadav Dec. 12, 2022, 11:24 p.m. UTC | #1
On 25/11/22 11:29AM, Dhruva Gole wrote:
> Setup the Addr bit field while issuing register reads in STIG mode. This
> is needed for example flashes like cypress define in their transaction
> table that to read any register there is 1 cmd byte and a few more address
> bytes trailing the cmd byte. Absence of addr bytes will obviously fail
> to read correct data from flash register that maybe requested by flash
> driver because the controller doesn't even specify which address of the
> flash register the read is being requested from.
> 
> Signed-off-by: Dhruva Gole <d-gole@ti.com>

Reviewed-by: Pratyush Yadav <pratyush@kernel.org>
diff mbox series

Patch

diff --git a/drivers/spi/cadence_qspi_apb.c b/drivers/spi/cadence_qspi_apb.c
index cfae5dcbda0e..45c1333e2d13 100644
--- a/drivers/spi/cadence_qspi_apb.c
+++ b/drivers/spi/cadence_qspi_apb.c
@@ -479,6 +479,19 @@  int cadence_qspi_apb_command_read(struct cadence_spi_priv *priv,
 	/* 0 means 1 byte. */
 	reg |= (((rxlen - 1) & CQSPI_REG_CMDCTRL_RD_BYTES_MASK)
 		<< CQSPI_REG_CMDCTRL_RD_BYTES_LSB);
+
+	/* setup ADDR BIT field */
+	if (op->addr.nbytes) {
+		writel(op->addr.val, priv->regbase + CQSPI_REG_CMDADDRESS);
+		/*
+		 * address bytes are zero indexed
+		 */
+		reg |= (((op->addr.nbytes - 1) &
+			  CQSPI_REG_CMDCTRL_ADD_BYTES_MASK) <<
+			  CQSPI_REG_CMDCTRL_ADD_BYTES_LSB);
+		reg |= (0x1 << CQSPI_REG_CMDCTRL_ADDR_EN_LSB);
+	}
+
 	status = cadence_qspi_apb_exec_flash_cmd(reg_base, reg);
 	if (status != 0)
 		return status;