Skip to content
Snippets Groups Projects
Commit 4e609b6c authored by Chin Liang See's avatar Chin Liang See Committed by Marek Vasut
Browse files

spi: cadence_qspi: Ensure check for max frequency in place


Ensure the intended SCLK frequency not exceeding the maximum
frequency. If that happen, SCLK will set to maximum frequency.

Signed-off-by: default avatarChin 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: default avatarPavel Machek <pavel@denx.de>
parent 040f4ba7
No related branches found
No related tags found
No related merge requests found
...@@ -122,6 +122,9 @@ static int cadence_spi_set_speed(struct udevice *bus, uint hz) ...@@ -122,6 +122,9 @@ static int cadence_spi_set_speed(struct udevice *bus, uint hz)
struct cadence_spi_priv *priv = dev_get_priv(bus); struct cadence_spi_priv *priv = dev_get_priv(bus);
int err; int err;
if (hz > plat->max_hz)
hz = plat->max_hz;
/* Disable QSPI */ /* Disable QSPI */
cadence_qspi_apb_controller_disable(priv->regbase); cadence_qspi_apb_controller_disable(priv->regbase);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment