a96e66a76f
Everything is wrong here, the Kconfig symbols are only the tip of the iceberg. Based on Kconfig prompts the SoC code performed pad configu- rations! I don't see why the person who configures coreboot should have the board schematics at hand. As a mitigation, we remove the prompts for UART_DEBUG, which is renamed to INTEL_LPSS_UART_FOR_CONSOLE (because the former didn't really say what it's about), and for UART_FOR_CONSOLE in case the former is selec- ted. Change-Id: Ibe2ed3cab0bb04bb23989c22da45299f088c758b Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/29573 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
77 lines
1.3 KiB
Text
77 lines
1.3 KiB
Text
if BOARD_INTEL_LEAFHILL
|
|
|
|
config BOARD_SPECIFIC_OPTIONS
|
|
def_bool y
|
|
select SOC_INTEL_APOLLOLAKE
|
|
select BOARD_ROMSIZE_KB_16384
|
|
select HAVE_ACPI_TABLES
|
|
select INTEL_LPSS_UART_FOR_CONSOLE
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default intel/leafhill
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "Leafhill"
|
|
|
|
config MAINBOARD_VENDOR
|
|
string
|
|
default "Intel"
|
|
|
|
config FMDFILE
|
|
string
|
|
default "src/mainboard/$(CONFIG_MAINBOARD_DIR)/leafhill.$(CONFIG_COREBOOT_ROMSIZE_KB).fmd"
|
|
|
|
config UART_FOR_CONSOLE
|
|
default 2
|
|
|
|
config NEED_IFWI
|
|
# this must be set to y
|
|
bool "Use IFWI stitching"
|
|
default n
|
|
|
|
config IFWI_FMAP_NAME
|
|
string "section in .fmd file to place ifwi blob"
|
|
depends on NEED_IFWI
|
|
default "IFWI"
|
|
|
|
config IFWI_FILE_NAME
|
|
string "path to image coming from FIT tool"
|
|
depends on NEED_IFWI
|
|
default ""
|
|
|
|
config IFD_BIN_PATH
|
|
string "path to descriptor.bin"
|
|
depends on NEED_IFWI
|
|
default ""
|
|
|
|
config HAVE_IFD_BIN
|
|
bool
|
|
depends on NEED_IFWI
|
|
default y
|
|
|
|
config ADD_FSP_BINARIES
|
|
bool "Add FSP blobs"
|
|
depends on PLATFORM_USES_FSP2_0
|
|
default n
|
|
|
|
config FSP_M_FILE
|
|
string "path to FSP-M.Fv blob"
|
|
depends on ADD_FSP_BINARIES
|
|
default ""
|
|
|
|
config FSP_S_FILE
|
|
string "path to FSP-S.Fv blob"
|
|
depends on ADD_FSP_BINARIES
|
|
default ""
|
|
|
|
config FSP_S_CBFS
|
|
string
|
|
default "fsps.bin"
|
|
|
|
config FSP_M_CBFS
|
|
string
|
|
default "fspm.bin"
|
|
|
|
endif # BOARD_INTEL_LEAFHILL
|