aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/t440p/Kconfig
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2019-06-30 21:16:50 +0800
committerPatrick Georgi <pgeorgi@google.com>2019-10-30 08:21:13 +0000
commitb55943260407b94bbe27981dea92559c69b41144 (patch)
tree1c5bfdfbab882af66307b44d11ed290d73f77da1 /src/mainboard/lenovo/t440p/Kconfig
parenteef992deacf0dd49ef9c4e1690bd7e80cf1bfcce (diff)
mainboard: Add Lenovo ThinkPad T440p
The code is based on autoport. This port is tested on a T440p without a dGPU and can boot Arch Linux from SATA disk with SeaBIOS payload. The tested components and issues are in the documentation. Change-Id: I56a6b94197789a83731d8b349b8ba6814bf57ca2 Signed-off-by: Iru Cai <mytbk920423@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34359 Reviewed-by: Patrick Rudolph <siro@das-labor.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/lenovo/t440p/Kconfig')
-rw-r--r--src/mainboard/lenovo/t440p/Kconfig54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/t440p/Kconfig b/src/mainboard/lenovo/t440p/Kconfig
new file mode 100644
index 0000000000..bf821f3d0c
--- /dev/null
+++ b/src/mainboard/lenovo/t440p/Kconfig
@@ -0,0 +1,54 @@
+if BOARD_LENOVO_THINKPAD_T440P
+
+config BOARD_SPECIFIC_OPTIONS
+ def_bool y
+ select BOARD_ROMSIZE_KB_12288
+ select CPU_INTEL_HASWELL
+ select EC_LENOVO_H8
+ select H8_HAS_PRIMARY_FN_KEYS
+ select EC_LENOVO_PMH7
+ select NO_UART_ON_SUPERIO
+ select HAVE_ACPI_RESUME
+ select HAVE_ACPI_TABLES
+ select HAVE_OPTION_TABLE
+ select HAVE_CMOS_DEFAULT
+ select MAINBOARD_HAS_LPC_TPM
+ select MAINBOARD_HAS_TPM1
+ select INTEL_GMA_HAVE_VBT
+ select INTEL_INT15
+ select MAINBOARD_HAS_LIBGFXINIT
+ select NORTHBRIDGE_INTEL_HASWELL
+ select SERIRQ_CONTINUOUS_MODE
+ select SOUTHBRIDGE_INTEL_LYNXPOINT
+ select SYSTEM_TYPE_LAPTOP
+ select MAINBOARD_USES_IFD_GBE_REGION
+
+config MAINBOARD_DIR
+ string
+ default lenovo/t440p
+
+config MAINBOARD_PART_NUMBER
+ string
+ default "ThinkPad T440p"
+
+config VGA_BIOS_FILE
+ string
+ default "pci8086,0416.rom"
+
+config VGA_BIOS_ID
+ string
+ default "8086,0416"
+
+config MAX_CPUS
+ int
+ default 8
+
+config USBDEBUG_HCD_INDEX
+ int
+ default 2
+
+config DRIVER_LENOVO_SERIALS
+ bool
+ default n
+
+endif