aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads
diff options
context:
space:
mode:
authorVlado Cibic <vladocb@protonmail.com>2019-06-09 06:53:50 +0000
committerMatt DeVillier <matt.devillier@gmail.com>2019-06-27 16:17:04 +0000
commit2bf6a301d39fcb49edf6eb5a18e6b384ed95205a (patch)
treee8b2693c48def32c2c25c18b19347e5669e0c2ad /src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads
parentb91b173f3dbd38aecf50f86cb27df352c64bd4e3 (diff)
mainboard: Add support for ASUS P8Z77-M PRO desktop mainboard
Add support for ASUS P8Z77-M PRO desktop mainboard Working: - Tianocore and SeaBIOS boot - PS/2 keyboard and mouse - Audio - S3 Suspend, shutdown and reboot - USB2 / USB3 - Gigabit Ethernet - SATA3, SATA2 and eSATA - NVME - CPU Temp sensors - TPM - Native raminit and also MRC - PCIe GPU in all PCIe slots (16x/8x/4x) (linux) - Integrated graphics with both libgfxinit and Intel Video OpROM (all connectors VGA/DVI-D/HDMI) Signed-off-by: Vlado Cibic <vladocb@protonmail.com> Change-Id: I47d24ac8b236f929c3160f9a769b971d83710f9d Reviewed-on: https://review.coreboot.org/c/coreboot/+/33328 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads')
-rw-r--r--src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads b/src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads
new file mode 100644
index 0000000000..f9dd430d24
--- /dev/null
+++ b/src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads
@@ -0,0 +1,31 @@
+--
+-- This file is part of the coreboot project.
+--
+-- Copyright (C) 2019 Vlado Cibic <vladocb@protonmail.com>
+--
+-- 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 :=
+ (HDMI1, -- DVI-D port on rear
+ HDMI3, -- real HDMI port on rear
+ Analog, -- VGA port on rear
+ others => Disabled);
+
+end GMA.Mainboard;