1ce4bf9717
TESTED Intel DG41WV with VGA, Intel DG43GT with VGA and HDMI1 and HDMI2. Change-Id: I774b79cc0ef9dc72ccf48901ab94376b27ed9c7a Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/26966 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
27 lines
785 B
Ada
27 lines
785 B
Ada
--
|
|
-- 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 :=
|
|
(Analog,
|
|
others => Disabled);
|
|
|
|
end GMA.Mainboard;
|