1
1
/** @file
2
2
*
3
- * Copyright (c) 2011, ARM Limited. All rights reserved.
3
+ * Copyright (c) 2011-2014 , ARM Limited. All rights reserved.
4
4
*
5
5
* This program and the accompanying materials
6
6
* are licensed and made available under the terms and conditions of the BSD License
@@ -102,33 +102,33 @@ MemoryPeim (
102
102
);
103
103
104
104
SystemMemoryTop = (EFI_PHYSICAL_ADDRESS )PcdGet64 (PcdSystemMemoryBase ) + (EFI_PHYSICAL_ADDRESS )PcdGet64 (PcdSystemMemorySize );
105
- FdTop = (EFI_PHYSICAL_ADDRESS )PcdGet32 (PcdFdBaseAddress ) + (EFI_PHYSICAL_ADDRESS )PcdGet32 (PcdFdSize );
105
+ FdTop = (EFI_PHYSICAL_ADDRESS )PcdGet64 (PcdFdBaseAddress ) + (EFI_PHYSICAL_ADDRESS )PcdGet32 (PcdFdSize );
106
106
107
107
// EDK2 does not have the concept of boot firmware copied into DRAM. To avoid the DXE
108
108
// core to overwrite this area we must mark the region with the attribute non-present
109
- if ((PcdGet32 (PcdFdBaseAddress ) >= PcdGet64 (PcdSystemMemoryBase )) && (FdTop <= SystemMemoryTop )) {
109
+ if ((PcdGet64 (PcdFdBaseAddress ) >= PcdGet64 (PcdSystemMemoryBase )) && (FdTop <= SystemMemoryTop )) {
110
110
Found = FALSE;
111
111
112
112
// Search for System Memory Hob that contains the firmware
113
113
NextHob .Raw = GetHobList ();
114
114
while ((NextHob .Raw = GetNextHob (EFI_HOB_TYPE_RESOURCE_DESCRIPTOR , NextHob .Raw )) != NULL ) {
115
115
if ((NextHob .ResourceDescriptor -> ResourceType == EFI_RESOURCE_SYSTEM_MEMORY ) &&
116
- (PcdGet32 (PcdFdBaseAddress ) >= NextHob .ResourceDescriptor -> PhysicalStart ) &&
116
+ (PcdGet64 (PcdFdBaseAddress ) >= NextHob .ResourceDescriptor -> PhysicalStart ) &&
117
117
(FdTop <= NextHob .ResourceDescriptor -> PhysicalStart + NextHob .ResourceDescriptor -> ResourceLength ))
118
118
{
119
119
ResourceAttributes = NextHob .ResourceDescriptor -> ResourceAttribute ;
120
120
ResourceLength = NextHob .ResourceDescriptor -> ResourceLength ;
121
121
ResourceTop = NextHob .ResourceDescriptor -> PhysicalStart + ResourceLength ;
122
122
123
- if (PcdGet32 (PcdFdBaseAddress ) == NextHob .ResourceDescriptor -> PhysicalStart ) {
123
+ if (PcdGet64 (PcdFdBaseAddress ) == NextHob .ResourceDescriptor -> PhysicalStart ) {
124
124
if (SystemMemoryTop == FdTop ) {
125
125
NextHob .ResourceDescriptor -> ResourceAttribute = ResourceAttributes & ~EFI_RESOURCE_ATTRIBUTE_PRESENT ;
126
126
} else {
127
127
// Create the System Memory HOB for the firmware with the non-present attribute
128
128
BuildResourceDescriptorHob (EFI_RESOURCE_SYSTEM_MEMORY ,
129
129
ResourceAttributes & ~EFI_RESOURCE_ATTRIBUTE_PRESENT ,
130
- PcdGet32 (PcdFdBaseAddress ),
131
- PcdGet32 (PcdFdSize ));
130
+ PcdGet64 (PcdFdBaseAddress ),
131
+ PcdGet32 (PcdFdSize ));
132
132
133
133
// Top of the FD is system memory available for UEFI
134
134
NextHob .ResourceDescriptor -> PhysicalStart += PcdGet32 (PcdFdSize );
@@ -138,11 +138,11 @@ MemoryPeim (
138
138
// Create the System Memory HOB for the firmware with the non-present attribute
139
139
BuildResourceDescriptorHob (EFI_RESOURCE_SYSTEM_MEMORY ,
140
140
ResourceAttributes & ~EFI_RESOURCE_ATTRIBUTE_PRESENT ,
141
- PcdGet32 (PcdFdBaseAddress ),
142
- PcdGet32 (PcdFdSize ));
141
+ PcdGet64 (PcdFdBaseAddress ),
142
+ PcdGet32 (PcdFdSize ));
143
143
144
144
// Update the HOB
145
- NextHob .ResourceDescriptor -> ResourceLength = PcdGet32 (PcdFdBaseAddress ) - NextHob .ResourceDescriptor -> PhysicalStart ;
145
+ NextHob .ResourceDescriptor -> ResourceLength = PcdGet64 (PcdFdBaseAddress ) - NextHob .ResourceDescriptor -> PhysicalStart ;
146
146
147
147
// If there is some memory available on the top of the FD then create a HOB
148
148
if (FdTop < NextHob .ResourceDescriptor -> PhysicalStart + ResourceLength ) {
0 commit comments