diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2017-06-25 15:25:17 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-06-27 16:51:02 +0000 |
commit | 18437c46bd4761f3772736e5eb9e6b4cd4de8955 (patch) | |
tree | 747434273e20bfc90003e18bd195b2f16369afb1 /src/mainboard/lenovo/x220/gma-mainboard.ads | |
parent | bf6a844580843a6b1435563e5f06c61a212ca2ce (diff) | |
download | coreboot-18437c46bd4761f3772736e5eb9e6b4cd4de8955.tar.xz |
mainboard/lenovo/x220: allow to use libgfxinit
Change-Id: I8b02596b116c0b164e83e7b02449c547224a50a6
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Reviewed-on: https://review.coreboot.org/20330
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/mainboard/lenovo/x220/gma-mainboard.ads')
-rw-r--r-- | src/mainboard/lenovo/x220/gma-mainboard.ads | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/x220/gma-mainboard.ads b/src/mainboard/lenovo/x220/gma-mainboard.ads new file mode 100644 index 0000000000..736dce71e0 --- /dev/null +++ b/src/mainboard/lenovo/x220/gma-mainboard.ads @@ -0,0 +1,20 @@ +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, + DP3, + HDMI1, + HDMI2, + HDMI3, + Analog, + Internal, + others => Disabled); + +end GMA.Mainboard; |