Attention is currently required from: Michał Żygowski.
Hello Michał Żygowski,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/82697?usp=email
to review the following change.
Change subject: security/intel/txt: Restart APs after successful SCHECK ......................................................................
security/intel/txt: Restart APs after successful SCHECK
Change-Id: I8e013b1a75752e4f01cac7c1eb10d0430d48edf6 Signed-off-by: Michał Żygowski michal.zygowski@3mdeb.com --- M src/security/intel/txt/ramstage.c 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/97/82697/1
diff --git a/src/security/intel/txt/ramstage.c b/src/security/intel/txt/ramstage.c index 5c03da9..eca8162 100644 --- a/src/security/intel/txt/ramstage.c +++ b/src/security/intel/txt/ramstage.c @@ -6,6 +6,7 @@ #include <cbfs.h> #include <console/console.h> #include <cpu/intel/common/common.h> +#include <cpu/x86/mp.h> #include <cpu/x86/smm.h> #include <device/mmio.h> #include <device/pci_ops.h> @@ -179,6 +180,8 @@ if (intel_txt_run_bios_acm(ACMINPUT_SCHECK) < 0) { printk(BIOS_ERR, "TEE-TXT: Error calling BIOS ACM.\n"); return; + } else { + restart_aps(); } } }