summaryrefslogtreecommitdiffstats
path: root/src/cpu/x86/Kconfig
diff options
context:
space:
mode:
authorJohnny Lin <johnny_lin@wiwynn.com>2021-01-14 17:49:08 +0800
committerDavid Hendricks <david.hendricks@gmail.com>2023-02-15 21:53:07 +0000
commit107e7aa0f58f79ee5719f82c7147e53d7d9fa218 (patch)
tree22ea35a3f0f188e2036ce1c710afdef8409c625f /src/cpu/x86/Kconfig
parente822fb358764b78e7d7d02c024ae6a285632ddf9 (diff)
downloadcoreboot-107e7aa0f58f79ee5719f82c7147e53d7d9fa218.tar.gz
coreboot-107e7aa0f58f79ee5719f82c7147e53d7d9fa218.tar.bz2
coreboot-107e7aa0f58f79ee5719f82c7147e53d7d9fa218.zip
cpu/x86/smm: Enable setting SMM console log level from mainboard
Add a Kconfig RUNTIME_CONFIGURABLE_SMM_LOGLEVEL that enables mainboard to override mainboard_set_smm_log_level for SMM log level. This can let SMM have different log level than other stages for more flexibility. Another reason is that getting certain data that requires searching from flash VPD or CMOS is not very ideal to be done in SMM, so in this change the value can be passed via the member variable in struct smm_runtime and be referenced directly in SMM. One example is that mainboard can get the desired SMM log level from VPD/CMOS, and pass SMM console log level via the variable and in SMM it can be referenced in get_console_loglevel() override function directly. Tested=On OCP Delta Lake, verified SMM log level can be overridden. Change-Id: I81722a4f1bf75ec942cc06e403ad702dfe938e71 Signed-off-by: Johnny Lin <johnny_lin@wiwynn.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49460 Reviewed-by: David Hendricks <david.hendricks@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Jonathan Zhang <jonzhang@fb.com>
Diffstat (limited to 'src/cpu/x86/Kconfig')
-rw-r--r--src/cpu/x86/Kconfig12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/cpu/x86/Kconfig b/src/cpu/x86/Kconfig
index 1a7d8c6dd6f4..edba27bd400a 100644
--- a/src/cpu/x86/Kconfig
+++ b/src/cpu/x86/Kconfig
@@ -209,4 +209,16 @@ config AP_STACK_SIZE
This is the amount of stack each AP needs. The BSP stack size can be
larger and is set with STACK_SIZE.
+config RUNTIME_CONFIGURABLE_SMM_LOGLEVEL
+ bool
+ default n
+ depends on DEBUG_SMI && CONSOLE_OVERRIDE_LOGLEVEL
+ help
+ This enables setting the SMM console log level at runtime for more
+ flexibility to use different log levels for each stage. Another reason
+ is that reading the log level from non-volatile memory such as flash
+ VPD or CMOS is not very ideal to be done in SMM, with this option the
+ value can be passed via the member variable in struct smm_runtime and
+ be referenced directly in SMM.
+
endif # ARCH_X86