BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3918 MpInitLibDepLib is a set of libraries which depend on PPI/Protocol. This patch defines the related PPI/Protocols in OvmfPkg. Cc: Eric Dong <eric.dong@intel.com> Cc: Ray Ni <ray.ni@intel.com> Cc: Brijesh Singh <brijesh.singh@amd.com> Cc: Erdem Aktas <erdemaktas@google.com> Cc: James Bottomley <jejb@linux.ibm.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Tom Lendacky <thomas.lendacky@amd.com> Cc: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Min Xu <min.m.xu@intel.com> Tested-by: Tom Lendacky <thomas.lendacky@amd.com> Acked-by: Gerd Hoffmann <kraxel@redhat.com> Acked-by: Jiewen Yao <jiewen.yao@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
29 lines
731 B
C
29 lines
731 B
C
/** @file
|
|
MpInitLibDep Protocol Guid definitions
|
|
|
|
Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef MPINITLIB_DEP_PROTOCOLS_H_
|
|
#define MPINITLIB_DEP_PROTOCOLS_H_
|
|
|
|
// {BB00A5CA-08CE-462F-A537-43C74A825CA4}
|
|
#define EFI_MPINITLIB_MP_DEP_PROTOCOL_GUID \
|
|
{ \
|
|
0xbb00a5ca, 0x8ce, 0x462f, { 0xa5, 0x37, 0x43, 0xc7, 0x4a, 0x82, 0x5c, 0xa4 } \
|
|
};
|
|
|
|
extern EFI_GUID gEfiMpInitLibMpDepProtocolGuid;
|
|
|
|
// {A9E7CEF1-5682-42CC-B123-9930973F4A9F}
|
|
#define EFI_PEI_MPINITLIB_UP_DEP_PPI_GUID \
|
|
{ \
|
|
0xa9e7cef1, 0x5682, 0x42cc, { 0xb1, 0x23, 0x99, 0x30, 0x97, 0x3f, 0x4a, 0x9f } \
|
|
};
|
|
|
|
extern EFI_GUID gEfiMpInitLibUpDepProtocolGuid;
|
|
|
|
#endif
|