Michał Żygowski has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/59640 )
Change subject: security/intel/txt/Kconfig:: Add dependency on SOUTHBRIDGE_INTEL_COMMON_ME ......................................................................
security/intel/txt/Kconfig:: Add dependency on SOUTHBRIDGE_INTEL_COMMON_ME
Add optional dependency on SOUTHBRIDGE_INTEL_COMMON_ME in order to ensure that a global reset implementation is provided by at least one of: SOUTHBRIDGE_INTEL_COMMON_ME or SOC_INTEL_COMMON_BLOCK_SA. Also separate HAVE_CF9_RESET dependency since the TXT driver code relies on it too. Now the dependiences ensure that all reset types are available.
Signed-off-by: Michał Żygowski michal.zygowski@3mdeb.com Change-Id: I8a4b5404d609006672bf41d81c696a47e078a1d2 --- M src/security/intel/txt/Kconfig 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/40/59640/1
diff --git a/src/security/intel/txt/Kconfig b/src/security/intel/txt/Kconfig index 6d23583..555a680 100644 --- a/src/security/intel/txt/Kconfig +++ b/src/security/intel/txt/Kconfig @@ -10,7 +10,8 @@ depends on TPM depends on CPU_INTEL_FIRMWARE_INTERFACE_TABLE depends on PLATFORM_HAS_DRAM_CLEAR - depends on (SOC_INTEL_COMMON_BLOCK_SA || HAVE_CF9_RESET) + depends on HAVE_CF9_RESET + depends on (SOC_INTEL_COMMON_BLOCK_SA || SOUTHBRIDGE_INTEL_COMMON_ME)
if INTEL_TXT