summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorRocky Phagura <rphagura@fb.com>2021-04-19 11:15:35 -0700
committerNico Huber <nico.h@gmx.de>2021-05-05 09:22:28 +0000
commit1aa5194584df9385f822bbd7fcb7833a6116b84c (patch)
treed66b16a6e01c102b16ec33eccf3164300f213faf /src/cpu
parent32aabf2c093819cab841a03aefac263012f35a3c (diff)
downloadcoreboot-1aa5194584df9385f822bbd7fcb7833a6116b84c.tar.xz
src/cpu/x86/smm: remove debug message; not thread safe
This patch removes a call to console_init() and debug print message since the code is not thread safe. This prevents system hangs (soft hangs) while in SMM if user drops in a new SOC with more cores or another socket or as a result of bad configuration. Console is already initialized after the lock has been acquired so this does not affect any other functionality. Tested on DeltaLake mainboard with SMM enabled and 52 CPU threads. Change-Id: I7e8af35d1cde78b327144b6a9da528ae7870e874 Signed-off-by: Rocky Phagura <rphagura@fb.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/52518 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/x86/smm/smm_module_handler.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cpu/x86/smm/smm_module_handler.c b/src/cpu/x86/smm/smm_module_handler.c
index f7cf928f73..0c0de78b21 100644
--- a/src/cpu/x86/smm/smm_module_handler.c
+++ b/src/cpu/x86/smm/smm_module_handler.c
@@ -132,9 +132,7 @@ asmlinkage void smm_handler_start(void *arg)
gnvs = (void *)(uintptr_t)smm_runtime.gnvs_ptr;
if (cpu >= CONFIG_MAX_CPUS) {
- console_init();
- printk(BIOS_CRIT,
- "Invalid CPU number assigned in SMM stub: %d\n", cpu);
+ /* Do not log messages to console here, it is not thread safe */
return;
}