mirror of https://github.com/acidanthera/audk.git
MdePkg: add SmmCpuRendezvousLib.h and SmmCpuRendezvousLibNull implement.
REF? https://bugzilla.tianocore.org/show_bug.cgi?id=3912 UefiCpuPkg define a new Protocol with the new services SmmWaitForAllProcessor(), which can be used by SMI handler to optionally wait for other APs to complete SMM rendezvous in relaxed AP mode. VariableSmm and VariableStandaloneMM driver in MdeModulePkg need to use this services but MdeModulePkg can't depend on UefiCpuPkg. Thus, the solution is moving SmmCpuRendezvouslib.h from UefiCpuPkg to MdePkg and creating SmmCpuRendezvousLib NullLib version implementation in MdePkg as dependency for the pkg that can't depend on UefiCpuPkg. Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Eric Dong <eric.dong@intel.com> Cc: Ray Ni <ray.ni@intel.com> Cc: Michael Kubacki <mikuback@linux.microsoft.com> Cc: Siyuan Fu <siyuan.fu@intel.com> Signed-off-by: Zhihao Li <zhihao.li@intel.com> Acked-by: Liming Gao <gaoliming@byosoft.com.cn>
This commit is contained in:
parent
247a0fc65e
commit
8079d4dc4f
|
@ -0,0 +1,29 @@
|
|||
/** @file
|
||||
SMM CPU Rendezvous sevice implement.
|
||||
|
||||
Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
**/
|
||||
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/SmmCpuRendezvousLib.h>
|
||||
|
||||
/**
|
||||
This routine wait for all AP processors to arrive in SMM.
|
||||
|
||||
@param[in] BlockingMode Blocking mode or non-blocking mode.
|
||||
|
||||
@retval EFI_SUCCESS All avaiable APs arrived.
|
||||
@retval EFI_TIMEOUT Wait for all APs until timeout.
|
||||
@retval OTHER Fail to register SMM CPU Rendezvous service Protocol.
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
SmmWaitForAllProcessor (
|
||||
IN BOOLEAN BlockingMode
|
||||
)
|
||||
{
|
||||
ASSERT (FALSE);
|
||||
return EFI_SUCCESS;
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
## @file
|
||||
# SMM CPU Rendezvous service lib.
|
||||
#
|
||||
# This is SMM CPU rendezvous service lib that wait for all
|
||||
# APs to enter SMM mode.
|
||||
#
|
||||
# Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>
|
||||
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
#
|
||||
##
|
||||
|
||||
[Defines]
|
||||
INF_VERSION = 0x00010005
|
||||
BASE_NAME = SmmCpuRendezvousLibNull
|
||||
FILE_GUID = 1e5790ea-d013-4d7b-9047-b4342a762027
|
||||
MODULE_TYPE = DXE_SMM_DRIVER
|
||||
LIBRARY_CLASS = SmmCpuRendezvousLib|MM_STANDALONE DXE_SMM_DRIVER
|
||||
|
||||
[Sources]
|
||||
SmmCpuRendezvousLibNull.c
|
||||
|
||||
[Packages]
|
||||
MdePkg/MdePkg.dec
|
||||
|
||||
[LibraryClasses]
|
||||
DebugLib
|
|
@ -5,7 +5,7 @@
|
|||
# by using "!include MdePkg/MdeLibs.dsc.inc" to specify the library instances
|
||||
# of some EDKII basic/common library classes.
|
||||
#
|
||||
# Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2021 - 2022, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
#
|
||||
|
@ -14,3 +14,4 @@
|
|||
[LibraryClasses]
|
||||
RegisterFilterLib|MdePkg/Library/RegisterFilterLibNull/RegisterFilterLibNull.inf
|
||||
CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
|
||||
SmmCpuRendezvousLib|MdePkg/Library/SmmCpuRendezvousLibNull/SmmCpuRendezvousLibNull.inf
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# It also provides the definitions(including PPIs/PROTOCOLs/GUIDs) of
|
||||
# EFI1.10/UEFI2.7/PI1.7 and some Industry Standards.
|
||||
#
|
||||
# Copyright (c) 2007 - 2021, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2007 - 2022, Intel Corporation. All rights reserved.<BR>
|
||||
# Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
||||
# (C) Copyright 2016 - 2021 Hewlett Packard Enterprise Development LP<BR>
|
||||
#
|
||||
|
@ -272,6 +272,9 @@
|
|||
#
|
||||
CcProbeLib|Include/Library/CcProbeLib.h
|
||||
|
||||
## @libraryclass Provides function for SMM CPU Rendezvous Library.
|
||||
SmmCpuRendezvousLib|Include/Library/SmmCpuRendezvousLib.h
|
||||
|
||||
[LibraryClasses.IA32, LibraryClasses.X64, LibraryClasses.AARCH64]
|
||||
## @libraryclass Provides services to generate random number.
|
||||
#
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
## @file
|
||||
# EFI/PI MdePkg Package
|
||||
#
|
||||
# Copyright (c) 2007 - 2021, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2007 - 2022, Intel Corporation. All rights reserved.<BR>
|
||||
# Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
||||
# (C) Copyright 2020 Hewlett Packard Enterprise Development LP<BR>
|
||||
#
|
||||
|
@ -131,6 +131,7 @@
|
|||
|
||||
MdePkg/Library/RegisterFilterLibNull/RegisterFilterLibNull.inf
|
||||
MdePkg/Library/CcProbeLibNull/CcProbeLibNull.inf
|
||||
MdePkg/Library/SmmCpuRendezvousLibNull/SmmCpuRendezvousLibNull.inf
|
||||
|
||||
[Components.IA32, Components.X64, Components.ARM, Components.AARCH64]
|
||||
#
|
||||
|
|
|
@ -62,9 +62,6 @@
|
|||
## @libraryclass Provides function for loading microcode.
|
||||
MicrocodeLib|Include/Library/MicrocodeLib.h
|
||||
|
||||
## @libraryclass Provides function for SMM CPU Rendezvous Library.
|
||||
SmmCpuRendezvousLib|Include/Library/SmmCpuRendezvousLib.h
|
||||
|
||||
[Guids]
|
||||
gUefiCpuPkgTokenSpaceGuid = { 0xac05bf33, 0x995a, 0x4ed4, { 0xaa, 0xb8, 0xef, 0x7a, 0xe8, 0xf, 0x5c, 0xb0 }}
|
||||
gMsegSmramGuid = { 0x5802bce4, 0xeeee, 0x4e33, { 0xa1, 0x30, 0xeb, 0xad, 0x27, 0xf0, 0xe4, 0x39 }}
|
||||
|
|
Loading…
Reference in New Issue