mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 23:02:59 +00:00
984639039f
The current name is inconsistent with SPL which uses CONFIG_SPL_TEXT_BASE and this makes it imposible to use CONFIG_VAL(). Rename it to resolve this problem. Signed-off-by: Simon Glass <sjg@chromium.org>
59 lines
1 KiB
Text
59 lines
1 KiB
Text
if TARGET_LS1028AQDS
|
|
|
|
config SYS_BOARD
|
|
default "ls1028a"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "ls1028aqds"
|
|
|
|
config EMMC_BOOT
|
|
bool "Support for booting from EMMC"
|
|
|
|
config TEXT_BASE
|
|
default 0x96000000 if SD_BOOT || EMMC_BOOT
|
|
default 0x82000000 if TFABOOT
|
|
default 0x20100000
|
|
|
|
if FSL_LS_PPA
|
|
config SYS_LS_PPA_FW_ADDR
|
|
hex "PPA Firmware Addr"
|
|
default 0x20400000 if SYS_LS_PPA_FW_IN_XIP && ARCH_LS1028A
|
|
default 0x400000 if SYS_LS_PPA_FW_IN_MMC && ARCH_LS1028A
|
|
if CHAIN_OF_TRUST
|
|
config SYS_LS_PPA_ESBC_ADDR
|
|
hex "PPA header Addr"
|
|
default 0x20600000 if SYS_LS_PPA_FW_IN_XIP && ARCH_LS1028A
|
|
endif
|
|
endif
|
|
|
|
endif
|
|
|
|
if TARGET_LS1028ARDB
|
|
|
|
config SYS_BOARD
|
|
default "ls1028a"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "ls1028ardb"
|
|
|
|
config EMMC_BOOT
|
|
bool "Support for booting from EMMC"
|
|
|
|
config TEXT_BASE
|
|
default 0x96000000 if SD_BOOT || EMMC_BOOT
|
|
default 0x82000000 if TFABOOT
|
|
default 0x20100000
|
|
|
|
endif
|