Last change
on this file since 108794 was 108794, checked in by vboxsync, 2 weeks ago |
Devices/EFI/FirmwareNew: Merge edk2-stable202502 from the vendor branch and make it build for the important platforms, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.4 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # MmCommunicationDxe driver produces MmCommunication protocol and
|
---|
3 | # create the notifications of some protocols and event.
|
---|
4 | #
|
---|
5 | # Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x0001001A
|
---|
13 | BASE_NAME = MmCommunicationDxe
|
---|
14 | FILE_GUID = 8d4b8bc7-e66b-4be2-add8-4988e08743ed
|
---|
15 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
16 | VERSION_STRING = 1.0
|
---|
17 | PI_SPECIFICATION_VERSION = 0x00010032
|
---|
18 | ENTRY_POINT = MmCommunicationEntryPoint
|
---|
19 |
|
---|
20 | [Sources]
|
---|
21 | MmCommunicationDxe.c
|
---|
22 | MmCommunicationDxe.h
|
---|
23 |
|
---|
24 | [Packages]
|
---|
25 | MdePkg/MdePkg.dec
|
---|
26 | MdeModulePkg/MdeModulePkg.dec
|
---|
27 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
28 | StandaloneMmPkg/StandaloneMmPkg.dec
|
---|
29 |
|
---|
30 | [LibraryClasses]
|
---|
31 | UefiDriverEntryPoint
|
---|
32 | BaseLib
|
---|
33 | DebugLib
|
---|
34 | HobLib
|
---|
35 | BaseMemoryLib
|
---|
36 | MemoryAllocationLib
|
---|
37 | UefiBootServicesTableLib
|
---|
38 | UefiLib
|
---|
39 | UefiRuntimeLib
|
---|
40 | ReportStatusCodeLib
|
---|
41 |
|
---|
42 | [Guids]
|
---|
43 | gMmCommBufferHobGuid
|
---|
44 | gEfiEventVirtualAddressChangeGuid
|
---|
45 | gEfiEndOfDxeEventGroupGuid
|
---|
46 | gEfiEventExitBootServicesGuid
|
---|
47 |
|
---|
48 | [Protocols]
|
---|
49 | gEfiMmCommunication2ProtocolGuid
|
---|
50 | gEfiSmmControl2ProtocolGuid
|
---|
51 | gEfiMmCommunicationProtocolGuid
|
---|
52 | gEfiDxeMmReadyToLockProtocolGuid
|
---|
53 | gEfiSmmAccess2ProtocolGuid
|
---|
54 |
|
---|
55 | [Depex]
|
---|
56 | gEfiSmmAccess2ProtocolGuid AND gEfiSmmControl2ProtocolGuid
|
---|
Note:
See
TracBrowser
for help on using the repository browser.