77c67b3d30
We've actually got more warnings now than when I first tested IASL warnings as errors. Because of this, I'm adding it with the option to have it disabled, in hopes that things won't get any worse as we work on fixing the IASL warnings that are currently in the codebase. - Enable IASL warnings as errors - Disable warnings as errors in mainboards that currently have warnings. - Print a really obnoxious message on those platforms when they build. ***** WARNING: IASL warnings as errors is disabled! ***** ***** Please fix the ASL for this platform. ***** Change-Id: If0da0ac709bd8c0e8e2dbd3a498fe6ecb5500a81 Signed-off-by: Martin Roth <gaumless@gmail.com> Reviewed-on: http://review.coreboot.org/10663 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
78 lines
1.4 KiB
Text
78 lines
1.4 KiB
Text
if BOARD_LENOVO_T530
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select SYSTEM_TYPE_LAPTOP
|
|
select CPU_INTEL_SOCKET_RPGA989
|
|
select NORTHBRIDGE_INTEL_IVYBRIDGE
|
|
select SOUTHBRIDGE_INTEL_C216
|
|
select EC_LENOVO_PMH7
|
|
select EC_LENOVO_H8
|
|
select NO_UART_ON_SUPERIO
|
|
select BOARD_ROMSIZE_KB_12288
|
|
select HAVE_ACPI_TABLES
|
|
select HAVE_OPTION_TABLE
|
|
select HAVE_CMOS_DEFAULT
|
|
select HAVE_ACPI_RESUME
|
|
select INTEL_INT15
|
|
select VGA
|
|
select INTEL_EDID
|
|
select MAINBOARD_HAS_NATIVE_VGA_INIT
|
|
select MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG
|
|
select IVYBRIDGE_LVDS
|
|
select MAINBOARD_DO_NATIVE_VGA_INIT # default to native vga init
|
|
select ENABLE_VMX
|
|
select MAINBOARD_HAS_LPC_TPM
|
|
|
|
# Workaround for EC/KBC IRQ1.
|
|
select SERIRQ_CONTINUOUS_MODE
|
|
|
|
config HAVE_IFD_BIN
|
|
bool
|
|
default n
|
|
|
|
config HAVE_ME_BIN
|
|
bool
|
|
default n
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default lenovo/t530
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "ThinkPad T530"
|
|
|
|
config MMCONF_BASE_ADDRESS
|
|
hex
|
|
default 0xf0000000
|
|
|
|
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,0106.rom"
|
|
|
|
config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID
|
|
hex
|
|
default 0x17aa
|
|
|
|
config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID
|
|
hex
|
|
default 0x21fa
|
|
|
|
# TODO: Remove this when platform ASL is fixed
|
|
config IASL_WARNINGS_ARE_ERRORS
|
|
def_bool n
|
|
|
|
endif # BOARD_LENOVO_T530
|