diff options
author | Nicolas Reinecke <nr@das-labor.org> | 2015-10-01 15:34:37 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-04-13 17:54:46 +0200 |
commit | 2bffa8aa8418a7029615b492c80508733bba1231 (patch) | |
tree | cf3dc5e64b04d684e343617431267355fbe72d5e /src/mainboard/lenovo/t420/Kconfig | |
parent | 888a98b872ed88f70b76103a95ef5d4140cfe2d7 (diff) | |
download | coreboot-2bffa8aa8418a7029615b492c80508733bba1231.tar.xz |
lenovo/t420: Add new port
This is based on t420s. Tested on a T420 without discrete GPU.
There is no support for nvidia gpu and optimus.
Signed-off-by: Nicolas Reinecke <nr@das-labor.org>
Tested-by: Iru Cai <mytbk920423@gmail.com>
Change-Id: Ie9405966e56180ac1c43a3c5b83181ee500177c8
Reviewed-on: https://review.coreboot.org/11765
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/lenovo/t420/Kconfig')
-rw-r--r-- | src/mainboard/lenovo/t420/Kconfig | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/t420/Kconfig b/src/mainboard/lenovo/t420/Kconfig new file mode 100644 index 0000000000..04233e7ef6 --- /dev/null +++ b/src/mainboard/lenovo/t420/Kconfig @@ -0,0 +1,79 @@ +if BOARD_LENOVO_T420 + +config BOARD_SPECIFIC_OPTIONS # dummy + def_bool y + select SYSTEM_TYPE_LAPTOP + select CPU_INTEL_SOCKET_RPGA988B + select NORTHBRIDGE_INTEL_SANDYBRIDGE + select USE_NATIVE_RAMINIT + select SOUTHBRIDGE_INTEL_BD82X6X + select EC_LENOVO_PMH7 + select EC_LENOVO_H8 + select NO_UART_ON_SUPERIO + select BOARD_ROMSIZE_KB_8192 + 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 DRIVERS_RICOH_RCE822 + 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/t420 + +config MAINBOARD_PART_NUMBER + string + default "ThinkPad T420" + +config MMCONF_BASE_ADDRESS + hex + default 0xf8000000 + +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,0126.rom" + +config VGA_BIOS_ID + string + default "8086,0126" + +config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID + hex + default 0x17aa + +config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID + hex + default 0x21ce + +config ONBOARD_VGA_IS_PRIMARY + bool + default y + +endif # BOARD_LENOVO_T420 |