diff options
author | Fred Reitberger <reitbergerfred@gmail.com> | 2023-02-01 16:00:54 -0500 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-02-09 10:01:20 +0000 |
commit | a02176debb88a6e838c3b5f888010ae138b79127 (patch) | |
tree | 3b2df0135653dc16ca2a20e1d5d758d258159f60 /src/console/Kconfig | |
parent | d7b7460d6e8a9fbd32c41e91a9d00dc536953310 (diff) |
console: Add SimNow console logging
The AMD SimNow tool supports fast logging through an IO port. Add a new
console to support SimNow logging through port 80.
TEST=observe significant speed improvements on SimNow console log
Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com>
Change-Id: I42a431f48ea14ba4adacbd4a32e15abe7c5e4951
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72751
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/console/Kconfig')
-rw-r--r-- | src/console/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/console/Kconfig b/src/console/Kconfig index c6aec18b09..721cc60e2b 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -367,6 +367,14 @@ config CONSOLE_SYSTEM76_EC help Send coreboot debug output to a System76 embedded controller. +config CONSOLE_AMD_SIMNOW + bool "AMD SimNow console output" + default n + depends on SOC_AMD_COMMON && !POST_IO + select CONSOLE_POST + help + Send coreboot debug output to IO ports for SimNow + config CONSOLE_OVERRIDE_LOGLEVEL bool help |