diff options
author | Keith Hui <buurin@gmail.com> | 2023-11-21 21:37:23 -0500 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-11-27 14:39:23 +0000 |
commit | 5cf4628f4fffb9559b026f59b877f163f74b5bb2 (patch) | |
tree | d8d0ecd57aaf59356558134a3dfd545ae97d6015 /src | |
parent | 642b789e70fcd5d14338307b78d4e88785b60e0a (diff) |
mb/asus/p8z77-m: Properly configure early serial
Board was not producing serial output until well into ramstage.
To fix, select SUPERIO_NUVOTON_COMMON_COM_A Kconfig to tell
nuvoton_enable_serial() to route serial port A signals to the outside,
not GPIO8x.
TEST=Full native raminit debug log received over serial by minicom.
Change-Id: I376a79dd76ffa5f4d47e7c0cb53680e173e1ad78
Signed-off-by: Keith Hui <buurin@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79222
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/asus/p8x7x-series/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainboard/asus/p8x7x-series/Kconfig b/src/mainboard/asus/p8x7x-series/Kconfig index 277fe4084b..e278b56b3e 100644 --- a/src/mainboard/asus/p8x7x-series/Kconfig +++ b/src/mainboard/asus/p8x7x-series/Kconfig @@ -54,6 +54,7 @@ config BOARD_ASUS_P8Z77_M select BOARD_ROMSIZE_KB_8192 select MEMORY_MAPPED_TPM select SUPERIO_NUVOTON_NCT6779D + select SUPERIO_NUVOTON_COMMON_COM_A if BOARD_ASUS_P8X7X_SERIES |