aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/51nb/x210/gma-mainboard.ads
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2020-02-26 12:55:49 -0600
committerPatrick Georgi <pgeorgi@google.com>2020-03-16 14:42:19 +0000
commit6d6fb6bdd2c3fe5f198bb37c51609b4768c7fd74 (patch)
tree5053295649cd889b20f2cf5e49a36672d98d02ff /src/mainboard/51nb/x210/gma-mainboard.ads
parent2f62a352ea3f62e58c166c430d37ec2d2565eeca (diff)
mb/51nb/x210: add libgfxinit support
Derived from x210_test branch of HarryKipper's repo: https://github.com/harrykipper/coreboot Test: build/boot x210, test eDP, MiniDP, VGA outputs Change-Id: Ie2b79b236a458ebd243c992d6e615e41930eeb50 Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39106 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/51nb/x210/gma-mainboard.ads')
-rw-r--r--src/mainboard/51nb/x210/gma-mainboard.ads18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mainboard/51nb/x210/gma-mainboard.ads b/src/mainboard/51nb/x210/gma-mainboard.ads
new file mode 100644
index 0000000000..f012560f6c
--- /dev/null
+++ b/src/mainboard/51nb/x210/gma-mainboard.ads
@@ -0,0 +1,18 @@
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
+
+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,
+ DP2,
+ eDP,
+ Others => Disabled);
+
+end GMA.Mainboard;