Skip to content
Snippets Groups Projects
Commit 9087e468 authored by Simon Glass's avatar Simon Glass
Browse files

x86: fsp: Don't notify if booted from coreboot


When booting from coreboot there is no need to notify the FSP of anything,
since coreboot has already done it. Nor it is possible, since the FSP
details are not provided by coreboot.

Skip it in this case.

Signed-off-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
parent 8657989f
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@
#include <common.h>
#include <dm.h>
#include <init.h>
#include <log.h>
#include <spi_flash.h>
#include <asm/fsp/fsp_support.h>
......@@ -114,6 +115,9 @@ u32 fsp_notify(struct fsp_header *fsp_hdr, u32 phase)
struct fsp_notify_params *params_ptr;
u32 status;
if (!ll_boot_init())
return 0;
if (!fsp_hdr)
fsp_hdr = gd->arch.fsp_s_hdr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment