diff --git a/src/include/timestamp.h b/src/include/timestamp.h index a4cfc6ab17..ff7fa464be 100644 --- a/src/include/timestamp.h +++ b/src/include/timestamp.h @@ -44,6 +44,8 @@ enum timestamp_id { TS_START_COPYRAM = 8, TS_END_COPYRAM = 9, TS_START_RAMSTAGE = 10, + TS_START_BOOTBLOCK = 11, + TS_END_BOOTBLOCK = 12, TS_DEVICE_ENUMERATE = 30, TS_DEVICE_CONFIGURE = 40, TS_DEVICE_ENABLE = 50, diff --git a/util/cbmem/cbmem.c b/util/cbmem/cbmem.c index b7aba817fa..51246f69db 100644 --- a/util/cbmem/cbmem.c +++ b/util/cbmem/cbmem.c @@ -384,6 +384,8 @@ static const struct timestamp_id_to_name { { TS_START_COPYRAM, "start of copying ram stage" }, { TS_END_COPYRAM, "end of copying ram stage" }, { TS_START_RAMSTAGE, "start of ramstage" }, + { TS_START_BOOTBLOCK, "start of bootblock" }, + { TS_END_BOOTBLOCK, "end of bootblock" }, { TS_DEVICE_ENUMERATE, "device enumeration" }, { TS_DEVICE_CONFIGURE, "device configuration" }, { TS_DEVICE_ENABLE, "device enable" },