aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/t440p/gma-mainboard.ads
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/gma-mainboard.ads
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/gma-mainboard.ads')
-rw-r--r--src/mainboard/lenovo/t440p/gma-mainboard.ads30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/t440p/gma-mainboard.ads b/src/mainboard/lenovo/t440p/gma-mainboard.ads
new file mode 100644
index 0000000000..d36cb82e3c
--- /dev/null
+++ b/src/mainboard/lenovo/t440p/gma-mainboard.ads
@@ -0,0 +1,30 @@
+--
+-- This file is part of the coreboot project.
+--
+-- This program is free software; you can redistribute it and/or modify
+-- it under the terms of the GNU General Public License as published by
+-- the Free Software Foundation; either version 2 of the License, or
+-- (at your option) any later version.
+--
+-- This program is distributed in the hope that it will be useful,
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+-- GNU General Public License for more details.
+--
+
+with HW.GFX.GMA;
+with HW.GFX.GMA.Display_Probing;
+
+use HW.GFX.GMA;
+use HW.GFX.GMA.Display_Probing;
+
+private package GMA.Mainboard is
+
+ ports : constant Port_List :=
+ (DP1, -- MiniDP
+ DP2, -- dock, DP2-1 (DP/HDMI) and DP2-2 (DP/DVI)
+ Analog,
+ Internal,
+ others => Disabled);
+
+end GMA.Mainboard;