/** @file Initialize Intel TDX support. Copyright (c) 2021, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "Platform.h" /** This Function checks if TDX is available, if present then it sets the dynamic PCDs for Tdx guest. **/ VOID IntelTdxInitialize ( VOID ) { #ifdef MDE_CPU_X64 RETURN_STATUS PcdStatus; if (!TdIsEnabled ()) { return; } TdxHelperBuildGuidHobForTdxMeasurement (); PcdStatus = PcdSet64S (PcdConfidentialComputingGuestAttr, CCAttrIntelTdx); ASSERT_RETURN_ERROR (PcdStatus); PcdStatus = PcdSet64S (PcdTdxSharedBitMask, TdSharedPageMask ()); ASSERT_RETURN_ERROR (PcdStatus); PcdStatus = PcdSetBoolS (PcdSetNxForStack, TRUE); ASSERT_RETURN_ERROR (PcdStatus); #endif }