Existing code compiled serial communication and printk() for SMM even when DEBUG_SMI was not selected. Change-Id: Ic5e25cd7453cb2243f7ac592b093fba752a299f7 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/5142 Tested-by: build bot (Jenkins) Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
57 lines
1.3 KiB
C
57 lines
1.3 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2008-2009 coresystems GmbH
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; version 2 of
|
|
* the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
|
|
* MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <console/console.h>
|
|
#include <console/uart.h>
|
|
|
|
#if CONFIG_DEBUG_SMI
|
|
void console_tx_flush(void)
|
|
{
|
|
}
|
|
|
|
void console_tx_byte(unsigned char byte)
|
|
{
|
|
if (byte == '\n')
|
|
console_tx_byte('\r');
|
|
|
|
#if CONFIG_CONSOLE_SERIAL8250MEM
|
|
uart_tx_byte(byte);
|
|
#endif
|
|
#if CONFIG_CONSOLE_SERIAL8250
|
|
uart_tx_byte(byte);
|
|
#endif
|
|
}
|
|
#endif
|
|
|
|
void console_init(void)
|
|
{
|
|
#if CONFIG_DEBUG_SMI
|
|
console_loglevel = CONFIG_DEFAULT_CONSOLE_LOGLEVEL;
|
|
#if CONFIG_CONSOLE_SERIAL8250
|
|
uart_init();
|
|
#endif
|
|
#if CONFIG_CONSOLE_SERIAL8250MEM
|
|
uart_init();
|
|
#endif
|
|
#endif
|
|
}
|
|
|