From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mx.groups.io with SMTP id smtpd.web11.5722.1651887402613426917 for ; Fri, 06 May 2022 18:36:48 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=WYkm9veK; spf=pass (domain: intel.com, ip: 192.55.52.120, mailfrom: min.m.xu@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1651887407; x=1683423407; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ne7lqHXAigomfVmL0dAwScAlkzVxPmWi0k/6q5a/ZS4=; b=WYkm9veKI51qyqAaVRYAgPTg5HvpGZWQpbi9Qpa/j8kYDh98P12uSAsU mmQ+LYumaOYCWSP4BtT/iCpqsRmlP4djb4hHN/aK4GNTmQsxYcPO2xQOT cpEyfsMtSa2kvN8renp0nd76C3iYQJhHTctqpFyqsM80RkqJ62p3Fg0Ot g0Rsh2CSgf6SRJIM9tH1e5NNm+wsbPhZOEzU9zHqWXMlmDD1rshYyJd8G 59Kfl4o7V6eAhANMDrcok2vnwENLFFKTYpA4E3Pp2awGkn1E/g4c/U2mR L5OT0S8vvghQ6TUHIg2GsMKN3aSrBf0jjZuUt78I9i8spIkPrJt9LMeKo Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10339"; a="267463913" X-IronPort-AV: E=Sophos;i="5.91,205,1647327600"; d="scan'208";a="267463913" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 May 2022 18:36:47 -0700 X-IronPort-AV: E=Sophos;i="5.91,205,1647327600"; d="scan'208";a="538143023" Received: from mxu9-mobl1.ccr.corp.intel.com ([10.249.172.52]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 May 2022 18:36:45 -0700 From: "Min Xu" To: devel@edk2.groups.io Cc: Min Xu , Eric Dong , Ray Ni , Brijesh Singh , Erdem Aktas , James Bottomley , Jiewen Yao , Tom Lendacky , Gerd Hoffmann Subject: [PATCH V2 2/6] OvmfPkg: Add MpInitLibDepLib related PPI/Protocol definitions Date: Sat, 7 May 2022 09:36:19 +0800 Message-Id: <40d63f4ad5bd4b799075e233c7475db825191d19.1651885849.git.min.m.xu@intel.com> X-Mailer: git-send-email 2.29.2.windows.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 --- 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 000000000000..232ff52e19fe --- /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 000000000000..449c8fedb3c6 --- /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 b9ca44120289..8c2048051bea 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 -- 2.29.2.windows.2