diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2008-01-25 18:28:18 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2008-01-25 18:28:18 +0000 |
commit | 8c2a0c144557331ec04a9ab0617e31222011cda6 (patch) | |
tree | b2f5bec67a116afe5485c465a888fbab302730eb /src/include | |
parent | 1a6177b7204b0a40555486274b8219993304ba42 (diff) |
This patch adds a new record type for lbtable to provide information
about a serial port. If a port is defined in the board configuration,
add it to lbtable.
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3076 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/boot/coreboot_tables.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/include/boot/coreboot_tables.h b/src/include/boot/coreboot_tables.h index 84bd99f515..25a8adcf6b 100644 --- a/src/include/boot/coreboot_tables.h +++ b/src/include/boot/coreboot_tables.h @@ -138,6 +138,13 @@ struct lb_string { uint8_t string[0]; }; +#define LB_TAG_SERIAL 0x000f +struct lb_serial { + uint32_t tag; + uint32_t size; + uint16_t ioport; +}; + /* The following structures are for the cmos definitions table */ #define LB_TAG_CMOS_OPTION_TABLE 200 /* cmos header record */ |