blob: ddbbd82bf773aa85e0d8670c941100b188305e36 [file] [log] [blame]
Angel Pons73614402021-05-17 11:13:04 +02001-- SPDX-License-Identifier: GPL-2.0-or-later
Angel Pons65ddbb72018-05-19 17:42:49 +02002
3with HW.GFX.GMA;
4with HW.GFX.GMA.Display_Probing;
5
6use HW.GFX.GMA;
7use HW.GFX.GMA.Display_Probing;
8
9private package GMA.Mainboard is
10
11 -- For a three-pipe setup, bandwidth is shared between the 2nd and
12 -- the 3rd pipe. Thus, probe ports that likely have a high-resolution
13 -- display attached first.
14
15 ports : constant Port_List :=
16 (HDMI3, -- mainboard HDMI port
17 HDMI1, -- mainboard DVI-D port
18 Analog,
19 others => Disabled);
20
21end GMA.Mainboard;