From 3eabe6e9ec471125ab7f33eff91ad3069960c83d Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Sun, 24 Jul 2016 19:22:17 -0700 Subject: drivers/uart: Enable debug serial output during postcar Build the UART drivers for the postcar stage. TEST=Build and run on Galileo Gen2 Change-Id: I8bf51135ab7e62fa4bc3e8d45583f2feac56942f Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/15843 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/drivers/uart/Makefile.inc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/drivers/uart') diff --git a/src/drivers/uart/Makefile.inc b/src/drivers/uart/Makefile.inc index 4b2aa53507..a39cbefed1 100644 --- a/src/drivers/uart/Makefile.inc +++ b/src/drivers/uart/Makefile.inc @@ -1,6 +1,7 @@ ifeq ($(CONFIG_DRIVERS_UART),y) romstage-y += util.c +postcar-y += util.c ramstage-y += util.c bootblock-y += util.c verstage-y += util.c @@ -13,6 +14,7 @@ ifeq ($(CONFIG_DRIVERS_UART_8250IO),y) bootblock-y += uart8250io.c verstage-y += uart8250io.c romstage-y += uart8250io.c +postcar-y += uart8250io.c ramstage-y += uart8250io.c smm-$(CONFIG_DEBUG_SMI) += uart8250io.c endif @@ -21,18 +23,21 @@ ifeq ($(CONFIG_DRIVERS_UART_8250MEM),y) bootblock-y += uart8250mem.c verstage-y += uart8250mem.c romstage-y += uart8250mem.c +postcar-y += uart8250mem.c ramstage-y += uart8250mem.c smm-$(CONFIG_DEBUG_SMI) += uart8250mem.c endif ifeq ($(CONFIG_DRIVERS_UART_OXPCIE),y) ramstage-y += oxpcie_early.c oxpcie.c +postcar-y += oxpcie_early.c romstage-y += oxpcie_early.c endif ifeq ($(CONFIG_DRIVERS_UART_PL011),y) bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += pl011.c romstage-y += pl011.c +postcar-y += pl011.c ramstage-y += pl011.c endif -- cgit v1.2.3