diff options
author | Tarun Tuli <taruntuli@google.com> | 2023-01-16 15:38:21 +0000 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2023-01-18 17:50:01 +0000 |
commit | ec8eb4947fb5349778c72776ed0c36b9c8207bae (patch) | |
tree | 447bbac8f3911954b34dab425627c613edec4a8f /src/soc/intel/alderlake | |
parent | 5c56b16533313e5d7cce213357fc22a52e14d899 (diff) |
soc/intel/alderlake: Add print that MRC training screen displayed
Add a INFO print indicating that we did infact attempt to display the
MRC training message to the user.
BUG=b:252792591
BRANCH=firmware-brya-14505.B
TEST=Print seen in cbmem -c
Signed-off-by: Tarun Tuli <taruntuli@google.com>
Change-Id: I1a20fb221aa2fa0eeaf9b7f8cf3d8a8ab0b91133
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71284
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Reviewed-by: Jérémy Compostella <jeremy.compostella@intel.com>
Diffstat (limited to 'src/soc/intel/alderlake')
-rw-r--r-- | src/soc/intel/alderlake/romstage/fsp_params.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/intel/alderlake/romstage/fsp_params.c b/src/soc/intel/alderlake/romstage/fsp_params.c index 218d3450b7..cf8899a683 100644 --- a/src/soc/intel/alderlake/romstage/fsp_params.c +++ b/src/soc/intel/alderlake/romstage/fsp_params.c @@ -369,6 +369,7 @@ static void inform_user_of_memory_training(void) !early_graphics_init()) return; + printk(BIOS_INFO, "Informing user on-display of memory training.\n"); vga_write_text(VGA_TEXT_CENTER, VGA_TEXT_HORIZONTAL_MIDDLE, "Your device is finishing an update. This may take 1-2 minutes.\nPlease do not turn off your device."); } |