summaryrefslogtreecommitdiff
path: root/src/soc/intel/alderlake/cse_telemetry.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/alderlake/cse_telemetry.c')
-rw-r--r--src/soc/intel/alderlake/cse_telemetry.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/soc/intel/alderlake/cse_telemetry.c b/src/soc/intel/alderlake/cse_telemetry.c
new file mode 100644
index 0000000000..8a92a03e56
--- /dev/null
+++ b/src/soc/intel/alderlake/cse_telemetry.c
@@ -0,0 +1,27 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#include <console/console.h>
+#include <intelblocks/cse.h>
+#include <timestamp.h>
+
+void soc_cbmem_inject_telemetry_data(s64 *ts, s64 current_time)
+{
+ s64 start_stamp;
+
+ if (!ts) {
+ printk(BIOS_ERR, "%s: Failed to insert CSME timestamps\n", __func__);
+ return;
+ }
+
+ start_stamp = current_time - ts[PERF_DATA_CSME_GET_PERF_RESPONSE];
+
+ timestamp_add(TS_ME_ROM_START, start_stamp);
+ timestamp_add(TS_ME_BOOT_STALL_END,
+ start_stamp + ts[PERF_DATA_CSME_RBE_BOOT_STALL_DONE_TO_PMC]);
+ timestamp_add(TS_ME_ICC_CONFIG_START,
+ start_stamp + ts[PERF_DATA_CSME_POLL_FOR_PMC_PPS_START]);
+ timestamp_add(TS_ME_HOST_BOOT_PREP_END,
+ start_stamp + ts[PERF_DATA_CSME_HOST_BOOT_PREP_DONE]);
+ timestamp_add(TS_ME_RECEIVED_CRDA_FROM_PMC,
+ start_stamp + ts[PERF_DATA_PMC_SENT_CRDA]);
+}