aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKarthikeyan Ramasubramanian <kramasub@google.com>2024-05-03 16:58:18 -0600
committerFelix Held <felix-coreboot@felixheld.de>2024-05-08 11:54:54 +0000
commitb816b186f094a117c5aed743176db5a92033b440 (patch)
tree0bd89e4a8f3e0ddc6b3c805e6d7536a7e1a9fd0c /src
parent837060d4fce66b977640737985c54fac6b7e1aa7 (diff)
commonlib/timestamp_serialized: Define VB_AUXFW_SYNC_DONE timestamp
Define a new timestamp to identify the completion of Auxiliary Firmware Sync. Without that, it gets accounted into a different timestamp ID in a misleading way. BUG=None TEST=Build Brox BIOS image and boot to OS. Confirm the timestamp is recorded in cbmem. Change-Id: Icd01c68a5848e2aed7bbdcc794987bc780e78dab Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/82230 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-by: Shelley Chen <shchen@google.com>
Diffstat (limited to 'src')
-rw-r--r--src/commonlib/include/commonlib/timestamp_serialized.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commonlib/include/commonlib/timestamp_serialized.h b/src/commonlib/include/commonlib/timestamp_serialized.h
index fc7dba8a8a..d34c8ae700 100644
--- a/src/commonlib/include/commonlib/timestamp_serialized.h
+++ b/src/commonlib/include/commonlib/timestamp_serialized.h
@@ -165,6 +165,7 @@ enum timestamp_id {
TS_VB_EC_VBOOT_DONE = 1030,
TS_VB_STORAGE_INIT_DONE = 1040,
TS_VB_READ_KERNEL_DONE = 1050,
+ TS_VB_AUXFW_SYNC_DONE = 1060,
TS_VB_VBOOT_DONE = 1100,
TS_KERNEL_START = 1101,
@@ -358,6 +359,7 @@ static const struct timestamp_id_to_name {
TS_NAME_DEF(TS_VB_EC_VBOOT_DONE, 0, "finished EC verification"),
TS_NAME_DEF(TS_VB_STORAGE_INIT_DONE, 0, "finished storage device initialization"),
TS_NAME_DEF(TS_VB_READ_KERNEL_DONE, 0, "finished reading kernel from disk"),
+ TS_NAME_DEF(TS_VB_AUXFW_SYNC_DONE, 0, "finished AuxFW Sync"),
TS_NAME_DEF(TS_VB_VBOOT_DONE, 0, "finished vboot kernel verification"),
TS_NAME_DEF(TS_KERNEL_START, 0, "jumping to kernel"),