Benjamin Doron has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/81072?usp=email )
Change subject: soc/amd/genoa_poc: Fix DEBUG_SMI compilation error ......................................................................
soc/amd/genoa_poc: Fix DEBUG_SMI compilation error
When DEBUG_SMI is selected, common code may use these helpers to handle addressing and initialising the SoC-specific UART.
Change-Id: If7c6f2346d5f9ffb371d51d1de6f0b695acedf10 Signed-off-by: Benjamin Doron benjamin.doron@9elements.com --- M src/soc/amd/genoa_poc/Makefile.mk 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/72/81072/1
diff --git a/src/soc/amd/genoa_poc/Makefile.mk b/src/soc/amd/genoa_poc/Makefile.mk index 01bbe7b..94cee34 100644 --- a/src/soc/amd/genoa_poc/Makefile.mk +++ b/src/soc/amd/genoa_poc/Makefile.mk @@ -22,6 +22,7 @@ ramstage-y += mca.c
smm-y += smihandler.c +smm-$(CONFIG_DEBUG_SMI) += uart.c
CPPFLAGS_common += -I$(src)/soc/amd/genoa_poc/acpi CPPFLAGS_common += -I$(src)/soc/amd/genoa_poc/include