The name is more consistent with what we have elsewhere, and the callsite didn't build at all (with vboot enabled) Change-Id: I3576f3b8f737d360f68b67b6ce1683199948776d Signed-off-by: Aaron Durbin <adurbin@chromium.org> Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/10096 Tested-by: build bot (Jenkins)
65 lines
1.1 KiB
C
65 lines
1.1 KiB
C
/*
|
|
* blatantly copied from linux/kernel/printk.c
|
|
*
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
*
|
|
*/
|
|
|
|
#include <console/console.h>
|
|
#include <console/streams.h>
|
|
#include <console/vtxprintf.h>
|
|
#include <smp/spinlock.h>
|
|
#include <smp/node.h>
|
|
#include <stddef.h>
|
|
#include <trace.h>
|
|
|
|
DECLARE_SPIN_LOCK(console_lock)
|
|
|
|
void do_putchar(unsigned char byte)
|
|
{
|
|
console_tx_byte(byte);
|
|
}
|
|
|
|
static void wrap_putchar(unsigned char byte, void *data)
|
|
{
|
|
do_putchar(byte);
|
|
}
|
|
|
|
int do_printk(int msg_level, const char *fmt, ...)
|
|
{
|
|
va_list args;
|
|
int i;
|
|
|
|
if (!console_log_level(msg_level))
|
|
return 0;
|
|
|
|
#if IS_ENABLED (CONFIG_SQUELCH_EARLY_SMP) && defined(__PRE_RAM__)
|
|
if (!boot_cpu())
|
|
return 0;
|
|
#endif
|
|
|
|
DISABLE_TRACE;
|
|
spin_lock(&console_lock);
|
|
|
|
va_start(args, fmt);
|
|
i = vtxprintf(wrap_putchar, fmt, args, NULL);
|
|
va_end(args);
|
|
|
|
console_tx_flush();
|
|
|
|
spin_unlock(&console_lock);
|
|
ENABLE_TRACE;
|
|
|
|
return i;
|
|
}
|
|
|
|
#if IS_ENABLED (CONFIG_CHROMEOS)
|
|
void do_printk_va_list(int msg_level, const char *fmt, va_list args)
|
|
{
|
|
if (!console_log_level(msg_level))
|
|
return;
|
|
vtxprintf(wrap_putchar, fmt, args, NULL);
|
|
console_tx_flush();
|
|
}
|
|
#endif /* CONFIG_CHROMEOS */
|