diff options
author | Michal Simek <michal.simek@amd.com> | 2022-11-06 11:48:06 -0800 |
---|---|---|
committer | Michal Simek <michal.simek@amd.com> | 2022-11-22 15:02:07 +0100 |
commit | 9dc51069f4dfc64f8b86565239c46995aad09dec (patch) | |
tree | 8dd93a245ba6f5c868f216a322f7b423bcf8140e /configs | |
parent | 6b067f4bfacb9e57423d0b15a343abe51ca3fff8 (diff) | |
download | u-boot-9dc51069f4dfc64f8b86565239c46995aad09dec.tar.gz |
xilinx: versal-net: Fix SYS_LOAD_ADDR to point to OCM
Versal NET mini U-Boot configuration is used for memory testing that's why
load address can't be really placed in memory which doesn't need to work
that's why move it to start of OCM which is the same memory which U-Boot is
running from.
Signed-off-by: Michal Simek <michal.simek@amd.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/xilinx_versal_net_mini_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/xilinx_versal_net_mini_defconfig b/configs/xilinx_versal_net_mini_defconfig index e3aa45c83e..03a63288ac 100644 --- a/configs/xilinx_versal_net_mini_defconfig +++ b/configs/xilinx_versal_net_mini_defconfig @@ -13,7 +13,7 @@ CONFIG_DEFAULT_DEVICE_TREE="versal-net-mini" CONFIG_SYS_PROMPT="Versal NET> " CONFIG_SYS_MEM_RSVD_FOR_MMU=y # CONFIG_PSCI_RESET is not set -CONFIG_SYS_LOAD_ADDR=0x8000000 +CONFIG_SYS_LOAD_ADDR=0xBBF00000 CONFIG_SYS_MEMTEST_START=0x00000000 CONFIG_SYS_MEMTEST_END=0x00001000 CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y |