summaryrefslogtreecommitdiffstats
path: root/src/include/boot
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2011-09-23 09:56:11 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-03-29 20:17:45 +0200
commit2e43867a20107014cba1f32137adfee8af35a05d (patch)
treeb5f6690e7d65036fe2c23fbd8ecc2b2d161d8f56 /src/include/boot
parentb93f74bb0776c9911f9b5f5d965610a76a0b31cc (diff)
downloadcoreboot-2e43867a20107014cba1f32137adfee8af35a05d.tar.gz
coreboot-2e43867a20107014cba1f32137adfee8af35a05d.tar.bz2
coreboot-2e43867a20107014cba1f32137adfee8af35a05d.zip
Add timestamp table pointer to the coreboot table.
This change exports the timestamp table pointer through coreboot table to make it possible for u-boot to add timestamps to the table. Inclusion of cbmem.h allows to drop external declarations in coreboot_table.c. Change-Id: Ia070198cee7a6ffdaeece03d9d15bd91e033b6d1 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: http://review.coreboot.org/716 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/include/boot')
-rw-r--r--src/include/boot/coreboot_tables.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/boot/coreboot_tables.h b/src/include/boot/coreboot_tables.h
index 45ba3af110e2..46d64898b47c 100644
--- a/src/include/boot/coreboot_tables.h
+++ b/src/include/boot/coreboot_tables.h
@@ -195,6 +195,14 @@ struct lb_framebuffer {
uint8_t reserved_mask_size;
};
+#define LB_TAG_TIMESTAMPS 0x0016
+struct lb_tstamp {
+ uint32_t tag;
+ uint32_t size;
+
+ void *tstamp_tab;
+};
+
/* The following structures are for the cmos definitions table */
#define LB_TAG_CMOS_OPTION_TABLE 200
/* cmos header record */