diff options
author | Jincheng Li <jincheng.li@intel.com> | 2023-07-04 19:40:56 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-03-01 14:22:21 +0000 |
commit | 32d3a005d2ee05f21a93d9f2ad9a4fea76ad0ab0 (patch) | |
tree | b13a7b62dd34284706453779efefceb3fe4e9304 /src | |
parent | 119fdfb0f11d7552713c9c3de8a2c7213523475f (diff) |
drivers/mrc_cache: Deselect MRC_CACHE_USING_MRC_VERSION by default
EDK2 version binding is irrelevant for MRC_CACHE_USING_MRC_VERSION
as this is SoC FSP choice to enable/disable this feature. So deselect
the option and leave it to SoC codes to enable it depending on needs.
Change-Id: I84fdcfbf3c833a7ccb259a1a1d4be0bcfe291dc3
Signed-off-by: Jincheng Li <jincheng.li@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80693
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/drivers/mrc_cache/Kconfig | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/drivers/mrc_cache/Kconfig b/src/drivers/mrc_cache/Kconfig index e12a3a50d6..afe1dc0b95 100644 --- a/src/drivers/mrc_cache/Kconfig +++ b/src/drivers/mrc_cache/Kconfig @@ -56,14 +56,12 @@ config MRC_SAVE_HASH_IN_TPM config MRC_CACHE_USING_MRC_VERSION bool - default y if UDK_VERSION >= 202302 default n help Use the MRC version info from FSP extended header to store the MRC cache data. This method relies on the FSP_PRODUCER_DATA_TABLES belongs to the `FspProducerDataHeader.h`file to get the MRC version. - Intel FSP built with EDK2 version 202302 onwards has support to retrieve the - MRC version by directly parsing the binary. + Supported platform can retrieve the MRC version by directly parsing the binary. endif # CACHE_MRC_SETTINGS |