mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 14:36:03 +01:00
The commit e05689242238 ("Kconfig: Change SYS_MALLOC_F_LEN default to 0x2000") already setup default values from board Kconfigs that's why no reason to duplicate it again. Fixes: e05689242238 ("Kconfig: Change SYS_MALLOC_F_LEN default to 0x2000") Signed-off-by: Michal Simek <michal.simek@amd.com> Link: https://lore.kernel.org/r/c3edd75b7a19d5cc205c9d5c37c2d86189ca3de6.1737380025.git.michal.simek@amd.com
63 lines
1.1 KiB
Plaintext
63 lines
1.1 KiB
Plaintext
if ARCH_ZYNQ
|
|
|
|
config SPL_FS_FAT
|
|
default y
|
|
|
|
config SPL_LIBCOMMON_SUPPORT
|
|
default y
|
|
|
|
config SPL_LIBDISK_SUPPORT
|
|
default y
|
|
|
|
config SPL_LIBGENERIC_SUPPORT
|
|
default y
|
|
|
|
config SPL_MMC
|
|
default y if MMC_SDHCI_ZYNQ
|
|
|
|
config SPL_SERIAL
|
|
default y
|
|
|
|
config SPL_SPI_FLASH_SUPPORT
|
|
default y if ZYNQ_QSPI
|
|
|
|
config SPL_SPI
|
|
default y if ZYNQ_QSPI
|
|
|
|
config ZYNQ_DDRC_INIT
|
|
bool "Zynq DDRC initialization"
|
|
default y
|
|
help
|
|
This option used to perform DDR specific initialization
|
|
if required. There might be cases like ddr less where we
|
|
want to skip ddr init and this option is useful for it.
|
|
|
|
config SYS_BOARD
|
|
string "Board name"
|
|
default "zynq"
|
|
|
|
config SYS_VENDOR
|
|
string "Vendor name"
|
|
default "xilinx"
|
|
|
|
config SYS_SOC
|
|
default "zynq"
|
|
|
|
config SYS_MALLOC_LEN
|
|
default 0x1400000
|
|
|
|
config BOOT_INIT_FILE
|
|
string "boot.bin init register filename"
|
|
default ""
|
|
help
|
|
Add register writes to boot.bin format (max 256 pairs).
|
|
Expect a table of register-value pairs, e.g. "0x12345678 0x4321"
|
|
|
|
config ZYNQ_SDHCI_MAX_FREQ
|
|
default 52000000
|
|
|
|
source "board/xilinx/Kconfig"
|
|
source "board/xilinx/zynq/Kconfig"
|
|
|
|
endif
|