soc/amd/picasso: move UART console code to common folder

Change-Id: Ibc9a4c05bdfc7cd3cd0eada67563386c95d2b50e
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48515
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
This commit is contained in:
Felix Held 2020-12-09 21:37:44 +01:00
parent 6f8f9c969b
commit d3e977112a
3 changed files with 15 additions and 5 deletions

View File

@ -0,0 +1,15 @@
ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_UART),y)
bootblock-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c
romstage-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c
verstage_x86-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c
ramstage-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c
ifeq ($(CONFIG_DEBUG_SMI),y)
smm-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c
endif
endif # CONFIG_SOC_AMD_COMMON_BLOCK_UART

View File

@ -17,7 +17,6 @@ bootblock-y += bootblock.c
bootblock-y += early_fch.c bootblock-y += early_fch.c
bootblock-y += i2c.c bootblock-y += i2c.c
bootblock-y += uart.c bootblock-y += uart.c
bootblock-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c
bootblock-y += gpio.c bootblock-y += gpio.c
bootblock-y += reset.c bootblock-y += reset.c
@ -27,14 +26,12 @@ romstage-y += gpio.c
romstage-y += reset.c romstage-y += reset.c
romstage-y += memmap.c romstage-y += memmap.c
romstage-y += uart.c romstage-y += uart.c
romstage-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c
romstage-y += psp.c romstage-y += psp.c
romstage-y += mrc_cache.c romstage-y += mrc_cache.c
verstage-y += i2c.c verstage-y += i2c.c
verstage_x86-y += gpio.c verstage_x86-y += gpio.c
verstage_x86-y += uart.c verstage_x86-y += uart.c
verstage_x86-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c
verstage_x86-y += reset.c verstage_x86-y += reset.c
ramstage-y += i2c.c ramstage-y += i2c.c
@ -53,7 +50,6 @@ ramstage-y += sata.c
ramstage-y += memmap.c ramstage-y += memmap.c
ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c
ramstage-y += uart.c ramstage-y += uart.c
ramstage-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c
ramstage-y += finalize.c ramstage-y += finalize.c
ramstage-y += soc_util.c ramstage-y += soc_util.c
ramstage-y += psp.c ramstage-y += psp.c
@ -67,7 +63,6 @@ ramstage-y += dmi.c
smm-y += smihandler.c smm-y += smihandler.c
ifeq ($(CONFIG_DEBUG_SMI),y) ifeq ($(CONFIG_DEBUG_SMI),y)
smm-y += uart.c smm-y += uart.c
smm-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c
endif endif
smm-y += gpio.c smm-y += gpio.c
smm-y += psp.c smm-y += psp.c