summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Include/Ppi
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2008-07-08 13:29:42 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2008-07-08 13:29:42 +0000
commit5f597758e20f046a7a76e728370b99308cf2c8a0 (patch)
tree749e4d98131de9bc655860cf2a715d8b9cc75703 /MdeModulePkg/Include/Ppi
parent78c2ffb5a7172b9c5fbef15b5edc7aae3de5d4f2 (diff)
downloadedk2-platforms-5f597758e20f046a7a76e728370b99308cf2c8a0.tar.xz
Code scrube for MdeModule Definitions.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5428 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Include/Ppi')
-rw-r--r--MdeModulePkg/Include/Ppi/BaseMemoryTest.h19
-rw-r--r--MdeModulePkg/Include/Ppi/FlashMap.h2
-rw-r--r--MdeModulePkg/Include/Ppi/OperatorPresence.h2
3 files changed, 20 insertions, 3 deletions
diff --git a/MdeModulePkg/Include/Ppi/BaseMemoryTest.h b/MdeModulePkg/Include/Ppi/BaseMemoryTest.h
index e769a9929f..5e069a6802 100644
--- a/MdeModulePkg/Include/Ppi/BaseMemoryTest.h
+++ b/MdeModulePkg/Include/Ppi/BaseMemoryTest.h
@@ -1,5 +1,5 @@
/** @file
- Pei memory test PPI used to Perform memory test in PEI phase.
+ This file defines Pei memory test PPI used to Perform memory test in PEI phase.
Copyright (c) 2006 - 2008, Intel Corporation. <BR>
All rights reserved. This program and the accompanying materials
@@ -20,6 +20,10 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
typedef struct _PEI_BASE_MEMORY_TEST_PPI PEI_BASE_MEMORY_TEST_PPI;
+//
+// 4 different test operations
+// Ignore op not test memory, Quick and Sparse op test memory quickly, Extensive op test memory detailedly.
+//
typedef enum {
Ignore,
Quick,
@@ -27,6 +31,19 @@ typedef enum {
Extensive
} PEI_MEMORY_TEST_OP;
+/**
+ Test a range memory space is ready to read and write.
+
+ @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
+ @param This Pointer to Pei memory test PPI instance.
+ @param BeginAddress Beginning of the memory address to be checked.
+ @param MemoryLength Bytes of memory range to be checked.
+ @param Operation Type of memory check operation to be performed.
+ @param ErrorAddress Address which has error when checked.
+
+ @retval EFI_SUCCESS Memory range pass basic read and write test.
+ @retval EFI_DEVICE_ERROR Memory is not ready to access.
+**/
typedef
EFI_STATUS
(EFIAPI *PEI_BASE_MEMORY_TEST) (
diff --git a/MdeModulePkg/Include/Ppi/FlashMap.h b/MdeModulePkg/Include/Ppi/FlashMap.h
index f562f888ad..fba9a53027 100644
--- a/MdeModulePkg/Include/Ppi/FlashMap.h
+++ b/MdeModulePkg/Include/Ppi/FlashMap.h
@@ -43,7 +43,7 @@ typedef
EFI_STATUS
(EFIAPI *PEI_GET_FLASH_AREA_INFO) (
IN EFI_PEI_SERVICES **PeiServices,
- IN PEI_FLASH_MAP_PPI *This,
+ IN PEI_FLASH_MAP_PPI *This,
IN EFI_FLASH_AREA_TYPE AreaType,
IN EFI_GUID *AreaTypeGuid,
OUT UINT32 *NumEntries,
diff --git a/MdeModulePkg/Include/Ppi/OperatorPresence.h b/MdeModulePkg/Include/Ppi/OperatorPresence.h
index a6dcf310d8..b5221a13ab 100644
--- a/MdeModulePkg/Include/Ppi/OperatorPresence.h
+++ b/MdeModulePkg/Include/Ppi/OperatorPresence.h
@@ -1,5 +1,5 @@
/** @file
- PPI published by the PEIM that is responsible for detecting operator presence.
+ This file defines OperatorPresent PPI responsible for detecting TPM operator presence.
Copyright (c) 2006 - 2008, Intel Corporation. <BR>
All rights reserved. This program and the accompanying materials