aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/intel/fsp2_0/notify.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/intel/fsp2_0/notify.c')
-rw-r--r--src/drivers/intel/fsp2_0/notify.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/drivers/intel/fsp2_0/notify.c b/src/drivers/intel/fsp2_0/notify.c
index 820bd4540e..d9de02235e 100644
--- a/src/drivers/intel/fsp2_0/notify.c
+++ b/src/drivers/intel/fsp2_0/notify.c
@@ -15,6 +15,7 @@
#include <fsp/api.h>
#include <fsp/util.h>
#include <string.h>
+#include <timestamp.h>
struct fsp_notify_params {
enum fsp_notify_phase phase;
@@ -25,6 +26,7 @@ typedef asmlinkage enum fsp_status (*fsp_notify_fn)
enum fsp_status fsp_notify(enum fsp_notify_phase phase)
{
+ enum fsp_status ret;
fsp_notify_fn fspnotify;
struct fsp_notify_params notify_params = { .phase = phase };
@@ -36,5 +38,17 @@ enum fsp_status fsp_notify(enum fsp_notify_phase phase)
printk(BIOS_DEBUG, "FspNotify %x\n", (uint32_t) phase);
- return fspnotify(&notify_params);
+ if (phase == AFTER_PCI_ENUM)
+ timestamp_add_now(TS_FSP_BEFORE_ENUMERATE);
+ else if (phase == READY_TO_BOOT)
+ timestamp_add_now(TS_FSP_BEFORE_FINALIZE);
+
+ ret = fspnotify(&notify_params);
+
+ if (phase == AFTER_PCI_ENUM)
+ timestamp_add_now(TS_FSP_AFTER_ENUMERATE);
+ else if (phase == READY_TO_BOOT)
+ timestamp_add_now(TS_FSP_AFTER_FINALIZE);
+
+ return ret;
}