Home | History | Annotate | Download | only in PiSmmCommunication
      1 ## @file

      2 # PI SMM Communication SMM driver that installs the SMM Communication ACPI Table.

      3 #

      4 # This SMM driver installs the SMM Communication ACPI Table defined in the UEFI spec

      5 # which provides a mechanism that can be used in the OS present environment by

      6 # non-firmware agents for inter-mode communication with SMM agents. It also saves

      7 # SMM communication context for use by SMM Communication PEIM in the S3 boot mode.

      8 #

      9 # Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved.<BR>

     10 #

     11 # This program and the accompanying materials

     12 # are licensed and made available under the terms and conditions of the BSD License

     13 # which accompanies this distribution.  The full text of the license may be found at

     14 # http://opensource.org/licenses/bsd-license.php

     15 #

     16 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,

     17 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

     18 #

     19 ##

     20 
     21 [Defines]
     22   INF_VERSION                    = 0x00010005
     23   BASE_NAME                      = PiSmmCommunicationSmm
     24   MODULE_UNI_FILE                = PiSmmCommunicationSmm.uni
     25   FILE_GUID                      = E21F35A8-42FF-4050-82D6-93F7CDFA7073
     26   MODULE_TYPE                    = DXE_SMM_DRIVER
     27   VERSION_STRING                 = 1.0
     28   PI_SPECIFICATION_VERSION       = 0x0001000A
     29   ENTRY_POINT                    = PiSmmCommunicationSmmEntryPoint
     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   PiSmmCommunicationSmm.c
     39   PiSmmCommunicationPrivate.h
     40 
     41 [Packages]
     42   MdePkg/MdePkg.dec
     43   MdeModulePkg/MdeModulePkg.dec
     44 
     45 [LibraryClasses]
     46   UefiDriverEntryPoint
     47   UefiBootServicesTableLib
     48   UefiRuntimeServicesTableLib
     49   SmmServicesTableLib
     50   BaseLib
     51   BaseMemoryLib
     52   HobLib
     53   DebugLib
     54   SmmMemLib
     55   PcdLib
     56 
     57 [Guids]
     58   gEfiAcpi20TableGuid                ## SOMETIMES_CONSUMES  ## SystemTable

     59   gEfiAcpi10TableGuid                ## SOMETIMES_CONSUMES  ## SystemTable

     60   gEfiAcpiTableGuid                  ## SOMETIMES_CONSUMES  ## SystemTable

     61 
     62 [Ppis]
     63   gEfiPeiSmmCommunicationPpiGuid     ## UNDEFINED # SMM Configuration Table

     64 
     65 [Protocols]
     66   gEfiSmmSwDispatch2ProtocolGuid     ## CONSUMES

     67   gEfiSmmCommunicationProtocolGuid   ## UNDEFINED # SMM Communication ACPI Table GUID

     68   gEfiAcpiTableProtocolGuid          ## CONSUMES

     69 
     70 [Pcd]
     71   gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemId             ## CONSUMES

     72   gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemTableId        ## CONSUMES

     73   gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemRevision       ## CONSUMES

     74   gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultCreatorId         ## CONSUMES

     75   gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultCreatorRevision   ## CONSUMES

     76 
     77 [Depex]
     78   gEfiSmmSwDispatch2ProtocolGuid AND
     79   gEfiAcpiTableProtocolGuid
     80 
     81 [UserExtensions.TianoCore."ExtraFiles"]
     82   PiSmmCommunicationSmmExtra.uni
     83