diff options
author | Dave Gerlach <d-gerlach@ti.com> | 2021-05-04 18:00:53 -0500 |
---|---|---|
committer | Lokesh Vutla <lokeshvutla@ti.com> | 2021-05-12 16:31:16 +0530 |
commit | d411f0973aa62ce426f901594367f9344261446d (patch) | |
tree | 86f0345ba20cd84ee4e40f00da2bf45e90c76407 /board/ti | |
parent | fe0f3e36973f98ee924c597a6e05abe4271d6985 (diff) | |
download | u-boot-d411f0973aa62ce426f901594367f9344261446d.zip u-boot-d411f0973aa62ce426f901594367f9344261446d.tar.gz u-boot-d411f0973aa62ce426f901594367f9344261446d.tar.bz2 |
arm: mach-k3: am642: Add support for triggering ddr init from SPL
In SPL, DDR should be made available by the end of board_init_f()
so that apis in board_init_r() can use ddr. Adding support for
triggering DDR initialization from board_init_f().
Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
Diffstat (limited to 'board/ti')
-rw-r--r-- | board/ti/am64x/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/ti/am64x/Kconfig b/board/ti/am64x/Kconfig index 57527be..3dd5b54 100644 --- a/board/ti/am64x/Kconfig +++ b/board/ti/am64x/Kconfig @@ -19,6 +19,9 @@ config TARGET_AM642_R5_EVM select SYS_THUMB_BUILD select K3_LOAD_SYSFW select SOC_K3_AM642 + select RAM + select SPL_RAM + select K3_DDRSS imply SYS_K3_SPL_ATF endchoice |