diff options
author | Martin Roth <gaumless@gmail.com> | 2014-05-19 15:30:00 -0600 |
---|---|---|
committer | Martin Roth <gaumless@gmail.com> | 2014-05-29 23:09:26 +0200 |
commit | 2a9b2ed3ff5411d0efdbde3b9ba1d1de06ab09aa (patch) | |
tree | f937c9a91f4054e1a5a7c4294c8fc94260215321 /src/drivers | |
parent | 7312c54dc684099a6d85ae13f3de097754ced0f0 (diff) | |
download | coreboot-2a9b2ed3ff5411d0efdbde3b9ba1d1de06ab09aa.tar.xz |
drivers/intel/fsp: update enable_mrc_cache with fast boot
When going from a configuration with fast boot disabled to one with
it enabled, ENABLE_MRC_CACHE was not being enabled properly. This
forces it on with ENABLE_FSP_FAST_BOOT.
Change-Id: If7b6374e0c0a1d5403a50a1b0a958cea6f96cc88
Signed-off-by: Martin Roth <gaumless@gmail.com>
Reviewed-on: http://review.coreboot.org/5794
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/drivers')
-rw-r--r-- | src/drivers/intel/fsp/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/drivers/intel/fsp/Kconfig b/src/drivers/intel/fsp/Kconfig index 3e16266049..5e4404646e 100644 --- a/src/drivers/intel/fsp/Kconfig +++ b/src/drivers/intel/fsp/Kconfig @@ -54,6 +54,7 @@ config FSP_LOC config ENABLE_FSP_FAST_BOOT bool "Enable Fast Boot" + select ENABLE_MRC_CACHE default n help Enabling this feature will force the MRC data to be cached in NV @@ -62,7 +63,7 @@ config ENABLE_FSP_FAST_BOOT config ENABLE_MRC_CACHE bool - default ENABLE_FSP_FAST_BOOT + default n help Enabling this feature will cause MRC data to be cached in NV storage. This can either be used for fast boot, or just because the FSP wants |