1## @file
2# Component description file for SMM Power Management module
3#
4# This is QNC Smm Power Management driver .
5# Copyright (c) 2013-2015 Intel Corporation.
6#
7# This program and the accompanying materials
8# are licensed and made available under the terms and conditions of the BSD License
9# which accompanies this distribution.  The full text of the license may be found at
10# http://opensource.org/licenses/bsd-license.php
11#
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15##
16
17[Defines]
18  INF_VERSION                    = 0x00010005
19  BASE_NAME                      = SmmPowerManagement
20  FILE_GUID                      = 271F1343-20D6-4e14-9B62-3C0297F56F07
21  MODULE_TYPE                    = DXE_SMM_DRIVER
22  VERSION_STRING                 = 1.0
23  PI_SPECIFICATION_VERSION       = 0x0001000A
24  ENTRY_POINT                    = InitializePowerManagement
25
26#
27# The following information is for reference only and not required by the build tools.
28#
29#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
30#
31
32[Sources]
33  SmmPowerManagement.c
34  SmmPowerManagement.h
35  Ppm.c
36  Ppm.h
37
38[Packages]
39  MdePkg/MdePkg.dec
40  MdeModulePkg/MdeModulePkg.dec
41  UefiCpuPkg/UefiCpuPkg.dec
42  QuarkSocPkg/QuarkSocPkg.dec
43  QuarkPlatformPkg/QuarkPlatformPkg.dec
44
45[LibraryClasses]
46  UefiDriverEntryPoint
47  DebugLib
48  PcdLib
49  IoLib
50  PciLib
51  BaseLib
52  BaseMemoryLib
53  SmmServicesTableLib
54  UefiBootServicesTableLib
55  S3BootScriptLib
56  MemoryAllocationLib
57
58[Protocols]
59  gEfiSmmCpuProtocolGuid                        # PROTOCOL ALWAYS_CONSUMED
60  gEfiSmmSwDispatch2ProtocolGuid                # PROTOCOL ALWAYS_CONSUMED
61  gEfiGlobalNvsAreaProtocolGuid                 # PROTOCOL ALWAYS_CONSUMED
62  gEfiFirmwareVolume2ProtocolGuid               # PROTOCOL ALWAYS_CONSUMED
63  gEfiMpServiceProtocolGuid                     # PROTOCOL ALWAYS_CONSUMED
64  gEfiAcpiSdtProtocolGuid                       # PROTOCOL ALWAYS_CONSUMED
65  gEfiAcpiTableProtocolGuid                     # PROTOCOL ALWAYS_CONSUMED
66
67[Guids]
68  gPowerManagementAcpiTableStorageGuid
69
70[Pcd]
71  gEfiQuarkNcSocIdTokenSpaceGuid.PcdPmbaIoBaseAddress
72  gEfiQuarkNcSocIdTokenSpaceGuid.PcdPmbaIoLVL2
73  gQuarkPlatformTokenSpaceGuid.PcdPpmFlags
74
75[Depex]
76  gEfiSmmCpuProtocolGuid AND
77  gEfiSmmSwDispatch2ProtocolGuid AND
78  gEfiGlobalNvsAreaProtocolGuid AND
79  gEfiAcpiTableProtocolGuid AND
80  gEfiMpServiceProtocolGuid
81