diff options
author | Jayvik Desai <jayvik@google.com> | 2024-08-09 10:46:50 +0530 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-08-13 14:40:50 +0000 |
commit | 95d03996d9f622fe27bbcd711832d1184fc9a55b (patch) | |
tree | 5c3672dc05ad3bb909d86f40f76cb831b402d4f0 | |
parent | a0dbf25a22523368ebbb4ad162d7a65ea9889533 (diff) |
soc/intel/adl: update libgfx config to a generic eSOL config
This patch updates the early libgfx init config
(MAINBOARD_HAS_EARLY_LIBGFXINIT) used for Alder Lake SoC with a
generic CrOS/ChromeOS early sign of life config (CHROMEOS_ENABLE_ESOL)
This patch does not change the binary or the system behaviour and is
only meant to bind the early GFX initialization with a generic eSOL
config.
BUG=b:352651132
TEST=Able to build google/tivviks and checked the config in output
Change-Id: Ibc1b9190ac0e4d25f3c5517d74c9b519bc3bb349
Signed-off-by: Jayvik Desai <jayvik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83841
Reviewed-by: Dinesh Gehlot <digehlot@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
-rw-r--r-- | src/soc/intel/alderlake/romstage/ux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/alderlake/romstage/ux.c b/src/soc/intel/alderlake/romstage/ux.c index 77439abe11..0fb73c188d 100644 --- a/src/soc/intel/alderlake/romstage/ux.c +++ b/src/soc/intel/alderlake/romstage/ux.c @@ -14,7 +14,7 @@ bool ux_inform_user_of_update_operation(const char *name) { timestamp_add_now(TS_ESOL_START); - if (!CONFIG(MAINBOARD_HAS_EARLY_LIBGFXINIT) || + if (!CONFIG(CHROMEOS_ENABLE_ESOL) || !early_graphics_init()) { timestamp_add_now(TS_ESOL_END); return false; |