mb/siemens/mc_apl7: Enable libgfxinit for the board

Add the gma-mainboard.ads for display output definition and enable the
libgfxinit usage in mainboard Kconfig.

Change-Id: I7e7a44736a8136b5320821e744134c7d64c7f1b4
Signed-off-by: Jan Samek <jan.samek@siemens.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67683
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Jan Samek 2022-09-15 17:04:49 +02:00 committed by Felix Held
parent 9a3e9a495c
commit 1bff742c12
3 changed files with 17 additions and 0 deletions

View File

@ -7,6 +7,7 @@ config BOARD_SPECIFIC_OPTIONS
select SOC_INTEL_SET_MIN_CLOCK_RATIO select SOC_INTEL_SET_MIN_CLOCK_RATIO
select DRIVERS_I2C_PTN3460 select DRIVERS_I2C_PTN3460
select PTN3460_EARLY_INIT select PTN3460_EARLY_INIT
select MAINBOARD_HAS_LIBGFXINIT
config UART_FOR_CONSOLE config UART_FOR_CONSOLE
default 1 default 1

View File

@ -4,3 +4,4 @@ romstage-y += memory.c
ramstage-y += gpio.c ramstage-y += gpio.c
ramstage-y += lcd_panel.c ramstage-y += lcd_panel.c
ramstage-$(CONFIG_MAINBOARD_USE_LIBGFXINIT) += gma-mainboard.ads

View File

@ -0,0 +1,15 @@
-- 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 :=
(eDP,
others => Disabled);
end GMA.Mainboard;