summaryrefslogtreecommitdiff
path: root/coreboot_tables.h
diff options
context:
space:
mode:
authorstepan <stepan@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2009-03-17 14:39:25 +0000
committerstepan <stepan@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2009-03-17 14:39:25 +0000
commitdcb87785ab607a3a8fda5095b502c6186dc4062e (patch)
treea7f21b4c1e82faf30a6dc68569d4f26aa079bca9 /coreboot_tables.h
parent2bbb5b5ee0fb37bec26b7d45c2ba75ec010f5889 (diff)
downloadflashrom-dcb87785ab607a3a8fda5095b502c6186dc4062e.tar.gz
Original v2 revision: 4012
This patch adds "high coreboot table support" to coreboot version 2. Some bootloaders seem to overwrite memory starting at 0x600, thus destroying the coreboot table integrity, rendering the table useless. By moving the table to the high tables area (if it's activated), this problem is fixed. In order to move the table, a 40 bytes mini coreboot table with a single sub table is placed at 0x500/0x530 that points to the real coreboot table. This is comparable to the ACPI RSDT or the MP floating table. This patch also adds "table forward" support to flashrom and nvramtool. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@421 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'coreboot_tables.h')
-rw-r--r--coreboot_tables.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/coreboot_tables.h b/coreboot_tables.h
index c4c2d4d..2eaff08 100644
--- a/coreboot_tables.h
+++ b/coreboot_tables.h
@@ -135,6 +135,13 @@ struct lb_string {
uint8_t string[0];
};
+#define LB_TAG_FORWARD 0x0011
+struct lb_forward {
+ uint32_t tag;
+ uint32_t size;
+ uint64_t forward;
+};
+
/* The following structures are for the cmos definitions table */
#define LB_TAG_CMOS_OPTION_TABLE 200
/* cmos header record */