Paul Menzel (paulepanter@users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17701
-gerrit
commit d1e7a67dcc163b8e78371eea9c5c65cd19d9d7be Author: Paul Menzel paulepanter@users.sourceforge.net Date: Sun Jun 7 11:22:04 2015 +0200
include/timestamp.h: Add time stamps `START_TIMER_INIT` and `END_TIMER_INIT`
Change-Id: If8ba5e3663048fbccba04cef794e20e99a2a40d3 Signed-off-by: Paul Menzel paulepanter@users.sourceforge.net --- src/commonlib/include/commonlib/timestamp_serialized.h | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/src/commonlib/include/commonlib/timestamp_serialized.h b/src/commonlib/include/commonlib/timestamp_serialized.h index 29f5e0d..0090bb8 100644 --- a/src/commonlib/include/commonlib/timestamp_serialized.h +++ b/src/commonlib/include/commonlib/timestamp_serialized.h @@ -59,6 +59,8 @@ enum timestamp_id { TS_LOAD_PAYLOAD = 90, TS_ACPI_WAKE_JUMP = 98, TS_SELFBOOT_JUMP = 99, + TS_START_TIMER_INIT = 120, + TS_END_TIMER_INIT = 121,
/* 500+ reserved for vendorcode extensions (500-600: google/chromeos) */ TS_START_COPYVER = 501, @@ -144,6 +146,8 @@ static const struct timestamp_id_to_name { { TS_LOAD_PAYLOAD, "load payload" }, { TS_ACPI_WAKE_JUMP, "ACPI wake jump" }, { TS_SELFBOOT_JUMP, "selfboot jump" }, + { TS_START_TIMER_INIT, "starting timer init" }, + { TS_END_TIMER_INIT, "finished timer init" },
{ TS_START_COPYVER, "starting to load verstage" }, { TS_END_COPYVER, "finished loading verstage" },