All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pratyush Yadav <p.yadav@ti.com>
To: u-boot@lists.denx.de
Subject: [PATCH 05/15] spi: cadence-qspi: Do not calibrate when device tree sets read delay
Date: Wed, 26 Feb 2020 18:25:55 +0530	[thread overview]
Message-ID: <20200226125606.22684-6-p.yadav@ti.com> (raw)
In-Reply-To: <20200226125606.22684-1-p.yadav@ti.com>

If the device tree provides a read delay value, use that directly and do
not perform the calibration procedure.

This allows the device tree to over-ride the read delay value in cases
where the read delay value obtained via calibration is incorrect. One
such example is the Cypress Semper flash. It needs a read delay of 4 in
octal DTR mode. But since the calibration procedure is run before the
flash is switched in octal DTR mode, it yields a read delay of 2. A
value of 4 works for both octal DTR and legacy modes.

Signed-off-by: Pratyush Yadav <p.yadav@ti.com>
---
 drivers/spi/cadence_qspi.c | 26 +++++++++++++++++++++-----
 drivers/spi/cadence_qspi.h |  1 +
 2 files changed, 22 insertions(+), 5 deletions(-)

diff --git a/drivers/spi/cadence_qspi.c b/drivers/spi/cadence_qspi.c
index 994a5948f1..d29e1a917a 100644
--- a/drivers/spi/cadence_qspi.c
+++ b/drivers/spi/cadence_qspi.c
@@ -140,12 +140,20 @@ static int cadence_spi_set_speed(struct udevice *bus, uint hz)
 	cadence_qspi_apb_controller_disable(priv->regbase);
 
 	/*
-	 * Calibration required for different current SCLK speed, requested
-	 * SCLK speed or chip select
+	 * If the device tree already provides a read delay value, use that
+	 * instead of calibrating.
 	 */
-	if (priv->previous_hz != hz ||
-	    priv->qspi_calibrated_hz != hz ||
-	    priv->qspi_calibrated_cs != spi_chip_select(bus)) {
+	if (plat->read_delay >= 0) {
+		cadence_spi_write_speed(bus, hz);
+		cadence_qspi_apb_readdata_capture(priv->regbase, 1,
+						  plat->read_delay);
+	} else if (priv->previous_hz != hz ||
+		   priv->qspi_calibrated_hz != hz ||
+		   priv->qspi_calibrated_cs != spi_chip_select(bus)) {
+		/*
+		 * Calibration required for different current SCLK speed,
+		 * requested SCLK speed or chip select
+		 */
 		err = spi_calibration(bus, hz);
 		if (err)
 			return err;
@@ -319,6 +327,14 @@ static int cadence_spi_ofdata_to_platdata(struct udevice *bus)
 						 255);
 	plat->tchsh_ns = ofnode_read_u32_default(subnode, "cdns,tchsh-ns", 20);
 	plat->tslch_ns = ofnode_read_u32_default(subnode, "cdns,tslch-ns", 20);
+	/*
+	 * Read delay should be an unsigned value but we use a signed integer
+	 * so that negative values can indicate that the device tree did not
+	 * specify any signed values and we need to perform the calibration
+	 * sequence to find it out.
+	 */
+	plat->read_delay = ofnode_read_s32_default(subnode, "cdns,read-delay",
+						   -1);
 
 	debug("%s: regbase=%p ahbbase=%p max-frequency=%d page-size=%d\n",
 	      __func__, plat->regbase, plat->ahbbase, plat->max_hz,
diff --git a/drivers/spi/cadence_qspi.h b/drivers/spi/cadence_qspi.h
index ae459c74a1..9dff2fdced 100644
--- a/drivers/spi/cadence_qspi.h
+++ b/drivers/spi/cadence_qspi.h
@@ -26,6 +26,7 @@ struct cadence_spi_platdata {
 	u32		trigger_address;
 	fdt_addr_t	ahbsize;
 	bool		use_dac_mode;
+	int		read_delay;
 
 	/* Flash parameters */
 	u32		page_size;
-- 
2.25.0

  parent reply	other threads:[~2020-02-26 12:55 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-26 12:55 [PATCH 00/15] mtd: spi-nor-core: add xSPI Octal DTR support Pratyush Yadav
2020-02-26 12:55 ` [PATCH 01/15] dt-bindings: spi: allow expressing DTR capability Pratyush Yadav
2020-02-26 12:55 ` [PATCH 02/15] spi: set mode bits for "spi-rx-dtr" and "spi-tx-dtr" Pratyush Yadav
2020-02-26 12:55 ` [PATCH 03/15] spi: spi-mem: allow specifying whether an op is DTR or not Pratyush Yadav
2020-02-26 12:55 ` [PATCH 04/15] spi: spi-mem: allow specifying a command's extension Pratyush Yadav
2020-02-26 12:55 ` Pratyush Yadav [this message]
2020-02-26 12:55 ` [PATCH 06/15] spi: cadence-qspi: Add support for octal DTR flashes Pratyush Yadav
2020-02-26 12:55 ` [PATCH 07/15] mtd: spi-nor-core: Add a ->setup() hook Pratyush Yadav
2020-02-26 12:55 ` [PATCH 08/15] mtd: spi-nor-core: Move SFDP related declarations to top Pratyush Yadav
2020-02-26 12:55 ` [PATCH 09/15] mtd: spi-nor-core: Introduce flash-specific fixup hooks Pratyush Yadav
2020-03-12  6:34   ` Vignesh Raghavendra
2020-03-12  7:29     ` Pratyush Yadav
2020-02-26 12:56 ` [PATCH 10/15] mtd: spi-nor-core: Add support for DTR protocol Pratyush Yadav
2020-02-26 12:56 ` [PATCH 11/15] mtd: spi-nor-core: Get command opcode extension type from BFPT Pratyush Yadav
2020-02-26 12:56 ` [PATCH 12/15] mtd: spi-nor-core: Parse xSPI Profile 1.0 table Pratyush Yadav
2020-02-26 12:56 ` [PATCH 13/15] mtd: spi-nor-core: Use Read SR dummy cycle and address width from SFDP Pratyush Yadav
2020-02-26 12:56 ` [PATCH 14/15] mtd: spi-nor-core: Enable octal DTR mode when possible Pratyush Yadav
2020-02-26 12:56 ` [PATCH 15/15] mtd: spi-nor-core: Add support for Cypress Semper flash Pratyush Yadav
2020-02-26 12:56 ` [NOT FOR MERGE PATCH 16/15] arm: dts: k3-j721e: Update OSPI settings for octal DTR mode Pratyush Yadav

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200226125606.22684-6-p.yadav@ti.com \
    --to=p.yadav@ti.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.