mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
spi: cadence_qspi: Ensure spi_calibration is run when sclk change
Ensuring spi_calibration is run when there is a change of sclk frequency. This will ensure the qspi flash access works for high sclk frequency Signed-off-by: Chin Liang See <clsee@altera.com> Cc: Dinh Nguyen <dinguyen@opensource.altera.com> Cc: Dinh Nguyen <dinh.linux@gmail.com> Cc: Marek Vasut <marex@denx.de> Cc: Stefan Roese <sr@denx.de> Cc: Vikas Manocha <vikas.manocha@st.com> Cc: Jagannadh Teki <jteki@openedev.com> Cc: Pavel Machek <pavel@denx.de> Acked-by: Marek Vasut <marex@denx.de> Reviewed-by: Jagan Teki <jteki@openedev.com>
This commit is contained in:
parent
bfa3e55b44
commit
98fbd71d7a
2 changed files with 14 additions and 9 deletions
|
@ -37,9 +37,8 @@ static int cadence_spi_write_speed(struct udevice *bus, uint hz)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Calibration sequence to determine the read data capture delay register */
|
/* Calibration sequence to determine the read data capture delay register */
|
||||||
static int spi_calibration(struct udevice *bus)
|
static int spi_calibration(struct udevice *bus, uint hz)
|
||||||
{
|
{
|
||||||
struct cadence_spi_platdata *plat = bus->platdata;
|
|
||||||
struct cadence_spi_priv *priv = dev_get_priv(bus);
|
struct cadence_spi_priv *priv = dev_get_priv(bus);
|
||||||
void *base = priv->regbase;
|
void *base = priv->regbase;
|
||||||
u8 opcode_rdid = 0x9F;
|
u8 opcode_rdid = 0x9F;
|
||||||
|
@ -64,7 +63,7 @@ static int spi_calibration(struct udevice *bus)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* use back the intended clock and find low range */
|
/* use back the intended clock and find low range */
|
||||||
cadence_spi_write_speed(bus, plat->max_hz);
|
cadence_spi_write_speed(bus, hz);
|
||||||
for (i = 0; i < CQSPI_READ_CAPTURE_MAX_DELAY; i++) {
|
for (i = 0; i < CQSPI_READ_CAPTURE_MAX_DELAY; i++) {
|
||||||
/* Disable QSPI */
|
/* Disable QSPI */
|
||||||
cadence_qspi_apb_controller_disable(base);
|
cadence_qspi_apb_controller_disable(base);
|
||||||
|
@ -111,7 +110,7 @@ static int spi_calibration(struct udevice *bus)
|
||||||
(range_hi + range_lo) / 2, range_lo, range_hi);
|
(range_hi + range_lo) / 2, range_lo, range_hi);
|
||||||
|
|
||||||
/* just to ensure we do once only when speed or chip select change */
|
/* just to ensure we do once only when speed or chip select change */
|
||||||
priv->qspi_calibrated_hz = plat->max_hz;
|
priv->qspi_calibrated_hz = hz;
|
||||||
priv->qspi_calibrated_cs = spi_chip_select(bus);
|
priv->qspi_calibrated_cs = spi_chip_select(bus);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -126,14 +125,19 @@ static int cadence_spi_set_speed(struct udevice *bus, uint hz)
|
||||||
/* Disable QSPI */
|
/* Disable QSPI */
|
||||||
cadence_qspi_apb_controller_disable(priv->regbase);
|
cadence_qspi_apb_controller_disable(priv->regbase);
|
||||||
|
|
||||||
cadence_spi_write_speed(bus, hz);
|
/*
|
||||||
|
* Calibration required for different current SCLK speed, requested
|
||||||
/* Calibration required for different SCLK speed or chip select */
|
* SCLK speed or chip select
|
||||||
if (priv->qspi_calibrated_hz != plat->max_hz ||
|
*/
|
||||||
|
if (priv->previous_hz != hz ||
|
||||||
|
priv->qspi_calibrated_hz != hz ||
|
||||||
priv->qspi_calibrated_cs != spi_chip_select(bus)) {
|
priv->qspi_calibrated_cs != spi_chip_select(bus)) {
|
||||||
err = spi_calibration(bus);
|
err = spi_calibration(bus, hz);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
|
/* prevent calibration run when same as previous request */
|
||||||
|
priv->previous_hz = hz;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Enable QSPI */
|
/* Enable QSPI */
|
||||||
|
|
|
@ -38,6 +38,7 @@ struct cadence_spi_priv {
|
||||||
int qspi_is_init;
|
int qspi_is_init;
|
||||||
unsigned int qspi_calibrated_hz;
|
unsigned int qspi_calibrated_hz;
|
||||||
unsigned int qspi_calibrated_cs;
|
unsigned int qspi_calibrated_cs;
|
||||||
|
unsigned int previous_hz;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Functions call declaration */
|
/* Functions call declaration */
|
||||||
|
|
Loading…
Add table
Reference in a new issue