mirror of
https://github.com/u-boot/u-boot.git
synced 2024-12-02 17:13:28 +08:00
stm32f7: use clock driver to enable qspi controller clock
Signed-off-by: Vikas Manocha <vikas.manocha@st.com> cc: Christophe KERELLO <christophe.kerello@st.com>
This commit is contained in:
parent
5bf5250e9d
commit
890bafd752
@ -78,6 +78,7 @@
|
||||
reg-names = "QuadSPI", "QuadSPI-memory";
|
||||
interrupts = <92>;
|
||||
spi-max-frequency = <108000000>;
|
||||
clocks = <&rcc 0 65>;
|
||||
status = "disabled";
|
||||
};
|
||||
usart1: serial@40011000 {
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include <errno.h>
|
||||
#include <asm/arch/stm32.h>
|
||||
#include <asm/arch/stm32_defs.h>
|
||||
#include <clk.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
@ -457,7 +458,20 @@ static int stm32_qspi_probe(struct udevice *bus)
|
||||
|
||||
priv->max_hz = plat->max_hz;
|
||||
|
||||
clock_setup(QSPI_CLOCK_CFG);
|
||||
#ifdef CONFIG_CLK
|
||||
int ret;
|
||||
struct clk clk;
|
||||
ret = clk_get_by_index(bus, 0, &clk);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ret = clk_enable(&clk);
|
||||
|
||||
if (ret) {
|
||||
dev_err(bus, "failed to enable clock\n");
|
||||
return ret;
|
||||
}
|
||||
#endif
|
||||
|
||||
setbits_le32(&priv->regs->cr, STM32_QSPI_CR_SSHIFT);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user