Get rid of all but one (I/O mapped) UART init functions.
authorStefan Reinauer <stefan.reinauer@coreboot.org>
Fri, 22 Apr 2011 02:17:26 +0000 (02:17 +0000)
committerStefan Reinauer <stepan@openbios.org>
Fri, 22 Apr 2011 02:17:26 +0000 (02:17 +0000)
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6539 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/console/uart8250_console.c
src/lib/uart8250.c

index 03db400319f89c30ffd3f2bef4d90ebaceb23806..4799ca66e56d077719e2a265a2cc13905edc5fad 100644 (file)
 
 static void ttyS0_init(void)
 {
-       static const unsigned char div[8] = { 1, 2, 3, 6, 12, 24, 48, 96 };
-       int b_index = 0;
-       /* TODO the divisor calculation is hard coded to standard UARTs. Some
-        * UARTs won't work with these values. This should be a property of the
-        * UART used, worst case a Kconfig variable. For now live with hard
-        * codes as the only devices that might be different are the iWave
-        * iRainbowG6 and the OXPCIe952 card (and the latter is memory mapped)
-        */
-       unsigned int divisor = 115200 / CONFIG_TTYS0_BAUD;
-
-       if (get_option(&b_index, "baud_rate") == 0) {
-               divisor = div[b_index];
-       }
-       uart8250_init(CONFIG_TTYS0_BASE, divisor);
+       uart_init();
 }
 
 static void ttyS0_tx_byte(unsigned char data)
index e7a75017a95fa570b8150fff81a309000b93cbbc..cea400eddc7a88b07f8df82ceed984b0e38d176a 100644 (file)
@@ -85,7 +85,6 @@ void uart8250_init(unsigned base_port, unsigned divisor)
        outb(CONFIG_TTYS0_LCS, base_port + UART_LCR);
 }
 
-#if defined(__PRE_RAM__) || defined(__SMM__)
 void uart_init(void)
 {
        /* TODO the divisor calculation is hard coded to standard UARTs. Some
@@ -94,16 +93,21 @@ void uart_init(void)
         * codes as the only devices that might be different are the iWave
         * iRainbowG6 and the OXPCIe952 card (and the latter is memory mapped)
         */
-#if CONFIG_USE_OPTION_TABLE && !defined(__SMM__)
-        static const unsigned char divisor[] = { 1, 2, 3, 6, 12, 24, 48, 96 };
-        unsigned ttys0_div, ttys0_index;
-        ttys0_index = read_option(CMOS_VSTART_baud_rate, CMOS_VLEN_baud_rate, 0);
-        ttys0_index &= 7;
-        ttys0_div = divisor[ttys0_index];
-
-       uart8250_init(CONFIG_TTYS0_BASE, ttys0_div);
+       unsigned int div = (115200 / CONFIG_TTYS0_BAUD);
+
+#if !defined(__SMM__) && CONFIG_USE_OPTION_TABLE
+       static const unsigned char divisor[8] = { 1, 2, 3, 6, 12, 24, 48, 96 };
+       unsigned b_index = 0;
+#if defined(__PRE_RAM__)
+       b_index = read_option(CMOS_VSTART_baud_rate, CMOS_VLEN_baud_rate, 0);
+       b_index &= 7;
+       div = divisor[ttys0_index];
 #else
-       uart8250_init(CONFIG_TTYS0_BASE, (115200 / CONFIG_TTYS0_BAUD));
+       if (get_option(&b_index, "baud_rate") == 0) {
+               div = divisor[b_index];
+       }
 #endif
-}
 #endif
+
+       uart8250_init(CONFIG_TTYS0_BASE, div);
+}