diff options
author | Vikas Manocha <vikas.manocha@st.com> | 2017-05-28 12:55:13 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-09 11:24:00 -0400 |
commit | 55a3ef714f9867a9b2e18851cfdca906698e8c2f (patch) | |
tree | 9af04b49e166ac5c7a3a4f95f438072edbb2de09 /include/configs/stm32f746-disco.h | |
parent | 6c0c3ce8aa794e972ef173694e148ddc9b7d6bcb (diff) |
spl: stm32f7: add kernel boot support
Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
Diffstat (limited to 'include/configs/stm32f746-disco.h')
-rw-r--r-- | include/configs/stm32f746-disco.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/configs/stm32f746-disco.h b/include/configs/stm32f746-disco.h index 055fdf8ef0..905202597a 100644 --- a/include/configs/stm32f746-disco.h +++ b/include/configs/stm32f746-disco.h @@ -86,6 +86,13 @@ #define CONFIG_SYS_UBOOT_START 0XC00003FD #define CONFIG_SYS_UBOOT_BASE (CONFIG_SYS_FLASH_BASE + \ CONFIG_SYS_SPL_LEN) + +#define CONFIG_SYS_OS_BASE 0x08040000 +/* DT blob (fdt) address */ +#define CONFIG_SYS_SPL_ARGS_ADDR 0xC0000100 +#define CONFIG_SYS_FDT_BASE (CONFIG_SYS_FLASH_BASE + \ + 0x1C0000) +#define CONFIG_SYS_FDT_SIZE (20*1024) #endif /* For SPL ends */ |