Fix usb debug dongle support
[coreboot.git] / src / console / console.c
index 78823afdb55e4e98a843d67a72dca4a942274b20..325170d0608f783b74982ba328880ad5f107823b 100644 (file)
@@ -1,14 +1,42 @@
 /*
- * 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 <arch/io.h>
 #include <console/console.h>
-#include <string.h>
-#include <pc80/mc146818rtc.h>
+#include <build.h>
+#include <arch/hlt.h>
+#include <arch/io.h>
+
+#if CONFIG_CONSOLE_SERIAL8250 || CONFIG_CONSOLE_SERIAL8250MEM
+#include <uart8250.h>
+#endif
 
+#if CONFIG_CONSOLE_NE2K
+#include <console/ne2k.h>
+#endif
+
+#if CONFIG_USBDEBUG
+#include <usbdebug.h>
+#endif
 
-static int initialized;
+#ifndef __PRE_RAM__
+#include <string.h>
+#include <pc80/mc146818rtc.h>
 
 /* initialize the console */
 void console_init(void)
@@ -16,13 +44,12 @@ 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;
                driver->init();
        }
-       initialized = 1;
 }
 
 static void __console_tx_byte(unsigned char byte)
@@ -37,7 +64,7 @@ void console_tx_flush(void)
 {
        struct console_driver *driver;
        for(driver = console_drivers; driver < econsole_drivers; driver++) {
-               if (!driver->tx_flush) 
+               if (!driver->tx_flush)
                        continue;
                driver->tx_flush();
        }
@@ -45,8 +72,6 @@ void console_tx_flush(void)
 
 void console_tx_byte(unsigned char byte)
 {
-       if (!initialized)
-               return;
        if (byte == '\n')
                __console_tx_byte('\r');
        __console_tx_byte(byte);
@@ -55,8 +80,6 @@ void console_tx_byte(unsigned char byte)
 unsigned char console_rx_byte(void)
 {
        struct console_driver *driver;
-       if (!initialized)
-               return 0;
        for(driver = console_drivers; driver < econsole_drivers; driver++) {
                if (driver->tst_byte)
                        break;
@@ -70,31 +93,36 @@ unsigned char console_rx_byte(void)
 int console_tst_byte(void)
 {
        struct console_driver *driver;
-       if (!initialized)
-               return 0;
        for(driver = console_drivers; driver < econsole_drivers; driver++)
                if (driver->tst_byte)
                        return driver->tst_byte();
        return 0;
 }
 
-/*
- *    Write POST information
- */
-void post_code(uint8_t value)
+#else
+
+void console_init(void)
 {
-#if !defined(CONFIG_NO_POST) || CONFIG_NO_POST==0
-#if CONFIG_SERIAL_POST==1
-       printk_emerg("POST: 0x%02x\n", value);
+#if CONFIG_USBDEBUG
+       enable_usbdebug(CONFIG_USBDEBUG_DEFAULT_PORT);
+       early_usbdebug_init();
 #endif
-       outb(value, 0x80);
+#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
+       static const char console_test[] =
+               "\n\ncoreboot-"
+               COREBOOT_VERSION
+               COREBOOT_EXTRA_VERSION
+               " "
+               COREBOOT_BUILD
+               " starting...\n";
+       print_info(console_test);
 }
-
-/* Report a fatal error */
-void __attribute__((noreturn)) die(const char *msg)
-{
-       printk_emerg("%s", msg);
-       post_code(0xff);
-       while (1);              /* Halt */
-}
+#endif