diff options
author | Sean Rhodes <sean@starlabs.systems> | 2022-01-10 21:58:04 +0000 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-03-01 11:56:26 +0000 |
commit | 5da05b6e35f49a83f5b3610d2b41931f7d703da5 (patch) | |
tree | ffa69e665f368ea19adc1089eb70377d156e0f34 /src/mainboard/starlabs/lite/gma-mainboard.ads | |
parent | c64626c9d90b4b2eb0a6c959f5af5303bf048d78 (diff) |
mb/starlabs/lite: Add StarLite Mk III
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: Iddbf2022d03735d6a0e6d098c21643f5fdc875f6
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60980
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/starlabs/lite/gma-mainboard.ads')
-rw-r--r-- | src/mainboard/starlabs/lite/gma-mainboard.ads | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mainboard/starlabs/lite/gma-mainboard.ads b/src/mainboard/starlabs/lite/gma-mainboard.ads new file mode 100644 index 0000000000..8402b39a94 --- /dev/null +++ b/src/mainboard/starlabs/lite/gma-mainboard.ads @@ -0,0 +1,18 @@ +-- SPDX-License-Identifier: GPL-2.0-or-later + +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, -- USB-C + HDMI1, -- USB-C + HDMI2, -- HDMI + eDP, + others => Disabled); + +end GMA.Mainboard; |