Adds a field to the serial port descriptor about the configured line speed.

Signed-Off-By: Patrick Georgi <patrick@georgi-clan.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3396 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi 2008-06-29 06:41:12 +00:00 committed by Patrick Georgi
parent 891f1a2650
commit c2e8fd42b0
2 changed files with 2 additions and 0 deletions

View File

@ -84,6 +84,7 @@ struct lb_serial *lb_serial(struct lb_header *header)
serial->tag = LB_TAG_SERIAL; serial->tag = LB_TAG_SERIAL;
serial->size = sizeof(*serial); serial->size = sizeof(*serial);
serial->ioport = TTYS0_BASE; serial->ioport = TTYS0_BASE;
serial->baud = TTYS0_BAUD;
return serial; return serial;
#else #else
return header; return header;

View File

@ -145,6 +145,7 @@ struct lb_serial {
uint32_t tag; uint32_t tag;
uint32_t size; uint32_t size;
uint16_t ioport; uint16_t ioport;
uint32_t baud;
}; };
#define LB_TAG_CONSOLE 0x0010 #define LB_TAG_CONSOLE 0x0010