cbmem: add and use a function to dump console buffer

The new function can be compiled in only when serial console is
disabled.

When invoked, this function initializes the serial interface and dumps
the contents of the CBMEM console buffer to serial output.

BRANCH=none
BUG=chromium:475347
TEST=compiled for different platforms with and without serial console
     enabled. No actual test of this function yet.

Change-Id: Ia8d16649dc9d09798fa6970f2cfd893438e00dc5
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: a38a8254dd788ad188ba2509b9ae117d6f699579
Original-Change-Id: Ib85759a2727e31ba1ca21da7e6c346e434f83b52
Original-Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/265293
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/9984
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Vadim Bendebury 2015-04-10 18:04:04 -07:00 committed by Patrick Georgi
parent 5bdbd004e6
commit 6e20e2f168
5 changed files with 31 additions and 0 deletions

View File

@ -184,6 +184,15 @@ config CONSOLE_CBMEM_BUFFER_SIZE
value (128K or 0x20000 bytes) is large enough to accommodate value (128K or 0x20000 bytes) is large enough to accommodate
even the BIOS_SPEW level. even the BIOS_SPEW level.
config CONSOLE_CBMEM_DUMP_TO_UART
depends on !CONSOLE_SERIAL
bool "Dump CBMEM console on resets"
default n
help
Enable this to have CBMEM console buffer contents dumped on the
serial output in case serial console is disabled and the device
resets itself while trying to boot the payload.
endif endif
config CONSOLE_QEMU_DEBUGCON config CONSOLE_QEMU_DEBUGCON

View File

@ -43,4 +43,5 @@ static inline void __cbmemc_init(void) {}
static inline void __cbmemc_tx_byte(u8 data) {} static inline void __cbmemc_tx_byte(u8 data) {}
#endif #endif
void cbmem_dump_console(void);
#endif #endif

View File

@ -19,6 +19,7 @@
#include <console/console.h> #include <console/console.h>
#include <console/cbmem_console.h> #include <console/cbmem_console.h>
#include <console/uart.h>
#include <cbmem.h> #include <cbmem.h>
#include <arch/early_variables.h> #include <arch/early_variables.h>
#include <symbols.h> #include <symbols.h>
@ -236,5 +237,21 @@ void cbmemc_reinit(void)
init_console_ptr(cbm_cons_p, size, flags); init_console_ptr(cbm_cons_p, size, flags);
} }
#if IS_ENABLED(CONFIG_CONSOLE_CBMEM_DUMP_TO_UART)
void cbmem_dump_console(void)
{
struct cbmem_console *cbm_cons_p;
int cursor;
cbm_cons_p = current_console();
if (!cbm_cons_p)
return;
uart_init(0);
for (cursor = 0; cursor < cbm_cons_p->buffer_cursor; cursor++)
uart_tx_byte(0, cbm_cons_p->buffer_body[cursor]);
}
#endif
/* Call cbmemc_reinit() at CAR migration time. */ /* Call cbmemc_reinit() at CAR migration time. */
CAR_MIGRATE(cbmemc_reinit) CAR_MIGRATE(cbmemc_reinit)

View File

@ -234,6 +234,8 @@ static void init_vboot(int bootmode)
#if !MOCK_TPM #if !MOCK_TPM
printk(BIOS_ERR, "TPM: Error code 0x%x. Hard reset!\n", result); printk(BIOS_ERR, "TPM: Error code 0x%x. Hard reset!\n", result);
post_code(POST_TPM_FAILURE); post_code(POST_TPM_FAILURE);
if (IS_ENABLED(CONFIG_CONSOLE_CBMEM_DUMP_TO_UART))
cbmem_dump_console();
hard_reset(); hard_reset();
#endif #endif
} }

View File

@ -130,6 +130,8 @@ void *vboot_get_payload(int *len)
void vboot_reboot(void) void vboot_reboot(void)
{ {
if (IS_ENABLED(CONFIG_CONSOLE_CBMEM_DUMP_TO_UART))
cbmem_dump_console();
hard_reset(); hard_reset();
die("failed to reboot"); die("failed to reboot");
} }