X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fconsole%2Fconsole.c;h=8f60f04d4caebcadcb95a5991cf42f94ba28b75a;hb=1078c67af1228a556b1c5c182e8616271f6b7919;hp=4f11fbecf873363c1b83088f9be4fc4b46cd25f3;hpb=abc0c8551604933ca54e9eaa48c3f00e4915dc90;p=coreboot.git diff --git a/src/console/console.c b/src/console/console.c index 4f11fbecf..8f60f04d4 100644 --- a/src/console/console.c +++ b/src/console/console.c @@ -22,10 +22,6 @@ #include #include -#if CONFIG_CONSOLE_NE2K -#include -#endif - #ifndef __PRE_RAM__ #include #include @@ -44,21 +40,21 @@ void console_init(void) } } -static void __console_tx_byte(unsigned char byte) +void console_tx_flush(void) { struct console_driver *driver; for(driver = console_drivers; driver < econsole_drivers; driver++) { - driver->tx_byte(byte); + if (!driver->tx_flush) + continue; + driver->tx_flush(); } } -void console_tx_flush(void) +static void __console_tx_byte(unsigned char byte) { struct console_driver *driver; for(driver = console_drivers; driver < econsole_drivers; driver++) { - if (!driver->tx_flush) - continue; - driver->tx_flush(); + driver->tx_byte(byte); } } @@ -91,12 +87,25 @@ int console_tst_byte(void) return 0; } -#else +#else // __PRE_RAM__ ^^^ NOT defined vvv defined void console_init(void) { +#if CONFIG_USBDEBUG + enable_usbdebug(CONFIG_USBDEBUG_DEFAULT_PORT); + early_usbdebug_init(); +#endif +#if CONFIG_CONSOLE_SERIAL8250 + uart_init(); +#endif +#if CONFIG_DRIVERS_OXFORD_OXPCIE && CONFIG_CONSOLE_SERIAL8250MEM + oxford_init(); +#endif #if CONFIG_CONSOLE_NE2K ne2k_init(CONFIG_CONSOLE_NE2K_IO_PORT); +#endif +#if CONFIG_CONSOLE_CBMEM + cbmemc_init(); #endif static const char console_test[] = "\n\ncoreboot-"