This drops support for FSP 1.1 in soc/intel/skylake, after all boards have been migrated to FSP 2.0, which is backwards compatible. Any moving of files happens in a follow-up commit to make review easier. Change-Id: I0dd2eab0edfda0545ff94c3908b8574d5ad830bd Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35813 Reviewed-by: Michael Niewöhner Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
74 lines
1.6 KiB
Plaintext
74 lines
1.6 KiB
Plaintext
config BOARD_PURISM_BASEBOARD_LIBREM_SKL
|
|
def_bool n
|
|
select SYSTEM_TYPE_LAPTOP
|
|
select BOARD_ROMSIZE_KB_16384
|
|
select HAVE_ACPI_RESUME
|
|
select HAVE_ACPI_TABLES
|
|
select INTEL_LPSS_UART_FOR_CONSOLE
|
|
select SOC_INTEL_COMMON_BLOCK_HDA_VERB
|
|
select SOC_INTEL_SKYLAKE
|
|
select SPD_READ_BY_WORD
|
|
select MAINBOARD_HAS_LPC_TPM
|
|
|
|
if BOARD_PURISM_BASEBOARD_LIBREM_SKL
|
|
|
|
config IRQ_SLOT_COUNT
|
|
int
|
|
default 18
|
|
|
|
config VARIANT_DIR
|
|
string
|
|
default "librem13v2" if BOARD_PURISM_LIBREM13_V2 || BOARD_PURISM_LIBREM13_V4
|
|
default "librem15v3" if BOARD_PURISM_LIBREM15_V3 || BOARD_PURISM_LIBREM15_V4
|
|
|
|
config MAINBOARD_VENDOR
|
|
string
|
|
default "Purism"
|
|
|
|
config MAINBOARD_FAMILY
|
|
string
|
|
default "Librem 13" if BOARD_PURISM_LIBREM13_V2 || BOARD_PURISM_LIBREM13_V4
|
|
default "Librem 15" if BOARD_PURISM_LIBREM15_V3 || BOARD_PURISM_LIBREM15_V4
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "Librem 13 v2" if BOARD_PURISM_LIBREM13_V2
|
|
default "Librem 15 v3" if BOARD_PURISM_LIBREM15_V3
|
|
default "Librem 13 v4" if BOARD_PURISM_LIBREM13_V4
|
|
default "Librem 15 v4" if BOARD_PURISM_LIBREM15_V4
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default "purism/librem_skl"
|
|
|
|
config DEVICETREE
|
|
string
|
|
default "variants/$(CONFIG_VARIANT_DIR)/devicetree.cb"
|
|
|
|
config MAX_CPUS
|
|
int
|
|
default 8
|
|
|
|
config VGA_BIOS_ID
|
|
string
|
|
default "8086,1916" if BOARD_PURISM_LIBREM13_V2 || BOARD_PURISM_LIBREM15_V3
|
|
default "8086,5916" if BOARD_PURISM_LIBREM13_V4 || BOARD_PURISM_LIBREM15_V4
|
|
|
|
config DIMM_MAX
|
|
int
|
|
default 1
|
|
|
|
config DIMM_SPD_SIZE
|
|
int
|
|
default 512
|
|
|
|
config CBFS_SIZE
|
|
hex
|
|
default 0xe00000
|
|
|
|
# This platform has limited means to display POST codes
|
|
config NO_POST
|
|
default y
|
|
|
|
endif
|