diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2018-06-11 10:27:14 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-06-25 08:22:01 +0000 |
commit | 510758826df22e85c7ecd2d641693c13d745965f (patch) | |
tree | 0738f67d2ea8fe4a80a00dbfb63e6281faf2be97 /src/mainboard/lenovo/t400/gma-mainboard.ads | |
parent | e1d5facea23543e8d99c168f7f12bab3a948b875 (diff) |
nb/lenovo/t400: Enable libgfxinit
Change-Id: I243c22c83a5575c2e1500cc869c41691c4fba415
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/27014
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/lenovo/t400/gma-mainboard.ads')
-rw-r--r-- | src/mainboard/lenovo/t400/gma-mainboard.ads | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/t400/gma-mainboard.ads b/src/mainboard/lenovo/t400/gma-mainboard.ads new file mode 100644 index 0000000000..680dd1b0aa --- /dev/null +++ b/src/mainboard/lenovo/t400/gma-mainboard.ads @@ -0,0 +1,31 @@ +-- +-- 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, + HDMI1, + HDMI2, + Analog, + Internal, + others => Disabled); + +end GMA.Mainboard; |