1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-10-07 11:15:09 +02:00
Files
u-boot-megous/board/xilinx/mbv/Kconfig
Tom Rini 843143303c Merge tag 'xilinx-for-v2024.07-rc1' of https://source.denx.de/u-boot/custodians/u-boot-microblaze
Xilinx changes for v2024.07-rc1

xilinx:
- Do not call env_get_location when !ENV_IS_NOWHERE
- Add FDT_FIXUP_PARTITIONS support
- Fix legacy format MAC decoding

zynqmp:
- Enable semihosting SPL support
- DT updates
- Kconfig resort/cleanup
- Don't describe second image/capsule if !SPL
- Add support for dfu/capsule description via MTD
- Support JTAG as alternative boot mode
- Add support for TEG soc variant

zynqmp-kria:
- Wire usb4 boot device
- Update SDIO tristate pin configuration
- Disable SPI_FLASH_BAR to avoid issue with SPI after update

mbv:
- Enable SPL and binman
- Small platform changes

zynqmp-nand:
- Error out in case of unsupported SW ECC
- Clean error path

versal-net:
- Support multiple locations for variables
2024-04-10 11:51:58 -06:00

36 lines
509 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 0x21200000
config SPL_TEXT_BASE
default 0x20000000
config SPL_OPENSBI_LOAD_ADDR
hex
default 0x20200000
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
imply OF_HAS_PRIOR_STAGE
source "board/xilinx/Kconfig"
endif