summaryrefslogtreecommitdiff
path: root/ReferenceCode/Haswell/Library/BootGuardLib
diff options
context:
space:
mode:
authorraywu <raywu0301@gmail.com>2018-06-15 00:00:50 +0800
committerraywu <raywu0301@gmail.com>2018-06-15 00:00:50 +0800
commitb7c51c9cf4864df6aabb99a1ae843becd577237c (patch)
treeeebe9b0d0ca03062955223097e57da84dd618b9a /ReferenceCode/Haswell/Library/BootGuardLib
downloadzprj-master.tar.xz
init. 1AQQW051HEADmaster
Diffstat (limited to 'ReferenceCode/Haswell/Library/BootGuardLib')
-rw-r--r--ReferenceCode/Haswell/Library/BootGuardLib/BootGuardLib.inf64
-rw-r--r--ReferenceCode/Haswell/Library/BootGuardLib/BootGuardLibrary.c121
2 files changed, 185 insertions, 0 deletions
diff --git a/ReferenceCode/Haswell/Library/BootGuardLib/BootGuardLib.inf b/ReferenceCode/Haswell/Library/BootGuardLib/BootGuardLib.inf
new file mode 100644
index 0000000..5af1ded
--- /dev/null
+++ b/ReferenceCode/Haswell/Library/BootGuardLib/BootGuardLib.inf
@@ -0,0 +1,64 @@
+## @file
+# Component description file for Boot Guard Library
+#
+#@copyright
+# Copyright (c) 2012 - 2013 Intel Corporation. All rights reserved
+# This software and associated documentation (if any) is furnished
+# under a license and may only be used or copied in accordance
+# with the terms of the license. Except as permitted by such
+# license, no part of this software or documentation may be
+# reproduced, stored in a retrieval system, or transmitted in any
+# form or by any means without the express written consent of
+# Intel Corporation.
+#
+# This file contains an 'Intel Peripheral Driver' and uniquely
+# identified as "Intel Reference Module" and is
+# licensed for Intel CPUs and chipsets under the terms of your
+# license agreement with Intel or your vendor. This file may
+# be modified by the user, subject to additional terms of the
+# license agreement
+#
+
+[defines]
+BASE_NAME = BootGuardLib
+COMPONENT_TYPE = LIBRARY
+
+[sources.common]
+ BootGuardLibrary.c
+
+[sources.ia32]
+
+[sources.x64]
+
+[sources.ipf]
+
+[includes.common]
+ $(EDK_SOURCE)/Foundation/Efi
+ $(EDK_SOURCE)/Foundation/Include
+ $(EDK_SOURCE)/Foundation/Efi/Include
+ $(EDK_SOURCE)/Foundation/Framework/Include
+ $(EFI_SOURCE)/$(PROJECT_CPU_ROOT)
+ $(EFI_SOURCE)/$(PROJECT_CPU_ROOT)/Include
+ $(EFI_SOURCE)/$(PROJECT_CPU_ROOT)/Include/Library
+
+#
+# EDK II Glue Library utilizes some standard headers from EDK
+#
+ $(EFI_SOURCE)
+ $(EDK_SOURCE)/Foundation
+ $(EDK_SOURCE)/Foundation/Efi
+ $(EDK_SOURCE)/Foundation/Efi/Include
+ $(EDK_SOURCE)/Foundation/Framework
+ $(EDK_SOURCE)/Foundation/Framework/Include
+ $(EDK_SOURCE)/Foundation/Include
+ $(EDK_SOURCE)/Foundation/Include/IndustryStandard
+ $(EDK_SOURCE)/Foundation/Core/Dxe
+ $(EDK_SOURCE)/Foundation/Include/Pei
+ $(EDK_SOURCE)/Foundation/Library/Dxe/Include
+ $(EDK_SOURCE)/Foundation/Library/EdkIIGlueLib/Include
+
+[libraries.common]
+ EdkIIGlueBasePciLibPciExpress
+ CpuPlatformLib
+
+[nmake.common]
diff --git a/ReferenceCode/Haswell/Library/BootGuardLib/BootGuardLibrary.c b/ReferenceCode/Haswell/Library/BootGuardLib/BootGuardLibrary.c
new file mode 100644
index 0000000..e35d42f
--- /dev/null
+++ b/ReferenceCode/Haswell/Library/BootGuardLib/BootGuardLibrary.c
@@ -0,0 +1,121 @@
+/** @file
+ BootGuardLibrary implementation.
+
+@copyright
+ Copyright (c) 2012 - 2013 Intel Corporation. All rights reserved
+ This software and associated documentation (if any) is furnished
+ under a license and may only be used or copied in accordance
+ with the terms of the license. Except as permitted by such
+ license, no part of this software or documentation may be
+ reproduced, stored in a retrieval system, or transmitted in any
+ form or by any means without the express written consent of
+ Intel Corporation.
+
+ This file contains an 'Intel Peripheral Driver' and uniquely
+ identified as "Intel Reference Module" and is
+ licensed for Intel CPUs and chipsets under the terms of your
+ license agreement with Intel or your vendor. This file may
+ be modified by the user, subject to additional terms of the
+ license agreement
+**/
+#if !defined(EDK_RELEASE_VERSION) || (EDK_RELEASE_VERSION < 0x00020000)
+#include "EdkIIGlueBase.h"
+#include "EdkIIGluePeim.h"
+#include "CpuAccess.h"
+#include "CpuPlatformLib.h"
+#endif
+
+/**
+ Determine if Boot Guard is supported
+
+ @retval TRUE - Processor is Boot Guard capable.
+ @retval FALSE - Processor is not Boot Guard capable.
+
+**/
+BOOLEAN
+IsBootGuardSupported (
+ VOID
+ )
+{
+ UINT64 BootGuardBootStatus;
+ UINT32 BootGuardAcmStatus;
+ UINT64 BootGuardCapability;
+ CPU_STEPPING CpuSteppingId;
+
+ //
+ // Return unsupported if processor is not ULT sku
+ //
+ if(GetCpuSku() != EnumCpuUlt) {
+ return FALSE;
+ }
+
+ BootGuardBootStatus = *(UINT64 *) (UINTN) (TXT_PUBLIC_BASE + R_CPU_BOOT_GUARD_BOOTSTATUS);
+ BootGuardAcmStatus = *(UINT32 *) (UINTN) (TXT_PUBLIC_BASE + R_CPU_BOOT_GUARD_ACM_STATUS);
+ BootGuardCapability = AsmReadMsr64 (MSR_BOOT_GUARD_SACM_INFO) & BIT32;
+ CpuSteppingId = GetCpuStepping();
+
+ if (CpuSteppingId >= EnumHswUltC0) {
+ if (BootGuardCapability != 0) {
+ DEBUG ((EFI_D_ERROR, "Processor supports Boot Guard.\n"));
+ return TRUE;
+ } else {
+ DEBUG ((EFI_D_ERROR, "Processor does not support Boot Guard.\n"));
+ return FALSE;
+ }
+ } else {
+ if(((BootGuardBootStatus & BIT62) == 0) && // Check for ACM not found in FIT
+ ((BootGuardAcmStatus & B_BOOT_GUARD_ACM_ERRORCODE_MASK) == 0) && // Check for ACM failed to load/run successfully
+ ((BootGuardAcmStatus & BIT31) == 0)) { // Check if ACM Entered
+ DEBUG ((EFI_D_ERROR, "Processor does not support Boot Guard.\n"));
+ return FALSE;
+ } else {
+ DEBUG ((EFI_D_ERROR, "Processor supports Boot Guard.\n"));
+ return TRUE;
+ }
+ }
+}
+
+/**
+ Stop PBE timer if system is in Boot Guard boot
+
+ @retval EFI_SUCCESS - Stop PBE timer
+ @retval EFI_UNSUPPORTED - Not in Boot Guard boot mode.
+**/
+EFI_STATUS
+StopPbeTimer (
+ VOID
+ )
+{
+ UINT64 BootGuardBootStatus;
+ UINT64 BootGuardOperationMode;
+
+ if (IsBootGuardSupported()) {
+ BootGuardBootStatus = (*(UINT64 *) (UINTN) (TXT_PUBLIC_BASE + R_CPU_BOOT_GUARD_BOOTSTATUS) & (BIT63|BIT62));
+ BootGuardOperationMode = AsmReadMsr64 (MSR_BOOT_GUARD_SACM_INFO);
+
+ //
+ // Stop PBET if Verified/Measured/NEM bit is set in MSR 0x13A or
+ // Boot Guard fails to launch or fails to execute successfully for avoiding brick platform
+ //
+
+ if (BootGuardBootStatus == V_CPU_BOOT_GUARD_LOAD_ACM_SUCCESS) {
+ if (BootGuardOperationMode == 0) {
+ DEBUG ((EFI_D_ERROR, "Platform in Legacy boot mode.\n"));
+ return EFI_UNSUPPORTED;
+ } else {
+ DEBUG ((EFI_D_ERROR, "Platform in Boot Guard Boot mode.\n"));
+ }
+ } else {
+ DEBUG ((EFI_D_ERROR, "Boot Guard ACM launch failed or ACM execution failed.\n"));
+ }
+
+ DEBUG ((EFI_D_ERROR, "Disable PBET\n"));
+ AsmWriteMsr64 (MSR_BC_PBEC, B_STOP_PBET);
+ } else {
+ DEBUG ((EFI_D_ERROR, "Boot Guard is not supported.\n"));
+ return EFI_UNSUPPORTED;
+ }
+
+ return EFI_SUCCESS;
+}
+