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>
This commit is contained in:
Vadim Bendebury
2011-09-23 09:56:11 -07:00
committed by Stefan Reinauer
parent b93f74bb07
commit 2e43867a20
2 changed files with 29 additions and 4 deletions

View File

@@ -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 */