• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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# This program and the accompanying materials
13# are licensed and made available under the terms and conditions of the BSD License
14# which accompanies this distribution.  The full text of the license may be found at
15# http://opensource.org/licenses/bsd-license.php
16#
17# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
18# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
19#
20##
21
22[Defines]
23  INF_VERSION                    = 0x00010005
24  BASE_NAME                      = SmmCommunicationBufferDxe
25  MODULE_UNI_FILE                = SmmCommunicationBufferDxe.uni
26  FILE_GUID                      = 8FAAD0A7-02B4-432F-8F5C-B880965D8B41
27  MODULE_TYPE                    = DXE_DRIVER
28  VERSION_STRING                 = 1.0
29  ENTRY_POINT                    = SmmCommunicationBufferEntryPoint
30
31#
32# The following information is for reference only and not required by the build tools.
33#
34#  VALID_ARCHITECTURES           = IA32 X64
35#
36
37[Sources]
38  SmmCommunicationBufferDxe.c
39
40[Packages]
41  MdePkg/MdePkg.dec
42  MdeModulePkg/MdeModulePkg.dec
43
44[LibraryClasses]
45  UefiDriverEntryPoint
46  UefiBootServicesTableLib
47  UefiRuntimeServicesTableLib
48  BaseLib
49  BaseMemoryLib
50  MemoryAllocationLib
51  HobLib
52  DebugLib
53  PcdLib
54
55[Guids]
56  gEdkiiPiSmmCommunicationRegionTableGuid     ## PRODUCES   ## SystemTable
57
58[Depex]
59  TRUE
60
61[UserExtensions.TianoCore."ExtraFiles"]
62  SmmCommunicationBufferExtraDxe.uni
63