mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
6b08679328
This patch adds the infrastructure to define different config headers with different configurations and default environment for the baseboards that can now be selected via Kconfig. The new configuration for the theadorable-x86-dfi-bt700 is also added. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Simon Glass <sjg@chromium.org> Cc: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
30 lines
654 B
Text
30 lines
654 B
Text
config SYS_BOARD
|
|
default "dfi-bt700"
|
|
|
|
config SYS_VENDOR
|
|
default "dfi"
|
|
|
|
config SYS_SOC
|
|
default "baytrail"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "dfi-bt700" if TARGET_Q7X_151_DFI_BT700
|
|
default "theadorable-x86-dfi-bt700" if TARGET_THEADORABLE_X86_DFI_BT700
|
|
|
|
config SYS_TEXT_BASE
|
|
default 0xfff00000 if !EFI_STUB
|
|
default 0x01110000 if EFI_STUB
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select X86_RESET_VECTOR if !EFI_STUB
|
|
select INTEL_BAYTRAIL
|
|
select BOARD_ROMSIZE_KB_8192
|
|
select BOARD_EARLY_INIT_F
|
|
select BOARD_LATE_INIT
|
|
select SPI_FLASH_STMICRO
|
|
imply SPI_FLASH_SPANSION
|
|
imply SPI_FLASH_WINBOND
|
|
|
|
config PCIE_ECAM_BASE
|
|
default 0xe0000000
|