mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
93145335fb
The way that we use this file currently means that we have to guard it in every platform Kconfig. But it is also required in all NXP platforms, including non-reference platforms. Make all options in it have appropriate dependencies so that we can include it a single time under arch/Kconfig Signed-off-by: Tom Rini <trini@konsulko.com>
31 lines
686 B
Text
31 lines
686 B
Text
if TARGET_LS1043AQDS
|
|
|
|
config SYS_BOARD
|
|
default "ls1043aqds"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "ls1043aqds"
|
|
|
|
if FSL_LS_PPA
|
|
config SYS_LS_PPA_FW_ADDR
|
|
hex "PPA Firmware Addr"
|
|
default 0x40400000 if SYS_LS_PPA_FW_IN_XIP && QSPI_BOOT
|
|
default 0x60400000 if SYS_LS_PPA_FW_IN_XIP
|
|
default 0x400000 if SYS_LS_PPA_FW_IN_MMC || SYS_LS_PPA_FW_IN_NAND
|
|
|
|
if CHAIN_OF_TRUST
|
|
config SYS_LS_PPA_ESBC_ADDR
|
|
hex "PPA Firmware HDR Addr"
|
|
default 0x40680000 if SYS_LS_PPA_FW_IN_XIP && QSPI_BOOT
|
|
default 0x60680000 if SYS_LS_PPA_FW_IN_XIP
|
|
default 0x680000 if SYS_LS_PPA_FW_IN_MMC || SYS_LS_PPA_FW_IN_NAND
|
|
endif
|
|
endif
|
|
|
|
endif
|