diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-05-08 03:09:54 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-05-08 03:09:54 +0000 |
commit | 1c0cc375aa881b330e7b94bc8f8fd179cc6d1bfd (patch) | |
tree | eb0f38c06037798aef761e9111dc4d2c1b435523 /MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTableSmm/FirmwarePerformanceSmm.inf | |
parent | badd40f9d41c92bf54e3ef8d77f35ded05b7c918 (diff) | |
download | edk2-platforms-1c0cc375aa881b330e7b94bc8f8fd179cc6d1bfd.tar.xz |
Enhance ACPI FPDT DXE and SMM driver to accept the extension boot records.
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Eric Jin <eric.jin@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13292 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTableSmm/FirmwarePerformanceSmm.inf')
-rw-r--r-- | MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTableSmm/FirmwarePerformanceSmm.inf | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTableSmm/FirmwarePerformanceSmm.inf b/MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTableSmm/FirmwarePerformanceSmm.inf index 277319edc5..312a78d1c0 100644 --- a/MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTableSmm/FirmwarePerformanceSmm.inf +++ b/MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTableSmm/FirmwarePerformanceSmm.inf @@ -1,10 +1,10 @@ ## @file
-# This module update S3 Suspend Performance Record in ACPI Firmware Performance Data Table.
+# This module collects performance data for SMM driver boot records and S3 Suspend Performance Record.
#
-# This module register report status code listener to collect performance data
-# for S3 Suspend Performance Record.
+# This module registers report status code listener to collect performance data
+# for SMM boot performance records and S3 Suspend Performance Record.
#
-# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2011 - 2012, Intel Corporation. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
@@ -45,15 +45,19 @@ TimerLib
LockBoxLib
PcdLib
+ BaseMemoryLib
+ MemoryAllocationLib
+ UefiBootServicesTableLib
+ SynchronizationLib
[Protocols]
gEfiSmmRscHandlerProtocolGuid ## CONSUMES
+ gEfiSmmAccess2ProtocolGuid ## CONSUMES
[Guids]
- gEfiFirmwarePerformanceGuid ## CONSUMES
-
-[FeaturePcd]
- gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwarePerformanceDataTableS3Support
+ gEfiFirmwarePerformanceGuid ## CONSUMES ## LockBox
+ gEfiFirmwarePerformanceGuid ## PRODUCES ## SmiHandler
+ gEfiFirmwarePerformanceGuid ## SOMETIMES_CONSUMES ## StatusCode Data
[Pcd]
gEfiMdeModulePkgTokenSpaceGuid.PcdProgressCodeS3SuspendStart
|