diff options
author | Tim Wawrzynczak <twawrzynczak@chromium.org> | 2021-06-22 19:09:20 -0600 |
---|---|---|
committer | Tim Wawrzynczak <twawrzynczak@chromium.org> | 2021-06-30 22:20:32 +0000 |
commit | a8dac049b1cce95635c4e8c786af861f24eb2fb5 (patch) | |
tree | 04bfd2edfc7963bea3ea5ed2ed7c6f146f7b9b38 /src/commonlib/include | |
parent | 82eaa21945539dfa533097dadfb91a1563304ff9 (diff) |
commonlib: Add Intel-specific timestamps for before/after sending EOP
Change-Id: I11daebbfc44959f1e498ddac2ee7633e31a1a7d5
Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55773
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Sridhar Siricilla <sridhar.siricilla@intel.com>
Diffstat (limited to 'src/commonlib/include')
-rw-r--r-- | src/commonlib/include/commonlib/timestamp_serialized.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/commonlib/include/commonlib/timestamp_serialized.h b/src/commonlib/include/commonlib/timestamp_serialized.h index 1351afacf3..09985b784e 100644 --- a/src/commonlib/include/commonlib/timestamp_serialized.h +++ b/src/commonlib/include/commonlib/timestamp_serialized.h @@ -107,6 +107,8 @@ enum timestamp_id { /* 940-950 reserved for vendorcode extensions (940-950: Intel ME) */ TS_ME_INFORM_DRAM_WAIT = 940, TS_ME_INFORM_DRAM_DONE = 941, + TS_ME_BEFORE_END_OF_POST = 942, + TS_ME_AFTER_END_OF_POST = 943, /* 950+ reserved for vendorcode extensions (950-999: intel/fsp) */ TS_FSP_MEMORY_INIT_START = 950, @@ -255,6 +257,8 @@ static const struct timestamp_id_to_name { /* Intel ME related timestamps */ { TS_ME_INFORM_DRAM_WAIT, "waiting for ME acknowledgement of raminit"}, { TS_ME_INFORM_DRAM_DONE, "finished waiting for ME response"}, + { TS_ME_BEFORE_END_OF_POST, "before sending EOP to ME"}, + { TS_ME_AFTER_END_OF_POST, "after sending EOP to ME"}, /* FSP related timestamps */ { TS_FSP_MEMORY_INIT_START, "calling FspMemoryInit" }, |