diff options
author | Michal Simek <michal.simek@xilinx.com> | 2020-08-20 14:02:47 +0200 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2020-09-23 10:31:40 +0200 |
commit | 1a005b4ae45cc7bddfdaee095ec29cabea8be18a (patch) | |
tree | 7a166fec1309aeae668f84bbcf441ec28d7e6a81 /board | |
parent | 6ba36c0e5910a1cc8b527403bf1a80db320f1315 (diff) | |
download | u-boot-1a005b4ae45cc7bddfdaee095ec29cabea8be18a.tar.gz |
board: xilinx: Enable changing default DTB pick up address
U-Boot on xilinx boards is checking one address where DTB can be placed as
the first location for DTB. Originally this code was developed for Versal
where QEMU was putting generated DTB for U-Boot to use.
The patch enables changing this address which is necessary for cases where
default address is pointing to location (DDR) which is not present. The
access to this location can cause exception.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/xilinx/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/xilinx/Kconfig b/board/xilinx/Kconfig index 73fc1be014..c80d0a8812 100644 --- a/board/xilinx/Kconfig +++ b/board/xilinx/Kconfig @@ -41,7 +41,7 @@ config XILINX_PS_INIT_FILE endif config XILINX_OF_BOARD_DTB_ADDR - hex + hex "Default DTB pickup address" default 0x1000 if ARCH_VERSAL default 0x100000 if ARCH_ZYNQ || ARCH_ZYNQMP depends on OF_BOARD || OF_SEPARATE |