[coreboot] r3396 - in trunk/coreboot-v2/src: arch/i386/boot include/boot

svn at coreboot.org svn at coreboot.org
Sun Jun 29 08:41:13 CEST 2008


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 <patrick at georgi-clan.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>


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





More information about the coreboot mailing list