Most boards currently do not use EC firmware from SPI flash in the IFD, this hides this option by default and shows it only for boards that need it. A new config variable MAINBOARD_USES_IFD_EC_REGION is introduced to enable this option for boards that need it. The following list of boards requiring this was provided by Lijian Zhao: 1. intel/cannonlake_rvp 2. intel/coffeelake_rvp 3. intel/icelake_rvp 4. google/sarien 5. google/hatch Change-Id: I52ab977319d99a23a5e982cc01479fe801e172a7 Signed-off-by: Jan Tatje <jan@jnt.io> Reviewed-on: https://review.coreboot.org/c/30697 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Lijian Zhao <lijian.zhao@intel.com>
55 lines
1017 B
Plaintext
55 lines
1017 B
Plaintext
if BOARD_INTEL_ICELAKE_RVPU || BOARD_INTEL_ICELAKE_RVPY
|
|
|
|
config BOARD_SPECIFIC_OPTIONS
|
|
def_bool y
|
|
select BOARD_ROMSIZE_KB_16384
|
|
select GENERIC_SPD_BIN
|
|
select HAVE_ACPI_RESUME
|
|
select HAVE_ACPI_TABLES
|
|
select MAINBOARD_HAS_CHROMEOS
|
|
select GENERIC_SPD_BIN
|
|
select DRIVERS_I2C_HID
|
|
select DRIVERS_I2C_GENERIC
|
|
select DRIVERS_USB_ACPI
|
|
select SOC_INTEL_COMMON_BLOCK_HDA_VERB
|
|
select SOC_INTEL_ICELAKE
|
|
select MAINBOARD_USES_IFD_EC_REGION
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default "intel/icelake_rvp"
|
|
|
|
config VARIANT_DIR
|
|
string
|
|
default "icl_u" if BOARD_INTEL_ICELAKE_RVPU
|
|
default "icl_y" if BOARD_INTEL_ICELAKE_RVPY
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "Icelake RVP"
|
|
|
|
config MAINBOARD_VENDOR
|
|
string
|
|
default "Intel"
|
|
|
|
config MAINBOARD_FAMILY
|
|
string
|
|
default "Intel_icelake_rvp"
|
|
|
|
config MAX_CPUS
|
|
int
|
|
default 8
|
|
|
|
config DEVICETREE
|
|
string
|
|
default "variants/$(CONFIG_VARIANT_DIR)/devicetree.cb"
|
|
|
|
config DIMM_SPD_SIZE
|
|
int
|
|
default 512
|
|
|
|
config VBOOT
|
|
select VBOOT_LID_SWITCH
|
|
select VBOOT_MOCK_SECDATA
|
|
endif
|