diff options
author | Jiaxin Wu <jiaxin.wu@intel.com> | 2024-05-24 09:36:52 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-08-28 15:25:27 +0000 |
commit | 82b1f691961f3e845e2e46873823c4843b660a7a (patch) | |
tree | 4ab3641cc19b40881f0cf252799b43341c3962be /MdePkg | |
parent | 1fd2f9ec8f16cc8efb949888db94eb42006f77c6 (diff) | |
download | edk2-82b1f691961f3e845e2e46873823c4843b660a7a.tar.gz edk2-82b1f691961f3e845e2e46873823c4843b660a7a.tar.bz2 edk2-82b1f691961f3e845e2e46873823c4843b660a7a.zip |
MdePkg/MdePkg.dec: Add gEfiMmEndOfPeiProtocol definition
This protocol is defined at PI Spec, Vol 4, section 4.
It's a MM Protocol published by a standalone MM Foundation
code if MM Foundation is loaded in PEI phase. This protocol
should be installed immediately after DXE IPL installs
EFI_PEI_END_OF_PEI_PHASE_PPI.
Signed-off-by: Hongbin1 Zhang <hongbin1.zhang@intel.com>
Co-authored-by: Jiaxin Wu <jiaxin.wu@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Cc: Wei6 Xu <wei6.xu@intel.com>
Cc: Dun Tan <dun.tan@intel.com>
Cc: Yuanhao Xie <yuanhao.xie@intel.com>
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/MdePkg.dec | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MdePkg/MdePkg.dec b/MdePkg/MdePkg.dec index f8c30d3e76..d36bd2eda3 100644 --- a/MdePkg/MdePkg.dec +++ b/MdePkg/MdePkg.dec @@ -1385,6 +1385,10 @@ ## Include/Protocol/MmCommunication.h
gEfiMmCommunicationProtocolGuid = { 0xc68ed8e2, 0x9dc6, 0x4cbd, { 0x9d, 0x94, 0xdb, 0x65, 0xac, 0xc5, 0xc3, 0x32 }}
+ ## This protocol is a MM protocol published by a standalone MM Foundation code if MM Foundation is loaded in PEI phase.
+ ## This protocol should be installed immediately after DXE IPL installs EFI_PEI_END_OF_PEI_PHASE_PPI
+ gEfiMmEndOfPeiProtocol = { 0xf33e1bf3, 0x980b, 0x4bfb, { 0xa2, 0x9a, 0xb2, 0x9c, 0x86, 0x45, 0x37, 0x32 }}
+
#
# Protocols defined in PI 1.6.
#
|