mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +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>
53 lines
891 B
Text
53 lines
891 B
Text
if TARGET_SIFIVE_UNMATCHED
|
|
|
|
config SYS_BOARD
|
|
default "unmatched"
|
|
|
|
config SYS_VENDOR
|
|
default "sifive"
|
|
|
|
config SYS_CPU
|
|
default "fu740"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "sifive-unmatched"
|
|
|
|
config TEXT_BASE
|
|
default 0x80200000 if SPL
|
|
default 0x80000000 if !RISCV_SMODE
|
|
default 0x80200000 if RISCV_SMODE
|
|
|
|
config SPL_TEXT_BASE
|
|
default 0x08000000
|
|
|
|
config SPL_OPENSBI_LOAD_ADDR
|
|
default 0x80000000
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select SIFIVE_FU740
|
|
select ENV_IS_IN_SPI_FLASH
|
|
select SUPPORT_SPL
|
|
select RESET_SIFIVE
|
|
select BINMAN
|
|
imply CMD_DHCP
|
|
imply CMD_EXT2
|
|
imply CMD_EXT4
|
|
imply CMD_FAT
|
|
imply CMD_FS_GENERIC
|
|
imply CMD_GPT
|
|
imply PARTITION_TYPE_GUID
|
|
imply CMD_NET
|
|
imply CMD_PING
|
|
imply CMD_SF
|
|
imply DOS_PARTITION
|
|
imply EFI_PARTITION
|
|
imply IP_DYN
|
|
imply ISO_PARTITION
|
|
imply PHY_LIB
|
|
imply PHY_MSCC
|
|
imply SYSRESET
|
|
imply SYSRESET_GPIO
|
|
imply CMD_I2C
|
|
|
|
endif
|