From ad629b5c5a8f4403dac5d083d03efe2176f41124 Mon Sep 17 00:00:00 2001 From: Min M Xu Date: Sat, 7 May 2022 09:36:19 +0800 Subject: [PATCH] OvmfPkg: Add MpInitLibDepLib related PPI/Protocol definitions 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 Cc: Ray Ni Cc: Brijesh Singh Cc: Erdem Aktas Cc: James Bottomley Cc: Jiewen Yao Cc: Tom Lendacky Cc: Gerd Hoffmann Signed-off-by: Min Xu Tested-by: Tom Lendacky Acked-by: Gerd Hoffmann Acked-by: Jiewen Yao Reviewed-by: Ray Ni --- OvmfPkg/Include/Ppi/MpInitLibDep.h | 28 +++++++++++++++++++ .../Include/Protocol/MpInitLibDepProtocols.h | 28 +++++++++++++++++++ OvmfPkg/OvmfPkg.dec | 5 ++++ 3 files changed, 61 insertions(+) create mode 100644 OvmfPkg/Include/Ppi/MpInitLibDep.h create mode 100644 OvmfPkg/Include/Protocol/MpInitLibDepProtocols.h diff --git a/OvmfPkg/Include/Ppi/MpInitLibDep.h b/OvmfPkg/Include/Ppi/MpInitLibDep.h new file mode 100644 index 0000000000..232ff52e19 --- /dev/null +++ b/OvmfPkg/Include/Ppi/MpInitLibDep.h @@ -0,0 +1,28 @@ +/** @file + MpInitLibDepLib PPI definitions + + Copyright (c) 2022, Intel Corporation. All rights reserved.
+ SPDX-License-Identifier: BSD-2-Clause-Patent + +**/ + +#ifndef MPINITLIB_DEP_H_ +#define MPINITLIB_DEP_H_ + +// {138F9CF4-F0E7-4721-8F49-F5FFECF42D40} +#define EFI_PEI_MPINITLIB_MP_DEP_PPI_GUID \ +{ \ + 0x138f9cf4, 0xf0e7, 0x4721, { 0x8f, 0x49, 0xf5, 0xff, 0xec, 0xf4, 0x2d, 0x40 } \ +}; + +extern EFI_GUID gEfiPeiMpInitLibMpDepPpiGuid; + +// {0B590774-BC67-49F4-A7DB-E82E89E6B5D6} +#define EFI_PEI_MPINITLIB_UP_DEP_PPI_GUID \ +{ \ + 0xb590774, 0xbc67, 0x49f4, { 0xa7, 0xdb, 0xe8, 0x2e, 0x89, 0xe6, 0xb5, 0xd6 } \ +}; + +extern EFI_GUID gEfiPeiMpInitLibUpDepPpiGuid; + +#endif diff --git a/OvmfPkg/Include/Protocol/MpInitLibDepProtocols.h b/OvmfPkg/Include/Protocol/MpInitLibDepProtocols.h new file mode 100644 index 0000000000..449c8fedb3 --- /dev/null +++ b/OvmfPkg/Include/Protocol/MpInitLibDepProtocols.h @@ -0,0 +1,28 @@ +/** @file + MpInitLibDep Protocol Guid definitions + + Copyright (c) 2022, Intel Corporation. All rights reserved.
+ 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 diff --git a/OvmfPkg/OvmfPkg.dec b/OvmfPkg/OvmfPkg.dec index b9ca441202..8c2048051b 100644 --- a/OvmfPkg/OvmfPkg.dec +++ b/OvmfPkg/OvmfPkg.dec @@ -152,6 +152,9 @@ # the PEI phase, regardless of memory encryption gOvmfTpmMmioAccessiblePpiGuid = {0x35c84ff2, 0x7bfe, 0x453d, {0x84, 0x5f, 0x68, 0x3a, 0x49, 0x2c, 0xf7, 0xb7}} + gEfiPeiMpInitLibMpDepPpiGuid = {0x138f9cf4, 0xf0e7, 0x4721, { 0x8f, 0x49, 0xf5, 0xff, 0xec, 0xf4, 0x2d, 0x40}} + gEfiPeiMpInitLibUpDepPpiGuid = {0xb590774, 0xbc67, 0x49f4, { 0xa7, 0xdb, 0xe8, 0x2e, 0x89, 0xe6, 0xb5, 0xd6}} + [Protocols] gVirtioDeviceProtocolGuid = {0xfa920010, 0x6785, 0x4941, {0xb6, 0xec, 0x49, 0x8c, 0x57, 0x9f, 0x16, 0x0a}} gXenBusProtocolGuid = {0x3d3ca290, 0xb9a5, 0x11e3, {0xb7, 0x5d, 0xb8, 0xac, 0x6f, 0x7d, 0x65, 0xe6}} @@ -167,6 +170,8 @@ gEfiVgaMiniPortProtocolGuid = {0xc7735a2f, 0x88f5, 0x4882, {0xae, 0x63, 0xfa, 0xac, 0x8c, 0x8b, 0x86, 0xb3}} gOvmfLoadedX86LinuxKernelProtocolGuid = {0xa3edc05d, 0xb618, 0x4ff6, {0x95, 0x52, 0x76, 0xd7, 0x88, 0x63, 0x43, 0xc8}} gQemuAcpiTableNotifyProtocolGuid = {0x928939b2, 0x4235, 0x462f, {0x95, 0x80, 0xf6, 0xa2, 0xb2, 0xc2, 0x1a, 0x4f}} + gEfiMpInitLibMpDepProtocolGuid = {0xbb00a5ca, 0x8ce, 0x462f, {0xa5, 0x37, 0x43, 0xc7, 0x4a, 0x82, 0x5c, 0xa4}} + gEfiMpInitLibUpDepProtocolGuid = {0xa9e7cef1, 0x5682, 0x42cc, {0xb1, 0x23, 0x99, 0x30, 0x97, 0x3f, 0x4a, 0x9f}} [PcdsFixedAtBuild] gUefiOvmfPkgTokenSpaceGuid.PcdOvmfPeiMemFvBase|0x0|UINT32|0