Files
u-boot/board/xilinx/mbv/Kconfig
Michal Simek 5f5bba72c2 xilinx: mbv: Disable OF_HAS_PRIOR_STAGE
There is no reason to use OF_BOARD for MBV because reduced DT is used by
SPL and full DT is passed via u-boot.img or u-boot.itb. There is no reason
to pick up DTB from certain address.

Signed-off-by: Michal Simek <michal.simek@amd.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
2025-08-14 14:32:00 +08:00

35 lines
483 B
Plaintext

if TARGET_XILINX_MBV
config SYS_BOARD
default "mbv"
config SYS_VENDOR
default "xilinx"
config SYS_CPU
default "generic"
config TEXT_BASE
default 0x81200000
config SPL_TEXT_BASE
default 0x80000000
config SPL_OPENSBI_LOAD_ADDR
hex
default 0x80200000
config BOARD_SPECIFIC_OPTIONS
def_bool y
select GENERIC_RISCV
select SUPPORT_SPL
imply BOARD_LATE_INIT
imply SPL_RAM_SUPPORT
imply SPL_RAM_DEVICE
imply CMD_SBI
imply CMD_PING
source "board/xilinx/Kconfig"
endif