cea8493285
Since only a handful of boards have descriptor blobs in the tree, it makes no sense to have `HAVE_IFD_BIN` enabled by default then disabled on each mainboard. This patch flips the default value of said variable, rendering all current overrides unnecessary. The few boards which have an IFD in the blobs repo use `select HAVE_IFD_BIN` to enable adding the IFD by default. Since `HAVE_ME_BIN` depends on `HAVE_IFD_BIN`, the former has been removed alongside the latter, and has been added to the boards with a ME blob as `select HAVE_ME_BIN`. Both `HAVE_IFD_BIN` and `HAVE_ME_BIN` have been removed from autoport as well. Change-Id: I330c4886f8bea4b1a8ecad6505a0e5cc381654d1 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/27218 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
66 lines
1.2 KiB
Text
66 lines
1.2 KiB
Text
if BOARD_LENOVO_T430S
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select SYSTEM_TYPE_LAPTOP
|
|
select CPU_INTEL_SOCKET_RPGA989
|
|
select NORTHBRIDGE_INTEL_IVYBRIDGE
|
|
select USE_NATIVE_RAMINIT
|
|
select SOUTHBRIDGE_INTEL_C216
|
|
select EC_LENOVO_PMH7
|
|
select EC_LENOVO_H8
|
|
select NO_UART_ON_SUPERIO
|
|
select BOARD_ROMSIZE_KB_16384
|
|
select HAVE_ACPI_TABLES
|
|
select HAVE_OPTION_TABLE
|
|
select HAVE_CMOS_DEFAULT
|
|
select HAVE_ACPI_RESUME
|
|
select INTEL_INT15
|
|
select SANDYBRIDGE_IVYBRIDGE_LVDS
|
|
select ENABLE_VMX
|
|
select MAINBOARD_HAS_LPC_TPM
|
|
select MAINBOARD_HAS_TPM1
|
|
select MAINBOARD_HAS_LIBGFXINIT
|
|
select GFX_GMA_INTERNAL_IS_LVDS
|
|
select INTEL_GMA_HAVE_VBT
|
|
|
|
# Workaround for EC/KBC IRQ1.
|
|
select SERIRQ_CONTINUOUS_MODE
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default lenovo/t430s
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "ThinkPad T430s"
|
|
|
|
config MAX_CPUS
|
|
int
|
|
default 8
|
|
|
|
config USBDEBUG_HCD_INDEX
|
|
int
|
|
default 2
|
|
|
|
config DRAM_RESET_GATE_GPIO
|
|
int
|
|
default 10
|
|
|
|
config VGA_BIOS_FILE
|
|
string
|
|
default "pci8086,0166.rom"
|
|
|
|
config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID
|
|
hex
|
|
default 0x17aa
|
|
|
|
config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID
|
|
hex
|
|
default 0x21fb
|
|
|
|
config ONBOARD_VGA_IS_PRIMARY
|
|
bool
|
|
default y
|
|
|
|
endif # BOARD_LENOVO_T430S
|