diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-22 23:04:06 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-22 23:04:06 +0000 |
commit | f156d5b49d3f1c3dd1a9dc3c9b6d94b02c056ad1 (patch) | |
tree | 7aec52b57e0dca42dc6da548722bc4a7b72cb933 /ArmPlatformPkg/Include | |
parent | 44e272fd6ab9d7b859588eeffc02b8cd78d3c76b (diff) | |
download | edk2-platforms-f156d5b49d3f1c3dd1a9dc3c9b6d94b02c056ad1.tar.xz |
ArmPlatformPkg/ArmPlatformLib: Removed 'ArmPlatformIsMemoryInitialized' function
'ArmPlatformInitializeBootMemory' function can check if the memory has already
been initialized.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12414 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPlatformPkg/Include')
-rw-r--r-- | ArmPlatformPkg/Include/Library/ArmPlatformLib.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ArmPlatformPkg/Include/Library/ArmPlatformLib.h b/ArmPlatformPkg/Include/Library/ArmPlatformLib.h index b2667416e1..c14af9abfa 100644 --- a/ArmPlatformPkg/Include/Library/ArmPlatformLib.h +++ b/ArmPlatformPkg/Include/Library/ArmPlatformLib.h @@ -42,19 +42,6 @@ typedef struct { } ARM_SYSTEM_MEMORY_REGION_DESCRIPTOR; /** - Called at the early stage of the Boot phase to know if the memory has already been initialized - - Running the code from the reset vector does not mean we start from cold boot. In some case, we - can go through this code with the memory already initialized. - Because this function is called at the early stage, the implementation must not use the stack. - Its implementation must probably done in assembly to ensure this requirement. - - @return Return the condition value into the 'Z' flag - -**/ -VOID ArmPlatformIsMemoryInitialized(VOID); - -/** Initialize the memory where the initial stacks will reside This memory can contain the initial stacks (Secure and Secure Monitor stacks). |