1 | ## @file
|
---|
2 | # A driver allocates common SMM communication buffer in EfiReservedMemoryType.
|
---|
3 | #
|
---|
4 | # This driver allocates common SMM communication buffer in EfiReservedMemoryType,
|
---|
5 | # then it publishes the information to EFI configuration table with
|
---|
6 | # gEdkiiPiSmmCommunicationRegionTableGuid.
|
---|
7 | # Any other driver or application can get the table and know the common
|
---|
8 | # communication buffer.
|
---|
9 | #
|
---|
10 | # Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
|
---|
11 | #
|
---|
12 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
13 | #
|
---|
14 | ##
|
---|
15 |
|
---|
16 | [Defines]
|
---|
17 | INF_VERSION = 0x00010005
|
---|
18 | BASE_NAME = SmmCommunicationBufferDxe
|
---|
19 | MODULE_UNI_FILE = SmmCommunicationBufferDxe.uni
|
---|
20 | FILE_GUID = 8FAAD0A7-02B4-432F-8F5C-B880965D8B41
|
---|
21 | MODULE_TYPE = DXE_DRIVER
|
---|
22 | VERSION_STRING = 1.0
|
---|
23 | ENTRY_POINT = SmmCommunicationBufferEntryPoint
|
---|
24 |
|
---|
25 | #
|
---|
26 | # The following information is for reference only and not required by the build tools.
|
---|
27 | #
|
---|
28 | # VALID_ARCHITECTURES = IA32 X64
|
---|
29 | #
|
---|
30 |
|
---|
31 | [Sources]
|
---|
32 | SmmCommunicationBufferDxe.c
|
---|
33 |
|
---|
34 | [Packages]
|
---|
35 | MdePkg/MdePkg.dec
|
---|
36 | MdeModulePkg/MdeModulePkg.dec
|
---|
37 |
|
---|
38 | [LibraryClasses]
|
---|
39 | UefiDriverEntryPoint
|
---|
40 | UefiBootServicesTableLib
|
---|
41 | UefiRuntimeServicesTableLib
|
---|
42 | BaseLib
|
---|
43 | BaseMemoryLib
|
---|
44 | MemoryAllocationLib
|
---|
45 | HobLib
|
---|
46 | DebugLib
|
---|
47 |
|
---|
48 | [Guids]
|
---|
49 | gEdkiiPiSmmCommunicationRegionTableGuid ## PRODUCES ## SystemTable
|
---|
50 |
|
---|
51 | [Depex]
|
---|
52 | TRUE
|
---|
53 |
|
---|
54 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
55 | SmmCommunicationBufferExtraDxe.uni
|
---|