aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/cannonlake/bootblock
diff options
context:
space:
mode:
authorLijian Zhao <lijian.zhao@intel.com>2018-11-28 16:02:55 -0800
committerPatrick Georgi <pgeorgi@google.com>2018-12-03 13:05:29 +0000
commitd6c3cd8ca37113e80620603900d9be0d0bbd7813 (patch)
treefba87dd1fff941be7b9eacc9cdc0ef9f121dea9e /src/soc/intel/cannonlake/bootblock
parente6f7c8e8cdb8da6fffc5b34d05d12a2870072765 (diff)
soc/intel/cannonlake: Load FSP teardown optionally
Make build still pass in case of no FsptUpd.h available. BUG=N/A TEST=Delete FsptUpd.h and build pass wihtout FSP_CAR set. Change-Id: I3936d3deb8b079bd4db11e444f6bb7f9605520dc Signed-off-by: Lijian Zhao <lijian.zhao@intel.com> Reviewed-on: https://review.coreboot.org/c/29907 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Diffstat (limited to 'src/soc/intel/cannonlake/bootblock')
-rw-r--r--src/soc/intel/cannonlake/bootblock/bootblock.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/intel/cannonlake/bootblock/bootblock.c b/src/soc/intel/cannonlake/bootblock/bootblock.c
index 4eeef59e4d..b7d00cd063 100644
--- a/src/soc/intel/cannonlake/bootblock/bootblock.c
+++ b/src/soc/intel/cannonlake/bootblock/bootblock.c
@@ -19,6 +19,8 @@
#include <soc/bootblock.h>
#include <soc/iomap.h>
#include <soc/pch.h>
+
+#if IS_ENABLED(CONFIG_FSP_CAR)
#include <FsptUpd.h>
const FSPT_UPD temp_ram_init_params = {
@@ -37,6 +39,7 @@ const FSPT_UPD temp_ram_init_params = {
.CodeRegionSize = (uint32_t)CONFIG_ROM_SIZE,
},
};
+#endif
asmlinkage void bootblock_c_entry(uint64_t base_timestamp)
{