mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg: PiSmmCpuDxeSmm: Remove Framework compatibility
The PiSmmCpuDxeSmm module is using PcdFrameworkCompatibilitySupport to provide compatibility with the SMM support in the IntelFrameworkPkg. This change removes the Framework compatibility and requires all SMM modules that provide SMI handlers to follow the PI Specification. Cc: Jeff Fan <jeff.fan@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Michael Kinney <michael.d.kinney@intel.com> Reviewed-by: Jeff Fan <jeff.fan@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18726 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
b9ffeab7b0
commit
c2e5e70a85
|
@ -76,13 +76,6 @@ EFI_SMM_CPU_PROTOCOL mSmmCpu = {
|
|||
|
||||
EFI_CPU_INTERRUPT_HANDLER mExternalVectorTable[EXCEPTION_VECTOR_NUMBER];
|
||||
|
||||
///
|
||||
/// SMM CPU Save State Protocol instance
|
||||
///
|
||||
EFI_SMM_CPU_SAVE_STATE_PROTOCOL mSmmCpuSaveState = {
|
||||
NULL
|
||||
};
|
||||
|
||||
//
|
||||
// SMM stack information
|
||||
//
|
||||
|
@ -529,10 +522,6 @@ SmmRestoreCpu (
|
|||
InitializeDebugAgent (DEBUG_AGENT_INIT_THUNK_PEI_IA32TOX64, (VOID *)&Ia32Idtr, NULL);
|
||||
}
|
||||
|
||||
//
|
||||
// Do below CPU things for native platform only
|
||||
//
|
||||
if (!FeaturePcdGet(PcdFrameworkCompatibilitySupport)) {
|
||||
//
|
||||
// Skip initialization if mAcpiCpuData is not valid
|
||||
//
|
||||
|
@ -542,17 +531,12 @@ SmmRestoreCpu (
|
|||
//
|
||||
EarlyInitializeCpu ();
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Restore SMBASE for BSP and all APs
|
||||
//
|
||||
SmmRelocateBases ();
|
||||
|
||||
//
|
||||
// Do below CPU things for native platform only
|
||||
//
|
||||
if (!FeaturePcdGet(PcdFrameworkCompatibilitySupport)) {
|
||||
//
|
||||
// Skip initialization if mAcpiCpuData is not valid
|
||||
//
|
||||
|
@ -562,7 +546,6 @@ SmmRestoreCpu (
|
|||
//
|
||||
InitializeCpu ();
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Set a flag to restore SMM configuration in S3 path.
|
||||
|
@ -686,13 +669,6 @@ SmmReadyToLockEventNotify (
|
|||
//
|
||||
mAcpiCpuData.NumberOfCpus = 0;
|
||||
|
||||
//
|
||||
// If FrameworkCompatibilitySspport is enabled, then do not copy CPU S3 Data into SMRAM
|
||||
//
|
||||
if (FeaturePcdGet (PcdFrameworkCompatibilitySupport)) {
|
||||
goto Done;
|
||||
}
|
||||
|
||||
//
|
||||
// If PcdCpuS3DataAddress was never set, then do not copy CPU S3 Data into SMRAM
|
||||
//
|
||||
|
@ -1009,7 +985,6 @@ PiCpuSmmEntry (
|
|||
|
||||
mSmmCpuPrivateData.SmmCoreEntryContext.CpuSaveStateSize = gSmmCpuPrivate->CpuSaveStateSize;
|
||||
mSmmCpuPrivateData.SmmCoreEntryContext.CpuSaveState = gSmmCpuPrivate->CpuSaveState;
|
||||
mSmmCpuSaveState.CpuSaveState = (EFI_SMM_CPU_STATE **)gSmmCpuPrivate->CpuSaveState;
|
||||
|
||||
//
|
||||
// Allocate buffer for pointers to array in CPU_HOT_PLUG_DATA.
|
||||
|
@ -1150,25 +1125,6 @@ PiCpuSmmEntry (
|
|||
Status = InitializeSmmCpuServices (mSmmCpuHandle);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
if (FeaturePcdGet (PcdFrameworkCompatibilitySupport)) {
|
||||
//
|
||||
// Install Framework SMM Save State Protocol into UEFI protocol database for backward compatibility
|
||||
//
|
||||
Status = SystemTable->BootServices->InstallMultipleProtocolInterfaces (
|
||||
&gSmmCpuPrivate->SmmCpuHandle,
|
||||
&gEfiSmmCpuSaveStateProtocolGuid,
|
||||
&mSmmCpuSaveState,
|
||||
NULL
|
||||
);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
//
|
||||
// The SmmStartupThisAp service in Framework SMST should always be non-null.
|
||||
// Update SmmStartupThisAp pointer in PI SMST here so that PI/Framework SMM thunk
|
||||
// can have it ready when constructing Framework SMST.
|
||||
//
|
||||
gSmst->SmmStartupThisAp = SmmStartupThisAp;
|
||||
}
|
||||
|
||||
//
|
||||
// register SMM Ready To Lock Protocol notification
|
||||
//
|
||||
|
|
|
@ -21,7 +21,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
#include <Protocol/SmmConfiguration.h>
|
||||
#include <Protocol/SmmCpu.h>
|
||||
#include <Protocol/SmmAccess2.h>
|
||||
#include <Protocol/SmmCpuSaveState.h>
|
||||
#include <Protocol/SmmReadyToLock.h>
|
||||
#include <Protocol/SmmCpuService.h>
|
||||
|
||||
|
|
|
@ -89,7 +89,6 @@
|
|||
MdePkg/MdePkg.dec
|
||||
MdeModulePkg/MdeModulePkg.dec
|
||||
UefiCpuPkg/UefiCpuPkg.dec
|
||||
IntelFrameworkPkg/IntelFrameworkPkg.dec
|
||||
|
||||
[LibraryClasses]
|
||||
UefiDriverEntryPoint
|
||||
|
@ -126,7 +125,6 @@
|
|||
gEfiSmmCpuProtocolGuid ## PRODUCES
|
||||
gEfiSmmReadyToLockProtocolGuid ## NOTIFY
|
||||
gEfiSmmCpuServiceProtocolGuid ## PRODUCES
|
||||
gEfiSmmCpuSaveStateProtocolGuid ## SOMETIMES_PRODUCES
|
||||
|
||||
[Guids]
|
||||
gEfiAcpiVariableGuid ## SOMETIMES_CONSUMES ## HOB # it is used for S3 boot.
|
||||
|
@ -135,7 +133,6 @@
|
|||
gEfiAcpi10TableGuid ## SOMETIMES_CONSUMES ## SystemTable
|
||||
|
||||
[FeaturePcd]
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport ## CONSUMES
|
||||
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmDebug ## CONSUMES
|
||||
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmBlockStartupThisAp ## CONSUMES
|
||||
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmEnableBspElection ## CONSUMES
|
||||
|
|
Loading…
Reference in New Issue