diff options
author | Toshifumi NISHINAGA <tnishinaga.dev@gmail.com> | 2016-07-08 01:02:24 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-07-14 18:22:41 -0400 |
commit | ba0a3c16e0c6697f0254644cc7a9849b77000eb8 (patch) | |
tree | 476ef70d03a07553b2371a0e77e5fddff090e6e9 /include/configs | |
parent | a3e2efcb42be378659a5443346ca5c77317c30b9 (diff) |
stm32: clk: Add 200MHz clock configuration for stm32f746 discovery board
This patch adds 200MHz clock configuration for stm32f746 discovery board.
This patch is based on STM32F4 and emcraft's[1].
[1]: https://github.com/EmcraftSystems/u-boot
Signed-off-by: Toshifumi NISHINAGA <tnishinaga.dev@gmail.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/stm32f746-disco.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/stm32f746-disco.h b/include/configs/stm32f746-disco.h index e544a218dd..e1140a8e5e 100644 --- a/include/configs/stm32f746-disco.h +++ b/include/configs/stm32f746-disco.h @@ -42,7 +42,8 @@ #define CONFIG_STM32_FLASH #define CONFIG_STM32X7_SERIAL -#define CONFIG_SYS_CLK_FREQ 16*1000*1000 /* 180 MHz */ +#define CONFIG_STM32_HSE_HZ 25000000 +#define CONFIG_SYS_CLK_FREQ 200000000 /* 200 MHz */ #define CONFIG_SYS_HZ_CLOCK 1000000 /* Timer is clocked at 1MHz */ #define CONFIG_CMDLINE_TAG |