diff options
author | Patrick Delaunay | 2018-03-20 11:41:26 +0100 |
---|---|---|
committer | Tom Rini | 2018-04-06 20:45:28 -0400 |
commit | b90f0e7c37f30868786e560fed80e487b39b3761 (patch) | |
tree | 610c155eed6888efc06006989417e7e243950ca9 /include/configs/stm32mp1.h | |
parent | 938e0e3f6e0911ca5329ac140ba1b0c55ded5340 (diff) |
stm32mp1: change STGEN clock source to HSE
No more use static frequency HSI = 64MHz for STGEN clock
but HSE (with higher accurency) by default.
Need to remove CONFIG_SYS_HZ_CLOCK as arch timer frequency
is provided at boot by BootRom and cp15 cntfrq and modified
during clock tree initialization if needed.
When HSI is no more used by any device, this internal
oscillator can be switched off to reduce consumption.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'include/configs/stm32mp1.h')
-rw-r--r-- | include/configs/stm32mp1.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/configs/stm32mp1.h b/include/configs/stm32mp1.h index 815910128e5..da0e259736a 100644 --- a/include/configs/stm32mp1.h +++ b/include/configs/stm32mp1.h @@ -18,7 +18,6 @@ */ #define CONFIG_SYS_HZ 1000 #define CONFIG_SYS_ARCH_TIMER -#define CONFIG_SYS_HZ_CLOCK 64000000 /* * malloc() pool size |