diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-22 23:07:55 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-22 23:07:55 +0000 |
commit | c524ffbb6762dd7b98108638caa4a25eaf7fcf6b (patch) | |
tree | c123ebdb7c4d168677fc85c04981ab85250e2c36 /ArmPlatformPkg/PrePi/PrePi.h | |
parent | 009f583fa00404ea243cc5b75f1a4ea4f6bc0c18 (diff) | |
download | edk2-platforms-c524ffbb6762dd7b98108638caa4a25eaf7fcf6b.tar.xz |
ArmPlatformPkg/PrePi: Removed the dependency on 'PcdCPUCoresNonSecStackBase'
In PrePi the StackBase is automatically calculated from the top of the memory.
The information is now passed from the assembly files to the C code.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12418 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPlatformPkg/PrePi/PrePi.h')
-rw-r--r-- | ArmPlatformPkg/PrePi/PrePi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ArmPlatformPkg/PrePi/PrePi.h b/ArmPlatformPkg/PrePi/PrePi.h index 9cf953a796..59f5971231 100644 --- a/ArmPlatformPkg/PrePi/PrePi.h +++ b/ArmPlatformPkg/PrePi/PrePi.h @@ -44,6 +44,8 @@ TimerConstructor ( VOID
PrePiMain (
IN UINTN UefiMemoryBase,
+ IN UINTN StacksBase,
+ IN UINTN GlobalVariableBase,
IN UINT64 StartTimeStamp
);
@@ -63,6 +65,8 @@ PlatformPeim ( VOID
PrimaryMain (
IN UINTN UefiMemoryBase,
+ IN UINTN StacksBase,
+ IN UINTN GlobalVariableBase,
IN UINT64 StartTimeStamp
);
|