summaryrefslogtreecommitdiff
path: root/src/drivers/intel/fsp1_0/Makefile.inc
diff options
context:
space:
mode:
authorBen Gardner <gardner.ben@gmail.com>2016-02-08 12:18:09 -0600
committerMartin Roth <martinroth@google.com>2016-02-10 16:27:12 +0100
commita3e4833e5d30a904319811f420a7896675bfb12b (patch)
tree0e9af0b6d356d926a9933f5f546a7f39f97f18ce /src/drivers/intel/fsp1_0/Makefile.inc
parentb19425b46b0eb24e9b9cd6403d1fbeb68615b66e (diff)
downloadcoreboot-a3e4833e5d30a904319811f420a7896675bfb12b.tar.xz
intel/fsp1_0: Allow the MRC cache to live in a FMAP region
The new option CONFIG_MRC_CACHE_FMAP will cause fastboot_cache.c to look in the FMAP for a region named "RW_MRC_CACHE" and prevents adding a CBFS file named "mrc.cache". Tested on a fsp_baytail-based board. Change-Id: I248f469c7e3447ac4ec7be32229fbb5584cfd2ed Signed-off-by: Ben Gardner <gardner.ben@gmail.com> Reviewed-on: https://review.coreboot.org/13632 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: York Yang <york.yang@intel.com>
Diffstat (limited to 'src/drivers/intel/fsp1_0/Makefile.inc')
-rw-r--r--src/drivers/intel/fsp1_0/Makefile.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/intel/fsp1_0/Makefile.inc b/src/drivers/intel/fsp1_0/Makefile.inc
index 2c972b4ede..ea8f61e95a 100644
--- a/src/drivers/intel/fsp1_0/Makefile.inc
+++ b/src/drivers/intel/fsp1_0/Makefile.inc
@@ -31,6 +31,7 @@ fsp.bin-type := fsp
endif
ifeq ($(CONFIG_ENABLE_MRC_CACHE),y)
+ifneq ($(CONFIG_MRC_CACHE_FMAP),y)
$(obj)/mrc.cache:
dd if=/dev/zero count=1 \
bs=$(shell printf "%d" $(CONFIG_MRC_CACHE_SIZE) ) | \
@@ -41,4 +42,5 @@ mrc.cache-file := $(obj)/mrc.cache
mrc.cache-align := 0x10000
mrc.cache-type := mrc_cache
endif
+endif