ARM Packages: Rename PcdNormal* into Pcd* PCDs
The denomination 'Normal' was used to make reference to the 'Normal' or 'Non Secure' or 'Non Trusted' world. To avoid confusion, this prefix has been removed from PCDs to define the normal world. The PCDs explicitely related to the Secure/Trusted World continue to have the 'Sec' prefix. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12416 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -86,10 +86,10 @@
|
||||
#
|
||||
# ARM Normal (or Non Secure) Firmware PCDs
|
||||
#
|
||||
gArmTokenSpaceGuid.PcdNormalFdBaseAddress|0|UINT32|0x0000002B
|
||||
gArmTokenSpaceGuid.PcdNormalFdSize|0|UINT32|0x0000002C
|
||||
gArmTokenSpaceGuid.PcdNormalFvBaseAddress|0|UINT32|0x0000002D
|
||||
gArmTokenSpaceGuid.PcdNormalFvSize|0|UINT32|0x0000002E
|
||||
gArmTokenSpaceGuid.PcdFdBaseAddress|0|UINT32|0x0000002B
|
||||
gArmTokenSpaceGuid.PcdFdSize|0|UINT32|0x0000002C
|
||||
gArmTokenSpaceGuid.PcdFvBaseAddress|0|UINT32|0x0000002D
|
||||
gArmTokenSpaceGuid.PcdFvSize|0|UINT32|0x0000002E
|
||||
|
||||
# System Memory (DRAM): These PCDs define the region of in-built system memory
|
||||
# Some platforms can get DRAM extensions, these additional regions will be declared
|
||||
|
@@ -293,7 +293,7 @@ InitializeDebugAgent (
|
||||
//
|
||||
// Get the PrePi or PrePeiCore module (defined as SEC type module)
|
||||
//
|
||||
Status = GetFfsFile ((EFI_FIRMWARE_VOLUME_HEADER*)PcdGet32(PcdNormalFvBaseAddress), EFI_FV_FILETYPE_SECURITY_CORE, &FfsHeader);
|
||||
Status = GetFfsFile ((EFI_FIRMWARE_VOLUME_HEADER*)PcdGet32(PcdFvBaseAddress), EFI_FV_FILETYPE_SECURITY_CORE, &FfsHeader);
|
||||
if (!EFI_ERROR(Status)) {
|
||||
Status = GetImageContext (FfsHeader,&ImageContext);
|
||||
if (!EFI_ERROR(Status)) {
|
||||
@@ -304,7 +304,7 @@ InitializeDebugAgent (
|
||||
//
|
||||
// Get the PeiCore module (defined as PEI_CORE type module)
|
||||
//
|
||||
Status = GetFfsFile ((EFI_FIRMWARE_VOLUME_HEADER*)PcdGet32(PcdNormalFvBaseAddress), EFI_FV_FILETYPE_PEI_CORE, &FfsHeader);
|
||||
Status = GetFfsFile ((EFI_FIRMWARE_VOLUME_HEADER*)PcdGet32(PcdFvBaseAddress), EFI_FV_FILETYPE_PEI_CORE, &FfsHeader);
|
||||
if (!EFI_ERROR(Status)) {
|
||||
Status = GetImageContext (FfsHeader,&ImageContext);
|
||||
if (!EFI_ERROR(Status)) {
|
||||
|
@@ -35,4 +35,4 @@
|
||||
|
||||
[Pcd]
|
||||
gArmTokenSpaceGuid.PcdSecureFvBaseAddress
|
||||
gArmTokenSpaceGuid.PcdNormalFvBaseAddress
|
||||
gArmTokenSpaceGuid.PcdFvBaseAddress
|
||||
|
Reference in New Issue
Block a user