diff --git a/src/security/intel/txt/common.c b/src/security/intel/txt/common.c index 18dbe06b1d..61ff0eb5eb 100644 --- a/src/security/intel/txt/common.c +++ b/src/security/intel/txt/common.c @@ -16,6 +16,9 @@ #if CONFIG(SOC_INTEL_COMMON_BLOCK_SA) #include #else +#if CONFIG(SOUTHBRIDGE_INTEL_COMMON_ME) +#include +#endif #include #endif @@ -29,6 +32,9 @@ static void __noreturn txt_reset_platform(void) #if CONFIG(SOC_INTEL_COMMON_BLOCK_SA) global_reset(); #else +#if CONFIG(SOUTHBRIDGE_INTEL_COMMON_ME) + set_global_reset(1); +#endif full_reset(); #endif }