X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fconsole%2Fconsole.c;h=8f60f04d4caebcadcb95a5991cf42f94ba28b75a;hb=1078c67af1228a556b1c5c182e8616271f6b7919;hp=327ad19017a5340b0f43e820051d418918bdf7c9;hpb=0c781b2694b2c137d9761704954ea38be5ba8a15;p=coreboot.git diff --git a/src/console/console.c b/src/console/console.c index 327ad1901..8f60f04d4 100644 --- a/src/console/console.c +++ b/src/console/console.c @@ -1,24 +1,38 @@ /* - * Bootstrap code for the INTEL + * This file is part of the coreboot project. + * + * Copyright (C) 2003 Eric Biederman + * + * 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 #include #include +#include #ifndef __PRE_RAM__ -#include #include #include - /* initialize the console */ void console_init(void) { struct console_driver *driver; if(get_option(&console_loglevel, "debug_level")) console_loglevel=CONFIG_DEFAULT_CONSOLE_LOGLEVEL; - + for(driver = console_drivers; driver < econsole_drivers; driver++) { if (!driver->init) continue; @@ -26,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); } } @@ -73,33 +87,27 @@ int console_tst_byte(void) return 0; } -/* - * Write POST information - */ -void post_code(u8 value) -{ -#if !defined(CONFIG_NO_POST) || CONFIG_NO_POST==0 -#if CONFIG_SERIAL_POST==1 - printk(BIOS_EMERG, "POST: 0x%02x\n", value); -#endif - outb(value, 0x80); -#endif -} - -/* Report a fatal error */ -void __attribute__((noreturn)) die(const char *msg) -{ - printk(BIOS_EMERG, "%s", msg); - //post_code(0xff); - for (;;) - hlt(); /* Halt */ -} - -#else +#else // __PRE_RAM__ ^^^ NOT defined vvv defined void console_init(void) { - static const char console_test[] = +#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-" COREBOOT_VERSION COREBOOT_EXTRA_VERSION @@ -108,24 +116,4 @@ void console_init(void) " starting...\n"; print_info(console_test); } - -void post_code(u8 value) -{ -#if !defined(CONFIG_NO_POST) || CONFIG_NO_POST==0 -#if CONFIG_SERIAL_POST==1 - print_emerg("POST: 0x"); - print_emerg_hex8(value); - print_emerg("\n"); -#endif - outb(value, 0x80); -#endif -} - -void die(const char *str) -{ - print_emerg(str); - do { - hlt(); - } while(1); -} #endif