c67e4db2dc
Change-Id: I78f06b54a6a03d565cf86f1d7bdf37965c3f6ad0 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39660 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
23 lines
403 B
Ada
23 lines
403 B
Ada
-- 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,
|
|
DP3,
|
|
HDMI1,
|
|
HDMI2,
|
|
HDMI3,
|
|
Analog,
|
|
eDP,
|
|
others => Disabled);
|
|
|
|
end GMA.Mainboard;
|