Author: oxygene
Date: 2008-06-29 08:41:12 +0200 (Sun, 29 Jun 2008)
New Revision: 3396

Modified:
   trunk/coreboot-v2/src/arch/i386/boot/coreboot_table.c
   trunk/coreboot-v2/src/include/boot/coreboot_tables.h
Log:
Adds a field to the serial port descriptor about the configured line speed.

Signed-Off-By: Patrick Georgi <[EMAIL PROTECTED]>
Acked-by: Stefan Reinauer <[EMAIL PROTECTED]>


Modified: trunk/coreboot-v2/src/arch/i386/boot/coreboot_table.c
===================================================================
--- trunk/coreboot-v2/src/arch/i386/boot/coreboot_table.c       2008-06-29 
01:30:41 UTC (rev 3395)
+++ trunk/coreboot-v2/src/arch/i386/boot/coreboot_table.c       2008-06-29 
06:41:12 UTC (rev 3396)
@@ -84,6 +84,7 @@
        serial->tag = LB_TAG_SERIAL;
        serial->size = sizeof(*serial);
        serial->ioport = TTYS0_BASE;
+       serial->baud = TTYS0_BAUD;
        return serial;
 #else
        return header;

Modified: trunk/coreboot-v2/src/include/boot/coreboot_tables.h
===================================================================
--- trunk/coreboot-v2/src/include/boot/coreboot_tables.h        2008-06-29 
01:30:41 UTC (rev 3395)
+++ trunk/coreboot-v2/src/include/boot/coreboot_tables.h        2008-06-29 
06:41:12 UTC (rev 3396)
@@ -145,6 +145,7 @@
        uint32_t tag;
        uint32_t size;
        uint16_t ioport;
+       uint32_t baud;
 };
 
 #define LB_TAG_CONSOLE         0x0010


-- 
coreboot mailing list
[email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to