diff options
Diffstat (limited to 'arch/x86/cpu/coreboot/coreboot.c')
| -rw-r--r-- | arch/x86/cpu/coreboot/coreboot.c | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/arch/x86/cpu/coreboot/coreboot.c b/arch/x86/cpu/coreboot/coreboot.c index f8e28f0c8..14cb6994c 100644 --- a/arch/x86/cpu/coreboot/coreboot.c +++ b/arch/x86/cpu/coreboot/coreboot.c @@ -26,6 +26,7 @@  #include <asm/u-boot-x86.h>  #include <flash.h>  #include <netdev.h> +#include <ns16550.h>  #include <asm/msr.h>  #include <asm/cache.h>  #include <asm/io.h> @@ -90,6 +91,9 @@ void show_boot_progress(int val)  int last_stage_init(void)  { +	if (gd->flags & GD_FLG_COLD_BOOT) +		timestamp_add_to_bootstage(); +  	return 0;  } @@ -135,3 +139,12 @@ int board_final_cleanup(void)  	return 0;  } + +void panic_puts(const char *str) +{ +	NS16550_t port = (NS16550_t)0x3f8; + +	NS16550_init(port, 1); +	while (*str) +		NS16550_putc(port, *str++); +} |