diff options
author | Mate Kukri <kukri.mate@gmail.com> | 2024-06-11 20:26:16 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-06-13 11:47:24 +0000 |
commit | 5f0c3a6ae23df47287d57123eb8d9660416a0cc9 (patch) | |
tree | b2ff0c335de90e3761cfb4adb9c088587f425b94 /src/mainboard/dell | |
parent | 5d904b909a2343b96cfe865f17219ff121d0f7f5 (diff) |
mb/dell/optiplex_9020: Fix integrated video port list
- Physical DP ports are DP2/DP3 (HDMI2/HDMI3 for DP++)
- VGA port is Analog
- DP1 is not connected
Signed-off-by: Mate Kukri <kukri.mate@gmail.com>
Change-Id: I8ed79167d5445d607acbee491c3382ff2585583f
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83049
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/mainboard/dell')
-rw-r--r-- | src/mainboard/dell/optiplex_9020/gma-mainboard.ads | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mainboard/dell/optiplex_9020/gma-mainboard.ads b/src/mainboard/dell/optiplex_9020/gma-mainboard.ads index 173f2f1d0d..7d9506163c 100644 --- a/src/mainboard/dell/optiplex_9020/gma-mainboard.ads +++ b/src/mainboard/dell/optiplex_9020/gma-mainboard.ads @@ -9,9 +9,10 @@ use HW.GFX.GMA.Display_Probing; private package GMA.Mainboard is ports : constant Port_List := - (DP1, - DP2, + (DP2, DP3, + HDMI2, + HDMI3, Analog, others => Disabled); |